-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Tempo de geração: 18/02/2026 às 08:22
-- Versão do servidor: 10.6.25-MariaDB
-- Versão do PHP: 8.4.16

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Banco de dados: `voidplay_gestorr`
--

DELIMITER $$
--
-- Procedimentos
--
$$

$$

CREATE DEFINER=`voidplay`@`localhost` PROCEDURE `sp_migrar_saldos_existentes` ()   BEGIN
    DECLARE done INT DEFAULT FALSE;
    DECLARE v_cliente_id INT;
    DECLARE v_valor_assinatura DECIMAL(10,2);
    DECLARE v_empresa VARCHAR(255);
    DECLARE v_data_vencimento DATE;
    DECLARE v_criado_em DATETIME;
    DECLARE v_count INT DEFAULT 0;
    
    DECLARE cur CURSOR FOR 
        SELECT id, valor_assinatura, empresa, data_vencimento, criado_em 
        FROM clientes;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
    
    OPEN cur;
    
    read_loop: LOOP
        FETCH cur INTO v_cliente_id, v_valor_assinatura, v_empresa, v_data_vencimento, v_criado_em;
        IF done THEN
            LEAVE read_loop;
        END IF;
        
        -- Criar cobrança inicial se não existir
        IF NOT EXISTS (SELECT 1 FROM transacoes WHERE cliente_id = v_cliente_id) THEN
            INSERT INTO transacoes (
                cliente_id, 
                tipo, 
                valor, 
                descricao, 
                status, 
                criado_em
            )
            VALUES (
                v_cliente_id,
                'cobranca_inicial',
                v_valor_assinatura,
                CONCAT('Cobrança inicial - ', v_empresa, ' - Vencimento: ', DATE_FORMAT(v_data_vencimento, '%d/%m/%Y')),
                'concluida',
                v_criado_em
            );
            
            SET v_count = v_count + 1;
        END IF;
    END LOOP;
    
    CLOSE cur;
    
    SELECT CONCAT('Migrados ', v_count, ' clientes com cobrança inicial!') as resultado;
END$$

CREATE DEFINER=`voidplay`@`localhost` PROCEDURE `sp_recalcular_saldo_cliente` (IN `p_cliente_id` INT)   BEGIN
    DECLARE v_total_creditos DECIMAL(10,2);
    DECLARE v_total_debitos DECIMAL(10,2);
    DECLARE v_total_pago DECIMAL(10,2);
    DECLARE v_total_cobrado DECIMAL(10,2);
    DECLARE v_saldo_atual DECIMAL(10,2);
    DECLARE v_ultima_transacao DATETIME;
    
    -- Calcular CRÉDITOS (o que entrou)
    SELECT COALESCE(SUM(valor), 0)
    INTO v_total_creditos
    FROM transacoes
    WHERE cliente_id = p_cliente_id 
    AND tipo IN ('credito', 'recarga', 'pagamento', 'estorno', 'ajuste_positivo')
    AND status = 'concluida';
    
    -- Calcular DÉBITOS (o que foi cobrado)
    SELECT COALESCE(SUM(valor), 0)
    INTO v_total_debitos
    FROM transacoes
    WHERE cliente_id = p_cliente_id 
    AND tipo IN ('debito', 'cobranca', 'cobranca_inicial', 'ajuste_negativo')
    AND status = 'concluida';
    
    -- Total especificamente de PAGAMENTOS
    SELECT COALESCE(SUM(valor), 0)
    INTO v_total_pago
    FROM transacoes
    WHERE cliente_id = p_cliente_id 
    AND tipo = 'pagamento'
    AND status = 'concluida';
    
    -- Total especificamente de COBRANÇAS
    SELECT COALESCE(SUM(valor), 0)
    INTO v_total_cobrado
    FROM transacoes
    WHERE cliente_id = p_cliente_id 
    AND tipo IN ('cobranca', 'cobranca_inicial')
    AND status = 'concluida';
    
    -- Última transação
    SELECT MAX(criado_em)
    INTO v_ultima_transacao
    FROM transacoes
    WHERE cliente_id = p_cliente_id 
    AND status = 'concluida';
    
    -- SALDO = CRÉDITOS - DÉBITOS
    -- Se POSITIVO: cliente tem crédito
    -- Se NEGATIVO: cliente deve
    SET v_saldo_atual = v_total_creditos - v_total_debitos;
    
    -- Inserir ou atualizar saldo
    INSERT INTO saldos_clientes (
        cliente_id, 
        saldo_atual, 
        total_creditos, 
        total_debitos,
        total_pago,
        total_cobrado,
        ultima_transacao,
        criado_em, 
        atualizado_em
    )
    VALUES (
        p_cliente_id, 
        v_saldo_atual, 
        v_total_creditos, 
        v_total_debitos,
        v_total_pago,
        v_total_cobrado,
        v_ultima_transacao,
        NOW(), 
        NOW()
    )
    ON DUPLICATE KEY UPDATE 
        saldo_atual = v_saldo_atual,
        total_creditos = v_total_creditos,
        total_debitos = v_total_debitos,
        total_pago = v_total_pago,
        total_cobrado = v_total_cobrado,
        ultima_transacao = v_ultima_transacao,
        atualizado_em = NOW();
        
END$$

CREATE DEFINER=`voidplay`@`localhost` PROCEDURE `sp_recalcular_todos_saldos` ()   BEGIN
    DECLARE done INT DEFAULT FALSE;
    DECLARE v_cliente_id INT;
    DECLARE v_count INT DEFAULT 0;
    
    DECLARE cur CURSOR FOR SELECT DISTINCT cliente_id FROM transacoes;
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
    
    OPEN cur;
    
    read_loop: LOOP
        FETCH cur INTO v_cliente_id;
        IF done THEN
            LEAVE read_loop;
        END IF;
        
        CALL sp_recalcular_saldo_cliente(v_cliente_id);
        SET v_count = v_count + 1;
    END LOOP;
    
    CLOSE cur;
    
    SELECT CONCAT('Recalculados ', v_count, ' saldos!') as resultado;
END$$

DELIMITER ;

-- --------------------------------------------------------

--
-- Estrutura para tabela `adminwhatsapp`
--

CREATE TABLE `adminwhatsapp` (
  `id` int(11) NOT NULL,
  `telefone` varchar(20) NOT NULL,
  `ativo` tinyint(1) DEFAULT 1,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `adminwhatsapp`
--

INSERT INTO `adminwhatsapp` (`id`, `telefone`, `ativo`, `criado_em`) VALUES
(1, '4791592447', 1, '2026-02-14 15:50:28');

-- --------------------------------------------------------

--
-- Estrutura para tabela `admin_whatsapp`
--

CREATE TABLE `admin_whatsapp` (
  `id` int(10) UNSIGNED NOT NULL,
  `telefone` varchar(20) NOT NULL,
  `nome` varchar(100) DEFAULT NULL,
  `ativo` tinyint(1) DEFAULT 1,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `tipo` enum('super_admin','admin','operador') DEFAULT 'admin',
  `instancia_id` int(11) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `admin_whatsapp`
--

INSERT INTO `admin_whatsapp` (`id`, `telefone`, `nome`, `ativo`, `criado_em`, `tipo`, `instancia_id`, `email`) VALUES
(1, '4791592447', 'Johnny Admin', 1, '2026-02-13 13:34:41', 'super_admin', NULL, NULL),
(2, '554791592447', 'Você (Admin JTVPlay)', 1, '2026-02-13 13:57:46', 'super_admin', NULL, NULL);

-- --------------------------------------------------------

--
-- Estrutura para tabela `alertas_limite`
--

CREATE TABLE `alertas_limite` (
  `id` int(11) NOT NULL,
  `chave_pix_id` int(11) NOT NULL,
  `mes_referencia` varchar(7) NOT NULL,
  `valor_acumulado` decimal(10,2) NOT NULL,
  `percentual_limite` decimal(5,2) NOT NULL,
  `tipo_alerta` varchar(20) NOT NULL,
  `mensagem` text DEFAULT NULL,
  `notificado` tinyint(1) DEFAULT 0,
  `data_notificacao` datetime DEFAULT NULL,
  `criado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `assinaturas`
--

CREATE TABLE `assinaturas` (
  `id` int(10) UNSIGNED NOT NULL,
  `cliente_id` int(10) UNSIGNED NOT NULL,
  `plano_id` int(10) UNSIGNED NOT NULL,
  `ciclo_faturamento` enum('mensal','anual') DEFAULT 'mensal',
  `valor` decimal(10,2) NOT NULL,
  `status` enum('ativa','pendente','cancelada','suspensa') DEFAULT 'pendente',
  `data_inicio` date NOT NULL,
  `data_vencimento` date NOT NULL,
  `data_cancelamento` date DEFAULT NULL,
  `metodo_pagamento` varchar(50) DEFAULT NULL,
  `transacao_id` varchar(100) DEFAULT NULL,
  `data_pagamento` timestamp NULL DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `bot_sessoes`
--

CREATE TABLE `bot_sessoes` (
  `id` int(11) NOT NULL,
  `telefone` varchar(20) NOT NULL,
  `comando` varchar(50) NOT NULL,
  `estado` varchar(50) NOT NULL,
  `dados` text DEFAULT NULL,
  `criado_em` datetime DEFAULT current_timestamp(),
  `atualizado_em` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `cadastro_links`
--

CREATE TABLE `cadastro_links` (
  `id` int(11) NOT NULL,
  `token` varchar(64) NOT NULL,
  `plano_id` int(11) NOT NULL,
  `data_expiracao` datetime NOT NULL,
  `observacao` text DEFAULT NULL,
  `status` enum('ativo','inativo') DEFAULT 'ativo',
  `criado_por` int(11) DEFAULT NULL,
  `criado_em` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `cadastro_sessoes`
--

CREATE TABLE `cadastro_sessoes` (
  `id` int(10) UNSIGNED NOT NULL,
  `admin_telefone` varchar(20) NOT NULL,
  `etapa` varchar(50) NOT NULL,
  `dados_temp` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`dados_temp`)),
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `expira_em` timestamp NOT NULL DEFAULT (current_timestamp() + interval 10 minute)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `cadastro_sessoes`
--

INSERT INTO `cadastro_sessoes` (`id`, `admin_telefone`, `etapa`, `dados_temp`, `criado_em`, `expira_em`) VALUES
(54, '4791592447', 'aguardando_nome', '[]', '2026-02-18 02:29:47', '2026-02-18 02:39:47');

-- --------------------------------------------------------

--
-- Estrutura para tabela `cadastro_tokens`
--

CREATE TABLE `cadastro_tokens` (
  `id` int(11) NOT NULL,
  `token` varchar(64) NOT NULL,
  `cliente_id` int(11) DEFAULT NULL,
  `usado` tinyint(1) DEFAULT 0,
  `data_geracao` datetime DEFAULT current_timestamp(),
  `data_uso` datetime DEFAULT NULL,
  `validade` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `chaves_pix`
--

CREATE TABLE `chaves_pix` (
  `id` int(11) NOT NULL,
  `tipo_chave` varchar(20) NOT NULL,
  `chave` varchar(255) NOT NULL,
  `beneficiario` varchar(255) NOT NULL,
  `limite_mensal` decimal(10,2) DEFAULT 5000.00,
  `ativa` tinyint(1) DEFAULT 1,
  `ordem_prioridade` int(11) DEFAULT 1,
  `criada_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `chaves_pix`
--

INSERT INTO `chaves_pix` (`id`, `tipo_chave`, `chave`, `beneficiario`, `limite_mensal`, `ativa`, `ordem_prioridade`, `criada_em`) VALUES
(1, 'celular', '47996105435', 'Johnny Schmitt ou JtvPlay Eletronicos', 5000.00, 1, 1, '2026-02-10 23:11:19'),
(2, 'email', 'pagamentos@voidplay.com.br', 'VoidPlay Secundária', 5000.00, 0, 2, '2026-02-10 23:11:19'),
(3, 'email', 'financeiro@voidplay.com.br', 'VoidPlay Terciária', 5000.00, 0, 3, '2026-02-10 23:11:19');

-- --------------------------------------------------------

--
-- Estrutura para tabela `clientes`
--

CREATE TABLE `clientes` (
  `id` int(10) UNSIGNED NOT NULL,
  `usuario_id` int(10) UNSIGNED NOT NULL,
  `cadastro_token` varchar(64) DEFAULT NULL,
  `plano_id` int(10) UNSIGNED DEFAULT NULL,
  `periodo_assinatura` enum('mensal','trimestral','semestral','anual') DEFAULT 'mensal',
  `valor_assinatura` decimal(10,2) DEFAULT 0.00,
  `empresa` varchar(100) DEFAULT NULL,
  `cpf_cnpj` varchar(20) DEFAULT NULL,
  `whatsapp_cadastrado` varchar(20) DEFAULT NULL,
  `endereco` text DEFAULT NULL,
  `cidade` varchar(50) DEFAULT NULL,
  `estado` char(2) DEFAULT NULL,
  `cep` varchar(10) DEFAULT NULL,
  `mensagens_consumidas` int(11) DEFAULT 0,
  `saldo_creditos` decimal(10,2) DEFAULT 0.00,
  `mensal_reset_em` timestamp NULL DEFAULT NULL,
  `status_pagamento` enum('em_dia','pendente','atrasado') DEFAULT 'em_dia',
  `dias_atraso` int(11) DEFAULT 0,
  `data_bloqueio` date DEFAULT NULL,
  `data_reativacao` date DEFAULT NULL,
  `data_vencimento` date DEFAULT NULL,
  `proxima_cobranca` date DEFAULT NULL,
  `auto_renovacao` tinyint(1) DEFAULT 1,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `data_ultimo_pagamento` datetime DEFAULT NULL,
  `tipo_plano` varchar(50) DEFAULT 'mensal',
  `dias_periodo` int(11) DEFAULT 30,
  `notificacoes_ativas` tinyint(1) DEFAULT 1,
  `ultima_notificacao` datetime DEFAULT NULL,
  `template_cobranca_id` int(11) DEFAULT NULL COMMENT 'Template de cobrança mensal',
  `observacoes` text DEFAULT NULL COMMENT 'Observações sobre o cliente',
  `motivo_bloqueio` text DEFAULT NULL COMMENT 'Motivo do bloqueio'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `clientes`
--

INSERT INTO `clientes` (`id`, `usuario_id`, `cadastro_token`, `plano_id`, `periodo_assinatura`, `valor_assinatura`, `empresa`, `cpf_cnpj`, `whatsapp_cadastrado`, `endereco`, `cidade`, `estado`, `cep`, `mensagens_consumidas`, `saldo_creditos`, `mensal_reset_em`, `status_pagamento`, `dias_atraso`, `data_bloqueio`, `data_reativacao`, `data_vencimento`, `proxima_cobranca`, `auto_renovacao`, `criado_em`, `atualizado_em`, `data_ultimo_pagamento`, `tipo_plano`, `dias_periodo`, `notificacoes_ativas`, `ultima_notificacao`, `template_cobranca_id`, `observacoes`, `motivo_bloqueio`) VALUES
(16, 3, NULL, NULL, 'mensal', 40.00, 'Rodrigo', '41989045018', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-14', NULL, 1, '2026-02-12 23:27:14', '2026-02-14 01:41:26', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(37, 3, NULL, NULL, 'mensal', 40.00, 'Iago', '5519983457931', '4791063914', NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-16', NULL, 1, '2026-02-13 17:40:51', '2026-02-14 22:30:33', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(39, 1, NULL, NULL, 'mensal', 40.00, 'Erick Souza', '4792602871', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-13', NULL, 1, '2026-02-13 17:58:48', '2026-02-13 17:58:48', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(40, 1, NULL, NULL, 'mensal', 30.00, 'vivi tia gaspar', '4791741091', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-13', NULL, 1, '2026-02-14 01:10:14', '2026-02-14 01:10:14', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(41, 1, NULL, NULL, 'mensal', 40.00, 'Cida', '24998762401', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-15', NULL, 1, '2026-02-14 01:19:05', '2026-02-14 01:19:05', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(42, 3, NULL, NULL, 'mensal', 60.00, 'Elvis', '1596880285', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-13', NULL, 1, '2026-02-14 01:31:34', '2026-02-14 01:35:26', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(46, 3, NULL, NULL, 'mensal', 25.00, 'Paulo Itj vizinho', '554788117041', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-17', NULL, 1, '2026-02-16 01:06:46', '2026-02-16 01:06:46', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(48, 3, NULL, NULL, 'mensal', 35.00, 'teste lucros reais', '4799999', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-18', NULL, 1, '2026-02-17 01:14:33', '2026-02-17 01:16:00', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(49, 3, NULL, NULL, 'mensal', 35.00, 'Dry / Ios VIvo', '11972421904', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-18', NULL, 1, '2026-02-17 19:34:12', '2026-02-17 19:34:12', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(50, 3, NULL, NULL, 'mensal', 35.00, 'Clovis / Ios Vivo', '15997393627', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-07', NULL, 1, '2026-02-17 19:35:23', '2026-02-17 23:29:29', '2026-02-17 20:28:16', 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(51, 3, NULL, NULL, 'mensal', 35.00, 'Gabriel / Vivo ios', '35997328685', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-20', NULL, 1, '2026-02-17 19:42:35', '2026-02-17 19:42:35', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(52, 3, NULL, NULL, 'mensal', 40.00, 'Rodrigo', '47997180643', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-18', NULL, 1, '2026-02-17 19:46:30', '2026-02-17 19:46:30', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(53, 3, NULL, NULL, 'mensal', 35.00, 'Kev / IOS VIVO', '15996605722', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-20', NULL, 1, '2026-02-17 19:48:15', '2026-02-17 21:07:11', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(54, 3, NULL, NULL, 'mensal', 35.00, 'Leandro / VIVO IOS', '15996618993', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-08', NULL, 1, '2026-02-17 19:50:26', '2026-02-17 19:51:21', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(55, 3, NULL, NULL, 'mensal', 60.00, 'Pablo / Combo Tv + ios', '15996448994', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-16', NULL, 1, '2026-02-17 19:55:15', '2026-02-17 19:55:15', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(56, 3, NULL, NULL, 'mensal', 35.00, 'Diego Paiakan / ViVo IOS', '15996010925', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-03-17', NULL, 1, '2026-02-17 19:56:53', '2026-02-17 19:56:53', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(57, 3, NULL, NULL, 'mensal', 35.00, 'Josue / VIVO IOS', '15997872089', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-21', NULL, 1, '2026-02-17 19:58:17', '2026-02-17 19:58:17', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(58, 3, NULL, NULL, 'mensal', 30.00, 'Solan / IOS VIVO', '3399921854', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-10', NULL, 1, '2026-02-17 20:01:05', '2026-02-17 20:01:05', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(59, 3, NULL, NULL, 'mensal', 10.00, 'carol', '47992012997', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-17', NULL, 1, '2026-02-17 21:52:40', '2026-02-17 21:53:16', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(60, 3, NULL, NULL, 'mensal', 40.00, 'Nando5498', '41985045498', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-19', NULL, 1, '2026-02-17 22:42:15', '2026-02-17 22:42:15', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL),
(61, 3, NULL, NULL, 'mensal', 1.00, 'johnny', '47991063914', NULL, NULL, NULL, NULL, NULL, 0, 0.00, NULL, 'em_dia', 0, NULL, NULL, '2026-02-17', NULL, 1, '2026-02-17 22:59:38', '2026-02-17 22:59:38', NULL, 'mensal', 30, 1, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Estrutura para tabela `comprovantes_pagamento`
--

CREATE TABLE `comprovantes_pagamento` (
  `id` int(11) NOT NULL,
  `fatura_id` int(11) DEFAULT NULL,
  `cliente_id` int(11) NOT NULL,
  `webhook_id` int(11) DEFAULT NULL,
  `arquivo_url` varchar(500) DEFAULT NULL,
  `tipo_arquivo` varchar(10) DEFAULT NULL,
  `tamanho_bytes` int(11) DEFAULT NULL,
  `status_validacao` enum('pendente','validado','rejeitado') DEFAULT 'pendente',
  `validado_por` int(11) DEFAULT NULL,
  `observacoes` text DEFAULT NULL,
  `recebido_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `validado_em` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `configuracoes`
--

CREATE TABLE `configuracoes` (
  `id` int(10) UNSIGNED NOT NULL,
  `chave` varchar(100) NOT NULL,
  `valor` text DEFAULT NULL,
  `tipo` enum('texto','numero','boolean','json','arquivo') NOT NULL DEFAULT 'texto',
  `categoria` varchar(50) DEFAULT 'geral',
  `descricao` text DEFAULT NULL,
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `configuracoes`
--

INSERT INTO `configuracoes` (`id`, `chave`, `valor`, `tipo`, `categoria`, `descricao`, `atualizado_em`) VALUES
(1, 'app_name', 'Gestor WhatsApp', 'texto', 'geral', 'Nome da aplicação', '2026-01-20 22:08:59'),
(2, 'app_description', 'Sistema de gestão e automação WhatsApp multi-usuário', 'texto', 'geral', 'Descrição do sistema', '2026-01-20 22:08:59'),
(3, 'timezone', 'America/Sao_Paulo', 'texto', 'geral', 'Fuso horário padrão', '2026-01-20 22:08:59'),
(4, 'language', 'pt_BR', 'texto', 'geral', 'Idioma padrão do sistema', '2026-01-20 22:08:59'),
(5, 'contact_email', 'contato@sistema.com', 'texto', 'geral', 'E-mail de contato', '2026-01-20 22:08:59'),
(6, 'contact_phone', '', 'texto', 'geral', 'Telefone de suporte', '2026-01-20 22:08:59'),
(7, 'whatsapp_api_url', 'http://evolution.voidplay.com.br', 'texto', 'whatsapp', 'URL base da API WhatsApp', '2026-02-09 22:02:22'),
(8, 'whatsapp_api_key', 'MeuToken123Secret', 'texto', 'whatsapp', 'Token de autenticação da API', '2026-02-09 21:28:40'),
(9, 'whatsapp_webhook_url', 'https://gestorx.voidplay.com.br/gestorwhatsapp/api/webhook_evolution.php', 'texto', 'whatsapp', 'URL do webhook para callbacks', '2026-02-11 01:01:09'),
(10, 'whatsapp_timeout', '30', 'numero', 'whatsapp', 'Timeout de requisições em segundos', '2026-01-20 22:08:59'),
(11, 'whatsapp_retry_enabled', '1', 'boolean', 'whatsapp', 'Ativar retry automático', '2026-02-11 01:01:09'),
(12, 'whatsapp_logs_enabled', '1', 'boolean', 'whatsapp', 'Ativar logs da API', '2026-01-20 22:08:59'),
(13, 'smtp_host', '', 'texto', 'email', 'Host do servidor SMTP', '2026-01-20 22:08:59'),
(14, 'smtp_port', '587', 'numero', 'email', 'Porta SMTP', '2026-01-20 22:08:59'),
(15, 'smtp_user', '', 'texto', 'email', 'Usuário SMTP', '2026-01-20 22:08:59'),
(16, 'smtp_pass', '', 'texto', 'email', 'Senha SMTP', '2026-01-20 22:08:59'),
(17, 'smtp_encryption', 'tls', 'texto', 'email', 'Tipo de criptografia (tls/ssl/none)', '2026-01-20 22:08:59'),
(18, 'smtp_from_email', '', 'texto', 'email', 'E-mail remetente padrão', '2026-01-20 22:08:59'),
(19, 'smtp_from_name', '', 'texto', 'email', 'Nome remetente padrão', '2026-01-20 22:08:59'),
(20, 'payment_gateway', '', 'texto', 'pagamento', 'Gateway de pagamento (mercadopago/stripe/pagseguro/asaas)', '2026-01-20 22:08:59'),
(21, 'payment_api_key', '', 'texto', 'pagamento', 'API Key pública do gateway', '2026-01-20 22:08:59'),
(22, 'payment_api_secret', '', 'texto', 'pagamento', 'API Secret/Access Token', '2026-01-20 22:08:59'),
(23, 'payment_mode', 'production', 'texto', 'pagamento', 'Modo de operação (sandbox/production)', '2026-02-11 01:01:50'),
(24, 'payment_webhook_url', 'https://gestorx.voidplay.com.br/gestorwhatsapp/api/webhook_evolution.php', 'texto', 'pagamento', 'URL webhook para notificações', '2026-02-11 01:01:50'),
(26, 'session_lifetime', '7200', 'numero', 'seguranca', 'Tempo de sessão em segundos', '2026-01-20 22:08:59'),
(27, 'max_login_attempts', '5', 'numero', 'seguranca', 'Tentativas máximas de login', '2026-01-20 22:08:59'),
(28, 'lockout_time', '15', 'numero', 'seguranca', 'Tempo de bloqueio em minutos', '2026-01-20 22:08:59'),
(29, 'password_min_length', '8', 'numero', 'seguranca', 'Tamanho mínimo da senha', '2026-01-20 22:08:59'),
(30, 'two_factor_enabled', '0', 'boolean', 'seguranca', 'Ativar autenticação 2FA', '2026-01-20 22:08:59'),
(31, 'ip_whitelist', '', 'texto', 'seguranca', 'Lista de IPs permitidos (um por linha)', '2026-01-20 22:08:59'),
(32, 'maintenance_mode', '0', 'boolean', 'sistema', 'Modo manutenção ativo', '2026-01-20 22:08:59'),
(33, 'public_registration', '0', 'boolean', 'sistema', 'Permitir cadastro público', '2026-01-20 22:08:59'),
(34, 'debug_mode', '0', 'boolean', 'sistema', 'Modo debug (desenvolvimento)', '2026-01-20 22:08:59'),
(35, 'backup_enabled', '1', 'boolean', 'sistema', 'Backup automático ativo', '2026-01-20 22:08:59'),
(36, 'backup_frequency', 'daily', 'texto', 'sistema', 'Frequência backup (daily/weekly/monthly)', '2026-01-20 22:08:59'),
(37, 'logs_retention_days', '30', 'numero', 'sistema', 'Dias de retenção de logs', '2026-01-20 22:08:59'),
(49, 'mercado_pago_access_token', '', 'texto', 'pagamento', 'Access Token do Mercado Pago', '2026-02-11 01:05:00'),
(50, 'mercado_pago_public_key', '', 'texto', 'pagamento', 'Public Key do Mercado Pago', '2026-02-11 01:05:00'),
(51, 'pix_chave', '', 'texto', 'pagamento', 'Chave PIX para cobranças manuais', '2026-02-11 01:05:00'),
(52, 'pix_tipo_chave', 'email', 'texto', 'pagamento', 'Tipo da chave PIX (email, cpf, telefone, aleatoria)', '2026-02-11 01:05:00'),
(53, 'pix_beneficiario', '', 'texto', 'pagamento', 'Nome do beneficiário PIX', '2026-02-11 01:05:00'),
(54, 'cobranca_dias_antecedencia', '1', 'numero', 'pagamento', 'Dias de antecedência para enviar cobrança', '2026-02-11 01:33:40'),
(55, 'cobranca_dias_tolerancia', '3', 'numero', 'pagamento', 'Dias de tolerância após vencimento', '2026-02-11 01:33:40'),
(56, 'cobranca_dias_suspensao', '7', 'numero', 'pagamento', 'Dias para suspensão automática', '2026-02-11 01:33:40'),
(57, 'admin_whatsapp', '5547991063914', 'texto', 'geral', 'WhatsApp do admin para receber alertas de limite PIX', '2026-02-11 02:11:19'),
(58, 'whatsappapiurl', 'http://evolution.voidplay.com.br/', 'texto', 'whatsapp', NULL, '2026-02-13 23:17:35'),
(59, 'whatsappapikey', 'MeuToken123Secret', 'texto', 'whatsapp', NULL, '2026-02-13 23:17:35'),
(60, 'whatsappwebhookurl', 'https://gestorx.voidplay.com.br/gestorwhatsapp/api/webhook_evolution.php', 'texto', 'whatsapp', NULL, '2026-02-13 23:17:35'),
(61, 'whatsapptimeout', '30', 'numero', 'whatsapp', NULL, '2026-02-13 23:17:35'),
(62, 'whatsappretryenabled', '0', 'boolean', 'whatsapp', NULL, '2026-02-13 23:17:35'),
(63, 'whatsapplogsenabled', '1', 'boolean', 'whatsapp', NULL, '2026-02-13 23:17:35'),
(64, 'paymentgateway', 'pixmanual', 'texto', 'pagamento', NULL, '2026-02-16 20:34:36'),
(65, 'paymentmode', 'production', 'texto', 'pagamento', NULL, '2026-02-13 23:18:18'),
(66, 'cobrancadiasantecedencia', '3', 'numero', 'pagamento', NULL, '2026-02-14 13:00:04'),
(67, 'cobrancadiastolerancia', '3', 'numero', 'pagamento', NULL, '2026-02-13 23:18:09'),
(68, 'cobrancadiassuspensao', '1', 'numero', 'pagamento', NULL, '2026-02-14 13:00:04'),
(69, 'pixtipochave', 'telefone', 'texto', 'pagamento', NULL, '2026-02-13 23:18:09'),
(70, 'pixchave', '47996105435', 'texto', 'pagamento', NULL, '2026-02-13 23:18:09'),
(71, 'pixbeneficiario', 'Johnny Schmitt de Souza', 'texto', 'pagamento', NULL, '2026-02-16 20:34:36'),
(72, 'mercadopagoaccesstoken', 'APP_USR-6706440747263721-021408-14e05d9072e36d74da9e24710a989760-162954231', 'texto', 'pagamento', NULL, '2026-02-14 13:00:04'),
(73, 'mercadopagopublickey', 'APP_USR-db981bfc-8667-4141-8f73-aa49a062af2a', 'texto', 'pagamento', NULL, '2026-02-14 13:00:04'),
(74, 'paymentwebhookurl', 'https://gestorx.voidplay.com.br/gestorwhatsapp/mercadopago.php', 'texto', 'pagamento', NULL, '2026-02-14 13:58:50');

-- --------------------------------------------------------

--
-- Estrutura para tabela `contatos_grupo`
--

CREATE TABLE `contatos_grupo` (
  `id` int(11) NOT NULL,
  `grupo_id` int(11) NOT NULL,
  `nome_contato` varchar(255) DEFAULT NULL,
  `numero` varchar(50) NOT NULL,
  `jid` varchar(255) DEFAULT NULL,
  `metadata` text DEFAULT NULL,
  `sincronizado` tinyint(4) DEFAULT 0,
  `criado_por` int(11) DEFAULT NULL,
  `criado_em` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `evolution_envios`
--

CREATE TABLE `evolution_envios` (
  `id` int(11) NOT NULL,
  `instancia` varchar(100) NOT NULL COMMENT 'Nome da instância Evolution API',
  `numero_destino` varchar(20) NOT NULL COMMENT 'Número do destinatário',
  `mensagem` text NOT NULL COMMENT 'Conteúdo da mensagem enviada',
  `tipo_mensagem` enum('text','image','video','audio','document') DEFAULT 'text',
  `status` varchar(50) DEFAULT 'enviado' COMMENT 'Status do envio',
  `message_id` varchar(255) DEFAULT NULL COMMENT 'ID da mensagem retornado pela API',
  `response_data` longtext DEFAULT NULL COMMENT 'Resposta completa da API em JSON',
  `erro` text DEFAULT NULL COMMENT 'Mensagem de erro caso falhe',
  `data_envio` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Registro de envios via Evolution API';

-- --------------------------------------------------------

--
-- Estrutura para tabela `evolution_mensagens_recebidas`
--

CREATE TABLE `evolution_mensagens_recebidas` (
  `id` int(11) NOT NULL,
  `message_id` varchar(100) DEFAULT NULL,
  `instance_name` varchar(100) DEFAULT NULL,
  `telefone_origem` varchar(20) DEFAULT NULL,
  `mensagem` text DEFAULT NULL,
  `tipo_mensagem` varchar(50) DEFAULT 'text',
  `timestamp` datetime DEFAULT NULL,
  `processado` tinyint(4) DEFAULT 0,
  `criado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `evolution_mensagens_recebidas`
--

INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(1, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(2, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(3, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(4, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(5, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(6, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(7, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(8, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(9, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(10, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(11, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(12, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(13, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(14, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:54', 0, '2026-02-10 22:05:54'),
(15, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(16, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(17, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(18, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(19, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(20, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(21, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(22, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(23, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(24, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(25, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(26, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(27, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(28, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:05:55', 0, '2026-02-10 22:05:55'),
(29, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(30, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(31, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(32, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(33, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(34, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(35, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:18', 0, '2026-02-10 22:06:18'),
(36, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(37, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(38, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(39, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(40, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(41, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(42, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:06:19', 0, '2026-02-10 22:06:19'),
(43, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(44, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(45, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(46, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(47, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(48, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(49, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(50, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(51, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(52, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(53, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(54, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(55, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(56, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(57, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(58, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:12', 0, '2026-02-10 22:23:12'),
(59, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(60, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(61, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(62, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(63, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(64, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(65, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(66, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(67, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(68, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(69, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(70, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(71, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(72, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:13', 0, '2026-02-10 22:23:13'),
(73, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(74, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(75, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(76, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(77, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(78, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(79, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(80, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(81, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(82, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(83, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(84, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(85, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(86, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(87, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(88, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:23:25', 0, '2026-02-10 22:23:25'),
(89, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(90, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(91, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(92, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(93, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(94, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(95, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(96, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:37', 0, '2026-02-10 22:29:37'),
(97, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(98, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(99, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(100, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(101, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(102, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(103, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(104, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:29:38', 0, '2026-02-10 22:29:38'),
(105, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(106, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(107, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(108, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(109, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(110, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(111, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:26', 0, '2026-02-10 22:30:26'),
(112, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(113, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(114, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(115, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(116, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(117, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(118, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:27', 0, '2026-02-10 22:30:27'),
(119, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(120, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(121, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(122, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(123, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(124, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(125, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:29', 0, '2026-02-10 22:30:29'),
(126, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(127, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(128, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(129, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(130, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(131, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(132, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:30:30', 0, '2026-02-10 22:30:30'),
(133, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(134, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(135, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(136, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(137, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(138, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(139, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:52', 0, '2026-02-10 22:31:52'),
(140, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(141, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(142, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(143, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(144, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(145, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(146, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:31:53', 0, '2026-02-10 22:31:53'),
(147, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(148, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(149, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(150, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(151, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(152, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(153, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(154, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(155, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(156, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(157, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(158, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(159, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(160, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(161, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(162, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:45:02', 0, '2026-02-10 22:45:02'),
(163, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:31', 0, '2026-02-10 22:46:31'),
(164, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(165, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(166, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(167, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(168, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(169, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(170, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(171, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(172, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(173, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(174, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(175, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(176, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(177, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(178, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-10 22:46:32', 0, '2026-02-10 22:46:32'),
(179, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(180, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(181, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(182, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(183, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(184, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(185, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(186, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(187, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(188, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(189, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(190, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(191, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(192, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:40', 0, '2026-02-10 23:26:40'),
(193, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(194, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(195, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(196, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(197, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(198, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(199, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:49', 0, '2026-02-10 23:26:49'),
(200, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(201, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(202, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(203, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(204, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(205, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(206, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(207, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:26:57', 0, '2026-02-10 23:26:57'),
(208, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(209, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(210, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(211, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(212, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(213, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(214, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:00', 0, '2026-02-10 23:27:00'),
(215, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(216, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(217, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(218, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(219, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(220, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(221, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(222, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:27:22', 0, '2026-02-10 23:27:22'),
(223, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(224, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(225, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(226, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(227, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(228, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(229, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(230, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:28:37', 0, '2026-02-10 23:28:37'),
(231, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(232, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(233, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(234, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(235, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(236, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(237, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(238, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:01', 0, '2026-02-10 23:29:01'),
(239, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(240, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(241, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(242, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(243, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(244, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(245, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(246, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-10 23:29:21', 0, '2026-02-10 23:29:21'),
(247, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(248, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(249, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(250, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(251, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(252, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(253, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(254, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(255, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(256, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(257, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(258, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(259, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(260, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:39', 0, '2026-02-11 00:04:39'),
(261, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(262, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(263, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(264, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(265, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(266, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(267, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:40', 0, '2026-02-11 00:04:40'),
(268, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(269, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(270, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(271, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(272, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(273, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(274, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 00:04:41', 0, '2026-02-11 00:04:41'),
(275, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(276, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(277, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(278, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(279, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(280, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(281, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(282, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:00:13', 0, '2026-02-11 01:00:13'),
(283, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(284, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(285, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(286, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(287, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(288, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(289, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(290, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 01:08:09', 0, '2026-02-11 01:08:09'),
(291, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(292, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(293, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(294, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(295, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(296, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(297, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(298, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:28:05', 0, '2026-02-11 06:28:05'),
(299, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(300, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(301, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(302, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(303, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(304, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(305, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:33', 0, '2026-02-11 06:33:33'),
(306, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(307, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(308, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(309, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(310, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(311, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(312, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:33:36', 0, '2026-02-11 06:33:36'),
(313, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(314, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(315, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(316, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(317, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(318, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(319, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 06:59:33', 0, '2026-02-11 06:59:33'),
(320, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(321, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(322, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(323, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(324, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(325, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(326, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(327, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(328, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(329, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(330, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(331, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(332, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(333, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(334, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(335, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:36', 0, '2026-02-11 07:45:36'),
(336, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(337, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(338, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(339, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(340, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(341, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(342, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(343, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(344, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(345, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(346, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(347, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(348, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(349, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:45:37', 0, '2026-02-11 07:45:37'),
(350, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(351, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(352, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(353, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(354, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(355, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(356, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:13', 0, '2026-02-11 07:46:13'),
(357, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(358, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(359, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(360, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(361, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(362, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(363, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:14', 0, '2026-02-11 07:46:14'),
(364, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(365, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(366, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(367, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(368, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(369, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(370, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(371, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(372, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(373, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(374, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(375, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(376, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(377, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(378, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(379, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 07:46:23', 0, '2026-02-11 07:46:23'),
(380, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(381, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(382, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(383, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(384, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(385, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(386, '', 'JTVPLAY_NOVA', '', '[Mídia]', 'text', '2026-02-11 07:57:47', 0, '2026-02-11 07:57:47'),
(387, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(388, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(389, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(390, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(391, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(392, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(393, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(394, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(395, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(396, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(397, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(398, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(399, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(400, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:39', 0, '2026-02-11 08:14:39'),
(401, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(402, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(403, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(404, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(405, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(406, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(407, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:41', 0, '2026-02-11 08:14:41'),
(408, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(409, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(410, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(411, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(412, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(413, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(414, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:42', 0, '2026-02-11 08:14:42'),
(415, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(416, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(417, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(418, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(419, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(420, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(421, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(422, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(423, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(424, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(425, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(426, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(427, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(428, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:14:51', 0, '2026-02-11 08:14:51'),
(429, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(430, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(431, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(432, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(433, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(434, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(435, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(436, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(437, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(438, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(439, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(440, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(441, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(442, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:15:22', 0, '2026-02-11 08:15:22'),
(443, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(444, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(445, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(446, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(447, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(448, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(449, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(450, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(451, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(452, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(453, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(454, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(455, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(456, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:15', 0, '2026-02-11 08:17:15'),
(457, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(458, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(459, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(460, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(461, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(462, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(463, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:37', 0, '2026-02-11 08:17:37'),
(464, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(465, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(466, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(467, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(468, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(469, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(470, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:17:38', 0, '2026-02-11 08:17:38'),
(471, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(472, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(473, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(474, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(475, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(476, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(477, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(478, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(479, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(480, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(481, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(482, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(483, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(484, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:13', 0, '2026-02-11 08:20:13'),
(485, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(486, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(487, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(488, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(489, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(490, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(491, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(492, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(493, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(494, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(495, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(496, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(497, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(498, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:16', 0, '2026-02-11 08:20:16'),
(499, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(500, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(501, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(502, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(503, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(504, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(505, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(506, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(507, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(508, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(509, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(510, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(511, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(512, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:23', 0, '2026-02-11 08:20:23'),
(513, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(514, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(515, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(516, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(517, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(518, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(519, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(520, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(521, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(522, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(523, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(524, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(525, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(526, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(527, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(528, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:20:50', 0, '2026-02-11 08:20:50'),
(529, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(530, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(531, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(532, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(533, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(534, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(535, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(536, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(537, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(538, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(539, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(540, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(541, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(542, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:04', 0, '2026-02-11 08:29:04'),
(543, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(544, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(545, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(546, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(547, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(548, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(549, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(550, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(551, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(552, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(553, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(554, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(555, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(556, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:29:09', 0, '2026-02-11 08:29:09'),
(557, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(558, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(559, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(560, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(561, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(562, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(563, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(564, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(565, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(566, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(567, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(568, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(569, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(570, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:30:25', 0, '2026-02-11 08:30:25'),
(571, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(572, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(573, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(574, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(575, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(576, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(577, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(578, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(579, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(580, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(581, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(582, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(583, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(584, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(585, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(586, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:52:13', 0, '2026-02-11 08:52:13'),
(587, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(588, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(589, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(590, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(591, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(592, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(593, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(594, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:19', 0, '2026-02-11 08:55:19'),
(595, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(596, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(597, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(598, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(599, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(600, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(601, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(602, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:20', 0, '2026-02-11 08:55:20'),
(603, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(604, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(605, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(606, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(607, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(608, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(609, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:21', 0, '2026-02-11 08:55:21'),
(610, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(611, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(612, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(613, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(614, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(615, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(616, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:22', 0, '2026-02-11 08:55:22'),
(617, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(618, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(619, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(620, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(621, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(622, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(623, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(624, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(625, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(626, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(627, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(628, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(629, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(630, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:41', 0, '2026-02-11 08:55:41'),
(631, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(632, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(633, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(634, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(635, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(636, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(637, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(638, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(639, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(640, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(641, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(642, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(643, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(644, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:55:46', 0, '2026-02-11 08:55:46'),
(645, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(646, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(647, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(648, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(649, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(650, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(651, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(652, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(653, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(654, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(655, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(656, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(657, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(658, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:14', 0, '2026-02-11 08:56:14'),
(659, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(660, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(661, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(662, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(663, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(664, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(665, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:17', 0, '2026-02-11 08:56:17'),
(666, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(667, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(668, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(669, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(670, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(671, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(672, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:18', 0, '2026-02-11 08:56:18'),
(673, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(674, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(675, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(676, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(677, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(678, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(679, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(680, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(681, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(682, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(683, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(684, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(685, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(686, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:56:45', 0, '2026-02-11 08:56:45'),
(687, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(688, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(689, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(690, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(691, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(692, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(693, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(694, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(695, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(696, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(697, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(698, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(699, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(700, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:57:56', 0, '2026-02-11 08:57:56'),
(701, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(702, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(703, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(704, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(705, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(706, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(707, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(708, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(709, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(710, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(711, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(712, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(713, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(714, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(715, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(716, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:08', 0, '2026-02-11 08:58:08'),
(717, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(718, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(719, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(720, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(721, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(722, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(723, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(724, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:09', 0, '2026-02-11 08:58:09'),
(725, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(726, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(727, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(728, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(729, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(730, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(731, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(732, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 08:58:11', 0, '2026-02-11 08:58:11'),
(733, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:54', 0, '2026-02-11 09:00:54'),
(734, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:54', 0, '2026-02-11 09:00:54'),
(735, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:54', 0, '2026-02-11 09:00:54'),
(736, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:54', 0, '2026-02-11 09:00:54'),
(737, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:54', 0, '2026-02-11 09:00:54'),
(738, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(739, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(740, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(741, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(742, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(743, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(744, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(745, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(746, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(747, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(748, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:00:55', 0, '2026-02-11 09:00:55'),
(749, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(750, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(751, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(752, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(753, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(754, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(755, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(756, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(757, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(758, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(759, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(760, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(761, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(762, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:53', 0, '2026-02-11 09:04:53'),
(763, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(764, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(765, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(766, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(767, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(768, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(769, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(770, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(771, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(772, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(773, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(774, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(775, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(776, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:04:55', 0, '2026-02-11 09:04:55'),
(777, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(778, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(779, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(780, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(781, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(782, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(783, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:21', 0, '2026-02-11 09:05:21'),
(784, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(785, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(786, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(787, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(788, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(789, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(790, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:22', 0, '2026-02-11 09:05:22'),
(791, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(792, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(793, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(794, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(795, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(796, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(797, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(798, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(799, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(800, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(801, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(802, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(803, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(804, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:05:29', 0, '2026-02-11 09:05:29'),
(805, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(806, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(807, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(808, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(809, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(810, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(811, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(812, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:50', 0, '2026-02-11 09:06:50'),
(813, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(814, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(815, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(816, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(817, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(818, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(819, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(820, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:06:51', 0, '2026-02-11 09:06:51'),
(821, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(822, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(823, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(824, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(825, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(826, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(827, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(828, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(829, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(830, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(831, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(832, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(833, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(834, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(835, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(836, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:11', 0, '2026-02-11 09:13:11'),
(837, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(838, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(839, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(840, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(841, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(842, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(843, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(844, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(845, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(846, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(847, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(848, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(849, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(850, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:20', 0, '2026-02-11 09:13:20'),
(851, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(852, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(853, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(854, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(855, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(856, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(857, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(858, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(859, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(860, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(861, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(862, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(863, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(864, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:13:28', 0, '2026-02-11 09:13:28'),
(865, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(866, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(867, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(868, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(869, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(870, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(871, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(872, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(873, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(874, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(875, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(876, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(877, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(878, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(879, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(880, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:10', 0, '2026-02-11 09:23:10'),
(881, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(882, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(883, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(884, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(885, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(886, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(887, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(888, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(889, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(890, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(891, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(892, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(893, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(894, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:23:46', 0, '2026-02-11 09:23:46'),
(895, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(896, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(897, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(898, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(899, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(900, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(901, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(902, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(903, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(904, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(905, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(906, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(907, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(908, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:25:08', 0, '2026-02-11 09:25:08'),
(909, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(910, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(911, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(912, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(913, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(914, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(915, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:22', 0, '2026-02-11 09:26:22'),
(916, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(917, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(918, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(919, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(920, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(921, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(922, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:23', 0, '2026-02-11 09:26:23'),
(923, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(924, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(925, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(926, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(927, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(928, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(929, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(930, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(931, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(932, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(933, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(934, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(935, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(936, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(937, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(938, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(939, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(940, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(941, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(942, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(943, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(944, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(945, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(946, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:41', 0, '2026-02-11 09:26:41'),
(947, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(948, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(949, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(950, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(951, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(952, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(953, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(954, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:26:42', 0, '2026-02-11 09:26:42'),
(955, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(956, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(957, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(958, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(959, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(960, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(961, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(962, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(963, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(964, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(965, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(966, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(967, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(968, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(969, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(970, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:02', 0, '2026-02-11 09:27:02'),
(971, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(972, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(973, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(974, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(975, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(976, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(977, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:36', 0, '2026-02-11 09:27:36'),
(978, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(979, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(980, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(981, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(982, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(983, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(984, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:27:37', 0, '2026-02-11 09:27:37'),
(985, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(986, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(987, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(988, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(989, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(990, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(991, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(992, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(993, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(994, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(995, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(996, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(997, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(998, '', 'JTVPLAY', '', '[Mídia]', 'text', '2026-02-11 09:40:44', 0, '2026-02-11 09:40:44'),
(999, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1000, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1001, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1002, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1003, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1004, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1005, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1006, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:53', 0, '2026-02-11 09:58:53'),
(1007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1017, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1018, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1019, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1020, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1021, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1022, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:58:54', 0, '2026-02-11 09:58:54'),
(1023, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1024, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1025, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1026, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1027, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1028, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1029, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1030, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1031, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1032, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1033, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1034, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1035, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1036, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:00', 0, '2026-02-11 09:59:00'),
(1037, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1038, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1039, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1040, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1041, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1042, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1043, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 09:59:01', 0, '2026-02-11 09:59:01'),
(1044, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1045, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1046, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1047, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1048, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1049, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1050, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1051, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1052, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1053, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1054, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1055, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1056, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1057, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1058, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1059, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:12:18', 0, '2026-02-11 10:12:18'),
(1060, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1061, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1062, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1063, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1064, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1065, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1066, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(1067, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1068, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1069, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1070, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1071, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1072, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1073, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:29', 0, '2026-02-11 10:14:29'),
(1074, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1075, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1076, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1077, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1078, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1079, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1080, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1081, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1082, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1083, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1084, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1085, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1086, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1087, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:14:42', 0, '2026-02-11 10:14:42'),
(1088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1089, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1090, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1091, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1092, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1093, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1094, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1095, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1096, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1100, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1101, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:18:03', 0, '2026-02-11 10:18:03'),
(1102, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1103, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1104, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1105, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1106, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:13', 0, '2026-02-11 10:20:13'),
(1109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1113, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1114, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1115, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:20:14', 0, '2026-02-11 10:20:14'),
(1116, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1117, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1118, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1119, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1120, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:27:13', 0, '2026-02-11 10:27:13'),
(1130, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1131, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1132, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1133, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1134, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1135, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1136, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1137, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:28:46', 0, '2026-02-11 10:28:46'),
(1138, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1139, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1140, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1141, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1142, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1143, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1144, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:00', 0, '2026-02-11 10:29:00'),
(1145, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1146, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1147, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1148, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1149, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1150, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1151, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1152, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:29:19', 0, '2026-02-11 10:29:19'),
(1153, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1154, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:55', 0, '2026-02-11 10:33:55'),
(1161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:33:56', 0, '2026-02-11 10:33:56'),
(1169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1181, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1182, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:34:08', 0, '2026-02-11 10:34:08'),
(1183, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1184, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1185, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1186, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1187, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1188, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1189, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1190, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1191, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1192, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1193, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1194, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1195, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1196, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:12', 0, '2026-02-11 10:41:12'),
(1199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:41:36', 0, '2026-02-11 10:41:36'),
(1213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 10:56:34', 0, '2026-02-11 10:56:34'),
(1229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1233, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1234, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1235, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1236, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1237, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1238, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1239, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1240, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:03:08', 0, '2026-02-11 11:03:08'),
(1245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:05:46', 0, '2026-02-11 11:05:46'),
(1261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:06:49', 0, '2026-02-11 11:06:49'),
(1277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1281, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1282, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1283, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1284, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1285, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1286, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1287, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1288, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:05', 0, '2026-02-11 11:07:05'),
(1293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:07:22', 0, '2026-02-11 11:07:22'),
(1307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1311, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1312, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1313, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1314, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1315, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1316, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1317, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1318, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1319, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1320, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1321, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1322, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:08:07', 0, '2026-02-11 11:08:07'),
(1323, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1324, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1325, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1326, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1327, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1328, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1329, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1330, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1331, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1332, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1333, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1334, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1335, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1336, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1337, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1338, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:09:10', 0, '2026-02-11 11:09:10'),
(1339, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1340, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1341, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1342, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1343, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1344, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1345, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:42', 0, '2026-02-11 11:13:42'),
(1346, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1347, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1348, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1349, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1350, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1351, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1352, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:43', 0, '2026-02-11 11:13:43'),
(1353, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1354, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1355, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1356, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:13:59', 0, '2026-02-11 11:13:59'),
(1367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1373, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1374, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1375, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1376, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1377, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1378, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1379, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1380, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1381, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1382, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:18', 0, '2026-02-11 11:16:18'),
(1383, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1384, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1385, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1386, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1387, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1388, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1389, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1390, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1391, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1392, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1393, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1394, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1395, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1396, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:16:35', 0, '2026-02-11 11:16:35'),
(1397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:28', 0, '2026-02-11 11:20:28'),
(1410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:29', 0, '2026-02-11 11:20:29'),
(1411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1413, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1414, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1415, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1416, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1417, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1418, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1419, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1420, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:20:31', 0, '2026-02-11 11:20:31'),
(1427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:48', 0, '2026-02-11 11:22:48'),
(1435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:49', 0, '2026-02-11 11:22:49'),
(1443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:22:59', 0, '2026-02-11 11:22:59'),
(1457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1469, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1470, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1471, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1472, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:25:19', 0, '2026-02-11 11:25:19'),
(1473, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1474, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1475, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1476, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1477, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1478, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1479, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:07', 0, '2026-02-11 11:30:07'),
(1480, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1481, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1482, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1483, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1484, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1485, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1486, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:08', 0, '2026-02-11 11:30:08'),
(1487, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1488, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1489, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1490, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1491, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1492, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1493, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:10', 0, '2026-02-11 11:30:10'),
(1494, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1495, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:30:11', 0, '2026-02-11 11:30:11'),
(1501, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1502, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1503, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1504, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1505, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1506, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1507, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1508, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1509, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1510, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1511, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1512, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1513, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1514, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:38:21', 0, '2026-02-11 11:38:21'),
(1515, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:04', 0, '2026-02-11 11:39:04'),
(1516, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:04', 0, '2026-02-11 11:39:04'),
(1517, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:04', 0, '2026-02-11 11:39:04'),
(1518, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:04', 0, '2026-02-11 11:39:04'),
(1519, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:04', 0, '2026-02-11 11:39:04'),
(1520, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:04', 0, '2026-02-11 11:39:04'),
(1521, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1522, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1523, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1524, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(1535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1537, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1538, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:05', 0, '2026-02-11 11:39:05'),
(1539, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1540, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1541, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1542, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1543, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1544, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1545, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1546, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:39:06', 0, '2026-02-11 11:39:06'),
(1547, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1548, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1549, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1550, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1551, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1560, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:42:04', 0, '2026-02-11 11:42:04'),
(1561, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1562, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1563, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1564, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1565, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1566, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1567, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1568, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1569, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1570, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1571, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1572, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1573, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1574, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1575, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1576, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:15', 0, '2026-02-11 11:47:15'),
(1577, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1578, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1579, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1580, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1581, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1582, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1583, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1584, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1585, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1586, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1587, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1588, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1589, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1590, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:47:32', 0, '2026-02-11 11:47:32'),
(1591, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1592, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1593, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1594, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1595, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1596, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1602, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1603, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1604, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1605, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1606, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:57:54', 0, '2026-02-11 11:57:54'),
(1607, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1608, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1609, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 11:58:21', 0, '2026-02-11 11:58:21'),
(1623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1626, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1627, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1628, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1629, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1630, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1631, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1632, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1633, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1634, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1635, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1636, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1637, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1638, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:05:57', 0, '2026-02-11 12:05:57'),
(1639, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1640, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1641, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1642, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1643, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1644, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1645, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1646, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1647, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1648, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:06:03', 0, '2026-02-11 12:06:03'),
(1655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1657, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1660, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1662, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1664, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1666, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1668, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1670, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:11:15', 0, '2026-02-11 12:11:15'),
(1671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1672, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:25', 0, '2026-02-11 12:15:25'),
(1685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1692, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1693, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1694, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1695, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1696, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1697, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1698, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:15:30', 0, '2026-02-11 12:15:30'),
(1699, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1705, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1706, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1707, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1708, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1709, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1710, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1711, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1712, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1713, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1714, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:19:59', 0, '2026-02-11 12:19:59'),
(1715, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1716, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1717, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1718, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1719, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1720, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1721, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1722, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:43', 0, '2026-02-11 12:21:43'),
(1723, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1724, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1725, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1726, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1727, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1728, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1729, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1730, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:21:44', 0, '2026-02-11 12:21:44'),
(1731, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1732, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1733, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1734, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1735, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1736, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1737, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1738, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1739, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1740, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1741, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1742, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1743, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1744, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:22:07', 0, '2026-02-11 12:22:07'),
(1745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1753, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1754, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1755, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1756, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1757, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1758, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1759, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1760, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:25:26', 0, '2026-02-11 12:25:26'),
(1761, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1762, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:56', 0, '2026-02-11 12:31:56'),
(1769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:31:57', 0, '2026-02-11 12:31:57'),
(1777, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1778, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1779, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1780, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1781, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1782, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1783, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1784, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:45', 0, '2026-02-11 12:35:45'),
(1785, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1786, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1787, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1788, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1789, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1790, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1791, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1792, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:46', 0, '2026-02-11 12:35:46'),
(1793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1795, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1796, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1797, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1798, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1799, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1800, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1801, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1802, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1803, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1804, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1805, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1806, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:35:55', 0, '2026-02-11 12:35:55'),
(1807, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1808, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1809, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1810, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1811, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1812, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1813, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1814, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1815, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1816, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1817, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1818, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1819, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1820, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:38:57', 0, '2026-02-11 12:38:57'),
(1821, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1822, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1823, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1824, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1825, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1826, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1827, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1828, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1829, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1830, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1831, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1832, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1833, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1834, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1835, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1836, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:01', 0, '2026-02-11 12:39:01'),
(1837, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1838, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1839, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1840, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1841, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1842, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1843, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1844, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1845, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1846, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1847, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1848, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1849, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1850, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:30', 0, '2026-02-11 12:39:30'),
(1851, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1852, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1853, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1854, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1855, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1856, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1857, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1858, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1859, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1860, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1861, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1862, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1863, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1864, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:39:53', 0, '2026-02-11 12:39:53'),
(1865, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1866, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1867, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1868, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1869, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1870, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1871, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1872, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1873, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1874, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1875, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1876, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1877, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1878, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:37', 0, '2026-02-11 12:49:37'),
(1879, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1880, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1881, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1882, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1883, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1884, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1885, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:40', 0, '2026-02-11 12:49:40'),
(1886, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1887, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1888, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1889, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1890, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1891, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1892, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:41', 0, '2026-02-11 12:49:41'),
(1893, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1894, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1895, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1896, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1897, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1898, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1899, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1900, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1901, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1902, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1903, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1904, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1905, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1906, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:49:46', 0, '2026-02-11 12:49:46'),
(1907, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1908, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1909, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1910, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1911, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1912, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1913, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1914, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:05', 0, '2026-02-11 12:53:05'),
(1915, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:06', 0, '2026-02-11 12:53:06'),
(1916, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:06', 0, '2026-02-11 12:53:06'),
(1917, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:06', 0, '2026-02-11 12:53:06'),
(1918, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:06', 0, '2026-02-11 12:53:06'),
(1919, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:06', 0, '2026-02-11 12:53:06'),
(1920, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:53:06', 0, '2026-02-11 12:53:06'),
(1921, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1922, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1923, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1924, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1925, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1926, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1927, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1928, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1929, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1930, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1931, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1932, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1933, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1934, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1935, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1936, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:54:58', 0, '2026-02-11 12:54:58'),
(1937, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1938, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1939, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1940, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1941, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1942, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1943, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1944, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1945, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1946, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1947, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1948, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1949, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1950, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:02', 0, '2026-02-11 12:56:02'),
(1951, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1952, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1953, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1954, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1955, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1956, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1957, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1958, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1959, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1960, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1961, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1962, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1963, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1964, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1965, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1966, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 12:56:04', 0, '2026-02-11 12:56:04'),
(1967, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1968, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1969, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1970, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1971, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1972, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1973, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:13:49', 0, '2026-02-11 13:13:49'),
(1974, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1975, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1976, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1977, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1978, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1979, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1980, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1981, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1982, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1983, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1984, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1985, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1986, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1987, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1988, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1989, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 13:59:46', 0, '2026-02-11 13:59:46'),
(1990, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1991, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1992, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1993, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1994, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1995, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1996, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:52', 0, '2026-02-11 14:02:52'),
(1997, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53'),
(1998, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53'),
(1999, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53'),
(2000, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53'),
(2001, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53'),
(2002, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53'),
(2003, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:02:53', 0, '2026-02-11 14:02:53');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(2004, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2005, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2006, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2017, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:29:22', 0, '2026-02-11 14:29:22'),
(2018, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2019, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2020, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2021, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2022, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2023, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2024, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:41:43', 0, '2026-02-11 14:41:43'),
(2025, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2026, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2027, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2028, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2029, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2030, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2031, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:42:26', 0, '2026-02-11 14:42:26'),
(2032, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2033, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2034, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2035, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2036, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2037, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2038, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:44:57', 0, '2026-02-11 14:44:57'),
(2039, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2040, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2041, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2042, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2043, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2044, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2045, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:22', 0, '2026-02-11 14:52:22'),
(2046, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2047, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2048, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2049, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2050, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2051, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2052, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:23', 0, '2026-02-11 14:52:23'),
(2053, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2054, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2055, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2056, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2057, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2058, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2059, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:52:32', 0, '2026-02-11 14:52:32'),
(2060, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2061, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2062, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2063, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2064, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2065, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2066, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:53:33', 0, '2026-02-11 14:53:33'),
(2067, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2068, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2069, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2070, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2071, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2072, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2073, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:55:05', 0, '2026-02-11 14:55:05'),
(2074, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2075, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2076, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2077, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2078, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2079, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2080, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:56:48', 0, '2026-02-11 14:56:48'),
(2081, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2082, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2083, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2084, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2085, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2086, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2087, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 14:57:08', 0, '2026-02-11 14:57:08'),
(2088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2089, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2090, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2091, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2092, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2093, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2094, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2095, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2096, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2100, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2101, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2102, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2103, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:40', 0, '2026-02-11 17:33:40'),
(2104, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2105, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2106, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2113, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2114, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2115, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2116, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2117, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:33:47', 0, '2026-02-11 17:33:47'),
(2118, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2119, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2120, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2130, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2131, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:51:13', 0, '2026-02-11 17:51:13'),
(2132, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2133, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2134, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2135, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2136, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2137, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2138, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2139, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2140, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2141, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2142, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2143, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2144, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2145, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 17:58:23', 0, '2026-02-11 17:58:23'),
(2146, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2147, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2148, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2149, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2150, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2151, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2152, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2153, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2154, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:18', 0, '2026-02-11 18:14:18'),
(2162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:49', 0, '2026-02-11 18:14:49'),
(2169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:14:50', 0, '2026-02-11 18:14:50'),
(2176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2181, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2182, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2183, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2184, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2185, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2186, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2187, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2188, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2189, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:01', 0, '2026-02-11 18:15:01'),
(2190, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2191, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2192, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2193, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2194, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2195, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2196, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:10', 0, '2026-02-11 18:15:10'),
(2204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:20', 0, '2026-02-11 18:15:20'),
(2211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:21', 0, '2026-02-11 18:15:21'),
(2218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:22', 0, '2026-02-11 18:15:22'),
(2225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:23', 0, '2026-02-11 18:15:23'),
(2232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2233, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2234, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2235, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2236, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2237, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2238, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2239, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2240, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:28', 0, '2026-02-11 18:15:28'),
(2246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:15:37', 0, '2026-02-11 18:15:37'),
(2262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:18', 0, '2026-02-11 18:16:18'),
(2278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2281, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2282, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2283, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2284, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2285, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2286, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2287, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2288, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:32', 0, '2026-02-11 18:16:32'),
(2292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:51', 0, '2026-02-11 18:16:51'),
(2300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:52', 0, '2026-02-11 18:16:52'),
(2308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2311, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2312, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2313, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2314, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2315, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2316, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2317, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2318, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2319, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2320, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2321, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:16:58', 0, '2026-02-11 18:16:58'),
(2322, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2323, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2324, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2325, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2326, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2327, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2328, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2329, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2330, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2331, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2332, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2333, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2334, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2335, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:01', 0, '2026-02-11 18:17:01'),
(2336, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2337, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2338, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2339, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2340, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2341, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2342, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2343, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2344, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2345, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2346, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2347, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2348, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2349, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:08', 0, '2026-02-11 18:17:08'),
(2350, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2351, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2352, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2353, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2354, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2355, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2356, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:12', 0, '2026-02-11 18:17:12'),
(2364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2373, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2374, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2375, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2376, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2377, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:16', 0, '2026-02-11 18:17:16'),
(2378, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2379, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2380, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2381, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2382, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2383, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2384, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2385, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2386, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2387, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2388, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2389, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2390, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2391, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:32', 0, '2026-02-11 18:17:32'),
(2392, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2393, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2394, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2395, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2396, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:17:45', 0, '2026-02-11 18:17:45'),
(2408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2413, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2414, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2415, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2416, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2417, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2418, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2419, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2420, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:07', 0, '2026-02-11 18:18:07'),
(2422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:18:09', 0, '2026-02-11 18:18:09'),
(2438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:26:59', 0, '2026-02-11 18:26:59'),
(2454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:27:09', 0, '2026-02-11 18:27:09'),
(2468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2469, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(2470, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2471, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2472, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2473, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2474, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2475, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2476, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2477, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2478, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2479, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2480, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2481, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:45:04', 0, '2026-02-11 18:45:04'),
(2482, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2483, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2484, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2485, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2486, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2487, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2488, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2489, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2490, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2491, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2492, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2493, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2494, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2495, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:55', 0, '2026-02-11 18:47:55'),
(2498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2501, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2502, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2503, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2504, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2505, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:56', 0, '2026-02-11 18:47:56'),
(2506, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2507, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2508, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2509, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2510, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2511, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2512, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2513, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 18:47:57', 0, '2026-02-11 18:47:57'),
(2514, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2515, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2516, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2517, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2518, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2519, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2520, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2521, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2522, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2523, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2524, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:03:59', 0, '2026-02-11 19:03:59'),
(2530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2537, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2538, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2539, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2540, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2541, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2542, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2543, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2544, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2545, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:34', 0, '2026-02-11 19:08:34'),
(2546, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2547, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2548, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2549, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2550, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2551, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:44', 0, '2026-02-11 19:08:44'),
(2560, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2561, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2562, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2563, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2564, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2565, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2566, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:46', 0, '2026-02-11 19:08:46'),
(2567, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2568, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2569, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2570, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2571, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2572, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2573, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:08:47', 0, '2026-02-11 19:08:47'),
(2574, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2575, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2576, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2577, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2578, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2579, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2580, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2581, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2582, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2583, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2584, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2585, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2586, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2587, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:09:04', 0, '2026-02-11 19:09:04'),
(2588, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2589, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2590, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2591, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2592, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2593, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2594, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2595, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2596, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:04', 0, '2026-02-11 19:10:04'),
(2602, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2603, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2604, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2605, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2606, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2607, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2608, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2609, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:10', 0, '2026-02-11 19:10:10'),
(2610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:19', 0, '2026-02-11 19:10:19'),
(2617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:20', 0, '2026-02-11 19:10:20'),
(2624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2626, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2627, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2628, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2629, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2630, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2631, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2632, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2633, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2634, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2635, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2636, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2637, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:25', 0, '2026-02-11 19:10:25'),
(2638, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2639, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2640, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2641, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2642, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2643, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2644, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2645, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2646, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2647, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2648, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:28', 0, '2026-02-11 19:10:28'),
(2652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2657, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2660, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2662, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2664, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2666, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:10:30', 0, '2026-02-11 19:10:30'),
(2668, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2670, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2672, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:11:09', 0, '2026-02-11 19:11:09'),
(2682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:15', 0, '2026-02-11 19:12:15'),
(2690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2692, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2693, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2694, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2695, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2696, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2697, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:16', 0, '2026-02-11 19:12:16'),
(2698, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2699, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2705, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:23', 0, '2026-02-11 19:12:23'),
(2706, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2707, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2708, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2709, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2710, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2711, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2712, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2713, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:24', 0, '2026-02-11 19:12:24'),
(2714, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2715, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2716, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2717, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2718, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2719, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2720, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2721, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2722, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2723, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2724, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2725, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2726, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2727, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2728, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2729, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:12:47', 0, '2026-02-11 19:12:47'),
(2730, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2731, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2732, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2733, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2734, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2735, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2736, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:58', 0, '2026-02-11 19:15:58'),
(2737, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2738, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2739, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2740, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2741, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2742, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2743, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:15:59', 0, '2026-02-11 19:15:59'),
(2744, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2753, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2754, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2755, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2756, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2757, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:02', 0, '2026-02-11 19:16:02'),
(2758, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2759, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2760, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2761, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2762, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:06', 0, '2026-02-11 19:16:06'),
(2772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2777, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2778, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2779, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2780, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2781, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2782, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2783, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2784, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2785, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:16:10', 0, '2026-02-11 19:16:10'),
(2786, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2787, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2788, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2789, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2790, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2791, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2792, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2795, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2796, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2797, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2798, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2799, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:54', 0, '2026-02-11 19:17:54'),
(2800, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2801, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2802, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2803, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2804, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2805, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2806, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2807, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2808, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2809, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2810, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2811, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2812, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2813, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:17:58', 0, '2026-02-11 19:17:58'),
(2814, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2815, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2816, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2817, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2818, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2819, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2820, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2821, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:35', 0, '2026-02-11 19:18:35'),
(2822, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2823, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2824, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2825, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2826, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2827, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2828, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2829, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:18:37', 0, '2026-02-11 19:18:37'),
(2830, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2831, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2832, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2833, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2834, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2835, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2836, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2837, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2838, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2839, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2840, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2841, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2842, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2843, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2844, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2845, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:00', 0, '2026-02-11 19:20:00'),
(2846, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2847, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2848, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2849, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2850, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2851, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2852, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2853, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2854, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2855, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2856, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2857, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2858, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2859, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:23', 0, '2026-02-11 19:20:23'),
(2860, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2861, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2862, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2863, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2864, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2865, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2866, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:36', 0, '2026-02-11 19:20:36'),
(2867, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2868, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2869, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2870, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2871, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2872, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2873, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:20:37', 0, '2026-02-11 19:20:37'),
(2874, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2875, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2876, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2877, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2878, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2879, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2880, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2881, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2882, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2883, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2884, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2885, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2886, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2887, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:23:37', 0, '2026-02-11 19:23:37'),
(2888, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2889, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2890, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2891, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2892, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2893, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2894, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2895, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2896, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2897, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2898, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2899, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2900, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2901, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:08', 0, '2026-02-11 19:24:08'),
(2902, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2903, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2904, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2905, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2906, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2907, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2908, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2909, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2910, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2911, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2912, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2913, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2914, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2915, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2916, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2917, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:24:58', 0, '2026-02-11 19:24:58'),
(2918, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2919, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2920, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2921, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2922, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2923, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2924, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2925, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2926, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2927, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2928, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2929, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2930, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:02', 0, '2026-02-11 19:25:02'),
(2931, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:03', 0, '2026-02-11 19:25:03'),
(2932, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:03', 0, '2026-02-11 19:25:03'),
(2933, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:03', 0, '2026-02-11 19:25:03'),
(2934, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2935, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2936, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2937, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2938, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(2939, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2940, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2941, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2942, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2943, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2944, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2945, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2946, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2947, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2948, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2949, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:19', 0, '2026-02-11 19:25:19'),
(2950, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2951, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2952, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2953, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2954, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2955, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2956, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2957, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:20', 0, '2026-02-11 19:25:20'),
(2958, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2959, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2960, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2961, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2962, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2963, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2964, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2965, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:21', 0, '2026-02-11 19:25:21'),
(2966, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2967, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2968, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2969, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2970, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2971, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2972, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2973, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2974, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2975, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2976, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2977, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2978, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2979, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2980, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2981, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:22', 0, '2026-02-11 19:25:22'),
(2982, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2983, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2984, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2985, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2986, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2987, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2988, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2989, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2990, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2991, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2992, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2993, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2994, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2995, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:47', 0, '2026-02-11 19:25:47'),
(2996, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(2997, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(2998, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(2999, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3000, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3001, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3002, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3003, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3004, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3005, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3006, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:25:57', 0, '2026-02-11 19:25:57'),
(3012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3017, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3018, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3019, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3020, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3021, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3022, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3023, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3024, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3025, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3026, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3027, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:05', 0, '2026-02-11 19:26:05'),
(3028, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3029, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3030, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3031, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3032, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3033, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3034, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3035, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3036, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3037, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3038, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3039, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3040, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3041, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:15', 0, '2026-02-11 19:26:15'),
(3042, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3043, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3044, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3045, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3046, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3047, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3048, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3049, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3050, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3051, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3052, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3053, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3054, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3055, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3056, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3057, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:26:46', 0, '2026-02-11 19:26:46'),
(3058, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3059, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3060, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3061, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3062, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3063, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3064, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3065, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3066, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3067, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3068, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3069, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3070, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3071, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3072, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3073, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:05', 0, '2026-02-11 19:27:05'),
(3074, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3075, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3076, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3077, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3078, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3079, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3080, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3081, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3082, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3083, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3084, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3085, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3086, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3087, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:14', 0, '2026-02-11 19:27:14'),
(3088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3089, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3090, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3091, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3092, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3093, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3094, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3095, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3096, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3100, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3101, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3102, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3103, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:22', 0, '2026-02-11 19:27:22'),
(3104, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3105, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3106, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3113, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3114, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3115, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3116, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3117, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:27:41', 0, '2026-02-11 19:27:41'),
(3118, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3119, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3120, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:05', 0, '2026-02-11 19:29:05'),
(3125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3130, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3131, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:06', 0, '2026-02-11 19:29:06'),
(3132, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3133, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3134, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3135, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3136, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3137, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3138, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3139, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:07', 0, '2026-02-11 19:29:07'),
(3140, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3141, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3142, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3143, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3144, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3145, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3146, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:09', 0, '2026-02-11 19:29:09'),
(3147, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3148, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3149, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3150, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3151, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3152, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3153, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3154, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:10', 0, '2026-02-11 19:29:10'),
(3162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:13', 0, '2026-02-11 19:29:13'),
(3176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3181, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3182, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3183, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3184, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3185, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3186, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3187, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3188, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3189, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:16', 0, '2026-02-11 19:29:16'),
(3190, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3191, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3192, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3193, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3194, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3195, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3196, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:29:36', 0, '2026-02-11 19:29:36'),
(3206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:11', 0, '2026-02-11 19:30:11'),
(3222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:15', 0, '2026-02-11 19:30:15'),
(3229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3233, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3234, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3235, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:16', 0, '2026-02-11 19:30:16'),
(3236, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3237, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3238, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3239, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3240, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:17', 0, '2026-02-11 19:30:17'),
(3250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:20', 0, '2026-02-11 19:30:20'),
(3264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:27', 0, '2026-02-11 19:30:27'),
(3280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3281, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3282, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3283, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3284, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3285, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3286, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3287, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3288, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:35', 0, '2026-02-11 19:30:35'),
(3296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:46', 0, '2026-02-11 19:30:46'),
(3304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3311, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:30:47', 0, '2026-02-11 19:30:47'),
(3312, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3313, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3314, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3315, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3316, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3317, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3318, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3319, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3320, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3321, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3322, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3323, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3324, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3325, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3326, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3327, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:34', 0, '2026-02-11 19:31:34'),
(3328, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3329, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3330, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3331, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3332, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3333, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3334, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:46', 0, '2026-02-11 19:31:46'),
(3335, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3336, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3337, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3338, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3339, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3340, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3341, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:31:47', 0, '2026-02-11 19:31:47'),
(3342, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3343, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3344, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3345, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3346, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3347, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3348, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3349, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3350, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3351, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3352, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3353, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3354, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3355, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:16', 0, '2026-02-11 19:33:16'),
(3356, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:22', 0, '2026-02-11 19:33:22'),
(3370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3373, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3374, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3375, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3376, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3377, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3378, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3379, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3380, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3381, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3382, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3383, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:33:44', 0, '2026-02-11 19:33:44'),
(3384, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3385, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3386, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3387, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3388, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3389, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3390, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3391, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3392, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3393, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3394, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3395, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3396, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:44', 0, '2026-02-11 19:34:44'),
(3400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(3409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3413, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3414, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3415, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 19:34:52', 0, '2026-02-11 19:34:52'),
(3416, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3417, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3418, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3419, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3420, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:02', 0, '2026-02-11 20:01:02'),
(3432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:04', 0, '2026-02-11 20:01:04'),
(3448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:34', 0, '2026-02-11 20:01:34'),
(3464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3469, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3470, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3471, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:54', 0, '2026-02-11 20:01:54'),
(3472, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3473, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3474, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3475, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3476, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3477, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3478, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3479, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:01:55', 0, '2026-02-11 20:01:55'),
(3480, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3481, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3482, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3483, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3484, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3485, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3486, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3487, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3488, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3489, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3490, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3491, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3492, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3493, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3494, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3495, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:03', 0, '2026-02-11 20:02:03'),
(3496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3501, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3502, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3503, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3504, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3505, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3506, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3507, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3508, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3509, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3510, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3511, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:06', 0, '2026-02-11 20:02:06'),
(3512, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3513, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3514, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3515, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3516, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3517, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3518, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3519, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3520, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3521, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3522, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3523, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3524, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:02:18', 0, '2026-02-11 20:02:18'),
(3528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3537, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3538, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3539, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3540, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3541, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3542, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3543, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:08:58', 0, '2026-02-11 20:08:58'),
(3544, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3545, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3546, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3547, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3548, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3549, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3550, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3551, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:15:39', 0, '2026-02-11 20:15:39'),
(3560, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3561, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3562, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3563, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3564, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3565, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3566, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3567, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:36', 0, '2026-02-11 20:35:36'),
(3568, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3569, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3570, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3571, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3572, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3573, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3574, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:35:47', 0, '2026-02-11 20:35:47'),
(3575, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3576, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3577, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3578, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3579, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3580, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3581, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:36:12', 0, '2026-02-11 20:36:12'),
(3582, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3583, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3584, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3585, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3586, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3587, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3588, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3589, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:11', 0, '2026-02-11 20:37:11'),
(3590, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3591, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3592, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3593, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3594, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3595, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3596, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:37:33', 0, '2026-02-11 20:37:33'),
(3597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3602, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3603, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3604, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3605, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3606, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3607, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3608, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3609, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:20', 0, '2026-02-11 20:40:20'),
(3621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3626, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3627, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3628, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3629, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3630, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3631, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3632, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3633, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3634, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3635, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3636, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3637, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3638, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3639, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3640, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3641, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3642, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:40:21', 0, '2026-02-11 20:40:21'),
(3643, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3644, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3645, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3646, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3647, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3648, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:47:56', 0, '2026-02-11 20:47:56'),
(3650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:48:05', 0, '2026-02-11 20:48:05'),
(3657, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3660, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3662, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3664, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3666, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3668, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3670, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3672, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:18', 0, '2026-02-11 20:55:18'),
(3689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3692, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3693, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3694, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3695, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3696, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3697, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3698, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3699, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:19', 0, '2026-02-11 20:55:19'),
(3705, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3706, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3707, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3708, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3709, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3710, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3711, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3712, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:20', 0, '2026-02-11 20:55:20'),
(3713, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3714, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3715, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3716, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3717, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3718, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3719, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3720, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3721, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3722, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3723, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3724, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3725, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3726, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3727, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3728, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:21', 0, '2026-02-11 20:55:21'),
(3729, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3730, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3731, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3732, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3733, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3734, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3735, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3736, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3737, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3738, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3739, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3740, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3741, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3742, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3743, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3744, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:24', 0, '2026-02-11 20:55:24'),
(3753, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3754, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3755, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3756, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3757, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3758, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3759, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3760, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3761, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3762, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:25', 0, '2026-02-11 20:55:25'),
(3769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:26', 0, '2026-02-11 20:55:26'),
(3777, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3778, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3779, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3780, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3781, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3782, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3783, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3784, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:27', 0, '2026-02-11 20:55:27'),
(3785, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3786, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3787, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3788, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3789, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3790, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3791, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3792, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3795, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3796, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3797, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3798, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3799, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3800, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:28', 0, '2026-02-11 20:55:28'),
(3801, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3802, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3803, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3804, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3805, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3806, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3807, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3808, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:29', 0, '2026-02-11 20:55:29'),
(3809, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3810, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3811, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3812, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3813, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3814, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3815, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3816, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3817, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3818, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3819, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3820, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3821, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3822, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3823, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3824, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:31', 0, '2026-02-11 20:55:31'),
(3825, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3826, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3827, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3828, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3829, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3830, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3831, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3832, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:32', 0, '2026-02-11 20:55:32'),
(3833, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3834, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3835, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3836, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3837, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3838, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3839, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3840, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3841, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3842, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3843, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3844, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3845, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3846, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3847, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3848, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:33', 0, '2026-02-11 20:55:33'),
(3849, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3850, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3851, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3852, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3853, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3854, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3855, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3856, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:34', 0, '2026-02-11 20:55:34'),
(3857, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3858, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3859, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3860, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3861, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3862, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3863, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3864, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:35', 0, '2026-02-11 20:55:35'),
(3865, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3866, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3867, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3868, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3869, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3870, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3871, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3872, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(3873, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3874, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3875, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3876, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3877, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3878, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3879, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3880, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:36', 0, '2026-02-11 20:55:36'),
(3881, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3882, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3883, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3884, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3885, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3886, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3887, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3888, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3889, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3890, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3891, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3892, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3893, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3894, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3895, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3896, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:37', 0, '2026-02-11 20:55:37'),
(3897, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3898, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3899, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3900, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3901, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3902, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3903, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3904, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3905, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3906, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3907, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3908, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3909, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3910, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3911, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3912, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:39', 0, '2026-02-11 20:55:39'),
(3913, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3914, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3915, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3916, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3917, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3918, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3919, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3920, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3921, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3922, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3923, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3924, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3925, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3926, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3927, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3928, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3929, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3930, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3931, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3932, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3933, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3934, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3935, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3936, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:40', 0, '2026-02-11 20:55:40'),
(3937, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3938, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3939, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3940, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3941, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3942, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3943, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3944, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3945, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3946, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3947, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3948, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3949, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3950, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3951, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3952, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:43', 0, '2026-02-11 20:55:43'),
(3953, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3954, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3955, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3956, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3957, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3958, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3959, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3960, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:44', 0, '2026-02-11 20:55:44'),
(3961, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3962, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3963, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3964, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3965, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3966, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3967, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3968, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:45', 0, '2026-02-11 20:55:45'),
(3969, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3970, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3971, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3972, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3973, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3974, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3975, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3976, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3977, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3978, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3979, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3980, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3981, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3982, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3983, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3984, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:46', 0, '2026-02-11 20:55:46'),
(3985, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3986, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3987, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3988, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3989, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3990, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3991, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3992, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:48', 0, '2026-02-11 20:55:48'),
(3993, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(3994, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(3995, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(3996, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(3997, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(3998, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(3999, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4000, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4001, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4002, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4003, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4004, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4005, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4006, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:51', 0, '2026-02-11 20:55:51'),
(4009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:55:52', 0, '2026-02-11 20:55:52'),
(4017, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4018, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4019, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4020, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4021, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4022, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4023, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4024, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4025, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4026, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4027, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4028, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4029, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4030, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4031, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4032, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:23', 0, '2026-02-11 20:56:23'),
(4033, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4034, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4035, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4036, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4037, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4038, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4039, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4040, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:24', 0, '2026-02-11 20:56:24'),
(4041, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4042, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4043, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4044, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4045, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4046, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4047, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4048, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4049, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4050, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4051, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4052, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4053, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4054, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4055, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4056, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:28', 0, '2026-02-11 20:56:28'),
(4057, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4058, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4059, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4060, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4061, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4062, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4063, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4064, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:29', 0, '2026-02-11 20:56:29'),
(4065, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4066, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4067, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4068, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4069, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4070, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4071, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4072, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4073, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4074, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4075, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4076, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4077, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4078, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4079, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4080, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:30', 0, '2026-02-11 20:56:30'),
(4081, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4082, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4083, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4084, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4085, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4086, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4087, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:31', 0, '2026-02-11 20:56:31'),
(4089, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4090, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4091, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4092, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4093, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4094, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4095, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4096, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4100, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4101, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4102, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4103, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4104, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:34', 0, '2026-02-11 20:56:34'),
(4105, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4106, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:56:35', 0, '2026-02-11 20:56:35'),
(4113, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4114, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4115, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4116, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4117, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4118, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4119, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4120, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:01', 0, '2026-02-11 20:57:01'),
(4129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4130, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4131, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4132, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4133, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4134, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4135, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4136, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:02', 0, '2026-02-11 20:57:02'),
(4137, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4138, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4139, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4140, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4141, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4142, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4143, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4144, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4145, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4146, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4147, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4148, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4149, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4150, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4151, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4152, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:06', 0, '2026-02-11 20:57:06'),
(4153, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4154, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 20:57:07', 0, '2026-02-11 20:57:07'),
(4161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4181, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4182, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4183, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4184, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4185, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4186, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4187, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4188, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4189, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4190, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:04:31', 0, '2026-02-11 21:04:31'),
(4191, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4192, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4193, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4194, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4195, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4196, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:51', 0, '2026-02-11 21:05:51'),
(4198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:52', 0, '2026-02-11 21:05:52'),
(4205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:05:57', 0, '2026-02-11 21:05:57'),
(4219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:41', 0, '2026-02-11 21:06:41'),
(4233, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4234, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4235, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4236, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4237, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4238, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4239, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4240, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:46', 0, '2026-02-11 21:06:46'),
(4249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:06:48', 0, '2026-02-11 21:06:48'),
(4257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:26', 0, '2026-02-11 21:07:26'),
(4281, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4282, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4283, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4284, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4285, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4286, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4287, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4288, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:27', 0, '2026-02-11 21:07:27'),
(4289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:29', 0, '2026-02-11 21:07:29'),
(4304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:30', 0, '2026-02-11 21:07:30'),
(4311, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4312, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4313, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4314, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4315, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4316, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4317, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4318, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:07:52', 0, '2026-02-11 21:07:52'),
(4319, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4320, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4321, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4322, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4323, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4324, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4325, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4326, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4327, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4328, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4329, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4330, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4331, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4332, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4333, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:16', 0, '2026-02-11 21:09:16'),
(4334, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4335, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4336, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(4337, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4338, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4339, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4340, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4341, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:21', 0, '2026-02-11 21:09:21'),
(4342, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4343, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4344, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4345, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4346, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4347, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4348, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:09:34', 0, '2026-02-11 21:09:34'),
(4349, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4350, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4351, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4352, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4353, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4354, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4355, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4356, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:05', 0, '2026-02-11 21:10:05'),
(4357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:26', 0, '2026-02-11 21:10:26'),
(4373, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4374, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4375, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4376, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4377, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4378, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4379, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4380, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:42', 0, '2026-02-11 21:10:42'),
(4381, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4382, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4383, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4384, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4385, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4386, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4387, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4388, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:46', 0, '2026-02-11 21:10:46'),
(4389, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4390, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4391, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4392, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4393, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4394, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4395, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4396, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:10:51', 0, '2026-02-11 21:10:51'),
(4397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:00', 0, '2026-02-11 21:11:00'),
(4413, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4414, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4415, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4416, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4417, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4418, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4419, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4420, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:20', 0, '2026-02-11 21:11:20'),
(4429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:11:21', 0, '2026-02-11 21:11:21'),
(4437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:05', 0, '2026-02-11 21:15:05'),
(4453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:33', 0, '2026-02-11 21:15:33'),
(4461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:15:34', 0, '2026-02-11 21:15:34'),
(4469, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:36', 0, '2026-02-11 21:16:36'),
(4470, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4471, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4472, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4473, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4474, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4475, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4476, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4477, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4478, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4479, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4480, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4481, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4482, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4483, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4484, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:16:37', 0, '2026-02-11 21:16:37'),
(4485, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4486, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4487, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4488, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4489, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4490, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4491, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4492, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4493, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4494, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4495, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:17:14', 0, '2026-02-11 21:17:14'),
(4501, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4502, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4503, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4504, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4505, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4506, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4507, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4508, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:18:39', 0, '2026-02-11 21:18:39'),
(4509, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4510, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4511, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4512, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4513, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4514, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4515, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4516, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:19:56', 0, '2026-02-11 21:19:56'),
(4517, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4518, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4519, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4520, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4521, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4522, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4523, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4524, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:27:38', 0, '2026-02-11 21:27:38'),
(4525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4537, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4538, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4539, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4540, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:10', 0, '2026-02-11 21:28:10'),
(4541, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4542, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4543, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4544, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4545, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4546, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4547, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4548, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4549, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4550, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4551, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:43', 0, '2026-02-11 21:28:43'),
(4557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4560, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4561, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4562, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4563, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4564, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4565, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4566, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4567, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4568, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4569, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4570, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4571, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4572, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:28:50', 0, '2026-02-11 21:28:50'),
(4573, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4574, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4575, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4576, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4577, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4578, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4579, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4580, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:49', 0, '2026-02-11 21:29:49'),
(4581, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4582, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4583, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4584, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4585, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4586, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4587, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4588, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:50', 0, '2026-02-11 21:29:50'),
(4589, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4590, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4591, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4592, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4593, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4594, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4595, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:51', 0, '2026-02-11 21:29:51'),
(4596, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4602, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:29:52', 0, '2026-02-11 21:29:52'),
(4603, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4604, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4605, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4606, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4607, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4608, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4609, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:30:58', 0, '2026-02-11 21:30:58'),
(4619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4626, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:06', 0, '2026-02-11 21:31:06'),
(4627, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4628, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4629, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4630, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4631, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4632, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4633, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4634, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:07', 0, '2026-02-11 21:31:07'),
(4635, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4636, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4637, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4638, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4639, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4640, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4641, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4642, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4643, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4644, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4645, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4646, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4647, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4648, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:31:19', 0, '2026-02-11 21:31:19'),
(4651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4657, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4660, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4662, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4664, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4666, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:31', 0, '2026-02-11 21:32:31'),
(4667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4668, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4670, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4672, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:32:59', 0, '2026-02-11 21:32:59'),
(4683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4692, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4693, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4694, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4695, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4696, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4697, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4698, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:13', 0, '2026-02-11 21:33:13'),
(4699, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4705, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4706, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4707, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4708, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4709, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4710, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4711, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4712, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4713, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4714, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:33:31', 0, '2026-02-11 21:33:31'),
(4715, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4716, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4717, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4718, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4719, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4720, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4721, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4722, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4723, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4724, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4725, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4726, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4727, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4728, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4729, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4730, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:06', 0, '2026-02-11 21:34:06'),
(4731, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4732, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4733, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4734, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4735, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4736, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4737, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4738, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4739, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4740, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4741, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4742, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4743, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4744, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:34:28', 0, '2026-02-11 21:34:28'),
(4747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4753, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4754, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4755, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4756, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4757, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4758, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4759, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4760, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4761, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4762, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:23', 0, '2026-02-11 21:35:23'),
(4763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:35:35', 0, '2026-02-11 21:35:35'),
(4777, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4778, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4779, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4780, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4781, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4782, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4783, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4784, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4785, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4786, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4787, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4788, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4789, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4790, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:16', 0, '2026-02-11 21:36:16'),
(4791, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4792, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4795, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4796, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4797, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4798, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4799, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4800, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4801, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4802, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(4803, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4804, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4805, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4806, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:26', 0, '2026-02-11 21:36:26'),
(4807, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4808, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4809, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4810, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4811, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4812, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4813, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4814, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4815, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4816, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4817, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4818, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4819, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4820, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4821, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4822, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:36:33', 0, '2026-02-11 21:36:33'),
(4823, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4824, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4825, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4826, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4827, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4828, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4829, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4830, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4831, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4832, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4833, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4834, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4835, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4836, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:37:42', 0, '2026-02-11 21:37:42'),
(4837, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4838, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4839, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4840, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4841, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4842, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4843, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4844, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4845, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4846, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4847, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4848, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4849, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4850, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4851, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4852, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:43:06', 0, '2026-02-11 21:43:06'),
(4853, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4854, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4855, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4856, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4857, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4858, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4859, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4860, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-11 21:50:14', 0, '2026-02-11 21:50:14'),
(4861, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4862, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4863, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4864, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4865, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4866, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4867, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4868, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4869, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4870, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4871, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4872, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4873, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4874, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:42', 0, '2026-02-11 22:53:42'),
(4875, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4876, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4877, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4878, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4879, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4880, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4881, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4882, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4883, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4884, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4885, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4886, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4887, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4888, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:43', 0, '2026-02-11 22:53:43'),
(4889, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4890, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4891, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4892, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4893, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4894, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4895, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4896, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4897, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4898, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4899, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4900, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4901, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4902, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:45', 0, '2026-02-11 22:53:45'),
(4903, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4904, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4905, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4906, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4907, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4908, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4909, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4910, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4911, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4912, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4913, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4914, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4915, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4916, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:47', 0, '2026-02-11 22:53:47'),
(4917, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4918, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4919, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4920, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4921, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4922, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4923, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:55', 0, '2026-02-11 22:53:55'),
(4924, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4925, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4926, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4927, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4928, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4929, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4930, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:53:56', 0, '2026-02-11 22:53:56'),
(4931, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4932, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4933, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4934, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4935, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4936, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4937, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:17', 0, '2026-02-11 22:54:17'),
(4938, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4939, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4940, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4941, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4942, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4943, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4944, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:18', 0, '2026-02-11 22:54:18'),
(4945, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4946, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4947, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4948, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4949, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4950, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4951, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4952, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4953, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4954, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4955, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4956, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4957, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4958, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 22:54:20', 0, '2026-02-11 22:54:20'),
(4959, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4960, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4961, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4962, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4963, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4964, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4965, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4966, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:28', 0, '2026-02-11 23:05:28'),
(4967, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4968, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4969, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4970, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4971, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4972, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4973, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4974, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:29', 0, '2026-02-11 23:05:29'),
(4975, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4976, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4977, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4978, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4979, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4980, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4981, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4982, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4983, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4984, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4985, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4986, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4987, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4988, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:32', 0, '2026-02-11 23:05:32'),
(4989, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4990, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4991, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4992, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4993, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4994, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4995, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4996, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4997, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4998, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(4999, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(5000, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(5001, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(5002, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:35', 0, '2026-02-11 23:05:35'),
(5003, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5004, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5005, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5006, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5017, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5018, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:05:52', 0, '2026-02-11 23:05:52'),
(5019, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:58', 0, '2026-02-11 23:06:58'),
(5020, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:58', 0, '2026-02-11 23:06:58'),
(5021, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:58', 0, '2026-02-11 23:06:58'),
(5022, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:58', 0, '2026-02-11 23:06:58'),
(5023, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5024, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5025, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5026, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5027, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5028, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5029, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5030, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5031, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5032, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-11 23:06:59', 0, '2026-02-11 23:06:59'),
(5033, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5034, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5035, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5036, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5037, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5038, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5039, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5040, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5041, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5042, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5043, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5044, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5045, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5046, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:31', 0, '2026-02-12 08:28:31'),
(5047, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5048, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5049, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5050, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5051, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5052, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5053, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5054, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5055, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5056, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5057, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5058, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5059, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5060, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:28:58', 0, '2026-02-12 08:28:58'),
(5061, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5062, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5063, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5064, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5065, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5066, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5067, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5068, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5069, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5070, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5071, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5072, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5073, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5074, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:29:12', 0, '2026-02-12 08:29:12'),
(5075, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5076, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5077, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5078, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5079, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5080, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5081, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:41', 0, '2026-02-12 08:34:41'),
(5082, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5083, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5084, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5085, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5086, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5087, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:34:42', 0, '2026-02-12 08:34:42'),
(5089, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5090, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5091, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5092, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5093, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5094, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5095, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5096, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:45:22', 0, '2026-02-12 08:45:22'),
(5097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5100, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5101, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5102, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5103, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5104, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5105, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5106, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 08:47:17', 0, '2026-02-12 08:47:17'),
(5111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5113, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5114, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5115, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5116, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5117, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5118, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5119, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5120, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5130, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:07', 0, '2026-02-12 09:00:07'),
(5131, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5132, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5133, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5134, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5135, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5136, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5137, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5138, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:09', 0, '2026-02-12 09:00:09'),
(5139, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5140, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5141, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5142, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5143, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5144, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5145, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5146, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:10', 0, '2026-02-12 09:00:10'),
(5147, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5148, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5149, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5150, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5151, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5152, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5153, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5154, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:11', 0, '2026-02-12 09:00:11'),
(5155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:23', 0, '2026-02-12 09:00:23'),
(5171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5181, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5182, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5183, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5184, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5185, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5186, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:28', 0, '2026-02-12 09:00:28'),
(5187, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5188, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5189, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5190, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5191, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5192, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5193, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5194, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5195, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5196, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:00:51', 0, '2026-02-12 09:00:51'),
(5203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:01:00', 0, '2026-02-12 09:01:00'),
(5219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:42', 0, '2026-02-12 09:12:42'),
(5226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:43', 0, '2026-02-12 09:12:43'),
(5233, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5234, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5235, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5236, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5237, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5238, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5239, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5240, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:44', 0, '2026-02-12 09:12:44'),
(5247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:45', 0, '2026-02-12 09:12:45'),
(5254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:12:46', 0, '2026-02-12 09:12:46'),
(5261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(5272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:39', 0, '2026-02-12 09:19:39'),
(5275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5281, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5282, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5283, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5284, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5285, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5286, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5287, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5288, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:19:42', 0, '2026-02-12 09:19:42'),
(5289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:21', 0, '2026-02-12 09:26:21'),
(5305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5311, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5312, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5313, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5314, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5315, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5316, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5317, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5318, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5319, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5320, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:26:47', 0, '2026-02-12 09:26:47'),
(5321, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5322, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5323, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5324, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5325, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5326, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5327, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5328, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:07', 0, '2026-02-12 09:27:07'),
(5329, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5330, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5331, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5332, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5333, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5334, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5335, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5336, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:08', 0, '2026-02-12 09:27:08'),
(5337, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5338, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5339, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5340, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5341, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5342, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5343, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5344, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5345, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5346, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5347, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5348, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5349, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5350, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5351, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5352, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:27:45', 0, '2026-02-12 09:27:45'),
(5353, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5354, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5355, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5356, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:34', 0, '2026-02-12 09:28:34'),
(5361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:28:35', 0, '2026-02-12 09:28:35'),
(5369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5373, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5374, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5375, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:25', 0, '2026-02-12 09:29:25'),
(5376, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5377, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5378, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5379, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5380, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5381, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5382, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:29:26', 0, '2026-02-12 09:29:26'),
(5383, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5384, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5385, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5386, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5387, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5388, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5389, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5390, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5391, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5392, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5393, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5394, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5395, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5396, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:12', 0, '2026-02-12 09:30:12'),
(5397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:21', 0, '2026-02-12 09:30:21'),
(5413, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5414, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5415, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5416, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5417, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5418, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5419, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5420, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:23', 0, '2026-02-12 09:30:23'),
(5429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:55', 0, '2026-02-12 09:30:55'),
(5437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:30:56', 0, '2026-02-12 09:30:56'),
(5445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:07', 0, '2026-02-12 09:31:07'),
(5459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:08', 0, '2026-02-12 09:31:08'),
(5467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5469, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5470, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5471, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5472, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5473, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5474, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:31:09', 0, '2026-02-12 09:31:09'),
(5475, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5476, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5477, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5478, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5479, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5480, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5481, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:42', 0, '2026-02-12 09:34:42'),
(5482, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5483, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5484, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5485, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5486, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5487, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5488, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:34:58', 0, '2026-02-12 09:34:58'),
(5489, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5490, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5491, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5492, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5493, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5494, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5495, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:35:25', 0, '2026-02-12 09:35:25'),
(5496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5501, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5502, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5503, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5504, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5505, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5506, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5507, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5508, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5509, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5510, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5511, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:39:41', 0, '2026-02-12 09:39:41'),
(5512, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5513, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5514, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5515, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5516, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5517, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5518, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5519, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5520, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5521, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5522, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5523, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5524, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:19', 0, '2026-02-12 09:41:19'),
(5526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5537, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5538, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5539, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:32', 0, '2026-02-12 09:41:32'),
(5540, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5541, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5542, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5543, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5544, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5545, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5546, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5547, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5548, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5549, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5550, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5551, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:37', 0, '2026-02-12 09:41:37'),
(5554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5560, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5561, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5562, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5563, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5564, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5565, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5566, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5567, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:44', 0, '2026-02-12 09:41:44'),
(5568, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5569, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5570, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5571, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5572, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5573, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5574, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:45', 0, '2026-02-12 09:41:45'),
(5575, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5576, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5577, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5578, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5579, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5580, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5581, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:46', 0, '2026-02-12 09:41:46'),
(5582, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5583, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5584, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5585, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5586, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5587, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5588, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5589, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5590, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5591, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5592, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5593, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5594, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5595, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:41:55', 0, '2026-02-12 09:41:55'),
(5596, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5602, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5603, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5604, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5605, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5606, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5607, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5608, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5609, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:44:55', 0, '2026-02-12 09:44:55'),
(5612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 09:51:40', 0, '2026-02-12 09:51:40'),
(5626, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5627, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5628, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5629, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5630, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5631, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5632, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5633, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:37', 0, '2026-02-12 10:01:37'),
(5634, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5635, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5636, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5637, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5638, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5639, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5640, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:01:51', 0, '2026-02-12 10:01:51'),
(5641, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5642, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5643, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5644, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5645, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5646, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5647, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5648, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:02:35', 0, '2026-02-12 10:02:35'),
(5649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5657, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5660, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5662, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:05:45', 0, '2026-02-12 10:05:45'),
(5663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5664, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5666, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5668, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5670, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5672, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:07', 0, '2026-02-12 10:06:07'),
(5679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:14', 0, '2026-02-12 10:06:14'),
(5686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5692, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:15', 0, '2026-02-12 10:06:15'),
(5693, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5694, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5695, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5696, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5697, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5698, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5699, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5705, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5706, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5707, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5708, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:06:50', 0, '2026-02-12 10:06:50'),
(5709, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5710, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5711, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5712, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5713, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5714, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5715, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5716, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:12', 0, '2026-02-12 10:07:12'),
(5717, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5718, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5719, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5720, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5721, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5722, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5723, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5724, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:07:13', 0, '2026-02-12 10:07:13'),
(5725, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5726, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5727, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5728, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5729, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5730, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5731, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5732, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5733, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5734, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5735, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5736, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5737, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04'),
(5738, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:04', 0, '2026-02-12 10:08:04');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(5739, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5740, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5741, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5742, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5743, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5744, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5753, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5754, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:17', 0, '2026-02-12 10:08:17'),
(5755, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5756, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5757, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5758, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5759, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5760, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5761, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5762, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:18', 0, '2026-02-12 10:08:18'),
(5763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5777, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5778, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:08:44', 0, '2026-02-12 10:08:44'),
(5779, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5780, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5781, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5782, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5783, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5784, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5785, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5786, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5787, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5788, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5789, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5790, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5791, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5792, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:06', 0, '2026-02-12 10:09:06'),
(5795, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5796, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5797, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5798, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5799, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5800, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5801, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5802, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5803, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5804, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5805, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5806, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5807, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5808, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5809, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5810, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:09:40', 0, '2026-02-12 10:09:40'),
(5811, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5812, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5813, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5814, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5815, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5816, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5817, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5818, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:08', 0, '2026-02-12 10:10:08'),
(5819, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5820, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5821, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5822, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5823, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5824, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5825, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5826, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:09', 0, '2026-02-12 10:10:09'),
(5827, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5828, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5829, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5830, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5831, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5832, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5833, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5834, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:10:42', 0, '2026-02-12 10:10:42'),
(5835, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5836, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5837, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5838, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5839, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5840, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5841, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5842, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5843, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5844, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5845, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5846, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5847, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5848, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:16:59', 0, '2026-02-12 10:16:59'),
(5849, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5850, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5851, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5852, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5853, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5854, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5855, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5856, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5857, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5858, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5859, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5860, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5861, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5862, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:01', 0, '2026-02-12 10:17:01'),
(5863, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5864, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5865, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5866, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5867, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5868, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5869, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5870, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5871, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5872, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5873, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5874, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5875, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5876, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:22', 0, '2026-02-12 10:17:22'),
(5877, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5878, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5879, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5880, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5881, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5882, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5883, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5884, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5885, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5886, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5887, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5888, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5889, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5890, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:17:27', 0, '2026-02-12 10:17:27'),
(5891, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5892, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5893, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5894, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5895, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5896, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5897, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:00', 0, '2026-02-12 10:19:00'),
(5898, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5899, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5900, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5901, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5902, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5903, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5904, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:01', 0, '2026-02-12 10:19:01'),
(5905, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5906, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5907, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5908, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5909, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5910, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5911, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5912, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5913, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5914, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5915, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5916, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5917, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5918, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:05', 0, '2026-02-12 10:19:05'),
(5919, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5920, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5921, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5922, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5923, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5924, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5925, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5926, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5927, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5928, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5929, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5930, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5931, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5932, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:19:10', 0, '2026-02-12 10:19:10'),
(5933, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5934, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5935, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5936, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5937, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5938, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5939, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5940, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5941, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5942, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5943, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5944, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5945, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5946, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5947, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5948, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:28', 0, '2026-02-12 10:24:28'),
(5949, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5950, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5951, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5952, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5953, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5954, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5955, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5956, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5957, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5958, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5959, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5960, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5961, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5962, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5963, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5964, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:39', 0, '2026-02-12 10:24:39'),
(5965, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5966, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5967, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5968, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5969, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5970, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5971, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5972, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5973, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5974, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5975, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5976, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5977, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5978, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5979, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5980, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:24:55', 0, '2026-02-12 10:24:55'),
(5981, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5982, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5983, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5984, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5985, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5986, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5987, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5988, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5989, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5990, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5991, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5992, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5993, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5994, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5995, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5996, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:09', 0, '2026-02-12 10:25:09'),
(5997, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(5998, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(5999, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6000, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6001, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6002, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6003, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6004, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6005, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6006, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:25:57', 0, '2026-02-12 10:25:57'),
(6013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6017, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6018, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6019, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6020, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6021, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6022, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6023, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6024, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6025, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6026, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6027, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6028, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:27:24', 0, '2026-02-12 10:27:24'),
(6029, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6030, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6031, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6032, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6033, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6034, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6035, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6036, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6037, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6038, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6039, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6040, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6041, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6042, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6043, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6044, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:47:27', 0, '2026-02-12 10:47:27'),
(6045, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6046, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6047, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6048, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6049, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6050, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6051, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6052, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6053, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6054, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6055, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6056, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6057, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6058, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6059, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6060, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 10:56:30', 0, '2026-02-12 10:56:30'),
(6061, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6062, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6063, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6064, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6065, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6066, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6067, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6068, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6069, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6070, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6071, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6072, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6073, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6074, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:53', 0, '2026-02-12 11:03:53'),
(6075, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6076, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6077, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6078, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6079, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6080, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6081, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6082, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6083, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6084, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6085, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6086, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6087, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6089, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6090, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:03:55', 0, '2026-02-12 11:03:55'),
(6091, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6092, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6093, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6094, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6095, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6096, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6100, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6101, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6102, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6103, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6104, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6105, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6106, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:04:59', 0, '2026-02-12 11:04:59'),
(6107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6113, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6114, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6115, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6116, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6117, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6118, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6119, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6120, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:05:01', 0, '2026-02-12 11:05:01'),
(6123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6130, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6131, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6132, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6133, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6134, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6135, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6136, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6137, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6138, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:06:09', 0, '2026-02-12 11:06:09'),
(6139, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6140, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6141, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6142, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6143, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6144, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6145, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6146, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:07:09', 0, '2026-02-12 11:07:09'),
(6147, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6148, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6149, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6150, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6151, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6152, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6153, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6154, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:10', 0, '2026-02-12 11:08:10'),
(6155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:37', 0, '2026-02-12 11:08:37'),
(6169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6181, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6182, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:39', 0, '2026-02-12 11:08:39'),
(6183, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6184, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6185, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6186, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6187, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6188, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6189, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6190, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6191, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6192, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6193, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6194, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6195, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6196, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:46', 0, '2026-02-12 11:08:46'),
(6197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(6207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:49', 0, '2026-02-12 11:08:49'),
(6211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:08:50', 0, '2026-02-12 11:08:50'),
(6225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6233, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6234, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6235, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6236, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6237, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6238, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6239, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6240, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:09:36', 0, '2026-02-12 11:09:36'),
(6241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:06', 0, '2026-02-12 11:10:06'),
(6248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:07', 0, '2026-02-12 11:10:07'),
(6255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:19', 0, '2026-02-12 11:10:19'),
(6263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:21', 0, '2026-02-12 11:10:21'),
(6271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:40', 0, '2026-02-12 11:10:40'),
(6278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6281, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6282, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6283, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6284, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:41', 0, '2026-02-12 11:10:41'),
(6285, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6286, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6287, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6288, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:10:42', 0, '2026-02-12 11:10:42'),
(6301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:26', 0, '2026-02-12 11:12:26'),
(6308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6311, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6312, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6313, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6314, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:27', 0, '2026-02-12 11:12:27'),
(6315, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6316, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6317, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6318, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6319, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6320, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6321, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6322, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6323, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6324, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6325, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6326, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6327, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6328, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:54', 0, '2026-02-12 11:12:54'),
(6329, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6330, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6331, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6332, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6333, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6334, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6335, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6336, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6337, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6338, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6339, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6340, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6341, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6342, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6343, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6344, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:12:55', 0, '2026-02-12 11:12:55'),
(6345, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6346, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6347, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6348, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6349, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6350, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6351, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6352, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6353, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6354, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6355, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6356, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:01', 0, '2026-02-12 11:13:01'),
(6361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6373, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6374, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6375, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6376, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:13:08', 0, '2026-02-12 11:13:08'),
(6377, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6378, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6379, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6380, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6381, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6382, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6383, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6384, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6385, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6386, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6387, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6388, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6389, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6390, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:22', 0, '2026-02-12 11:14:22'),
(6391, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6392, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6393, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6394, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6395, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6396, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:43', 0, '2026-02-12 11:14:43'),
(6407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6413, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6414, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6415, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6416, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6417, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6418, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6419, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6420, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:14:59', 0, '2026-02-12 11:14:59'),
(6421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:26:40', 0, '2026-02-12 11:26:40'),
(6437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:28:14', 0, '2026-02-12 11:28:14'),
(6453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:14', 0, '2026-02-12 11:30:14'),
(6461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:30:15', 0, '2026-02-12 11:30:15'),
(6469, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6470, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6471, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6472, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6473, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6474, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6475, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6476, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:34:16', 0, '2026-02-12 11:34:16'),
(6477, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6478, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6479, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6480, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6481, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6482, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6483, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:58', 0, '2026-02-12 11:41:58'),
(6484, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6485, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6486, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6487, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6488, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6489, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6490, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 11:41:59', 0, '2026-02-12 11:41:59'),
(6491, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6492, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6493, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6494, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6495, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6501, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6502, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6503, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6504, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6505, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6506, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:26:02', 0, '2026-02-12 12:26:02'),
(6507, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6508, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6509, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6510, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6511, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6512, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6513, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6514, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6515, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6516, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6517, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6518, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6519, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6520, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:31:54', 0, '2026-02-12 12:31:54'),
(6521, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6522, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6523, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6524, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:18', 0, '2026-02-12 12:33:18'),
(6529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:33:19', 0, '2026-02-12 12:33:19'),
(6537, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6538, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6539, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6540, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6541, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6542, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6543, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6544, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:40:35', 0, '2026-02-12 12:40:35'),
(6545, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6546, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6547, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6548, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6549, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6550, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6551, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6560, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6561, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6562, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6563, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6564, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6565, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 12:42:29', 0, '2026-02-12 12:42:29'),
(6566, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6567, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6568, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6569, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6570, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6571, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6572, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6573, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6574, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6575, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6576, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6577, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6578, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6579, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6580, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6581, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:01:31', 0, '2026-02-12 13:01:31'),
(6582, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6583, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6584, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6585, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6586, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6587, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6588, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6589, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6590, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6591, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6592, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6593, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6594, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6595, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6596, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:02', 0, '2026-02-12 13:09:02'),
(6598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6602, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6603, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6604, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6605, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6606, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6607, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6608, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6609, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6626, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6627, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6628, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6629, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:09:44', 0, '2026-02-12 13:09:44'),
(6630, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6631, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6632, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6633, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6634, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6635, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6636, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6637, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:04', 0, '2026-02-12 13:23:04'),
(6638, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6639, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6640, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6641, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6642, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6643, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6644, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6645, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:05', 0, '2026-02-12 13:23:05'),
(6646, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6647, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6648, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:09', 0, '2026-02-12 13:23:09'),
(6654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6657, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6660, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:23:10', 0, '2026-02-12 13:23:10'),
(6662, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6664, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6666, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6668, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:19', 0, '2026-02-12 13:41:19'),
(6669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20'),
(6670, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20'),
(6671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20'),
(6672, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20'),
(6673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20'),
(6674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(6675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:20', 0, '2026-02-12 13:41:20'),
(6676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 13:41:21', 0, '2026-02-12 13:41:21'),
(6692, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6693, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6694, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6695, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6696, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6697, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6698, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6699, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:22:42', 0, '2026-02-12 14:22:42'),
(6700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6705, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6706, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6707, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6708, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6709, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6710, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6711, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6712, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6713, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6714, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6715, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 14:35:21', 0, '2026-02-12 14:35:21'),
(6716, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6717, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6718, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6719, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6720, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6721, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6722, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6723, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:32', 0, '2026-02-12 15:17:32'),
(6724, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6725, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6726, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6727, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6728, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6729, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6730, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6731, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:17:33', 0, '2026-02-12 15:17:33'),
(6732, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6733, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6734, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6735, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6736, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6737, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6738, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:44', 0, '2026-02-12 15:22:44'),
(6739, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6740, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6741, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6742, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6743, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6744, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:45', 0, '2026-02-12 15:22:45'),
(6746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:49', 0, '2026-02-12 15:22:49'),
(6753, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6754, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6755, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6756, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6757, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6758, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6759, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:22:50', 0, '2026-02-12 15:22:50'),
(6760, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6761, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6762, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:49', 0, '2026-02-12 15:51:49'),
(6774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6777, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6778, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6779, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6780, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:57', 0, '2026-02-12 15:51:57'),
(6781, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6782, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6783, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6784, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6785, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6786, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6787, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:51:58', 0, '2026-02-12 15:51:58'),
(6788, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6789, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6790, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6791, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6792, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:08', 0, '2026-02-12 15:53:08'),
(6795, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6796, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6797, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6798, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6799, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6800, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6801, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:53:09', 0, '2026-02-12 15:53:09'),
(6802, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6803, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6804, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6805, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6806, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6807, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6808, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6809, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:04', 0, '2026-02-12 15:57:04'),
(6810, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6811, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6812, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6813, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6814, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6815, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6816, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6817, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:57:05', 0, '2026-02-12 15:57:05'),
(6818, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6819, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6820, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6821, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6822, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6823, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6824, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6825, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6826, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6827, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6828, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6829, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6830, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6831, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6832, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6833, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 15:59:13', 0, '2026-02-12 15:59:13'),
(6834, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6835, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6836, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6837, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6838, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6839, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6840, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:21', 0, '2026-02-12 16:58:21'),
(6841, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6842, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6843, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6844, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6845, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6846, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6847, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:24', 0, '2026-02-12 16:58:24'),
(6848, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6849, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6850, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6851, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6852, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6853, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6854, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:58:31', 0, '2026-02-12 16:58:31'),
(6855, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6856, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6857, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6858, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6859, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6860, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6861, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 16:59:02', 0, '2026-02-12 16:59:02'),
(6862, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6863, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6864, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6865, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6866, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6867, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6868, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:00:21', 0, '2026-02-12 17:00:21'),
(6869, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6870, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6871, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6872, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6873, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6874, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6875, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6876, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6877, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6878, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6879, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6880, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6881, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6882, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:12:29', 0, '2026-02-12 17:12:29'),
(6883, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6884, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6885, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6886, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6887, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6888, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6889, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6890, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6891, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6892, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6893, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6894, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6895, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6896, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:05', 0, '2026-02-12 17:13:05'),
(6897, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6898, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6899, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6900, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6901, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6902, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6903, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6904, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6905, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6906, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6907, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6908, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6909, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6910, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:13:21', 0, '2026-02-12 17:13:21'),
(6911, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6912, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6913, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6914, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6915, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6916, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6917, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6918, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6919, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6920, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6921, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6922, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6923, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6924, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:28:55', 0, '2026-02-12 17:28:55'),
(6925, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6926, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6927, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6928, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6929, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6930, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6931, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6932, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6933, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6934, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6935, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6936, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6937, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6938, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:33:12', 0, '2026-02-12 17:33:12'),
(6939, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6940, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6941, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6942, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6943, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6944, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6945, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6946, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6947, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6948, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6949, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6950, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6951, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6952, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:39:42', 0, '2026-02-12 17:39:42'),
(6953, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6954, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6955, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6956, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6957, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6958, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6959, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 17:59:40', 0, '2026-02-12 17:59:40'),
(6960, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6961, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6962, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6963, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6964, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6965, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6966, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6967, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6968, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6969, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6970, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6971, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6972, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6973, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6974, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6975, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:03:43', 0, '2026-02-12 18:03:43'),
(6976, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6977, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6978, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6979, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6980, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6981, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6982, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6983, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6984, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6985, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6986, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6987, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6988, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6989, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:18', 0, '2026-02-12 18:21:18'),
(6990, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6991, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6992, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6993, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6994, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6995, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6996, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6997, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:30', 0, '2026-02-12 18:21:30'),
(6998, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(6999, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7000, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7001, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7002, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7003, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7004, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7005, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:34', 0, '2026-02-12 18:21:34'),
(7006, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7007, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7008, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7009, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7010, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7011, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7012, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7013, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7014, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7015, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7016, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7017, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7018, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7019, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:21:36', 0, '2026-02-12 18:21:36'),
(7020, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7021, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7022, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7023, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7024, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7025, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7026, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7027, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:52', 0, '2026-02-12 18:23:52'),
(7028, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7029, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7030, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7031, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7032, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7033, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7034, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7035, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:23:53', 0, '2026-02-12 18:23:53'),
(7036, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7037, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7038, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7039, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7040, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7041, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7042, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7043, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7044, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7045, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7046, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7047, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7048, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7049, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7050, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7051, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:15', 0, '2026-02-12 18:24:15'),
(7052, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7053, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7054, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7055, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7056, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7057, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7058, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7059, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:17', 0, '2026-02-12 18:24:17'),
(7060, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7061, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7062, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7063, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7064, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7065, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7066, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7067, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:18', 0, '2026-02-12 18:24:18'),
(7068, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7069, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7070, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7071, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7072, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7073, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7074, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7075, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7076, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7077, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7078, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7079, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7080, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7081, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7082, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7083, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:20', 0, '2026-02-12 18:24:20'),
(7084, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7085, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7086, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7087, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7088, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7089, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7090, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7091, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7092, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7093, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7094, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7095, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7096, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7097, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7098, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7099, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:24:36', 0, '2026-02-12 18:24:36'),
(7100, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7101, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7102, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7103, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7104, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7105, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7106, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7107, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7108, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7109, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7110, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7111, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7112, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7113, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:40', 0, '2026-02-12 18:26:40'),
(7114, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7115, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7116, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7117, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7118, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7119, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7120, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:26:41', 0, '2026-02-12 18:26:41'),
(7121, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7122, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7123, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7124, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7125, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7126, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7127, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7128, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:04', 0, '2026-02-12 18:41:04'),
(7129, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7130, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7131, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7132, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7133, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7134, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7135, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7136, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:05', 0, '2026-02-12 18:41:05'),
(7137, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7138, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7139, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7140, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(7141, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7142, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7143, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7144, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7145, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7146, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7147, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7148, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7149, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7150, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7151, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7152, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:41:09', 0, '2026-02-12 18:41:09'),
(7153, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7154, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7155, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7156, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7157, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7158, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7159, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7160, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7161, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7162, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7163, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7164, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7165, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7166, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:01', 0, '2026-02-12 18:44:01'),
(7167, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7168, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7169, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7170, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7171, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7172, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7173, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7174, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7175, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7176, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7177, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7178, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7179, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7180, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:44:55', 0, '2026-02-12 18:44:55'),
(7181, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7182, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7183, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7184, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7185, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7186, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7187, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7188, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:13', 0, '2026-02-12 18:58:13'),
(7189, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7190, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7191, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7192, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7193, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7194, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7195, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7196, '', 'JTVPLAY_NOVA', '', '[Mídia sem texto]', 'unknown', '2026-02-12 18:58:17', 0, '2026-02-12 18:58:17'),
(7197, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7198, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7199, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7200, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7201, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7202, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7203, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7204, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7205, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7206, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7207, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7208, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7209, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7210, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7211, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7212, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:05:49', 0, '2026-02-12 19:05:49'),
(7213, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7214, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7215, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7216, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7217, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7218, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7219, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7220, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7221, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7222, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7223, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7224, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7225, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7226, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7227, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7228, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:08:48', 0, '2026-02-12 19:08:48'),
(7229, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7230, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7231, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7232, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7233, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7234, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7235, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7236, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7237, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7238, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7239, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7240, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7241, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7242, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:13:02', 0, '2026-02-12 19:13:02'),
(7243, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7244, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7245, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7246, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7247, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7248, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7249, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7250, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7251, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7252, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7253, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7254, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7255, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7256, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7257, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7258, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:14:59', 0, '2026-02-12 19:14:59'),
(7259, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7260, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7261, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7262, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7263, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7264, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7265, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7266, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7267, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7268, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7269, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7270, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7271, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7272, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:15:58', 0, '2026-02-12 19:15:58'),
(7273, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7274, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7275, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7276, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7277, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7278, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7279, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7280, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7281, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7282, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7283, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7284, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7285, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7286, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7287, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7288, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:37', 0, '2026-02-12 19:22:37'),
(7289, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7290, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7291, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7292, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7293, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7294, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7295, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7296, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7297, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7298, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7299, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7300, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7301, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7302, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7303, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7304, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:41', 0, '2026-02-12 19:22:41'),
(7305, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7306, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7307, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7308, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7309, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7310, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7311, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7312, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7313, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7314, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7315, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7316, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7317, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7318, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7319, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7320, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:22:47', 0, '2026-02-12 19:22:47'),
(7321, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7322, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7323, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7324, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7325, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7326, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7327, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7328, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7329, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7330, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7331, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7332, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7333, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7334, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7335, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7336, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:08', 0, '2026-02-12 19:23:08'),
(7337, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:12', 0, '2026-02-12 19:23:12'),
(7338, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:12', 0, '2026-02-12 19:23:12'),
(7339, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:12', 0, '2026-02-12 19:23:12'),
(7340, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7341, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7342, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7343, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7344, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7345, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7346, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7347, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7348, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7349, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7350, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7351, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7352, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:13', 0, '2026-02-12 19:23:13'),
(7353, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7354, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7355, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7356, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7357, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7358, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7359, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7360, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7361, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7362, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7363, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7364, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7365, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7366, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7367, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7368, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:26', 0, '2026-02-12 19:23:26'),
(7369, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7370, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7371, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7372, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7373, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7374, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7375, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7376, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7377, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7378, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7379, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7380, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7381, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7382, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7383, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7384, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:35', 0, '2026-02-12 19:23:35'),
(7385, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7386, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7387, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7388, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7389, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7390, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7391, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7392, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7393, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7394, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7395, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7396, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7397, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7398, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7399, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7400, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:37', 0, '2026-02-12 19:23:37'),
(7401, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7402, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7403, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7404, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7405, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7406, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7407, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7408, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7409, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7410, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7411, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7412, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7413, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7414, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7415, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7416, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:23:42', 0, '2026-02-12 19:23:42'),
(7417, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7418, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7419, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7420, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7421, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7422, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7423, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7424, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7425, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7426, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7427, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7428, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7429, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7430, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7431, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7432, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:26:28', 0, '2026-02-12 19:26:28'),
(7433, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7434, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7435, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7436, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7437, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7438, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7439, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7440, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7441, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7442, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7443, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7444, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7445, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7446, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:27:58', 0, '2026-02-12 19:27:58'),
(7447, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7448, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7449, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7450, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7451, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7452, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7453, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:13', 0, '2026-02-12 19:28:13'),
(7454, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7455, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7456, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7457, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7458, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7459, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7460, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:14', 0, '2026-02-12 19:28:14'),
(7461, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7462, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7463, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7464, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7465, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7466, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7467, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:27', 0, '2026-02-12 19:28:27'),
(7468, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7469, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7470, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7471, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7472, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7473, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7474, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:28', 0, '2026-02-12 19:28:28'),
(7475, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7476, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7477, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7478, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7479, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7480, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7481, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7482, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7483, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7484, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7485, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7486, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7487, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7488, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:29', 0, '2026-02-12 19:28:29'),
(7489, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7490, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7491, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7492, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7493, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7494, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7495, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7496, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7497, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7498, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7499, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7500, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7501, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7502, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:31', 0, '2026-02-12 19:28:31'),
(7503, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7504, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7505, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7506, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7507, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7508, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7509, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:32', 0, '2026-02-12 19:28:32'),
(7510, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7511, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7512, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7513, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7514, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7515, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7516, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:33', 0, '2026-02-12 19:28:33'),
(7517, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7518, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7519, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7520, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7521, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7522, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7523, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7524, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7525, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7526, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7527, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7528, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7529, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7530, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:34', 0, '2026-02-12 19:28:34'),
(7531, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7532, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7533, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7534, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7535, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7536, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7537, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7538, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7539, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7540, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7541, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7542, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7543, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7544, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:38', 0, '2026-02-12 19:28:38'),
(7545, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7546, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7547, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7548, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7549, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7550, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7551, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7552, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7553, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7554, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7555, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7556, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7557, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7558, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:43', 0, '2026-02-12 19:28:43'),
(7559, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7560, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7561, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7562, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7563, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7564, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7565, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:46', 0, '2026-02-12 19:28:46'),
(7566, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7567, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7568, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7569, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7570, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7571, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7572, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:47', 0, '2026-02-12 19:28:47'),
(7573, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7574, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7575, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7576, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7577, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7578, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7579, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:51', 0, '2026-02-12 19:28:51'),
(7580, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7581, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7582, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7583, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7584, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7585, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7586, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:52', 0, '2026-02-12 19:28:52'),
(7587, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7588, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7589, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7590, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7591, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7592, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7593, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:58', 0, '2026-02-12 19:28:58'),
(7594, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7595, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7596, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7597, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7598, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7599, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7600, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:28:59', 0, '2026-02-12 19:28:59'),
(7601, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7602, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7603, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7604, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7605, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7606, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7607, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7608, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7609, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(7610, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7611, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7612, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7613, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7614, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:03', 0, '2026-02-12 19:29:03'),
(7615, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7616, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7617, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7618, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7619, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7620, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7621, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7622, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7623, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7624, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7625, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7626, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7627, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7628, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:08', 0, '2026-02-12 19:29:08'),
(7629, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7630, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7631, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7632, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7633, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7634, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7635, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7636, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7637, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7638, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7639, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7640, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7641, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7642, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:29:20', 0, '2026-02-12 19:29:20'),
(7643, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7644, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7645, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7646, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7647, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7648, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7649, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7650, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7651, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7652, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7653, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7654, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7655, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7656, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7657, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7658, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:09', 0, '2026-02-12 19:30:09'),
(7659, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7660, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7661, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7662, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7663, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7664, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7665, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7666, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7667, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7668, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7669, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7670, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7671, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7672, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7673, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7674, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:14', 0, '2026-02-12 19:30:14'),
(7675, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7676, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7677, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7678, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7679, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7680, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7681, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7682, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7683, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7684, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7685, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7686, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7687, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7688, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7689, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7690, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:55', 0, '2026-02-12 19:30:55'),
(7691, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7692, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7693, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7694, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7695, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7696, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7697, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7698, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7699, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7700, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7701, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7702, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7703, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7704, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7705, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7706, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:30:57', 0, '2026-02-12 19:30:57'),
(7707, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7708, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7709, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7710, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7711, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7712, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7713, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7714, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7715, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7716, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7717, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7718, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7719, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7720, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:50', 0, '2026-02-12 19:31:50'),
(7721, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7722, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7723, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7724, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7725, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7726, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7727, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7728, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7729, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7730, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7731, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7732, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7733, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7734, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:51', 0, '2026-02-12 19:31:51'),
(7735, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7736, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7737, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7738, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7739, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7740, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7741, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7742, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7743, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7744, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7745, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7746, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7747, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7748, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7749, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7750, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:55', 0, '2026-02-12 19:31:55'),
(7751, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7752, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7753, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7754, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7755, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7756, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7757, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:58', 0, '2026-02-12 19:31:58'),
(7758, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7759, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7760, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7761, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7762, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7763, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7764, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:31:59', 0, '2026-02-12 19:31:59'),
(7765, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7766, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7767, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7768, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7769, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7770, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7771, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:10', 0, '2026-02-12 19:32:10'),
(7772, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7773, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7774, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7775, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7776, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7777, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7778, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:11', 0, '2026-02-12 19:32:11'),
(7779, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7780, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7781, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7782, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7783, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7784, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7785, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7786, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:13', 0, '2026-02-12 19:32:13'),
(7787, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7788, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7789, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7790, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7791, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7792, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7793, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7794, '', 'JTVPLAY', '', '[Mídia sem texto]', 'unknown', '2026-02-12 19:32:14', 0, '2026-02-12 19:32:14'),
(7795, 'ACC81439538810CD645324D4117E37DD', 'JTVPLAY', '126263498919938', '[Mídia sem texto]', 'document', '2026-02-12 19:34:15', 0, '2026-02-12 19:34:16'),
(7796, 'ACC81439538810CD645324D4117E37DD', 'JTVPLAY', '126263498919938', '[Mídia sem texto]', 'document', '2026-02-12 19:34:15', 0, '2026-02-12 19:34:16'),
(7797, 'A579D4F586F50FECF465A10809B1B187', 'JTVPLAY', '21981793632295', 'Daqui a pouco vou', 'text', '2026-02-12 19:34:30', 0, '2026-02-12 19:34:30'),
(7798, 'A579D4F586F50FECF465A10809B1B187', 'JTVPLAY', '21981793632295', 'Daqui a pouco vou', 'text', '2026-02-12 19:34:30', 0, '2026-02-12 19:34:30'),
(7799, 'AC0758A6EE7F7E5E9DE1A4DC00E613F8', 'JTVPLAY', '28986935631970', 'Beleza depois vejo acabei de chegar do serviço', 'text', '2026-02-12 19:35:15', 0, '2026-02-12 19:35:15'),
(7800, 'AC0758A6EE7F7E5E9DE1A4DC00E613F8', 'JTVPLAY', '28986935631970', 'Beleza depois vejo acabei de chegar do serviço', 'text', '2026-02-12 19:35:15', 0, '2026-02-12 19:35:16'),
(7801, '3A65046A82F4F28068C8', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-12 19:36:15', 0, '2026-02-12 19:36:16'),
(7802, '3A65046A82F4F28068C8', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-12 19:36:15', 0, '2026-02-12 19:36:16'),
(7803, 'AC2E24D1F07BACEEE068DC140799000C', 'JTVPLAY', '8383826497580', '/ajuda', 'text', '2026-02-12 19:36:44', 0, '2026-02-12 19:36:47'),
(7804, 'AC2E24D1F07BACEEE068DC140799000C', 'JTVPLAY', '8383826497580', '/ajuda', 'text', '2026-02-12 19:36:44', 0, '2026-02-12 19:36:49'),
(7805, '3A3C14FB75188C13F42E', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'image', '2026-02-12 19:36:54', 0, '2026-02-12 19:36:54'),
(7806, '3A3C14FB75188C13F42E', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'image', '2026-02-12 19:36:54', 0, '2026-02-12 19:36:56'),
(7807, '3A306D6C57D9CD83BEA9', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-12 19:36:54', 0, '2026-02-12 19:36:56'),
(7808, 'ACFD4FC69EDF6672F9A2A16D5B53C077', 'JTVPLAY', '8383826497580', '[Mídia sem texto]', 'image', '2026-02-12 19:36:57', 0, '2026-02-12 19:36:57'),
(7809, 'ACFD4FC69EDF6672F9A2A16D5B53C077', 'JTVPLAY', '8383826497580', '[Mídia sem texto]', 'image', '2026-02-12 19:36:57', 0, '2026-02-12 19:36:59'),
(7810, '3A306D6C57D9CD83BEA9', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-12 19:36:54', 0, '2026-02-12 19:36:59'),
(7811, 'ACBA695C8B40BE85460EA30F995B8630', 'JTVPLAY', '28986935631970', 'Da e mesmo aplicativo void que coloco', 'text', '2026-02-12 19:37:17', 0, '2026-02-12 19:37:18'),
(7812, 'ACBA695C8B40BE85460EA30F995B8630', 'JTVPLAY', '28986935631970', 'Da e mesmo aplicativo void que coloco', 'text', '2026-02-12 19:37:17', 0, '2026-02-12 19:37:18'),
(7813, 'AC7092BE29EF8876DC44157199A2875B', 'JTVPLAY', '143954569855063', '[Mídia sem texto]', 'audio', '2026-02-12 19:38:46', 0, '2026-02-12 19:38:46'),
(7814, 'AC7092BE29EF8876DC44157199A2875B', 'JTVPLAY', '143954569855063', '[Mídia sem texto]', 'audio', '2026-02-12 19:38:46', 0, '2026-02-12 19:38:46'),
(7815, 'AC897400B7488CD3E0E0C3FD8ACAB1A2', 'JTVPLAY', '28986935631970', 'http://dnsassist.online', 'text', '2026-02-12 19:40:33', 0, '2026-02-12 19:40:34'),
(7816, 'AC58950BB88FE843AD609DBE886F6978', 'JTVPLAY', '28986935631970', '✅ *Usuário:* 270982571\n✅ *Senha:* 424417473', 'text', '2026-02-12 19:40:34', 0, '2026-02-12 19:40:34'),
(7817, 'AC897400B7488CD3E0E0C3FD8ACAB1A2', 'JTVPLAY', '28986935631970', 'http://dnsassist.online', 'text', '2026-02-12 19:40:33', 0, '2026-02-12 19:40:35'),
(7818, 'AC58950BB88FE843AD609DBE886F6978', 'JTVPLAY', '28986935631970', '✅ *Usuário:* 270982571\n✅ *Senha:* 424417473', 'text', '2026-02-12 19:40:34', 0, '2026-02-12 19:40:35'),
(7819, 'ACA61BCACA718246C7DC4AF4AA97B118', 'JTVPLAY', '28986935631970', '[Mídia sem texto]', 'audio', '2026-02-12 19:40:58', 0, '2026-02-12 19:40:59'),
(7820, 'ACA61BCACA718246C7DC4AF4AA97B118', 'JTVPLAY', '28986935631970', '[Mídia sem texto]', 'audio', '2026-02-12 19:40:58', 0, '2026-02-12 19:40:59'),
(7821, 'AC5AA43779749323F604FEB245D9A2B7', 'JTVPLAY', '8383826497580', '/ajuda', 'text', '2026-02-12 19:43:31', 0, '2026-02-12 19:43:32'),
(7822, 'AC5AA43779749323F604FEB245D9A2B7', 'JTVPLAY', '8383826497580', '/ajuda', 'text', '2026-02-12 19:43:31', 0, '2026-02-12 19:43:33'),
(7823, 'AC7A1B0B31827C895239A593973084EA', 'JTVPLAY', '28986935631970', '[Mídia sem texto]', 'audio', '2026-02-12 19:47:15', 0, '2026-02-12 19:47:15'),
(7824, 'AC7A1B0B31827C895239A593973084EA', 'JTVPLAY', '28986935631970', '[Mídia sem texto]', 'audio', '2026-02-12 19:47:15', 0, '2026-02-12 19:47:15'),
(7825, '3AF96EDB9CDD161D2004', 'JTVPLAY', '554796155646', 'E tipo um plano de fundo do app', 'text', '2026-02-12 20:15:43', 0, '2026-02-12 20:15:44'),
(7826, '3AF96EDB9CDD161D2004', 'JTVPLAY', '554796155646', 'E tipo um plano de fundo do app', 'text', '2026-02-12 20:15:43', 0, '2026-02-12 20:15:44'),
(7827, '3A0E1F7BFEE60FFDDB00', 'JTVPLAY', '554796155646', '[Mídia sem texto]', 'image', '2026-02-12 20:15:59', 0, '2026-02-12 20:16:00'),
(7828, '3A0E1F7BFEE60FFDDB00', 'JTVPLAY', '554796155646', '[Mídia sem texto]', 'image', '2026-02-12 20:15:59', 0, '2026-02-12 20:16:00'),
(7829, '3AA3E6621BF5226E5EAC', 'JTVPLAY', '554796155646', 'Aí fica assim', 'text', '2026-02-12 20:16:02', 0, '2026-02-12 20:16:03'),
(7830, '3AA3E6621BF5226E5EAC', 'JTVPLAY', '554796155646', 'Aí fica assim', 'text', '2026-02-12 20:16:02', 0, '2026-02-12 20:16:03'),
(7831, '3AE95955FD9FAE5ED9A0', 'JTVPLAY', '554796155646', 'Quando não carrega', 'text', '2026-02-12 20:16:07', 0, '2026-02-12 20:16:07'),
(7832, '3AE95955FD9FAE5ED9A0', 'JTVPLAY', '554796155646', 'Quando não carrega', 'text', '2026-02-12 20:16:07', 0, '2026-02-12 20:16:07'),
(7833, 'A536EFF8895F7946D783986FDF5FF783', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:17:14', 0, '2026-02-12 20:17:14'),
(7834, 'A536EFF8895F7946D783986FDF5FF783', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:17:14', 0, '2026-02-12 20:17:14'),
(7835, 'A5F363E157D3A2EA443DB558280DDB6F', 'JTVPLAY', '554791592447', '/pago', 'text', '2026-02-12 20:17:12', 0, '2026-02-12 20:17:15'),
(7836, 'A5F363E157D3A2EA443DB558280DDB6F', 'JTVPLAY', '554791592447', '/pago', 'text', '2026-02-12 20:17:12', 0, '2026-02-12 20:17:19'),
(7837, 'A5F86BC63CF456DF8F227B32FC59576B', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:17:22', 0, '2026-02-12 20:17:24'),
(7838, 'A5F86BC63CF456DF8F227B32FC59576B', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:17:22', 0, '2026-02-12 20:17:27'),
(7839, 'ACF76A32B6E3925B351EC421D193A337', 'JTVPLAY', '554791592447', 'Na minha lista nao ta', 'text', '2026-02-12 20:18:36', 0, '2026-02-12 20:18:37'),
(7840, 'ACF76A32B6E3925B351EC421D193A337', 'JTVPLAY', '554791592447', 'Na minha lista nao ta', 'text', '2026-02-12 20:18:36', 0, '2026-02-12 20:18:37'),
(7841, 'AC5154DA0725150569C23924AF9F8742', 'JTVPLAY', '554791592447', 'Mas procurei em tudo \nAchei premier 3', 'text', '2026-02-12 20:18:55', 0, '2026-02-12 20:18:55'),
(7842, 'AC5154DA0725150569C23924AF9F8742', 'JTVPLAY', '554791592447', 'Mas procurei em tudo \nAchei premier 3', 'text', '2026-02-12 20:18:55', 0, '2026-02-12 20:18:56'),
(7843, 'AC8E51F672E586A0F9289B2CC78796D2', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:20:20', 0, '2026-02-12 20:20:21'),
(7844, 'AC8E51F672E586A0F9289B2CC78796D2', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:20:20', 0, '2026-02-12 20:20:21'),
(7845, 'AC7A617DE64A519BBE7382CC0CB05814', 'JTVPLAY', '554791592447', '*Pagamento aprovado no Pix*\nLima, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413/0001-75 *foi confirmado!* ✅\n\nAqui estão os dados da cobrança:\n\n*Valor cobrado:* R$ 40,00\n*Data do pagamento:* 12/02/2026\n*De:* Rodrigo Cordeiro Lima\n*Para:* jtvplay\n\nVocê pode *conferir o seu recibo* aqui: https://recibo.infinitepay.io/a6acf6ba-f6e0-4e26-95f4-4ef70bce69ba\n\nObrigado pelo pagamento! 😉', 'text', '2026-02-12 20:20:48', 0, '2026-02-12 20:20:48'),
(7846, 'AC7A617DE64A519BBE7382CC0CB05814', 'JTVPLAY', '554791592447', '*Pagamento aprovado no Pix*\nLima, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413/0001-75 *foi confirmado!* ✅\n\nAqui estão os dados da cobrança:\n\n*Valor cobrado:* R$ 40,00\n*Data do pagamento:* 12/02/2026\n*De:* Rodrigo Cordeiro Lima\n*Para:* jtvplay\n\nVocê pode *conferir o seu recibo* aqui: https://recibo.infinitepay.io/a6acf6ba-f6e0-4e26-95f4-4ef70bce69ba\n\nObrigado pelo pagamento! 😉', 'text', '2026-02-12 20:20:48', 0, '2026-02-12 20:20:49'),
(7847, '3ABBA80812F5A0B6F517', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:21:16', 0, '2026-02-12 20:21:17'),
(7848, '3ABBA80812F5A0B6F517', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:21:16', 0, '2026-02-12 20:21:17'),
(7849, 'A5A1109A547BFBADD3833BFB94E4E6FC', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:21:19', 0, '2026-02-12 20:21:20'),
(7850, 'A5A1109A547BFBADD3833BFB94E4E6FC', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:21:19', 0, '2026-02-12 20:21:20'),
(7851, 'A5905D0C34940DC3294536A91E5D82FF', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:22:05', 0, '2026-02-12 20:22:05'),
(7852, 'A5905D0C34940DC3294536A91E5D82FF', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:22:05', 0, '2026-02-12 20:22:05'),
(7853, 'A58CC4D5082CB55A81C651EB82A2A33B', 'JTVPLAY', '554791592447', 'Reinicia', 'text', '2026-02-12 20:23:04', 0, '2026-02-12 20:23:04'),
(7854, 'A58CC4D5082CB55A81C651EB82A2A33B', 'JTVPLAY', '554791592447', 'Reinicia', 'text', '2026-02-12 20:23:04', 0, '2026-02-12 20:23:05'),
(7855, 'A519E1B8A5BCF7A02033355D7B94F730', 'JTVPLAY', '554791592447', 'O app', 'text', '2026-02-12 20:23:05', 0, '2026-02-12 20:23:05'),
(7856, 'A519E1B8A5BCF7A02033355D7B94F730', 'JTVPLAY', '554791592447', 'O app', 'text', '2026-02-12 20:23:05', 0, '2026-02-12 20:23:06'),
(7857, 'A5809EDD612AE2F3E3DD256F25C8E567', 'JTVPLAY', '554791592447', 'Lra ver', 'text', '2026-02-12 20:23:06', 0, '2026-02-12 20:23:07'),
(7858, 'A5809EDD612AE2F3E3DD256F25C8E567', 'JTVPLAY', '554791592447', 'Lra ver', 'text', '2026-02-12 20:23:06', 0, '2026-02-12 20:23:07'),
(7859, '3EB0813E70D377423B53F4', 'JTVPLAY', '554189045018', '[Mídia sem texto]', 'unknown', '2026-02-12 20:23:22', 0, '2026-02-12 20:23:23'),
(7860, '3EB0813E70D377423B53F4', 'JTVPLAY', '554189045018', '[Mídia sem texto]', 'unknown', '2026-02-12 20:23:22', 0, '2026-02-12 20:23:23'),
(7861, '3ACEAC3B90AE7E6285C3', 'JTVPLAY', '554796155646', 'Funcionou fml', 'text', '2026-02-12 20:24:32', 0, '2026-02-12 20:24:33'),
(7862, '3ACEAC3B90AE7E6285C3', 'JTVPLAY', '554796155646', 'Funcionou fml', 'text', '2026-02-12 20:24:32', 0, '2026-02-12 20:24:33'),
(7863, '3A31DC8BA52AB3E2F7C4', 'JTVPLAY', '554796155646', 'Obrigado', 'text', '2026-02-12 20:24:35', 0, '2026-02-12 20:24:35'),
(7864, '3A31DC8BA52AB3E2F7C4', 'JTVPLAY', '554796155646', 'Obrigado', 'text', '2026-02-12 20:24:35', 0, '2026-02-12 20:24:35'),
(7865, '3EB04259CF48808540204E', 'JTVPLAY', '554189045018', 'mano faz um favor', 'text', '2026-02-12 20:25:09', 0, '2026-02-12 20:25:10'),
(7866, '3EB04259CF48808540204E', 'JTVPLAY', '554189045018', 'mano faz um favor', 'text', '2026-02-12 20:25:09', 0, '2026-02-12 20:25:10'),
(7867, '3EB0E0BB31D633757177FA', 'JTVPLAY', '554189045018', 'escreve assim aqui na conversa e envia pra mim   /ajuda', 'text', '2026-02-12 20:25:20', 0, '2026-02-12 20:25:21'),
(7868, '3EB0E0BB31D633757177FA', 'JTVPLAY', '554189045018', 'escreve assim aqui na conversa e envia pra mim   /ajuda', 'text', '2026-02-12 20:25:20', 0, '2026-02-12 20:25:21'),
(7869, '3EB0F134AAF08299878DF1', 'JTVPLAY', '5511966653928', 'atualizou', 'text', '2026-02-12 20:25:48', 0, '2026-02-12 20:25:48'),
(7870, '3EB0F134AAF08299878DF1', 'JTVPLAY', '5511966653928', 'atualizou', 'text', '2026-02-12 20:25:48', 0, '2026-02-12 20:25:48'),
(7871, '3EB025C12156B43D635203', 'JTVPLAY', '5511966653928', 'na tela inicial?', 'text', '2026-02-12 20:25:52', 0, '2026-02-12 20:25:52'),
(7872, '3EB025C12156B43D635203', 'JTVPLAY', '5511966653928', 'na tela inicial?', 'text', '2026-02-12 20:25:52', 0, '2026-02-12 20:25:52'),
(7873, 'AC346B8A98DB4416556AC31A132141C2', 'JTVPLAY', '554791592447', 'Sim', 'text', '2026-02-12 20:26:13', 0, '2026-02-12 20:26:14'),
(7874, 'AC346B8A98DB4416556AC31A132141C2', 'JTVPLAY', '554791592447', 'Sim', 'text', '2026-02-12 20:26:13', 0, '2026-02-12 20:26:14'),
(7875, 'A51F20556AB1F3ACF832745467F737EC', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'unknown', '2026-02-12 20:26:25', 0, '2026-02-12 20:26:25'),
(7876, 'A51F20556AB1F3ACF832745467F737EC', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'unknown', '2026-02-12 20:26:25', 0, '2026-02-12 20:26:25'),
(7877, 'A5E3681C71A85DAA2436028283D753BA', 'JTVPLAY', '554791592447', 'Oii', 'text', '2026-02-12 20:26:34', 0, '2026-02-12 20:26:34'),
(7878, 'A5E3681C71A85DAA2436028283D753BA', 'JTVPLAY', '554791592447', 'Oii', 'text', '2026-02-12 20:26:34', 0, '2026-02-12 20:26:35'),
(7879, 'A5CCB9F06FD7B97DE2F96180DB8E4079', 'JTVPLAY', '554791592447', 'Sim', 'text', '2026-02-12 20:26:35', 0, '2026-02-12 20:26:35'),
(7880, 'A5CCB9F06FD7B97DE2F96180DB8E4079', 'JTVPLAY', '554791592447', 'Sim', 'text', '2026-02-12 20:26:35', 0, '2026-02-12 20:26:36'),
(7881, 'AC70CD9AA37949D368E64EF9D0784B01', 'JTVPLAY', '554791592447', 'Boa noite blz', 'text', '2026-02-12 20:26:37', 0, '2026-02-12 20:26:37'),
(7882, 'A502183B6C59EF746BB58DF611863737', 'JTVPLAY', '554791592447', 'Qual a tv', 'text', '2026-02-12 20:26:39', 0, '2026-02-12 20:26:39'),
(7883, 'A502183B6C59EF746BB58DF611863737', 'JTVPLAY', '554791592447', 'Qual a tv', 'text', '2026-02-12 20:26:39', 0, '2026-02-12 20:26:39'),
(7884, 'AC70CD9AA37949D368E64EF9D0784B01', 'JTVPLAY', '554791592447', 'Boa noite blz', 'text', '2026-02-12 20:26:37', 0, '2026-02-12 20:26:41'),
(7885, 'A5D66017BE37717F6519C3FFD62C9A21', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:26:37', 0, '2026-02-12 20:26:41'),
(7886, 'A5D66017BE37717F6519C3FFD62C9A21', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:26:37', 0, '2026-02-12 20:26:41'),
(7887, 'ACCB9A91364AF8EEC639019723137D6B', 'JTVPLAY', '554791592447', 'Manda seu Pix por favor', 'text', '2026-02-12 20:26:54', 0, '2026-02-12 20:26:55'),
(7888, 'ACCB9A91364AF8EEC639019723137D6B', 'JTVPLAY', '554791592447', 'Manda seu Pix por favor', 'text', '2026-02-12 20:26:54', 0, '2026-02-12 20:26:55'),
(7889, '3A9E9C28F78C4C62162A', 'JTVPLAY', '554791592447', 'LG meu querido', 'text', '2026-02-12 20:26:59', 0, '2026-02-12 20:26:59'),
(7890, '3A9E9C28F78C4C62162A', 'JTVPLAY', '554791592447', 'LG meu querido', 'text', '2026-02-12 20:26:59', 0, '2026-02-12 20:27:00'),
(7891, 'ACE36B091D1112219B91617B075081CA', 'JTVPLAY', '554791592447', 'Esqueci de fazer', 'text', '2026-02-12 20:27:04', 0, '2026-02-12 20:27:04'),
(7892, 'ACE36B091D1112219B91617B075081CA', 'JTVPLAY', '554791592447', 'Esqueci de fazer', 'text', '2026-02-12 20:27:04', 0, '2026-02-12 20:27:05'),
(7893, 'A595551CC12A2A4B06149B4884D95D3D', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:28:11', 0, '2026-02-12 20:28:12'),
(7894, 'A595551CC12A2A4B06149B4884D95D3D', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:28:11', 0, '2026-02-12 20:28:12'),
(7895, 'AC866F3F41FA29B70987033CE9A2FDF5', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:28:11', 0, '2026-02-12 20:28:14'),
(7896, 'AC866F3F41FA29B70987033CE9A2FDF5', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:28:11', 0, '2026-02-12 20:28:16'),
(7897, '3A3B7A7B7E688D957ED0', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:28:17', 0, '2026-02-12 20:28:18'),
(7898, '3A3B7A7B7E688D957ED0', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:28:17', 0, '2026-02-12 20:28:18'),
(7899, 'AC4118A113BCD1849907D437134B2C0B', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:30:27', 0, '2026-02-12 20:30:30'),
(7900, 'AC4118A113BCD1849907D437134B2C0B', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:30:27', 0, '2026-02-12 20:30:32'),
(7901, 'A5A5EAB3502787E6C49D32ABC3E15D8F', 'JTVPLAY', '554791592447', 'Procura o app', 'text', '2026-02-12 20:30:58', 0, '2026-02-12 20:30:58'),
(7902, 'A5A5EAB3502787E6C49D32ABC3E15D8F', 'JTVPLAY', '554791592447', 'Procura o app', 'text', '2026-02-12 20:30:58', 0, '2026-02-12 20:30:58'),
(7903, 'A58F2943FCA91096EF46907209DD6C72', 'JTVPLAY', '554791592447', 'Iptv smartes player', 'text', '2026-02-12 20:31:02', 0, '2026-02-12 20:31:02'),
(7904, 'A58F2943FCA91096EF46907209DD6C72', 'JTVPLAY', '554791592447', 'Iptv smartes player', 'text', '2026-02-12 20:31:02', 0, '2026-02-12 20:31:02'),
(7905, 'A574450550B8A815DB1533E1EABF1036', 'JTVPLAY', '554791592447', 'Pra ver se tem', 'text', '2026-02-12 20:31:05', 0, '2026-02-12 20:31:05'),
(7906, 'A574450550B8A815DB1533E1EABF1036', 'JTVPLAY', '554791592447', 'Pra ver se tem', 'text', '2026-02-12 20:31:05', 0, '2026-02-12 20:31:05'),
(7907, '3A9DB531DE7496F4F90F', 'JTVPLAY', '554791592447', 'Nessa aba mesmo ?', 'text', '2026-02-12 20:31:19', 0, '2026-02-12 20:31:19'),
(7908, '3A9DB531DE7496F4F90F', 'JTVPLAY', '554791592447', 'Nessa aba mesmo ?', 'text', '2026-02-12 20:31:19', 0, '2026-02-12 20:31:19'),
(7909, 'A53323F4457F6FBF48C0CCD1516A500D', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:32:08', 0, '2026-02-12 20:32:08'),
(7910, 'A53323F4457F6FBF48C0CCD1516A500D', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:32:08', 0, '2026-02-12 20:32:09'),
(7911, '3A14B15E73C221ADA5B3', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:32:52', 0, '2026-02-12 20:32:53'),
(7912, '3A14B15E73C221ADA5B3', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:32:52', 0, '2026-02-12 20:32:53'),
(7913, 'A59CA5D1293A87FE922AB3D584552264', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:34:08', 0, '2026-02-12 20:34:09'),
(7914, 'A59CA5D1293A87FE922AB3D584552264', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:34:08', 0, '2026-02-12 20:34:09'),
(7915, 'A5B5B918BF255A69A102DB515DDACCD1', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:34:17', 0, '2026-02-12 20:34:17'),
(7916, 'A5B5B918BF255A69A102DB515DDACCD1', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:34:17', 0, '2026-02-12 20:34:17'),
(7917, 'A53832E11662BB390914218301716286', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:34:19', 0, '2026-02-12 20:34:19'),
(7918, 'A53832E11662BB390914218301716286', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:34:19', 0, '2026-02-12 20:34:20'),
(7919, 'A50159203F8088B5541A96282B7D611A', 'JTVPLAY', '554791592447', 'Opa', 'text', '2026-02-12 20:34:27', 0, '2026-02-12 20:34:27'),
(7920, 'A50159203F8088B5541A96282B7D611A', 'JTVPLAY', '554791592447', 'Opa', 'text', '2026-02-12 20:34:27', 0, '2026-02-12 20:34:27'),
(7921, 'A57AA942681C2D323928AC409D44CB63', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'unknown', '2026-02-12 20:34:28', 0, '2026-02-12 20:34:29'),
(7922, 'A57AA942681C2D323928AC409D44CB63', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'unknown', '2026-02-12 20:34:28', 0, '2026-02-12 20:34:29'),
(7923, 'A5F7FE564AFA6CE4CBF3616B7A5BBA40', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:34:31', 0, '2026-02-12 20:34:33'),
(7924, 'A5F7FE564AFA6CE4CBF3616B7A5BBA40', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:34:31', 0, '2026-02-12 20:34:36'),
(7925, 'A5272403BB6A6AAA363397717588559A', 'JTVPLAY', '554791592447', '/parar', 'text', '2026-02-12 20:34:38', 0, '2026-02-12 20:34:40'),
(7926, 'A5272403BB6A6AAA363397717588559A', 'JTVPLAY', '554791592447', '/parar', 'text', '2026-02-12 20:34:38', 0, '2026-02-12 20:34:43'),
(7927, '3A577AA28E783AE1B156', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'video', '2026-02-12 20:34:47', 0, '2026-02-12 20:34:47'),
(7928, '3A577AA28E783AE1B156', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'video', '2026-02-12 20:34:47', 0, '2026-02-12 20:34:47'),
(7929, 'AC722FD937A158EB80B0BB9A06CCA4F1', 'JTVPLAY', '554791592447', 'Qual valor ?', 'text', '2026-02-12 20:36:17', 0, '2026-02-12 20:36:17'),
(7930, 'AC722FD937A158EB80B0BB9A06CCA4F1', 'JTVPLAY', '554791592447', 'Qual valor ?', 'text', '2026-02-12 20:36:17', 0, '2026-02-12 20:36:18'),
(7931, 'AC591F7460D1958D49FB3DE941057799', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:36:32', 0, '2026-02-12 20:36:32'),
(7932, 'AC591F7460D1958D49FB3DE941057799', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:36:32', 0, '2026-02-12 20:36:33'),
(7933, 'A52AA36A5C546344681694937B659762', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:37:20', 0, '2026-02-12 20:37:21'),
(7934, 'A52AA36A5C546344681694937B659762', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:37:20', 0, '2026-02-12 20:37:21'),
(7935, 'A56323C55915180A141209B1D44C3FE1', 'JTVPLAY', '554791592447', 'Aqui tu clica', 'text', '2026-02-12 20:37:35', 0, '2026-02-12 20:37:37'),
(7936, 'A56323C55915180A141209B1D44C3FE1', 'JTVPLAY', '554791592447', 'Aqui tu clica', 'text', '2026-02-12 20:37:35', 0, '2026-02-12 20:37:37'),
(7937, '3A2706C16CF0FD12B7B7', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:39:25', 0, '2026-02-12 20:39:26'),
(7938, '3A2706C16CF0FD12B7B7', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:39:25', 0, '2026-02-12 20:39:26'),
(7939, 'A5BE4D00BBBEF1D1A719DEB71709811A', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:39:41', 0, '2026-02-12 20:39:41'),
(7940, 'A5BE4D00BBBEF1D1A719DEB71709811A', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:39:41', 0, '2026-02-12 20:39:41'),
(7941, 'A57FBA8595E1BF7EB5ED00F4657E546B', 'JTVPLAY', '554791592447', 'Procura o app Xcloud', 'text', '2026-02-12 20:40:01', 0, '2026-02-12 20:40:01'),
(7942, 'A57FBA8595E1BF7EB5ED00F4657E546B', 'JTVPLAY', '554791592447', 'Procura o app Xcloud', 'text', '2026-02-12 20:40:01', 0, '2026-02-12 20:40:01'),
(7943, 'A58100FFDB05CA2EBD6AA69490E3958D', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:40:01', 0, '2026-02-12 20:40:02'),
(7944, 'A58100FFDB05CA2EBD6AA69490E3958D', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:40:01', 0, '2026-02-12 20:40:04'),
(7945, 'A570AA81427C7C9AB449F0864AEBBE6F', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:40:05', 0, '2026-02-12 20:40:05'),
(7946, 'A570AA81427C7C9AB449F0864AEBBE6F', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:40:05', 0, '2026-02-12 20:40:07'),
(7947, '3A57CD246D850AD31C3E', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:40:52', 0, '2026-02-12 20:40:52'),
(7948, '3A57CD246D850AD31C3E', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:40:52', 0, '2026-02-12 20:40:52'),
(7949, 'A5445E41872E07E0E9F51546AEECC86C', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:41:37', 0, '2026-02-12 20:41:37'),
(7950, 'A5445E41872E07E0E9F51546AEECC86C', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:41:37', 0, '2026-02-12 20:41:37'),
(7951, 'A5F6EDC9872AB6769FB427FE01B204C7', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:41:39', 0, '2026-02-12 20:41:40'),
(7952, 'A5F6EDC9872AB6769FB427FE01B204C7', 'JTVPLAY', '554791592447', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-12 20:41:39', 0, '2026-02-12 20:41:40'),
(7953, '3AB890BE396BE4826B7C', 'JTVPLAY', '554791592447', 'Acho que esse não vai ter', 'text', '2026-02-12 20:42:19', 0, '2026-02-12 20:42:20'),
(7954, '3AB890BE396BE4826B7C', 'JTVPLAY', '554791592447', 'Acho que esse não vai ter', 'text', '2026-02-12 20:42:19', 0, '2026-02-12 20:42:20'),
(7955, 'A587D499DACC2271C0DCD8F0136713ED', 'JTVPLAY', '554791592447', 'Só', 'text', '2026-02-12 20:42:44', 0, '2026-02-12 20:42:45'),
(7956, 'A587D499DACC2271C0DCD8F0136713ED', 'JTVPLAY', '554791592447', 'Só', 'text', '2026-02-12 20:42:44', 0, '2026-02-12 20:42:45'),
(7957, 'A5B7BB8D56102E19B1E1361620D2167C', 'JTVPLAY', '554791592447', 'Xcloud', 'text', '2026-02-12 20:42:50', 0, '2026-02-12 20:42:51'),
(7958, 'A5B7BB8D56102E19B1E1361620D2167C', 'JTVPLAY', '554791592447', 'Xcloud', 'text', '2026-02-12 20:42:50', 0, '2026-02-12 20:42:51'),
(7959, 'A5CDE84C015DD3D54E0B28243414A295', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'unknown', '2026-02-12 20:43:02', 0, '2026-02-12 20:43:02'),
(7960, 'A5CDE84C015DD3D54E0B28243414A295', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'unknown', '2026-02-12 20:43:02', 0, '2026-02-12 20:43:02'),
(7961, 'A52A4A83A9BF2D3811A6194FB6AC1BCE', 'JTVPLAY', '554791592447', 'Então deve estar com esse nome', 'text', '2026-02-12 20:43:05', 0, '2026-02-12 20:43:06'),
(7962, 'A52A4A83A9BF2D3811A6194FB6AC1BCE', 'JTVPLAY', '554791592447', 'Então deve estar com esse nome', 'text', '2026-02-12 20:43:05', 0, '2026-02-12 20:43:06'),
(7963, 'A516096868493CD70A2EF0B3F3B3BDEF', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:43:28', 0, '2026-02-12 20:43:29'),
(7964, 'A516096868493CD70A2EF0B3F3B3BDEF', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:43:28', 0, '2026-02-12 20:43:29'),
(7965, 'A585E68676E28A92EE0C4882AA6824C8', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:43:31', 0, '2026-02-12 20:43:34'),
(7966, 'A585E68676E28A92EE0C4882AA6824C8', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:43:31', 0, '2026-02-12 20:43:36'),
(7967, 'A580A9E78689374BA093C622893F1943', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:43:51', 0, '2026-02-12 20:43:51'),
(7968, 'A580A9E78689374BA093C622893F1943', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:43:51', 0, '2026-02-12 20:43:51'),
(7969, 'A596F96622F996F3B4D2BA898DE07C7D', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:43:57', 0, '2026-02-12 20:43:57'),
(7970, 'A596F96622F996F3B4D2BA898DE07C7D', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:43:57', 0, '2026-02-12 20:43:57'),
(7971, 'A5076AA94AF2B0780EA90BA6E8C396F0', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:44:17', 0, '2026-02-12 20:44:18');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(7972, 'A5076AA94AF2B0780EA90BA6E8C396F0', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:44:17', 0, '2026-02-12 20:44:18'),
(7973, 'A5FF4672853EEB257F4D54968E94EB9E', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:44:22', 0, '2026-02-12 20:44:22'),
(7974, 'A5FF4672853EEB257F4D54968E94EB9E', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:44:22', 0, '2026-02-12 20:44:23'),
(7975, 'A5F8EA19B981971A31888A85E6EA00F4', 'JTVPLAY', '554791592447', 'Conseguiu achar?', 'text', '2026-02-12 20:44:41', 0, '2026-02-12 20:44:41'),
(7976, 'A5F8EA19B981971A31888A85E6EA00F4', 'JTVPLAY', '554791592447', 'Conseguiu achar?', 'text', '2026-02-12 20:44:41', 0, '2026-02-12 20:44:41'),
(7977, 'A51ACDDA7D7A080645FFF4553EE99718', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:44:47', 0, '2026-02-12 20:44:47'),
(7978, 'A51ACDDA7D7A080645FFF4553EE99718', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:44:47', 0, '2026-02-12 20:44:48'),
(7979, 'AC9E210C3B5AB0401E5F460850D239F7', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:44:48', 0, '2026-02-12 20:44:49'),
(7980, 'AC9E210C3B5AB0401E5F460850D239F7', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:44:48', 0, '2026-02-12 20:44:49'),
(7981, 'A5F44543787D9D2AAC3C8D5F46EDCF5A', 'JTVPLAY', '554791592447', 'Blz', 'text', '2026-02-12 20:44:52', 0, '2026-02-12 20:44:52'),
(7982, 'A5F44543787D9D2AAC3C8D5F46EDCF5A', 'JTVPLAY', '554791592447', 'Blz', 'text', '2026-02-12 20:44:52', 0, '2026-02-12 20:44:52'),
(7983, '3A7C57CA7BBE86E8CA13', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:45:19', 0, '2026-02-12 20:45:19'),
(7984, 'A575DB113C6817261AA4FBD85C6BB0BC', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:45:19', 0, '2026-02-12 20:45:19'),
(7985, 'A575DB113C6817261AA4FBD85C6BB0BC', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:45:19', 0, '2026-02-12 20:45:20'),
(7986, '3A7C57CA7BBE86E8CA13', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:45:19', 0, '2026-02-12 20:45:21'),
(7987, '3AB1A077FF0113337783', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:45:39', 0, '2026-02-12 20:45:39'),
(7988, '3AB1A077FF0113337783', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:45:39', 0, '2026-02-12 20:45:39'),
(7989, 'A5EBB2B7908CA4ABA590F3287422339F', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:45:45', 0, '2026-02-12 20:45:45'),
(7990, 'A5EBB2B7908CA4ABA590F3287422339F', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:45:45', 0, '2026-02-12 20:45:45'),
(7991, '3AE40253376E3248B8EF', 'JTVPLAY', '554791592447', 'Esse', 'text', '2026-02-12 20:45:46', 0, '2026-02-12 20:45:46'),
(7992, '3AE40253376E3248B8EF', 'JTVPLAY', '554791592447', 'Esse', 'text', '2026-02-12 20:45:46', 0, '2026-02-12 20:45:47'),
(7993, 'A55C476A2AFEB5E2370919B27EE26D85', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:45:55', 0, '2026-02-12 20:45:55'),
(7994, 'A55C476A2AFEB5E2370919B27EE26D85', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:45:55', 0, '2026-02-12 20:45:56'),
(7995, 'A5CA999264C40CBEA3AFD9DF6EDCC7D8', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:46:03', 0, '2026-02-12 20:46:03'),
(7996, 'A5CA999264C40CBEA3AFD9DF6EDCC7D8', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:46:03', 0, '2026-02-12 20:46:03'),
(7997, 'A59D38CE1847C4172CB6369B61E74F9F', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:46:11', 0, '2026-02-12 20:46:12'),
(7998, 'A59D38CE1847C4172CB6369B61E74F9F', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:46:11', 0, '2026-02-12 20:46:12'),
(7999, 'ACF77B0E3A24D354F7B0066D6F326B22', 'JTVPLAY', '554791592447', 'Não não', 'text', '2026-02-12 20:46:17', 0, '2026-02-12 20:46:17'),
(8000, 'ACF77B0E3A24D354F7B0066D6F326B22', 'JTVPLAY', '554791592447', 'Não não', 'text', '2026-02-12 20:46:17', 0, '2026-02-12 20:46:17'),
(8001, 'AC0B58D21C3745AF3D059A6953D9BB45', 'JTVPLAY', '554791592447', 'Vou ficar com o plano do celular só mesmo', 'text', '2026-02-12 20:46:28', 0, '2026-02-12 20:46:28'),
(8002, 'AC0B58D21C3745AF3D059A6953D9BB45', 'JTVPLAY', '554791592447', 'Vou ficar com o plano do celular só mesmo', 'text', '2026-02-12 20:46:28', 0, '2026-02-12 20:46:29'),
(8003, '3A051E0EC0266E210930', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:47:01', 0, '2026-02-12 20:47:02'),
(8004, '3A051E0EC0266E210930', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:47:01', 0, '2026-02-12 20:47:02'),
(8005, 'A566D80B8CCCEDC9DD8BC6925ECDB7F8', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:48:19', 0, '2026-02-12 20:48:20'),
(8006, 'A566D80B8CCCEDC9DD8BC6925ECDB7F8', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:48:19', 0, '2026-02-12 20:48:20'),
(8007, 'ACFA5AC790CFBFF1D8681326F3C4E95D', 'JTVPLAY', '554791592447', 'Entendi , mas por enquanto não tenho interesse não', 'text', '2026-02-12 20:48:57', 0, '2026-02-12 20:48:57'),
(8008, 'ACFA5AC790CFBFF1D8681326F3C4E95D', 'JTVPLAY', '554791592447', 'Entendi , mas por enquanto não tenho interesse não', 'text', '2026-02-12 20:48:57', 0, '2026-02-12 20:48:57'),
(8009, 'A50A5450AE882C2079352482B274FFC4', 'JTVPLAY', '554791592447', 'Provedor: zeus10\n*Usuário:* epds2esj\n*Senha:* f6uqgprh', 'text', '2026-02-12 20:49:09', 0, '2026-02-12 20:49:10'),
(8010, 'A50A5450AE882C2079352482B274FFC4', 'JTVPLAY', '554791592447', 'Provedor: zeus10\n*Usuário:* epds2esj\n*Senha:* f6uqgprh', 'text', '2026-02-12 20:49:09', 0, '2026-02-12 20:49:11'),
(8011, 'A5E90E75F83847DA50D980BD4928D839', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:49:20', 0, '2026-02-12 20:49:21'),
(8012, 'A5E90E75F83847DA50D980BD4928D839', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:49:20', 0, '2026-02-12 20:49:21'),
(8013, 'A5F10B96FBA11D7AB6AF1B4D4701CAAD', 'JTVPLAY', '554791592447', 'Ok', 'text', '2026-02-12 20:49:26', 0, '2026-02-12 20:49:26'),
(8014, 'A5F10B96FBA11D7AB6AF1B4D4701CAAD', 'JTVPLAY', '554791592447', 'Ok', 'text', '2026-02-12 20:49:26', 0, '2026-02-12 20:49:26'),
(8015, 'A5FB6D974279A4B17D3251A9AB8F102C', 'JTVPLAY', '554791592447', 'Tranquilo', 'text', '2026-02-12 20:49:29', 0, '2026-02-12 20:49:29'),
(8016, 'A5FB6D974279A4B17D3251A9AB8F102C', 'JTVPLAY', '554791592447', 'Tranquilo', 'text', '2026-02-12 20:49:29', 0, '2026-02-12 20:49:29'),
(8017, '3ADDD51AFA22834D1CD1', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:51:55', 0, '2026-02-12 20:51:56'),
(8018, '3ADDD51AFA22834D1CD1', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:51:55', 0, '2026-02-12 20:51:56'),
(8019, 'A5A39C95AC5289A861D6C8121E175913', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:54:40', 0, '2026-02-12 20:54:43'),
(8020, 'A5A39C95AC5289A861D6C8121E175913', 'JTVPLAY', '554791592447', '/ajuda', 'text', '2026-02-12 20:54:40', 0, '2026-02-12 20:54:46'),
(8021, 'A5034D797AE15A3F32E922B05F0653A4', 'JTVPLAY', '554791592447', 'Entrou?', 'text', '2026-02-12 20:57:52', 0, '2026-02-12 20:57:53'),
(8022, 'A5034D797AE15A3F32E922B05F0653A4', 'JTVPLAY', '554791592447', 'Entrou?', 'text', '2026-02-12 20:57:52', 0, '2026-02-12 20:57:54'),
(8023, '3AECE2487F5D45AB2790', 'JTVPLAY', '554791592447', 'Ele entra e depois volta pra essa tela', 'text', '2026-02-12 20:58:03', 0, '2026-02-12 20:58:05'),
(8024, '3AECE2487F5D45AB2790', 'JTVPLAY', '554791592447', 'Ele entra e depois volta pra essa tela', 'text', '2026-02-12 20:58:03', 0, '2026-02-12 20:58:05'),
(8025, '3A9208A0F53327EACA4C', 'JTVPLAY', '554791592447', 'Eles entra e já sai daí', 'image', '2026-02-12 20:58:40', 0, '2026-02-12 20:58:40'),
(8026, '3A9208A0F53327EACA4C', 'JTVPLAY', '554791592447', 'Eles entra e já sai daí', 'image', '2026-02-12 20:58:40', 0, '2026-02-12 20:58:40'),
(8027, 'A5BB0434BF85F3B128268ED096F59944', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:59:16', 0, '2026-02-12 20:59:16'),
(8028, 'A5BB0434BF85F3B128268ED096F59944', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'audio', '2026-02-12 20:59:16', 0, '2026-02-12 20:59:17'),
(8029, 'A50AEEFDB4FF3D184477DC962E55A108', 'JTVPLAY', '554791592447', 'Smartoneplayer', 'text', '2026-02-12 20:59:17', 0, '2026-02-12 20:59:17'),
(8030, 'A50AEEFDB4FF3D184477DC962E55A108', 'JTVPLAY', '554791592447', 'Smartoneplayer', 'text', '2026-02-12 20:59:17', 0, '2026-02-12 20:59:18'),
(8031, '3A24B2E819120C6FFE0F', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:59:58', 0, '2026-02-12 20:59:59'),
(8032, '3A24B2E819120C6FFE0F', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 20:59:58', 0, '2026-02-12 20:59:59'),
(8033, '3A43CA7488B287C1E430', 'JTVPLAY', '554791592447', 'Aí ele volta pra essa tela', 'text', '2026-02-12 21:00:05', 0, '2026-02-12 21:00:05'),
(8034, '3A43CA7488B287C1E430', 'JTVPLAY', '554791592447', 'Aí ele volta pra essa tela', 'text', '2026-02-12 21:00:05', 0, '2026-02-12 21:00:05'),
(8035, '3A25CBD882F70214E623', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 21:00:17', 0, '2026-02-12 21:00:17'),
(8036, '3A25CBD882F70214E623', 'JTVPLAY', '554791592447', '[Mídia sem texto]', 'image', '2026-02-12 21:00:17', 0, '2026-02-12 21:00:17'),
(8037, 'A592677E58F247A4CC44089B638EFDBB', 'JTVPLAY', '21981793632295', '/ajuda', 'text', '2026-02-12 21:00:47', 0, '2026-02-12 21:00:48'),
(8038, 'A592677E58F247A4CC44089B638EFDBB', 'JTVPLAY', '21981793632295', '/ajuda', 'text', '2026-02-12 21:00:47', 0, '2026-02-12 21:00:49'),
(8039, '3A8E9A9F53046705E8A4', 'JTVPLAY', '153652606021801', 'Ele entra da pra vc mexer um pouco e depois volta a carregar', 'text', '2026-02-12 21:03:28', 0, '2026-02-12 21:03:28'),
(8040, '3A8E9A9F53046705E8A4', 'JTVPLAY', '153652606021801', 'Ele entra da pra vc mexer um pouco e depois volta a carregar', 'text', '2026-02-12 21:03:28', 0, '2026-02-12 21:03:28'),
(8041, 'A5C9D216F3AB92B3DB03F55BFEB6869E', 'JTVPLAY', '21981793632295', '/ajuda', 'text', '2026-02-12 21:07:31', 0, '2026-02-12 21:07:32'),
(8042, 'A5C9D216F3AB92B3DB03F55BFEB6869E', 'JTVPLAY', '21981793632295', '/ajuda', 'text', '2026-02-12 21:07:31', 0, '2026-02-12 21:07:33'),
(8043, 'A5238720B224D688FC9FAC21A702952D', 'JTVPLAY', '21981793632295', '/parar', 'text', '2026-02-12 21:07:33', 0, '2026-02-12 21:07:34'),
(8044, 'A5238720B224D688FC9FAC21A702952D', 'JTVPLAY', '21981793632295', '/parar', 'text', '2026-02-12 21:07:33', 0, '2026-02-12 21:07:35'),
(8045, 'A5CB5E35DF1C46BC9B9D0D3CADA89862', 'JTVPLAY', '21981793632295', '/vencimento', 'text', '2026-02-12 21:07:35', 0, '2026-02-12 21:07:36'),
(8046, 'A5CB5E35DF1C46BC9B9D0D3CADA89862', 'JTVPLAY', '21981793632295', '/vencimento', 'text', '2026-02-12 21:07:35', 0, '2026-02-12 21:07:37'),
(8047, '3A0121EC836A9D41B63C', 'JTVPLAY', '5515996448994', 'Boa noite irmão blz , tava tentando assistir jogo aqui no app não ta abrindo nenhum canal', 'text', '2026-02-12 21:08:12', 0, '2026-02-12 21:08:12'),
(8048, '3A0121EC836A9D41B63C', 'JTVPLAY', '5515996448994', 'Boa noite irmão blz , tava tentando assistir jogo aqui no app não ta abrindo nenhum canal', 'text', '2026-02-12 21:08:12', 0, '2026-02-12 21:08:12'),
(8049, '3A47A860A4B453917C26', 'JTVPLAY', '79229429538831', '[Mídia sem texto]', 'image', '2026-02-12 21:10:25', 0, '2026-02-12 21:10:25'),
(8050, '3A47A860A4B453917C26', 'JTVPLAY', '79229429538831', '[Mídia sem texto]', 'image', '2026-02-12 21:10:25', 0, '2026-02-12 21:10:26'),
(8051, 'A5651DE2929234946D6898414ACD8782', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-12 21:22:22', 0, '2026-02-12 21:22:22'),
(8052, 'A5651DE2929234946D6898414ACD8782', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-12 21:22:22', 0, '2026-02-12 21:22:22'),
(8053, 'A52ABCA6CDE9704279116FC9884B5ACC', 'JTVPLAY', '21981793632295', '/ajuda', 'text', '2026-02-12 21:42:13', 0, '2026-02-12 21:42:15'),
(8054, 'A52ABCA6CDE9704279116FC9884B5ACC', 'JTVPLAY', '21981793632295', '/ajuda', 'text', '2026-02-12 21:42:13', 0, '2026-02-12 21:42:16'),
(8055, 'A5D4496963EF34BF9F67DB363B52A7B0', 'JTVPLAY', '21981793632295', '/informações', 'text', '2026-02-12 21:42:22', 0, '2026-02-12 21:42:23'),
(8056, 'A5D4496963EF34BF9F67DB363B52A7B0', 'JTVPLAY', '21981793632295', '/informações', 'text', '2026-02-12 21:42:22', 0, '2026-02-12 21:42:25'),
(8057, 'A56D98CFDF19FC47D239FB5AE64C3C1B', 'JTVPLAY', '21981793632295', '/parar', 'text', '2026-02-12 21:42:26', 0, '2026-02-12 21:42:27'),
(8058, 'A56D98CFDF19FC47D239FB5AE64C3C1B', 'JTVPLAY', '21981793632295', '/parar', 'text', '2026-02-12 21:42:26', 0, '2026-02-12 21:42:29'),
(8059, 'A544E7D17C440E221CDAC5B9C7381B0C', 'JTVPLAY', '4792012997', '/ajuda', 'text', '2026-02-12 21:58:08', 0, '2026-02-12 21:58:09'),
(8060, 'A544E7D17C440E221CDAC5B9C7381B0C', 'JTVPLAY', '4792012997', '/ajuda', 'text', '2026-02-12 21:58:08', 0, '2026-02-12 21:58:09'),
(8061, 'A5DDF29191903ABBE744F74600E3AAC0', 'JTVPLAY', '4792012997', '/ajuda', 'text', '2026-02-12 22:03:08', 0, '2026-02-12 22:03:09'),
(8062, 'A5DDF29191903ABBE744F74600E3AAC0', 'JTVPLAY', '4792012997', '/ajuda', 'text', '2026-02-12 22:03:08', 0, '2026-02-12 22:03:10'),
(8063, '3A88CE944AD4D9220913', 'JTVPLAY', '5515996448994', 'Ainda não mano', 'text', '2026-02-12 22:33:29', 0, '2026-02-12 22:33:29'),
(8064, '3A88CE944AD4D9220913', 'JTVPLAY', '5515996448994', 'Ainda não mano', 'text', '2026-02-12 22:33:29', 0, '2026-02-12 22:33:29'),
(8065, '3AD54D373505A7FEC5D9', 'JTVPLAY', '5515996448994', 'Quando eu do o refresh pra atualizar os canal ele da um erro e não atualiza', 'text', '2026-02-12 22:34:10', 0, '2026-02-12 22:34:11'),
(8066, '3AD54D373505A7FEC5D9', 'JTVPLAY', '5515996448994', 'Quando eu do o refresh pra atualizar os canal ele da um erro e não atualiza', 'text', '2026-02-12 22:34:10', 0, '2026-02-12 22:34:11'),
(8067, 'A5B5D126A42409F5F57F66482F7AF0B9', 'JTVPLAY', '189266978160868', 'Fala irmão', 'text', '2026-02-12 22:35:00', 0, '2026-02-12 22:35:00'),
(8068, 'A5B5D126A42409F5F57F66482F7AF0B9', 'JTVPLAY', '189266978160868', 'Fala irmão', 'text', '2026-02-12 22:35:00', 0, '2026-02-12 22:35:00'),
(8069, 'A59A119B4D0405F4CB2816B102F03E50', 'JTVPLAY', '189266978160868', 'Boa noite', 'text', '2026-02-12 22:35:11', 0, '2026-02-12 22:35:12'),
(8070, 'A59A119B4D0405F4CB2816B102F03E50', 'JTVPLAY', '189266978160868', 'Boa noite', 'text', '2026-02-12 22:35:11', 0, '2026-02-12 22:35:12'),
(8071, 'A50943A197FEAEE3CF272D4E84567CDD', 'JTVPLAY', '189266978160868', 'Na paz e aí', 'text', '2026-02-12 22:35:17', 0, '2026-02-12 22:35:17'),
(8072, 'A50943A197FEAEE3CF272D4E84567CDD', 'JTVPLAY', '189266978160868', 'Na paz e aí', 'text', '2026-02-12 22:35:17', 0, '2026-02-12 22:35:17'),
(8073, 'A5F8E4A58A0DCD2C254991B0FE16FC17', 'JTVPLAY', '189266978160868', 'Que bom', 'text', '2026-02-12 22:35:34', 0, '2026-02-12 22:35:34'),
(8074, 'A5F8E4A58A0DCD2C254991B0FE16FC17', 'JTVPLAY', '189266978160868', 'Que bom', 'text', '2026-02-12 22:35:34', 0, '2026-02-12 22:35:34'),
(8075, 'A55733AA476AE6DFAE7B932B6580B71A', 'JTVPLAY', '189266978160868', 'Tenho', 'text', '2026-02-12 22:35:45', 0, '2026-02-12 22:35:45'),
(8076, 'A55733AA476AE6DFAE7B932B6580B71A', 'JTVPLAY', '189266978160868', 'Tenho', 'text', '2026-02-12 22:35:45', 0, '2026-02-12 22:35:45'),
(8077, 'A5293B20DD46877D00451CB9585AC419', 'JTVPLAY', '189266978160868', 'Sim', 'text', '2026-02-12 22:35:46', 0, '2026-02-12 22:35:46'),
(8078, 'A5293B20DD46877D00451CB9585AC419', 'JTVPLAY', '189266978160868', 'Sim', 'text', '2026-02-12 22:35:46', 0, '2026-02-12 22:35:47'),
(8079, 'A5835806C97A0D2272C39437723888AA', 'JTVPLAY', '189266978160868', 'Era', 'text', '2026-02-12 22:35:58', 0, '2026-02-12 22:35:58'),
(8080, 'A5835806C97A0D2272C39437723888AA', 'JTVPLAY', '189266978160868', 'Era', 'text', '2026-02-12 22:35:58', 0, '2026-02-12 22:35:59'),
(8081, 'A5A455FF04760A7F0BA640F3035454D4', 'JTVPLAY', '189266978160868', 'Tá mais top q ers', 'text', '2026-02-12 22:35:55', 0, '2026-02-12 22:35:59'),
(8082, 'A5A455FF04760A7F0BA640F3035454D4', 'JTVPLAY', '189266978160868', 'Tá mais top q ers', 'text', '2026-02-12 22:35:55', 0, '2026-02-12 22:36:00'),
(8083, 'A57D23AAE7BAEEADE131A5823332292E', 'JTVPLAY', '189266978160868', 'Pode manda aí', 'text', '2026-02-12 22:36:02', 0, '2026-02-12 22:36:02'),
(8084, 'A57D23AAE7BAEEADE131A5823332292E', 'JTVPLAY', '189266978160868', 'Pode manda aí', 'text', '2026-02-12 22:36:02', 0, '2026-02-12 22:36:03'),
(8085, 'A55A396B3D4F0F2C83912D66AB965410', 'JTVPLAY', '189266978160868', 'Tenho sim', 'text', '2026-02-12 22:37:32', 0, '2026-02-12 22:37:32'),
(8086, 'A55A396B3D4F0F2C83912D66AB965410', 'JTVPLAY', '189266978160868', 'Tenho sim', 'text', '2026-02-12 22:37:32', 0, '2026-02-12 22:37:33'),
(8087, 'A53246DD8CDDBE2D54C0497921173D83', 'JTVPLAY', '189266978160868', 'Depende do que precisa', 'text', '2026-02-12 22:42:36', 0, '2026-02-12 22:42:36'),
(8088, 'A53246DD8CDDBE2D54C0497921173D83', 'JTVPLAY', '189266978160868', 'Depende do que precisa', 'text', '2026-02-12 22:42:36', 0, '2026-02-12 22:42:36'),
(8089, 'A5BE8A9E002C087F0495A11AD6B6D138', 'JTVPLAY', '189266978160868', 'Se quiser pode ligar', 'text', '2026-02-12 22:42:45', 0, '2026-02-12 22:42:45'),
(8090, 'A5BE8A9E002C087F0495A11AD6B6D138', 'JTVPLAY', '189266978160868', 'Se quiser pode ligar', 'text', '2026-02-12 22:42:45', 0, '2026-02-12 22:42:46'),
(8091, 'A5061CC86FE121D8C7DFC27415023BBD', 'JTVPLAY', '189266978160868', 'lNGuVaWdLE0082!', 'text', '2026-02-12 23:17:19', 0, '2026-02-12 23:17:19'),
(8092, 'A5061CC86FE121D8C7DFC27415023BBD', 'JTVPLAY', '189266978160868', 'lNGuVaWdLE0082!', 'text', '2026-02-12 23:17:19', 0, '2026-02-12 23:17:20'),
(8093, 'A5DB032AFA7F1959BFEAED1288BF5853', 'JTVPLAY', '189266978160868', 'cms.dominusplay.click', 'text', '2026-02-12 23:17:24', 0, '2026-02-12 23:17:24'),
(8094, 'A5DB032AFA7F1959BFEAED1288BF5853', 'JTVPLAY', '189266978160868', 'cms.dominusplay.click', 'text', '2026-02-12 23:17:24', 0, '2026-02-12 23:17:24'),
(8095, 'A5BAD6F0442E7A1E51C347215B9C3275', 'JTVPLAY', '189266978160868', 'SVooitMmPw0621', 'text', '2026-02-12 23:20:03', 0, '2026-02-12 23:20:03'),
(8096, 'A5BAD6F0442E7A1E51C347215B9C3275', 'JTVPLAY', '189266978160868', 'SVooitMmPw0621', 'text', '2026-02-12 23:20:03', 0, '2026-02-12 23:20:04'),
(8097, 'A5FC41E6B137F5D07FE9CB1ED923D14D', 'JTVPLAY', '189266978160868', 'https://multz.sigma.vin', 'text', '2026-02-12 23:20:20', 0, '2026-02-12 23:20:20'),
(8098, 'A5FC41E6B137F5D07FE9CB1ED923D14D', 'JTVPLAY', '189266978160868', 'https://multz.sigma.vin', 'text', '2026-02-12 23:20:20', 0, '2026-02-12 23:20:20'),
(8099, 'AC4BDCE5DC4E72F5E5348D6D55B3D32E', 'JTVPLAY', '8383826497580', '/ajuda', 'text', '2026-02-12 23:25:35', 0, '2026-02-12 23:25:36'),
(8100, 'AC4BDCE5DC4E72F5E5348D6D55B3D32E', 'JTVPLAY', '8383826497580', '/ajuda', 'text', '2026-02-12 23:25:35', 0, '2026-02-12 23:25:36'),
(8101, 'A5F0140480076AD8B968702819DE10D5', 'JTVPLAY', '4792012997', '/ajuda', 'comando', '2026-02-12 23:25:35', 1, '2026-02-12 23:25:37'),
(8102, 'A5F0140480076AD8B968702819DE10D5', 'JTVPLAY', '4792012997', '/ajuda', 'comando', '2026-02-12 23:25:35', 1, '2026-02-12 23:25:41'),
(8103, 'ACF6047A77AF4DB61BFB476C01D1758B', 'JTVPLAY', '8383826497580', '/pago', 'text', '2026-02-12 23:25:41', 0, '2026-02-12 23:25:41'),
(8104, 'ACF6047A77AF4DB61BFB476C01D1758B', 'JTVPLAY', '8383826497580', '/pago', 'text', '2026-02-12 23:25:41', 0, '2026-02-12 23:25:42'),
(8105, 'A5D7C20D82B7341F5733A7AE3BD6C149', 'JTVPLAY', '4792012997', '/renovar', 'comando', '2026-02-12 23:26:36', 1, '2026-02-12 23:26:39'),
(8106, 'A5D7C20D82B7341F5733A7AE3BD6C149', 'JTVPLAY', '4792012997', '/renovar', 'comando', '2026-02-12 23:26:36', 1, '2026-02-12 23:26:41'),
(8107, 'A56C6B711344752A75FB19C31166FB5A', 'JTVPLAY', '4792012997', '/pago', 'comando', '2026-02-12 23:27:07', 1, '2026-02-12 23:27:10'),
(8108, 'A56C6B711344752A75FB19C31166FB5A', 'JTVPLAY', '4792012997', '/pago', 'comando', '2026-02-12 23:27:07', 1, '2026-02-12 23:27:12'),
(8109, 'A57D5A9E8729487640410BD450B55BDF', 'JTVPLAY', '4792012997', '/pago', 'comando', '2026-02-12 23:27:51', 1, '2026-02-12 23:27:55'),
(8110, 'A57D5A9E8729487640410BD450B55BDF', 'JTVPLAY', '4792012997', '/pago', 'comando', '2026-02-12 23:27:51', 1, '2026-02-12 23:27:57'),
(8111, 'A52B490C219563A1332CCC34E9A47C1D', 'JTVPLAY', '4792012997', '/vencimento', 'comando', '2026-02-12 23:28:29', 1, '2026-02-12 23:28:31'),
(8112, 'A52B490C219563A1332CCC34E9A47C1D', 'JTVPLAY', '4792012997', '/vencimento', 'comando', '2026-02-12 23:28:29', 1, '2026-02-12 23:28:33'),
(8113, 'AC045D936C2C797E8D58D52BEB09B542', 'JTVPLAY', '8383826497580', '/pago', 'text', '2026-02-12 23:30:08', 0, '2026-02-12 23:30:09'),
(8114, 'AC045D936C2C797E8D58D52BEB09B542', 'JTVPLAY', '8383826497580', '/pago', 'text', '2026-02-12 23:30:08', 0, '2026-02-12 23:30:10'),
(8115, 'AC1E8E0F699E4008DF195D3208A60D41', 'JTVPLAY', '8383826497580', '/vencimento', 'text', '2026-02-12 23:30:15', 0, '2026-02-12 23:30:16'),
(8116, 'AC1E8E0F699E4008DF195D3208A60D41', 'JTVPLAY', '8383826497580', '/vencimento', 'text', '2026-02-12 23:30:15', 0, '2026-02-12 23:30:18'),
(8117, 'A5E2AB16E6EA2773A10428811F2C36AC', 'JTVPLAY', '189266978160868', 'Tmj', 'text', '2026-02-13 01:26:18', 0, '2026-02-13 01:26:18'),
(8118, 'A5E2AB16E6EA2773A10428811F2C36AC', 'JTVPLAY', '189266978160868', 'Tmj', 'text', '2026-02-13 01:26:18', 0, '2026-02-13 01:26:19'),
(8119, 'AC763B7D61620EFEBE2191855012FFAD', 'JTVPLAY', '175913320890604', 'Oi paguei la acho que tem que renovar.', 'text', '2026-02-13 08:51:40', 0, '2026-02-13 08:51:41'),
(8120, 'AC763B7D61620EFEBE2191855012FFAD', 'JTVPLAY', '175913320890604', 'Oi paguei la acho que tem que renovar.', 'text', '2026-02-13 08:51:40', 0, '2026-02-13 08:51:41'),
(8121, 'AC19EB393A4AFCF60AB44FBED3BC07DC', 'JTVPLAY', '155181631152358', 'Bom dia Deus abençoe minha tv está fora do ar deste ontem perguntei para o Glauco se tinha pago ele disse que sim poderia verificar o que está acontacendo', 'text', '2026-02-13 09:20:39', 0, '2026-02-13 09:20:39'),
(8122, 'AC19EB393A4AFCF60AB44FBED3BC07DC', 'JTVPLAY', '155181631152358', 'Bom dia Deus abençoe minha tv está fora do ar deste ontem perguntei para o Glauco se tinha pago ele disse que sim poderia verificar o que está acontacendo', 'text', '2026-02-13 09:20:39', 0, '2026-02-13 09:20:40'),
(8123, 'ACA1877AA7D434C8010F2A2F8B3E62B0', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'image', '2026-02-13 09:28:04', 0, '2026-02-13 09:28:04'),
(8124, 'ACA1877AA7D434C8010F2A2F8B3E62B0', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'image', '2026-02-13 09:28:04', 0, '2026-02-13 09:28:05'),
(8125, 'ACBD02A64123A17EBEE3C73E8F13972F', 'JTVPLAY', '175913320890604', 'Ontem. Não abria mais os canais dai paguei', 'text', '2026-02-13 09:42:47', 0, '2026-02-13 09:42:47'),
(8126, 'ACBD02A64123A17EBEE3C73E8F13972F', 'JTVPLAY', '175913320890604', 'Ontem. Não abria mais os canais dai paguei', 'text', '2026-02-13 09:42:47', 0, '2026-02-13 09:42:47'),
(8127, 'ACE29FE0E1E2231EC3724E6EC0A5D6D0', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:43:52', 0, '2026-02-13 09:43:53'),
(8128, 'ACE29FE0E1E2231EC3724E6EC0A5D6D0', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:43:52', 0, '2026-02-13 09:43:53'),
(8129, 'AC5D1EC4DD912F8A57FA2751D5610316', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:44:13', 0, '2026-02-13 09:44:13'),
(8130, 'AC5D1EC4DD912F8A57FA2751D5610316', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:44:13', 0, '2026-02-13 09:44:13'),
(8131, 'AC41D5D942287D79F6BA868F25ED847D', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:44:45', 0, '2026-02-13 09:44:45'),
(8132, 'AC41D5D942287D79F6BA868F25ED847D', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:44:45', 0, '2026-02-13 09:44:45'),
(8133, 'AC641C4B841171A28F4B092D968BE851', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:45:30', 0, '2026-02-13 09:45:31'),
(8134, 'AC641C4B841171A28F4B092D968BE851', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:45:30', 0, '2026-02-13 09:45:31'),
(8135, 'AC9370A2CF8AC8E4ED348E60A7CAB7FC', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:46:31', 0, '2026-02-13 09:46:31'),
(8136, 'AC9370A2CF8AC8E4ED348E60A7CAB7FC', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:46:31', 0, '2026-02-13 09:46:31'),
(8137, 'AC5A6D2FD96AEDC16231956D48B24962', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:46:37', 0, '2026-02-13 09:46:38'),
(8138, 'AC5A6D2FD96AEDC16231956D48B24962', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:46:37', 0, '2026-02-13 09:46:38'),
(8139, 'ACCCA47C96A56695F8F852B19F0C1774', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 09:46:52', 0, '2026-02-13 09:46:52'),
(8140, 'ACCCA47C96A56695F8F852B19F0C1774', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 09:46:52', 0, '2026-02-13 09:46:52'),
(8141, 'ACB98C7134AA4EBACF7D9C06C32FE8E6', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 09:47:35', 0, '2026-02-13 09:47:36'),
(8142, 'ACB98C7134AA4EBACF7D9C06C32FE8E6', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 09:47:35', 0, '2026-02-13 09:47:36'),
(8143, 'AC31EE571C77FA58BF618B54283CA2B9', 'JTVPLAY', '175913320890604', 'Ta ok', 'text', '2026-02-13 09:48:50', 0, '2026-02-13 09:48:50'),
(8144, 'AC31EE571C77FA58BF618B54283CA2B9', 'JTVPLAY', '175913320890604', 'Ta ok', 'text', '2026-02-13 09:48:50', 0, '2026-02-13 09:48:51'),
(8145, 'AC2D1297E2B0CFBE391D123A42F1F5C6', 'JTVPLAY', '155181631152358', 'Continua a mesma coisa', 'text', '2026-02-13 09:49:45', 0, '2026-02-13 09:49:45'),
(8146, 'AC2D1297E2B0CFBE391D123A42F1F5C6', 'JTVPLAY', '155181631152358', 'Continua a mesma coisa', 'text', '2026-02-13 09:49:45', 0, '2026-02-13 09:49:46'),
(8147, 'AC6E64F07A88EB06AF36D19D039A7BAC', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:50:15', 0, '2026-02-13 09:50:15'),
(8148, 'AC6E64F07A88EB06AF36D19D039A7BAC', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:50:15', 0, '2026-02-13 09:50:16'),
(8149, 'AC5CD94B9A9A4216078B3901658DB142', 'JTVPLAY', '175913320890604', 'Ok', 'text', '2026-02-13 09:51:05', 0, '2026-02-13 09:51:06'),
(8150, 'AC5CD94B9A9A4216078B3901658DB142', 'JTVPLAY', '175913320890604', 'Ok', 'text', '2026-02-13 09:51:05', 0, '2026-02-13 09:51:06'),
(8151, 'ACE25CFDDE7A931902D606F2ECA37ACA', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'audio', '2026-02-13 09:51:46', 0, '2026-02-13 09:51:47'),
(8152, 'ACE25CFDDE7A931902D606F2ECA37ACA', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'audio', '2026-02-13 09:51:46', 0, '2026-02-13 09:51:47'),
(8153, 'AC6D9B355A9553A9187DF90820B4ABD4', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:52:15', 0, '2026-02-13 09:52:15'),
(8154, 'AC6D9B355A9553A9187DF90820B4ABD4', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 09:52:15', 0, '2026-02-13 09:52:15'),
(8155, 'AC18CF918F9B664D97DCD7D27E3EA61A', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'audio', '2026-02-13 09:58:10', 0, '2026-02-13 09:58:10'),
(8156, 'AC18CF918F9B664D97DCD7D27E3EA61A', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'audio', '2026-02-13 09:58:10', 0, '2026-02-13 09:58:11'),
(8157, 'AC8AA2C49BC7942418F510AF28E057B9', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'audio', '2026-02-13 09:59:49', 0, '2026-02-13 09:59:49'),
(8158, 'AC8AA2C49BC7942418F510AF28E057B9', 'JTVPLAY', '155181631152358', '[Mídia sem texto]', 'audio', '2026-02-13 09:59:49', 0, '2026-02-13 09:59:50'),
(8159, '3EB03A5FD103780B2F6FA9', 'JTVPLAY', '554792602871', 'viva a ia kk', 'text', '2026-02-13 10:26:24', 0, '2026-02-13 10:26:25'),
(8160, '3EB03A5FD103780B2F6FA9', 'JTVPLAY', '554792602871', 'viva a ia kk', 'text', '2026-02-13 10:26:24', 0, '2026-02-13 10:26:26'),
(8161, 'ACA60DA9BD73766A365AD910B348B800', 'JTVPLAY', '146729018064953', '*Pagamento aprovado no cartão*\nVANDERLEI, seu pagamento para VANDERLEI - CNPJ: 46.502.413/0001-75 *foi confirmado!* ✅\n\nAqui estão os dados da cobrança:\n\n*Valor cobrado:* R$ 35,00\n*Data do pagamento:* 13/02/2026\n*De:* VANDERLEI\n*Para:* jtvplay\n*Cartão final:* **** 8244\n\nVocê pode *conferir seu recibo* aqui: https://recibo.infinitepay.io/292f6766-0a03-45a9-a7ef-79f2eb5b28e9\n\nObrigado pelo pagamento! 😉', 'text', '2026-02-13 10:47:04', 0, '2026-02-13 10:47:04'),
(8162, 'ACC977A272C1D14693226786A155BBB7', 'JTVPLAY', '146729018064953', 'Bom dia', 'text', '2026-02-13 10:47:05', 0, '2026-02-13 10:47:05'),
(8163, 'AC3E2BEF1AADFCDA63DF6763EA40F826', 'JTVPLAY', '146729018064953', 'Segue confirmação de pagamenti', 'text', '2026-02-13 10:47:24', 0, '2026-02-13 10:47:24'),
(8164, 'ACF8CA2E2B60AC351DE764B479EEF9CD', 'JTVPLAY', '146729018064953', 'Abraço', 'text', '2026-02-13 10:47:30', 0, '2026-02-13 10:47:30'),
(8165, 'A5758055A05D0B602E58681F732B6953', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-13 11:00:06', 0, '2026-02-13 11:00:07'),
(8166, 'A55A74608DC17197690709FE883D8EC6', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-13 11:00:28', 0, '2026-02-13 11:00:28'),
(8167, 'A5ECCAEBE2436010DDB655D30E4AB01D', 'JTVPLAY', '140797685063807', 'Salve mano bom dia', 'text', '2026-02-13 11:31:19', 0, '2026-02-13 11:31:19'),
(8168, 'A5F35DDB84CE8ED9C58B9E3880A48044', 'JTVPLAY', '140797685063807', 'Tem como colocar 10 créditos.na p2cine aí pra mim por favor', 'text', '2026-02-13 11:31:35', 0, '2026-02-13 11:31:35'),
(8169, 'A58147923936D4FA3992B7C1677FE2DC', 'JTVPLAY', '140797685063807', 'Tô fazendo aqui', 'text', '2026-02-13 11:32:48', 0, '2026-02-13 11:32:49'),
(8170, 'A5D1019A2CFA9AB291CA6CF176DB41EE', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'image', '2026-02-13 11:33:43', 0, '2026-02-13 11:33:44'),
(8171, 'A5A8B30C4B91A70BBB6171990548B2EA', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-13 11:33:59', 0, '2026-02-13 11:33:59'),
(8172, 'A52ACE18047C3E9F09E0A8129A508E4D', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-13 11:44:11', 0, '2026-02-13 11:44:12'),
(8173, 'A5C859AEE0539D6C6744D3C0A1FEDEC7', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-13 11:52:08', 0, '2026-02-13 11:52:08'),
(8174, 'A5A48CEE6725669E9642BDCEAA936216', 'JTVPLAY', '32465758515228', 'Ai sim', 'text', '2026-02-13 12:24:01', 0, '2026-02-13 12:24:01'),
(8175, 'A5D90D01B5C77CEF7E015C6E58952937', 'JTVPLAY', '32465758515228', 'Mas nao renova no painel.ne', 'text', '2026-02-13 12:24:56', 0, '2026-02-13 12:24:56'),
(8176, NULL, 'JTVPLAY', '554791592447', '/cadastro', NULL, NULL, 0, '2026-02-13 12:31:43'),
(8177, NULL, 'JTVPLAY', '554791592447', '/cadastro', NULL, NULL, 0, '2026-02-13 12:31:45'),
(8178, NULL, 'JTVPLAY', '554791592447', 'livia', NULL, NULL, 0, '2026-02-13 12:31:52'),
(8179, NULL, 'JTVPLAY', '554791592447', 'livia', NULL, NULL, 0, '2026-02-13 12:31:52'),
(8180, NULL, 'JTVPLAY', '554791592447', '4700000000', NULL, NULL, 0, '2026-02-13 12:32:04'),
(8181, NULL, 'JTVPLAY', '554791592447', '4700000000', NULL, NULL, 0, '2026-02-13 12:32:04'),
(8182, NULL, 'JTVPLAY', '554791592447', '30', NULL, NULL, 0, '2026-02-13 12:32:42'),
(8183, NULL, 'JTVPLAY', '554791592447', '30', NULL, NULL, 0, '2026-02-13 12:32:43'),
(8184, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 12:33:46'),
(8185, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 12:33:46'),
(8186, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 12:34:39'),
(8187, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 12:34:39'),
(8188, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 12:34:54'),
(8189, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 12:34:54'),
(8190, NULL, 'JTVPLAY', '554791592447', '/cadastro', NULL, NULL, 0, '2026-02-13 12:38:13'),
(8191, NULL, 'JTVPLAY', '554791592447', '/cadastro', NULL, NULL, 0, '2026-02-13 12:38:14'),
(8192, NULL, 'JTVPLAY', '554791592447', 'lucas teste', NULL, NULL, 0, '2026-02-13 12:38:21'),
(8193, NULL, 'JTVPLAY', '554791592447', 'lucas teste', NULL, NULL, 0, '2026-02-13 12:38:21'),
(8194, NULL, 'JTVPLAY', '554791592447', '47991063914', NULL, NULL, 0, '2026-02-13 12:38:28'),
(8195, NULL, 'JTVPLAY', '554791592447', '47991063914', NULL, NULL, 0, '2026-02-13 12:38:28'),
(8196, NULL, 'JTVPLAY', '554791592447', '40', NULL, NULL, 0, '2026-02-13 12:38:38'),
(8197, NULL, 'JTVPLAY', '554791592447', '40', NULL, NULL, 0, '2026-02-13 12:38:40'),
(8198, '4A6A0835C316D67F0A55', 'JTVPLAY', '5514997015432', '[Mídia sem texto]', 'document', '2026-02-13 12:43:15', 0, '2026-02-13 12:43:15'),
(8199, '4A6A0835C316D67F0A55', 'JTVPLAY', '5514997015432', '[Mídia sem texto]', 'document', '2026-02-13 12:43:15', 0, '2026-02-13 12:43:15'),
(8200, '4A6A0835C316D67F0A55', 'JTVPLAY', NULL, NULL, NULL, NULL, 0, '2026-02-13 12:43:16'),
(8201, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:05:37'),
(8202, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:05:37'),
(8203, 'AC1F62ED1BBA871214D4B14CA4BF6DC7', 'JTVPLAY', '8383826497580', '/cadastro', 'comando', '2026-02-13 13:21:53', 1, '2026-02-13 13:21:55'),
(8204, 'AC1F62ED1BBA871214D4B14CA4BF6DC7', 'JTVPLAY', '8383826497580', '/cadastro', 'text', '2026-02-13 13:21:53', 0, '2026-02-13 13:21:55'),
(8205, 'AC1F62ED1BBA871214D4B14CA4BF6DC7', 'JTVPLAY', NULL, NULL, NULL, NULL, 0, '2026-02-13 13:21:55'),
(8206, NULL, 'JTVPLAY', '554791592447', '/cadastro', NULL, NULL, 0, '2026-02-13 13:22:08'),
(8207, NULL, 'JTVPLAY', '554791592447', '/cadastro', NULL, NULL, 0, '2026-02-13 13:22:10'),
(8208, NULL, 'JTVPLAY', '554791592447', '/ajuda', NULL, NULL, 0, '2026-02-13 13:22:15'),
(8209, NULL, 'JTVPLAY', '554791592447', '/ajuda', NULL, NULL, 0, '2026-02-13 13:22:16'),
(8210, NULL, 'JTVPLAY', '554791592447', '/pendentes', NULL, NULL, 0, '2026-02-13 13:22:27'),
(8211, NULL, 'JTVPLAY', '554791592447', '/pendentes', NULL, NULL, 0, '2026-02-13 13:22:28'),
(8212, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:23:04'),
(8213, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:23:05'),
(8214, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:23:08'),
(8215, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:23:08'),
(8216, NULL, 'JTVPLAY', '554791592447', '/ajuda', NULL, NULL, 0, '2026-02-13 13:41:00'),
(8217, NULL, 'JTVPLAY', '554791592447', '/ajuda', NULL, NULL, 0, '2026-02-13 13:41:01'),
(8218, NULL, 'JTVPLAY', '554791592447', '/vencimento', NULL, NULL, 0, '2026-02-13 13:41:19'),
(8219, NULL, 'JTVPLAY', '554791592447', '/vencimento', NULL, NULL, 0, '2026-02-13 13:41:19'),
(8220, NULL, 'JTVPLAY', '554791592447', '/vencimentos', NULL, NULL, 0, '2026-02-13 13:41:36'),
(8221, NULL, 'JTVPLAY', '554791592447', '/vencimentos', NULL, NULL, 0, '2026-02-13 13:41:37'),
(8222, NULL, 'JTVPLAY', '554791592447', '/pausar', NULL, NULL, 0, '2026-02-13 13:41:43'),
(8223, NULL, 'JTVPLAY', '554791592447', '/pausar', NULL, NULL, 0, '2026-02-13 13:41:44'),
(8224, NULL, 'JTVPLAY', '554791592447', '/pausar 47991063914', NULL, NULL, 0, '2026-02-13 13:42:00'),
(8225, NULL, 'JTVPLAY', '554791592447', '/pausar 47991063914', NULL, NULL, 0, '2026-02-13 13:42:01'),
(8226, NULL, 'JTVPLAY', '554791592447', '/reativar 4791063914', NULL, NULL, 0, '2026-02-13 13:42:39'),
(8227, NULL, 'JTVPLAY', '554791592447', '/reativar 4791063914', NULL, NULL, 0, '2026-02-13 13:42:39'),
(8228, NULL, 'JTVPLAY', '554791592447', '/reativar 47991063914', NULL, NULL, 0, '2026-02-13 13:42:52'),
(8229, NULL, 'JTVPLAY', '554791592447', '/reativar 47991063914', NULL, NULL, 0, '2026-02-13 13:42:53'),
(8230, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:43:48'),
(8231, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:43:48'),
(8232, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:43:48'),
(8233, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:43:50'),
(8234, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:43:51'),
(8235, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:43:52'),
(8236, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:44:03'),
(8237, NULL, 'JTVPLAY', '554791592447', '', NULL, NULL, 0, '2026-02-13 13:44:03'),
(8238, '3AFA2383C784E2BE2349', 'JTVPLAY', '5514997015432', '[Mídia sem texto]', 'unknown', '2026-02-13 14:00:32', 0, '2026-02-13 14:00:32'),
(8239, 'ACE58A16EF66150F1029B475009FB5C0', 'JTVPLAY', '8383826497580', '/teste', 'comando', '2026-02-13 14:02:00', 1, '2026-02-13 14:02:00'),
(8240, 'AC99FEFAA518A90E159403FD68F4FC4F', 'JTVPLAY', '8383826497580', '/vemcimento', 'comando', '2026-02-13 14:02:07', 1, '2026-02-13 14:02:08'),
(8241, 'AC7CDFDFE3D2C7D84FD0C0F10C880B8B', 'JTVPLAY', '8383826497580', '/vencimento', 'text', '2026-02-13 14:02:15', 0, '2026-02-13 14:02:15'),
(8242, 'A5F748B09850ECEBE9E7C10BAF9C32AC', 'JTVPLAY', '4792012997', 'Ok', 'text', '2026-02-13 14:27:10', 0, '2026-02-13 14:27:11'),
(8243, 'AC1964FC97F909C14A9A59A045D85516', 'JTVPLAY', '8383826497580', '/ajuda', 'comando', '2026-02-13 14:38:59', 1, '2026-02-13 14:39:00'),
(8244, 'ACCABAD7B2A84BBD3BAF214A2BB610DC', 'JTVPLAY', '8383826497580', '/cadastro', 'comando', '2026-02-13 14:39:07', 1, '2026-02-13 14:39:08'),
(8245, 'AC64A4A2509476DDBC98D3B6769DA74D', 'JTVPLAY', '8383826497580', '/cadastro', 'comando', '2026-02-13 14:39:21', 1, '2026-02-13 14:39:22'),
(8246, 'ACD5BC9850E5833F05A769B4040E0ECF', 'JTVPLAY', '8383826497580', '/cadastro', 'comando', '2026-02-13 14:39:31', 1, '2026-02-13 14:39:32'),
(8247, 'AC14C3092B3C11934339858AFEEE12F2', 'JTVPLAY', '8383826497580', '/vencimento', 'text', '2026-02-13 14:41:04', 0, '2026-02-13 14:41:05'),
(8248, 'ACA607F45DBCD6CB09A313EBB52BCAD9', 'JTVPLAY', '184503356149915', 'Opa boa tarde', 'text', '2026-02-13 15:13:24', 0, '2026-02-13 15:13:25'),
(8249, 'ACEEDE8DEA71BEFCFFB102F76EE0B921', 'JTVPLAY', '98771396460584', '[Mídia sem texto]', 'audio', '2026-02-13 15:13:37', 0, '2026-02-13 15:13:37'),
(8250, 'AC93EFB788EAB3520CC60FC4078EECB0', 'JTVPLAY', '8383826497580', '/vemcimento', 'comando', '2026-02-13 15:20:40', 1, '2026-02-13 15:20:41'),
(8251, 'ACE2F6DD852A949F9EE8992A6C7B5313', 'JTVPLAY', '184503356149915', '[Mídia sem texto]', 'audio', '2026-02-13 15:20:52', 0, '2026-02-13 15:20:52'),
(8252, 'ACDC16D9903E6E40FB5F522873F70E31', 'JTVPLAY', '98771396460584', '[Mídia sem texto]', 'audio', '2026-02-13 15:21:02', 0, '2026-02-13 15:21:02'),
(8253, 'ACC4DEE37E00D7FC5BCD05F3E1E50A94', 'JTVPLAY', '184503356149915', '[Mídia sem texto]', 'audio', '2026-02-13 15:34:32', 0, '2026-02-13 15:34:33'),
(8254, 'ACD487C6D197E40D7E977CD25F73BF22', 'JTVPLAY', '211677630967839', 'Boa tarde', 'text', '2026-02-13 15:50:51', 0, '2026-02-13 15:50:52'),
(8255, 'AC92B7A8D61B7381D2E7F6C9547DBDD3', 'JTVPLAY', '211677630967839', '?????', 'text', '2026-02-13 15:51:49', 0, '2026-02-13 15:51:50'),
(8256, '3A6100E505A65FEB8282', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-13 15:53:44', 0, '2026-02-13 15:53:44'),
(8257, 'AC020940CB575296CC74DEFB5A27A103', 'JTVPLAY', '241708025548969', '[Mídia sem texto]', 'document', '2026-02-13 15:53:48', 0, '2026-02-13 15:53:48'),
(8258, 'AC847219EF5A4B139CB039BF94544BB6', 'JTVPLAY', '211677630967839', 'Sim', 'text', '2026-02-13 15:54:39', 0, '2026-02-13 15:54:40'),
(8259, 'ACD534DD305AB3FD6D3721AEC527A0EE', 'JTVPLAY', '211677630967839', '[Mídia sem texto]', 'audio', '2026-02-13 15:54:55', 0, '2026-02-13 15:54:55'),
(8260, '3A7FDE5A0EA1E9980D28', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'unknown', '2026-02-13 15:55:27', 0, '2026-02-13 15:55:27'),
(8261, '3A42E7859B27DC16D005', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'image', '2026-02-13 15:55:57', 0, '2026-02-13 15:55:57'),
(8262, '3AE555545DB3731CD40C', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'image', '2026-02-13 15:55:58', 0, '2026-02-13 15:55:58'),
(8263, 'ACA8166F6BABFFA017324178D0CBFDE9', 'JTVPLAY', '211677630967839', '??', 'text', '2026-02-13 15:59:13', 0, '2026-02-13 15:59:14'),
(8264, 'AC4E66FFFF7690FB96B34FE0603633D8', 'JTVPLAY', '211677630967839', 'Fechou', 'text', '2026-02-13 16:01:02', 0, '2026-02-13 16:01:02'),
(8265, 'A5B4E244C1829B9EB71EAEC0FBEA8759', 'JTVPLAY', '32465758515228', 'Porra ficou top', 'text', '2026-02-13 16:01:21', 0, '2026-02-13 16:01:22'),
(8266, 'A52779EA412E3E9999C95D3DBFE211F4', 'JTVPLAY', '32465758515228', 'Consigo usar ?', 'text', '2026-02-13 16:01:25', 0, '2026-02-13 16:01:25'),
(8267, 'ACEFBABC8160A0728687FAAD416EEC37', 'JTVPLAY', '211677630967839', '[Mídia sem texto]', 'image', '2026-02-13 16:02:20', 0, '2026-02-13 16:02:20'),
(8268, 'AC571F4FFDA367AE1A78D758D12CFA20', 'JTVPLAY', '211677630967839', 'Este guerreiro', 'text', '2026-02-13 16:02:25', 0, '2026-02-13 16:02:25'),
(8269, 'AC395D872FEA76C275A99565BC35A9DF', 'JTVPLAY', '211677630967839', '??', 'text', '2026-02-13 16:06:57', 0, '2026-02-13 16:06:57'),
(8270, '4AD53D40A7F6DAE86E6D', 'JTVPLAY', '556194250674', '[Mídia sem texto]', 'document', '2026-02-13 16:13:12', 0, '2026-02-13 16:13:13'),
(8271, 'A59ABDAB875F6B6820210B9F4154EC75', 'JTVPLAY', '32465758515228', '/pago', 'comando', '2026-02-13 16:18:36', 1, '2026-02-13 16:18:36'),
(8272, 'A56842E53288BBEAE99BFCD3B81533C7', 'JTVPLAY', '32465758515228', '/ajuda', 'comando', '2026-02-13 16:18:49', 1, '2026-02-13 16:18:50'),
(8273, '4A36D1399D0798B43BD6', 'JTVPLAY', '142124913795224', '[Mídia sem texto]', 'image', '2026-02-13 16:28:04', 0, '2026-02-13 16:28:05'),
(8274, '3A07FBCF14A223F2BF2F', 'JTVPLAY', '142124913795224', '[Mídia sem texto]', 'audio', '2026-02-13 16:28:23', 0, '2026-02-13 16:28:24'),
(8275, 'AC73A979C64CF8FA11D4D2212F82C967', 'JTVPLAY', '211677630967839', 'Obrigado', 'text', '2026-02-13 16:38:32', 0, '2026-02-13 16:38:32'),
(8276, 'AC180A7D7FC6D76A38A797DF191A7E7B', 'JTVPLAY', '31701287886904', '*Pagamento aprovado no Pix*\nElcio, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413/0001-75 *foi confirmado!* ✅\n\nAqui estão os dados da cobrança:\n\n*Valor cobrado:* R$ 35,00\n*Data do pagamento:* 13/02/2026\n*De:* ELCIO JOSE CONSOLINI\n*Para:* jtvplay\n\nVocê pode *conferir o seu recibo* aqui: https://recibo.infinitepay.io/62d1f965-6406-4248-92f4-65bde0c4b8cf\n\nObrigado pelo pagamento! 😉', 'text', '2026-02-13 16:43:34', 0, '2026-02-13 16:43:34'),
(8277, 'ACD275D437347C778561E575A41C008A', 'JTVPLAY', '31701287886904', 'Boa tarde Johnny', 'text', '2026-02-13 16:43:41', 0, '2026-02-13 16:43:41'),
(8278, 'AC6638E92B38927216EDE8C42B4F6CBB', 'JTVPLAY', '31701287886904', 'Vc atualiza pra mim por favor', 'text', '2026-02-13 16:43:52', 0, '2026-02-13 16:43:52'),
(8279, 'AC93998E5D99A00599AE2CF51813A0FB', 'JTVPLAY', '175913320890604', 'Oi boa tarde como faço pra desistalar ele', 'text', '2026-02-13 16:54:37', 0, '2026-02-13 16:54:38'),
(8280, '3A2ABFD782411F813320', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-13 17:00:55', 0, '2026-02-13 17:00:56'),
(8281, 'ACDA9391AF7F45A3472596DDC9E0CD17', 'JTVPLAY', '175913320890604', 'Oi ja desinstalei', 'text', '2026-02-13 17:29:54', 0, '2026-02-13 17:29:54'),
(8282, '3A0808B5BC4772D50421', 'JTVPLAY', '554797798943', 'Fala', 'text', '2026-02-13 17:33:13', 0, '2026-02-13 17:33:13'),
(8283, 'AC5FF724953F00E00331B7494BC0DB1E', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 17:35:15', 0, '2026-02-13 17:35:16'),
(8284, 'AC6A27D865A85EFAFD4EAC7C5276CDFA', 'JTVPLAY', '175913320890604', 'Falta instalar denovo', 'text', '2026-02-13 17:35:26', 0, '2026-02-13 17:35:26'),
(8285, 'ACC439BE6CEFC0F34BDF53F4DF78D308', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 17:35:53', 0, '2026-02-13 17:35:53'),
(8286, 'AC3EA6064500A21BED36C210B9CD6B60', 'JTVPLAY', '175913320890604', 'Ta', 'text', '2026-02-13 17:40:01', 0, '2026-02-13 17:40:01'),
(8287, 'ACCAC321A88AF2263402B23FE769EA09', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 17:40:48', 0, '2026-02-13 17:40:48'),
(8288, 'AC554F84DCF0D8D4A97EFD253CB69C7B', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'image', '2026-02-13 17:44:19', 0, '2026-02-13 17:44:20'),
(8289, 'AC8B455F7763A1149D6C21DC18C7B807', 'JTVPLAY', '175913320890604', '[Mídia sem texto]', 'audio', '2026-02-13 17:48:25', 0, '2026-02-13 17:48:25'),
(8290, 'ACBDE757E7F285EFDE0CD0E0EC91216F', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-13 17:49:41', 0, '2026-02-13 17:49:42'),
(8291, 'A5F16FADEE43AC2DFEDA95EF70FB0282', 'JTVPLAY', '251633711743067', 'Boa tarde \nTd bem ???', 'text', '2026-02-13 17:49:45', 0, '2026-02-13 17:49:45'),
(8292, 'A5EA6FA7F02C4588AF87E068BB129026', 'JTVPLAY', '251633711743067', 'Jonhy preciso de 20 créditos', 'text', '2026-02-13 17:50:05', 0, '2026-02-13 17:50:05'),
(8293, '3A5D0D1B508830FB8392', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-13 17:50:33', 0, '2026-02-13 17:50:33'),
(8294, '3AE3294F6DA8D4E8B177', 'JTVPLAY', '553391118088', '[Mídia sem texto]', 'audio', '2026-02-13 17:50:56', 0, '2026-02-13 17:50:56'),
(8295, 'ACE613D94F782CD39487F691F4EE87B7', 'JTVPLAY', '31701287886904', 'Obrigado', 'text', '2026-02-13 17:51:15', 0, '2026-02-13 17:51:15'),
(8296, 'AC63723FAF3F03A741CF1E1C46B5A423', 'JTVPLAY', '175913320890604', 'Deu certo', 'text', '2026-02-13 17:51:57', 0, '2026-02-13 17:51:57'),
(8297, 'AC1CE8D6D8858D372AB0ECC87E13995C', 'JTVPLAY', '175913320890604', 'Obrigado', 'text', '2026-02-13 17:52:05', 0, '2026-02-13 17:52:05'),
(8298, 'ACA9B5048F6D48A25075748B8C0EA373', 'JTVPLAY', '175913320890604', 'Vou desligaram por causa da trovoada,se der algum problema aviso', 'text', '2026-02-13 17:53:16', 0, '2026-02-13 17:53:17'),
(8299, 'ACD5FCF9A4F3647B58D0BF3F884780D4', 'JTVPLAY', '175913320890604', 'Ja paguei ta mandei comprovante.', 'text', '2026-02-13 17:54:00', 0, '2026-02-13 17:54:01'),
(8300, 'ACCCF2B8F32F4A369C443259EFAFBF68', 'JTVPLAY', '251904210772212', 'Oi', 'text', '2026-02-13 18:00:17', 0, '2026-02-13 18:00:18'),
(8301, 'AC9E36292E46061D9BDE630D198641EF', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 18:00:33', 0, '2026-02-13 18:00:34'),
(8302, 'A5D49E771703B94C96E1EE9A6BFFFABE', 'JTVPLAY', '251633711743067', '[Mídia sem texto]', 'image', '2026-02-13 18:01:12', 0, '2026-02-13 18:01:12'),
(8303, 'AC4A4357C244DF2F46C1B702D4FCA055', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-13 18:06:21', 0, '2026-02-13 18:06:22'),
(8304, '4A279C5E17DFA385173C', 'JTVPLAY', '179997817991354', '[Mídia sem texto]', 'document', '2026-02-13 18:14:31', 0, '2026-02-13 18:14:31'),
(8305, '3A51EF9648ECB584C8E4', 'JTVPLAY', '179997817991354', 'Vlw meu amigo 🙌🏻', 'text', '2026-02-13 18:33:06', 0, '2026-02-13 18:33:07'),
(8306, 'ACA2C15B3A46DECA4119B39A335364D5', 'JTVPLAY', '251904210772212', 'Quero  saber  como é', 'text', '2026-02-13 18:37:32', 0, '2026-02-13 18:37:32'),
(8307, 'AC749C536433B99E0BBD0DBEC6C96C7A', 'JTVPLAY', '193973742248049', 'Boa boa', 'text', '2026-02-13 18:52:00', 0, '2026-02-13 18:52:01'),
(8308, 'ACB2F0A906861DC3B6AD29FF2330F7AB', 'JTVPLAY', '193973742248049', 'Noite', 'text', '2026-02-13 18:52:04', 0, '2026-02-13 18:52:04'),
(8309, 'ACADD9CC9CA618A1586CE511FB426019', 'JTVPLAY', '193973742248049', '[Mídia sem texto]', 'unknown', '2026-02-13 18:52:06', 0, '2026-02-13 18:52:06'),
(8310, 'ACE3BF93EF8DDE1A9E6A94D25A565FA3', 'JTVPLAY', '46325550809276', 'Ela assisti mais a globo do sudeste', 'text', '2026-02-13 18:53:02', 0, '2026-02-13 18:53:03'),
(8311, 'AC0BB8CF506050CA338175D7AD55493E', 'JTVPLAY', '46325550809276', 'Eu falei pra ela colocar esse por ser mais perto e tals', 'text', '2026-02-13 18:53:16', 0, '2026-02-13 18:53:16'),
(8312, 'ACCB87B79DA110473867FA01C2BE0DA1', 'JTVPLAY', '46325550809276', 'Mais tentamos todas as regiões e trava', 'text', '2026-02-13 18:53:31', 0, '2026-02-13 18:53:31'),
(8313, 'ACDAAAB7B8DC73F2E304AE7F245BC8AC', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 19:05:06', 0, '2026-02-13 19:05:06'),
(8314, '3A9CE0DFEDDCB1C2D46A', 'JTVPLAY', '553399921854', 'Boa noite irmão, minha parcela ta atrasada ai, eu não esqueci não, deu uma apertada aqui mas to lembrando se quiser cancelar ai da nada não, assim que eu pegar o dinheiro que ta pra sair aqui eu te mando ai pra ativar denovo', 'text', '2026-02-13 19:05:37', 0, '2026-02-13 19:05:38'),
(8315, 'AC358618B21A92890AE1CCA73A1D4056', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 19:05:53', 0, '2026-02-13 19:05:53'),
(8316, 'ACB57AD831910B984B6B528D1F93DC4D', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:06:48', 0, '2026-02-13 19:06:48'),
(8317, 'AC99E355B4F4702A63A260DAA969E971', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:07:35', 0, '2026-02-13 19:07:35'),
(8318, '3AE1E561A367B5718069', 'JTVPLAY', '553399921854', 'Tranquilo, qualquer coisa se for o caso eu não importo não pq certo é certo, ou se quiser deixar e depois botar o juro eu não importo nao', 'text', '2026-02-13 19:09:02', 0, '2026-02-13 19:09:03'),
(8319, '3AA4FCC491B1BD9B565A', 'JTVPLAY', '553399921854', 'Bagunçou aqui minhas finanças', 'text', '2026-02-13 19:09:37', 0, '2026-02-13 19:09:37'),
(8320, 'AC37E204B2F89C83AC397F152347113E', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:18:48', 0, '2026-02-13 19:18:48'),
(8321, 'AC552982F1E8ED94220632F3154964CF', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 19:20:33', 0, '2026-02-13 19:20:34'),
(8322, 'AC5F1880E4841B98524A43E59AEF69A0', 'JTVPLAY', '193973742248049', 'Créditos add', 'text', '2026-02-13 19:21:45', 0, '2026-02-13 19:21:45'),
(8323, 'ACA470DD79AE976F314D266A39497431', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:40:34', 0, '2026-02-13 19:40:35'),
(8324, 'AC3E60121758EBB27D35218F4C73C384', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 19:40:42', 0, '2026-02-13 19:40:43');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(8325, 'AC53D5C51873C27381541EB4D8E0C253', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 19:42:05', 0, '2026-02-13 19:42:05'),
(8326, 'ACF1FF5DF023AC1A992193D503BBE6D6', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:42:13', 0, '2026-02-13 19:42:13'),
(8327, 'ACF901996F68D6E68D312758ABBE7C83', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:47:28', 0, '2026-02-13 19:47:28'),
(8328, 'AC6088EBDDDAF1CD836E6A5F8F3F73E9', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 19:51:55', 0, '2026-02-13 19:51:56'),
(8329, 'ACE15885BA74509F529102FD4AEEE125', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 19:52:18', 0, '2026-02-13 19:52:18'),
(8330, '3A897BC74CE9521D6F2F', 'JTVPLAY', '553399921854', '[Mídia sem texto]', 'audio', '2026-02-13 19:55:02', 0, '2026-02-13 19:55:02'),
(8331, 'AC471AD2277D50638FC9F72E4E75082D', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 20:01:20', 0, '2026-02-13 20:01:21'),
(8332, 'AC0C8112DCB969FCA286355E97841810', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:01:49', 0, '2026-02-13 20:01:49'),
(8333, 'AC6ED5E45AA4EC959355E3A3DCE2CFA7', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:02:49', 0, '2026-02-13 20:02:50'),
(8334, 'AC27006BDE35D54184299B798DA6CBF5', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:03:24', 0, '2026-02-13 20:03:24'),
(8335, 'AC0155EF6D1838780D191A116A9A8936', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:04:19', 0, '2026-02-13 20:04:19'),
(8336, 'AC62109FC7A292CE9E4D6F242FBEB922', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 20:04:46', 0, '2026-02-13 20:04:46'),
(8337, 'ACC4A4AF090901004F3EA5367464058D', 'JTVPLAY', '251904210772212', 'Ok', 'text', '2026-02-13 20:07:11', 0, '2026-02-13 20:07:11'),
(8338, 'AC129F51FD399B0CE6C685577AD99D1A', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:11:15', 0, '2026-02-13 20:11:16'),
(8339, 'ACFB6599EB5F5F8436D16E5FA8DDF91E', 'JTVPLAY', '251904210772212', 'Esse', 'text', '2026-02-13 20:11:26', 0, '2026-02-13 20:11:26'),
(8340, 'ACA5EEF13631A936A8D6B1CAA31F455D', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:12:59', 0, '2026-02-13 20:13:00'),
(8341, 'ACDB8D5AB1163CC066FAE8A70FE8C449', 'JTVPLAY', '251904210772212', 'Qual desses', 'text', '2026-02-13 20:13:11', 0, '2026-02-13 20:13:12'),
(8342, 'AC558B79C09991BE6A0D565EB3FE8220', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:15:37', 0, '2026-02-13 20:15:37'),
(8343, 'AC2D30309426256AFFBBB44A102594C8', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 20:15:48', 0, '2026-02-13 20:15:48'),
(8344, 'AC8E091158D79695210092CB6D5576B3', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:19:05', 0, '2026-02-13 20:19:06'),
(8345, 'ACDDAC83E1E8C316B8CA59BFBB5B72FC', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:20:02', 0, '2026-02-13 20:20:03'),
(8346, 'AC6F0DB723256E95B27F078D45BB267D', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:22:43', 0, '2026-02-13 20:22:44'),
(8347, 'AC35299167E6906202690C99CCB762A0', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:24:14', 0, '2026-02-13 20:24:14'),
(8348, 'ACCD57CEEBF97C385A390649B7D5C9F7', 'JTVPLAY', '251904210772212', 'E agora', 'text', '2026-02-13 20:27:15', 0, '2026-02-13 20:27:16'),
(8349, 'AC6BA5D043E3ECF911C13A8181AC48A8', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 20:47:17', 0, '2026-02-13 20:47:18'),
(8350, 'AC3886ACB47CB3B29B6B7D62695B09D2', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 20:47:45', 0, '2026-02-13 20:47:45'),
(8351, 'ACCE61A6EFA5D6403A9ACB57DAC13263', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 20:51:25', 0, '2026-02-13 20:51:25'),
(8352, 'ACAD7F4450ECCF11B610769AE9439A91', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 20:53:08', 0, '2026-02-13 20:53:09'),
(8353, 'AC9BD3699092B4AEADEBFE59D8E9CAE3', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 21:00:28', 0, '2026-02-13 21:00:28'),
(8354, 'ACB3B728BA3657832BF23871D3C4EAE9', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 21:00:53', 0, '2026-02-13 21:00:53'),
(8355, 'ACB149566E5849C80FB0A49FAF332BF2', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 21:18:05', 0, '2026-02-13 21:18:06'),
(8356, 'ACDC87809E44780E32FE90F45C05C566', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 21:19:12', 0, '2026-02-13 21:19:12'),
(8357, 'ACADBCD163E73536016FA9BD185FA2D9', 'JTVPLAY', '251904210772212', 'Como posso fazer', 'text', '2026-02-13 21:31:19', 0, '2026-02-13 21:31:20'),
(8358, 'AC5DEFE3BAC26FCE458BE92E05A770A1', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 21:35:48', 0, '2026-02-13 21:35:49'),
(8359, 'ACB6381A427CD92A55FE538498D001EB', 'JTVPLAY', '251904210772212', 'Desculpe  não  sabia do horário', 'text', '2026-02-13 21:44:02', 0, '2026-02-13 21:44:03'),
(8360, 'AC3C7AE6098480925FD4544A6C18676B', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-13 22:12:59', 0, '2026-02-13 22:12:59'),
(8361, 'ACE5306A42C9E1F6A18C3B80688F20D5', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 22:14:02', 0, '2026-02-13 22:14:02'),
(8362, 'A5CCFF8BE66363F8B3B9B16FE915E2F2', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-13 22:15:09', 0, '2026-02-13 22:15:09'),
(8363, 'AC82277617CE150E5BCA9FFE99E32BF5', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-13 22:17:32', 0, '2026-02-13 22:17:32'),
(8364, 'A50CDCE0C3658A9B89CC49D7F1FEEE22', 'JTVPLAY', '4792012997', '[Mídia sem texto]', 'image', '2026-02-13 22:24:57', 0, '2026-02-13 22:24:57'),
(8365, 'AC33F80187007CA3977E367D366EE98C', 'JTVPLAY', '174178221211880', '[Mídia sem texto]', 'image', '2026-02-13 22:29:07', 0, '2026-02-13 22:29:07'),
(8366, 'AC1987CF7F0410E98E956A5F7CA09F58', 'JTVPLAY', '174178221211880', '[Mídia sem texto]', 'unknown', '2026-02-13 22:33:00', 0, '2026-02-13 22:33:00'),
(8367, 'A56CA68BCEC6E9CCB632D2FB2E5389C7', 'JTVPLAY', '4792012997', '1 ampola R$550\n2 ampolas $850\n3 ampolas $1200\n4 ampolas $1500', 'text', '2026-02-13 22:40:40', 0, '2026-02-13 22:40:40'),
(8368, 'A5FFC51207DCA52FB23B1715CFB0DF50', 'JTVPLAY', '4792012997', 'Vou pagar 1100 pra Vanessa em 4 ampolas', 'text', '2026-02-13 22:40:55', 0, '2026-02-13 22:40:56'),
(8369, 'A575003CD17529D5B49663AF056A40BB', 'JTVPLAY', '4792012997', 'Essa é a tabela q fiz', 'text', '2026-02-13 22:41:07', 0, '2026-02-13 22:41:07'),
(8370, 'AC58E1BDF5F472A2F81048B2DD3998A9', 'JTVPLAY', '193973742248049', 'Parada top', 'text', '2026-02-13 22:43:00', 0, '2026-02-13 22:43:00'),
(8371, 'ACF1A96CFAAC1378503B76E60D0C4648', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-14 00:37:54', 0, '2026-02-14 00:37:55'),
(8372, 'AC2ACE655D66DC867E446A08FFF3149E', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-14 00:38:26', 0, '2026-02-14 00:38:26'),
(8373, 'AC2602ADD25E39A4368F6921626B088A', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 06:33:47', 0, '2026-02-14 06:33:48'),
(8374, 'AC6207FC45B9553051A416A907D159DF', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 06:34:00', 0, '2026-02-14 06:34:00'),
(8375, 'A560BE4AB12B1FAAB8CEFC6E390C3410', 'JTVPLAY', '4792012997', 'https://www.facebook.com/share/r/1GgKSwUZCG/', 'text', '2026-02-14 07:54:32', 0, '2026-02-14 07:54:33'),
(8376, 'A5F70B85708F2330ED633DA9C2687039', 'JTVPLAY', '178099677315112', 'Allef da Construjota Distribuidora, e sou do setor de especialidade do atendimento a Construtora.', 'text', '2026-02-14 08:16:32', 0, '2026-02-14 08:16:32'),
(8377, 'AC1B8220224B732B85AE9CA4E6BCD35E', 'JTVPLAY', '227693480124635', '[Mídia sem texto]', 'image', '2026-02-14 08:35:35', 0, '2026-02-14 08:35:36'),
(8378, 'AC578BECB89D73923CD5BD287BB595AC', 'JTVPLAY', '227693480124635', 'Estou sem sinal nas duas tvs', 'text', '2026-02-14 08:36:13', 0, '2026-02-14 08:36:13'),
(8379, 'ACA689342D24845201BB22B5C760734E', 'JTVPLAY', '148468597284964', 'Ops bom dia .show vamos renovar sim hj até a tarde já entra Pix Aki e vou enviar ai', 'text', '2026-02-14 09:01:19', 0, '2026-02-14 09:01:19'),
(8380, 'ACF3BFCAC3C5B22A98CD3737088CE48E', 'JTVPLAY', '227693480124635', 'Não', 'text', '2026-02-14 09:01:41', 0, '2026-02-14 09:01:41'),
(8381, 'AC597E15E87B8A787E1E5952AB417114', 'JTVPLAY', '227693480124635', 'Diz, a conta do usuário está incorreta', 'text', '2026-02-14 09:02:18', 0, '2026-02-14 09:02:18'),
(8382, 'AC307F7760FC4CECB6693A04E7FF6366', 'JTVPLAY', '227693480124635', 'Vou vê a conexão da internet', 'text', '2026-02-14 09:04:45', 0, '2026-02-14 09:04:45'),
(8383, 'A55629510573076EFB492405C33175E2', 'JTVPLAY', '52660711477460', '‎SP GÁS - Instalações de Gás agradece seu contato. Como podemos ajudar?', 'text', '2026-02-14 09:15:13', 0, '2026-02-14 09:15:15'),
(8384, 'ACB1BB4F2FFD714004D32A827AE0E08A', 'JTVPLAY', '221190966767835', 'Bom dia , recebi a cobrança sim ,faço hj ainda', 'text', '2026-02-14 09:15:44', 0, '2026-02-14 09:15:44'),
(8385, 'AC670B1CD18C2C43DA901149915F79D6', 'JTVPLAY', '31585407639718', 'Bom dia jhony', 'text', '2026-02-14 09:16:42', 0, '2026-02-14 09:16:42'),
(8386, 'ACAB71394BA11D6A9323CD48C44D41EE', 'JTVPLAY', '6000287473896', 'Bom dia', 'text', '2026-02-14 09:16:47', 0, '2026-02-14 09:16:47'),
(8387, 'AC8FB0563FB59283361BAEAC5E128661', 'JTVPLAY', '31585407639718', 'Vamos, já te faço o pix', 'text', '2026-02-14 09:16:52', 0, '2026-02-14 09:16:52'),
(8388, 'AC024D09E2CAC8D1004A007C354170C4', 'JTVPLAY', '6000287473896', 'Vamos sim.', 'text', '2026-02-14 09:17:49', 0, '2026-02-14 09:17:49'),
(8389, '3A1252BA48FB707ABB5F', 'JTVPLAY', '114864773144584', 'Bom dia irmão tranquilo?', 'text', '2026-02-14 09:18:05', 0, '2026-02-14 09:18:05'),
(8390, '3A1B44492A30479160E3', 'JTVPLAY', '114864773144584', 'Vou começar a trabalhar segunda feira', 'text', '2026-02-14 09:18:19', 0, '2026-02-14 09:18:19'),
(8391, 'ACC4BA6A5F88BE3D9B27AC742F67F9D6', 'JTVPLAY', '6000287473896', 'Estou viajando qdo chegar renovo.', 'text', '2026-02-14 09:18:26', 0, '2026-02-14 09:18:27'),
(8392, '3AA39BE08056889DD77D', 'JTVPLAY', '114864773144584', 'Lá o pagamento é td dia 15 e 39', 'text', '2026-02-14 09:18:38', 0, '2026-02-14 09:18:39'),
(8393, 'AC3145424580A909CF6CD56CCD5AFAA0', 'JTVPLAY', '209594471170110', 'Bom dia', 'text', '2026-02-14 09:18:48', 0, '2026-02-14 09:18:48'),
(8394, '3AAF0E58D73B7BC448F8', 'JTVPLAY', '114864773144584', 'Daí pago vc', 'text', '2026-02-14 09:18:53', 0, '2026-02-14 09:18:53'),
(8395, '3A1065590CBF332364F5', 'JTVPLAY', '114864773144584', 'Blz', 'text', '2026-02-14 09:18:55', 0, '2026-02-14 09:18:55'),
(8396, 'ACCCADA19FAB04D816A1A1768182E7BE', 'JTVPLAY', '209594471170110', 'Vamos sim até esqueci', 'text', '2026-02-14 09:18:57', 0, '2026-02-14 09:18:57'),
(8397, 'AC4F680BC647F19D2F32C41433DFD832', 'JTVPLAY', '209594471170110', 'Já mando', 'text', '2026-02-14 09:19:02', 0, '2026-02-14 09:19:02'),
(8398, 'AC0DEBB397AC0496AE852A7CA175AC72', 'JTVPLAY', '209594471170110', '[Mídia sem texto]', 'document', '2026-02-14 09:20:46', 0, '2026-02-14 09:20:46'),
(8399, '3A1DBC5499E4D340D6E9', 'JTVPLAY', '10054635921414', 'Bom dia', 'text', '2026-02-14 09:34:30', 0, '2026-02-14 09:34:30'),
(8400, 'A5D5BC005672B9B63304B91F9A7C45B7', 'JTVPLAY', '4792012997', 'To com mta dor de garganta', 'text', '2026-02-14 09:35:29', 0, '2026-02-14 09:35:29'),
(8401, 'A534D05ED043AF769DA204D88CBABD4F', 'JTVPLAY', '4792012997', 'Já fiz um.cha cedo', 'text', '2026-02-14 09:35:34', 0, '2026-02-14 09:35:34'),
(8402, 'A5CD77EB0DDF31F129E59F0E3FB5098B', 'JTVPLAY', '78769717030973', 'Bom dia tudo bem.\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\nQualquer coisa te aviso.\nObrigado.', 'text', '2026-02-14 09:35:39', 0, '2026-02-14 09:35:40'),
(8403, 'A5FE36B510473808CCC0A864F87007AC', 'JTVPLAY', '4792012997', 'To com.dor de cabeça t', 'text', '2026-02-14 09:35:41', 0, '2026-02-14 09:35:41'),
(8404, 'AC71948948E1A5A1C57A649604E256F9', 'JTVPLAY', '208580858916881', 'Bom dia', 'text', '2026-02-14 09:36:15', 0, '2026-02-14 09:36:15'),
(8405, 'AC1832987301C2D0F88CE940816F5D8E', 'JTVPLAY', '175986435948678', 'Bom dia ... expira dia 18 não dia 15', 'text', '2026-02-14 09:36:21', 0, '2026-02-14 09:36:21'),
(8406, 'AC7EC034F492D69F96548F3C676F4516', 'JTVPLAY', '208580858916881', '[Mídia sem texto]', 'audio', '2026-02-14 09:37:20', 0, '2026-02-14 09:37:21'),
(8407, 'ACD5FF24DBD48EB83744F68A3A254D41', 'JTVPLAY', '250886404186362', 'Bom dia', 'text', '2026-02-14 09:46:38', 0, '2026-02-14 09:46:38'),
(8408, 'ACA8C1D0DE239632F288B7F3D43BF0A9', 'JTVPLAY', '250886404186362', 'Edyou em viagem assim chegar renovarei obrigadão pela atenção', 'text', '2026-02-14 09:47:38', 0, '2026-02-14 09:47:38'),
(8409, 'AC3F916463305C865FDBBA3EA8414487', 'JTVPLAY', '68904210669749', '[Mídia sem texto]', 'document', '2026-02-14 09:52:43', 0, '2026-02-14 09:52:43'),
(8410, 'ACECB79C0A2AEC3F866B3A741E98E966', 'JTVPLAY', '68904210669749', '[Mídia sem texto]', 'audio', '2026-02-14 09:53:01', 0, '2026-02-14 09:53:01'),
(8411, 'ACE73F6EEFC4C27DF0433D852CBEEED1', 'JTVPLAY', '227693480124635', 'Internet perfeita', 'text', '2026-02-14 10:02:13', 0, '2026-02-14 10:02:13'),
(8412, 'AC62988A242C68465D1971AC7897C2A4', 'JTVPLAY', '227693480124635', '?', 'text', '2026-02-14 10:02:29', 0, '2026-02-14 10:02:30'),
(8413, 'A53F2635CAA1FD7B8D26C4C293055E9C', 'JTVPLAY', '54030789287976', '[Mídia sem texto]', 'image', '2026-02-14 10:05:56', 0, '2026-02-14 10:05:57'),
(8414, 'ACA41C83A9BD164969B2C40F15FBAD02', 'JTVPLAY', '227693480124635', '[Mídia sem texto]', 'audio', '2026-02-14 10:11:18', 0, '2026-02-14 10:11:18'),
(8415, '4A73259B0C539086A368', 'JTVPLAY', '10054635921414', '[Mídia sem texto]', 'image', '2026-02-14 10:16:04', 0, '2026-02-14 10:16:04'),
(8416, '3A10180D0548FA76E5A3', 'JTVPLAY', '10054635921414', 'Johnny fiz dia 29/12 3 meses', 'text', '2026-02-14 10:16:42', 0, '2026-02-14 10:16:42'),
(8417, '3A0573FB41608388BF73', 'JTVPLAY', '10054635921414', 'Para vender', 'text', '2026-02-14 10:16:56', 0, '2026-02-14 10:16:56'),
(8418, 'AC225BE8403B9E6520CBE0E3DC15A906', 'JTVPLAY', '227693480124635', '[Mídia sem texto]', 'audio', '2026-02-14 10:16:55', 0, '2026-02-14 10:16:58'),
(8419, '3AE3B8602BF2E8055296', 'JTVPLAY', '10054635921414', 'Não é só 29/03', 'text', '2026-02-14 10:16:53', 0, '2026-02-14 10:17:00'),
(8420, 'AC1083DD1729135D7E4E43A65A8D4196', 'JTVPLAY', '208580858916881', '[Mídia sem texto]', 'audio', '2026-02-14 10:16:53', 0, '2026-02-14 10:17:01'),
(8421, 'AC8D178FAB405864BB8F2D85A62B16E5', 'JTVPLAY', '168551730135098', '[Mídia sem texto]', 'image', '2026-02-14 10:17:37', 0, '2026-02-14 10:17:38'),
(8422, 'A5DF8019696E52271C28610F40CC5357', 'JTVPLAY', '52660711477460', '[Mídia sem texto]', 'image', '2026-02-14 10:57:17', 0, '2026-02-14 10:57:17'),
(8423, 'A574AA2A862139E2F6BB2C45375786BE', 'JTVPLAY', '52660711477460', 'Feito 👍🏻', 'text', '2026-02-14 10:57:22', 0, '2026-02-14 10:57:22'),
(8424, 'ACB6C03E8044149DC37BEE9C762E5B8E', 'JTVPLAY', '227693480124635', 'Oi,  agora estou sem internet 😧', 'text', '2026-02-14 11:26:27', 0, '2026-02-14 11:26:27'),
(8425, 'A50621FCD6AECE7E52AFF41D2B8B55C7', 'JTVPLAY', '54030789287976', 'Bom dia! Eu que agradeço', 'text', '2026-02-14 11:30:17', 0, '2026-02-14 11:30:18'),
(8426, 'AC6359350D2ED5D272C03EEF00EED1D4', 'JTVPLAY', '8383826497580', '/pago 4791063914', 'comando_ignorado', '2026-02-14 11:31:10', 1, '2026-02-14 11:31:10'),
(8427, 'A5EDB8BFB5B913AFC99B4D76A9B1E8C2', 'JTVPLAY', '180749806342387', '/pago 4791063914', 'comando_ignorado', '2026-02-14 11:31:39', 1, '2026-02-14 11:31:40'),
(8428, 'A58E52F7AF8077DE4D8C2ECDB6A5B0C2', 'JTVPLAY', '180749806342387', '/ajuda', 'comando_ignorado', '2026-02-14 11:32:01', 1, '2026-02-14 11:32:01'),
(8429, 'A58DC6133709DBA5305BB8A69F9B0E2E', 'JTVPLAY', '8383826497580', '/pago 4791063914', 'comando_ignorado', '2026-02-14 11:33:07', 1, '2026-02-14 11:33:07'),
(8430, 'ACA7F6A3361B0451566AFC5FE666E3F2', 'JTVPLAY', '74582207811789', 'Oi Jhony ou Carol qual valor?', 'text', '2026-02-14 11:38:43', 0, '2026-02-14 11:38:44'),
(8431, 'A50F3B84FFC78292B0E8087CDCBC9CED', 'JTVPLAY', '74582207811789', 'Bomdia', 'text', '2026-02-14 11:41:26', 0, '2026-02-14 11:41:26'),
(8432, 'A5116D6C2E4746146B5C3B26850A41C1', 'JTVPLAY', '74582207811789', 'Td bem', 'text', '2026-02-14 11:41:27', 0, '2026-02-14 11:41:27'),
(8433, 'A544C10EA201F2C363186EB35673590D', 'JTVPLAY', '74582207811789', '1 ampola R$550\n2 ampolas $850\n3 ampolas $1200\n4 ampolas $1500', 'text', '2026-02-14 11:41:28', 0, '2026-02-14 11:41:28'),
(8434, 'A5006E74FB794AA61D4ED03AFF360C6A', 'JTVPLAY', '180749806342387', '/pago 4791063914', 'comando_ignorado', '2026-02-14 11:42:58', 1, '2026-02-14 11:42:59'),
(8435, 'AC53A159EC154385DB39DBD1047F0F38', 'JTVPLAY', '8383826497580', '/Pago', 'comando_ignorado', '2026-02-14 11:44:13', 1, '2026-02-14 11:44:13'),
(8436, 'A53AB7B2111F414CF6BB6E8B449B5A89', 'JTVPLAY', '8383826497580', '/ajuda', 'comando_ignorado', '2026-02-14 11:44:22', 1, '2026-02-14 11:44:22'),
(8437, 'A5D862904EAED535E5E71E04A03B8E6C', 'JTVPLAY', '180749806342387', '/ajuda', 'comando_ignorado', '2026-02-14 11:44:32', 1, '2026-02-14 11:44:33'),
(8438, 'A524D635CE16B2CDF3A54A0AA3A217B7', 'JTVPLAY', '180749806342387', '/ajuda', 'comando_ignorado', '2026-02-14 11:46:03', 1, '2026-02-14 11:46:04'),
(8439, 'ACD10CA399FBF751172E2CFC6ABAFCDD', 'JTVPLAY', '208520813277405', '😮', 'text', '2026-02-14 11:53:31', 0, '2026-02-14 11:53:32'),
(8440, 'A506AA763964B355A7171ACF94F1395D', 'JTVPLAY', '208520813277405', '[Mídia sem texto]', 'unknown', '2026-02-14 11:59:12', 0, '2026-02-14 11:59:12'),
(8441, 'ACD653C8FE95DBB4F5317F0D701D9C78', 'JTVPLAY', '74582207811789', 'Tem desconto  pagando a vista?', 'text', '2026-02-14 11:59:49', 0, '2026-02-14 11:59:49'),
(8442, 'A5848EE82051222148EA5A7FBAB776EE', 'JTVPLAY', '74582207811789', 'Quantas ampolas?', 'text', '2026-02-14 12:03:06', 0, '2026-02-14 12:03:07'),
(8443, 'ACCDF59995B29AC556811B76F6065B78', 'JTVPLAY', '83378317557940', '[Mídia sem texto]', 'image', '2026-02-14 12:18:59', 0, '2026-02-14 12:18:59'),
(8444, 'ACECBD24F136EEC5E3C49E0A76014320', 'JTVPLAY', '83378317557940', 'Segue no Comprovante do mês de Fevereiro', 'text', '2026-02-14 12:20:43', 0, '2026-02-14 12:20:44'),
(8445, 'AC3E1F350189CE6CA73BD337B9C5341C', 'JTVPLAY', '74582207811789', '04', 'text', '2026-02-14 12:21:50', 0, '2026-02-14 12:21:51'),
(8446, 'A55CFBE7BD39E54A43CE6B408D9BF68F', 'JTVPLAY', '74582207811789', '[Mídia sem texto]', 'audio', '2026-02-14 12:39:15', 0, '2026-02-14 12:39:16'),
(8447, 'A5C2E690FF568EC996AC6912F0361E3F', 'JTVPLAY', '74582207811789', 'No pix nw', 'text', '2026-02-14 12:39:20', 0, '2026-02-14 12:39:21'),
(8448, 'A5164883F1443DE50190471400932ABB', 'JTVPLAY', '74582207811789', 'Qual teu endereço', 'text', '2026-02-14 12:39:30', 0, '2026-02-14 12:39:30'),
(8449, 'A500A11688388F71273C91110AC9C44D', 'JTVPLAY', '83378317557940', 'Boatarde', 'text', '2026-02-14 12:40:16', 0, '2026-02-14 12:40:17'),
(8450, 'A5898BC6A21579C40E3499BB59281AA5', 'JTVPLAY', '83378317557940', '[Mídia sem texto]', 'unknown', '2026-02-14 12:40:17', 0, '2026-02-14 12:40:17'),
(8451, 'A5527CE42828087974E70857E9F9F3FA', 'JTVPLAY', '83378317557940', '[Mídia sem texto]', 'unknown', '2026-02-14 12:40:17', 0, '2026-02-14 12:40:20'),
(8452, 'AC5A136CBFE78D1E36DD78F2F0D53127', 'JTVPLAY', '252012138635473', '[Mídia sem texto]', 'image', '2026-02-14 12:40:21', 0, '2026-02-14 12:40:21'),
(8453, 'A5FEDA5E019DDDF9FF3D76B835C968B0', 'JTVPLAY', '74582207811789', 'Aqui 2 meses atrás com 85.9 kg', 'text', '2026-02-14 12:44:07', 0, '2026-02-14 12:44:07'),
(8454, 'A53F5F9BBD1F431D0686959D49F7FED3', 'JTVPLAY', '74582207811789', 'Aqui com 73kg', 'text', '2026-02-14 12:44:18', 0, '2026-02-14 12:44:18'),
(8455, 'A5D041BCC556828A55D18C5FD574EDFE', 'JTVPLAY', '74582207811789', 'Apenas com 2 ampolas', 'text', '2026-02-14 12:44:25', 0, '2026-02-14 12:44:25'),
(8456, 'AC19C1C6822C41810ECA8A57B444DBA2', 'JTVPLAY', '243206868492520', 'Fala mano boa tarde', 'text', '2026-02-14 12:54:11', 0, '2026-02-14 12:54:11'),
(8457, 'AC71250DDFF4E288DBBA35A5F44CEBD5', 'JTVPLAY', '243206868492520', 'Agora to por casa', 'text', '2026-02-14 12:54:16', 0, '2026-02-14 12:54:16'),
(8458, 'ACC45235F145BCCF7908AA0237B1E3DC', 'JTVPLAY', '243206868492520', 'Se vc conseguir me ajudar agradeço', 'text', '2026-02-14 12:54:23', 0, '2026-02-14 12:54:24'),
(8459, 'ACB8C4064D94BC21D4E640781CED9499', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'image', '2026-02-14 12:54:47', 0, '2026-02-14 12:54:47'),
(8460, 'ACF615EE240BA38E12C76B255D4EE584', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'video', '2026-02-14 12:55:25', 0, '2026-02-14 12:55:26'),
(8461, '3EB077C57185747A99C6AB', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 12:56:45', 1, '2026-02-14 12:56:46'),
(8462, 'ACBB5429681DB778429A2BDDEA584871', 'JTVPLAY', '74582207811789', 'Que diferença', 'text', '2026-02-14 12:57:04', 0, '2026-02-14 12:57:05'),
(8463, '3EB005B2DB19A8D6CA72E2', 'JTVPLAY', '554791063914', '/pago 4791063914', 'comando_ignorado', '2026-02-14 12:57:32', 1, '2026-02-14 12:57:32'),
(8464, '3EB053CBA3461399FEA187', 'JTVPLAY', '554791592447', '/pago 4791063914', 'comando_admin', '2026-02-14 12:57:42', 1, '2026-02-14 12:57:43'),
(8465, 'A5F488C29C8CDF6BCBE01BC49C8D8276', 'JTVPLAY', '74582207811789', 'Essa aí sou eu', 'text', '2026-02-14 12:59:41', 0, '2026-02-14 12:59:41'),
(8466, 'A5C6E277A019B4C2C47843D7129CF02F', 'JTVPLAY', '74582207811789', 'Desincha bastante', 'text', '2026-02-14 12:59:45', 0, '2026-02-14 12:59:45'),
(8467, 'A54E9D996E591E01154458C23C146572', 'JTVPLAY', '74582207811789', 'Perdi 12kg', 'text', '2026-02-14 12:59:53', 0, '2026-02-14 12:59:53'),
(8468, 'A5BECC73EAD0F646112CD73BC108A5DB', 'JTVPLAY', '74582207811789', 'Ainda faltam 10kg', 'text', '2026-02-14 13:00:02', 0, '2026-02-14 13:00:02'),
(8469, '3EB0D1537B56B4DABC1DDD', 'JTVPLAY', '554791592447', '/pago 4791063914', 'comando_admin', '2026-02-14 13:00:51', 1, '2026-02-14 13:00:52'),
(8470, '3AEC9B77FE2B16431AB0', 'JTVPLAY', '10054635921414', 'Blz', 'text', '2026-02-14 13:01:19', 0, '2026-02-14 13:01:19'),
(8471, 'A5581EDEB0883C1DB66FC6651FF9A661', 'JTVPLAY', '74582207811789', '[Mídia sem texto]', 'audio', '2026-02-14 13:01:24', 0, '2026-02-14 13:01:24'),
(8472, 'AC108434F5BF78C95749055567EDE07F', 'JTVPLAY', '74582207811789', 'Muito', 'text', '2026-02-14 13:02:08', 0, '2026-02-14 13:02:09'),
(8473, 'AC96AAA1429ACB26D6E68288B97A3DED', 'JTVPLAY', '74582207811789', 'Eu fico com medo', 'text', '2026-02-14 13:02:15', 0, '2026-02-14 13:02:15'),
(8474, '3EB00DC1905BDACF1A5CCC', 'JTVPLAY', '554799410718', 'slv negao', 'text', '2026-02-14 13:02:18', 0, '2026-02-14 13:02:18'),
(8475, 'AC606691C13998C76C16D7A3B8EC4D2D', 'JTVPLAY', '74582207811789', 'Sabia', 'text', '2026-02-14 13:02:19', 0, '2026-02-14 13:02:19'),
(8476, '3EB0A8296C8ED35B63FC21', 'JTVPLAY', '554799410718', 'bora ageitar isso', 'text', '2026-02-14 13:02:20', 0, '2026-02-14 13:02:21'),
(8477, '3EB089AEC6741596A17CA9', 'JTVPLAY', '554799410718', 'podes excluir esse app', 'text', '2026-02-14 13:02:26', 0, '2026-02-14 13:02:26'),
(8478, '3EB005F60CEF8CE4CBF598', 'JTVPLAY', '554799410718', 'vamo baixa outro', 'text', '2026-02-14 13:02:28', 0, '2026-02-14 13:02:28'),
(8479, '3EB04357403FB2A666C92C', 'JTVPLAY', '554799410718', 'parece q bugo', 'text', '2026-02-14 13:02:32', 0, '2026-02-14 13:02:32'),
(8480, 'AC8C878CFEAB47D884C9D4F190A5558F', 'JTVPLAY', '243206868492520', 'Blza mano', 'text', '2026-02-14 13:02:33', 0, '2026-02-14 13:02:33'),
(8481, '3EB0F5423C0A8019F7F5DA', 'JTVPLAY', '554799410718', 'podes baixar pela loja no navegador', 'text', '2026-02-14 13:02:48', 0, '2026-02-14 13:02:49'),
(8482, '3EB01E63C09BBE847C3795', 'JTVPLAY', '554799410718', 'store1.voidpla.com.br', 'text', '2026-02-14 13:03:07', 0, '2026-02-14 13:03:07'),
(8483, 'AC6FA5597BF0EE98E2891AC9C2FC5064', 'JTVPLAY', '243206868492520', 'Eu coloco como está aqui ne', 'text', '2026-02-14 13:04:23', 0, '2026-02-14 13:04:24'),
(8484, 'AC0E56598E078C8106707B52A3677E1D', 'JTVPLAY', '243206868492520', '?', 'text', '2026-02-14 13:04:25', 0, '2026-02-14 13:04:25'),
(8485, 'A5280420BA75A5D681A6AFD579A64F27', 'JTVPLAY', '74582207811789', 'Medo de que', 'text', '2026-02-14 13:09:53', 0, '2026-02-14 13:09:54'),
(8486, 'A543E0FB93AD0EDA9103507836DD7E9D', 'JTVPLAY', '74582207811789', 'Pra eu entender', 'text', '2026-02-14 13:09:57', 0, '2026-02-14 13:09:57'),
(8487, 'A5C14D3E10493040EB06BDE32937D39B', 'JTVPLAY', '243206868492520', 'Sim', 'text', '2026-02-14 13:10:04', 0, '2026-02-14 13:10:04'),
(8488, 'ACB2038EBEB016294B160802DC02C126', 'JTVPLAY', '74582207811789', 'Dizem que está dando pancriatite', 'text', '2026-02-14 13:11:11', 0, '2026-02-14 13:11:11'),
(8489, 'AC8D5B78D6FB4BB4CEED0E8B76DD2791', 'JTVPLAY', '74582207811789', 'Eu estou com vontade mas fico insegura', 'text', '2026-02-14 13:11:38', 0, '2026-02-14 13:11:39'),
(8490, 'A5B65839996E637C7A15E05D610265C5', 'JTVPLAY', '74582207811789', 'Hmmm entendi', 'text', '2026-02-14 13:12:38', 0, '2026-02-14 13:12:39'),
(8491, 'A58BECCBF309911CC6219B2AE9FC1B15', 'JTVPLAY', '74582207811789', 'Entendi', 'text', '2026-02-14 13:13:33', 0, '2026-02-14 13:13:34'),
(8492, 'AC936A98F5B8D3272D7066FB216602D0', 'JTVPLAY', '160468618498205', '[Mídia sem texto]', 'audio', '2026-02-14 13:13:50', 0, '2026-02-14 13:13:50'),
(8493, 'AC242713EFDAB825EAA35487A0EEDDDE', 'JTVPLAY', '74582207811789', 'Mas vontade tenho', 'text', '2026-02-14 13:13:51', 0, '2026-02-14 13:13:51'),
(8494, 'A5C886231FE9154ADBF1347EBB2A1688', 'JTVPLAY', '74582207811789', '[Mídia sem texto]', 'audio', '2026-02-14 13:14:26', 0, '2026-02-14 13:14:26'),
(8495, 'A538F67FCE2735271B9F28D9E291E2F6', 'JTVPLAY', '74582207811789', '[Mídia sem texto]', 'audio', '2026-02-14 13:14:51', 0, '2026-02-14 13:14:51'),
(8496, 'A5E181623337DD1416BB3500AF8B8E2A', 'JTVPLAY', '160468618498205', '[Mídia sem texto]', 'audio', '2026-02-14 13:15:45', 0, '2026-02-14 13:15:45'),
(8497, 'ACC7FB90FB1034F1647F929A17381D12', 'JTVPLAY', '160468618498205', '[Mídia sem texto]', 'audio', '2026-02-14 13:16:29', 0, '2026-02-14 13:16:30'),
(8498, 'AC8937A3DD0D186FC467AAB8AEB1C6C7', 'JTVPLAY', '74582207811789', 'E tantos comentários', 'text', '2026-02-14 13:16:36', 0, '2026-02-14 13:16:37'),
(8499, 'ACCFBD9197A72A4A8AC7FF61BF0741B3', 'JTVPLAY', '74582207811789', 'Que não ajuda', 'text', '2026-02-14 13:16:47', 0, '2026-02-14 13:16:48'),
(8500, 'ACE235C877BBAB3D100B285D6CAD4DC4', 'JTVPLAY', '74582207811789', 'Nas redes  sociais', 'text', '2026-02-14 13:16:57', 0, '2026-02-14 13:16:57'),
(8501, 'A534470D5F07C0E283450C28EBBCB542', 'JTVPLAY', '74582207811789', 'tirzepatida é um medicamento injetável usado para diabetes tipo 2 e emagrecimento. Ela é vendida como:\nMounjaro\nZepbound\nEla age imitando dois hormônios intestinais (GLP-1 e GIP), que regulam açúcar no sangue e apetite.\n✅ O que a tirzepatida pode fazer (efeitos esperados)\n🩸 1. Diminuir a glicose\nReduz o açúcar no sangue\nMelhora a hemoglobina glicada (HbA1c)\nAjuda no controle do diabetes tipo 2\n⚖️ 2. Promover emagrecimento\nReduz o apetite\nAumenta a saciedade\nPode levar a perda de 10% a 20% do peso corporal, dependendo da dose\n❤️ 3. Melhorar fatores metabólicos\nPode reduzir triglicerídeos\nPode melhorar pressão arterial\nPode reduzir gordura no fígado\n⚠️ Efeitos colaterais mais comuns\nNáuseas\nVômitos\nDiarreia ou prisão de ventre\nAzia\nSensação de estômago cheio\nPerda de apetite\nEsses sintomas costumam ser mais fortes no início e melhoram com o tempo.\n⚠️ Riscos menos comuns, mas importantes\nPancreatite (raro)\nProblemas na vesícula (principalmente com perda rápida de peso)\nDesidratação se houver muito vômito\nHipoglicemia (principalmente se usar junto com insulina ou sulfonilureias)\n🚫 Quem precisa ter cuidado\nQuem já teve pancreatite\nQuem tem histórico de câncer medular de tireoide\nGestantes ou tentando engravidar', 'text', '2026-02-14 13:17:19', 0, '2026-02-14 13:17:19'),
(8502, 'A567F30623F7EBC68D00D3BFE6F8F09E', 'JTVPLAY', '160468618498205', 'Pix ou cartao', 'text', '2026-02-14 13:17:25', 0, '2026-02-14 13:17:26'),
(8503, 'AC7BEAD68189C5F7EF07871783442F36', 'JTVPLAY', '160468618498205', 'Blz', 'text', '2026-02-14 13:17:37', 0, '2026-02-14 13:17:37'),
(8504, 'AC974ABF9B8A85BBDF208E9D2CC64E23', 'JTVPLAY', '252012138635473', 'Tira uma foto', 'text', '2026-02-14 13:18:07', 0, '2026-02-14 13:18:07'),
(8505, 'ACBD1F0C88895EE02932489EF125D4CC', 'JTVPLAY', '252012138635473', 'Aq e manda pra tua mae', 'text', '2026-02-14 13:18:12', 0, '2026-02-14 13:18:12'),
(8506, 'ACF837373FFB089129E9A97942072394', 'JTVPLAY', '252012138635473', 'Print da camera', 'text', '2026-02-14 13:18:20', 0, '2026-02-14 13:18:20'),
(8507, 'AC908CDE8209E567FBF3D72307890A27', 'JTVPLAY', '252012138635473', 'Pra ela vê a folgada da dindinha', 'text', '2026-02-14 13:18:28', 0, '2026-02-14 13:18:28'),
(8508, 'ACBECC765C4821C961F2BB9B85F3CBC7', 'JTVPLAY', '252012138635473', 'https://www.instagram.com/p/DQHXCAaE3Z0/?igsh=cmtsYXBrbWp0MWpo', 'text', '2026-02-14 13:19:52', 0, '2026-02-14 13:19:52'),
(8509, 'ACB848CF835086D4D8B0D2E298FF23E2', 'JTVPLAY', '252012138635473', 'https://www.instagram.com/p/DUEQUvYFUkF/?img_index=1&igsh=aWI2MnNla3o4YWFw', 'text', '2026-02-14 13:19:52', 0, '2026-02-14 13:19:53'),
(8510, 'AC39077605A069C1709895F64F69ECD4', 'JTVPLAY', '252012138635473', 'https://www.instagram.com/p/DRzdg66Dlrj/?img_index=7&igsh=M2cxNjFqcjd4bnJ6', 'text', '2026-02-14 13:19:52', 0, '2026-02-14 13:19:54'),
(8511, 'A5BE43A037A357777E2D3F4BC8BE5E3F', 'JTVPLAY', '74582207811789', 'https://www.instagram.com/p/DRzdg66Dlrj/?img_index=7&igsh=M2cxNjFqcjd4bnJ6', 'text', '2026-02-14 13:20:12', 0, '2026-02-14 13:20:13'),
(8512, 'A530CF89A47DC5E6B6A9A35971D57AA4', 'JTVPLAY', '74582207811789', 'https://www.instagram.com/p/DQHXCAaE3Z0/?igsh=cmtsYXBrbWp0MWpo', 'text', '2026-02-14 13:20:13', 0, '2026-02-14 13:20:14'),
(8513, 'A527942C72E7164927FA8771038B50A9', 'JTVPLAY', '74582207811789', 'https://www.instagram.com/p/DUEQUvYFUkF/?img_index=1&igsh=aWI2MnNla3o4YWFw', 'text', '2026-02-14 13:20:14', 0, '2026-02-14 13:20:14'),
(8514, 'ACC334947883DC4EAC5F4C53673EA7F0', 'JTVPLAY', '252012138635473', 'Ela viu a Lívia procurando lugar pra sentar e não ofereceu', 'text', '2026-02-14 13:20:41', 0, '2026-02-14 13:20:41'),
(8515, '3EB0673CFA6507F1FDB805', 'JTVPLAY', '554791592447', '/vencimento 4791063914', 'comando_admin', '2026-02-14 13:21:23', 1, '2026-02-14 13:21:24'),
(8516, '3EB01982AF9C151CEAAA58', 'JTVPLAY', '554791592447', '/vencimento', 'comando_admin', '2026-02-14 13:21:31', 1, '2026-02-14 13:21:32'),
(8517, '3EB00663F1BC6BF95AEF05', 'JTVPLAY', '554791592447', '/pausar', 'comando_admin', '2026-02-14 13:21:46', 1, '2026-02-14 13:21:47'),
(8518, '3EB081C8893D08AADB2D60', 'JTVPLAY', '554791592447', '/pago 4791063914', 'comando_admin', '2026-02-14 13:22:01', 1, '2026-02-14 13:22:02'),
(8519, 'ACFA9CC270F5945C39062F40B3705576', 'JTVPLAY', '243206868492520', 'Qual dos downloads e pra fazer mano?', 'text', '2026-02-14 13:23:23', 0, '2026-02-14 13:23:23'),
(8520, 'AC763A39DC8212F360E13CCFF539DB72', 'JTVPLAY', '243206868492520', 'Esse aqui?', 'image', '2026-02-14 13:24:39', 0, '2026-02-14 13:24:40'),
(8521, 'AC1449E696A14C80CF16B90AC8845605', 'JTVPLAY', '16149513269440', '[Mídia sem texto]', 'unknown', '2026-02-14 13:26:42', 0, '2026-02-14 13:26:43'),
(8522, 'A59474091434D7929526BC807BA21198', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:27:29', 0, '2026-02-14 13:27:29'),
(8523, 'A58A865995759EFCFE147508259FE31F', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:27:30', 0, '2026-02-14 13:27:30'),
(8524, 'A5C28FCFCB50B21BCC9BF96BEDE93562', 'JTVPLAY', '243206868492520', '✅ *Usuário:* 672904026\n✅ *Senha:* 953233880', 'text', '2026-02-14 13:28:01', 0, '2026-02-14 13:28:02'),
(8525, 'A541CB54CEB2DFCC7AD09D3E64B3E3BA', 'JTVPLAY', '252012138635473', 'Agr?', 'text', '2026-02-14 13:28:17', 0, '2026-02-14 13:28:18'),
(8526, 'A5C0D40DC2493BD301D812178882BF14', 'JTVPLAY', '252012138635473', 'Eu vi ela chamando a livia', 'text', '2026-02-14 13:28:22', 0, '2026-02-14 13:28:22'),
(8527, 'AC5C6CE17A79D4955AD236303231CCA1', 'JTVPLAY', '252012138635473', 'Depois de 30m', 'text', '2026-02-14 13:28:36', 0, '2026-02-14 13:28:36'),
(8528, 'A52D85B0C487122423E5FD0DC3B2868B', 'JTVPLAY', '252012138635473', 'Hm', 'text', '2026-02-14 13:28:42', 0, '2026-02-14 13:28:42'),
(8529, '3EB081156E61DCF6F4141B', 'JTVPLAY', '554791592447', '/pago 4791063914', 'comando_admin', '2026-02-14 13:32:23', 1, '2026-02-14 13:32:24'),
(8530, 'AC4CBD0E9CEB0F11654761EF2C6719CD', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 13:38:12', 0, '2026-02-14 13:38:13'),
(8531, '3EB07F02689DF4B6111772', 'JTVPLAY', '554791592447', '/pago 4791063914', 'comando_admin', '2026-02-14 13:38:21', 1, '2026-02-14 13:38:21'),
(8532, 'A5DD24F35A48319B9B4D347CC4F33113', 'JTVPLAY', '251904210772212', 'Boatarde', 'text', '2026-02-14 13:41:55', 0, '2026-02-14 13:41:56'),
(8533, 'A51097C0BD8995759E6CDDA5F8105BB5', 'JTVPLAY', '251904210772212', 'Reinicia', 'text', '2026-02-14 13:41:56', 0, '2026-02-14 13:41:57'),
(8534, 'AC2E76850E1E489F66BD5D25F3C7F768', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 13:42:28', 0, '2026-02-14 13:42:29'),
(8535, 'ACE7DBFD785BDC877E1724E152CB09F7', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'image', '2026-02-14 13:43:17', 0, '2026-02-14 13:43:18'),
(8536, 'AC952851722C01F145EC0A52061324EF', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 13:43:35', 0, '2026-02-14 13:43:35'),
(8537, 'ACE492959EC0ADA616B7EFFEE3314133', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:44:07', 0, '2026-02-14 13:44:08'),
(8538, 'AC22A29D0A8E9147C5D3E91B73309D24', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 13:47:10', 0, '2026-02-14 13:47:10'),
(8539, 'A52A2D144758C739A5E7572B6BB39AC3', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:48:08', 0, '2026-02-14 13:48:09'),
(8540, 'A57F6F0B3B29772676DD899620AD809B', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:48:31', 0, '2026-02-14 13:48:32'),
(8541, 'A5E5AD3387FAFCFA42EA5F0FDBAE3D2F', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:48:39', 0, '2026-02-14 13:48:39'),
(8542, 'AC0B13C6A5E5544ED68487EAADDC0CA4', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'image', '2026-02-14 13:48:52', 0, '2026-02-14 13:48:52'),
(8543, 'AC184B94F77A8B570391E9F50D448D13', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:49:07', 0, '2026-02-14 13:49:08'),
(8544, 'A5EBD10D65AD2C238B20CFA1F46BAAC8', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 13:49:08', 0, '2026-02-14 13:49:10'),
(8545, 'AC7CD124EC39CD77C6443EFDCC21A897', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'image', '2026-02-14 13:49:21', 0, '2026-02-14 13:49:21'),
(8546, 'ACBC6CDD29EDE489ED63D8B2355CA376', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 13:49:32', 0, '2026-02-14 13:49:33'),
(8547, 'AC90407596739A4839C08D32E23E5BA2', 'JTVPLAY', '251904210772212', '[Mídia sem texto]', 'audio', '2026-02-14 13:51:31', 0, '2026-02-14 13:51:32'),
(8548, 'AC6D7FD0E30C8135922AC641411977BA', 'JTVPLAY', '243206868492520', 'Essa benca nao ta mais abrindo tbm', 'text', '2026-02-14 14:00:25', 0, '2026-02-14 14:00:26'),
(8549, 'AC0DDF2FBD812C1DD3B2C821D59FD08A', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'image', '2026-02-14 14:02:27', 0, '2026-02-14 14:02:28'),
(8550, 'ACB8394A7A532CBB8CA13DCFF1D62CE6', 'JTVPLAY', '243206868492520', 'Vou tentar nesse ai agora', 'text', '2026-02-14 14:02:34', 0, '2026-02-14 14:02:34'),
(8551, 'A5594868ED6ACDA9E55E1F26905F7910', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 14:02:36', 0, '2026-02-14 14:02:36'),
(8552, 'A56693FB2B5CF0418443FF38F85CACEE', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 14:02:44', 0, '2026-02-14 14:02:44'),
(8553, 'A55845016C02864C53787BBF59C92E55', 'JTVPLAY', '243206868492520', 'Último app', 'text', '2026-02-14 14:03:00', 0, '2026-02-14 14:03:00'),
(8554, 'A5F340DB53B4F37435C9CB33DFF24E0F', 'JTVPLAY', '243206868492520', 'Da l0ja', 'text', '2026-02-14 14:03:02', 0, '2026-02-14 14:03:03'),
(8555, 'A52DE297D13612D142B099480E2F80B9', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'image', '2026-02-14 14:03:09', 0, '2026-02-14 14:03:09'),
(8556, 'A51C1821C91B1085D2AF1C2DC268F237', 'JTVPLAY', '243206868492520', 'Void Play usuario e senha', 'text', '2026-02-14 14:03:16', 0, '2026-02-14 14:03:16'),
(8557, 'A59715F2268F0103B905035A725BA11B', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 14:03:25', 0, '2026-02-14 14:03:25'),
(8558, 'ACEBDF936FA3043A5DE8BC5166E06463', 'JTVPLAY', '243206868492520', 'Achei esse agora mano', 'text', '2026-02-14 14:05:08', 0, '2026-02-14 14:05:08'),
(8559, 'ACA1E17548873DF26B6E8B6A8B2DEFEA', 'JTVPLAY', '243206868492520', 'Vou tentar fazer o download', 'text', '2026-02-14 14:05:16', 0, '2026-02-14 14:05:16'),
(8560, 'ACA0CFAE146FC2B0992D1F851F0C805A', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'image', '2026-02-14 14:09:34', 0, '2026-02-14 14:09:35'),
(8561, 'A53E433C733D8BA71D46441BF7029D60', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'audio', '2026-02-14 14:10:50', 0, '2026-02-14 14:10:51'),
(8562, 'A51922FB3335BB62227B322DB90F3780', 'JTVPLAY', '180749806342387', '/pago 4791063914', 'comando_ignorado', '2026-02-14 14:12:55', 1, '2026-02-14 14:12:55'),
(8563, 'A5C3791D468C3F55F756C8D8AB4F4725', 'JTVPLAY', '180749806342387', '/ajuda', 'comando_ignorado', '2026-02-14 14:13:05', 1, '2026-02-14 14:13:06'),
(8564, 'AC13AE969A1E1A39AD9D7284674B5B65', 'JTVPLAY', '74582207811789', 'Vou olhar e te falo Carol', 'text', '2026-02-14 14:18:12', 0, '2026-02-14 14:18:13'),
(8565, 'AC08ADB1A19462F6AA0227C5632A885B', 'JTVPLAY', '74582207811789', 'Tô vendo aqui o que me mandou', 'text', '2026-02-14 14:18:30', 0, '2026-02-14 14:18:31'),
(8566, 'ACCE56922056769F72C726A709AF4A36', 'JTVPLAY', '243206868492520', 'Ta rodando aqui mano', 'text', '2026-02-14 14:18:49', 0, '2026-02-14 14:18:50'),
(8567, 'A58BE10DCA785ED85656386375388189', 'JTVPLAY', '243206868492520', '[Mídia sem texto]', 'unknown', '2026-02-14 14:21:54', 0, '2026-02-14 14:21:54'),
(8568, 'A591C201ACD34F61CB6C7983F6EF0A87', 'JTVPLAY', '180749806342387', '/ajuda', 'comando_ignorado', '2026-02-14 14:34:47', 1, '2026-02-14 14:34:48'),
(8569, 'A5490E55D77896025B51C1EDD9AC9164', 'JTVPLAY', '180749806342387', '/ajuda', 'comando_ignorado', '2026-02-14 14:46:59', 1, '2026-02-14 14:46:59'),
(8570, 'AC25F5980BD5FCA370F6853538CF4294', 'JTVPLAY', '221190966767835', '[Mídia sem texto]', 'image', '2026-02-14 14:47:27', 0, '2026-02-14 14:47:27'),
(8571, 'ACB12670B7B57E4D5A7A41AD46CDFC07', 'JTVPLAY', '221190966767835', 'Feito , obrigada', 'text', '2026-02-14 14:47:33', 0, '2026-02-14 14:47:33'),
(8572, 'AC8097650EFF851B40D722DF67790C40', 'JTVPLAY', '53678601945340', 'Boa tarde!', 'text', '2026-02-14 14:58:46', 0, '2026-02-14 14:58:47'),
(8573, 'ACE5967DD1767304936B002E20029DC2', 'JTVPLAY', '53678601945340', 'Meu nome e iago', 'text', '2026-02-14 14:58:51', 0, '2026-02-14 14:58:51'),
(8574, 'ACE7118A7FA36E1BD4C3D39C041C7734', 'JTVPLAY', '53678601945340', 'Amigo meu me passou seu contato', 'text', '2026-02-14 14:58:59', 0, '2026-02-14 14:58:59'),
(8575, 'AC77A7209DD02F9CF3EB133C2FFFA132', 'JTVPLAY', '53678601945340', 'Queira saber mais sobre o app para tv com canais filmes e séries liberado', 'text', '2026-02-14 14:59:32', 0, '2026-02-14 14:59:32'),
(8576, 'AC8608CDA0D326C1F9F01E51A727BA22', 'JTVPLAY', '53678601945340', 'Para tv LG', 'text', '2026-02-14 14:59:40', 0, '2026-02-14 14:59:40'),
(8577, 'A582F23F9861233ECEEBAC07D3AEB551', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 15:01:00', 0, '2026-02-14 15:01:01'),
(8578, 'A5311F1B277675219330846CC5A12819', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 15:01:10', 0, '2026-02-14 15:01:10'),
(8579, 'A547D4357D364C53C1EFC49CE30F9DD4', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'unknown', '2026-02-14 15:01:11', 0, '2026-02-14 15:01:11'),
(8580, '3EB0BA4501E6ED60ABF843', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 15:12:29', 1, '2026-02-14 15:12:30'),
(8581, '3EB076CB918897852E74EE', 'JTVPLAY', '554791592447', '/status', 'comando_admin', '2026-02-14 15:12:47', 1, '2026-02-14 15:12:48'),
(8582, '3EB0DAFB54A81ED5AF3FAB', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 15:12:52', 1, '2026-02-14 15:12:53'),
(8583, '3EB040C31AB9548FE29AA6', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 15:12:58', 1, '2026-02-14 15:12:58'),
(8584, '3EB0FD44C616B1644C2B0B', 'JTVPLAY', '554791592447', 'maisa', 'cadastro_interativo', '2026-02-14 15:13:06', 1, '2026-02-14 15:13:08'),
(8585, '3EB0181C3C98F7DDDD305D', 'JTVPLAY', '554791592447', '4784173345', 'cadastro_interativo', '2026-02-14 15:13:34', 1, '2026-02-14 15:13:35'),
(8586, '3EB095D2D0702C6BA971BF', 'JTVPLAY', '554791592447', '100', 'cadastro_interativo', '2026-02-14 15:13:43', 1, '2026-02-14 15:13:44'),
(8587, '3EB0B34DE74406E2E2A5F6', 'JTVPLAY', '554791592447', '2', 'cadastro_interativo', '2026-02-14 15:13:48', 1, '2026-02-14 15:13:49'),
(8588, '3EB04CAF71304A9FEF6991', 'JTVPLAY', '554791592447', '14/05', 'cadastro_interativo', '2026-02-14 15:14:04', 1, '2026-02-14 15:14:05'),
(8589, '3EB0B8B634D87AC0368F00', 'JTVPLAY', '554791592447', '/reenviar 4784173345', 'comando_admin', '2026-02-14 15:16:19', 1, '2026-02-14 15:16:20'),
(8590, '3EB02780D185BDC3B776A0', 'JTVPLAY', '554791592447', '/atualizar 4784173345 47984173345', 'comando_admin', '2026-02-14 15:18:21', 1, '2026-02-14 15:18:22'),
(8591, 'A58C3FA3B97FC4A7A3E80BEFAB76AED6', 'JTVPLAY', '53678601945340', '?', 'text', '2026-02-14 15:20:54', 0, '2026-02-14 15:20:54'),
(8592, 'AC756E6554569C3FFFBE4C8018B5D80B', 'JTVPLAY', '8383826497580', '/vencimento', 'comando_cliente', '2026-02-14 15:21:01', 1, '2026-02-14 15:21:01'),
(8593, 'ACEDCF0100A56EAD4F2A9A83EDE1D886', 'JTVPLAY', '53678601945340', 'Tô chegando em casa Jajá  baixo para testar', 'text', '2026-02-14 15:28:58', 0, '2026-02-14 15:28:58'),
(8594, 'AC4EAFAE3054D02AB3227CF2402D8ACB', 'JTVPLAY', '53678601945340', 'Não lembro de vcs', 'text', '2026-02-14 15:29:03', 0, '2026-02-14 15:29:03'),
(8595, 'ACC500E858AF2551CF21CCC79830413D', 'JTVPLAY', '53678601945340', 'Mais já testei vários apps', 'text', '2026-02-14 15:29:16', 0, '2026-02-14 15:29:16'),
(8596, 'A5ECAD83C0E8E574EE8B119FEA31BB2D', 'JTVPLAY', '180749806342387', 'Os trabalhos nao param...🫣🚀', 'video', '2026-02-14 15:44:17', 0, '2026-02-14 15:44:18'),
(8597, 'ACA6CCD621043534CB5DEE877EF6B0F2', 'JTVPLAY', '53678601945340', 'Baixar esse?', 'text', '2026-02-14 15:57:03', 0, '2026-02-14 15:57:03'),
(8598, 'AC3C6E8DE63BDCDE86B153F535B854FB', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-14 16:01:46', 0, '2026-02-14 16:01:46'),
(8599, 'A570588AFAC1426E603627B8ACCD479B', 'JTVPLAY', '53678601945340', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-14 16:01:47', 0, '2026-02-14 16:01:47'),
(8600, 'AC382E1C399BD2B387EE914A35F33390', 'JTVPLAY', '53678601945340', 'E esse?', 'text', '2026-02-14 16:01:53', 0, '2026-02-14 16:01:53'),
(8601, 'A5CEF155F9E379015FD51F03258FCB9F', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 16:14:33', 0, '2026-02-14 16:14:33'),
(8602, 'AC2C87B0D2AD06E4C4C1660F121F1649', 'JTVPLAY', '53678601945340', 'Blz', 'text', '2026-02-14 16:14:49', 0, '2026-02-14 16:14:49'),
(8603, 'A5265FFEAAA0790F2EE0A1C5DE5C72D3', 'JTVPLAY', '8383826497580', 'Mano eu te pago 50 pila pega pra mim nao tem erro so pedir tabela de 50 2 caixa com 4 e 1 caixa de 25 se não tiver pega so de 50 mesmo não precisa receita', 'text', '2026-02-14 16:15:42', 0, '2026-02-14 16:15:43'),
(8604, 'A53501DB1B515E8F90BDF8D5194678D6', 'JTVPLAY', '252012138635473', '[Mídia sem texto]', 'audio', '2026-02-14 16:24:49', 0, '2026-02-14 16:24:49'),
(8605, 'A554259AAACC0A1D83151B669CF1E979', 'JTVPLAY', '252012138635473', '[Mídia sem texto]', 'audio', '2026-02-14 16:24:55', 0, '2026-02-14 16:24:55'),
(8606, 'A508223AB6063FFFB59DB7D6F5767C86', 'JTVPLAY', '252012138635473', '[Mídia sem texto]', 'audio', '2026-02-14 16:25:19', 0, '2026-02-14 16:25:19'),
(8607, 'A5F2B7DF2C1DFA36C1965DEECE7C8F8F', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 16:46:58', 0, '2026-02-14 16:46:58'),
(8608, 'AC292638FD10F3AE5175C1DED5198F99', 'JTVPLAY', '53678601945340', 'Blz', 'text', '2026-02-14 16:47:37', 0, '2026-02-14 16:47:37'),
(8609, 'ACE8720DC25622BD4AEEFE1D3A787BF0', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-14 16:49:35', 0, '2026-02-14 16:49:35'),
(8610, 'A5A6CB9854D61FD5A9C579E0C2E22C96', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 16:57:14', 0, '2026-02-14 16:57:14'),
(8611, 'A5FF8D54334174D1594C5B3025320245', 'JTVPLAY', '53678601945340', 'zeus10', 'text', '2026-02-14 16:57:17', 0, '2026-02-14 16:57:17'),
(8612, 'A5476EA7FC74B56F4AF8B4E63A976AFE', 'JTVPLAY', '53678601945340', '*Usuário:* 3emc7cwe\n*Senha:* q3bnqyqr', 'text', '2026-02-14 16:58:00', 0, '2026-02-14 16:58:01'),
(8613, 'AC4D2EC0885C010675C2AFE0369785FA', 'JTVPLAY', '53678601945340', 'Blz', 'text', '2026-02-14 17:00:25', 0, '2026-02-14 17:00:26'),
(8614, 'AC22CF82D5D5A1452432CAD90FCED36B', 'JTVPLAY', '53678601945340', 'Só está saindo o son', 'text', '2026-02-14 17:05:26', 0, '2026-02-14 17:05:26'),
(8615, 'ACA9F19A722ED1D3BAB161BB8054B346', 'JTVPLAY', '53678601945340', 'A imagem não está aparecendo', 'text', '2026-02-14 17:05:29', 0, '2026-02-14 17:05:30'),
(8616, 'A59BE299B05C27F1120D8B2A531FC945', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 17:05:37', 0, '2026-02-14 17:05:38'),
(8617, 'A5B6368FBCA61AE68C65395F37D866D6', 'JTVPLAY', '53678601945340', 'Tira da tomada 30 segundos', 'text', '2026-02-14 17:05:56', 0, '2026-02-14 17:05:56'),
(8618, 'AC6BB62841229EE29B5C190DF70182E1', 'JTVPLAY', '53678601945340', 'Blz', 'text', '2026-02-14 17:06:01', 0, '2026-02-14 17:06:01'),
(8619, '3EB0D69188FA7EB3FDE076', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:22:23', 1, '2026-02-14 17:22:24'),
(8620, '3EB0D69188FA7EB3FDE076', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:22:23', 1, '2026-02-14 17:22:25'),
(8621, 'ACB1518C9891FF3AE4769313A6B1DACF', 'JTVPLAY', '70034340749432', 'Qto ?', 'text', '2026-02-14 17:32:26', 0, '2026-02-14 17:32:26'),
(8622, 'A5ACAD285306770884532AB13FFDA292', 'JTVPLAY', '70034340749432', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-14 17:32:28', 0, '2026-02-14 17:32:28'),
(8623, 'A5D53CCBFEFCE6F00FF365245867A23F', 'JTVPLAY', '70034340749432', 'Oii', 'text', '2026-02-14 17:35:06', 0, '2026-02-14 17:35:07'),
(8624, 'A50AEE5F6727249B0F39680E1757F4B9', 'JTVPLAY', '70034340749432', '1 ampola R$550\n2 ampolas $850\n3 ampolas $1200\n4 ampolas $1500', 'text', '2026-02-14 17:35:08', 0, '2026-02-14 17:35:08'),
(8625, '3EB0AC485B5132BC67462A', 'JTVPLAY', '554791592447', '/pago', 'comando_admin', '2026-02-14 17:40:39', 1, '2026-02-14 17:40:40'),
(8626, '3EB0AC485B5132BC67462A', 'JTVPLAY', '554791592447', '/pago', 'comando_admin', '2026-02-14 17:40:39', 1, '2026-02-14 17:40:42'),
(8627, '3EB0F57EE043A0D9489594', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:40:48', 1, '2026-02-14 17:40:49'),
(8628, '3EB0F57EE043A0D9489594', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:40:48', 1, '2026-02-14 17:40:51'),
(8629, '3EB048BFE51AF1AAB29E2E', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 17:41:34', 1, '2026-02-14 17:41:34'),
(8630, '3EB048BFE51AF1AAB29E2E', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 17:41:34', 1, '2026-02-14 17:41:35'),
(8631, '3EB0A0322CF0FC4F404278', 'JTVPLAY', '554791592447', '5591203777', 'cadastro_interativo', '2026-02-14 17:42:11', 1, '2026-02-14 17:42:12'),
(8632, '3EB0C4FAA3621DC150C7B8', 'JTVPLAY', '554791592447', '554791203777', 'cadastro_interativo', '2026-02-14 17:42:26', 1, '2026-02-14 17:42:27'),
(8633, '3EB01532AD1B977B6A7DA4', 'JTVPLAY', '554791592447', '4791203777', 'cadastro_interativo', '2026-02-14 17:42:36', 1, '2026-02-14 17:42:36'),
(8634, '3EB004E31622CFEC231FC4', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:42:51', 1, '2026-02-14 17:42:52'),
(8635, '3EB004E31622CFEC231FC4', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:42:51', 1, '2026-02-14 17:42:52'),
(8636, '3EB04FC05BC823C23FE3FE', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 17:42:57', 1, '2026-02-14 17:42:57'),
(8637, '3EB04FC05BC823C23FE3FE', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 17:42:57', 1, '2026-02-14 17:42:58'),
(8638, '3EB09056F0B4F6114CEBC9', 'JTVPLAY', '554791592447', 'lali', 'cadastro_interativo', '2026-02-14 17:43:03', 1, '2026-02-14 17:43:03'),
(8639, '3EB0797B73C974B9A50D13', 'JTVPLAY', '554791592447', '4791203777', 'cadastro_interativo', '2026-02-14 17:43:16', 1, '2026-02-14 17:43:17');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(8640, 'AC92421BA5BCD5295D26EF676C7BC2FA', 'JTVPLAY', '53678601945340', 'O aplicativo fica  pedindo  para aguardar para liberar mais memórias', 'text', '2026-02-14 17:48:29', 0, '2026-02-14 17:48:29'),
(8641, 'AC17A3630C809080C26698DF7B992E65', 'JTVPLAY', '53678601945340', 'E normal?', 'text', '2026-02-14 17:48:32', 0, '2026-02-14 17:48:32'),
(8642, 'ACE7DA251B65E05652C5C43BFE555500', 'JTVPLAY', '53678601945340', 'Aí reinicia novamente', 'text', '2026-02-14 17:48:42', 0, '2026-02-14 17:48:42'),
(8643, 'AC97BD39B0ABF0B624AECDBC011C3067', 'JTVPLAY', '53678601945340', 'Aconteceu 2 vezes', 'text', '2026-02-14 17:49:09', 0, '2026-02-14 17:49:10'),
(8644, 'A5B15B757C668149D9BCE0EE672797F3', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 17:49:13', 0, '2026-02-14 17:49:13'),
(8645, 'AC2D9BEF909DA044739EE7B300F35996', 'JTVPLAY', '53678601945340', 'Blz', 'text', '2026-02-14 17:49:32', 0, '2026-02-14 17:49:32'),
(8646, '3AD924A08B2496750D18', 'JTVPLAY', '209165460963368', 'Boa bonite! Nao estou mais conseguindo assistir por esse que me la fou', 'text', '2026-02-14 17:49:43', 0, '2026-02-14 17:49:43'),
(8647, 'A503DF6F90B0C978CF583526B457B092', 'JTVPLAY', '209165460963368', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-14 17:49:43', 0, '2026-02-14 17:49:44'),
(8648, '3A240E92F71234AFE282', 'JTVPLAY', '209165460963368', 'Pode me ajudar, por favor!', 'text', '2026-02-14 17:50:28', 0, '2026-02-14 17:50:29'),
(8649, 'AC7B08DC7923266D8F504D378DF7565E', 'JTVPLAY', '162753658507397', 'Oie', 'text', '2026-02-14 17:52:38', 0, '2026-02-14 17:52:39'),
(8650, 'A5B70DCF1E39E3D8003A0468C76E440C', 'JTVPLAY', '162753658507397', '⚠️ *Olá, estamos fora do horário de atendimento.*\nNosso horário é de:\n*Segunda a Seguda* de *09:00h* as *20:00h*\nAos *Sabados e Domingo* Atendimento *Moderado*\n\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\n\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\n\n*_Se preferir pode continuar com o atendimento automático_*', 'text', '2026-02-14 17:52:41', 0, '2026-02-14 17:52:41'),
(8651, 'ACC50A26C01D16255E2B1A2E41F9240C', 'JTVPLAY', '162753658507397', 'Tudo bem?', 'text', '2026-02-14 17:52:57', 0, '2026-02-14 17:52:57'),
(8652, '3EB0786C56202AE983B789', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:53:59', 1, '2026-02-14 17:54:00'),
(8653, '3EB0786C56202AE983B789', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 17:53:59', 1, '2026-02-14 17:54:01'),
(8654, '3EB037A72EC2C9D1A858E4', 'JTVPLAY', '554791592447', '/cadastrp', 'comando_admin', '2026-02-14 17:54:10', 1, '2026-02-14 17:54:11'),
(8655, '3EB037A72EC2C9D1A858E4', 'JTVPLAY', '554791592447', '/cadastrp', 'comando_admin', '2026-02-14 17:54:10', 1, '2026-02-14 17:54:12'),
(8656, '3EB09DA5563DB5FD91F5A5', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 17:54:13', 1, '2026-02-14 17:54:14'),
(8657, '3EB09DA5563DB5FD91F5A5', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 17:54:13', 1, '2026-02-14 17:54:15'),
(8658, '3EB0338ED55939FC51FD60', 'JTVPLAY', '554791592447', 'alaide lali', 'cadastro_interativo', '2026-02-14 17:54:19', 1, '2026-02-14 17:54:20'),
(8659, '3EB0E9B321E7501DD21E6D', 'JTVPLAY', '554791592447', '4791203777', 'cadastro_interativo', '2026-02-14 17:54:44', 1, '2026-02-14 17:54:45'),
(8660, '3EB09395980428276D72D8', 'JTVPLAY', '554791592447', '47991203777', 'cadastro_interativo', '2026-02-14 17:55:09', 1, '2026-02-14 17:55:10'),
(8661, 'ACFFE03142862E552C24B0A6210B52DD', 'JTVPLAY', '162753658507397', 'Meu marido esta perguntando  se vc tem outro app para nós instalar na TV\nNo momento estamos  com o VOID... \nEle esta pedindo se tem um um pouco melhor', 'text', '2026-02-14 17:55:17', 0, '2026-02-14 17:55:17'),
(8662, '3EB087878A9D42E601512D', 'JTVPLAY', '554791592447', '100', 'cadastro_interativo', '2026-02-14 17:55:18', 1, '2026-02-14 17:55:19'),
(8663, '3EB0D829BAC3EE026D6716', 'JTVPLAY', '554791592447', '1', 'cadastro_interativo', '2026-02-14 17:55:27', 1, '2026-02-14 17:55:28'),
(8664, '3EB0A6FDBD107B7066E60C', 'JTVPLAY', '554791592447', '15/05', 'cadastro_interativo', '2026-02-14 17:55:34', 1, '2026-02-14 17:55:35'),
(8665, 'ACBDACF46F4DDC204E0C0EE260717507', 'JTVPLAY', '162753658507397', 'So para saber... se a caso der. Nos poderia estar tentando outro para dar uma mudada', 'text', '2026-02-14 17:55:42', 0, '2026-02-14 17:55:42'),
(8666, 'ACFBB8AC71B0F8522E4E7D48827BCD2E', 'JTVPLAY', '53678601945340', 'Apaguei alguns aqui porém eu já tinha formatado a tv', 'text', '2026-02-14 17:57:58', 0, '2026-02-14 17:57:58'),
(8667, 'ACB1613D8B9370440CE351307D5EF596', 'JTVPLAY', '53678601945340', 'Sabe me informa aonde eu vejo o espaço que ainda tem nela?', 'text', '2026-02-14 17:58:10', 0, '2026-02-14 17:58:11'),
(8668, 'AC21929AA96999A3021EE60ADDA4CACB', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-14 17:58:55', 0, '2026-02-14 17:58:55'),
(8669, 'A5F79848D4B41CF9E266D8E61F9AF4EA', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 18:01:38', 0, '2026-02-14 18:01:39'),
(8670, 'A564D36C460F7BD74BFBA14BAD1238C0', 'JTVPLAY', '53678601945340', 'Bob player', 'text', '2026-02-14 18:01:39', 0, '2026-02-14 18:01:40'),
(8671, 'AC85AB56D588974F99D5CD87BAB7B5FF', 'JTVPLAY', '53678601945340', 'Vou deixa esse por enquanto', 'text', '2026-02-14 18:01:56', 0, '2026-02-14 18:01:56'),
(8672, 'ACAEF579F58DAEE99CC17125163F5CB3', 'JTVPLAY', '53678601945340', 'Achei bom esse', 'text', '2026-02-14 18:01:59', 0, '2026-02-14 18:01:59'),
(8673, 'AC21DC23670DA5F4BB599DE7B5E09A5F', 'JTVPLAY', '53678601945340', 'Não travou nada', 'text', '2026-02-14 18:02:07', 0, '2026-02-14 18:02:08'),
(8674, 'A50FE4F013B01F7B3F9FEC91472985E0', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 18:02:20', 0, '2026-02-14 18:02:20'),
(8675, 'AC5410A0A65F6888AB6F29F0A6AF59E4', 'JTVPLAY', '53678601945340', 'Sim vamos ver como a tv vai reagir aqui qual quer coisa nois tenta outro app', 'text', '2026-02-14 18:02:43', 0, '2026-02-14 18:02:43'),
(8676, 'AC1A79D6A373CA5001550709368222BE', 'JTVPLAY', '53678601945340', 'Qual e o valor mensal?', 'text', '2026-02-14 18:02:59', 0, '2026-02-14 18:02:59'),
(8677, 'A51F1F3F5D62AC6CA56ACF4386E60A96', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 18:04:45', 0, '2026-02-14 18:04:45'),
(8678, 'A5A6F3879787841073F8D9064BB1649F', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-14 18:05:01', 0, '2026-02-14 18:05:02'),
(8679, 'AC3713EAF2CC75807BDBC850A47C2C1A', 'JTVPLAY', '53678601945340', '35 reais então ne?', 'text', '2026-02-14 18:06:03', 0, '2026-02-14 18:06:03'),
(8680, 'AC8D437A5C4114976902CBD301EE0074', 'JTVPLAY', '53678601945340', 'Vou pega uma tela', 'text', '2026-02-14 18:06:11', 0, '2026-02-14 18:06:12'),
(8681, 'A5E686B5D7D5D5EFB20FB05D5172461C', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 18:10:08', 0, '2026-02-14 18:10:09'),
(8682, 'A5E6AAFCBDF089B09D687F7563ED90A0', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 18:10:15', 0, '2026-02-14 18:10:15'),
(8683, 'A5C87F481DEAC70081746F6E66289BB1', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'audio', '2026-02-14 18:10:25', 0, '2026-02-14 18:10:26'),
(8684, 'AC665C1160F8865076AB47C9D862103F', 'JTVPLAY', '53678601945340', 'Então o primeiro mês e 85? Depois fica parcelas de 35', 'text', '2026-02-14 18:15:20', 0, '2026-02-14 18:15:20'),
(8685, 'ACE2B82D4B57B9C9A761A56C16821312', 'JTVPLAY', '70034340749432', 'Minha filha tá tomando', 'text', '2026-02-14 18:15:55', 0, '2026-02-14 18:15:55'),
(8686, 'AC824EC8C3D2EE90336CADF40A3C55FF', 'JTVPLAY', '70034340749432', 'Vou falar pra ela', 'text', '2026-02-14 18:15:59', 0, '2026-02-14 18:15:59'),
(8687, '3EB02105032600F125312D', 'JTVPLAY', '554791592447', '/pago', 'comando_admin', '2026-02-14 18:21:39', 1, '2026-02-14 18:21:40'),
(8688, '3EB02105032600F125312D', 'JTVPLAY', '554791592447', '/pago', 'comando_admin', '2026-02-14 18:21:39', 1, '2026-02-14 18:21:41'),
(8689, '3EB0E9018A49A994DB365B', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:21:54', 1, '2026-02-14 18:21:54'),
(8690, '3EB0E9018A49A994DB365B', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:21:54', 1, '2026-02-14 18:21:55'),
(8691, '3EB09606F96ABCBF059ADC', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:22:07', 1, '2026-02-14 18:22:08'),
(8692, '3EB09606F96ABCBF059ADC', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:22:07', 1, '2026-02-14 18:22:09'),
(8693, '3A841C1A7FDDC75F2B50', 'JTVPLAY', '209165460963368', 'Esse compt que me mandou nao esta entrando.', 'text', '2026-02-14 18:22:46', 0, '2026-02-14 18:22:46'),
(8694, 'A5A51271CED512538F47A0AEA6A9FC9C', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'audio', '2026-02-14 18:29:09', 0, '2026-02-14 18:29:09'),
(8695, 'ACD3DD9A96312D6368472BB5E112AC15', 'JTVPLAY', '53678601945340', 'Amigo meu me passou que ele paga 35 mensal pra vc uma tela', 'text', '2026-02-14 18:34:30', 0, '2026-02-14 18:34:30'),
(8696, 'AC55E5CB13F59B03AFF3B4C2B7532ED6', 'JTVPLAY', '53678601945340', 'Então se ele pedir pra vc mais uma tela consegue fazer 35 para os dois ?', 'text', '2026-02-14 18:35:11', 0, '2026-02-14 18:35:11'),
(8697, '3EB01C9E4BFAE15885B68C', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:35:13', 1, '2026-02-14 18:35:13'),
(8698, '3EB01C9E4BFAE15885B68C', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:35:13', 1, '2026-02-14 18:35:15'),
(8699, '3EB0AF7977E8A6DF5AA395', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 18:35:27', 1, '2026-02-14 18:35:28'),
(8700, '3EB0AF7977E8A6DF5AA395', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 18:35:27', 1, '2026-02-14 18:35:28'),
(8701, 'ACD7AE1E06BED3491BFF399A4362801B', 'JTVPLAY', '53678601945340', 'Sem pegar esse valor no primeiro mês a mais aí que vc tá falando', 'text', '2026-02-14 18:35:41', 0, '2026-02-14 18:35:41'),
(8702, '3AC8D8336DB449CF7C48', 'JTVPLAY', '209165460963368', 'Esse', 'text', '2026-02-14 18:41:21', 0, '2026-02-14 18:41:21'),
(8703, '3A8237D8F19BFA0FBC6B', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'image', '2026-02-14 18:41:21', 0, '2026-02-14 18:41:21'),
(8704, '3AC0B3E94526E53A361E', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'image', '2026-02-14 18:41:43', 0, '2026-02-14 18:41:43'),
(8705, 'AC3F78C91524B133A6F794DFD5677758', 'JTVPLAY', '53678601945340', 'Haa blz', 'text', '2026-02-14 18:42:37', 0, '2026-02-14 18:42:38'),
(8706, 'ACE9BD4476743339B9811D01CE14514F', 'JTVPLAY', '53678601945340', 'Entendi', 'text', '2026-02-14 18:42:42', 0, '2026-02-14 18:42:42'),
(8707, '3A2C8921C4627655BC03', 'JTVPLAY', '209165460963368', 'Primeira vez entrou, ai ontem estava assistindo normal. Sai e quando fui entrar de novo nao entrava mais.', 'text', '2026-02-14 18:42:57', 0, '2026-02-14 18:42:57'),
(8708, '3EB04E52C09D473F538B25', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:44:07', 1, '2026-02-14 18:44:08'),
(8709, '3EB0E7226562EC1FCC6FB0', 'JTVPLAY', '554791592447', '/corrigir', 'comando_admin', '2026-02-14 18:44:20', 1, '2026-02-14 18:44:21'),
(8710, '3EB0CB694B311FCD303309', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 18:44:31', 1, '2026-02-14 18:44:32'),
(8711, '3A46168B2EF254BDD1CA', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'video', '2026-02-14 18:45:48', 0, '2026-02-14 18:45:49'),
(8712, '3A553281C61F45A2096F', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'image', '2026-02-14 18:45:52', 0, '2026-02-14 18:45:52'),
(8713, '3AAC1309BA97B128CB75', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'audio', '2026-02-14 18:46:06', 0, '2026-02-14 18:46:07'),
(8714, '3A73A96437EE9F1CF9C3', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'image', '2026-02-14 18:46:12', 0, '2026-02-14 18:46:12'),
(8715, 'AC832A6D3A47F305BD37C4CFE915A78E', 'JTVPLAY', '53678601945340', 'Caso eu queira duas telas qual valor  seria?', 'text', '2026-02-14 18:47:00', 0, '2026-02-14 18:47:01'),
(8716, 'AC4E607E10136038E234D4B3A7D63AB9', 'JTVPLAY', '53678601945340', 'Entendi', 'text', '2026-02-14 18:55:59', 0, '2026-02-14 18:55:59'),
(8717, 'AC77E8069E56434EF6942DB465EE16B2', 'JTVPLAY', '53678601945340', 'Blz entao', 'text', '2026-02-14 18:56:01', 0, '2026-02-14 18:56:02'),
(8718, 'AC0B280EBCCF04B429C34A42F6005A55', 'JTVPLAY', '53678601945340', 'Vou ficar com uma tela ms', 'text', '2026-02-14 18:56:12', 0, '2026-02-14 18:56:12'),
(8719, '3A88BD4C14277082A01E', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'image', '2026-02-14 19:02:45', 0, '2026-02-14 19:02:46'),
(8720, '3ADBA56F772AB3D0ADF2', 'JTVPLAY', '209165460963368', 'Agora deu isso', 'text', '2026-02-14 19:02:58', 0, '2026-02-14 19:03:00'),
(8721, '3A5AD968B79F9AE1019B', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'audio', '2026-02-14 19:03:51', 0, '2026-02-14 19:03:52'),
(8722, 'A5DC3DF286B68E595C088A44A46EFA0D', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:04:22', 1, '2026-02-14 19:04:23'),
(8723, '3ACFF70F0FC9D8AEBF4C', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'image', '2026-02-14 19:05:41', 0, '2026-02-14 19:05:42'),
(8724, '3AB559BBFF28ECB8AE1B', 'JTVPLAY', '209165460963368', 'Assim?', 'text', '2026-02-14 19:05:46', 0, '2026-02-14 19:05:47'),
(8725, '3A60F1965C8363E0AF34', 'JTVPLAY', '209165460963368', 'Conectar ?', 'text', '2026-02-14 19:06:07', 0, '2026-02-14 19:06:07'),
(8726, '3EB0F2099A42A184CC199E', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:06:30', 1, '2026-02-14 19:06:31'),
(8727, '3EB024AD497E778A1FC2CD', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:09:56', 1, '2026-02-14 19:09:57'),
(8728, '3EB0E2543962A58ED46F6A', 'JTVPLAY', '554791592447', '/pendente', 'comando_admin', '2026-02-14 19:10:05', 1, '2026-02-14 19:10:06'),
(8729, '3EB086F2962ADE9AE295C6', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:10:11', 1, '2026-02-14 19:10:12'),
(8730, '3EB055D7EC449710032360', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:12:06', 1, '2026-02-14 19:12:07'),
(8731, '3EB07EDB5CC0F61D9EBD36', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:12:35', 1, '2026-02-14 19:12:36'),
(8732, 'ACA5713D82C0860F284A8DAD4C4726C6', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-14 19:13:00', 0, '2026-02-14 19:13:00'),
(8733, 'AC0159969AC8F8875C9A786C403D7A03', 'JTVPLAY', '53678601945340', 'Obg', 'text', '2026-02-14 19:13:20', 0, '2026-02-14 19:13:20'),
(8734, 'A5A172170A44023A6AD7C6D3A01FEE65', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-14 19:14:50', 1, '2026-02-14 19:14:51'),
(8735, '3EB0ECFBF30D135D618A44', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:17:21', 1, '2026-02-14 19:17:22'),
(8736, 'ACE4EF1A0175BAC5025A839DF31D91ED', 'JTVPLAY', '30176524111924', 'Boa noite', 'text', '2026-02-14 19:20:19', 0, '2026-02-14 19:20:20'),
(8737, 'AC7D6C17573A1075717EDAD92FB92FF9', 'JTVPLAY', '30176524111924', 'Quero ter acesso ao IPTV', 'text', '2026-02-14 19:20:49', 0, '2026-02-14 19:20:50'),
(8738, '3A4C1ED6019C166A3E38', 'JTVPLAY', '5511984738910', 'Iae Jhonny boa noite mano', 'text', '2026-02-14 19:21:33', 0, '2026-02-14 19:21:34'),
(8739, '3AD9130069025B3C9B92', 'JTVPLAY', '5511984738910', 'Deu uma piscada na luz aqui em casa e tá aparecendo essa msg', 'text', '2026-02-14 19:21:57', 0, '2026-02-14 19:21:57'),
(8740, '3EB018F45EE6D7DEE7937A', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-14 19:22:00', 1, '2026-02-14 19:22:01'),
(8741, '3A3812805308F410A461', 'JTVPLAY', '5511984738910', '[Mídia sem texto]', 'image', '2026-02-14 19:22:07', 0, '2026-02-14 19:22:08'),
(8742, 'ACDDC4C39E634FB689871272136C5B85', 'JTVPLAY', '166391445487662', 'Boa noite. Aqui diz que na Disney irá passar a Nascar as 19.', 'text', '2026-02-14 19:22:14', 0, '2026-02-14 19:22:15'),
(8743, '3AD84C6003C845B15581', 'JTVPLAY', '5511984738910', 'Já reiniciei o modem e continua assim', 'text', '2026-02-14 19:22:22', 0, '2026-02-14 19:22:22'),
(8744, '3AAB79357892BECFFE92', 'JTVPLAY', '14074082623', 'Infelizmente vou ter que procurar outra pessoa', 'text', '2026-02-14 19:27:08', 0, '2026-02-14 19:27:08'),
(8745, '3A827F95435A643FEC1A', 'JTVPLAY', '5511984738910', 'Blz', 'text', '2026-02-14 19:28:31', 0, '2026-02-14 19:28:32'),
(8746, 'ACB6526E4C0AEF647DEE71F9510F5C7E', 'JTVPLAY', '30176524111924', 'Conseguir com minha cunhada', 'text', '2026-02-14 19:29:07', 0, '2026-02-14 19:29:07'),
(8747, 'AC641C14955BEA8A31A7DBB8E44DF6D8', 'JTVPLAY', '30176524111924', '[Mídia sem texto]', 'unknown', '2026-02-14 19:29:49', 0, '2026-02-14 19:29:49'),
(8748, 'AC70DDA3C0E8AC9B8561FAD19FB46CC2', 'JTVPLAY', '30176524111924', 'Esse número aí', 'text', '2026-02-14 19:29:57', 0, '2026-02-14 19:29:57'),
(8749, 'ACF4F60EDF3C1FDCF91A70BAF7FA097E', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'unknown', '2026-02-14 19:31:40', 0, '2026-02-14 19:31:41'),
(8750, 'AC794EBA641333F21E5DAE4F2C085D95', 'JTVPLAY', '53678601945340', 'Obg', 'text', '2026-02-14 19:31:50', 0, '2026-02-14 19:31:50'),
(8751, '3A2B6FB98D8FFA4C1051', 'JTVPLAY', '5511984738910', 'Deu senha incorreta', 'image', '2026-02-14 19:32:00', 0, '2026-02-14 19:32:00'),
(8752, '3ABC90A4FC9477DAA5AF', 'JTVPLAY', '5511984738910', 'Blz', 'text', '2026-02-14 19:32:50', 0, '2026-02-14 19:32:51'),
(8753, '3AAAAE5A665B7BE0CE73', 'JTVPLAY', '5511984738910', 'Esse era o q estava funcionando', 'image', '2026-02-14 19:33:51', 0, '2026-02-14 19:33:51'),
(8754, '3A3814888E935F692CDD', 'JTVPLAY', '5511984738910', 'Agora entrou mano', 'text', '2026-02-14 19:36:20', 0, '2026-02-14 19:36:21'),
(8755, '3A3D02890994BD746B66', 'JTVPLAY', '5511984738910', 'Posso apagar essa conta?', 'text', '2026-02-14 19:36:27', 0, '2026-02-14 19:36:28'),
(8756, 'ACC6B565D8DA307B37E0253684D323AA', 'JTVPLAY', '30176524111924', 'Eu estava usando', 'text', '2026-02-14 19:37:57', 0, '2026-02-14 19:37:57'),
(8757, 'ACEF97CF3AF110F49D0DB7131C32E408', 'JTVPLAY', '30176524111924', 'A um tempo atrás', 'text', '2026-02-14 19:38:02', 0, '2026-02-14 19:38:03'),
(8758, 'ACEC9EB1E43025BA97D6A92B99A50A65', 'JTVPLAY', '30176524111924', 'Aí quero aderir de novo', 'text', '2026-02-14 19:38:12', 0, '2026-02-14 19:38:13'),
(8759, '3A28DF883B41623F66F3', 'JTVPLAY', '5511984738910', '[Mídia sem texto]', 'audio', '2026-02-14 19:38:17', 0, '2026-02-14 19:38:17'),
(8760, 'ACDFAE108648A1905A7A9565F95E8D20', 'JTVPLAY', '30176524111924', 'Minha tv e Philco', 'text', '2026-02-14 19:38:28', 0, '2026-02-14 19:38:28'),
(8761, 'AC5A7DA2A39A056080E4DABCD3BB55B6', 'JTVPLAY', '30176524111924', 'Roku tv', 'text', '2026-02-14 19:38:34', 0, '2026-02-14 19:38:34'),
(8762, '3A2D437AE918E6C7DADC', 'JTVPLAY', '5511984738910', 'Obrigado mano', 'text', '2026-02-14 19:42:03', 0, '2026-02-14 19:42:04'),
(8763, 'AC5FC86525C26B55CC2170E2A190864F', 'JTVPLAY', '231516101730347', '[Mídia sem texto]', 'image', '2026-02-14 19:43:20', 0, '2026-02-14 19:43:20'),
(8764, 'ACB7C3EDAF57AFAF56C968D617109D50', 'JTVPLAY', '30176524111924', 'Tá', 'text', '2026-02-14 19:43:44', 0, '2026-02-14 19:43:44'),
(8765, 'AC7C5B631D43BB81EB319BD70DCE57EE', 'JTVPLAY', '30176524111924', 'Vou baixar', 'text', '2026-02-14 19:43:46', 0, '2026-02-14 19:43:47'),
(8766, 'AC355FC8A953A4CFC002A5D4C27B42D2', 'JTVPLAY', '231516101730347', '[Mídia sem texto]', 'audio', '2026-02-14 19:43:44', 0, '2026-02-14 19:43:49'),
(8767, 'ACF00EB0CBC63C6B83E4BA363C3C8294', 'JTVPLAY', '30176524111924', '[Mídia sem texto]', 'image', '2026-02-14 19:46:09', 0, '2026-02-14 19:46:10'),
(8768, 'AC6384711A0F27C8D5D4E1DAEA995DFB', 'JTVPLAY', '30176524111924', 'Esse ?', 'text', '2026-02-14 19:46:12', 0, '2026-02-14 19:46:12'),
(8769, 'AC78BA5DFF2E88C783A8E4DFEB12550D', 'JTVPLAY', '30176524111924', '[Mídia sem texto]', 'image', '2026-02-14 19:52:24', 0, '2026-02-14 19:52:24'),
(8770, 'ACF92E730D84DECE475C10D0532688CC', 'JTVPLAY', '30176524111924', 'Esses ai', 'text', '2026-02-14 19:52:49', 0, '2026-02-14 19:52:51'),
(8771, 'ACAC65C77EF89A9448B4108B5A6A21D1', 'JTVPLAY', '30176524111924', '[Mídia sem texto]', 'video', '2026-02-14 19:55:51', 0, '2026-02-14 19:55:52'),
(8772, 'AC4A2F9C143D81F7AE3688024A549F27', 'JTVPLAY', '30176524111924', 'Ta', 'text', '2026-02-14 20:02:37', 0, '2026-02-14 20:02:38'),
(8773, 'AC971125AC6EE0587328DC8187A43E17', 'JTVPLAY', '30176524111924', 'Deu certo', 'text', '2026-02-14 20:06:14', 0, '2026-02-14 20:06:15'),
(8774, 'AC42DE356F2E8D1084C6951778209CB2', 'JTVPLAY', '30176524111924', 'Vou só testar tá bom', 'text', '2026-02-14 20:06:28', 0, '2026-02-14 20:06:29'),
(8775, 'AC2CEA335EB5E8DE7D23E53FF9C88DFF', 'JTVPLAY', '30176524111924', 'Sim', 'text', '2026-02-14 20:13:45', 0, '2026-02-14 20:13:46'),
(8776, 'ACF66494206CD07B4849F99BD9E77FD2', 'JTVPLAY', '30176524111924', 'Estou testando aqui', 'text', '2026-02-14 20:13:49', 0, '2026-02-14 20:13:50'),
(8777, 'AC1AA394D372726FB025B202D3920C5C', 'JTVPLAY', '30176524111924', 'Qual o valor por mês ?', 'text', '2026-02-14 20:14:00', 0, '2026-02-14 20:14:01'),
(8778, '3A2AD13E0A687A13E90F', 'JTVPLAY', '24584929673437', 'Boa noite', 'text', '2026-02-14 20:19:40', 0, '2026-02-14 20:19:41'),
(8779, '3A0AE9C3D3C42D8AC33E', 'JTVPLAY', '24584929673437', 'Manda o pix de novo por favor', 'text', '2026-02-14 20:20:10', 0, '2026-02-14 20:20:10'),
(8780, 'AC6607346B2064FEBFA0D49A89B937D7', 'JTVPLAY', '30176524111924', 'Certo', 'text', '2026-02-14 20:21:41', 0, '2026-02-14 20:21:42'),
(8781, 'AC698601EE94C07829F4E0EE95BDA8D3', 'JTVPLAY', '30176524111924', 'Só vou terminar aqui', 'text', '2026-02-14 20:21:46', 0, '2026-02-14 20:21:46'),
(8782, 'AC86C531EAD2DC4C2BE3AC77AF144CA7', 'JTVPLAY', '30176524111924', 'E vou querer esse de 40 reais', 'text', '2026-02-14 20:21:54', 0, '2026-02-14 20:21:54'),
(8783, 'AC8B1833C1BA9A2C4E8DF12E15E69AED', 'JTVPLAY', '30176524111924', '1 tela', 'text', '2026-02-14 20:21:59', 0, '2026-02-14 20:21:59'),
(8784, 'AC36B0DC0610B7E19CA974B9EA368221', 'JTVPLAY', '30176524111924', 'Positivo', 'text', '2026-02-14 20:45:36', 0, '2026-02-14 20:45:36'),
(8785, '3AB77C915E1C46D97830', 'JTVPLAY', '24584929673437', 'Quanto é mesmo', 'text', '2026-02-14 20:48:47', 0, '2026-02-14 20:48:48'),
(8786, 'AC8A06A2C85031EB99BCA4ABBE3ECDF3', 'JTVPLAY', '217226695151773', 'Amigo', 'text', '2026-02-14 20:57:34', 0, '2026-02-14 20:57:36'),
(8787, 'AC3DF01F995FEE2DCCFFBE75F8631B4C', 'JTVPLAY', '217226695151773', 'Boa noite', 'text', '2026-02-14 20:57:37', 0, '2026-02-14 20:57:42'),
(8788, 'AC8E9A9BB89565100B1EFE34AD6264FE', 'JTVPLAY', '217226695151773', 'Estou sem sinal na TV da sala', 'text', '2026-02-14 20:57:46', 0, '2026-02-14 20:57:46'),
(8789, 'AC1FF8932EB3089579A0E3B41FBFC745', 'JTVPLAY', '217226695151773', '[Mídia sem texto]', 'image', '2026-02-14 20:58:04', 0, '2026-02-14 20:58:05'),
(8790, 'ACB986DC7302C9F67B98A2FDD945C751', 'JTVPLAY', '257904330432515', '[Mídia sem texto]', 'image', '2026-02-14 21:00:01', 0, '2026-02-14 21:00:03'),
(8791, 'ACF056640A84791CA11E5CF3142D3F92', 'JTVPLAY', '217226695151773', 'Kkk', 'text', '2026-02-14 21:03:35', 0, '2026-02-14 21:03:36'),
(8792, 'AC789A64976A74E8CF7620801CAB4212', 'JTVPLAY', '217226695151773', 'Esqueci', 'text', '2026-02-14 21:03:39', 0, '2026-02-14 21:03:39'),
(8793, 'ACE41C5981E0EA42ED31C20A154ACB07', 'JTVPLAY', '217226695151773', 'Ja pago', 'text', '2026-02-14 21:03:41', 0, '2026-02-14 21:03:41'),
(8794, 'AC34A082B4B33E9D66D4B74C7DA64A7E', 'JTVPLAY', '217226695151773', '[Mídia sem texto]', 'image', '2026-02-14 21:04:34', 0, '2026-02-14 21:04:34'),
(8795, 'AC82BB3965C65D697CA22A39917A1DE2', 'JTVPLAY', '217226695151773', '[Mídia sem texto]', 'unknown', '2026-02-14 21:06:35', 0, '2026-02-14 21:06:36'),
(8796, 'AC932C1AC671D97D6A732B43DBBE21DB', 'JTVPLAY', '217226695151773', 'Consegue liberar pra eu poder ver o jogo agora 9.30', 'text', '2026-02-14 21:16:15', 0, '2026-02-14 21:16:16'),
(8797, 'AC6992DAE21D8714DB1C15E2DCBF556D', 'JTVPLAY', '217226695151773', 'Obg', 'text', '2026-02-14 21:20:49', 0, '2026-02-14 21:20:50'),
(8798, 'AC7627290AEB6426557D6431DC439B5A', 'JTVPLAY', '217226695151773', 'Obg', 'text', '2026-02-14 21:23:58', 0, '2026-02-14 21:23:59'),
(8799, 'AC8FCBCA3B1F8F25CDC3CFEDDB8E2892', 'JTVPLAY', '217226695151773', 'Deus abençoe', 'text', '2026-02-14 21:24:01', 0, '2026-02-14 21:24:01'),
(8800, 'ACC1E9AE33CD48E1C0701CC1E3289518', 'JTVPLAY', '30176524111924', 'Positivo', 'text', '2026-02-14 22:18:40', 0, '2026-02-14 22:18:40'),
(8801, 'AC43185FBEAA09CEC532AC4FBAB1BF65', 'JTVPLAY', '30176524111924', 'Só um instante', 'text', '2026-02-14 22:18:45', 0, '2026-02-14 22:18:45'),
(8802, 'AC460D9CCE1FF1E71E256725A212C1E1', 'JTVPLAY', '30176524111924', 'Estou indo pra casa', 'text', '2026-02-14 22:18:50', 0, '2026-02-14 22:18:51'),
(8803, 'A5E1B0193C422DB807209A59A8D510AE', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-14 22:19:35', 1, '2026-02-14 22:19:36'),
(8804, 'AC9EA6DCBF5775E80E096534FBDC452B', 'JTVPLAY', '30176524111924', '[Mídia sem texto]', 'document', '2026-02-14 23:14:43', 0, '2026-02-14 23:14:44'),
(8805, 'AC82AD41C4D45B2FB119FCD73ADF95ED', 'JTVPLAY', '30176524111924', 'Te mando todo dia 15 positivo', 'text', '2026-02-14 23:20:16', 0, '2026-02-14 23:20:17'),
(8806, '3AD3ACFA52A06F898369', 'JTVPLAY', '209165460963368', 'Bonjour', 'text', '2026-02-15 08:14:58', 0, '2026-02-15 08:14:58'),
(8807, 'AC828D4AE62D6B75F9C126B850681F3A', 'JTVPLAY', '198685539487747', 'Bom dia amigão', 'text', '2026-02-15 08:26:09', 0, '2026-02-15 08:26:10'),
(8808, '4A80DA8724600DD66AF0', 'JTVPLAY', '129914707681280', '[Mídia sem texto]', 'document', '2026-02-15 08:42:31', 0, '2026-02-15 08:42:31'),
(8809, 'AC0FAC2194C6860A5AB684860099AEBB', 'JTVPLAY', '205325357551689', 'Oi', 'text', '2026-02-15 09:38:54', 0, '2026-02-15 09:38:54'),
(8810, 'AC9981962EF441E59A5A90E01DDB4735', 'JTVPLAY', '205325357551689', 'Joni', 'text', '2026-02-15 09:38:56', 0, '2026-02-15 09:38:56'),
(8811, 'ACB26B6EE404025ACA894D9F1178F426', 'JTVPLAY', '205325357551689', 'Vc vai levar a vo', 'text', '2026-02-15 10:09:16', 0, '2026-02-15 10:09:16'),
(8812, 'ACCA1DAE121DE679E0A84AB7A053630E', 'JTVPLAY', '205325357551689', 'Ou passo ai', 'text', '2026-02-15 10:09:20', 0, '2026-02-15 10:09:20'),
(8813, 'ACCB390520763D9657A4278D264749AF', 'JTVPLAY', '205325357551689', 'Pegar ela', 'text', '2026-02-15 10:09:29', 0, '2026-02-15 10:09:30'),
(8814, 'ACE2A127A643AF7319A74AD44349814F', 'JTVPLAY', '205325357551689', '[Mídia sem texto]', 'audio', '2026-02-15 10:10:20', 0, '2026-02-15 10:10:20'),
(8815, 'AC23AC9680ACBDBCE693C590016DC46C', 'JTVPLAY', '126263498919938', '[Mídia sem texto]', 'audio', '2026-02-15 10:49:06', 0, '2026-02-15 10:49:07'),
(8816, 'AC706A758E101B7DBD01A23284803F3E', 'JTVPLAY', '126263498919938', '[Mídia sem texto]', 'image', '2026-02-15 10:59:22', 0, '2026-02-15 10:59:23'),
(8817, 'AC6DE94E5B728148DA82B951CC3B2BC6', 'JTVPLAY', '164016882245846', 'Bom dia', 'text', '2026-02-15 11:17:15', 0, '2026-02-15 11:17:16'),
(8818, 'A5E58367C5261BE2F58B6CEEC035C726', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-15 11:49:19', 1, '2026-02-15 11:49:20'),
(8819, 'AC9D3E92006D9A076F1B608F5BE7A2BE', 'JTVPLAY', '164016882245846', 'Manda seu pix', 'text', '2026-02-15 11:49:25', 0, '2026-02-15 11:49:25'),
(8820, 'A545A89EC99801A79ED580EB34AF7392', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-15 12:04:21', 1, '2026-02-15 12:04:22'),
(8821, 'A5FE6AB08B30BBF560C381FEA3FE8848', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-15 12:04:42', 1, '2026-02-15 12:04:43'),
(8822, 'AC7F10DADC3E80CA41936DF518D84D98', 'JTVPLAY', '164016882245846', 'Eu não lembro o valor que valor é', 'text', '2026-02-15 12:20:05', 0, '2026-02-15 12:20:05'),
(8823, 'ACB5B7034EB753A613DF6C2B5BC9A282', 'JTVPLAY', '164016882245846', '👍', 'text', '2026-02-15 12:29:34', 0, '2026-02-15 12:29:34'),
(8824, 'AC77DC38FDE70E53572460F70A000201', 'JTVPLAY', '164016882245846', '[Mídia sem texto]', 'document', '2026-02-15 12:30:54', 0, '2026-02-15 12:30:55'),
(8825, 'AC05F26FF6CE49DB91353DEACEA0EA04', 'JTVPLAY', '164016882245846', 'Obrigado', 'text', '2026-02-15 12:45:56', 0, '2026-02-15 12:45:57'),
(8826, '3A030AF620BB3C7071C7', 'JTVPLAY', '209165460963368', 'bom Dia', 'text', '2026-02-15 13:36:50', 0, '2026-02-15 13:36:51'),
(8827, '3ADC8BF342E402C0A613', 'JTVPLAY', '209165460963368', 'Não deu', 'text', '2026-02-15 13:36:55', 0, '2026-02-15 13:36:55'),
(8828, '4A8F3DAE7BDF0A6D7DE8', 'JTVPLAY', '5515996010925', '[Mídia sem texto]', 'image', '2026-02-15 14:29:32', 0, '2026-02-15 14:29:33'),
(8829, 'AC8BFC1FB53B7FC183F5E8E360618728', 'JTVPLAY', '184043811405991', '[Mídia sem texto]', 'image', '2026-02-15 15:12:06', 0, '2026-02-15 15:12:06'),
(8830, 'A5346554E17E896AE25E806240C45529', 'JTVPLAY', '163883738206363', 'Ola boa tarde', 'text', '2026-02-15 16:42:38', 0, '2026-02-15 16:42:39'),
(8831, 'A525B2AECD34A1AF8F784C0C2635C1E3', 'JTVPLAY', '163883738206363', 'Cader as iptv?', 'text', '2026-02-15 16:43:11', 0, '2026-02-15 16:43:11'),
(8832, 'A5584E1E012BEE609EB0237CA1DD03B9', 'JTVPLAY', '163883738206363', 'De filmes.', 'text', '2026-02-15 16:43:44', 0, '2026-02-15 16:43:45'),
(8833, 'AC4E9FF2AF85B8BD42B029F56B897452', 'JTVPLAY', '132684525396189', 'Boa tarde porque será q esse aplicativo não pega HBOMAX', 'text', '2026-02-15 16:44:39', 0, '2026-02-15 16:44:41'),
(8834, 'AC3490C802067AF8C81CAC148D38B1FD', 'JTVPLAY', '1684281544836', '[Mídia sem texto]', 'image', '2026-02-15 16:51:26', 0, '2026-02-15 16:51:27'),
(8835, 'ACAF045436EB0881D536527FA63C4CC6', 'JTVPLAY', '1684281544836', 'Não ta pegando o app', 'text', '2026-02-15 16:51:37', 0, '2026-02-15 16:51:37'),
(8836, 'ACFF656EAF827FBF4C8D5AE874F2D73D', 'JTVPLAY', '176763791491157', '[Mídia sem texto]', 'document', '2026-02-15 17:46:17', 0, '2026-02-15 17:46:17'),
(8837, 'AC5690C04F4A9ABBD5E1DFFDBA875AA1', 'JTVPLAY', '176763791491157', '*Pagamento aprovado no Pix*\nALDREY, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413/0001-75 *foi confirmado!* ✅\n\nAqui estão os dados da cobrança:\n\n*Valor cobrado:* R$ 35,00\n*Data do pagamento:* 15/02/2026\n*De:* ALDREY SILVANA MATHEUS RECCHIA\n*Para:* jtvplay\n\nVocê pode *conferir o seu recibo* aqui: https://recibo.infinitepay.io/bb061083-fedf-4930-82e4-20b0dcad6054\n\nObrigado pelo pagamento! 😉', 'text', '2026-02-15 17:47:00', 0, '2026-02-15 17:47:01'),
(8838, 'AC2784D226060D12A0A6A4E95CB1B625', 'JTVPLAY', '231516101730347', '[Mídia sem texto]', 'audio', '2026-02-15 18:13:00', 0, '2026-02-15 18:13:01'),
(8839, 'AC78973CA33D0964975B8EF7427C9F91', 'JTVPLAY', '104870300373115', '[Mídia sem texto]', 'image', '2026-02-15 18:42:20', 0, '2026-02-15 18:42:20'),
(8840, '3A2CB68AC75A4AEA8C89', 'JTVPLAY', '5511950523665', 'Oi', 'text', '2026-02-15 18:43:19', 0, '2026-02-15 18:43:19'),
(8841, '3A396D31E22C2C4968BF', 'JTVPLAY', '5511950523665', 'Minha tb não está funcionando', 'text', '2026-02-15 18:43:32', 0, '2026-02-15 18:43:33'),
(8842, 'A5A7B705EABF772DA74AB2EF20EB9257', 'JTVPLAY', '122956323762205', 'Boa noite mano.\nTo tentando encontrar pelo ou menos um app na tv tcl Android, mas nao to axando', 'text', '2026-02-15 18:45:02', 0, '2026-02-15 18:45:03'),
(8843, 'A5C10AE88DB013BE48E440E646F49839', 'JTVPLAY', '122956323762205', 'Pode me ajudar', 'text', '2026-02-15 18:45:19', 0, '2026-02-15 18:45:19'),
(8844, 'ACF724B44F042499B9582B80B89EED74', 'JTVPLAY', '198685539487747', '[Mídia sem texto]', 'image', '2026-02-15 18:46:42', 0, '2026-02-15 18:46:43'),
(8845, 'AC63B1053F5AE0AABDF4E08EFB8DCED1', 'JTVPLAY', '198685539487747', '[Mídia sem texto]', 'audio', '2026-02-15 18:46:53', 0, '2026-02-15 18:46:54'),
(8846, 'A52ABC4941B622468C8BC1EB9AABD181', 'JTVPLAY', '122956323762205', 'Ta ok, vou ver aqui', 'text', '2026-02-15 19:14:05', 0, '2026-02-15 19:14:06'),
(8847, 'ACB249BA794AB992DC7925973B66DD53', 'JTVPLAY', '184043811405991', 'Se puder dar uma conferida, por favor', 'image', '2026-02-15 19:25:35', 0, '2026-02-15 19:25:35'),
(8848, 'AC844534B998951E1D1B9F20C73B7F73', 'JTVPLAY', '1684281544836', 'Voltou ja', 'text', '2026-02-15 19:28:27', 0, '2026-02-15 19:28:28'),
(8849, 'AC242B8704694A3EFBE926505B92A494', 'JTVPLAY', '184043811405991', 'Deu certo, obrigado 🙏🏽', 'text', '2026-02-15 19:40:25', 0, '2026-02-15 19:40:26'),
(8850, '3AA45D2273E376E5C1E7', 'JTVPLAY', '5511950523665', 'Boa noite', 'text', '2026-02-15 19:44:12', 0, '2026-02-15 19:44:12'),
(8851, '3AC85CB6FE2C32BA9188', 'JTVPLAY', '5511950523665', 'Poderia me ajudar?', 'text', '2026-02-15 19:45:01', 0, '2026-02-15 19:45:03'),
(8852, '3ABC0C1B4CDEB1AF2FA1', 'JTVPLAY', '5511950523665', 'Minha tv não está funcionando', 'text', '2026-02-15 19:45:09', 0, '2026-02-15 19:45:10'),
(8853, '3A3718E0C23F3413D1FF', 'JTVPLAY', '5511950523665', '[Mídia sem texto]', 'image', '2026-02-15 19:46:52', 0, '2026-02-15 19:46:53'),
(8854, 'AC04C623444B8C2F5830CE3818E30FF9', 'JTVPLAY', '111141506297958', '[Mídia sem texto]', 'document', '2026-02-15 21:04:35', 0, '2026-02-15 21:04:36'),
(8855, 'AC6DA0D8E078BD096E7F7A95F956069A', 'JTVPLAY', '111141506297958', '[Mídia sem texto]', 'unknown', '2026-02-15 23:25:28', 0, '2026-02-15 23:25:28'),
(8856, 'AC2C0768DF718994027B380235443A61', 'JTVPLAY', '209268187901974', '[Mídia sem texto]', 'document', '2026-02-15 23:37:54', 0, '2026-02-15 23:37:54'),
(8857, '4AE06574FE6DAF4301C5', 'JTVPLAY', '5515996448994', '[Mídia sem texto]', 'document', '2026-02-16 08:16:11', 0, '2026-02-16 08:16:12'),
(8858, 'AC2D5D7F649D1AFBF22D1A8DDE34AC93', 'JTVPLAY', '252012138635473', 'Acho que a dindinha tá com ranço de vc', 'text', '2026-02-16 09:10:07', 0, '2026-02-16 09:10:08'),
(8859, 'AC4D6D856DBFE4252E76F3D3EE3A6A84', 'JTVPLAY', '252012138635473', '[Mídia sem texto]', 'unknown', '2026-02-16 09:10:47', 0, '2026-02-16 09:10:48'),
(8860, '3A2A6138496DCDFA5232', 'JTVPLAY', '5515996448994', 'Bom dia mano', 'text', '2026-02-16 10:40:21', 0, '2026-02-16 10:40:21'),
(8861, '4AECB0AB7EFD9E39FC73', 'JTVPLAY', '5515996448994', '[Mídia sem texto]', 'image', '2026-02-16 10:40:43', 0, '2026-02-16 10:40:44'),
(8862, '3A6056A433F867362FA5', 'JTVPLAY', '5515996448994', 'Não tinha entrado mais', 'text', '2026-02-16 10:40:58', 0, '2026-02-16 10:40:58'),
(8863, '3AE365CA8CDF0EB5756F', 'JTVPLAY', '5515996448994', 'Mais ta assim', 'text', '2026-02-16 10:41:05', 0, '2026-02-16 10:41:05'),
(8864, '3AD028AE7442F3F38672', 'JTVPLAY', '5515996448994', 'Fecho', 'text', '2026-02-16 10:45:39', 0, '2026-02-16 10:45:40'),
(8865, '3A01CC91146DE89F6BA0', 'JTVPLAY', '5515996448994', 'To treinando , assim que chegar en casa eu do uma olhada', 'text', '2026-02-16 10:46:00', 0, '2026-02-16 10:46:01'),
(8866, '3A67EC8746169B1DC267', 'JTVPLAY', '5515996448994', 'Vlw', 'text', '2026-02-16 10:46:01', 0, '2026-02-16 10:46:02'),
(8867, 'A58550C64CFB5F3DFD65AD1C7F1ABC9D', 'JTVPLAY', '554791592447', '/ajusa', 'comando_admin', '2026-02-16 13:13:38', 1, '2026-02-16 13:13:40'),
(8868, '3AABF997B2EAFE0AA79C', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'audio', '2026-02-16 13:13:50', 0, '2026-02-16 13:13:52'),
(8869, 'A592B48EA4F89672AB97A2A0255B0A40', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 13:13:52', 1, '2026-02-16 13:13:53'),
(8870, '3AE39B15C26503C9E4E9', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'audio', '2026-02-16 13:13:56', 0, '2026-02-16 13:13:56'),
(8871, '3AFEF84CDBCC94ED4813', 'JTVPLAY', '209165460963368', '[Mídia sem texto]', 'audio', '2026-02-16 13:17:43', 0, '2026-02-16 13:17:44'),
(8872, '3EB00E4A66D024438D9C54', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-16 13:37:36', 1, '2026-02-16 13:37:37'),
(8873, '3EB0B3D356461818DCF1F8', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 13:37:50', 1, '2026-02-16 13:37:51'),
(8874, 'AC58A90B242BCF6E6C66FC5517B98894', 'JTVPLAY', '36906721108142', 'Boa tarde! Quero comunicar  que  o Eduardo  não  quer  continua com o app. não  está  usando e sou eu que pago.Vou continuar  só  com o meu. Obrigada 🤗', 'text', '2026-02-16 13:44:00', 0, '2026-02-16 13:44:02'),
(8875, '3EB04F7B34A3C245AAF5F4', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 13:54:20', 1, '2026-02-16 13:54:22'),
(8876, '3EB0D9E1110AEC5617FA41', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 14:00:28', 1, '2026-02-16 14:00:29'),
(8877, '3EB0144E43C1B17BBFEE3E', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 14:15:46', 1, '2026-02-16 14:15:47'),
(8878, 'AC73B466B7F9C7E455FD994C909E654B', 'JTVPLAY', '36906721108142', '👍', 'text', '2026-02-16 14:41:46', 0, '2026-02-16 14:41:46'),
(8879, '3EB0F48D9BF5AAD9E998F2', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 14:57:01', 1, '2026-02-16 14:57:03'),
(8880, '3EB0E80C562007518B1A55', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 14:58:47', 1, '2026-02-16 14:58:48'),
(8881, '3EB0A04B11FD5265D55D60', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 15:13:16', 1, '2026-02-16 15:13:17'),
(8882, '3EB09BFF677D226E4392F2', 'JTVPLAY', '554791592447', '/cobrar 47984173345', 'comando_admin', '2026-02-16 15:15:20', 1, '2026-02-16 15:15:21'),
(8883, 'A53CFFF009A06D62554BDC7A58596233', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-16 15:38:34', 0, '2026-02-16 15:38:34'),
(8884, '3EB0BEA9AF12103A627801', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 15:51:30', 1, '2026-02-16 15:51:31'),
(8885, '3EB04B21FB21F65D83F913', 'JTVPLAY', '554791592447', '/cobrar', 'comando_admin', '2026-02-16 15:51:39', 1, '2026-02-16 15:51:40'),
(8886, 'ACB9124BCF2C0707AF8207224B47C1AD', 'JTVPLAY', '93651879362735', 'Boa tarde.\nTemos painel ilimitado ♾️ por 100.00 reais mensal\n\n11 96576-5862', 'text', '2026-02-16 15:52:02', 0, '2026-02-16 15:52:04'),
(8887, 'AC7ADD210061235E7B7B554F1B9C2547', 'JTVPLAY', '53678601945340', 'Boa tarde', 'text', '2026-02-16 15:53:56', 0, '2026-02-16 15:53:57'),
(8888, 'AC55D94246720EA998E18615C147C03E', 'JTVPLAY', '53678601945340', 'Tudo bem?', 'text', '2026-02-16 15:53:58', 0, '2026-02-16 15:53:59'),
(8889, 'AC26F840AF09F5A7FBF600FD64EB8D15', 'JTVPLAY', '53678601945340', 'Não estou conseguindo ver filmes, o app reinicia toda vez que vou tentar ver um filme', 'text', '2026-02-16 15:54:39', 0, '2026-02-16 15:54:40'),
(8890, 'ACFA3364F1C576F52F51DD4237A91194', 'JTVPLAY', '53678601945340', 'Podemos testar aquele outro app que vc me falou?', 'text', '2026-02-16 15:54:54', 0, '2026-02-16 15:54:54'),
(8891, 'ACBC9DA873BCC18D5F6092059CEC7E0C', 'JTVPLAY', '53678601945340', 'Para ver se melhora', 'text', '2026-02-16 15:54:59', 0, '2026-02-16 15:54:59'),
(8892, 'AC6D46F4661B2460E139CCAAFAE3C8A9', 'JTVPLAY', '53678601945340', 'Este', 'text', '2026-02-16 15:56:01', 0, '2026-02-16 15:56:02'),
(8893, 'ACF22ACB217B0C795B1A4CBE2ACB3E89', 'JTVPLAY', '53678601945340', 'Se for paga outro deixa', 'text', '2026-02-16 16:29:06', 0, '2026-02-16 16:29:07'),
(8894, 'AC37D9BCD62FCF47621538A5A2089325', 'JTVPLAY', '53678601945340', 'Outro mês eu testo', 'text', '2026-02-16 16:29:15', 0, '2026-02-16 16:29:16'),
(8895, 'ACB10FE4DD562ED200B1336A0C5A1116', 'JTVPLAY', '53678601945340', 'Já gastei MT nesse', 'text', '2026-02-16 16:29:30', 0, '2026-02-16 16:29:31'),
(8896, '3EB00D56696DBB8CF88A46', 'JTVPLAY', '554791592447', '/cobrar', 'comando_admin', '2026-02-16 16:30:43', 1, '2026-02-16 16:30:44'),
(8897, '3EB0580403AF3D1442152C', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 16:30:51', 1, '2026-02-16 16:30:52'),
(8898, 'A591933753E89F9EBED53D45F9AED349', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-16 16:53:36', 1, '2026-02-16 16:53:37'),
(8899, 'ACBFA7D0FBC3E01B9A9DEAAA6D520BB4', 'JTVPLAY', '53678601945340', 'Vou fica nesse Ms esse mes', 'text', '2026-02-16 17:19:55', 0, '2026-02-16 17:19:56'),
(8900, 'AC138415DCA689EC05EB3BA6A3453A1D', 'JTVPLAY', '53678601945340', 'Esse?', 'text', '2026-02-16 17:27:20', 0, '2026-02-16 17:27:20'),
(8901, 'AC4215B3CF119117816560285C7EC123', 'JTVPLAY', '53678601945340', 'Baixa pela internet esse?', 'text', '2026-02-16 17:30:21', 0, '2026-02-16 17:30:23'),
(8902, 'AC97A0AF11111E20D00453E8DA56BF5E', 'JTVPLAY', '53678601945340', 'No app não aparece ele', 'text', '2026-02-16 17:30:28', 0, '2026-02-16 17:30:28'),
(8903, 'AC82B2391A784063040CBF1A3C98779F', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-16 17:30:42', 0, '2026-02-16 17:30:42'),
(8904, 'ACA8EB6DB3EA9B7ABC721AF242444614', 'JTVPLAY', '53678601945340', 'O irmão deixa como está mesmo, tô meio sem tempo vc não está dando atenção aqui deixa como está blz', 'text', '2026-02-16 17:35:58', 0, '2026-02-16 17:35:59'),
(8905, 'AC8BDA4FD36D095BA5228AF336DB4F54', 'JTVPLAY', '53678601945340', 'Obg', 'text', '2026-02-16 17:35:59', 0, '2026-02-16 17:36:01'),
(8906, 'A5EFDDEB6AE2822B079060A53DAFA6C4', 'JTVPLAY', '4792012997', 'pago', 'text', '2026-02-16 17:37:50', 0, '2026-02-16 17:37:51'),
(8907, 'A54BF7B833E5D81789C6ED1D12062E71', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-16 17:42:27', 1, '2026-02-16 17:42:28'),
(8908, 'A5D5E3250FFCAFC793FDABDB0139695F', 'JTVPLAY', '554791592447', '/status', 'comando_admin', '2026-02-16 17:42:39', 1, '2026-02-16 17:42:39'),
(8909, 'A509FAD8025E16475AC4E623E455E039', 'JTVPLAY', '554791592447', '/reenviar 47992012997', 'comando_admin', '2026-02-16 17:42:57', 1, '2026-02-16 17:42:58'),
(8910, 'A504F55CD2288C44BCEB60B90F3541B9', 'JTVPLAY', '554791592447', '/reenviar 4792012997', 'comando_admin', '2026-02-16 17:43:11', 1, '2026-02-16 17:43:12'),
(8911, 'A5F29C92A831417B3DD2B74851B0E7C6', 'JTVPLAY', '554791592447', '/reenviar 47992012997', 'comando_admin', '2026-02-16 17:43:37', 1, '2026-02-16 17:43:38'),
(8912, 'AC8B1B54D84C5E143F83906292F6B555', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'image', '2026-02-16 18:04:20', 0, '2026-02-16 18:04:21'),
(8913, 'AC24306BAF2C489B6851BD01A8945447', 'JTVPLAY', '148468597284964', 'Irmão', 'text', '2026-02-16 18:04:22', 0, '2026-02-16 18:04:22'),
(8914, 'ACC32300D9A7DE4A1FE0E24CE5167813', 'JTVPLAY', '148468597284964', 'Tá na mão', 'text', '2026-02-16 18:04:23', 0, '2026-02-16 18:04:24'),
(8915, 'AC69758D20F615210BC8AD71785962E0', 'JTVPLAY', '148468597284964', 'Se consegue liberar ?', 'text', '2026-02-16 18:04:29', 0, '2026-02-16 18:04:29'),
(8916, 'A56288CEDE757E857934E39C8C8C958A', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-16 18:04:57', 1, '2026-02-16 18:04:58'),
(8917, 'AC2D00F04E27212D750211BAB2165F4C', 'JTVPLAY', '148468597284964', 'Briagdo irmão', 'text', '2026-02-16 18:10:47', 0, '2026-02-16 18:10:48'),
(8918, 'AC6A5CF2A04486644411B1CAEF81D1E7', 'JTVPLAY', '87484876771482', 'Confira o vídeo de 🌷✨️_𝒍𝒊𝒍𝒊_𝒆𝒅𝒊𝒕𝒔07✨️🌷! #TikTok Abra o TikTok para ver a publicação de  @🌷✨️_𝒍𝒊𝒍𝒊_𝒆𝒅𝒊𝒕𝒔07✨️🌷 Meu presentin de Deus 🥺♥️ #_l... https://vm.tiktok.com/ZS9J3FYtdwtEG-ZJnnI/ Esta publicação é compartilhada via TikTok Lite. Baixe o TikTok Lite para curtir mais publicações: https://www.tiktok.com/tiktoklite', 'text', '2026-02-16 18:19:46', 0, '2026-02-16 18:19:46'),
(8919, 'ACCF437079DA57FE51F643F7940AAFA3', 'JTVPLAY', '42155120816316', 'Blz', 'text', '2026-02-16 18:35:33', 0, '2026-02-16 18:35:35'),
(8920, 'ACC2C8425237DFD9A463A3D992FEFF28', 'JTVPLAY', '42155120816316', '[Mídia sem texto]', 'image', '2026-02-16 18:36:47', 0, '2026-02-16 18:36:47'),
(8921, 'AC446BBC1739F052B250048F1E8BA14C', 'JTVPLAY', '42155120816316', '[Mídia sem texto]', 'audio', '2026-02-16 18:36:58', 0, '2026-02-16 18:36:59'),
(8922, 'ACE735428CD83B65653261E11F3E7C06', 'JTVPLAY', '42155120816316', '[Mídia sem texto]', 'audio', '2026-02-16 18:42:25', 0, '2026-02-16 18:42:26'),
(8923, 'AC0DA7D408601F966CF749DBB5E7F9B8', 'JTVPLAY', '171309132738561', 'Johnny boa noite, o playlist JTV mytv dos meus aplicativos Bob Player e XCLOUDTV vai vencer daqui a 5 dias e eu sei que estamos em época carnavalesca mas tem como você instalar uma outra playlist nos meus aplicativos de televisão e vídeos?', 'image', '2026-02-16 18:50:53', 0, '2026-02-16 18:50:54'),
(8924, 'AC43B432E8545248E954187781FCF057', 'JTVPLAY', '171309132738561', 'Tanto os aplicativos XCLOUDTV quanto o Bob Player estão com o mesmo problema do áudio  muito baixo em todos os canais, principalmente na Globo Rio em HD e FHD H265, o áudio não acompanha o vídeo, sinal fora de sincronia e parado no SD, HD, FHD H265, 4K e UHD em todos os canais abertos e fechados, oscilação de sinal (avança e retrocede), travamento constante e cortes de sinal, o que pode ser isso e o que é que eu faço para sanar esse problema o mais rápido possível?', 'text', '2026-02-16 18:55:26', 0, '2026-02-16 18:55:26'),
(8925, 'AC0A608A29524236669002735301C7E5', 'JTVPLAY', '171309132738561', 'Estou mandando mensagem', 'text', '2026-02-16 18:56:00', 0, '2026-02-16 18:56:00'),
(8926, 'AC938F60BE136413C69F4B367E31C518', 'JTVPLAY', '171309132738561', 'Vamos deixar pra quinta-feira depois do Carnaval combinado?', 'text', '2026-02-16 18:57:38', 0, '2026-02-16 18:57:38'),
(8927, 'AC2FF8E5432E1A9206390A9628B7E80D', 'JTVPLAY', '180341532831791', 'https://recibo.infinitepay.io/16c8eab9-3dfa-4ba3-b8d2-4efb36ffc938', 'text', '2026-02-16 19:45:52', 0, '2026-02-16 19:45:53'),
(8928, 'A563A3A06B83E973995366139FBA6E8D', 'JTVPLAY', '32465758515228', 'Quanto era mesmo', 'text', '2026-02-16 19:55:34', 0, '2026-02-16 19:55:35'),
(8929, 'AC798D4F94EC52E396E7FB83D84E985A', 'JTVPLAY', '219155051638982', 'Pagamento tv', 'image', '2026-02-16 20:12:40', 0, '2026-02-16 20:12:41'),
(8930, 'ACF87A201A74EB00800175862A740627', 'JTVPLAY', '219155051638982', 'Pagamento Everson Aparecido Hunka', 'text', '2026-02-16 20:12:51', 0, '2026-02-16 20:12:51'),
(8931, 'AC28EBD8D14E6CABED4F0253DFE55B2E', 'JTVPLAY', '219155051638982', '🙏🙏🙏', 'text', '2026-02-16 20:26:43', 0, '2026-02-16 20:26:44'),
(8932, 'A5F899991231EA164E687FC9CC96109B', 'JTVPLAY', '32465758515228', 'Deixa que vou pagar o veneno pro Valério, pode ser', 'text', '2026-02-16 20:30:43', 0, '2026-02-16 20:30:43'),
(8933, 'AC883F29923ABE9AFA1FB159842CD23E', 'JTVPLAY', '175986435948678', 'Boa noite', 'text', '2026-02-16 20:34:47', 0, '2026-02-16 20:34:47'),
(8934, 'AC706906F0B077BD4CF2BA1E414B9747', 'JTVPLAY', '175986435948678', 'A tv não está funcionando', 'text', '2026-02-16 20:34:59', 0, '2026-02-16 20:35:00'),
(8935, 'ACF18F57E972DA07E316D9AEADAA1933', 'JTVPLAY', '175986435948678', 'Voltou', 'text', '2026-02-16 20:39:15', 0, '2026-02-16 20:39:16'),
(8936, '3A1423EAC445FA1B24EC', 'JTVPLAY', '26117712945355', 'Oi', 'text', '2026-02-16 21:12:01', 0, '2026-02-16 21:12:02'),
(8937, '3A6EF90FFBD49F0E5F3F', 'JTVPLAY', '26117712945355', 'Tudo bem?', 'text', '2026-02-16 21:12:06', 0, '2026-02-16 21:12:06'),
(8938, '3A8E7F7547E3BA29046C', 'JTVPLAY', '26117712945355', 'Sou esposa do Elvis Júnior', 'text', '2026-02-16 21:12:59', 0, '2026-02-16 21:12:59'),
(8939, '3A9E48413D4D13F0453A', 'JTVPLAY', '26117712945355', 'Está dando erro pra abrir o aplicativo', 'text', '2026-02-16 21:13:07', 0, '2026-02-16 21:13:07'),
(8940, '3AFD57AA7BFAF715E1AC', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'video', '2026-02-16 21:13:31', 0, '2026-02-16 21:13:32'),
(8941, '3ADF19713E02835632A2', 'JTVPLAY', '26117712945355', 'Consegue me ajudar? Meu marido disse que está pago', 'text', '2026-02-16 21:13:42', 0, '2026-02-16 21:13:43'),
(8942, '3A53F5D5B4E426C65432', 'JTVPLAY', '26117712945355', '15996880285', 'text', '2026-02-16 21:20:21', 0, '2026-02-16 21:20:22'),
(8943, '3AFC3F849A47F1CA3BC1', 'JTVPLAY', '26117712945355', 'Ta', 'text', '2026-02-16 21:29:53', 0, '2026-02-16 21:29:53'),
(8944, '3A960B7829BDCB6C4C2A', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'audio', '2026-02-16 21:33:17', 0, '2026-02-16 21:33:18'),
(8945, '3A68BA9E280506FCB123', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'audio', '2026-02-16 21:33:26', 0, '2026-02-16 21:33:27'),
(8946, '3A31D640EFAC0D1520B9', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'video', '2026-02-16 21:34:42', 0, '2026-02-16 21:34:43'),
(8947, 'ACEC729238AD8654C155E8CDBE3A3C09', 'JTVPLAY', '108237655404548', '[Mídia sem texto]', 'image', '2026-02-16 21:36:36', 0, '2026-02-16 21:36:37'),
(8948, 'ACAA1186C8DFCEE4F26C7B4672B16E90', 'JTVPLAY', '108237655404548', 'Me fala qndo tiver ativo', 'text', '2026-02-16 21:41:38', 0, '2026-02-16 21:41:38'),
(8949, '3A27D968CE9EABEBF27D', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'video', '2026-02-16 22:07:47', 0, '2026-02-16 22:07:47'),
(8950, '3A3A1DFAD65F68320571', 'JTVPLAY', '26117712945355', 'Esse', 'text', '2026-02-16 22:07:48', 0, '2026-02-16 22:07:49'),
(8951, '3A35B22BE1AAB6F0F4D6', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'image', '2026-02-16 22:09:05', 0, '2026-02-16 22:09:06'),
(8952, '3A2B247E3F3917C4A893', 'JTVPLAY', '26117712945355', 'Coloquei', 'text', '2026-02-16 22:11:08', 0, '2026-02-16 22:11:10'),
(8953, '3A66A1A47846A3B5DC7D', 'JTVPLAY', '26117712945355', 'Deu certo', 'text', '2026-02-16 22:28:04', 0, '2026-02-16 22:28:04'),
(8954, '3A29C7A401B8F98CC5DA', 'JTVPLAY', '26117712945355', 'Obrigada', 'text', '2026-02-16 22:28:06', 0, '2026-02-16 22:28:08'),
(8955, '3A4B733536465DFE1EFD', 'JTVPLAY', '26117712945355', '[Mídia sem texto]', 'unknown', '2026-02-16 22:28:15', 0, '2026-02-16 22:28:15'),
(8956, 'A50D121F7B661389B76023AFF82934F7', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'unknown', '2026-02-16 22:42:37', 0, '2026-02-16 22:42:37'),
(8957, 'A55E71BF4F209920ED3AA3550690B9CE', 'JTVPLAY', '32465758515228', 'Ela já mandou sábado', 'text', '2026-02-16 22:43:07', 0, '2026-02-16 22:43:08'),
(8958, 'A586637E6E88271BEA70A8D64BDA4660', 'JTVPLAY', '32465758515228', 'Qual pix mando ?', 'text', '2026-02-16 22:43:27', 0, '2026-02-16 22:43:28'),
(8959, 'A52E01F7F9A38B58115973DEE5D81778', 'JTVPLAY', '32465758515228', '137,62', 'text', '2026-02-16 22:43:49', 0, '2026-02-16 22:43:51'),
(8960, 'A580EC0AC95FB92AAF4A49D9B6C903F6', 'JTVPLAY', '163883738206363', 'Lg', 'text', '2026-02-17 08:31:26', 0, '2026-02-17 08:31:26');
INSERT INTO `evolution_mensagens_recebidas` (`id`, `message_id`, `instance_name`, `telefone_origem`, `mensagem`, `tipo_mensagem`, `timestamp`, `processado`, `criado_em`) VALUES
(8961, 'AC47E8B29514298B658F5F69C6142160', 'JTVPLAY', '239319906275410', '[Mídia sem texto]', 'image', '2026-02-17 09:42:10', 0, '2026-02-17 09:42:11'),
(8962, 'ACA4F4B835461FFA9004473FBC961C5F', 'JTVPLAY', '239319906275410', 'Ja paquei eles estão me cobrando', 'text', '2026-02-17 09:54:27', 0, '2026-02-17 09:54:27'),
(8963, 'A5C5828C3238D5BAF742F88F9B27BAF7', 'JTVPLAY', '163883738206363', 'Bom dia quero contratar a iptv de filmes', 'text', '2026-02-17 10:02:21', 0, '2026-02-17 10:02:21'),
(8964, 'A5A3EABE683349ADD53E35A9311E8CFB', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-17 10:05:42', 0, '2026-02-17 10:05:44'),
(8965, 'A53D4F4D4923F34D2D8C40734DE8CC68', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-17 10:05:55', 0, '2026-02-17 10:05:56'),
(8966, 'A5DDCFECE2F3F9371FC47162C0CE507B', 'JTVPLAY', '163883738206363', 'Na tv ?', 'text', '2026-02-17 10:07:11', 0, '2026-02-17 10:07:11'),
(8967, 'A5DB19FE818663DE0806A738A09F10F1', 'JTVPLAY', '163883738206363', 'Ja ja', 'text', '2026-02-17 10:07:20', 0, '2026-02-17 10:07:20'),
(8968, 'A5CF52ED7D35BBB770643C62D5FDBA01', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'image', '2026-02-17 10:08:23', 0, '2026-02-17 10:08:24'),
(8969, 'A5AEA5AD06B0973F2C98C2F2119721FB', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-17 10:08:28', 0, '2026-02-17 10:08:29'),
(8970, 'A5B4FC85A2E1A652733EA59F01C0DFB1', 'JTVPLAY', '163883738206363', '[Mídia sem texto]', 'image', '2026-02-17 10:10:08', 0, '2026-02-17 10:10:09'),
(8971, 'A5A7DD84D9D4B0DE176C63185BD3A7F9', 'JTVPLAY', '163883738206363', 'Qual ai', 'text', '2026-02-17 10:10:12', 0, '2026-02-17 10:10:13'),
(8972, 'A5F28A7E79CCDD7B7A4DCF898D26569C', 'JTVPLAY', '163883738206363', 'Sim lG', 'text', '2026-02-17 10:12:48', 0, '2026-02-17 10:12:48'),
(8973, 'A5140636222A4E0A2F56779EDC89F1BE', 'JTVPLAY', '140797685063807', '[Mídia sem texto]', 'audio', '2026-02-17 10:12:53', 0, '2026-02-17 10:12:54'),
(8974, 'A574E436065F1FB4AA6D92F13769E7A0', 'JTVPLAY', '163883738206363', 'Instalei já', 'text', '2026-02-17 10:14:02', 0, '2026-02-17 10:14:03'),
(8975, 'A5E488201A0EFECE53AE245ED96F676B', 'JTVPLAY', '163883738206363', '[Mídia sem texto]', 'image', '2026-02-17 10:14:16', 0, '2026-02-17 10:14:16'),
(8976, 'A52C8B2AA238B49A4A7952F694F24191', 'JTVPLAY', '163883738206363', 'Feito todo esse processo', 'text', '2026-02-17 10:24:42', 0, '2026-02-17 10:24:43'),
(8977, 'ACC0E68DE39ED2B8F2A4E06EFF3E049C', 'JTVPLAY', '239319906275410', 'Olá 👋\n\nEste é um número para envio de mensagens automáticas e não conseguimos responder por aqui.\n\nPrecisa falar com a gente?\n\n💬 Mande uma mensagem no chat do App InfinitePay ou em nosso site.\n✉️ Você também pode enviar um e-mail para ajuda@infinitepay.io\n\nApp: https://infinitepay.onelink.me/JmLI/g9irqbij\n\nUm abraço,\n\nEquipe InfinitePay', 'text', '2026-02-17 10:25:05', 0, '2026-02-17 10:25:06'),
(8978, 'ACB3979BCD9B30526D6A39739329F742', 'JTVPLAY', '239319906275410', '*Aviso de cobrança em aberto*\nOi, STELIA 👋\n\nEstamos passando para lembrar que *você possui uma cobrança de jtvplay (JOHNNY SCHMITT DE SOUZA – CNPJ: 46.502.413/0001-75) em aberto.* Referência: JTVPLAY INFORMA:  SEU PLANO IRÁ VENCER, RENOVE JÁ! MAIS INFOS: (47) 99159-2447.\n\nO valor atualizado da cobrança é *R$ 40,00*.\n\nPara pagar, *é só clicar no link:* https://invoice.infinitepay.io/jtvplay/7ESRTdfvoB?md[rid]=tkb38\n\n⚠️ Pode haver cobrança de multa e juros por atraso, dependendo da data de pagamento.', 'text', '2026-02-17 10:25:25', 0, '2026-02-17 10:25:27'),
(8979, 'AC9727242D0F7178F5E5A2A6F9BD7AFE', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'document', '2026-02-17 10:42:29', 0, '2026-02-17 10:42:29'),
(8980, 'A5A12CB309549ABDFDBAF88CC09BC14A', 'JTVPLAY', '163883738206363', 'Testando agora', 'text', '2026-02-17 11:07:45', 0, '2026-02-17 11:07:45'),
(8981, 'AC36B16F2C5F3D5C421655348DE152C6', 'JTVPLAY', '164102144045259', '[Mídia sem texto]', 'document', '2026-02-17 11:09:20', 0, '2026-02-17 11:09:21'),
(8982, 'AC6DF2566847FA5DBF287E6C888D50A5', 'JTVPLAY', '164102144045259', 'bom dia bom feriado', 'text', '2026-02-17 11:28:11', 0, '2026-02-17 11:28:11'),
(8983, 'A552052C4FD97B87DBA35C93685EBF8B', 'JTVPLAY', '32465758515228', '[Mídia sem texto]', 'image', '2026-02-17 11:46:55', 0, '2026-02-17 11:46:56'),
(8984, 'AC79C946E6CC02AF08CA357737CB9E46', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'image', '2026-02-17 12:02:13', 0, '2026-02-17 12:02:13'),
(8985, 'AC3A18710F422DDEA752A96758CFD88F', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'audio', '2026-02-17 12:04:01', 0, '2026-02-17 12:04:01'),
(8986, 'AC587C6D35D680E0EED1529E0A44BB5A', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'image', '2026-02-17 12:06:59', 0, '2026-02-17 12:07:00'),
(8987, 'AC3E717A7A2CB54D5DEF8A9CCB75170D', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'audio', '2026-02-17 12:07:05', 0, '2026-02-17 12:07:05'),
(8988, 'AC2EC0F5221B3B48AEB9CC48636E9B33', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'image', '2026-02-17 12:11:43', 0, '2026-02-17 12:11:44'),
(8989, 'AC8639812AB8188A4FF50BDC6CDC1222', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'image', '2026-02-17 12:12:31', 0, '2026-02-17 12:12:31'),
(8990, 'AC7C5809A11FD2FE97ABB57073951C03', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'audio', '2026-02-17 12:15:02', 0, '2026-02-17 12:15:02'),
(8991, 'ACC369E84D9E4D8B7EC314EB532F06AD', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'audio', '2026-02-17 12:15:18', 0, '2026-02-17 12:15:20'),
(8992, 'AC7037628B864B209AC4116231433481', 'JTVPLAY', '238495322902583', '[Mídia sem texto]', 'image', '2026-02-17 12:28:59', 0, '2026-02-17 12:29:00'),
(8993, 'AC0F6BC0D16FA1E553710BAC07CCB508', 'JTVPLAY', '157144297013315', '[Mídia sem texto]', 'unknown', '2026-02-17 12:51:25', 0, '2026-02-17 12:51:26'),
(8994, 'AC22960A28AFD3B21329EAA8DBCE0555', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 13:26:01', 0, '2026-02-17 13:26:02'),
(8995, 'AC40E04DA7B1F3B3B7F01B4AB2DE99DE', 'JTVPLAY', '148468597284964', 'Showwwwww vc e foda irmão', 'text', '2026-02-17 13:52:26', 0, '2026-02-17 13:52:27'),
(8996, '2A1D380CA0FCF02984B2', 'JTVPLAY', '267598054875383', 'Opa', 'text', '2026-02-17 13:56:51', 0, '2026-02-17 13:56:53'),
(8997, '2A37065AE393CBF1B741', 'JTVPLAY', '267598054875383', 'Manda a chave aí pátrao', 'text', '2026-02-17 13:57:00', 0, '2026-02-17 13:57:01'),
(8998, 'AC49ADE9D8922C03A70DED47C5BAEF2F', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'image', '2026-02-17 14:12:42', 0, '2026-02-17 14:12:44'),
(8999, 'AC0201F28C63242C5B334CE24C618D74', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 14:12:49', 0, '2026-02-17 14:12:50'),
(9000, 'AC7E772654642063A1C348AC20F620EC', 'JTVPLAY', '118507056427159', 'Ola', 'text', '2026-02-17 14:19:08', 0, '2026-02-17 14:19:08'),
(9001, '2AE0DC3B6080D91E5362', 'JTVPLAY', '267598054875383', '[Mídia sem texto]', 'image', '2026-02-17 14:19:10', 0, '2026-02-17 14:19:11'),
(9002, 'AC947354A74531138AD3CA008DB8EAD6', 'JTVPLAY', '118507056427159', 'Meu aplicativo não está funcionando', 'text', '2026-02-17 14:19:12', 0, '2026-02-17 14:19:13'),
(9003, '2AB98BE5C8055156D1B2', 'JTVPLAY', '267598054875383', 'Libera aí por gentileza', 'text', '2026-02-17 14:19:17', 0, '2026-02-17 14:19:18'),
(9004, 'ACEEBB5D81D22B11FB5EB164D41E2D6B', 'JTVPLAY', '118507056427159', 'Tá dando conta inválida', 'text', '2026-02-17 14:19:24', 0, '2026-02-17 14:19:24'),
(9005, 'AC5A2B2588EB999322C173EEEF74538C', 'JTVPLAY', '118507056427159', '[Mídia sem texto]', 'video', '2026-02-17 14:19:56', 0, '2026-02-17 14:19:57'),
(9006, 'AC5EEE879726D4FC47857AACD6967D45', 'JTVPLAY', '118507056427159', 'Boa tarde', 'text', '2026-02-17 14:22:38', 0, '2026-02-17 14:22:40'),
(9007, 'AC549DBD8F66DDBCDB176F537586CA77', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 14:25:06', 0, '2026-02-17 14:25:06'),
(9008, 'AC93D8A80B28A2BE9F7A9EE7B0240428', 'JTVPLAY', '118507056427159', 'Vou procurar', 'text', '2026-02-17 14:25:08', 0, '2026-02-17 14:25:08'),
(9009, 'ACA5E9A647363038D3488FCDA455AD6B', 'JTVPLAY', '118507056427159', 'Não tem', 'text', '2026-02-17 14:26:07', 0, '2026-02-17 14:26:07'),
(9010, 'ACFF3F673C34504EB75A176E11E93123', 'JTVPLAY', '118507056427159', 'Samsung', 'text', '2026-02-17 14:27:28', 0, '2026-02-17 14:27:28'),
(9011, 'ACD26732DD920F62AB84E93169406517', 'JTVPLAY', '118507056427159', '[Mídia sem texto]', 'image', '2026-02-17 14:29:02', 0, '2026-02-17 14:29:02'),
(9012, 'AC7FD04B5395ECD830B85A5C2E13D50C', 'JTVPLAY', '118507056427159', '[Mídia sem texto]', 'image', '2026-02-17 14:33:20', 0, '2026-02-17 14:33:20'),
(9013, 'AC29929EEB80230135E53B5A4147202D', 'JTVPLAY', '171309132738561', 'Você melhora sua conexão Wi-Fi com 7 ajustes simples no roteador - Olhar Digital https://share.google/645bUVmsvIId4I0dD', 'text', '2026-02-17 14:51:04', 0, '2026-02-17 14:51:05'),
(9014, '3AFF01BB35D4BD473432', 'JTVPLAY', '179714652111099', '[Mídia sem texto]', 'video', '2026-02-17 15:51:03', 0, '2026-02-17 15:51:04'),
(9015, 'AC676EEC76F902231B5E3EE596AF6FA7', 'JTVPLAY', '238495322902583', 'Oi. Boa tarde. Por aqui tudo certo, quase virando sapo de tanta água e aí?', 'text', '2026-02-17 16:00:23', 0, '2026-02-17 16:00:24'),
(9016, '3A0AE74417ED311D2646', 'JTVPLAY', '179714652111099', '[Mídia sem texto]', 'image', '2026-02-17 16:12:57', 0, '2026-02-17 16:12:58'),
(9017, '3A7B8DC3C25BC66ED5C3', 'JTVPLAY', '179714652111099', '[Mídia sem texto]', 'image', '2026-02-17 16:14:25', 0, '2026-02-17 16:14:25'),
(9018, '3A5C51ACDAD3808BEBF2', 'JTVPLAY', '179714652111099', 'Pronto só mandar o código nome e senha', 'text', '2026-02-17 16:16:22', 0, '2026-02-17 16:16:22'),
(9019, '3A4CA2461F104E7C6D71', 'JTVPLAY', '179714652111099', '[Mídia sem texto]', 'image', '2026-02-17 16:23:28', 0, '2026-02-17 16:23:29'),
(9020, '3ABDCF6BCC146741448A', 'JTVPLAY', '179714652111099', 'Certo', 'text', '2026-02-17 16:23:48', 0, '2026-02-17 16:23:49'),
(9021, 'ACE3A738B7DFE0149F5FB8CDB7F6F7B8', 'JTVPLAY', '148468597284964', 'Irmão ele deu este erro Aki', 'image', '2026-02-17 16:28:09', 0, '2026-02-17 16:28:10'),
(9022, 'ACA491FE3468D42F9E77C207E67D149F', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:30:13', 0, '2026-02-17 16:30:13'),
(9023, '3A4197F9ABDB6BBE4270', 'JTVPLAY', '104917578559621', '[Mídia sem texto]', 'audio', '2026-02-17 16:31:48', 0, '2026-02-17 16:31:49'),
(9024, 'AC38ED48C3D11E56719CE8D6D087A902', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:35:10', 0, '2026-02-17 16:35:11'),
(9025, 'AC3ED79331ADFC42470A251C604CFBE7', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'image', '2026-02-17 16:35:26', 0, '2026-02-17 16:35:26'),
(9026, '3A8B8518E46B100EB8ED', 'JTVPLAY', '104917578559621', '👍🏾', 'text', '2026-02-17 16:36:10', 0, '2026-02-17 16:36:11'),
(9027, 'ACFCB5459B88A0FA97A563115A1D9159', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:36:16', 0, '2026-02-17 16:36:16'),
(9028, '4A38B7D05EB4D8970321', 'JTVPLAY', '35562429903034', '[Mídia sem texto]', 'unknown', '2026-02-17 16:36:36', 0, '2026-02-17 16:36:37'),
(9029, 'AC15F0CBF7B5F4AB628E4A27E879BB92', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:39:36', 0, '2026-02-17 16:39:37'),
(9030, 'ACD00CE56D474675B03BBFE2452C8CC5', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'image', '2026-02-17 16:41:32', 0, '2026-02-17 16:41:33'),
(9031, 'AC68EDBD8F80ED8FA24DF5799F767DC3', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:41:37', 0, '2026-02-17 16:41:37'),
(9032, 'ACD6420BE6BA7B5CE2BD204BD173E0DE', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:44:35', 0, '2026-02-17 16:44:35'),
(9033, 'ACFA849777022F865292A1B04D1F701F', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:45:15', 0, '2026-02-17 16:45:15'),
(9034, 'AC16754A554240DA700AD35404483067', 'JTVPLAY', '148468597284964', '[Mídia sem texto]', 'audio', '2026-02-17 16:47:28', 0, '2026-02-17 16:47:29'),
(9035, 'AC9F5B4CC7AF1BA4D421DB5439DEA286', 'JTVPLAY', '148468597284964', '🙏🙏🙏🙏🙏🙏🙏', 'text', '2026-02-17 16:49:26', 0, '2026-02-17 16:49:26'),
(9036, 'AC401EE7621548CD4360E8F6B48A9471', 'JTVPLAY', '113718268571660', 'Opa iae mano', 'text', '2026-02-17 17:01:21', 0, '2026-02-17 17:01:22'),
(9037, 'ACC6B8F392CF2C4D923B53B2A0F076BE', 'JTVPLAY', '113718268571660', 'Querendo renovar', 'text', '2026-02-17 17:01:32', 0, '2026-02-17 17:01:32'),
(9038, '3AC5B8CD5DF01F76A395', 'JTVPLAY', '35562429903034', 'Tranquilo', 'text', '2026-02-17 17:01:32', 0, '2026-02-17 17:01:34'),
(9039, '3A9325D8C4B75A575312', 'JTVPLAY', '35562429903034', '[Mídia sem texto]', 'audio', '2026-02-17 17:05:32', 0, '2026-02-17 17:05:33'),
(9040, '3ACD2DA089D706212F5C', 'JTVPLAY', '35562429903034', 'Blz', 'text', '2026-02-17 17:25:39', 0, '2026-02-17 17:25:40'),
(9041, '3A2580B4AD476C472ADF', 'JTVPLAY', '51724425375774', 'Oii', 'text', '2026-02-17 17:26:06', 0, '2026-02-17 17:26:07'),
(9042, '3A1066B0EA3EE84D5EE2', 'JTVPLAY', '51724425375774', 'Esqueci de pagar esse negócio da licença', 'text', '2026-02-17 17:26:26', 0, '2026-02-17 17:26:27'),
(9043, '3A8E32C84107448D2925', 'JTVPLAY', '51724425375774', 'Como faço', 'text', '2026-02-17 17:26:31', 0, '2026-02-17 17:26:31'),
(9044, 'A56DDACF50137D447CAF8BAF47140962', 'JTVPLAY', '32465758515228', 'Pago', 'text', '2026-02-17 17:29:42', 0, '2026-02-17 17:29:43'),
(9045, 'A5DEBBEED3102C5951D83A1CDEF3258B', 'JTVPLAY', '3289978540053', 'Boa tarde man deixa eu perguntar o xciptv que baixa no Playstore serve o nosso login?', 'text', '2026-02-17 17:47:10', 0, '2026-02-17 17:47:11'),
(9046, 'A564F3495DEFA6532F1898662B76FA0B', 'JTVPLAY', '3289978540053', 'O ibo não tá funcionando aqui desde sábado fica dando expirado', 'text', '2026-02-17 17:47:45', 0, '2026-02-17 17:47:45'),
(9047, '3A8ACD9DADE99E23E829', 'JTVPLAY', '5515996605722', '[Mídia sem texto]', 'audio', '2026-02-17 17:50:32', 0, '2026-02-17 17:50:32'),
(9048, '3A290C15C845665BA6F3', 'JTVPLAY', '51724425375774', 'Sim', 'text', '2026-02-17 17:51:40', 0, '2026-02-17 17:51:41'),
(9049, '3A31156857E7F4DEC6BD', 'JTVPLAY', '5515996605722', '[Mídia sem texto]', 'audio', '2026-02-17 18:08:44', 0, '2026-02-17 18:08:45'),
(9050, 'A5C2A097B44AC3C9339E90F81854AF4D', 'JTVPLAY', '3289978540053', 'Ibo p2p', 'text', '2026-02-17 18:08:58', 0, '2026-02-17 18:08:58'),
(9051, 'A511DAECC2736AADFEDE7575F91C5AC0', 'JTVPLAY', '3289978540053', '[Mídia sem texto]', 'audio', '2026-02-17 18:14:40', 0, '2026-02-17 18:14:40'),
(9052, 'A5A03FA7CF6BDD0BF41D52A62EB81BC1', 'JTVPLAY', '3289978540053', '[Mídia sem texto]', 'image', '2026-02-17 18:15:32', 0, '2026-02-17 18:15:33'),
(9053, '3A4F578F01523BC6E9F4', 'JTVPLAY', '215049113178302', 'Oia', 'text', '2026-02-17 18:21:26', 0, '2026-02-17 18:21:26'),
(9054, 'AC4B00820CEC45F480E7AE6036E8F5A4', 'JTVPLAY', '113718268571660', 'Vou mano', 'text', '2026-02-17 18:26:27', 0, '2026-02-17 18:26:28'),
(9055, 'AC2192138A347E1FAA21C1CB3CF73141', 'JTVPLAY', '113718268571660', 'Ipa', 'text', '2026-02-17 18:26:34', 0, '2026-02-17 18:26:34'),
(9056, 'AC76F381820109ECD632F6F81257CF16', 'JTVPLAY', '113718268571660', 'Ainda dá tempo', 'text', '2026-02-17 18:26:39', 0, '2026-02-17 18:26:40'),
(9057, '4A351128BB075C42D363', 'JTVPLAY', '51724425375774', '[Mídia sem texto]', 'image', '2026-02-17 18:52:42', 0, '2026-02-17 18:52:42'),
(9058, '3AFA406D755FB03C23A7', 'JTVPLAY', '51724425375774', 'Aproveitando, durante o uso quando estamos assistindo, fica travando, tenho que ficar saindo e entrando denovo para funcionar', 'text', '2026-02-17 18:53:25', 0, '2026-02-17 18:53:25'),
(9059, 'ACD601DE9EDF422A045100A958BEDD8B', 'JTVPLAY', '113718268571660', 'Vou mandar aqui o Pix', 'text', '2026-02-17 18:58:31', 0, '2026-02-17 18:58:32'),
(9060, 'AC8879DE5186DC1A4EC9995F2A1760BC', 'JTVPLAY', '113718268571660', 'Da certo ?', 'text', '2026-02-17 18:58:36', 0, '2026-02-17 18:58:38'),
(9061, 'AC020A0F434126D01ADBD78A7B938C54', 'JTVPLAY', '113718268571660', '[Mídia sem texto]', 'document', '2026-02-17 18:59:11', 0, '2026-02-17 18:59:12'),
(9062, 'AC555A13C9B1E06CB9685EDF34C130AF', 'JTVPLAY', '113718268571660', 'AE mano', 'text', '2026-02-17 18:59:14', 0, '2026-02-17 18:59:15'),
(9063, '3A961AD079EB3E9AD112', 'JTVPLAY', '51724425375774', 'Vamos', 'text', '2026-02-17 18:59:45', 0, '2026-02-17 18:59:45'),
(9064, 'ACBA20C128A7659D2BF84A7DC7CED455', 'JTVPLAY', '113718268571660', 'Obaa', 'text', '2026-02-17 19:00:49', 0, '2026-02-17 19:00:50'),
(9065, 'AC43A8C55CB4D9F7FDC48850186B1A8D', 'JTVPLAY', '113718268571660', '?', 'text', '2026-02-17 19:00:50', 0, '2026-02-17 19:00:53'),
(9066, 'AC759519C8AF0C786FACE7E0CF179E2C', 'JTVPLAY', '113718268571660', 'Guenta lá kkkkk', 'text', '2026-02-17 19:02:27', 0, '2026-02-17 19:02:27'),
(9067, 'AC78773BDF48E99AE8EAD99EEEE334F1', 'JTVPLAY', '53678601945340', 'Vai ter que pagar?', 'text', '2026-02-17 19:02:34', 0, '2026-02-17 19:02:35'),
(9068, 'AC7D3530860E77E37D8ABE6D25FFFC9A', 'JTVPLAY', '53678601945340', 'Se for ter q pagar não quero', 'text', '2026-02-17 19:02:41', 0, '2026-02-17 19:02:41'),
(9069, 'ACD077007FF4D010890B7249E69E2A48', 'JTVPLAY', '113718268571660', 'Ei mano', 'text', '2026-02-17 19:04:19', 0, '2026-02-17 19:04:20'),
(9070, 'AC98E0CA5F84AD1A0DA09F9F11553DDB', 'JTVPLAY', '113718268571660', 'Tava querendo botar em outro celular aqui', 'text', '2026-02-17 19:04:26', 0, '2026-02-17 19:04:26'),
(9071, 'AC7BB4B01F3E97451912F888A8766712', 'JTVPLAY', '113718268571660', 'Né no meu não', 'text', '2026-02-17 19:04:32', 0, '2026-02-17 19:04:33'),
(9072, 'ACB25261BCED83A967541B045173F807', 'JTVPLAY', '113718268571660', 'Queria o link do app', 'text', '2026-02-17 19:04:44', 0, '2026-02-17 19:04:44'),
(9073, 'ACA0CE0D56825C56C7DA7406E62BDDF7', 'JTVPLAY', '113718268571660', 'Pra eu baixar aqui', 'text', '2026-02-17 19:04:47', 0, '2026-02-17 19:04:48'),
(9074, '3A9319DF3E8CEDC019AC', 'JTVPLAY', '51724425375774', '[Mídia sem texto]', 'image', '2026-02-17 19:05:01', 0, '2026-02-17 19:05:02'),
(9075, 'AC16D8E14FBE60D9DE5A6FA8C7C62F8E', 'JTVPLAY', '53678601945340', 'Se for bom app ctz vou renovar', 'text', '2026-02-17 19:05:07', 0, '2026-02-17 19:05:07'),
(9076, '3AA9EE182BA0C3484584', 'JTVPLAY', '51724425375774', '[Mídia sem texto]', 'image', '2026-02-17 19:05:12', 0, '2026-02-17 19:05:13'),
(9077, 'AC4752DC1384196D20824FEEE03079F2', 'JTVPLAY', '53678601945340', 'Vou baixar', 'text', '2026-02-17 19:06:29', 0, '2026-02-17 19:06:30'),
(9078, '3A9375F3FB5A39F550B7', 'JTVPLAY', '51724425375774', '[Mídia sem texto]', 'image', '2026-02-17 19:07:32', 0, '2026-02-17 19:07:34'),
(9079, 'ACBF4904FD9CC327BF1E22056CA21AF2', 'JTVPLAY', '53678601945340', 'Biaxei', 'text', '2026-02-17 19:07:42', 0, '2026-02-17 19:07:42'),
(9080, 'AC1C73271F2CF723438BE14AD916FCF7', 'JTVPLAY', '53678601945340', 'Baixei*', 'text', '2026-02-17 19:07:45', 0, '2026-02-17 19:07:45'),
(9081, 'AC6E6EEDBB790B1B770C3961164B3C0F', 'JTVPLAY', '113718268571660', '[Mídia sem texto]', 'image', '2026-02-17 19:08:05', 0, '2026-02-17 19:08:06'),
(9082, 'AC74D06D3452B31D5C16DD0337DA53BD', 'JTVPLAY', '113718268571660', 'AE mano', 'text', '2026-02-17 19:08:07', 0, '2026-02-17 19:08:07'),
(9083, 'ACFF77CF4318EF5C587D0CA4524FE618', 'JTVPLAY', '53678601945340', '[Mídia sem texto]', 'image', '2026-02-17 19:08:37', 0, '2026-02-17 19:08:37'),
(9084, 'AC3187F3DDC7AECEA3FE052538B54471', 'JTVPLAY', '113718268571660', '??', 'text', '2026-02-17 19:08:46', 0, '2026-02-17 19:08:47'),
(9085, 'AC12D626C9F07E1F2B5FD8474059A405', 'JTVPLAY', '113718268571660', 'Abrir site é ?', 'text', '2026-02-17 19:09:06', 0, '2026-02-17 19:09:06'),
(9086, 'ACA8EA24FBE6FB6A1D17509A8522EA65', 'JTVPLAY', '113718268571660', 'Blz', 'text', '2026-02-17 19:11:01', 0, '2026-02-17 19:11:02'),
(9087, 'ACEEEDA2D2CE50CA1188EBEE33EBF48D', 'JTVPLAY', '53678601945340', '??', 'text', '2026-02-17 19:14:33', 0, '2026-02-17 19:14:35'),
(9088, 'AC573F402E80B0657DFCDDE3A45A3FCB', 'JTVPLAY', '113718268571660', 'Como assim', 'text', '2026-02-17 19:14:37', 0, '2026-02-17 19:14:37'),
(9089, '3A1D52BBF586FE6ED26C', 'JTVPLAY', '215049113178302', '[Mídia sem texto]', 'audio', '2026-02-17 19:14:50', 0, '2026-02-17 19:14:51'),
(9090, 'AC2D95D836044E397CC7206B8B000C47', 'JTVPLAY', '113718268571660', 'Ok', 'text', '2026-02-17 19:15:21', 0, '2026-02-17 19:15:21'),
(9091, 'AC3F5120D15C5B3F222A36614FF4BD5A', 'JTVPLAY', '113718268571660', '[Mídia sem texto]', 'image', '2026-02-17 19:15:36', 0, '2026-02-17 19:15:37'),
(9092, 'AC353586D26AB9B649546112A8AADEA2', 'JTVPLAY', '113718268571660', 'Iai ?', 'text', '2026-02-17 19:16:14', 0, '2026-02-17 19:16:15'),
(9093, 'AC8DC38DCA42C2D434AF6DC650AB9605', 'JTVPLAY', '113718268571660', 'Deu bomm', 'text', '2026-02-17 19:17:51', 0, '2026-02-17 19:17:51'),
(9094, 'AC8F723E8AF0C1D9BBEC36B7F33F9210', 'JTVPLAY', '113718268571660', '[Mídia sem texto]', 'unknown', '2026-02-17 19:17:56', 0, '2026-02-17 19:17:57'),
(9095, 'AC3F7EC2AD863F93E3AECE3180541D0F', 'JTVPLAY', '111141506297958', 'Diga', 'text', '2026-02-17 19:23:38', 0, '2026-02-17 19:23:39'),
(9096, 'AC0C77B199539CEDBB2116800B9B13D1', 'JTVPLAY', '53678601945340', 'Tá rodando esse', 'text', '2026-02-17 19:29:01', 0, '2026-02-17 19:29:02'),
(9097, 'AC4AB3F6E716E736DCA33CBAF6795812', 'JTVPLAY', '53678601945340', 'Filme', 'text', '2026-02-17 19:29:04', 0, '2026-02-17 19:29:05'),
(9098, '3A64830B06B1789B42F9', 'JTVPLAY', '5515996448994', 'Fala mano blz', 'text', '2026-02-17 19:32:02', 0, '2026-02-17 19:32:02'),
(9099, '3A68E5D1869C2693C095', 'JTVPLAY', '5515996448994', 'Então troquei la o login', 'text', '2026-02-17 19:32:09', 0, '2026-02-17 19:32:10'),
(9100, '3ACFFDA0AEE4B8D5562B', 'JTVPLAY', '5515996448994', 'So que os canais fica so carregando', 'text', '2026-02-17 19:32:26', 0, '2026-02-17 19:32:27'),
(9101, '3A8CBF43E1AA35334E20', 'JTVPLAY', '5515996448994', 'E não entra', 'text', '2026-02-17 19:32:30', 0, '2026-02-17 19:32:30'),
(9102, 'ACE4AF7EFB7EAB7238C6E6139F2AD911', 'JTVPLAY', '53678601945340', 'Por enquanto tá bom', 'text', '2026-02-17 19:33:39', 0, '2026-02-17 19:33:40'),
(9103, 'AC42F3C1DFEB1F7CCA264B7D80883ADA', 'JTVPLAY', '53678601945340', 'Tô testando tudo', 'text', '2026-02-17 19:33:45', 0, '2026-02-17 19:33:46'),
(9104, '3A851F882C6827460113', 'JTVPLAY', '5515996448994', 'Iphone 14', 'text', '2026-02-17 19:47:01', 0, '2026-02-17 19:47:01'),
(9105, '4AA23DEEFBC714EF3943', 'JTVPLAY', '5515996448994', '[Mídia sem texto]', 'image', '2026-02-17 19:48:48', 0, '2026-02-17 19:48:48'),
(9106, '3A022E1AC9B9ABBCF3C4', 'JTVPLAY', '5515996448994', 'Esse aqui ?', 'text', '2026-02-17 19:49:00', 0, '2026-02-17 19:49:00'),
(9107, '4A2CCD8FB4334204B33B', 'JTVPLAY', '5515996448994', '[Mídia sem texto]', 'image', '2026-02-17 19:49:53', 0, '2026-02-17 19:49:54'),
(9108, '3AAAF1069CD255B0AE40', 'JTVPLAY', '5515996448994', 'Fica so assim', 'text', '2026-02-17 19:50:15', 0, '2026-02-17 19:50:16'),
(9109, '3A4854AEE9A47CE6E492', 'JTVPLAY', '5515996448994', 'Qual dos 2 ?', 'text', '2026-02-17 20:18:20', 0, '2026-02-17 20:18:21'),
(9110, '4AA4C38370288A1A6945', 'JTVPLAY', '104917578559621', '[Mídia sem texto]', 'image', '2026-02-17 20:23:56', 0, '2026-02-17 20:23:57'),
(9111, 'AC2DB9A38AA05D518673F60F06273B23', 'JTVPLAY', '118507056427159', 'Eu precisei sair', 'text', '2026-02-17 20:41:28', 0, '2026-02-17 20:41:28'),
(9112, 'AC4114FC1D64818156C16CFF602EDFCE', 'JTVPLAY', '118507056427159', 'Fiz o teste agora', 'text', '2026-02-17 20:41:30', 0, '2026-02-17 20:41:30'),
(9113, 'ACB864D69EFB5D60D5D6B7305D0914ED', 'JTVPLAY', '118507056427159', 'Consegue verificar por favor', 'text', '2026-02-17 20:41:35', 0, '2026-02-17 20:41:36'),
(9114, '3ACB51D5C525242F6583', 'JTVPLAY', '5515996448994', 'Mano reiniciei o cel aqui pra ver e volto a funcionar o app', 'text', '2026-02-17 20:50:54', 0, '2026-02-17 20:50:54'),
(9115, '3AC317F006922A6D07BA', 'JTVPLAY', '5515996448994', 'Ta td certo', 'text', '2026-02-17 20:51:16', 0, '2026-02-17 20:51:17'),
(9116, 'AC8BB1D8628E24B70A69AEC1375FB1CE', 'JTVPLAY', '278494319792223', 'Oi', 'text', '2026-02-17 21:05:17', 0, '2026-02-17 21:05:19'),
(9117, 'AC935628D64BAC03D5D0E8FAA76B67F0', 'JTVPLAY', '278494319792223', 'Quais planos vc tem lá tv?', 'text', '2026-02-17 21:05:22', 0, '2026-02-17 21:05:22'),
(9118, 'ACBA580FFEC2A7CD7BFF9A0FDC6DDD38', 'JTVPLAY', '278494319792223', 'Sim indicação no grupo', 'text', '2026-02-17 21:10:15', 0, '2026-02-17 21:10:15'),
(9119, 'AC952AF98AEEBCC34D680B289DE2D526', 'JTVPLAY', '278494319792223', 'Sim', 'text', '2026-02-17 21:13:04', 0, '2026-02-17 21:13:05'),
(9120, 'AC25060C1DD91A79A384304BCFDE5BD0', 'JTVPLAY', '278494319792223', 'Amanha te mando entao', 'text', '2026-02-17 21:32:19', 0, '2026-02-17 21:32:20'),
(9121, 'ACFD0E5280EAD6EF1664A3221CDE14B8', 'JTVPLAY', '278494319792223', 'Agora nao to em casa', 'text', '2026-02-17 21:32:23', 0, '2026-02-17 21:32:23'),
(9122, 'AC50472979B7F1B8BAAD83AC7D7236A6', 'JTVPLAY', '278494319792223', 'Após as 8 qualquer hora', 'text', '2026-02-17 21:38:47', 0, '2026-02-17 21:38:48'),
(9123, 'ACB0FF1A78E013F0A8DD24E578EC73E1', 'JTVPLAY', '278494319792223', 'Como funciona seus planos?', 'text', '2026-02-17 21:38:54', 0, '2026-02-17 21:38:54'),
(9124, 'AC01232A11AABA85A7E7340F1FC1EA42', 'JTVPLAY', '278494319792223', 'Valores', 'text', '2026-02-17 21:38:56', 0, '2026-02-17 21:38:56'),
(9125, 'AC94F3E8D90D39B5CBE367967F7E79FF', 'JTVPLAY', '278494319792223', 'Pega record globo SBT?', 'text', '2026-02-17 21:39:55', 0, '2026-02-17 21:39:56'),
(9126, 'AC428B6FD9E7B165B379522759867D07', 'JTVPLAY', '118507056427159', 'Minha filha tava assistindo no meu Cel', 'text', '2026-02-17 21:53:34', 0, '2026-02-17 21:53:34'),
(9127, 'ACEC4A91380BB912948AD243D539FB6C', 'JTVPLAY', '118507056427159', 'Não falou que tinha mensagem', 'text', '2026-02-17 21:53:41', 0, '2026-02-17 21:53:42'),
(9128, 'AC77B7671F339515667EA6B56E731ED8', 'JTVPLAY', '118507056427159', 'O meu está dando conta inválida', 'text', '2026-02-17 21:53:53', 0, '2026-02-17 21:53:53'),
(9129, 'ACE3FE413F65F3D70FBFA38E796DF016', 'JTVPLAY', '118507056427159', 'Eu escrevi Playsim e não aparece nada com esse nome', 'text', '2026-02-17 21:54:05', 0, '2026-02-17 21:54:05'),
(9130, 'ACC2D642C7B2614AFAF8AAF151F0E58B', 'JTVPLAY', '118507056427159', 'Me passa esse de 7 dias grátis então', 'text', '2026-02-17 21:55:05', 0, '2026-02-17 21:55:05'),
(9131, 'AC932D0E7D76E21FA7A7D206B93370B3', 'JTVPLAY', '118507056427159', 'Aí vejo se normaliza até lá', 'text', '2026-02-17 21:55:14', 0, '2026-02-17 21:55:14'),
(9132, 'AC58E009097142D3AC1B8BA1974C53FB', 'JTVPLAY', '118507056427159', 'Vou ver aqui', 'text', '2026-02-17 21:58:22', 0, '2026-02-17 21:58:22'),
(9133, 'AC788B237DDBE4C62F4303CFA7E51C7F', 'JTVPLAY', '278494319792223', 'Ótimo', 'text', '2026-02-17 21:59:12', 0, '2026-02-17 21:59:13'),
(9134, 'ACB9ACF87922CDA98838ADA29DFDC5F0', 'JTVPLAY', '278494319792223', 'Blz', 'text', '2026-02-17 22:00:21', 0, '2026-02-17 22:00:21'),
(9135, 'ACE90C1DBA7522ADC4935CA73BE2DAAB', 'JTVPLAY', '278494319792223', 'E vc vem em casa instalar ou faz pelo celular nesmo', 'text', '2026-02-17 22:00:31', 0, '2026-02-17 22:00:31'),
(9136, 'ACAB79C9CF393E2DE4EEE3C22DF83679', 'JTVPLAY', '278494319792223', 'Vou querer esse mensal dai', 'text', '2026-02-17 22:00:36', 0, '2026-02-17 22:00:36'),
(9137, 'AC5355A8D165B40CB9BADA6591B36993', 'JTVPLAY', '118507056427159', 'Ele tá demorando muito pra instalar, amanhã cedo eu entro pra acessar, aí te envio uma mensagem tá bom, obrigado boa noite', 'text', '2026-02-17 22:03:38', 0, '2026-02-17 22:03:38'),
(9138, 'AC805889F3EB61EA73D6396A593E5543', 'JTVPLAY', '278494319792223', 'Ok', 'text', '2026-02-17 22:15:16', 0, '2026-02-17 22:15:16'),
(9139, 'A5EEDA0D74C7A8390E6B0FCB516D1C22', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-17 22:30:22', 1, '2026-02-17 22:30:24'),
(9140, 'A58DD9F7562E730B92BD0138FBA84F83', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-17 22:30:42', 1, '2026-02-17 22:30:46'),
(9141, 'A5EBFE8E7EFD77EA271E6532174AAA88', 'JTVPLAY', '554791592447', '/pago 47991063914', 'comando_admin', '2026-02-17 22:31:26', 1, '2026-02-17 22:31:27'),
(9142, 'A508065E434A832836A7CDC4B9175F64', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-17 22:31:38', 1, '2026-02-17 22:31:39'),
(9143, 'A57724F4E5B880FA21BF5ADF076009BC', 'JTVPLAY', '554791592447', '/pendentes', 'comando_admin', '2026-02-17 22:31:49', 1, '2026-02-17 22:31:50'),
(9144, 'A5E8B21425AAADCC4E2DDCF901365A91', 'JTVPLAY', '554791592447', '/buscar 47992012997', 'comando_admin', '2026-02-17 22:32:17', 1, '2026-02-17 22:32:18'),
(9145, 'AC9BAB59A4A86157FA734018158A5B71', 'JTVPLAY', '23313602625574', 'Boa noite', 'text', '2026-02-17 22:37:35', 0, '2026-02-17 22:37:36'),
(9146, 'AC875FD7751B1156C0707E7577816722', 'JTVPLAY', '23313602625574', '[Mídia sem texto]', 'image', '2026-02-17 22:38:11', 0, '2026-02-17 22:38:12'),
(9147, 'ACC2FAE723597AFCAE56D6E7E7CF3331', 'JTVPLAY', '23313602625574', 'Não esta dando para assistir série', 'text', '2026-02-17 22:46:09', 0, '2026-02-17 22:46:10'),
(9148, 'ACFE2925359C14CBB581BDDC6F29E4F7', 'JTVPLAY', '23313602625574', 'Quando entro para assistir aparece isso', 'text', '2026-02-17 22:46:28', 0, '2026-02-17 22:46:28'),
(9149, 'AC00B28ADF260A0661BC46C09AB03DA5', 'JTVPLAY', '23313602625574', 'Não', 'text', '2026-02-17 22:47:43', 0, '2026-02-17 22:47:43'),
(9150, 'AC445A9EF9C22581BB9D6828DB5F243E', 'JTVPLAY', '23313602625574', 'Filme tbm não está indo', 'text', '2026-02-17 22:51:40', 0, '2026-02-17 22:51:40'),
(9151, 'AC80E75FD49D5331BC9B936EA8567B3D', 'JTVPLAY', '23313602625574', 'Só ao vivo', 'text', '2026-02-17 22:51:59', 0, '2026-02-17 22:52:00'),
(9152, 'ACCFB962E1B784D47A7F20A63D713C2D', 'JTVPLAY', '23313602625574', 'E não são todos do ao vivo que esta funcionando', 'text', '2026-02-17 22:56:33', 0, '2026-02-17 22:56:34'),
(9153, 'AC5B8B9F013C80FFCBDC2F48EB105B32', 'JTVPLAY', '23313602625574', 'Ta bom', 'text', '2026-02-17 22:58:25', 0, '2026-02-17 22:58:26'),
(9154, 'AC392A5B6CC3AAE61F65B695026894A0', 'JTVPLAY', '123463683596475', 'Boa Noite', 'text', '2026-02-17 23:06:14', 0, '2026-02-17 23:06:14'),
(9155, 'AC83C45355A9E76AEDEA30F87716EEED', 'JTVPLAY', '123463683596475', 'Quando vence meu boleto', 'text', '2026-02-17 23:06:44', 0, '2026-02-17 23:06:44'),
(9156, 'AC5A95A6C22182323414E454A13410DB', 'JTVPLAY', '123463683596475', 'Pagar em pix', 'text', '2026-02-17 23:09:39', 0, '2026-02-17 23:09:39'),
(9157, 'AC22EAD806307097831CE1170F7397EA', 'JTVPLAY', '123463683596475', 'Tô sem tv', 'text', '2026-02-17 23:12:16', 0, '2026-02-17 23:12:17'),
(9158, 'ACC6DEFAFD36ECD73C4B57C08E176674', 'JTVPLAY', '123463683596475', 'Quero paga', 'text', '2026-02-17 23:12:21', 0, '2026-02-17 23:12:21'),
(9159, 'AC23E3507031452555BB0E5E128556F4', 'JTVPLAY', '123463683596475', '[Mídia sem texto]', 'image', '2026-02-17 23:15:12', 0, '2026-02-17 23:15:13'),
(9160, 'AC0EA0062EE6355D462059E17C6B7832', 'JTVPLAY', '123463683596475', 'Muito obg', 'text', '2026-02-17 23:15:17', 0, '2026-02-17 23:15:17'),
(9161, 'A579E6E447D9AC667A2137540EF23848', 'JTVPLAY', '193320806527062', '[Mídia sem texto]', 'audio', '2026-02-17 23:21:55', 0, '2026-02-17 23:21:56'),
(9162, 'ACCBB0B05A5C6560F505CE67D6E2407C', 'JTVPLAY', '23313602625574', 'Agora foi', 'text', '2026-02-17 23:26:37', 0, '2026-02-17 23:26:38'),
(9163, 'AC5D31D4306ECB684D01B8C1F55A97CF', 'JTVPLAY', '23313602625574', 'Obrigado, e desculpa pelo horário', 'text', '2026-02-17 23:26:44', 0, '2026-02-17 23:26:45'),
(9164, 'A5EAB9B2A52FC58A581A05125150F439', 'JTVPLAY', '554791592447', '/pago', 'comando_admin', '2026-02-17 23:29:35', 1, '2026-02-17 23:29:37'),
(9165, 'A5F8889CC8B8887661036758830777BB', 'JTVPLAY', '554791592447', '/cadastro', 'comando_admin', '2026-02-17 23:29:46', 1, '2026-02-17 23:29:48'),
(9166, 'A5553A27DC1204E3418B06A424A1946B', 'JTVPLAY', '554791592447', '/ajuda', 'comando_admin', '2026-02-17 23:30:01', 1, '2026-02-17 23:30:03'),
(9167, 'AC2F424BE60B2648DAC743D3AC7CFA7B', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'image', '2026-02-18 06:53:47', 0, '2026-02-18 06:53:48'),
(9168, 'ACDEEDD7268A97DC3FAAFF932F596D40', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'image', '2026-02-18 06:54:41', 0, '2026-02-18 06:54:42'),
(9169, 'AC8771AB303D54BC101F8EE6EA84E4B9', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'audio', '2026-02-18 07:39:56', 0, '2026-02-18 07:39:56'),
(9170, 'ACC71E93F00DE33D58380DB71BD623BD', 'JTVPLAY', '278494319792223', 'Ta ok', 'text', '2026-02-18 07:55:38', 0, '2026-02-18 07:55:38'),
(9171, 'AC5F32CDCF856CEE43A1B008E4B226CA', 'JTVPLAY', '278494319792223', 'Pode ser', 'text', '2026-02-18 07:55:58', 0, '2026-02-18 07:55:58'),
(9172, 'ACD9265E2DEA7BECE3D17C011C72B81C', 'JTVPLAY', '278494319792223', 'Vou arrumar os 40 aqui', 'text', '2026-02-18 07:56:05', 0, '2026-02-18 07:56:05'),
(9173, 'AC95DEA48911815FE2887BC126222D2C', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'image', '2026-02-18 07:57:41', 0, '2026-02-18 07:57:42'),
(9174, 'AC9C861F8288F0C5CD7893B9488D846C', 'JTVPLAY', '278494319792223', 'Esse?', 'text', '2026-02-18 07:57:43', 0, '2026-02-18 07:57:44'),
(9175, '3EB017BB63828A668B731E', 'JTVPLAY', '5521965692055', 'Olá johnny ! Informamos que a fatura N° 274583, com vencimento em 28/02/2026, tem o valor total de R$ 34,00, já encontra-se disponível em sua área do cliente para pagamento. Evite transtornos e efetue o pagamento até a data de vencimento.', 'text', '2026-02-18 08:04:18', 0, '2026-02-18 08:04:19'),
(9176, 'AC96B18C29F0717F6F76E28C51630F3F', 'JTVPLAY', '278494319792223', 'Sim', 'text', '2026-02-18 08:13:18', 0, '2026-02-18 08:13:19'),
(9177, 'ACC7CBE848CC5A6C41B45029FBDB6F63', 'JTVPLAY', '278494319792223', 'Tudo bem rsrs', 'text', '2026-02-18 08:13:24', 0, '2026-02-18 08:13:24'),
(9178, 'AC7D0024CE66CA3DA26A67B1B6E69044', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'image', '2026-02-18 08:16:10', 0, '2026-02-18 08:16:11'),
(9179, 'ACC94634E1080EF072E704A7A4FBD85B', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'audio', '2026-02-18 08:16:16', 0, '2026-02-18 08:16:17'),
(9180, 'AC1F586E6BAE45BF1EBEDCB97505D02A', 'JTVPLAY', '278494319792223', '[Mídia sem texto]', 'audio', '2026-02-18 08:18:57', 0, '2026-02-18 08:18:58'),
(9181, 'AC49E2B08D2573C8351D9E3F16D2048E', 'JTVPLAY', '278494319792223', 'Ficou tudo escuro a tela', 'text', '2026-02-18 08:21:44', 0, '2026-02-18 08:21:45');

-- --------------------------------------------------------

--
-- Estrutura para tabela `evolution_webhook_logs`
--

CREATE TABLE `evolution_webhook_logs` (
  `id` int(11) NOT NULL,
  `evento` varchar(100) DEFAULT NULL,
  `instance_name` varchar(100) DEFAULT NULL,
  `payload` text DEFAULT NULL,
  `processado` tinyint(4) DEFAULT 0,
  `criado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `evolution_webhook_logs`
--

INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC289FF2B1858EDEED86CE95622AFB5C\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"N0UmGQH2Sb75NVTXf1svhA9mUGU9ve73KvvKxvaldio=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770771954,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:54'),
(2, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:54'),
(3, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC289FF2B1858EDEED86CE95622AFB5C\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"N0UmGQH2Sb75NVTXf1svhA9mUGU9ve73KvvKxvaldio=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770771954,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:54'),
(4, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:54'),
(5, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:54'),
(6, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:54'),
(7, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:55'),
(8, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:55'),
(9, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:55'),
(10, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A5E79AE41E56F9F701E8C7843A6D1103\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770771954,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:55'),
(11, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:55.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:55'),
(12, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5E79AE41E56F9F701E8C7843A6D1103\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770771955224,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:55.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:05:55'),
(13, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:55'),
(14, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A5E79AE41E56F9F701E8C7843A6D1103\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770771954,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:54.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:55'),
(15, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5E79AE41E56F9F701E8C7843A6D1103\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770771955224,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:55.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:56'),
(16, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:05:55.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:05:56'),
(17, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC4DE4DCA1B8D1142D2855B0C20B20F4\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Tudo bom? Cara o sinal caiu ai pq aq n ta pegando nenhum canal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9BtQL8fumIuMOZbObmHi6+se8foqRdYIalddGzTYMII=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770771978,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:06:18'),
(18, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:06:18'),
(19, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:06:18'),
(20, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:06:18'),
(21, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:06:18'),
(22, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC4DE4DCA1B8D1142D2855B0C20B20F4\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Tudo bom? Cara o sinal caiu ai pq aq n ta pegando nenhum canal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9BtQL8fumIuMOZbObmHi6+se8foqRdYIalddGzTYMII=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770771978,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:06:19'),
(23, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:06:19'),
(24, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:06:18.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:06:20'),
(25, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511992752499@s.whatsapp.net\",\"pushName\":\"Herbert2499\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597395085@s.whatsapp.net\",\"pushName\":\"Vane5085 Area51 $40\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417530_2746768722325405_6020348436774876047_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWrK0UVmtvxaYa06a6l1GInbC8JOVVW0BOCS-CKTWzVQ&oe=6998FA66&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:11:16.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:11:16'),
(26, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511992752499@s.whatsapp.net\",\"pushName\":\"Herbert2499\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597395085@s.whatsapp.net\",\"pushName\":\"Vane5085 Area51 $40\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417530_2746768722325405_6020348436774876047_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWrK0UVmtvxaYa06a6l1GInbC8JOVVW0BOCS-CKTWzVQ&oe=6998FA66&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:11:16.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:11:16'),
(27, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5511992752499@s.whatsapp.net\",\"pushName\":\"Herbert2499\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"5515997233486@s.whatsapp.net\",\"pushName\":\"Luciano3486 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-10T22:13:26.852Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:13:27'),
(28, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5511992752499@s.whatsapp.net\",\"pushName\":\"Herbert2499\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"5515997233486@s.whatsapp.net\",\"pushName\":\"Luciano3486 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/301402122_828021738229940_1936004033626000542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI7udmGC8xfgL9Ngq1MVCX11LI2p7_Lrkf3z-18qyU-A&oe=6998D2E6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-10T22:13:27.107Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:13:27'),
(29, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A5CDC2D2C304C0282F07AC03C38C38B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770772871056,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:21:11.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:21:11'),
(30, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A5CDC2D2C304C0282F07AC03C38C38B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770772871056,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:21:11.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:21:11'),
(31, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":false,\"id\":\"3A48C10862871FB75EB9\"},\"pushName\":\"Artur Amaral\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite mano, nao to consigo logar de novo\",\"contextInfo\":{\"stanzaId\":\"A5CC9A045E5F74C6C1E7FA99E4533F15\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"*Usu\\u00e1rio:* sbba5gt6\\n*Senha:* hmhsxp6x\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5WDUkh+jsNGqUQ==\",\"senderTimestamp\":\"1770220514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PINGMloBeTB5JynvGcRNac4bwda3njv8lLqmSQPXVrA=\"}},\"contextInfo\":{\"stanzaId\":\"A5CC9A045E5F74C6C1E7FA99E4533F15\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"*Usu\\u00e1rio:* sbba5gt6\\n*Senha:* hmhsxp6x\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770772992,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:12'),
(32, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:12'),
(33, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:12'),
(34, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":false,\"id\":\"3A48C10862871FB75EB9\"},\"pushName\":\"Artur Amaral\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite mano, nao to consigo logar de novo\",\"contextInfo\":{\"stanzaId\":\"A5CC9A045E5F74C6C1E7FA99E4533F15\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"*Usu\\u00e1rio:* sbba5gt6\\n*Senha:* hmhsxp6x\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5WDUkh+jsNGqUQ==\",\"senderTimestamp\":\"1770220514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PINGMloBeTB5JynvGcRNac4bwda3njv8lLqmSQPXVrA=\"}},\"contextInfo\":{\"stanzaId\":\"A5CC9A045E5F74C6C1E7FA99E4533F15\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"*Usu\\u00e1rio:* sbba5gt6\\n*Senha:* hmhsxp6x\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770772992,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:12'),
(35, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:12'),
(36, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:12'),
(37, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:12'),
(38, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:12'),
(39, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:12'),
(40, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:12'),
(41, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":true,\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770772992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:13'),
(42, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:13.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:13'),
(43, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":true,\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770772992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:12.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:13'),
(44, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:13.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:13'),
(45, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770772993378,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:13.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:13'),
(46, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770772993378,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:13.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:14'),
(47, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770772993392,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:13.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:14'),
(48, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770772993392,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:13.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:15'),
(49, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:25'),
(50, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":false,\"id\":\"3A3B6213D34160BEDAAD\"},\"pushName\":\"Artur Amaral\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOSC8qrKAnEySBI2Llm2QfEuYwzMVluHpyGIXukhn240kfvSJwGEb3ZI5X2ofP-1jismqwCdgx3HD6o34m2rAx-H65H7iocOCYCRGz8IQ?ccb=9-4&oh=01_Q5Aa3wGwW5_RVdEimGLEGmVqnsKlUqKwET4TdTjgNg6pSKcaxA&oe=69B3590D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9KH4YuS2LBlBCHthZiHocooVNM0vr045mGosDAw5SgQ=\",\"fileLength\":\"57205\",\"height\":858,\"width\":1170,\"mediaKey\":\"tq9XNde4cbUhUusaJtSaDxYoqZscBobaMrF2Rg6j\\/uQ=\",\"fileEncSha256\":\"pJQbrotF8L0Qu5AZ4OaBWX4JCUSvAUDTfttyd\\/GbLVY=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOSC8qrKAnEySBI2Llm2QfEuYwzMVluHpyGIXukhn240kfvSJwGEb3ZI5X2ofP-1jismqwCdgx3HD6o34m2rAx-H65H7iocOCYCRGz8IQ?ccb=9-4&oh=01_Q5Aa3wGwW5_RVdEimGLEGmVqnsKlUqKwET4TdTjgNg6pSKcaxA&oe=69B3590D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770773003\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABHAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAECAwQF\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAEDAgT\\/2gAMAwEAAhADEAAAAKyKnuxVgWKDCTgMmRAISxtXrPKuLU5VnTC2nQiJLXUw9HBKhoov7Oe2Q7yrxdCjLwGohbdz+lj5LZ3IvOx1ypJ12CeY0kqb0HPWQDTYMkwaYAf\\/xAAcEQADAAIDAQAAAAAAAAAAAAAAAQIDERMgMUH\\/2gAIAQIBAT8A6zO2cROJDxpfByjH6R6aZS2OGS9MVoWVDyId9v\\/EABsRAAICAwEAAAAAAAAAAAAAAAABAhEDEiAx\\/9oACAEDAQE\\/AOW6HMeQ3ssl4SLIiGOI8bFBiXX\\/xAAlEAACAgEEAgIDAQEAAAAAAAAAAQIDEQQhMVESQRAUEyJhFTP\\/2gAIAQEAAT8A8UfqjyR5nmeRkz8NmTJkz85\\/p5LsY5xXLHbFex3xPzZ4Q7ZdDtn2Oyb9jnLtkuCx\\/uzDZGuT9Ea8ckoZJV4JLAyUdi1YtFHD3K1sRqbWUhUsshhNFsR8klsaja5HL5KiM2lhMU2\\/ZJZTJ6fy7JaXG7TwNbGq\\/wCqHPHBG1ojdk\\/Jh5Q9RJeyepm1s2iV1j5kxrY1FE5zzFH1bekfUtfpC0lvQtLd0fTufQtDd\\/D\\/AD7n0PgURRMCQkJGPj\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"D6ng3LexbfAY4w==\",\"firstScanLength\":6992,\"scansSidecar\":\"D6ng3LexbfAY428AdFXpCIIH9aH4lZl86gwZHFj9eIKMMwzku5vT5g==\",\"scanLengths\":[6992,19067,8825,22319],\"midQualityFileSha256\":\"NkXJTWG3qmt6LASS1ev8YwspyMcu4EOLDKtCDUgglKU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5WDUkh+jsNGqUQ==\",\"senderTimestamp\":\"1770220514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LTLDVv78TJif3ayQw4xSCVIRHTta8ebeQFh7Byslie0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770773005,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:25'),
(51, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:25'),
(52, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:25'),
(53, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":false,\"id\":\"3A3B6213D34160BEDAAD\"},\"pushName\":\"Artur Amaral\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOSC8qrKAnEySBI2Llm2QfEuYwzMVluHpyGIXukhn240kfvSJwGEb3ZI5X2ofP-1jismqwCdgx3HD6o34m2rAx-H65H7iocOCYCRGz8IQ?ccb=9-4&oh=01_Q5Aa3wGwW5_RVdEimGLEGmVqnsKlUqKwET4TdTjgNg6pSKcaxA&oe=69B3590D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9KH4YuS2LBlBCHthZiHocooVNM0vr045mGosDAw5SgQ=\",\"fileLength\":\"57205\",\"height\":858,\"width\":1170,\"mediaKey\":\"tq9XNde4cbUhUusaJtSaDxYoqZscBobaMrF2Rg6j\\/uQ=\",\"fileEncSha256\":\"pJQbrotF8L0Qu5AZ4OaBWX4JCUSvAUDTfttyd\\/GbLVY=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOSC8qrKAnEySBI2Llm2QfEuYwzMVluHpyGIXukhn240kfvSJwGEb3ZI5X2ofP-1jismqwCdgx3HD6o34m2rAx-H65H7iocOCYCRGz8IQ?ccb=9-4&oh=01_Q5Aa3wGwW5_RVdEimGLEGmVqnsKlUqKwET4TdTjgNg6pSKcaxA&oe=69B3590D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770773003\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABHAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAECAwQF\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAEDAgT\\/2gAMAwEAAhADEAAAAKyKnuxVgWKDCTgMmRAISxtXrPKuLU5VnTC2nQiJLXUw9HBKhoov7Oe2Q7yrxdCjLwGohbdz+lj5LZ3IvOx1ypJ12CeY0kqb0HPWQDTYMkwaYAf\\/xAAcEQADAAIDAQAAAAAAAAAAAAAAAQIDERMgMUH\\/2gAIAQIBAT8A6zO2cROJDxpfByjH6R6aZS2OGS9MVoWVDyId9v\\/EABsRAAICAwEAAAAAAAAAAAAAAAABAhEDEiAx\\/9oACAEDAQE\\/AOW6HMeQ3ssl4SLIiGOI8bFBiXX\\/xAAlEAACAgEEAgIDAQEAAAAAAAAAAQIDEQQhMVESQRAUEyJhFTP\\/2gAIAQEAAT8A8UfqjyR5nmeRkz8NmTJkz85\\/p5LsY5xXLHbFex3xPzZ4Q7ZdDtn2Oyb9jnLtkuCx\\/uzDZGuT9Ea8ckoZJV4JLAyUdi1YtFHD3K1sRqbWUhUsshhNFsR8klsaja5HL5KiM2lhMU2\\/ZJZTJ6fy7JaXG7TwNbGq\\/wCqHPHBG1ojdk\\/Jh5Q9RJeyepm1s2iV1j5kxrY1FE5zzFH1bekfUtfpC0lvQtLd0fTufQtDd\\/D\\/AD7n0PgURRMCQkJGPj\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"D6ng3LexbfAY4w==\",\"firstScanLength\":6992,\"scansSidecar\":\"D6ng3LexbfAY428AdFXpCIIH9aH4lZl86gwZHFj9eIKMMwzku5vT5g==\",\"scanLengths\":[6992,19067,8825,22319],\"midQualityFileSha256\":\"NkXJTWG3qmt6LASS1ev8YwspyMcu4EOLDKtCDUgglKU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5WDUkh+jsNGqUQ==\",\"senderTimestamp\":\"1770220514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LTLDVv78TJif3ayQw4xSCVIRHTta8ebeQFh7Byslie0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770773005,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:25'),
(54, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:23:25'),
(55, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:26'),
(56, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:23:25.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:23:26'),
(57, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:29:37'),
(58, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0937273E04D6C41DF78\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM-qCFu2i9uG69tqPBjKneXT4371-74r_uV4bXqHBtVjtJq-757doJzwWT9s4zZ3cWYg95r-Ei9eFa16OWyjtU6HJ59xPNQqRkwL-d7-g?ccb=9-4&oh=01_Q5Aa3wHhoBq9E-DpHXZkXO9e-rWTizGjQ9yvg5ByiiW_w4VZ-w&oe=69B349DE&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8RJPu3E\\/ZbJJGgBV9R34ayJ5sEMSh0Y0D3u0KMQW51U=\",\"fileLength\":\"140196\",\"height\":900,\"width\":1600,\"mediaKey\":\"pIWO0hzu6ljcGBtaxvgIxbArW8SeG6bWDkUYXxMHGCY=\",\"fileEncSha256\":\"Ki5B9WqtQYYG+zsNqfjoLNuud0aPTuslDVmaHZNBdy4=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM-qCFu2i9uG69tqPBjKneXT4371-74r_uV4bXqHBtVjtJq-757doJzwWT9s4zZ3cWYg95r-Ei9eFa16OWyjtU6HJ59xPNQqRkwL-d7-g?ccb=9-4&oh=01_Q5Aa3wHhoBq9E-DpHXZkXO9e-rWTizGjQ9yvg5ByiiW_w4VZ-w&oe=69B349DE&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770773373\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgABAAICAwEBAQAAAAAAAAAAAAMIBwkCBAUGCgH\\/xABGEAABAgMEBgQKCAILAAAAAAABAgMABBEFBgcSCAkTFCExIlFYphUXQVKSlaHS0+EZJTJhcZbU5EJIIyYzNDdXdoGGkZT\\/xAAaAQADAQEBAQAAAAAAAAAAAAAAAQIEBQMG\\/8QAMhEAAQIDAwkHBQEAAAAAAAAAAQACAwRRBRETFCExQZKhsdHiEiJDYXGRkxUyUqLS8P\\/aAAwDAQACEQMRAD8ApReOWl7NmLPTNsWYVWlJy88h6TthucQ206ngl4MlRadTSimlAOJI4p4gm3ujnq6bNx+wau\\/i0vFxdgG3d7+rhd1c3sdhNPMf2omUZs2xzfZFM1ONKml00ZdBa3crIU0lSsyknp040y8hXkDx642uaHGIGEl2tFPDWysQZizhMqatOcQ1NWS5Nko8KT7aFpUlCgkiryeuilcgo1+jdGnZh3ZgAucdQaCfYBcNkjKsHeFw83Hmse\\/RD2X2gHPyg5+sh9EPZdP8f1\\/lBz9ZFnXsWdF7cGrNYN3W5eWXtZVld13VNMuF3aKUlAaABK+lUUObpcTH0TGk3gPLoSym+JbabQlCG27KmgEgV4D+jpSlABThT\\/pYNta4T\\/j6V6iTkDou2jzVQPoh7L7QDn5Qc\\/WR\\/TqiLNIAOkC4QkUH9UXOA\\/8AZFuntKPBHZLSzfgIcKTkUuypxSQqnAkBsVH3VH4iB0qMCRzvsr1ZN\\/ChYdsjwn\\/H0qhIyR0D9jzVRPohrL\\/z\\/X+UF\\/rIfRD2X2gHPyg5+si3R0rMBhzvur1ZOfCjidLDAQc78q9Vznwons2uPDdsdKsWdKHQ3eeaqjKaplqRadYlNIl9pD+UuBN0F8SAQD\\/fOBGZVD98ddOqKsxKVpOPy1Zk5QTdFzo8Qaik593lrz6+MWzOlpgCOd+leq5z4UcTpcaPw538V6qnfhQE2voLHbHSmLKldIZvdzVaZHVW2NLsBE9jMLRdLrrq3pi7k6FLLhb2lQi0EjpJbUgmlSl1dSSEFHnp1St20oWycZCokVDpuu9UVI5UnacKeUfxHy0paQ6Xej2Od\\/Veqp34Medb+lBov3nsl+wrxXsan7Pmcu2l3rHnVIXlUFJqNj5FJB\\/2hNdajM3YdsD+U\\/o0DUw+7uaqtKaoSXK5gT+kE6EpdpLqYuqrpt5Emq0qmOirOVigKhQJNakpCLyYO25hXb101zWD6JRFhtTjjKxLSTksneMqVLqlxKVKOVSOlQ8KCvCgRjdPTcJxY43EVAv4Jus2WvzsuPq7mtA0za9pTcu3JzNpTT8u1l2bTrqlIQQkJFEkkCgASPuA\\/CNwGgxaKZfREwrkHb5Iu8LSVbbDDgmZVt2YmfCzxQ22l9KgtRSHeCUk0ry4Rpydl5thlqZelXm2XqhpxSCErpQnKTwNMyeXWOuNseiU5iYvRFwZlMMLTmZGdmF3l3tyXkmJpzd0T0ysAIfo0Cp1LScy1tgZvtVohVR4ogtDzWl+nMrhQ8QlquPdwTD9nIelb0vW80eU2p6XVm8vNhKUclDycgPxPqbG0Otfp\\/OMRWXcnSSnXS3PY5TlnpyZw47dOy1pJrwR0Hic1OJ4ZeomPS8W2P8A2le5sl70YXRiTfcFoEMAXXrJextDrX6fzhsbQ61+n84xp4tsf+0r3Nkveh4tsf8AtK9zZL3oWKaBPDFVkvY2h1r9P5w2Noda\\/T+cY08W2P8A2le5sl70PFtj\\/wBpXubJe9BimgRhiqyXsbQ61+n84bG0Otfp\\/OMaeLbH\\/tK9zZL3oeLbH\\/tK9zZL3oMU0CMMVWS9jaHWv0\\/nDY2h1r9P5xjTxbY\\/9pXubJe9DxbY\\/wDaV7myXvQYpoEYYqsnOBQKQv7QSK\\/jSEdaQlrQkrOkpO1rT8IzzEs01MzmxSzvLqUALd2aeCMygVZRwFaCESmV+eW3H7GXdqXL0itqfSlhMsUZGQtJYb2jikpk0bRPQpxeJClFXTqpa9wWrssyUm9ETDC1nTMJmbPNtFhTcy42mi7Tm0qStCVBLiTwOVYUApKVAZkgjTaLk2ibGet4W3dvdmCkKbNuSomDmy0yy+fbK+2KlKDSiq0yqpuf1c7ex0NsPm9q25Twt0m1VSfrWb5GOhNtIhj1WaCe8rLbw95\\/sEN4e8\\/2CI4RzlpUm8Pef7BDeHvP9giOECFJvD3n+wQ3h7z\\/AGCI4QIUm8Pef7BDeHvP9giOECFJvD3n+wQ3h7z\\/AGCI4QIQkqUVKJJPOEIQ0l+e6ZsW17BklWa05dpMvPSrYVs5CRn3AHJZklQeUXXWnCkpUQFJLbhdSA2pK0Jupo5adVj6PGCV28IBdCSvG9YaHV+EG7WmJVte9TC5pSFIVJqKFNF9TSsudJU0SlSkqBhCOibon3C9cgxogvAPBfaTGtoDD6WWsAhMIU2lZdbvVRKVEJJQc0mFVGYg0BHRNCeBMs1rYm5dSQzgU1NBSUKJavSoBJUlJKTnkk8UklJpwqk0JFCUIgwWHUmJmKNfBST2tel5QkMYKys5R1bYLF6HRVKQkhfTkE9FWYgfxdE1A6JPZntanZ0omaLGFVlzpl3Xm2wxeaaBmUocQlLje0s1NEuBalpz5VBLS8wQooSpCJyZpAznNv8A95XK8qiHOvMf1tKGUslvAVDxcSSoIvUoFo5lCis0kONAD0aiihxrUCI63Cn8v3ev9nCEeogQzqSyiLXguB1ulOWj5X\\/ln7OOKtbvl\\/l772fs4QixLQjq4q8oiVUKdbSzMTaMujyEvOFDec3y2YNCcoUoygFBmP2jTiax3pLWvTtsKaZs7R33iYdL2SXbvlR0htvMo5dzFapJyjmSkgCoEIR6ZLBpxVCNEqukdb4Umh0eOP8Aq39lCEIvI4P47yjHiVX\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770773377,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:29:37'),
(59, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773377946,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:29:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(60, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0937273E04D6C41DF78\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM-qCFu2i9uG69tqPBjKneXT4371-74r_uV4bXqHBtVjtJq-757doJzwWT9s4zZ3cWYg95r-Ei9eFa16OWyjtU6HJ59xPNQqRkwL-d7-g?ccb=9-4&oh=01_Q5Aa3wHhoBq9E-DpHXZkXO9e-rWTizGjQ9yvg5ByiiW_w4VZ-w&oe=69B349DE&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8RJPu3E\\/ZbJJGgBV9R34ayJ5sEMSh0Y0D3u0KMQW51U=\",\"fileLength\":\"140196\",\"height\":900,\"width\":1600,\"mediaKey\":\"pIWO0hzu6ljcGBtaxvgIxbArW8SeG6bWDkUYXxMHGCY=\",\"fileEncSha256\":\"Ki5B9WqtQYYG+zsNqfjoLNuud0aPTuslDVmaHZNBdy4=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM-qCFu2i9uG69tqPBjKneXT4371-74r_uV4bXqHBtVjtJq-757doJzwWT9s4zZ3cWYg95r-Ei9eFa16OWyjtU6HJ59xPNQqRkwL-d7-g?ccb=9-4&oh=01_Q5Aa3wHhoBq9E-DpHXZkXO9e-rWTizGjQ9yvg5ByiiW_w4VZ-w&oe=69B349DE&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770773373\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgABAAICAwEBAQAAAAAAAAAAAAMIBwkCBAUGCgH\\/xABGEAABAgMEBgQKCAILAAAAAAABAgMABBEFBgcSCAkTFCExIlFYphUXQVKSlaHS0+EZJTJhcZbU5EJIIyYzNDdXdoGGkZT\\/xAAaAQADAQEBAQAAAAAAAAAAAAAAAQIEBQMG\\/8QAMhEAAQIDAwkHBQEAAAAAAAAAAQACAwRRBRETFCExQZKhsdHiEiJDYXGRkxUyUqLS8P\\/aAAwDAQACEQMRAD8ApReOWl7NmLPTNsWYVWlJy88h6TthucQ206ngl4MlRadTSimlAOJI4p4gm3ujnq6bNx+wau\\/i0vFxdgG3d7+rhd1c3sdhNPMf2omUZs2xzfZFM1ONKml00ZdBa3crIU0lSsyknp040y8hXkDx642uaHGIGEl2tFPDWysQZizhMqatOcQ1NWS5Nko8KT7aFpUlCgkiryeuilcgo1+jdGnZh3ZgAucdQaCfYBcNkjKsHeFw83Hmse\\/RD2X2gHPyg5+sh9EPZdP8f1\\/lBz9ZFnXsWdF7cGrNYN3W5eWXtZVld13VNMuF3aKUlAaABK+lUUObpcTH0TGk3gPLoSym+JbabQlCG27KmgEgV4D+jpSlABThT\\/pYNta4T\\/j6V6iTkDou2jzVQPoh7L7QDn5Qc\\/WR\\/TqiLNIAOkC4QkUH9UXOA\\/8AZFuntKPBHZLSzfgIcKTkUuypxSQqnAkBsVH3VH4iB0qMCRzvsr1ZN\\/ChYdsjwn\\/H0qhIyR0D9jzVRPohrL\\/z\\/X+UF\\/rIfRD2X2gHPyg5+si3R0rMBhzvur1ZOfCjidLDAQc78q9Vznwons2uPDdsdKsWdKHQ3eeaqjKaplqRadYlNIl9pD+UuBN0F8SAQD\\/fOBGZVD98ddOqKsxKVpOPy1Zk5QTdFzo8Qaik593lrz6+MWzOlpgCOd+leq5z4UcTpcaPw538V6qnfhQE2voLHbHSmLKldIZvdzVaZHVW2NLsBE9jMLRdLrrq3pi7k6FLLhb2lQi0EjpJbUgmlSl1dSSEFHnp1St20oWycZCokVDpuu9UVI5UnacKeUfxHy0paQ6Xej2Od\\/Veqp34Medb+lBov3nsl+wrxXsan7Pmcu2l3rHnVIXlUFJqNj5FJB\\/2hNdajM3YdsD+U\\/o0DUw+7uaqtKaoSXK5gT+kE6EpdpLqYuqrpt5Emq0qmOirOVigKhQJNakpCLyYO25hXb101zWD6JRFhtTjjKxLSTksneMqVLqlxKVKOVSOlQ8KCvCgRjdPTcJxY43EVAv4Jus2WvzsuPq7mtA0za9pTcu3JzNpTT8u1l2bTrqlIQQkJFEkkCgASPuA\\/CNwGgxaKZfREwrkHb5Iu8LSVbbDDgmZVt2YmfCzxQ22l9KgtRSHeCUk0ry4Rpydl5thlqZelXm2XqhpxSCErpQnKTwNMyeXWOuNseiU5iYvRFwZlMMLTmZGdmF3l3tyXkmJpzd0T0ysAIfo0Cp1LScy1tgZvtVohVR4ogtDzWl+nMrhQ8QlquPdwTD9nIelb0vW80eU2p6XVm8vNhKUclDycgPxPqbG0Otfp\\/OMRWXcnSSnXS3PY5TlnpyZw47dOy1pJrwR0Hic1OJ4ZeomPS8W2P8A2le5sl70YXRiTfcFoEMAXXrJextDrX6fzhsbQ61+n84xp4tsf+0r3Nkveh4tsf8AtK9zZL3oWKaBPDFVkvY2h1r9P5w2Noda\\/T+cY08W2P8A2le5sl70PFtj\\/wBpXubJe9BimgRhiqyXsbQ61+n84bG0Otfp\\/OMaeLbH\\/tK9zZL3oeLbH\\/tK9zZL3oMU0CMMVWS9jaHWv0\\/nDY2h1r9P5xjTxbY\\/9pXubJe9DxbY\\/wDaV7myXvQYpoEYYqsnOBQKQv7QSK\\/jSEdaQlrQkrOkpO1rT8IzzEs01MzmxSzvLqUALd2aeCMygVZRwFaCESmV+eW3H7GXdqXL0itqfSlhMsUZGQtJYb2jikpk0bRPQpxeJClFXTqpa9wWrssyUm9ETDC1nTMJmbPNtFhTcy42mi7Tm0qStCVBLiTwOVYUApKVAZkgjTaLk2ibGet4W3dvdmCkKbNuSomDmy0yy+fbK+2KlKDSiq0yqpuf1c7ex0NsPm9q25Twt0m1VSfrWb5GOhNtIhj1WaCe8rLbw95\\/sEN4e8\\/2CI4RzlpUm8Pef7BDeHvP9giOECFJvD3n+wQ3h7z\\/AGCI4QIUm8Pef7BDeHvP9giOECFJvD3n+wQ3h7z\\/AGCI4QIQkqUVKJJPOEIQ0l+e6ZsW17BklWa05dpMvPSrYVs5CRn3AHJZklQeUXXWnCkpUQFJLbhdSA2pK0Jupo5adVj6PGCV28IBdCSvG9YaHV+EG7WmJVte9TC5pSFIVJqKFNF9TSsudJU0SlSkqBhCOibon3C9cgxogvAPBfaTGtoDD6WWsAhMIU2lZdbvVRKVEJJQc0mFVGYg0BHRNCeBMs1rYm5dSQzgU1NBSUKJavSoBJUlJKTnkk8UklJpwqk0JFCUIgwWHUmJmKNfBST2tel5QkMYKys5R1bYLF6HRVKQkhfTkE9FWYgfxdE1A6JPZntanZ0omaLGFVlzpl3Xm2wxeaaBmUocQlLje0s1NEuBalpz5VBLS8wQooSpCJyZpAznNv8A95XK8qiHOvMf1tKGUslvAVDxcSSoIvUoFo5lCis0kONAD0aiihxrUCI63Cn8v3ev9nCEeogQzqSyiLXguB1ulOWj5X\\/ln7OOKtbvl\\/l772fs4QixLQjq4q8oiVUKdbSzMTaMujyEvOFDec3y2YNCcoUoygFBmP2jTiax3pLWvTtsKaZs7R33iYdL2SXbvlR0htvMo5dzFapJyjmSkgCoEIR6ZLBpxVCNEqukdb4Umh0eOP8Aq39lCEIvI4P47yjHiVX\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770773377,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:29:38'),
(61, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773377946,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:29:38'),
(62, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irm\\u00e3o Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:29:38'),
(63, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:29:38'),
(64, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irm\\u00e3o Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:37.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:29:38'),
(65, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773378678,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:38.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:29:38'),
(66, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773378678,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:38.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:29:38'),
(67, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773378972,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:38.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:29:39'),
(68, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773378972,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:29:38.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:29:39'),
(69, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0654C32CD07DD6B1399\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770773426,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:26.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:26'),
(70, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0654C32CD07DD6B1399\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770773426,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:26.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:27'),
(71, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5519996008214@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:26.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:27'),
(72, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"id\":\"3EB0654C32CD07DD6B1399\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773427129,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:27.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:27'),
(73, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5519996008214@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:26.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:27'),
(74, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"id\":\"3EB0654C32CD07DD6B1399\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773427129,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:27.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:27'),
(75, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5519996008214@s.whatsapp.net\",\"pushName\":\"Elder Fraleoni $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:27.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:27'),
(76, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5519996008214@s.whatsapp.net\",\"pushName\":\"Elder Fraleoni $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:27.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:27'),
(77, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07CE03C834787813E4E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"normalizou ?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770773429,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:29.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:29'),
(78, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5519996008214@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:29.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:29'),
(79, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5519996008214@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:29.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:30'),
(80, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07CE03C834787813E4E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"normalizou ?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770773429,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:29.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:30'),
(81, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5519996008214@s.whatsapp.net\",\"pushName\":\"Elder Fraleoni $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:30.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:30'),
(82, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"id\":\"3EB07CE03C834787813E4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773430300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:30.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:30:30'),
(83, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5519996008214@s.whatsapp.net\",\"pushName\":\"Elder Fraleoni $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:30.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:30'),
(84, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519996008214@s.whatsapp.net\",\"id\":\"3EB07CE03C834787813E4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770773430300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:30:30.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:30:31'),
(85, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:31:52'),
(86, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"3EB07CE03C834787813E4E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773512014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:31:52'),
(87, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"3EB0654C32CD07DD6B1399\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773512021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:31:52'),
(88, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC09791D8458900BD7993E1D95801CA1\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Normalizou, vlw\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hiojOoPQRqcvzn504sOVfIFWAr3HuXoxe2ftSfKa7Yc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770773511,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:31:52'),
(89, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:31:52'),
(90, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"3EB07CE03C834787813E4E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773512014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:31:53'),
(91, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:31:53'),
(92, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:31:53'),
(93, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"3EB0654C32CD07DD6B1399\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773512021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:31:53'),
(94, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC09791D8458900BD7993E1D95801CA1\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Normalizou, vlw\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hiojOoPQRqcvzn504sOVfIFWAr3HuXoxe2ftSfKa7Yc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770773511,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:31:53'),
(95, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:31:54'),
(96, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOwCCyMGFL1vnR7JFWFkUaC-h1FR4VpNToTI6aTprMjQ&oe=6998D933&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:31:52.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:31:54'),
(97, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773557704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:32:37.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:32:37'),
(98, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773557704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:32:37.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:32:37'),
(99, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773557711,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:32:37.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:32:38'),
(100, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770773557711,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:32:37.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:32:38'),
(101, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770773559801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:32:39.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:32:39'),
(102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770773559801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:32:39.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:32:40'),
(103, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB042FE376C90C6CB7250\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m237\\/AQPTufq_vPhlfXpegU390rhCIdJ5bY4vUTcfpmmrTb7LygGSbQiTWiHKWjhDC0LV3BHii7zOVXfpwveu8dwbm9tnnBle8uHAu_pbsPm1lA?ccb=9-4&oh=01_Q5Aa3wFhqBcwtT92doXw-GejX1tlcb5f2SN3ZdiQaT12dMmMEw&oe=69B3619D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"melhorado\",\"fileSha256\":\"aCB2atkq\\/qGdg4JQKpxOJr7XJzc6dLBg7IoyFR+jD1w=\",\"fileLength\":\"160734\",\"height\":900,\"width\":1600,\"mediaKey\":\"s24t+V7glYSzxDREIn3usUryO3ayKzXMDKn2ZMGt1HY=\",\"fileEncSha256\":\"ERavmSrl6lQ8BoQv6sJFF6iaNR+s8LQDFxyhDHgKka8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m237\\/AQPTufq_vPhlfXpegU390rhCIdJ5bY4vUTcfpmmrTb7LygGSbQiTWiHKWjhDC0LV3BHii7zOVXfpwveu8dwbm9tnnBle8uHAu_pbsPm1lA?ccb=9-4&oh=01_Q5Aa3wFhqBcwtT92doXw-GejX1tlcb5f2SN3ZdiQaT12dMmMEw&oe=69B3619D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770774299\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAQQCAwEAAAAAAAAAAAAAAAIDBQgBCQQGBwr\\/xABEEAACAQIDBQQFCAYKAwAAAAABAgMEEQAFEgYHCBMhCRQxUSJBU5LhFTJScZGV0dMWQkeWseQZIyQzQ0RIYYHUVHKG\\/8QAGgEAAgMBAQAAAAAAAAAAAAAAAAIBAwQFBv\\/EADQRAAECAwQHBQgDAAAAAAAAAAEAAgMEERITQVEFFCExcbHRQ5Kh4vAVIiUyQlJhk1ORov\\/aAAwDAQACEQMRAD8ApRtHTU+W1GXrVwZYWzKjp65JqPOI6xI4pV6LMISxilW1miYCRSOq9QTb7h17OrL+IDc5s\\/vcl3uyZE2fd7vl\\/wCjz1nJ5FVLT\\/3wqU1auTq+aLardbXNLao06GLu5cholZtTKfTt1tp8BfwB6+eNrnBxvA3SbNcKe7XKt4NRlwqWizOsSKqymSrJT5Ur40dWVGCkXmXzszeAY39G6NOzDrMAFzjgGgn+gFw2SMqwe8KD8uPVefr2RWXIGC8QUoDjSwGyMnUXvY\\/2zzAxj+iHys\\/t\\/f8AdCT\\/ALmLOTb2eF7uEWWwHZ2Onpn5tLC+y8rRQyGXmMyoIgAS\\/pXFjq9Lqcdig4m9w9OiwrtiY4o0VEjjyqqAUC\\/Qf1drWsALdLfZFzprGC\\/9flVwk5A7qd49VUAdkPlg8OICT90JP+5hQ7IugEbQjiDmEbMGZP0RksSLgEjvniLn7Ti3M3FHuR5TrDtwEkKnQz5VWMoa3QkCMXH+1x9YwHio3Ejx22b7sq\\/ysRd6Z\\/if+vyqRIyR3D\\/R6qo7dkbRNGkLcQs5jjvoU7JSWW\\/jYd86Xw2vZC5Sosu\\/5wLk9Nj38T1P+cxbs8Vm4YeO27fdlZ+VhJ4sNwg8duW+66z8rC2dLjsndzypxo6VO4eLuqqgnZMrHTpSR8R9YsETSukQ2VlCK0qKkpA77YF0VVb6QUA3AGF1vZPR5ksa5jxETVRghSCFpNkZC0aIqqoB754BUVQDcACw9WLUni03Ajx26b7rrPysJPFxw\\/Dx28b7qrfysR8Xb2bu55VPsmVca2NvF3VVnyvsqcgy6lihl3wx1csfMXnSbN1iExuU1R2jzBQFKrIhsOqzyX66CnBXsldm1R4TvkLEi4lOy81xcjwtW26W9Y\\/WPrta0h4u+HseO3rfdVb+TiOz\\/ig4X9p8pnyLaLayKvy+p086nmyetZH0sGW45PqZQf8AjENdpRn0O7lebfBMdDwHGt2a8XdfW\\/eqrUnZCU5eoFfxBShVltTtBsq3px6FN3Vqj0W1lxYFhYKb3JUGLybnc83V59sm9VufSkTI4qySFxTUUlMveNKs91kVWY6WT0rHpYX6WBjI6em4TixxoRmBXkh2jZau1lDxd1WgapzfMqunjo6nMqqeni08uKWVmRCFCiykkCwAUf7AfVjcBwMZitPwibq6CXbJNnhmTZ3BBIKmljlqKn5WmKRxrOrB2KiXoqk2v4dMacpaerghiqZqWaOGa4ikZCFe1idJPQ21L4eY88bq+zrnql4PN260xjsxzlpAyMxKjNKkWWxFjcg3segI9dw0Z92A4CvHgU0NlokesF7\\/ALOCony5JqXambPoj4VbTU7avX4wKqeDD1eAH1mU5OYeb+\\/8cOLNmGkakjJ9ZEbDr9V8Z5td9BPcP44xOjFxrQLQIYApUprk5h5v7\\/xwcnMPN\\/f+OHebXfQT3D+OMLUVjC6rGR5hGt\\/HEXpyCmwE3ycw839\\/44OTmHm\\/v\\/HDvNrvoJ7h\\/HBza76Ce4fxwXpyCLATXJzDzf3\\/AI4OTmHm\\/v8Axwqasq4FDvHcFlUBIXc3JAHRbm1yLnwA6mwBOFiauIvy09xvxwXpyCLATXJzDzf3\\/jg5OYeb+\\/8AHDvNrvoJ7h\\/HBza76Ce4fxwXpyCLASZAwKh\\/nBRf67YMZlJZgzWuVBNvqwYRMvnbzyfJn2apzNQvFXqsC0xTRCHUwR8yRlWjTmL6FusxIZi3p3Z33Adn0K6Tgq2AXK6qKmrGgz0U800TSxxy\\/KtRpZ0V0Z1BsSodSRcahe+NN42JzE5NNnwzvZvu0BUNGc8pRUHVptpp9fOb54uVQ2s17aWtuO4Aqyjyrgy3bx1G0WS0EshzlIZa1gySH5VqWYKOZHq9EG9j06H1WPTmGODRQV28VlhGpPBdxXfltPkyztnmSRSuldUUscAlqKdoWgDNKrseaZLAwqrBVRtQe6gssfoW7\\/brPdtMtkzWv2clymnJAp3NYk4n6sHtpAIClbXI636eBxP5FtJsjnTwZdl+1ORZrmDUgqmSgqo2MkY0hpljDswj1MvW5A1KLm\\/Wb7rT+yGK48xBIs3Nl3rBMyDEbvfVR\\/eaj2rfbhh0L\\/406jySZ0H2KRiX7rT+yGDutP7IYy3rMlbYdmo1Z50GkTPbqerE\\/wAcK7zUe1b7cSHdaf2Qwd1p\\/ZDEXjMkWHZqMlklmXS80gHmrlT9o64yk00d9M0h1G51OT\\/Hw+rEl3Wn9kMHdaf2QwXrMkWHZqP7zUe1b7cHeaj2rfbiQ7rT+yGDutP7IYLxmSLDs1x5PFf\\/AFH8MGFVAAksPAAYMVBOV89VTkub5DRNlsUmzS09dSxhuXQUNfIBJTQksJmMssUhUqxAZTHIZVAjZXRbq8OHHZlPDruT2b3QJslR7RTZIkr9\\/jzeopY371UPVMrI1GxRojUNE2nWrNESrMpBwYMdIgRPmFVxzHiNqAeS7tUdrdJBOsMW4U1CNGrmWPaqyqxCkodVGGuNRBsCPRNiehLtV2tBp2UQ7jY6oMqMTFtSwCllUlTrol6qSVNul1NiRYkwYQwYZwTCaijHknK7tZI6QkQbmKastK8YMG1EouqhSH9OgX0W1ED9b0TcD0SeTXdqzR0i1Rg3W5ZWmnlmjjEG01UDUqkiKskfMy1bLIHZ116WCxPqCMUVjBhdWYQNu7x9fiifW4h2qMn7W9oVhMe4hZjIpLBNqiDEdTCzaqIdbAH0bizDre4DR7XaQfsBP71\\/yeDBiwQIZwS6zFz5JB7XqUeHD+T\\/APWfyeEt2vsq\\/wCn4\\/vZ\\/J4MGLBLQjgn1iJmmV7W9airTTw+aZpCkes7ZcsGxOkMxpALAsfnG3U3xzqLtZMxzhoYcu4ejUVEpm0U8e2VpSI49THT3MXupOkeJKkAXAwYMWapB+3mnEeJmuA3a+tqJbh6Nz432u\\/4\\/wDC6YMGDDiTg\\/b4lQY8TNf\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770774301,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:01.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:02'),
(104, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:01.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:02'),
(105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:01.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:02'),
(106, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB042FE376C90C6CB7250\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m237\\/AQPTufq_vPhlfXpegU390rhCIdJ5bY4vUTcfpmmrTb7LygGSbQiTWiHKWjhDC0LV3BHii7zOVXfpwveu8dwbm9tnnBle8uHAu_pbsPm1lA?ccb=9-4&oh=01_Q5Aa3wFhqBcwtT92doXw-GejX1tlcb5f2SN3ZdiQaT12dMmMEw&oe=69B3619D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"melhorado\",\"fileSha256\":\"aCB2atkq\\/qGdg4JQKpxOJr7XJzc6dLBg7IoyFR+jD1w=\",\"fileLength\":\"160734\",\"height\":900,\"width\":1600,\"mediaKey\":\"s24t+V7glYSzxDREIn3usUryO3ayKzXMDKn2ZMGt1HY=\",\"fileEncSha256\":\"ERavmSrl6lQ8BoQv6sJFF6iaNR+s8LQDFxyhDHgKka8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m237\\/AQPTufq_vPhlfXpegU390rhCIdJ5bY4vUTcfpmmrTb7LygGSbQiTWiHKWjhDC0LV3BHii7zOVXfpwveu8dwbm9tnnBle8uHAu_pbsPm1lA?ccb=9-4&oh=01_Q5Aa3wFhqBcwtT92doXw-GejX1tlcb5f2SN3ZdiQaT12dMmMEw&oe=69B3619D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770774299\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAQQCAwEAAAAAAAAAAAAAAAIDBQgBCQQGBwr\\/xABEEAACAQIDBQQFCAYKAwAAAAABAgMEEQAFEgYHCBMhCRQxUSJBU5LhFTJScZGV0dMWQkeWseQZIyQzQ0RIYYHUVHKG\\/8QAGgEAAgMBAQAAAAAAAAAAAAAAAAIBAwQFBv\\/EADQRAAECAwQHBQgDAAAAAAAAAAEAAgMEERITQVEFFCExcbHRQ5Kh4vAVIiUyQlJhk1ORov\\/aAAwDAQACEQMRAD8ApRtHTU+W1GXrVwZYWzKjp65JqPOI6xI4pV6LMISxilW1miYCRSOq9QTb7h17OrL+IDc5s\\/vcl3uyZE2fd7vl\\/wCjz1nJ5FVLT\\/3wqU1auTq+aLardbXNLao06GLu5cholZtTKfTt1tp8BfwB6+eNrnBxvA3SbNcKe7XKt4NRlwqWizOsSKqymSrJT5Ur40dWVGCkXmXzszeAY39G6NOzDrMAFzjgGgn+gFw2SMqwe8KD8uPVefr2RWXIGC8QUoDjSwGyMnUXvY\\/2zzAxj+iHys\\/t\\/f8AdCT\\/ALmLOTb2eF7uEWWwHZ2Onpn5tLC+y8rRQyGXmMyoIgAS\\/pXFjq9Lqcdig4m9w9OiwrtiY4o0VEjjyqqAUC\\/Qf1drWsALdLfZFzprGC\\/9flVwk5A7qd49VUAdkPlg8OICT90JP+5hQ7IugEbQjiDmEbMGZP0RksSLgEjvniLn7Ti3M3FHuR5TrDtwEkKnQz5VWMoa3QkCMXH+1x9YwHio3Ejx22b7sq\\/ysRd6Z\\/if+vyqRIyR3D\\/R6qo7dkbRNGkLcQs5jjvoU7JSWW\\/jYd86Xw2vZC5Sosu\\/5wLk9Nj38T1P+cxbs8Vm4YeO27fdlZ+VhJ4sNwg8duW+66z8rC2dLjsndzypxo6VO4eLuqqgnZMrHTpSR8R9YsETSukQ2VlCK0qKkpA77YF0VVb6QUA3AGF1vZPR5ksa5jxETVRghSCFpNkZC0aIqqoB754BUVQDcACw9WLUni03Ajx26b7rrPysJPFxw\\/Dx28b7qrfysR8Xb2bu55VPsmVca2NvF3VVnyvsqcgy6lihl3wx1csfMXnSbN1iExuU1R2jzBQFKrIhsOqzyX66CnBXsldm1R4TvkLEi4lOy81xcjwtW26W9Y\\/WPrta0h4u+HseO3rfdVb+TiOz\\/ig4X9p8pnyLaLayKvy+p086nmyetZH0sGW45PqZQf8AjENdpRn0O7lebfBMdDwHGt2a8XdfW\\/eqrUnZCU5eoFfxBShVltTtBsq3px6FN3Vqj0W1lxYFhYKb3JUGLybnc83V59sm9VufSkTI4qySFxTUUlMveNKs91kVWY6WT0rHpYX6WBjI6em4TixxoRmBXkh2jZau1lDxd1WgapzfMqunjo6nMqqeni08uKWVmRCFCiykkCwAUf7AfVjcBwMZitPwibq6CXbJNnhmTZ3BBIKmljlqKn5WmKRxrOrB2KiXoqk2v4dMacpaerghiqZqWaOGa4ikZCFe1idJPQ21L4eY88bq+zrnql4PN260xjsxzlpAyMxKjNKkWWxFjcg3segI9dw0Z92A4CvHgU0NlokesF7\\/ALOCony5JqXambPoj4VbTU7avX4wKqeDD1eAH1mU5OYeb+\\/8cOLNmGkakjJ9ZEbDr9V8Z5td9BPcP44xOjFxrQLQIYApUprk5h5v7\\/xwcnMPN\\/f+OHebXfQT3D+OMLUVjC6rGR5hGt\\/HEXpyCmwE3ycw839\\/44OTmHm\\/v\\/HDvNrvoJ7h\\/HBza76Ce4fxwXpyCLATXJzDzf3\\/AI4OTmHm\\/v8Axwqasq4FDvHcFlUBIXc3JAHRbm1yLnwA6mwBOFiauIvy09xvxwXpyCLATXJzDzf3\\/jg5OYeb+\\/8AHDvNrvoJ7h\\/HBza76Ce4fxwXpyCLASZAwKh\\/nBRf67YMZlJZgzWuVBNvqwYRMvnbzyfJn2apzNQvFXqsC0xTRCHUwR8yRlWjTmL6FusxIZi3p3Z33Adn0K6Tgq2AXK6qKmrGgz0U800TSxxy\\/KtRpZ0V0Z1BsSodSRcahe+NN42JzE5NNnwzvZvu0BUNGc8pRUHVptpp9fOb54uVQ2s17aWtuO4Aqyjyrgy3bx1G0WS0EshzlIZa1gySH5VqWYKOZHq9EG9j06H1WPTmGODRQV28VlhGpPBdxXfltPkyztnmSRSuldUUscAlqKdoWgDNKrseaZLAwqrBVRtQe6gssfoW7\\/brPdtMtkzWv2clymnJAp3NYk4n6sHtpAIClbXI636eBxP5FtJsjnTwZdl+1ORZrmDUgqmSgqo2MkY0hpljDswj1MvW5A1KLm\\/Wb7rT+yGK48xBIs3Nl3rBMyDEbvfVR\\/eaj2rfbhh0L\\/406jySZ0H2KRiX7rT+yGDutP7IYy3rMlbYdmo1Z50GkTPbqerE\\/wAcK7zUe1b7cSHdaf2Qwd1p\\/ZDEXjMkWHZqMlklmXS80gHmrlT9o64yk00d9M0h1G51OT\\/Hw+rEl3Wn9kMHdaf2QwXrMkWHZqP7zUe1b7cHeaj2rfbiQ7rT+yGDutP7IYLxmSLDs1x5PFf\\/AFH8MGFVAAksPAAYMVBOV89VTkub5DRNlsUmzS09dSxhuXQUNfIBJTQksJmMssUhUqxAZTHIZVAjZXRbq8OHHZlPDruT2b3QJslR7RTZIkr9\\/jzeopY371UPVMrI1GxRojUNE2nWrNESrMpBwYMdIgRPmFVxzHiNqAeS7tUdrdJBOsMW4U1CNGrmWPaqyqxCkodVGGuNRBsCPRNiehLtV2tBp2UQ7jY6oMqMTFtSwCllUlTrol6qSVNul1NiRYkwYQwYZwTCaijHknK7tZI6QkQbmKastK8YMG1EouqhSH9OgX0W1ED9b0TcD0SeTXdqzR0i1Rg3W5ZWmnlmjjEG01UDUqkiKskfMy1bLIHZ116WCxPqCMUVjBhdWYQNu7x9fiifW4h2qMn7W9oVhMe4hZjIpLBNqiDEdTCzaqIdbAH0bizDre4DR7XaQfsBP71\\/yeDBiwQIZwS6zFz5JB7XqUeHD+T\\/APWfyeEt2vsq\\/wCn4\\/vZ\\/J4MGLBLQjgn1iJmmV7W9airTTw+aZpCkes7ZcsGxOkMxpALAsfnG3U3xzqLtZMxzhoYcu4ejUVEpm0U8e2VpSI49THT3MXupOkeJKkAXAwYMWapB+3mnEeJmuA3a+tqJbh6Nz432u\\/4\\/wDC6YMGDDiTg\\/b4lQY8TNf\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770774301,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:01.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:02'),
(107, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irm\\u00e3o Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:02.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:02'),
(108, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774302217,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:02.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:02'),
(109, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774302416,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:02.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:02'),
(110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irm\\u00e3o Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:02.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:02'),
(111, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774302416,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:02.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:02'),
(112, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774302217,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:02.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:02'),
(113, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774304363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:04.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:04'),
(114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774304363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:04.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(115, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770774336789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:36.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:45:36'),
(116, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770774336789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:45:36.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:45:37'),
(117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:65@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774361887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:01.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:46:01'),
(118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:65@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774361887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:01.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:46:02'),
(119, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:65@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774361881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:01.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:46:02'),
(120, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:65@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770774361881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:01.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:46:02'),
(121, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A518DF895150F2F51ED15C7F65BCB98D\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Top\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XtqCL88DkpmdapQ57XW+FYmt5bEkRNyplxnwKLUEWZw=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770774391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:31.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:46:31'),
(122, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:31.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:46:32'),
(123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:31.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:46:32'),
(124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A518DF895150F2F51ED15C7F65BCB98D\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Top\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XtqCL88DkpmdapQ57XW+FYmt5bEkRNyplxnwKLUEWZw=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770774391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:31.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:46:32'),
(125, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:31.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:46:32'),
(126, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:31.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:46:32'),
(127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:32.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 22:46:32'),
(128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD7O54uEmZFrZ_d1SJzR9a0p4TUX3p39M0hPz99Vullg&oe=6998E9E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T22:46:32.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 22:46:34'),
(129, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T23:12:37.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 23:12:38'),
(130, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T23:12:37.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:12:38'),
(131, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T23:20:33.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-10 23:20:34'),
(132, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-10T23:20:33.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:20:34'),
(133, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"ACB933B2C796C32A051233C312D913DF\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Anor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770776799,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:26:39.894Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:40'),
(134, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:26:39.893Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:40'),
(135, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:40.027Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:40'),
(136, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"ACB933B2C796C32A051233C312D913DF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770776800075,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:40.076Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:40'),
(137, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:26:40.767Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:40'),
(138, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"AC524C7C7D9983235097C29949DC47B1\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Amor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770776800,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:26:40.768Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:40'),
(139, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC524C7C7D9983235097C29949DC47B1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770776800972,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:40.972Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:41'),
(140, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:41.005Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:41'),
(141, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"ACB933B2C796C32A051233C312D913DF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770776809203,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:49.203Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:49'),
(142, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:26:49.261Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:49'),
(143, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-10T23:26:49.389Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:49'),
(144, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:49.509Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:49'),
(145, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A51EC5447FE727F3D0D671D66BEE5F38\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NWI6sFx\\/g0FL6z2vMzCSbP1sA5P7aySNxpuIQmJrZKM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770776809,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:26:49.262Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:49'),
(146, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC524C7C7D9983235097C29949DC47B1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770776809198,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:49.198Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:49'),
(147, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"ACCEA4FA805163B566AF2288390A0C80\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633304044_2207402766670343_2946985954791485033_n.enc?ccb=11-4&oh=01_Q5Aa3wFNLfMN6Q8-55uBlpSaPI8RyIj7Z2tbIz7_6JqUkz0utw&oe=69B344B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vjxNa1Lt7f3k9YOpKFCL3puRKscab1KUyp09zVCMOso=\",\"fileLength\":\"11326\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"s48h6WzW4232KtiFHLc2ZqSFwLjqTWUDPhXZbeTPcrs=\",\"fileEncSha256\":\"FA0AvP97fO\\/7EY45aXPFuqYiHxApzag78nbcAiPqgfg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633304044_2207402766670343_2946985954791485033_n.enc?ccb=11-4&oh=01_Q5Aa3wFNLfMN6Q8-55uBlpSaPI8RyIj7Z2tbIz7_6JqUkz0utw&oe=69B344B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770776813\",\"waveform\":\"ADlAMjc7XlpgY11eWVhRV01TQERNRD9RMjg3Q0NKKjFdVUEjKCIqKFRVPU1YTk9eX0NaVTBNQlA7QFFFUVtWRA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770776817,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:26:57.365Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:57'),
(148, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"ACCEA4FA805163B566AF2288390A0C80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770776817554,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:57.554Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:57'),
(149, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:26:57.364Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:57'),
(150, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:26:57.609Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:26:57'),
(151, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"ACCEA4FA805163B566AF2288390A0C80\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770776820671,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:27:00.671Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:00'),
(152, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A51925639B361705679DF004A27B9E29\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c\\/\\/5+3xmVmJCu5HF1RPz++TcxMaW1E0W\\/ZJpcPJakbY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770776820,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:27:00.729Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:00'),
(153, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:27:00.728Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:00'),
(154, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-10T23:27:00.853Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:00'),
(155, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:27:00.976Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:01'),
(156, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"ACCEA4FA805163B566AF2288390A0C80\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770776822671,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:27:02.672Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:02'),
(157, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:27:22.206Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:22'),
(158, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-10T23:27:22.339Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:22'),
(159, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:27:22.464Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:22'),
(160, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5E522E8027FE090529D8BCD87853CAB\"},\"pushName\":\"carolla\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/542081147_1832657980773864_6128716908683818308_n.enc?ccb=11-4&oh=01_Q5Aa3wHL7moTXyqixSPok0Jno0xGQeSA-Lv9x-XE-pRgcmx3_A&oe=69B3678C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"caLI7xfTUR+Aop0UKUwIDZ2cyb9JIFuux5cA3+urO6o=\",\"fileLength\":\"118239\",\"height\":1600,\"width\":746,\"mediaKey\":\"jaIMuCO2pHP+LbAGmwZe9YpBiROe5mZZ+NpNSfkB7lg=\",\"fileEncSha256\":\"Q96BFdVyj7Rvts\\/RnL80XlUuLrXuBn1D7+\\/BflrnvAc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/542081147_1832657980773864_6128716908683818308_n.enc?ccb=11-4&oh=01_Q5Aa3wHL7moTXyqixSPok0Jno0xGQeSA-Lv9x-XE-pRgcmx3_A&oe=69B3678C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770776841\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAsAAADAQEBAAAAAAAAAAAAAAAAAQIDBAUBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD3dYRtOdxoZgk1ToYgJcnVWRq5JAlGNFOkASLbCw5QOIA\\/\\/8QAJRAAAQQCAQMEAwAAAAAAAAAAAQACESEDEhAEIkETFTFSU2KR\\/9oACAEBAAE\\/AMvr9vptmTal4FBMOae4iFqZtUi0kzKLXfbwmsAFklT44JF9wU\\/u1AtidworgtbJJWjBJUYgI0VRXBy6l1WEM+Us2Tc2QgSCj8cGJNBNLmGQ0IZD5ARPNlQodxCbYuigE9zWiSYW7PsP6oQEL5XV9MOpZrsQvZ8X5Xr\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAEBEw\\/9oACAECAQE\\/ACqEz\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8Af\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"4KIPwEPWPpPZVi9YiYZJDo0zUd99Qi0RdPlIziHPdiHtDJq+gH8u1A==\",\"scanLengths\":[9566,54393,23527,30753],\"midQualityFileSha256\":\"ykx7YyZ\\/TRjHWeU4j5lTgHe9EVh7L5fN2qrYTeRYuOc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MYVwLQhbg69e3WH5FmUd4J6VW2W9TF0iAdKbspYcXuE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770776842,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:27:22.208Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:27:22'),
(161, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:28:37.027Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:28:37'),
(162, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC002E76600D49E335C6186C056EB64B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770776917219,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:28:37.220Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:28:37'),
(163, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"AC002E76600D49E335C6186C056EB64B\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633138140_1470597724590997_869737584446698956_n.enc?ccb=11-4&oh=01_Q5Aa3wHAYJd7YgvgENlqRiWl6jlElziLobSAeeaGy80bxKVhUA&oe=69B36688&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uPZBLJ691rE4L02fLKOwunoffqF1EiLi0BjR+nqSH3s=\",\"fileLength\":\"36133\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"OOixGi3DN+qDrdFe\\/\\/3IpuSFV8deVKo60v3WSyFCxNA=\",\"fileEncSha256\":\"AHqqeq+Nx1e0PZoOgE\\/JOF5GL+XX\\/LN6+y2h+Vs9FhE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633138140_1470597724590997_869737584446698956_n.enc?ccb=11-4&oh=01_Q5Aa3wHAYJd7YgvgENlqRiWl6jlElziLobSAeeaGy80bxKVhUA&oe=69B36688&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770776902\",\"waveform\":\"ABQbHhofIFJTLEg+Tj1INkUlUjc6EU0yRSxSMktNJCUhKkZBP0JBQko1PEUrQUkzJi5HKyQoKlFOQlNFQj9CSQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770776916,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:28:37.028Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:28:37'),
(164, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:28:37.274Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:28:37'),
(165, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC002E76600D49E335C6186C056EB64B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770776925561,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:28:45.561Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:28:45'),
(166, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC002E76600D49E335C6186C056EB64B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770776926243,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:28:46.243Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:28:46'),
(167, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A574D397BBDB3DBFDD76FE543F306B83\"},\"pushName\":\"carolla\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633854195_1432818571588582_3359119093282157392_n.enc?ccb=11-4&oh=01_Q5Aa3wF0VAdvL52HtZv3ZXofbhvOMiBzL4FEHQW3tR40OM3AKQ&oe=69B37631&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ItiWmJ1SF06\\/fiFOK6IG4bSjcn6UX6k8d3fBIH1qHJk=\",\"fileLength\":\"8309\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"vyI2cqeron3nvsmpHy\\/OSQ5DQKDsAE9sy1fd2G+CO08=\",\"fileEncSha256\":\"GONHYGJCoJtGXhJWQR4kVl+zNAJPpTdKesbdDpJ\\/dOw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633854195_1432818571588582_3359119093282157392_n.enc?ccb=11-4&oh=01_Q5Aa3wF0VAdvL52HtZv3ZXofbhvOMiBzL4FEHQW3tR40OM3AKQ&oe=69B37631&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770776939\",\"waveform\":\"ADEuJRsTEQACBgJKXVxZVk9TRTxUXDc7QkRTWkkUTDscCy08MThPTkxIQT5ISUYoPEtHFSdJRDk\\/OCMbCQUaBQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8JVWk4uCmtqm+m2Uw5Ld8GqFTv\\/QrXqhS0uR2BZLnII=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770776941,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:29:01.606Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:01'),
(168, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:29:01.856Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:01'),
(169, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:29:01.604Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:01'),
(170, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-10T23:29:01.733Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:02'),
(171, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A574D397BBDB3DBFDD76FE543F306B83\",\"fromMe\":false,\"status\":\"PLAYED\",\"datetime\":1770776951391,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:29:11.391Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:11'),
(172, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"AC744DC71E92AFBD93EB36017E3FCC49\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/632829750_3515274915287838_5503801703166014812_n.enc?ccb=11-4&oh=01_Q5Aa3wG2MUSlf3lAjMnnjjEFdxPGNsdKAyJ01fkCPWJVZhVmfA&oe=69B36835&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SSLBhXFuXUxU49RhfVms7V4M3jHugfI4GDW6Gq84BfE=\",\"fileLength\":\"8821\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"LZzNpcx\\/CuC9r\\/3zlsyblt6YTmy7yx8aGXQgh8PYsVo=\",\"fileEncSha256\":\"JP0Xl3ltFQyvfCVXcwn7DO77VcRyowTIJ5cO\\/3PzKp4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/632829750_3515274915287838_5503801703166014812_n.enc?ccb=11-4&oh=01_Q5Aa3wG2MUSlf3lAjMnnjjEFdxPGNsdKAyJ01fkCPWJVZhVmfA&oe=69B36835&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770776959\",\"waveform\":\"AE5MRkdOUFFUWlVVTVJWW01VVVNGR0NOYmBKSlFLTk9DSUZNTkxFOUpTVUNOUlNPUVVWVFBVWEtJQz8\\/Q0E\\/Qg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770776961,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-10T23:29:21.806Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:21'),
(173, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-10T23:29:21.805Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:21'),
(174, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC744DC71E92AFBD93EB36017E3FCC49\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770776962029,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:29:22.029Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:22'),
(175, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlzg09OsRy6girBTRHOWtxhF3jJrYiUeoDvjn7sIgxKA&oe=6998F4F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:29:22.049Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:29:22'),
(176, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC744DC71E92AFBD93EB36017E3FCC49\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770777256186,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:34:16.187Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:34:16'),
(177, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"AC744DC71E92AFBD93EB36017E3FCC49\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770777256838,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-10T23:34:16.838Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-10 23:34:16'),
(178, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":true,\"id\":\"A5F550B530A245980B2062C41591224D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770779079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:39.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:39'),
(179, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:39.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:39'),
(180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:39.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:39'),
(181, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":true,\"id\":\"A5F550B530A245980B2062C41591224D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770779079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:39.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:39'),
(182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:39.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:39'),
(183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:39.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:39'),
(184, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:40.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:40'),
(185, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":true,\"id\":\"A512510A945F2A0B4E43F19BA3D63113\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ve agr irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770779080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:40.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:40'),
(186, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770779081022,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:41.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:41'),
(187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:40.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:41'),
(188, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":true,\"id\":\"A512510A945F2A0B4E43F19BA3D63113\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ve agr irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770779080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:40.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:41'),
(189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770779081022,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:41.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:41'),
(190, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:41.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:41');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(191, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:41.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:42'),
(192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770779082817,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:42.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:04:42'),
(193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770779082817,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:04:42.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:04:43'),
(194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:32:05.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 00:32:05'),
(195, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T00:32:05.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 00:32:06'),
(196, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":false,\"id\":\"ACB1C429C03CD20A20F1920CC9977272\"},\"pushName\":\"Livia\",\"message\":{\"extendedTextMessage\":{\"text\":\"Confira o v\\u00eddeo de alanaborges! #TikTok Abra o TikTok para ver a publica\\u00e7\\u00e3o de  @alanaborges Limpeza no banheiro \\ud83d\\udebd  Ele fa... https:\\/\\/vm.tiktok.com\\/ZS9JftmEBcsTB-bDIeR\\/ Esta publica\\u00e7\\u00e3o \\u00e9 compartilhada via TikTok Lite. Baixe o TikTok Lite para curtir mais publica\\u00e7\\u00f5es: https:\\/\\/www.tiktok.com\\/tiktoklite\",\"matchedText\":\"https:\\/\\/vm.tiktok.com\\/ZS9JftmEBcsTB-bDIeR\\/\",\"description\":\"29.3K gostos, 1150 coment\\u00e1rios, \\\"Limpeza no banheiro \\ud83d\\udebd Ele fazer sucesso no Natal, Olha a sujeira que ficou!.\\u201d\",\"title\":\"TikTok \\u00b7 alanaborges\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANv\\/bAEMABgQFBgUEBgYFBgcHBggKEAoKCQkKFA4PDBAXFBgYFxQWFhodJR8aGyMcFhYgLCAjJicpKikZHy0wLSgwJSgpKP\\/bAEMBBwcHCggKEwoKEygaFhooKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKP\\/AABEIAIwAjAMBIgACEQEDEQH\\/xAAdAAACAwEBAQEBAAAAAAAAAAAFBgMEBwgCAQAJ\\/8QAPBAAAgEDAwIEBAQDBwMFAAAAAQIDAAQRBRIhBjETIkFRBxQyYXGBkbEjYqEVJFJyssHwQpLxFjRTY9H\\/xAAaAQADAQEBAQAAAAAAAAAAAAABAgMEAAUG\\/8QAJREAAwACAgEEAgMBAAAAAAAAAAECAxESITEEEyJRBUEyQvCx\\/9oADAMBAAIRAxEAPwBE0vJ6XtMFv\\/dzYx2+mOrKLugVcFlHbPp71Do7Fel7U58vzc2cj+WKpPmSgAUAqDkj3qFeSy8FgxpbW2FH8NSBj2FRoUcqVYlFbeB6ZFfi3iIUQbt3B59K+QvDFbCPkFeCMe3rmlGCgvIwitu5PpjnNfo52aOUeKNzd07YociM8schx4S+3+9fJZEkKcZdQNxHY\\/eiA3H4RXECWc23as7MCx9xjtR7rrUL6xt\\/G02W1tiImZpZIyzjHse3NYh0br0+lXkhhG6MnDJn9q0fVupLTWenZ7ctuMq7Ch4ZPXNUdLg0JK1kTYgy9Q313ZG2upt7eIZBI\\/deOQCPegHxJ1u7kgtrWTUWuYPCDBRKzY\\/zZPem7oKKyvbbUrLUNPlaN8H5sAAwLuAzyO3c5+1Y11TdRXGrXAtHZ4BIViZhyyg8HH3pfx2Oqv3H4X\\/Td6ipXwSGX4RxWlv1ENc1ZJGtLFgIwi53zt9I\\/Lk\\/kK6B0frTTdY1i2hD3lnMcqsb42S\\/Y\\/f71R+G3QcNh8P7Sx1SCKV7oi5cAEMrkZ5P2GB\\/5o1F0PosM4kkgkkMf0h5MhfzrZlbutnnvVMY5VhJRJiXV8oEfkHjnI9fzpV1joXpu8udgRbS6ZcxpAwTH3CimtbmDZERII4yBt3DGR+dL3XukC+t7eeCaa1uINzLcQqCRx2PIPP2\\/OpX0t6OiXySb0JepdC6sBNb2Uxuo1TIMy7CR7A+tLGp6bd2bJFf2c1u6DhivlP51tXTrTLplpBLcpLPFF\\/FEjDexyRkkEgYII9eRRp4YWgxMqGIDGHHH9anw32M74vRz9p95InhCRuIIgmM\\/U3vSBqcTNqNy3vIx\\/rXTWu9HaNfQs6QiGTvuhOP1HauftXtUt9Uu4VORHKyg++DQU8WF3yQI0x2XpG2IUFReTdu\\/wBMVefEPj5UDkcD3rzpbKOlbUFjv+bnwMZ\\/6Yq8aWk19O0VvC0k65yEGcgc5qdeQrwWiyLKTtwcZGDio7x8RSccvxnPYmvhcSTlV7A4HGDUlzaD5ZfFukVZQ\\/lP1gr2BA988UBl5PNle+LmOF9hOcEds+1SRW2yPmQjYAM+9BtIHhzTHkO3YHtn3onLLLEDhwSvByvHNCe0Glp6Qc6bgdbiS7dsQQugOfVmOAP0zTre6PHdEPZnw5yMgDjNKF5Omn6BplkU\\/iz\\/AN7lx3B7L+gpx0rUI\\/l2KSJ8y8Q2bjjvXZL9uGw4cfuZFIv9QahqvS\\/TF1A0aRrcgxbx3OQR+1Zf0ZAl71XYeMgeFZlZgTwcHgUW+IWs6lfSrZ33lFuxAAOQfvU3QenwtbKWYJdzvlN3bA7VsxZHj9Om\\/LGyY0raX6OqrHVY3tY3iyBtyApwO3artlqCXW9Qys0Zw+09j7GsBe71rT9qPPOsYyuFbuD7GmrROtLOMkTRG3kc5dgMhj7k0s3tmN49do1zwoSfKFT3Ujj9KB6x0suuzK+ozEJDzCISVI+5ofpXUcMyZjlVlYk7cg47n0o1bapG2dzEc8FeOKd6taYZy3Hgy6317UtGvJra4ZLnSYbowuqgnGGJ45yPtTD1PNruurDHayQ22nzr40UhYqzDBwrDvmnKWfS4YZJJzZohbexkUDJ9z96T9R6r06Cdf7GsReXKLsEz5CKM57nk881jufbWqro1xk9xpzHZN09Y3OgaJcjUb1XEbEbOT4eO\\/JrCtavVn1a8lT6XlZh+BNaJ1Bcalq0Msl9cE7ufDQbV\\/SslvQVu5lHoxFTjPL+M+ENkw1\\/KvLPWkOq9M2mQTm6n7f5Yq8aF8+2vtaaYsnzM2cBDg49c1UtLhYelrRnJ5uZ8Ad\\/piot0hqVvpN8uqSRzTXi8JsYBQDwc+\\/FVb+WiMr4l7qWJNNvZrWPAmjZSzL\\/iA5oHLMWxIcsw8xJp76x0q21SBtUtItl0D\\/F3HbvGOGArMb29aIvBGjzHsVRe35+lHXfQu9F9Jw0yk7ec5+1Tw\\/xLhF2DaXAwTkHPrQu1uPDYteGJHfspOf2qddVs4JxsXLIeMBj2\\/Fq7izuSGPrOZv7bmQcJboIh9sAUx9OahoE9vZRSAeKiKryOeSQKz3VNWXU7qWaQPulOWI4\\/2qg95BawJudjIWPGBjb+tSy4qyLSNHpssxWzbNW+H2ia5MbpbibfIMnY+RSPruiXGgMrwsGjtmAXB5A+9COn+p720s2uYL5Fh3FfCZ8n8ce1TydSDUPENxPG+\\/uAaz2s06VPpGxXjrbRoOkdQ6dqVov8eJXCjejkDnH3odZw2DrcxXD5dZmMboc7lPIrPJNNA\\/jRP5DyB7VYt55IMeHKVI+9VfqX+kZl6Vb8jx8nKkubN3A9CeDR7TZdYSPb8yce5GSKRLDqKSEgSMG+9H7Xq5AB2qFZ836Lz6fEvIynT5bh913K8zfzmrUVvHCuAAMUur1ZG1RydSoe5rPU3XbLJzK0hguZUGR6VjuryKNUuwP\\/AJW\\/enK66igGfOM1mepXwk1C4cHhpGP9avghpshnpaRJBx0\\/YMef7zONvv5Yqkjuoo1wx2k8ZqxYbV6YsnYZIu58cfyxVXm8HPjyKML647mtn9ujH1x7L11qt9cWUdnJM0cC4KyH6j\\/LVSWGZbUokTRWzruJwcsffNVtPjfUtURWbKg5VTWx6ZaWlzo0NtcQhXxtZcdzj\\/n61qlaMtPZhtnZuzeZCVzu71buLMx4bZya1iLppYoJI7O2G5wVyR2qRuhVnVd8u0Jy4POBiuaf6AjHbuUWkG5wGJ4VfelXULiW5mG89uMDtTn1baW8c1zPE5MUZKRg+tLvT+jy6tcqqEAu6xqT23McUZnXbDsHQzS2pBRsL6j0NGLJbe\\/QyY2SDuFNOXxE+C\\/VPSFut3JANQsdoLT2gLBD\\/MO4\\/Gs2spWtbgOMgZ5FBrZybQ5aPcRw6kLfUGmltAvOGwR25FaFpnSujava\\/MWFzOE3Fc59RWWN5r2CdW8pTb+tPfwh1CSCa60+Y8OxePJ9fWpe3O\\/BZZK15GMfD63\\/AOm+mB+6ivD\\/AA\\/UHy6jL\\/2CnD5hvEjRcE92PsK\\/XM5WB3VSzKpYL7\\/ag8cfRyy39mf6t0qunWzytqMh2jttFIT3bs5UTOeeMe1OvxH1jCLaxk7n7\\/akSNlXkjymk4T9FedfZesrcXDx7mLbj6mgd4Cl3Mo4CuR\\/WmbQ1H19hny5pd1HnULk\\/wD2N+9PMpE7psP2ce\\/piz5IHzU\\/b\\/LFVPUW2WkMb5ySW\\/5+gq5ZNt6cst2dvzU+f+2KqmtREtAc+UqcVLEl7rYcjftpEvS4Z9UtsKWUsAQPWtp0JUuo5\\/G4WB\\/Ke3b0\\/I\\/vWO9Kakmn3O6YIYz9W70Ge9OVl15pNzrDWMDbYMEiVuA7E816Xp8SzZZxt62ef6jK8OKsiW9GkJdQI2NwHv65qrr+tpa6DfCyiwwibzHv2pZvNesoVG24h3ezPSr1F1kgtZra38FzIhVmL8flX0VfjfSYJbutv\\/fR85H5P1vqaSxykv8AfZmvUl9LIfBk4QHP2on0bfxw6hpUYDLm4jP4ksKAXGp+Kx8dY2x\\/LmrmgSCTXdMZRgG6iP4DeK8J1CfR9CpupSZ\\/SBFV4FVwGVlwQRkHisg+JnwJ0DqmGe50cJpGqNlt8a\\/wnb+ZfT8RTt1l15oHRelrca1eoshQGO3j80snHov+9cn\\/ABV+PfUnVDSWWil9G0psriJsTSD+Zh2\\/AVkNIiaxpd1o17c6bcvb\\/MWE8lvI0cm9XZTyR9uPtRLojUWTX7SZhtxKFO05PPHbvQrp+0kexEolZWkJ3EHkjPP7U8dG6VY3PUNml1sisy4eSUr328gH8Tio02t6Lyk0tmrqYNpbcofHIJwR+IoD1D1BYabbv406BgOFByx\\/AUa+NNha6l8Phqu8CWJVeE7QGTkBhuHp6Y7Z5rmlJlGQ3m9+aDb0ckgtqd++o3ktzLyzscAc4HoKiiDZ5BA+9VYmJ+gYOeAKLWFsZsMc8HkGgMMNtCINLA8MtgcleSCaS7nm5lx\\/iNOMrtsAAZXUYIzjIpRvB\\/e5v85p5JsO2ruOmrNU5Bup88fyxV91DDafGsmBIGypJ9xXuxyvTlkw7\\/Mz\\/wCmKriWy30YjwWLeUAe9Qjq2yt9wkJtjBPqHjwKSW2kjaPaggs7lpzDHG7zA4CqMnNOr21x09q8XiDLLg8dnH\\/PSmPTZNNnDzxWb+NIwyoAG3861rvszJ66FLpawu9F1WG\\/1C2guUUEGCfzDn39qJXHRYuX+dhdI4pmzs7KnPYfamS9sppBIRHGkSeYJnO77Vd0vT728sEhuyPCDcD3Ht+VPvYDONV6Wt7K5YJP4wH1hR9BqEaXmDESmMjtzXSfT3S1iLEx+Crb1w4YfV+NBeovhfCpeTSbmOPPPgzNgZ9gaGgbOeb17oybrx5Jm+ne7En+tUxbNdzhVBAHc47U9apo14mr\\/wBnRWvzVypywiIcKPckVfj6U1C4t3SO2SIkd2YD9qHgZdgrQI4XtPAUPtQlQPete0bpeLS+kGk1C3YvesqtHtPiqoPAA9z+WKRdAsX6diWbwluL+Vtqqe0Y\\/wAQHvTjqeu3F8unQX8uGRgxBOCcc4\\/WstZFW0aoxuWmwf8AFWeTSvh1BpguY5InuTHGI93C7i2CG59v+GsIZMsDtwScdq0j4l6mur6xaWinYsa+fHqx45\\/ICl+20JQQZpCRngY70yXWhW+2CtNtp3Ks2NinvginC0gki2EAHcO+Mj\\/zUTxCONI42ES8DOKKW8jxKY4QuNvr2NHWhW9rZPaWqMCZSSR2XGKR9SjH9oXO0YHiNj9afYZfDkVvKo7kfekbVZA2pXTDABlY8fjVFoRhiwwOmrMEZBuZ\\/wDTFWjfB7QV1LU7i7mXMNrHhQfV2BAP5c\\/0rObXjpyywpJ+Zn\\/0xVufwNVV6e1B2wG8bJzxxtFZ5\\/kyldShF6m0ESahNazRB8MQSe49iKRJLC7tL54LJjK6c8d8ff0Nbf8AEOzmtpzf2qF1b6gBnbWXz6zHY3j3L2oLSAKxT1PvRnKk9BeLktlVpdTsYUkvIwinHJFXLLq2SJog1sr4PbeFFMNrc2Wu2ojIz2cA+v2q4nT9rskJhiVd5KYXJxgD\\/b+taFWyDnRWtusNa1KJhZQxW0cQPK5JyPvVrR7vWpLtLjU3W6YOUKuMBF9wP96M6Rp0UUDwhBtPOe1ALtpLB7kNNmSPzyufpGewo8heJ71m9tNGlmlhhSG6vScmMZP4ml86xCgUxSZiDbG2t5iT+NKV7qN1d6g8lwN9xIMJtkO2MHj9f\\/2tA6B6JS7it0uYw027xJZG5281mrJVPSNs4pid0MGldNJfWhvdwRYxvyw5pc12xksoZL+7bbHjdhgPKB6j1zWh6zf4uV0y0QtYqFWTYQCEBwfzJP7+1Zf8c9fRLeLRLRgZCA0xB7D0FdpCq2ZZHeSahrhnk8xeTcc+1M8934UZKp5VGeTg0naaiKxeQsuB3q9LqAitvD3mRT6mmT0hWtvYeS7s50ZsknHr6favbamsdqq5G8jHl7Un217IjSbSNpPK+1WvmFfBzjPua5PfbDUpdINQ6oyYVnLMPU0v3dzuupW92JqYd+PxoRO58Z\\/xNPJKjUdEhjfpu1aQji5m7\\/5Y60j4U6iltqF3pofd46eIiscBmHpWZ6WT\\/wCl7XkAfNTf6Y6u2F5PZ3VvcWp\\/iRsGDE4xis9eTQp3J0Hf21xcWsgEEm2VcFSO1YH1XpM1hfzK67QhyDjFdBdC9S23UOkRyxuvjLxImeVNAfiF0iupq87XB8RjkZXt9hU7xcVyTDiy7ri0Yv0xHJcWTpDmKZS21qgs9f1bT2mgZwwVtxMnO375py0\\/SF0mN5J3BeBSGUH2pWVV1jUVa3jfO4o8TLwV54x6\\/jVVk1KZzjlTGTTuube6uoIGUIz4Ukds0B6v1NtZ1e60fT0HhsR4zgc5HI5q3bdABQJZZZFlBz4acDvkc046D0vb2kjzxx4nk5dmOSad06WhFMw9ixofQdsybp4zcbcEbvTFNVxcSaXamKJ2UycFAcZo4k0VhDKz+UAUPsrKK\\/We8vwUjUblJOAFrpjXgWsm\\/JDqur2ug9LteyNGzBfEIz5mc8foOwrmnVtTl1LUJ7y7JMsrlj649hTb8SuoV1fUja2RK6dbnag\\/xH3pJtYjLcFdpZQM8elCq0x4jrsi8XdlR9NRl8Mp2nB96MSaeV5x5TzgCvM9u0iLHsAA7YqfMqoQMhCsTgYJ71bXAXzDipVtmiU7QpPcA96n3JsxKFwfSmm0LcMrwQySPmPsPQ0JuVK3EgPcMaabeSMfQwx3ApdvMNdTH3c1aWZ6RoujlB03aFwCwup8Z9PLFUxuWDiIQsy48zegofpzEaDY49bmf\\/TFV9c+XBPesrr5M1yviitoPUl70zq7z2kpHm8y54YVtlj8QrTW9GCufDuGX\\/mK576hAF6rDgnvRS0ka33TQnayxDAHbsfT8qNfJcRNJPkbPd6GNQ0yZ\\/F2RNgDB5avvTfT0dvcBYIGlk2\\/V7UgaXql69tCDcOFwG2g8Zp80HX723sgIynfuQc\\/vXYsSBlzPQUvLSeBx4kewZ\\/6qjm1OCyjU+IGf2BoR1Fr97eFY5mTA9gc\\/vQa2QSyefnB4+1aNaIJ7QxW0dxrF6JpgFtl5IPbP3pP+JXVwkmTQNHfG\\/ySSA\\/UT6Vf6h1q8sLWO2tHWOLBJAHf8ayTVGK620w4l8RW3Z5zgVzekdM7fZS1C0lt53gnQpOhwwNHNG0k29p47KCz\\/wBKhlc3\\/UUzXPmbccn3x2oqGKw5BI3cGpMsq6B9+hgclBukOAAajFo5KSSqBkc0RnXxBHuJzkDI70P1dDb3ngq7sg\\/xGpUtFYrfR+uIhEu4R7lPc4qlNCkkRkRQNvGK9q7sBGXbYfTNWtPjWSaSN8lUOQKnvb6K\\/oFSWDiMOBg4zS\\/MpEzj7mtIkjUQHikK8UfNS\\/5j+9WxdMhl00j\\/2Q==\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/633839487_2046453246198683_4957405096773350956_n.enc?ccb=11-4&oh=01_Q5Aa3wHhnXGc8WAG3LUvaHWtNbPy2RKEgqJLQj9Rf9p3TXzLzA&oe=69B361B4&_nc_sid=5e03e0\",\"thumbnailSha256\":\"TxIDXQlclaBjI7KqxZRUCDfgWCVNZg+9h4i2Q6F27SE=\",\"thumbnailEncSha256\":\"PgXKiNP4hbZp0wzeXFLCthrdd8D925efPizFKSG04EM=\",\"mediaKey\":\"Y5GtFmJ4Nj4RNh\\/ufQKbBdH+Y94CK6i5LYS84wSraJQ=\",\"mediaKeyTimestamp\":\"1770782398\",\"thumbnailHeight\":828,\"thumbnailWidth\":600,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KZq8Si7fOPewqTw2Gc+h1r1oab4cwHBvB0YM3kfFwqU=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770782413,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T01:00:13.130Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:00:13'),
(197, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T01:00:13.128Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:00:13'),
(198, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"87484876771482@lid\",\"pushName\":\"Livia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlO5P4bdA-PeEF56DwhszEwUXeEopzR6UsZBrN2iRE3A&oe=699911DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T01:00:13.274Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:00:13'),
(199, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlO5P4bdA-PeEF56DwhszEwUXeEopzR6UsZBrN2iRE3A&oe=699911DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T01:00:13.266Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:00:13'),
(200, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770782641104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:04:01.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 01:04:01'),
(201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770782641104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:04:01.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:04:01'),
(202, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770782645790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:04:05.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 01:04:05'),
(203, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770782645790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:04:05.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:04:05'),
(204, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770782645795,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:04:05.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 01:04:06'),
(205, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770782645795,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:04:05.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:04:06'),
(206, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlO5P4bdA-PeEF56DwhszEwUXeEopzR6UsZBrN2iRE3A&oe=699911DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T01:08:09.216Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:08:09'),
(207, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T01:08:09.082Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:08:09'),
(208, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":false,\"id\":\"AC3F5B0343DD8266E0D16A6F3F549481\"},\"pushName\":\"Livia\",\"message\":{\"extendedTextMessage\":{\"text\":\"Confira o v\\u00eddeo de Casa da lili! #TikTok Abra o TikTok para ver a publica\\u00e7\\u00e3o de  @Casa da lili Comenta de qual cidade voc\\u00ea \\u00e9,... https:\\/\\/vm.tiktok.com\\/ZS9Jfnvn1MBgF-diJJB\\/ Esta publica\\u00e7\\u00e3o \\u00e9 compartilhada via TikTok Lite. Baixe o TikTok Lite para curtir mais publica\\u00e7\\u00f5es: https:\\/\\/www.tiktok.com\\/tiktoklite\",\"matchedText\":\"https:\\/\\/vm.tiktok.com\\/ZS9Jfnvn1MBgF-diJJB\\/\",\"description\":\"39.5K gostos, 2986 coment\\u00e1rios, \\\"Comenta de qual cidade voc\\u00ea \\u00e9, amg?\\u201d\",\"title\":\"TikTok \\u00b7 Casa da lili\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANv\\/bAEMABgQFBgUEBgYFBgcHBggKEAoKCQkKFA4PDBAXFBgYFxQWFhodJR8aGyMcFhYgLCAjJicpKikZHy0wLSgwJSgpKP\\/bAEMBBwcHCggKEwoKEygaFhooKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKP\\/AABEIAIwAjAMBIgACEQEDEQH\\/xAAcAAACAgMBAQAAAAAAAAAAAAAFBgQHAQIDCAD\\/xAA8EAACAQMDAwIEBAQEBQUBAAABAgMEBREAEiEGMUETURQiYXEHMoGRFSOhsTNCYsEIUoLR8BY0Q3Lx4f\\/EABoBAAMBAQEBAAAAAAAAAAAAAAECAwQABQb\\/xAAtEQACAgIABAQFBAMAAAAAAAAAAQIRAyEEEjFBBRNRcSJhkaGxFIHB0TLh8f\\/aAAwDAQACEQMRAD8AqBSNTLc4FbT5P\\/yL\\/fS8lZx312gq8yLliORyPGiNyM9frPSxeo0tSh5Jzu7cajVl+oqami+DqKaepeaOJEaTaMswU9ge27Oqds9yoIbfSyyVFfUAM0EjmMJkHOM\\/MfBOsWa20cK1dHFT3Vniq45EkeQNtJbYSo2jyU4zzjuNLltQdOnT2IWdaupKqGohUUFKksrqX9SdgUZywGfl\\/wBJ\\/fROLr+sqNlNDRU4QVCUjyM7hldo2flduRjGD9T7aWbo8VRJU1NcU2qRLOfTh9IhSwVQxqAO+7gEnPtr61qbjc2iRp4liaKbdJTqQGWlJjBImJOU5OcnPkdh8jDiuMyypZI7XZx6uv7r\\/pWkiXcbtXXKeonuNSKW3U0gWQREl2XIBZQRyBuH76K1ZMEENZY6yeVH371qEyAUIU4VVyck6EiB5rfNS\\/FSI9UjrGnw0Tu\\/qYzgib5SuVYbiuAPOpM1xjWiipzFcJEhmngmKQR4UjDvGMzZBUDGckHnGdWx8TPyppzjb\\/xdx+S\\/iT6fig2yRbuqaq2zT+rDSl4wzGFZSFCpKsZYNjAG5hx7Z+2htwvVYbzXTieOFqVhJIqbwRhjjIA\\/Lxnd2wc+dYrXttfWVUdHR1VNCUmVvVhhHporRyyKWM4XbkpnI7E8+dCaSeWqqoZqKljKJE4jdvTVVxKUO1zUfMCzYAJI7YGsk+J4mDbWWLpvvH9vrv7+geawx1X1Tebnakjsy00Fe00Cu6uQ0avGZRyRg5RT2840Opbjfaionjqq9nDNlQZ3JHyCTaq4+Y4OMfTUCulucfwMlFRRyQisi+KJ2rO6IDThthk8FiuQoGee2i0lnrLnLBHbYaKXDjcs2cv8uxXDxyMMgL3XGDnWpcbxksaUMkeb4r3HtX+\\/tYqimKtKbi8V6uUd0aeninNKsIkcBT6iZZQR4Dpn\\/wCx1KuXTzUV9nuFbNUVMqUrwJHCh4wRGT83PIY4OOedEupP4vZ3W33BqI1FwqJt8VPSs4feVJbJdTxhMHIyBk51IuvTtd1DHLSV10kpmMxnVqfG+QMc7AQ7YUZ7a38GvE8uSOWdeXu6p9tdvVX+4snCPwvqQ4Om6Wb4C5SUNwMtFTFo1MgVCxJPPy9\\/mHnxoF1jFT01stKRw+hNh2eMy7yuSO\\/6AatOwz\\/xm0z2uso6qioqRlp4ZZWIadU4Dcgd8Z86rn8Zem7dYZKW4UYl+Kq3ZJWdyRhQMADx317behRRilAGuvrDS4K7HnWfj\\/roHCEGOu9JIEqYjKcIHBY\\/TPOowOt8buPfjRNzimehJKeWo6OqblQ3kijJEkb0alWwGI8Y1Jbq0V1ktVpalr5zOkWavO3JV8ZJ8HK9\\/rnVKW+4Xa0WlaGhudVHTgnKJIVHPfjRSzdUrbYo6e9VVW9DHkRNCoLoxwec\\/wCXRklNcrIy4WcIty7HoKr6ZubUlwWOjUyVUWJJF9IvKy55ZSMEkEDI540U6e6drqatkaoiEUrRoZCXBUslN6IC45wdwPOvuj+po7\\/arXdbfN61LMpicYwUkXg5z74H76dd4MqSg7gBkY8g4\\/7a8PF4Tw+HImk9P19v6X0JW6EWXp67VMlKGpUb0o5E5nVQpeMR91GSPzHPftrpHZL9i5pHb4BHXSSTlTUr8jvHGCR\\/1K5\\/6tP7EMBj28a4+q0Z+UK6L4HfGkfgPB0k09fN+t\\/k7nYkx9OdSPO7VNJAIzFUxIySxkosixgcEYbGw9++lumtV5s7mljoYWeIODI5QphpxNnGMD5QfsdWwbypUIqMd3O7GQozjnS71DVRCKaVZMBlAyOe+ll4LwUYVFa9\\/f8AsMXJvYi0VtluUNVIabYFD0xMsgeP0zP64J8k4wuidmjqKG2Q1VP6DJH8jAHGAMKoGPA0UtojECrGfUidmLErtDDAGcfuP0GtrmIo7etPEnpCQhcRr28\\/9tbOH8LwQg1G9339a6fQ5ZXCdog0ge+TyzywxsYwQiuMjPnk\\/wDnGhfU1bW2ehM8ccMVYW2RupzwO\\/P2B012aiWloBGpclsklu\\/fSZ1dbaySrISaKopHPzRSNtZD9GHbt5Bxq36DHHkab+H59fcZ8Q25aW\\/t7DtRLBdIbfPeJR8XEm5QHAVjwScftqsP+IO4rVR2xIJI3iR3ztOSGIHf9MaX7y8rLFQU9ZLJFT7jG+7LKp\\/MmRwwHgjQHrGsqam02+F6miNJG7elTwIwZDgZZmYAnOtlkBRaQ51j1T76yIydZ9HRCLQ11TuNfRxknUlIc6ajappBWN0dlTdwTljnuMa2q40kiZJAjLjHze2NR6UIEDKSSrbT7j6Y11nA9NSoBDfL27fX++uPSVyTbLN\\/4ebpFa5660VNSfg6uRWiVu0b+Dn69teiaGORXMUjYUNlcHkHyD\\/Q\\/rryD07RBbVPVygoTKkUZcMI2P1IYYP3BGr96N6xlpaant\\/UsipVLiOnqhkiVP8AKsmezD3\\/APCk4KWzxc6UZuMehbMUaEccEnXzwsjd1+hJ0ANwqYxMrK2wbXSX\\/KFJ55H76KyXKmjp1llnSOMjOXYLgfrqNkdozLsjjbKLsySxxgAeTpTvlJ8UHWIKBL8iknHGPzfprhfOuLPCzQRXKmLnG5gwbHzDP9M6U7\\/1jSVcVXbYbvSmpb+SJvSyCp5yOeP9zpXDmZSLo41\\/V3wFVVCigp3oKWNRHM0hywBVRwB5JzpX6y\\/EKpmi+FpleKVWRi\\/oNsBxn5T576KR2ivsTy3a2STXdmgSBKHIjhX8uX8\\/8ue3k6SeoDGbp8ZVyzLVSnc6O42r7hR4A7d9aeiJk6t69v8AUKyw3KeEjGTHGB27jka5U1V8VTiqqqqoLzS87JR82CCe3A9j99DLeEiDK5Keq2WZTyQfbnUuFa6Wu9OladImAj+HAGME4Jz5P6aRzt0FI0WCjqLmI51E9SozEruT4HJ\\/fQ6\\/WyajliDn+WRjaIyoDeeTqyHstqq7YaCreegmdgWEBCyPg8DcQeO2lr8RZKsGihqABT0oMMZ3bjnAPJ88FefpopepwmLCMaz6Wt1kGNbbxpjhTQAa2MgXnONRjIdYQ7nUN2J50eYbY39N9N192qXYKkNPgMZN2d31Hvoy0XTtqmiWRzUyRf4iFWYHOMcjgedCJrv\\/AA2JKOwbqeNkxIQxO4+ftoU6ipjdpcCSMZ585PYfvnTeZFdFsrLJlydZFr2ihke4U9TETUWuojyY12+kmfoec6L1vTxri0VJUSuZmGyI\\/MF4GcefGdVb0nd6uz1cWZZBQyOFkQn5QPf6avr8P6tIrtJup6h94KrVBf5cK4+Yk++kc1Vsg4OyH1nR3Lpq1OFu6CEBRQwMpLMwXBDc\\/l75486py8vVXdYqq6VE3qOo3xpIRGn0A8DTZ191BL1D1DUThmNPGTHAueyg9\\/176A09K9bPDDnazSBBz78f76HKuobAlFIjTpRCMRquS2M89sc6MCCD1jMVy5G0E+B9NNXU\\/wCGPUfTVatQ1OtVbDHuaeny21uOCPH\\/APNKrRttJTBXx9tGgMJ0PVFTa0jp5KhjSkjcq\\/mQf6fp9NDut7jDc73SyR7PQChY\\/TIJfPk+2h1SwaPE4dsnsD20t0wNNeJKPJCuQyM3cA6STdBoZ4GLu8ccWdi8HOBnGcZ8HH++jlluz0VvkI9Fa1iNm87mQDz9dKsc5V5EldhAwDHPGB9PY9tcBWxo7xpIWm3jaXIOf1xqadMCstai6jjqaIKyxPcEPpn1OMNn\\/wA7aU\\/xMrkNqtu+RDWSSyTTImcKTjAzpNgvlSrvHVAQurArtwGz9wBqDf7l8WkS+mFKsSWGcn9zp+Z3QyjqzZKv663FZ9dAhIdbeq2mOo0wddIE\\/mL9xqQYCPGvokxKn3GjR1hERM0jLyZVOD76L0Vlq6kArAyJjLNKdi\\/ucDU64WR\\/hZq5BkQuocDxnPOoVqrMVLQk5J4G7tpJRt2PGXYi32I00QpVbeF5LL2H0zqxLfebrR9OxXces1vlpHj2q2UD8qTjx78\\/XHY6Tq6lastZDqBNASCB5GmP8Oq+SbpmusUbTCSSTaqou4OGH5T+x\\/c6XIvhOi\\/i2Aqeup4m9Jmd5Mb8KpbAPbtohartSfxe3qZ1SRp48oe65YcEaE0cElLUVFNMoLBirDyMalUFXS0N7oWqMO7zxKobnA3DydUUtE2j3MgDQgMAVK4IPY6rjrv8JrT1BG81sb+GVx53Rj+W5\\/1L\\/uNHes+vunui7cs97r445GTMdOh3SSceF\\/31546y\\/He5dRO1PbFktluIIIQ\\/zXHjJHb9NM2kChO6tt62i41VFXyrugdomaNsgsMg4P6aXrLbkr+oreZMqm9VIkbHH1POBreatesJLJEF27gpOW5Pn76Lfh\\/TS1HUdNIAfThBlbbyAAPGpyfceIS6p6MqKCYy0TxVcMgMghD7gV4B29skef00m1QeJ1jEM0EoYboZlP8ATz+mP11a10oRbrfTG2xn4rCtggsFU+c91P299O9l6THUdqimprqUQriVgiSFW8qD41nc5c1RVleWNWzzbDR73aaX042gG4I7YZz7Aah3VUkZfTXB7ke2ri\\/F7pSksT0j25N87gRyM7A5GPbVXCl3PIp2nAyMDxqsW+4K1oXGjI1pjGidZDtJ1AZedUsShiNNkdtR\\/hiKiPj\\/ADD++j8UYI1h6YeqhA7MD\\/XVCZbfS9hWqpLuk+5op2EYBOQML7frqsLvZv4VcJVmX0JYHyd3YgHv\\/bVufh5d4ks9a9wqI4hFUEFnYKOw99SOpH6b6tZLVJOfjZkIhmWI4wCCcHHPb+uhacQ00ymZ7rTfEmVXHoOuHIHY++rF6X6ca3W2OaFXWuqsToyA4VB2+btnvxnPPbvra4\\/hfSUlknktyvXVx\\/wxL8ox5P01J6Ov9XZY4rRdqQSRxrsiqYvnD88jI44B7fTQunsL2rED8QIno7wtetIyerxOUHCn3A+v20h9Qh6upp3UxxybfyGTBHPGfY69RX2xUV+oxJCVZJFyGXkHVP3D8O6qSSQUbRvLG5UpJx29jpJKnSOUr6lbNQXOskM1SHqGAABkkB4+5POjVioFgLy18iuWGcIcAaZG6W6ogp\\/hRbmMfhlIP9c6h1\\/Rd9SieWWmaIKNx3MBwPtoVWw9QVcqoVTRQ0yRkL8m7aBn6fbtp76aoaW2WlmrJZIq6crs2DgewOP7A+eddLD0VT0lBR1MpeWedd6vIu1IyDng+\\/Yc988aYpbGl2raK2oGVop1dmQ4CKAD31Gc70isIVtkeqqoqiljjqfVkkE7q7ImAyksQeBx3zodar7WdG1UtNZb2KynkQ+rTT0xQQu3\\/Ic8+Oe3PbRX8Y+mmssto\\/hVWtPFOi022Rjtd8nLlvBxgc99K1D0h\\/GaiFpK6KKOP\\/EQOGwQccEc\\/wD6NTacWOmpIEdVXa99QGGeplidVGwxxfQZydBvVRKVQ2fWX5Tn2003zpOttVwkaiiNRGGyHUHIHGfvoB1czSJTSvEY5eUP8vYGx500JboMo6Ys1z7mOoBHOpTqSedaenq9kqGennGpRl3D5fzeNBY5MamUshMqfcaPOd5aHKCttsVoSnShWed1BmkKE7ie4+n9dMdijrLlUWueOSnoqaJht+YepkD5kCjtxjQ\\/oi0VNZAJVqY6m37JCYAhGXLseW+mjtuuUVBQV\\/ozRUitHuSQIhPqMfzFvoqjj9fGs8cKu5tv+DXLiXVQil69\\/wAjj1l1BQWmxxtdWlp0rgYljMe5uRg8A8a841Ut5objR1E8FRTWunc1EIjdvmzkKdpbjJHPPn7atroTp97lW1FV1FcVrWjDmKGTO1gcnOD2\\/TU+4LbavqS0U12hhWMxh4aYn5cn5cqexACj5ffnjOtfPe2YeWtH34a9YGvt9LBch6dVM7BH2kRsPHJ8nntplu1FJBd5ZoITLFKu5lTupHBP9tV71ZbLl0tcVawxNLaI5VqFBff6JB54\\/pjXT8Luqaus63uEFRWzT2+VZDHI\\/GMkHI9vHGpN7oPIuqH+KeNo8h9oAPJGMY0q32pkuUTw0vEOPmkkBAb\\/AEj3Oly8fifXWu8NSS2qJ5o5mWZSDtkj5wf3xoZPfam9V88pcxwSDdBTDG1ABxx3z350MjklT7hgldjKl8rGWntk0ciwGVIfXZSFhI5DYXnj\\/b9dAOlbhdqPqOuRJ\\/Vjgbc9RKTn0x3c+eB41CutTd0MMtNLOtKVXHoJuJIIxj3PcfpoHcrhFVVsktC9YVkXYzt8rycfMDjuDqEU2WLN6\\/60tfVHS8lqmE61SMlTE8MZzgc+QO6k\\/voPQdZRU1JT2632ZdnDvUzy+nJOo525UHB\\/U6SKe8fDMHJm+MXCo8hIb09oUJ9sDUyTq56mdUnipoVjh9DYq7Dtz7Y5PudPKLaAtDbVfiYrzSx0NIYUTKxCZhkfUkaWOrKiouVqoJp\\/QAZmO2MD82Bk586CVdyo6qSnjp6Uo6nBctnJ7duONMHVlrgtXT9ongbd64bJ3k\\/Xt47\\/ANNJGHKx5O4iTJT4OtPRHtru04J1gPq1kjWJCdTqYBHUnsDrSNABr52x37apQtstmjukzdC0lJYFigMu2JgQpLgj5jjHv5OlyezU1FPLNPUx1LRrjDf4eCCucDzwfp9NH+kKeht9FSqRTvWIux2bcSG8LjjHfXO9Rx1l8taVG23s0m4j4YqsanIDMD53DHtz9dSux+h3s3U1RBDbXjBrKxw0cNJGoT5j5z2xxgDGl3pi21d+6sqLre\\/i44aWdgIJGL7XZvy\\/N9c5\\/TVpWOy2uwXGiqXWWRs4WeYggDB5CjOO\\/v50p2dg9bPKWafMxkV2k2wrgbn3btu5s+2e+qyjy6b2RjlUpuK7Hb8T4825TRXJUqkpirgsQCgIOB3we3bGlK1dKRVHSVPcKajrp7ruB9GNmX5c8YJ9++dbTXqoudweskiV0mkeCKl3FvnGCDgDcew1bqXM2jpyjl\\/hyJcKlVZ1VuEbGcE44+mpSdbZRPsjzd1HbLhSdSIa01SzSgBllO5kyPJPfHHOpS1UNtnUmBpWzsPzHHAx4+g09fiNWp1DUUBqLQ1uq2L7ZVfdkAZIJx+uMaAUNHQV7NDR0NStWq72nkYsTpXnjSvdFo8PJv3CNnnp63pqWC5iWKTe0cM5faPUA3KCO6\\/\\/AL7aWq6y1K2+rrIJ0YU0gZ0CgBCTxg+RnGjtd0\\/URNVmESzQx4nbBGMDBbPkYHP6aZ3CVcFVEghkNSshEYlUBWYAgn3C6z5OIjGpN1ZRxxwTU3vsVJ8TPLV\\/Ena0zodz5\\/N9fuNdpII6uUhnT1QSxHJOMZJzq2ZLRQTUwC2mNI5p5G425ihaNByuc\\/KxJ+nnSn1B03bqSxS1VplknqFj3\\/ymDYOM4cYyPl3fTIHvrRizRmnTT9gQlCK62hcpLbSSfEm4KaZI+Eljbdl+23GOedReo6+VqekpC7NDACI85GB7Y\\/8AO+jdRZl6joI6+x5p5EUesm\\/EZk84H+XSVdI6iKTFSSzBiCd27n76MJKb9hZSSi16msbknUtAduh8BwedTklAXVKIoIRHI1kr8wyMjPb31iAdtdyBxp7ELe6drKdaZK2uUSyzuogAYEb\\/APKC5PJ8f767XWkku1NJWSwSxZbYkLAkoykkjJPIweD25\\/YHa6VJr7DRk7aSOqhYRKqgZMYb2z3J1Zqu9JVQ0dO2yJG2LwCQGkIbv9BpEtBb2RrzPU1P4dSVUECLWQQB2VkDBdv5sD7f31TVotK9Suau73BYY2xIqYLMuRyOTgdvbV7dN4ee6oVGx5iGXuDx9dVotio7ZWxpSBwWqJgzNhiwQORnjHcDT5nUVIWMU3sWpYLB0xJ\\/Mo5q2eJvVEjybYypOBwvn30Vv3WktaIpjb9nw0XpTrPUE9sHeqZxkc\\/vqP0ZSp1j+IlVDe2kkUw\\/KY22FBg8Dxj750ldc22O1XyroYJp5IYKiSFDK+47Rtx4HPOpRba2O4pFodKX\\/p68dPVMF5njFQ4kaMtLhkfGEwD27+2kxI62e6yUq3H1I439MVEUgBkB\\/LgDt3GdB6elpUtAVaWH1JqiNGlIJfbt7Ak8cnP6DxxqwOm+h7PDebYkgqJ1qqZ5X9STG1g2BjaB\\/XOlcV2R26I9R0ZdLFQSuJJ1jqwqMsdSxD7iQSQMZOMHnsDohV2qOhqoIaCtiqKaQFWpncDYCM7hk9+ONWndrZTf+h647P8A2MbTU4B27GWM47fbXnrpyCKsss9znQGrln9IkcALjwPrqU8qxyqSta+5TDg81qI2IbrS08glhkaNmZBIpJGD9vvnTNWW\\/pmlm6epbxCtVJJFGMk7Pl+Y4IHPf30r9GwGW61dtkmnNEFEqxb\\/AMpwcYPfHA4zqT+JdVJ\\/BYapNqVNEf5MqqNw8ck9+51GGfHLK8OONOrYXjeJV2Yg36Kq6Lv9ytdGMQxysp3ciaInMbffB76D9R19JXWK2rDAiVUbv6r4wzZxgH6a60tbUX+70EV1lM4+WHcQA20Zxz5PJ76G3mEQzGJWdlXgbjngEgf21sUVzWJ2A+duvvW1mQca4Hvqt2Cz\\/9k=\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/633868439_2193424591401936_6083415874852582117_n.enc?ccb=11-4&oh=01_Q5Aa3wF7c3jtS-TN0baumDOZvugyr1xlZXdoXeyWlIqyo0tqzw&oe=69B37134&_nc_sid=5e03e0\",\"thumbnailSha256\":\"trOs2ANahWWgw5+8RyvvAz22LfyqxXCXkSMdTDQ1OL8=\",\"thumbnailEncSha256\":\"ft4wHQBj+lMkZNJAfWAdk1h9RnFHHuJ4TBuzJXQwGzw=\",\"mediaKey\":\"dpk3J2pg8vrB6Hi7HjD8sF3RtlKbwOAWeJb7uIBSRmg=\",\"mediaKeyTimestamp\":\"1770782884\",\"thumbnailHeight\":828,\"thumbnailWidth\":600,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ss72hSweY1YCr+h+aM+WNVP8fEcyv9q\\/9QxInIBfBt4=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770782888,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T01:08:09.084Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:08:09'),
(209, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"87484876771482@lid\",\"pushName\":\"Livia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlO5P4bdA-PeEF56DwhszEwUXeEopzR6UsZBrN2iRE3A&oe=699911DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T01:08:09.341Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:08:09'),
(210, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:58:32.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 01:58:32'),
(211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T01:58:32.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 01:58:33'),
(212, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T02:00:46.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 02:00:46'),
(213, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T02:00:46.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 02:00:46'),
(214, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T02:15:54.697Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 02:15:55'),
(215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T02:15:55.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 02:15:56'),
(216, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T02:15:55.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 02:15:56'),
(217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770791250499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T03:27:30.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 03:27:30'),
(218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770791250473,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T03:27:30.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 03:27:30'),
(219, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770791250493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T03:27:30.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 03:27:30'),
(220, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A53C25D239AF2EE0415456F50AFBC8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770791250473,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T03:27:30.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 03:27:31'),
(221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770791250493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T03:27:30.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 03:27:31'),
(222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934:18@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770791250499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T03:27:30.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 03:27:31'),
(223, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T05:00:29.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 05:00:29'),
(224, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T05:00:29.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 05:00:29'),
(225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T05:21:44.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 05:21:45'),
(226, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T05:21:44.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 05:21:45'),
(227, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"205325357551689@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaAwaXfwGxUD0sSyhxSxwxAQ3IK-HpkmZCGCv_J82CSA&oe=69994844&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T06:28:05.054Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:28:05'),
(228, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T06:28:04.911Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:28:05'),
(229, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":true,\"id\":\"ACF59CDC380D508D695D0A0932B108E4\"},\"pushName\":\"~Johnny\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/541948161_1643160030187703_3342437851585414886_n.enc?ccb=11-4&oh=01_Q5Aa3wF0XglWe9V7WG2sxskPeQAr1jr_gAQIxL2YESmKbYVAVQ&oe=69B3BEC7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"76EonAdce8AhczW2qypGH+hrkMGRRlBu4luc9dHaiFg=\",\"fileLength\":\"105724\",\"height\":1599,\"width\":899,\"mediaKey\":\"azpX2qCq7SgkQXxcWYmd2oVHzMOA8LJOkzjX2rEJVYs=\",\"fileEncSha256\":\"W8EnFEzklWvzjnkUJhb5SkgdjXNAzxvYgIu40wlhxWc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/541948161_1643160030187703_3342437851585414886_n.enc?ccb=11-4&oh=01_Q5Aa3wF0XglWe9V7WG2sxskPeQAr1jr_gAQIxL2YESmKbYVAVQ&oe=69B3BEC7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770802082\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgQFAwEBAAMBAAAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAMsp5qo+5S5UcpOlrZ65jUXBAWFZskvsaRaE\\/jWgZ45OOhKKY58B1EoP\\/8QAJBAAAgIBAwQCAwAAAAAAAAAAAQIAAxESITEEEyJREDIjUmH\\/2gAIAQEAAT8ApVSwlwJvMcKHwZUo3ImJXUE3zLana0sDgGCiwMCRApx9cTK+4mhkOIcv99gOJrLgYztHS12XBOmdh\\/YldQVYKRlid4EStjxieBQeO01LBxHsNa5xnM6i\\/wAhpE6a0vVkzUfQguYR7GZdxC6ncoMzvCd\\/+w1OeTHsKBlIJMUZG7GeGftPx\\/t8dQ2BwIvGfcJ3I+P\\/xAAYEQACAwAAAAAAAAAAAAAAAAAgQQAQEf\\/aAAgBAgEBPwC3GGh\\/\\/8QAGhEAAwEAAwAAAAAAAAAAAAAAAAEREAIgIv\\/aAAgBAwEBPwB9Ob8pTEOshch\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"fd5PWkNbBExw+s2kyaqNfJgQRpoaxq6o1BwAn0F7u31X3kN464b1YQ==\",\"scanLengths\":[15207,37531,20759,32227],\"midQualityFileSha256\":\"c2bRUURfTa5Xbu1Tr4yzEb+Ml6AIyzQDY3pTPK26jzE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770802084,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T06:28:04.915Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:28:05'),
(230, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"ACF59CDC380D508D695D0A0932B108E4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770802086507,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T06:28:06.507Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:28:06'),
(231, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"ACF59CDC380D508D695D0A0932B108E4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770802405410,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T06:33:25.410Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:25'),
(232, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"AC910E8014A4A6148705D45A5C896E22\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Ja acordado tbm\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WEjqxS7HMi+Ne6jc4cY+DaIm4v67OdkfG0W+\\/VkMafE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770802413,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T06:33:33.474Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:33'),
(233, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"205325357551689@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaAwaXfwGxUD0sSyhxSxwxAQ3IK-HpkmZCGCv_J82CSA&oe=69994844&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T06:33:33.725Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:33'),
(234, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T06:33:33.473Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:33'),
(235, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaAwaXfwGxUD0sSyhxSxwxAQ3IK-HpkmZCGCv_J82CSA&oe=69994844&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T06:33:33.602Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:33'),
(236, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"AC892FD534130FC74CF7C1E03F07302D\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Oxi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SBtsqhzBH+ZRaVkeVhxWY9g\\/mJKH\\/dWWqfQo4keaTpU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770802416,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T06:33:36.773Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:36'),
(237, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaAwaXfwGxUD0sSyhxSxwxAQ3IK-HpkmZCGCv_J82CSA&oe=69994844&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T06:33:36.898Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:36'),
(238, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T06:33:36.772Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(239, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"205325357551689@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaAwaXfwGxUD0sSyhxSxwxAQ3IK-HpkmZCGCv_J82CSA&oe=69994844&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T06:33:37.020Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:33:37'),
(240, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T06:59:32.345Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:59:32'),
(241, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMaxqzqq7-uM8JoyrMJKBvG3YItKHAIx971jfmGlG-Dg&oe=69996572&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T06:59:32.483Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:59:32'),
(242, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMaxqzqq7-uM8JoyrMJKBvG3YItKHAIx971jfmGlG-Dg&oe=69996572&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T06:59:32.490Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:59:32'),
(243, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A57453181A2F58247690ADB6F8D9B4A8\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"J\\u00e1 cheguei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IWvDK2ymNj7fPGjnC9lDQOF3cDRB4vuhDWa4YiNLWaE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770803972,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T06:59:32.346Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 06:59:33'),
(244, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"ACF59CDC380D508D695D0A0932B108E4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770804081798,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T07:01:21.799Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:01:22'),
(245, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"A5CDC2D2C304C0282F07AC03C38C38B9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770804081774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:01:21.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:01:22'),
(246, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"A5CDC2D2C304C0282F07AC03C38C38B9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770804081774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:01:21.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:01:22'),
(247, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T07:28:41.582Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:28:41'),
(248, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:34.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:35'),
(249, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:34.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:35'),
(250, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:35'),
(251, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:36'),
(252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:36'),
(253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC39904ADC9A5C66A3F1F279AC49E02D\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"EpYYU+C\\/p61kxw0MymLCTiecQax46aTNvCpQoOy3oDg=\",\"fileLength\":\"60077\",\"height\":1600,\"width\":640,\"mediaKey\":\"IQ7PtOsFmIGsYyk4K0Zs2njmjjEuEyCo6JL85NlZziA=\",\"fileEncSha256\":\"y\\/51\\/FqYH6k9chEJ2ajViasqfmaGTlQdcC4qlGkqc3A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770806730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEAAwEAAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAOg1y0qZIzmt6rZJVnMaqXCQAAB\\/\\/8QAIRABAAICAQQDAQAAAAAAAAAAAQIRABASAyExQQQTMFH\\/2gAIAQEAAT8AIdQZVPOVHfBvR83pClNjWPF9blKIWxDLKv1n2R83quR31R\\/NIOLFPO5EFW3OUDOcb2mV+X\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ak9hAbbmbRIMrSYuT2NoTWlDhCQbkcpUsFqerpWwMkZ0X4Q0UC73Mg==\",\"scanLengths\":[5879,30137,11333,12728],\"midQualityFileSha256\":\"d7cDjFJLwNLOzmZcYiKRMt3bMAqA88UyKYCgiwmEK8A=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U+BuhQe9+xAQu13QAJrNfu6AqLT2l9k0n932qlnd8SU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770806735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:36'),
(254, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:36'),
(255, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:36'),
(256, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:36'),
(257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC39904ADC9A5C66A3F1F279AC49E02D\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"EpYYU+C\\/p61kxw0MymLCTiecQax46aTNvCpQoOy3oDg=\",\"fileLength\":\"60077\",\"height\":1600,\"width\":640,\"mediaKey\":\"IQ7PtOsFmIGsYyk4K0Zs2njmjjEuEyCo6JL85NlZziA=\",\"fileEncSha256\":\"y\\/51\\/FqYH6k9chEJ2ajViasqfmaGTlQdcC4qlGkqc3A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770806730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEAAwEAAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAOg1y0qZIzmt6rZJVnMaqXCQAAB\\/\\/8QAIRABAAICAQQDAQAAAAAAAAAAAQIRABASAyExQQQTMFH\\/2gAIAQEAAT8AIdQZVPOVHfBvR83pClNjWPF9blKIWxDLKv1n2R83quR31R\\/NIOLFPO5EFW3OUDOcb2mV+X\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ak9hAbbmbRIMrSYuT2NoTWlDhCQbkcpUsFqerpWwMkZ0X4Q0UC73Mg==\",\"scanLengths\":[5879,30137,11333,12728],\"midQualityFileSha256\":\"d7cDjFJLwNLOzmZcYiKRMt3bMAqA88UyKYCgiwmEK8A=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U+BuhQe9+xAQu13QAJrNfu6AqLT2l9k0n932qlnd8SU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770806735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:35.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:36'),
(258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A56DF35850153B8E5CE5C5E645A19891\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770806736,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:36.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:37'),
(259, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:36.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:37'),
(260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A56DF35850153B8E5CE5C5E645A19891\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770806736,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:36.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:37'),
(261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:37.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:37'),
(262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:36.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:37'),
(263, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A56DF35850153B8E5CE5C5E645A19891\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770806737519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:37.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:45:38'),
(264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:37.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:38'),
(265, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A56DF35850153B8E5CE5C5E645A19891\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770806737519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:45:37.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:45:38'),
(266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:13'),
(267, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:13'),
(268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:13'),
(269, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:13'),
(270, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:13'),
(271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC523193E52593CA35C4C3DE895777BC\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"conversation\":\"Bom dia  meu mano renova mais um mes de net ai pra mim por gentileza Deus aben\\u00e7oe tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"741z1bq12\\/G561nWKfJiIcHb8HPcUY\\/X22dcmfhwbsE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770806773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:13'),
(272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:14'),
(273, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC523193E52593CA35C4C3DE895777BC\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"conversation\":\"Bom dia  meu mano renova mais um mes de net ai pra mim por gentileza Deus aben\\u00e7oe tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"741z1bq12\\/G561nWKfJiIcHb8HPcUY\\/X22dcmfhwbsE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770806773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:13.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:14'),
(274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:22.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:22'),
(275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC0924B2004397CA1F489D7799D09BB9\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"EpYYU+C\\/p61kxw0MymLCTiecQax46aTNvCpQoOy3oDg=\",\"fileLength\":\"60077\",\"height\":1600,\"width\":640,\"mediaKey\":\"IQ7PtOsFmIGsYyk4K0Zs2njmjjEuEyCo6JL85NlZziA=\",\"fileEncSha256\":\"y\\/51\\/FqYH6k9chEJ2ajViasqfmaGTlQdcC4qlGkqc3A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0&_nc_hot=1770806780\",\"mediaKeyTimestamp\":\"1770806730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEAAwEAAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAOg1y0qZIzmt6rZJVnMaqXCQAAB\\/\\/8QAIRABAAICAQQDAQAAAAAAAAAAAQIRABASAyExQQQTMFH\\/2gAIAQEAAT8AIdQZVPOVHfBvR83pClNjWPF9blKIWxDLKv1n2R83quR31R\\/NIOLFPO5EFW3OUDOcb2mV+X\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ak9hAbbmbRIMrSYuT2NoTWlDhCQbkcpUsFqerpWwMkZ0X4Q0UC73Mg==\",\"scanLengths\":[5879,30137,11333,12728],\"midQualityFileSha256\":\"d7cDjFJLwNLOzmZcYiKRMt3bMAqA88UyKYCgiwmEK8A=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MIcTyvFDay2tX\\/g9rWzbrmkkajygPLwgvWJRFFlL\\/VE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770806782,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:22.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:23'),
(276, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:22.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:23'),
(277, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC0924B2004397CA1F489D7799D09BB9\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"EpYYU+C\\/p61kxw0MymLCTiecQax46aTNvCpQoOy3oDg=\",\"fileLength\":\"60077\",\"height\":1600,\"width\":640,\"mediaKey\":\"IQ7PtOsFmIGsYyk4K0Zs2njmjjEuEyCo6JL85NlZziA=\",\"fileEncSha256\":\"y\\/51\\/FqYH6k9chEJ2ajViasqfmaGTlQdcC4qlGkqc3A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23800662_932062903103543_8252590959070804968_n.enc?ccb=11-4&oh=01_Q5Aa3wEPgftD_Pl0Ud5vo0FBeBsmpn7JMj-Ik2RHAkWyjShO8A&oe=69B3C360&_nc_sid=5e03e0&_nc_hot=1770806780\",\"mediaKeyTimestamp\":\"1770806730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEAAwEAAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAOg1y0qZIzmt6rZJVnMaqXCQAAB\\/\\/8QAIRABAAICAQQDAQAAAAAAAAAAAQIRABASAyExQQQTMFH\\/2gAIAQEAAT8AIdQZVPOVHfBvR83pClNjWPF9blKIWxDLKv1n2R83quR31R\\/NIOLFPO5EFW3OUDOcb2mV+X\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ak9hAbbmbRIMrSYuT2NoTWlDhCQbkcpUsFqerpWwMkZ0X4Q0UC73Mg==\",\"scanLengths\":[5879,30137,11333,12728],\"midQualityFileSha256\":\"d7cDjFJLwNLOzmZcYiKRMt3bMAqA88UyKYCgiwmEK8A=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MIcTyvFDay2tX\\/g9rWzbrmkkajygPLwgvWJRFFlL\\/VE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770806782,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:22.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:23'),
(278, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:23.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:23'),
(279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:23.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:23'),
(280, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:23.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 07:46:23'),
(281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T07:46:23.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:46:23'),
(282, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"AC7C6DF83E9F286465453730A17189A0\"},\"pushName\":\"Rose\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"ACF59CDC380D508D695D0A0932B108E4\"},\"text\":\"\\u2764\\ufe0f\",\"senderTimestampMs\":\"1770807466614\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770807466,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T07:57:47.062Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:57:47'),
(283, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wFI4Lrk-jDVHv-_QmDNE_GpqI2LAUIEXJ6pyaX0xSBhvw&oe=69998084&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T07:57:47.191Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:57:47'),
(284, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"205325357551689@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wFI4Lrk-jDVHv-_QmDNE_GpqI2LAUIEXJ6pyaX0xSBhvw&oe=69998084&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T07:57:47.318Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 07:57:47'),
(285, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:39'),
(286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACD29D96E5E6B35F414\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AwZV4HG0ZWhFUG79FPK9QvxcrS91q7DW9OStGQKCuPA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808478,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:39'),
(287, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:39'),
(288, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACD29D96E5E6B35F414\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AwZV4HG0ZWhFUG79FPK9QvxcrS91q7DW9OStGQKCuPA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808478,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:39'),
(289, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:39'),
(290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:39'),
(291, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:39'),
(292, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:39'),
(293, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:40'),
(294, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:38.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:40'),
(295, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:41.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:41'),
(296, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A530B99A5924F6B9F058F5AEB0BF3FFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:41.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:41'),
(297, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A530B99A5924F6B9F058F5AEB0BF3FFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:41.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:42'),
(298, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:41.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:42'),
(299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:41.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:42'),
(300, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:41.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:42'),
(301, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A530B99A5924F6B9F058F5AEB0BF3FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808482533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:42.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(302, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A530B99A5924F6B9F058F5AEB0BF3FFC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770808482591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:42.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:43'),
(303, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A530B99A5924F6B9F058F5AEB0BF3FFC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770808482591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:42.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:43'),
(304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A530B99A5924F6B9F058F5AEB0BF3FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808482533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:42.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:43'),
(305, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AFBDE3C54F5360BB089\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Tudo bom? \\ud83d\\ude4f\\ud83c\\udffb\\ud83d\\udc4d\\ud83c\\udffb\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rx9pxlNGfRbil0CwsUb3LYeeVHRsbBFqRIJDTin7Sbw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808491,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:51'),
(306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AFBDE3C54F5360BB089\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Tudo bom? \\ud83d\\ude4f\\ud83c\\udffb\\ud83d\\udc4d\\ud83c\\udffb\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rx9pxlNGfRbil0CwsUb3LYeeVHRsbBFqRIJDTin7Sbw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808491,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:51'),
(307, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:51'),
(308, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:51'),
(309, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:51'),
(310, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:14:52'),
(311, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:52'),
(312, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:14:51.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:14:52'),
(313, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0934376E3527EA2DC0\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Falta o outro ponto para pagar.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T6LMpMBNVChXMD2kvXf6KOku2vqutH\\/UVyPp\\/UKxfB4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808522,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:15:22'),
(314, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:15:22'),
(315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:15:22'),
(316, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0934376E3527EA2DC0\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Falta o outro ponto para pagar.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T6LMpMBNVChXMD2kvXf6KOku2vqutH\\/UVyPp\\/UKxfB4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808522,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:15:22'),
(317, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:15:22'),
(318, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:15:23'),
(319, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:15:23'),
(320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:15:22.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:15:23'),
(321, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:15'),
(322, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A43BF877FDD9585160D\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Aproveitando, a maioria dos canais n\\u00e3o abrem.\\nSportv, Premier, Espn, TeleCine, HBO\\u2026\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E8p5T4ylpjYryMXpPeaR2oDK2hhETL2wE3olJW9HI7A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808635,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:15'),
(323, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:15'),
(324, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A43BF877FDD9585160D\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Aproveitando, a maioria dos canais n\\u00e3o abrem.\\nSportv, Premier, Espn, TeleCine, HBO\\u2026\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E8p5T4ylpjYryMXpPeaR2oDK2hhETL2wE3olJW9HI7A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808635,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:15'),
(325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:15'),
(326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:16'),
(327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:16'),
(328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:15.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:16'),
(329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:37'),
(330, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:37'),
(331, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:37'),
(332, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A85DDB6C045B41E5E78\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"No ponto do quarto bem entendido.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E7wGHLZOsljdURYmodKthgRDnptv3YajuslKQjSS0pk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808657,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:37'),
(333, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:17:37'),
(334, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:38'),
(335, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A85DDB6C045B41E5E78\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"No ponto do quarto bem entendido.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E7wGHLZOsljdURYmodKthgRDnptv3YajuslKQjSS0pk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770808657,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:38'),
(336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:17:37.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:17:38'),
(337, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:03.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:04'),
(338, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:03.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:04'),
(339, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:04.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:04'),
(340, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:04.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:04'),
(341, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808809734,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:09.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:09'),
(342, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808809734,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:09.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:10'),
(343, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808803,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:03.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:13'),
(344, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808803,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:03.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:13'),
(345, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:16.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:16'),
(346, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:16.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:16'),
(347, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A5181D5D06864078E5758185ECBEF348\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td na paz, meu amigo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808816,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:16.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:16'),
(348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:16.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:16'),
(349, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A5181D5D06864078E5758185ECBEF348\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td na paz, meu amigo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808816,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:16.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:16'),
(350, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:16.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:16'),
(351, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5181D5D06864078E5758185ECBEF348\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808817180,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:17.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:17'),
(352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5181D5D06864078E5758185ECBEF348\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808817180,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:17.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:17'),
(353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:22.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:22'),
(354, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:22.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:23'),
(355, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A5812E8F35FAC804CF3B236F8EC50C13\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vc esta na frente da tv?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808822,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:22.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:23'),
(356, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A5812E8F35FAC804CF3B236F8EC50C13\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vc esta na frente da tv?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770808822,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:22.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:23'),
(357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:22.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:23'),
(358, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:22.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:23'),
(359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5812E8F35FAC804CF3B236F8EC50C13\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808823948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:23.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:24'),
(360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5812E8F35FAC804CF3B236F8EC50C13\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808823948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:23.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:24'),
(361, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:50.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:50'),
(362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:50.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:50'),
(363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592316742_1211050167784066_1206543542589927269_n.enc?ccb=11-4&oh=01_Q5Aa3wHEgj6t8kVIfQELEum6HUv8OX7DPzBJlVJCCKRWOSN6Mw&oe=69B3DD14&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yOuuzJ0PJX23IbNLxOILZ6gsKlR13zwkrviOzU+gm+4=\",\"fileLength\":\"17469\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"r6Et35DEWNWg+b0fWa6Ahw2V8ToxWtDjwy02t8Q4JJo=\",\"fileEncSha256\":\"q2u\\/KVUsOX4qSdfeq86HKJQg57ksr6FMWCigg6d0X\\/o=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592316742_1211050167784066_1206543542589927269_n.enc?ccb=11-4&oh=01_Q5Aa3wHEgj6t8kVIfQELEum6HUv8OX7DPzBJlVJCCKRWOSN6Mw&oe=69B3DD14&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770808844\",\"waveform\":\"AFFNFjQ2VjJRVxI8R1MnAAAAGidKRkgwAE06QTpEOitcV1JfLSY6Qj9gSUlKS1BUXFUGHz9APFATPwAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770808850,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:50.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:50'),
(364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:50.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:50'),
(365, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592316742_1211050167784066_1206543542589927269_n.enc?ccb=11-4&oh=01_Q5Aa3wHEgj6t8kVIfQELEum6HUv8OX7DPzBJlVJCCKRWOSN6Mw&oe=69B3DD14&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yOuuzJ0PJX23IbNLxOILZ6gsKlR13zwkrviOzU+gm+4=\",\"fileLength\":\"17469\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"r6Et35DEWNWg+b0fWa6Ahw2V8ToxWtDjwy02t8Q4JJo=\",\"fileEncSha256\":\"q2u\\/KVUsOX4qSdfeq86HKJQg57ksr6FMWCigg6d0X\\/o=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592316742_1211050167784066_1206543542589927269_n.enc?ccb=11-4&oh=01_Q5Aa3wHEgj6t8kVIfQELEum6HUv8OX7DPzBJlVJCCKRWOSN6Mw&oe=69B3DD14&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770808844\",\"waveform\":\"AFFNFjQ2VjJRVxI8R1MnAAAAGidKRkgwAE06QTpEOitcV1JfLSY6Qj9gSUlKS1BUXFUGHz9APFATPwAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770808850,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:50.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:50'),
(366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:50.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:51'),
(367, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808851905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:51.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:20:51'),
(368, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770808851905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:20:51.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:20:52'),
(369, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770809339249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:28:59.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:28:59'),
(370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5181D5D06864078E5758185ECBEF348\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770809339259,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:28:59.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:28:59'),
(371, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5812E8F35FAC804CF3B236F8EC50C13\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770809339266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:28:59.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:28:59'),
(372, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770809339249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:28:59.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:28:59'),
(373, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5181D5D06864078E5758185ECBEF348\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770809339259,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:28:59.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:28:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(374, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5812E8F35FAC804CF3B236F8EC50C13\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770809339266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:28:59.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:28:59'),
(375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0FF4F2EBC28336BD85\"},\"pushName\":\"Calinho\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\"},\"text\":\"\\ud83d\\udc4d\",\"senderTimestampMs\":\"1770809343561\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770809344,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:04.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:29:04'),
(376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:04.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:29:04'),
(377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:04.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:29:04'),
(378, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0FF4F2EBC28336BD85\"},\"pushName\":\"Calinho\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A58C5EB1C0BA9B748517B07806EB3054\"},\"text\":\"\\ud83d\\udc4d\",\"senderTimestampMs\":\"1770809343561\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770809344,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:04.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:29:04'),
(379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:04.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:29:04'),
(380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:04.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:29:05'),
(381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEF483ABD4C50BA99DB\"},\"pushName\":\"Calinho\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A5181D5D06864078E5758185ECBEF348\"},\"text\":\"\\ud83d\\ude4f\",\"senderTimestampMs\":\"1770809348925\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770809349,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:09.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:29:09'),
(382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEF483ABD4C50BA99DB\"},\"pushName\":\"Calinho\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A5181D5D06864078E5758185ECBEF348\"},\"text\":\"\\ud83d\\ude4f\",\"senderTimestampMs\":\"1770809348925\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770809349,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:09.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:29:09'),
(383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:09.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:29:09'),
(384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:09.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:29:10'),
(385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:10.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:29:10'),
(386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:29:10.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:29:10'),
(387, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA634B8930E5440C2F2\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Estou no servi\\u00e7o, a noite vou reiniciar internet, pode ser isso, embora na sala esteja normal, o que tu diz?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1spMcALN6nR9huNsFquLLseYHHIpngVGn5PlLVSwFzQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770809424,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:24.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:30:25'),
(388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:25.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:30:25'),
(389, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:24.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:30:25'),
(390, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA634B8930E5440C2F2\"},\"pushName\":\"Calinho\",\"message\":{\"conversation\":\"Estou no servi\\u00e7o, a noite vou reiniciar internet, pode ser isso, embora na sala esteja normal, o que tu diz?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1spMcALN6nR9huNsFquLLseYHHIpngVGn5PlLVSwFzQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770809424,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:24.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:30:25'),
(391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:25.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:30:25'),
(392, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:24.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:30:26'),
(393, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:25.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:30:26'),
(394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:30:25.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:30:26'),
(395, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T08:36:54.615Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:36:54'),
(396, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:40:42.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:40:42'),
(397, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:40:42.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:40:43'),
(398, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633956322_870677012446989_563987201947301623_n.enc?ccb=11-4&oh=01_Q5Aa3wFdJqn7cgXzNTQT9Bxyv7rtaL_E97dMF_5MyV1mVsQOYA&oe=69B3F7B6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bMNVyCbMdKJ5ypoT\\/1hCSrxtKVLnfZlvTqYB8WeBlY8=\",\"fileLength\":\"30919\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"UISQkxzQNTsKnrBi+rvqpfUtqlNt75VxxkcQ+Ey9qbM=\",\"fileEncSha256\":\"Ub7pzuq5R9h8QjFu5nHKVHiVaq9lLpk+zaMzlxXIZ0M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633956322_870677012446989_563987201947301623_n.enc?ccb=11-4&oh=01_Q5Aa3wFdJqn7cgXzNTQT9Bxyv7rtaL_E97dMF_5MyV1mVsQOYA&oe=69B3F7B6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770810720\",\"waveform\":\"AAAJDQ4pNCo\\/OTwcDCc2RT8cLjM\\/H0M1NDk+LD4AHyo4OTo4Mj4vLjcyJzciDDU1MSs0MTstLgAAAB8YKS0yMQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770810732,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:13.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:52:13'),
(399, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:13.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:52:13'),
(400, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51002887655662@lid\",\"fromMe\":true,\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633956322_870677012446989_563987201947301623_n.enc?ccb=11-4&oh=01_Q5Aa3wFdJqn7cgXzNTQT9Bxyv7rtaL_E97dMF_5MyV1mVsQOYA&oe=69B3F7B6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bMNVyCbMdKJ5ypoT\\/1hCSrxtKVLnfZlvTqYB8WeBlY8=\",\"fileLength\":\"30919\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"UISQkxzQNTsKnrBi+rvqpfUtqlNt75VxxkcQ+Ey9qbM=\",\"fileEncSha256\":\"Ub7pzuq5R9h8QjFu5nHKVHiVaq9lLpk+zaMzlxXIZ0M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633956322_870677012446989_563987201947301623_n.enc?ccb=11-4&oh=01_Q5Aa3wFdJqn7cgXzNTQT9Bxyv7rtaL_E97dMF_5MyV1mVsQOYA&oe=69B3F7B6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770810720\",\"waveform\":\"AAAJDQ4pNCo\\/OTwcDCc2RT8cLjM\\/H0M1NDk+LD4AHyo4OTo4Mj4vLjcyJzciDDU1MSs0MTstLgAAAB8YKS0yMQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770810732,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:13.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:52:13'),
(401, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:13.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:52:13'),
(402, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51002887655662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:13.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:52:13'),
(403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51002887655662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:13.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:52:14'),
(404, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810738598,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:18.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:52:18'),
(405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810738598,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:52:18.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:52:18'),
(406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:19'),
(407, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:19'),
(408, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"ACE742AE4D3B6F99225A3016CBA7F2F5\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, o link de pagamento da Tv N t\\u00e1 funcionando, consegue reenviar por favor\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9IhzMt60ZRRHXjIwl3oVUR7IrlrasZe6E9hHlmzCcHU=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770810918,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:19'),
(409, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:19'),
(410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:19'),
(411, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:19'),
(412, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"ACE742AE4D3B6F99225A3016CBA7F2F5\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, o link de pagamento da Tv N t\\u00e1 funcionando, consegue reenviar por favor\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9IhzMt60ZRRHXjIwl3oVUR7IrlrasZe6E9hHlmzCcHU=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770810918,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:20'),
(413, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:20'),
(414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:20'),
(415, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:20.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:20'),
(416, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:18.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:20'),
(417, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810920104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:20.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:21'),
(418, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810920120,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:20.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:21'),
(419, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810920120,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:20.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:21'),
(420, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810920104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:20.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:21'),
(421, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770810919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:19.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:21'),
(422, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\u26a0\\ufe0f *Ol\\u00e1, estamos fora do hor\\u00e1rio de atendimento.*\\nNosso hor\\u00e1rio \\u00e9 de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n\\u26d4 *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento autom\\u00e1tico_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770810919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:19.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:22'),
(423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:20.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:22'),
(424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:19.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:22'),
(425, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:19.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:23'),
(426, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770810940,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:40.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:41'),
(427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:40.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:41'),
(428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:41.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:41'),
(429, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810941005,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:41.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:41'),
(430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770810940,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:40.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:41'),
(431, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:40.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:41'),
(432, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810941107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:41.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:41'),
(433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810941107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:41.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:42'),
(434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810941005,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:41.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:42'),
(435, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:41.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:42'),
(436, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A5780551E744A8A8799B71B904D1A5E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Manda p mim oq vc recebeu\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770810946,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:46'),
(437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:46'),
(438, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:46'),
(439, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A5780551E744A8A8799B71B904D1A5E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Manda p mim oq vc recebeu\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770810946,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:46'),
(440, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:47'),
(441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810947005,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:47.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:47'),
(442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(443, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810947005,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:47.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:47'),
(444, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810946952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:47'),
(445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810946952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:46.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:48'),
(446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810952674,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:52.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:52'),
(447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810952674,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:52.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:52'),
(448, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810953495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:53.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:55:53'),
(449, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770810953495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:55:53.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:55:53'),
(450, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:07.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:07'),
(451, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:07.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:08'),
(452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:14'),
(453, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"AC15DBA99A8742F6C6D059E7F7067586\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"Pera, recebi outro ontem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jAxYAoIy0JqU4pkfuvTt5YB1cJEvWv6iS24FVmrw1\\/U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770810974,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:14'),
(454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:14'),
(455, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:14'),
(456, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"AC15DBA99A8742F6C6D059E7F7067586\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"Pera, recebi outro ontem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jAxYAoIy0JqU4pkfuvTt5YB1cJEvWv6iS24FVmrw1\\/U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770810974,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:14'),
(457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:15'),
(458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:15'),
(459, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:15'),
(460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:16'),
(461, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:14.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:16'),
(462, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"ACFEA3E9AC5985D26798E381546BDF48\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"Vou ver se funciona\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"54kqeUKQ3++57pXe90CgivHsROUFSfQkUeUoaYVETB8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770810977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:17.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:17'),
(463, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:17.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:17'),
(464, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"ACFEA3E9AC5985D26798E381546BDF48\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"Vou ver se funciona\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"54kqeUKQ3++57pXe90CgivHsROUFSfQkUeUoaYVETB8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770810977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:17.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:18'),
(465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:18.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:18'),
(466, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:17.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:18'),
(467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:18.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:18'),
(468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:18.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:18'),
(469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:18.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:19'),
(470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:42.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:43'),
(471, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:42.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:43'),
(472, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:45'),
(473, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"ACE2D50F689670638A3BC7FF98D22338\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"N tinha visto\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KgI48WqNt02NWBRL47\\/GOXDxB+GvB1B1OhlpBHEo084=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770811005,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:45'),
(474, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:45'),
(475, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":false,\"id\":\"ACE2D50F689670638A3BC7FF98D22338\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"N tinha visto\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KgI48WqNt02NWBRL47\\/GOXDxB+GvB1B1OhlpBHEo084=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770811005,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:45'),
(476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:45'),
(477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:46'),
(478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:56:46'),
(479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:56:45.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:56:47'),
(480, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:55.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:57:55'),
(481, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:55.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:57:56'),
(482, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A518A332F23DB887747894D5B81D1B29\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770811075,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:55.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:57:56'),
(483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811076033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:56.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:57:56'),
(484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:55.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:57:56'),
(485, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A518A332F23DB887747894D5B81D1B29\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770811075,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:55.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:57:56'),
(486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:55.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:57:57'),
(487, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811076352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:56.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:57:57'),
(488, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811076033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:56.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:57:57'),
(489, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811076352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:57:56.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:57:57'),
(490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5B8B38E176BD3CC7A0AF52D56028374\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770811087071\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770811087,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:07.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:08'),
(491, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:07.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:08'),
(492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMRRfDYreb16PlDtjJlOKPStMS7JF3G_W8iDHXDFy1tA&oe=69999D95&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:08.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:08'),
(493, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5B8B38E176BD3CC7A0AF52D56028374\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770811087071\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770811087,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:07.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:08'),
(494, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:07.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:08'),
(495, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5B8B38E176BD3CC7A0AF52D56028374\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811088029,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:08.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:09'),
(496, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:09'),
(497, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5AC12C548A738BE0D258011DE5BC8D5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wF8ohF3U--_ypttGYga1l7QnLkwtX8PliVtZupiaoDLww&oe=69B3C849&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"ctfTiznBIwwcMPbyhIDvRMjGy3ecNKg6kwJwYtDt5eg=\",\"mediaKey\":\"dKW\\/1EyMl3fTC3s3r2CCcbViLyYxSn7MelqNJq2F5NQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wF8ohF3U--_ypttGYga1l7QnLkwtX8PliVtZupiaoDLww&oe=69B3C849&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1770637772\",\"isAnimated\":false,\"stickerSentTs\":\"1770811088327\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770811089,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:09'),
(498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5B8B38E176BD3CC7A0AF52D56028374\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811088029,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:08.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:09'),
(499, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:09'),
(500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMRRfDYreb16PlDtjJlOKPStMS7JF3G_W8iDHXDFy1tA&oe=69999D95&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:10'),
(501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMRRfDYreb16PlDtjJlOKPStMS7JF3G_W8iDHXDFy1tA&oe=69999D95&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:10'),
(502, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AC12C548A738BE0D258011DE5BC8D5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811089446,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:10'),
(503, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AC12C548A738BE0D258011DE5BC8D5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811089446,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:10'),
(504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMRRfDYreb16PlDtjJlOKPStMS7JF3G_W8iDHXDFy1tA&oe=69999D95&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:08.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:10'),
(505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5AC12C548A738BE0D258011DE5BC8D5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wF8ohF3U--_ypttGYga1l7QnLkwtX8PliVtZupiaoDLww&oe=69B3C849&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"ctfTiznBIwwcMPbyhIDvRMjGy3ecNKg6kwJwYtDt5eg=\",\"mediaKey\":\"dKW\\/1EyMl3fTC3s3r2CCcbViLyYxSn7MelqNJq2F5NQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wF8ohF3U--_ypttGYga1l7QnLkwtX8PliVtZupiaoDLww&oe=69B3C849&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1770637772\",\"isAnimated\":false,\"stickerSentTs\":\"1770811088327\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770811089,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:09.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:11'),
(506, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AC12C548A738BE0D258011DE5BC8D5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811100364,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:20.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:20'),
(507, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AC12C548A738BE0D258011DE5BC8D5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811100364,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:20.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:20'),
(508, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5B8B38E176BD3CC7A0AF52D56028374\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811100376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:20.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 08:58:20'),
(509, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5B8B38E176BD3CC7A0AF52D56028374\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811100376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T08:58:20.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 08:58:21'),
(510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC457A1FA107B6BD94DCB76376511DCB\"},\"pushName\":\"Carlos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia consegue pagar. A. Mensalidade no cart\\u00e3o cr\\u00e9dito\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":20},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bWrvwvdToxjqzoIZ00qhTzPwOQi8divldgNqOeqvsxE=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":20},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770811254,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:00:54'),
(511, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:00:54'),
(512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:00:55'),
(513, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"pushName\":\"Carlos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:00:55');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(514, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC457A1FA107B6BD94DCB76376511DCB\"},\"pushName\":\"Carlos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia consegue pagar. A. Mensalidade no cart\\u00e3o cr\\u00e9dito\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":20},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bWrvwvdToxjqzoIZ00qhTzPwOQi8divldgNqOeqvsxE=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":20},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770811254,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:00:55'),
(515, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:00:55'),
(516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:00:55'),
(517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:55.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:00:56'),
(518, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"pushName\":\"Carlos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:54.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:00:56'),
(519, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:00:55.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:00:57'),
(520, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A57D0B901E4B2A4673BAE6539C35E756\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770811493,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:53'),
(521, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:53'),
(522, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:53'),
(523, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A57D0B901E4B2A4673BAE6539C35E756\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770811493,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:53'),
(524, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A57D0B901E4B2A4673BAE6539C35E756\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811493501,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:53'),
(525, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A57D0B901E4B2A4673BAE6539C35E756\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811493501,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:53'),
(526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:53'),
(527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:53.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:54'),
(528, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:55'),
(529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A514B6932CED6DF95359A87A74EF17BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770811495,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:55'),
(530, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A514B6932CED6DF95359A87A74EF17BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770811495,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:55'),
(531, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:55'),
(532, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A514B6932CED6DF95359A87A74EF17BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811495395,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:55'),
(533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A514B6932CED6DF95359A87A74EF17BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811495395,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:56'),
(534, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:04:56'),
(535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:04:55.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:04:56'),
(536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A57D0B901E4B2A4673BAE6539C35E756\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811515725,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:15.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:15'),
(537, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A57D0B901E4B2A4673BAE6539C35E756\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811515725,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:15.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:16'),
(538, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A514B6932CED6DF95359A87A74EF17BA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811515713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:15.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:16'),
(539, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A514B6932CED6DF95359A87A74EF17BA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811515713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:15.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:16'),
(540, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:18.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:18'),
(541, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:18.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:18'),
(542, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:21'),
(543, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:21'),
(544, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC80042780E7277D1187F63FFE613BB9\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Como faz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YKKpa5HuN9KBAPwvR+GZG2tAEDL1mc8AoRe3lWguS9c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770811521,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:21'),
(545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:21'),
(546, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC80042780E7277D1187F63FFE613BB9\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Como faz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YKKpa5HuN9KBAPwvR+GZG2tAEDL1mc8AoRe3lWguS9c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770811521,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:22'),
(547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:22'),
(548, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:22'),
(549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:21.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:22'),
(550, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:23.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:23'),
(551, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:23.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:23'),
(552, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC76867D048B39C08C664A846467BC3C\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Manda p mim fazer\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P4n+JcWZkj\\/cuccBD5lNTIQ4j6vCqWM8JS6il6Om0gI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770811529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:29'),
(553, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:29'),
(554, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC76867D048B39C08C664A846467BC3C\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Manda p mim fazer\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P4n+JcWZkj\\/cuccBD5lNTIQ4j6vCqWM8JS6il6Om0gI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770811529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:29'),
(555, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:29'),
(556, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:29'),
(557, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:05:30'),
(558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:30'),
(559, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:05:29.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:05:30'),
(560, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:50.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:06:50'),
(561, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:50.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:06:50'),
(562, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A5290B7732E3748B9209A64776F19B2A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1D-7G7lY8EFOT-40,00\",\"matchedText\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1D-7G7lY8EFOT-40,00\",\"previewType\":\"NONE\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770811610,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:50.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:06:50'),
(563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:50.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:06:51'),
(564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5290B7732E3748B9209A64776F19B2A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811611049,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:51.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:06:51'),
(565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A5290B7732E3748B9209A64776F19B2A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1D-7G7lY8EFOT-40,00\",\"matchedText\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1D-7G7lY8EFOT-40,00\",\"previewType\":\"NONE\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770811610,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:50.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:06:51'),
(566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:50.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:06:51'),
(567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5290B7732E3748B9209A64776F19B2A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811611049,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:06:51.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:06:51'),
(568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5290B7732E3748B9209A64776F19B2A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811623101,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:03.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:03'),
(569, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5290B7732E3748B9209A64776F19B2A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770811623101,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:03.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:03'),
(570, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"555397110710:61@s.whatsapp.net\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644225,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:24'),
(571, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644206,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:24'),
(572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:24'),
(573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644184,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:24'),
(574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644206,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:24'),
(575, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:25'),
(576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644199,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:25'),
(577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644214,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:07:25'),
(578, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644199,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:25'),
(579, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"555397110710:61@s.whatsapp.net\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644225,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:25'),
(580, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644214,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:26'),
(581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770811644184,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:07:24.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:07:26'),
(582, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:11'),
(583, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1A47EE6827420AFFF8\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/586643025_1889144665129560_2706286155446661707_n.enc?ccb=11-4&oh=01_Q5Aa3wGsBmrqkMQi7srYRMOE-McXdN2kJxSa-jopqU6uu3lj_g&oe=69B3EB22&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"4NRj2KeOvmjNlVLzh4OeJBmBAnadEKw0q18alrX6D0A=\",\"fileLength\":\"178002\",\"height\":1600,\"width\":1200,\"mediaKey\":\"LRW6dRG6GfRmpsxjCpvRvkwf4QTymF1sdKm45piQlAs=\",\"fileEncSha256\":\"eP+Y57J0SBjuri+Ue0rYBOe4NXRFe2X4wkp\\/8XXnib0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/586643025_1889144665129560_2706286155446661707_n.enc?ccb=11-4&oh=01_Q5Aa3wGsBmrqkMQi7srYRMOE-McXdN2kJxSa-jopqU6uu3lj_g&oe=69B3EB22&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770811984\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAIDBAEF\\/8QAGAEBAQEBAQAAAAAAAAAAAAAAAQACAwT\\/2gAMAwEAAhADEAAAAMzO+V56Fjzk2TrPy6zAoVR+UTvaMmKeiNMtFHOUG9GvKc902+NLpnuK+WzsneWWxEbRXyVnTA0+jnBpph9SVF46kMNiQNiKDGgCowZLgGv\\/xAAdEQACAQUBAQAAAAAAAAAAAAAAARECEBIgIQNB\\/9oACAECAQE\\/ALwQcI1pT+jviLz4nJXTi9Xf\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAREAECD\\/2gAIAQMBAT8A08lUKcJggtY\\/\\/8QALBAAAgIBAgQEBQUAAAAAAAAAAQIAAxESIQQxMkETUVJxECIjYYEkM0Jikf\\/aAAgBAQABPwBfE9AgNgI+SL4pTPhbe8sL96THJz0GZ36TDiHEMWAZxEtKriO5aOIfgRDiCwwWGLYYXOOUewzUSYBtGjkk4iqSNkEVD6BErY\\/whpbHRLQFO6QOoPSIHBHTGIz0x1BIPKUqAnKADHKUOVwuBgxmAOg4yR5TjtItYQY1iOu\\/4jAY+84Wup0PidpWMVxR8s4m+2tgK15d4eM43PSMyxbrAbHX3g\\/cHvCN\\/wARhvAzKm0rvUqBkD3gvXlqEvOqw\\/XxDzP6gxHXGDeTmIlWsfUjKOxztHEPRNeIbD2iKX040\\/cmBKwu4T\\/ZYqrndT5YlfWJkDGT2jbwg6PzC49IjWj0iG7+ohuPkILj5CU2sSDttLOJZjtylXENqwTsYxzP\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"TW3RFSzDvHPBXQ==\",\"firstScanLength\":16160,\"scansSidecar\":\"TW3RFSzDvHPBXdhPN7bp2HhmAyAHdG4FDOyzdTL7D3lb3bbEaQUsGw==\",\"scanLengths\":[16160,55472,31742,74626],\"midQualityFileSha256\":\"X9cv4e7glDONUuIObD\\/3FaaANv2dodnK4H8DSM3iN+w=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770808217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"h2fHwxKFKm2eZkAabtFnpiT4tdZpW496dvVbGbl6JiM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770811991,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:11'),
(584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:11'),
(585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:11');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(586, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1A47EE6827420AFFF8\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/586643025_1889144665129560_2706286155446661707_n.enc?ccb=11-4&oh=01_Q5Aa3wGsBmrqkMQi7srYRMOE-McXdN2kJxSa-jopqU6uu3lj_g&oe=69B3EB22&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"4NRj2KeOvmjNlVLzh4OeJBmBAnadEKw0q18alrX6D0A=\",\"fileLength\":\"178002\",\"height\":1600,\"width\":1200,\"mediaKey\":\"LRW6dRG6GfRmpsxjCpvRvkwf4QTymF1sdKm45piQlAs=\",\"fileEncSha256\":\"eP+Y57J0SBjuri+Ue0rYBOe4NXRFe2X4wkp\\/8XXnib0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/586643025_1889144665129560_2706286155446661707_n.enc?ccb=11-4&oh=01_Q5Aa3wGsBmrqkMQi7srYRMOE-McXdN2kJxSa-jopqU6uu3lj_g&oe=69B3EB22&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770811984\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAIDBAEF\\/8QAGAEBAQEBAQAAAAAAAAAAAAAAAQACAwT\\/2gAMAwEAAhADEAAAAMzO+V56Fjzk2TrPy6zAoVR+UTvaMmKeiNMtFHOUG9GvKc902+NLpnuK+WzsneWWxEbRXyVnTA0+jnBpph9SVF46kMNiQNiKDGgCowZLgGv\\/xAAdEQACAQUBAQAAAAAAAAAAAAAAARECEBIgIQNB\\/9oACAECAQE\\/ALwQcI1pT+jviLz4nJXTi9Xf\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAREAECD\\/2gAIAQMBAT8A08lUKcJggtY\\/\\/8QALBAAAgIBAgQEBQUAAAAAAAAAAQIAAxESIQQxMkETUVJxECIjYYEkM0Jikf\\/aAAgBAQABPwBfE9AgNgI+SL4pTPhbe8sL96THJz0GZ36TDiHEMWAZxEtKriO5aOIfgRDiCwwWGLYYXOOUewzUSYBtGjkk4iqSNkEVD6BErY\\/whpbHRLQFO6QOoPSIHBHTGIz0x1BIPKUqAnKADHKUOVwuBgxmAOg4yR5TjtItYQY1iOu\\/4jAY+84Wup0PidpWMVxR8s4m+2tgK15d4eM43PSMyxbrAbHX3g\\/cHvCN\\/wARhvAzKm0rvUqBkD3gvXlqEvOqw\\/XxDzP6gxHXGDeTmIlWsfUjKOxztHEPRNeIbD2iKX040\\/cmBKwu4T\\/ZYqrndT5YlfWJkDGT2jbwg6PzC49IjWj0iG7+ohuPkILj5CU2sSDttLOJZjtylXENqwTsYxzP\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"TW3RFSzDvHPBXQ==\",\"firstScanLength\":16160,\"scansSidecar\":\"TW3RFSzDvHPBXdhPN7bp2HhmAyAHdG4FDOyzdTL7D3lb3bbEaQUsGw==\",\"scanLengths\":[16160,55472,31742,74626],\"midQualityFileSha256\":\"X9cv4e7glDONUuIObD\\/3FaaANv2dodnK4H8DSM3iN+w=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770808217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"h2fHwxKFKm2eZkAabtFnpiT4tdZpW496dvVbGbl6JiM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770811991,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:11'),
(587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:11'),
(588, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:11'),
(589, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:11.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:12'),
(590, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:13.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:13'),
(591, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:13.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:13'),
(592, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AF832A2AFCDED420F90\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"conversation\":\"Bom dia JOHNNY\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770808217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VV6is9kMvNfLqA677bwlAPQz7EhTk3pSuI2SsGt65cs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812000,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:20'),
(593, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AF832A2AFCDED420F90\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"conversation\":\"Bom dia JOHNNY\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770808217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VV6is9kMvNfLqA677bwlAPQz7EhTk3pSuI2SsGt65cs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812000,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:20'),
(594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:20'),
(595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:20'),
(596, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:20'),
(597, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:21'),
(598, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:21'),
(599, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:20.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:21'),
(600, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:23.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:23'),
(601, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:23.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:23'),
(602, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:28'),
(603, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A5FFCCDB319CE0F738F\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"conversation\":\"Estou sem sinal de tbm\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770808217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Oa1sOkc8BMtKq82EOBMSeVX\\/sOszfJkEOD5E8dsGqtM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812008,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:28'),
(604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:28'),
(605, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:28'),
(606, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A5FFCCDB319CE0F738F\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"conversation\":\"Estou sem sinal de tbm\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770808217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Oa1sOkc8BMtKq82EOBMSeVX\\/sOszfJkEOD5E8dsGqtM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812008,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:28'),
(607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:28'),
(608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:28'),
(609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wERD0cBehPBfr96p4elCIRJsueAGFr80J-16FUvKEA4Kw&oe=69996AFF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:28.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:29'),
(610, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:30.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:13:30'),
(611, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:13:30.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:13:30'),
(612, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770812550096,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:22:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:22:30'),
(613, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770812550096,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:22:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:22:30'),
(614, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770812550936,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:22:30.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:22:31'),
(615, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51002887655662@lid\",\"id\":\"A5349DC8DC716C93FA443DB39AD7BA9C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770812550936,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:22:30.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:22:31'),
(616, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:10'),
(617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A21ACDF01ABF8A821D1\"},\"pushName\":\"Calinho\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/30921023_1576975876956970_3968746629405668871_n.enc?ccb=11-4&oh=01_Q5Aa3wFcnJ2HH8PCfYtfFSUNwcd_-wsBU6tU8xzZnWY4JpPVmw&oe=69B3F210&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZxlJQ\\/70vkrcMSIvXVtws6dLwwdPxLk1TsH4pzDmca0=\",\"fileEncSha256\":\"Pe0MOefdeU5RastXzI3V7\\/EtHQv7Gv0byAQxFESRb8k=\",\"mediaKey\":\"eQ7yenJ4bYt4haBuQG3G1ypDpDfx\\/4UXWg3MYXj+cdo=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/30921023_1576975876956970_3968746629405668871_n.enc?ccb=11-4&oh=01_Q5Aa3wFcnJ2HH8PCfYtfFSUNwcd_-wsBU6tU8xzZnWY4JpPVmw&oe=69B3F210&_nc_sid=5e03e0\",\"fileLength\":\"42968\",\"mediaKeyTimestamp\":\"1770775634\",\"isAnimated\":false,\"stickerSentTs\":\"1770812589345\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AUQr1g9EygRaTyCZDRP2JTJ41HJwXuAy+k5pAgj0Aso=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770812590,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:10'),
(618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:10'),
(619, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788447375@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A21ACDF01ABF8A821D1\"},\"pushName\":\"Calinho\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/30921023_1576975876956970_3968746629405668871_n.enc?ccb=11-4&oh=01_Q5Aa3wFcnJ2HH8PCfYtfFSUNwcd_-wsBU6tU8xzZnWY4JpPVmw&oe=69B3F210&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZxlJQ\\/70vkrcMSIvXVtws6dLwwdPxLk1TsH4pzDmca0=\",\"fileEncSha256\":\"Pe0MOefdeU5RastXzI3V7\\/EtHQv7Gv0byAQxFESRb8k=\",\"mediaKey\":\"eQ7yenJ4bYt4haBuQG3G1ypDpDfx\\/4UXWg3MYXj+cdo=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/30921023_1576975876956970_3968746629405668871_n.enc?ccb=11-4&oh=01_Q5Aa3wFcnJ2HH8PCfYtfFSUNwcd_-wsBU6tU8xzZnWY4JpPVmw&oe=69B3F210&_nc_sid=5e03e0\",\"fileLength\":\"42968\",\"mediaKeyTimestamp\":\"1770775634\",\"isAnimated\":false,\"stickerSentTs\":\"1770812589345\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770760957\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AUQr1g9EygRaTyCZDRP2JTJ41HJwXuAy+k5pAgj0Aso=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770812590,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:10'),
(620, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:10'),
(621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:10'),
(622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554788447375@s.whatsapp.net\",\"pushName\":\"Calinho7375 $70 Live E Void Pai Calinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:10'),
(623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554788447375@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/321242487_935860901107084_902342289971378380_n.jpg?ccb=11-4&oh=01_Q5Aa3wH573oaB3e0o6rJkugHcknQqR30kVb84meFZ2Push-HEA&oe=699985D8&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:10.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:11'),
(624, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770812601554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:21.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:21'),
(625, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770812601554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:21.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:21'),
(626, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770812602859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:22.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:22'),
(627, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A52FD960E3C9A9D84917A8091B457D4F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770812602859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:22.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:23'),
(628, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:33.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:33'),
(629, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:33.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:33'),
(630, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:35.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:35'),
(631, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:35.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:35'),
(632, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:35.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:35'),
(633, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:35.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:35'),
(634, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:42.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:42'),
(635, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:42.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:42'),
(636, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:44.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:44'),
(637, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:44.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:44'),
(638, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:46'),
(639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"ACA9F79961360AAD0661AD65ACDDB6B7\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"conversation\":\"Ta desconectado beleza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UmgtKyFSZrai65S11zhYTZNnV\\/Ku3o6GltJzMucdK0k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812625,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:46'),
(640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:46'),
(641, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"ACA9F79961360AAD0661AD65ACDDB6B7\"},\"pushName\":\"Kiko GBN Unid 506\\ud83c\\udfe0\\ud83c\\udde7\\ud83c\\uddf7\",\"message\":{\"conversation\":\"Ta desconectado beleza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UmgtKyFSZrai65S11zhYTZNnV\\/Ku3o6GltJzMucdK0k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812625,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:46'),
(642, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:46'),
(643, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:47'),
(644, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:23:47'),
(645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:23:46.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:23:47'),
(646, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:05.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:05'),
(647, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:05.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:06'),
(648, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:07.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:07'),
(649, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:07.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:08'),
(650, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACB640352D1EC882258C43B6F7E0DD93\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E8iyLCZ7tgXRe8ukd6BypfofKON3uid9ifVXHcu4Jzs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:07.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:08'),
(651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACB640352D1EC882258C43B6F7E0DD93\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E8iyLCZ7tgXRe8ukd6BypfofKON3uid9ifVXHcu4Jzs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:07.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:08'),
(652, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:08.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:08'),
(653, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:08.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:08'),
(654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:07.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:09'),
(655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:07.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:09'),
(656, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:45.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:45'),
(657, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:45.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:45'),
(658, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:54.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(659, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:54.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:54'),
(660, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:55.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:55'),
(661, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:55.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:55'),
(662, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:57.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:25:57'),
(663, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:25:57.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:25:57'),
(664, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:11.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:11'),
(665, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:11.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:11'),
(666, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:16.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:16'),
(667, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:16.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:16'),
(668, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:22'),
(669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:22'),
(670, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:22'),
(671, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACA06B6DDAFBE13E927EFBA44DE5A5CC\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"O aplicativo est\\u00e1 atrasado, quando vou assistir algo ao vivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NrX5ucj8ICiRh92QUpMP3BU3MOzrqpO\\/R+JS4LfvxL4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:22'),
(672, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:22'),
(673, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACA06B6DDAFBE13E927EFBA44DE5A5CC\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"O aplicativo est\\u00e1 atrasado, quando vou assistir algo ao vivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NrX5ucj8ICiRh92QUpMP3BU3MOzrqpO\\/R+JS4LfvxL4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:23'),
(674, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:23'),
(675, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:22.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:23'),
(676, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A58131685F973A21745C15FCC06BF48B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770812800388\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770812801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:41'),
(677, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:41'),
(678, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:41'),
(679, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A58131685F973A21745C15FCC06BF48B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/576344438_769728692839519_332145547104644997_n.enc?ccb=11-4&oh=01_Q5Aa3wFHL_qvYB_0r1_2tYzeRPlTGjHbFA6lTm3MlF6_sWqb7A&oe=69B3E7F7&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770812800388\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770812801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:41'),
(680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A5776349692CB51704FEABC54172B346\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"ctfTiznBIwwcMPbyhIDvRMjGy3ecNKg6kwJwYtDt5eg=\",\"mediaKey\":\"dKW\\/1EyMl3fTC3s3r2CCcbViLyYxSn7MelqNJq2F5NQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1770637772\",\"isAnimated\":false,\"stickerSentTs\":\"1770812801012\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770812801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:41'),
(681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:42'),
(682, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:42'),
(683, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":true,\"id\":\"A5776349692CB51704FEABC54172B346\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"ctfTiznBIwwcMPbyhIDvRMjGy3ecNKg6kwJwYtDt5eg=\",\"mediaKey\":\"dKW\\/1EyMl3fTC3s3r2CCcbViLyYxSn7MelqNJq2F5NQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1770637772\",\"isAnimated\":false,\"stickerSentTs\":\"1770812801012\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770812801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:42'),
(684, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:42'),
(685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJUC_4MLE15xbr6uJeLvOdqlsEJSbuFWWdLoJPYh3dCQ&oe=69996FBE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:42'),
(686, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A58131685F973A21745C15FCC06BF48B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770812802780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:42.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:43'),
(687, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A5776349692CB51704FEABC54172B346\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770812802785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:42.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:43'),
(688, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A5776349692CB51704FEABC54172B346\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770812802785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:42.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:43'),
(689, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A58131685F973A21745C15FCC06BF48B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770812802780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:42.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:43'),
(690, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:26:43'),
(691, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:26:41.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:26:44'),
(692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633657747_2207443182997323_9140245324833261572_n.enc?ccb=11-4&oh=01_Q5Aa3wGfPe_5Yt3bucVi4Se_tb4HzTh1R3MyGbTxsV3WO_omZw&oe=69B3E78F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"msBWySsJpGxnpfX28g+FyP9kPIiWVyg4iksu1HaUSxA=\",\"fileLength\":\"29080\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"dzhecYm7iUJLbncN1ousSOppGeAgz0ZrQ83k1zrK1Mc=\",\"fileEncSha256\":\"r6EajtW4VjgH6O7E8W3WtcGOtPZ\\/zzG+WW\\/hmhNXOTY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633657747_2207443182997323_9140245324833261572_n.enc?ccb=11-4&oh=01_Q5Aa3wGfPe_5Yt3bucVi4Se_tb4HzTh1R3MyGbTxsV3WO_omZw&oe=69B3E78F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770812811\",\"waveform\":\"AEhaPEVRWk5bVl9VOkhTUlg+OU88KytFTCVMR1cYR0w8Pw0ABTdHU1RhVEpHTkQ1MUReFDtRW1RCKDIzDQY\\/Dw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770812822,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:02.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:02'),
(693, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633657747_2207443182997323_9140245324833261572_n.enc?ccb=11-4&oh=01_Q5Aa3wGfPe_5Yt3bucVi4Se_tb4HzTh1R3MyGbTxsV3WO_omZw&oe=69B3E78F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"msBWySsJpGxnpfX28g+FyP9kPIiWVyg4iksu1HaUSxA=\",\"fileLength\":\"29080\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"dzhecYm7iUJLbncN1ousSOppGeAgz0ZrQ83k1zrK1Mc=\",\"fileEncSha256\":\"r6EajtW4VjgH6O7E8W3WtcGOtPZ\\/zzG+WW\\/hmhNXOTY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633657747_2207443182997323_9140245324833261572_n.enc?ccb=11-4&oh=01_Q5Aa3wGfPe_5Yt3bucVi4Se_tb4HzTh1R3MyGbTxsV3WO_omZw&oe=69B3E78F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770812811\",\"waveform\":\"AEhaPEVRWk5bVl9VOkhTUlg+OU88KytFTCVMR1cYR0w8Pw0ABTdHU1RhVEpHTkQ1MUReFDtRW1RCKDIzDQY\\/Dw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770812822,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:02.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:02'),
(694, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:02.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:02'),
(695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:02.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:02'),
(696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:02.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:02'),
(697, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770812823246,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:03.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:03'),
(698, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770812823246,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:03.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:03'),
(699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:02.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:03'),
(700, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770812831785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:11.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:11'),
(701, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770812831785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:11.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:12'),
(702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770812832568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:12.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:12'),
(703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59A88811CF6EC5172391AA0B119B6D8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770812832568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:12.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:12'),
(704, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:29.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:29'),
(705, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:29.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:29'),
(706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:36'),
(707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:36'),
(708, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:36'),
(709, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:36'),
(710, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC2634B9B8D3BE4F3C45C2E31F0AA1D1\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Ta bom, vou ver aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UOgayWLnBfBPyPiKhlsM3C11eAB5SXVY1qG4XEODyM8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812856,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:36'),
(711, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC2634B9B8D3BE4F3C45C2E31F0AA1D1\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Ta bom, vou ver aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UOgayWLnBfBPyPiKhlsM3C11eAB5SXVY1qG4XEODyM8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770812856,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:37'),
(712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:27:37'),
(713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wY__oZO5gqKdJP88LJ9NUcp7W_dZYJjf7Rn5egj2pw&oe=6999808B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:27:36.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:27:37'),
(714, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"139466312314992@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:43.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:40:44'),
(715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"139466312314992@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:43.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:40:44'),
(716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"139466312314992@lid\",\"fromMe\":true,\"id\":\"A582C97E1E687B8F91A8ADF075574F49\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770813643,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:43.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:40:44'),
(717, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"139466312314992@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/520992545_1310097990154256_36064845832162827_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRrUttS1sMh2zF9-K9SHUlZBdETEqno2ZD1ByrKrdwIw&oe=69998A7A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:44.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:40:44'),
(718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"139466312314992@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/520992545_1310097990154256_36064845832162827_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRrUttS1sMh2zF9-K9SHUlZBdETEqno2ZD1ByrKrdwIw&oe=69998A7A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:44.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:40:44'),
(719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"139466312314992@lid\",\"fromMe\":true,\"id\":\"A582C97E1E687B8F91A8ADF075574F49\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770813643,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:43.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:40:44'),
(720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"139466312314992@lid\",\"id\":\"A582C97E1E687B8F91A8ADF075574F49\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770813657520,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:57.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-11 09:40:57'),
(721, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"139466312314992@lid\",\"id\":\"A582C97E1E687B8F91A8ADF075574F49\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770813657520,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:40:57.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-11 09:40:57'),
(722, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:50.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:50'),
(723, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:50.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:50'),
(724, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T09:58:52.649Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:52'),
(725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:52.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:52'),
(726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:52.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:53'),
(727, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFq6-rk9Tvn6rDDQI5NFNA3nqnRLsmISWGroy4NuVrCyQ&oe=69998414&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T09:58:52.776Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:53'),
(728, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\"},\"pushName\":\"~Johnny\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vemcimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":149465},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":149465},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770814732,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T09:58:52.650Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:53'),
(729, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387@lid\",\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770814733091,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T09:58:53.091Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:53'),
(730, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:53'),
(732, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:53'),
(733, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:54'),
(734, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\"},\"pushName\":\"~Johnny\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vemcimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":149465},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8SaLuA91yeHVOy0WqblGl8zp5gLZb4QJa2j+Orjv6hg=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":149465},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770814733,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:54'),
(735, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\"},\"pushName\":\"~Johnny\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vemcimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":149465},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8SaLuA91yeHVOy0WqblGl8zp5gLZb4QJa2j+Orjv6hg=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":149465},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770814733,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:54'),
(736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:54'),
(737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:54'),
(738, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:55'),
(739, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:53.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:55'),
(740, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:56.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:58:56'),
(741, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:58:56.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:58:56'),
(742, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:59:00'),
(743, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:00'),
(744, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/Vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770814740,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T09:59:00.571Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:00'),
(745, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/Vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W0n4aZMS3h8GmFZ5UgjSPCFNvQaKYy8rUiH93EwazTs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770814740,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:59:00'),
(746, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFq6-rk9Tvn6rDDQI5NFNA3nqnRLsmISWGroy4NuVrCyQ&oe=69998414&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T09:59:00.819Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:00'),
(747, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:59:01'),
(748, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/Vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W0n4aZMS3h8GmFZ5UgjSPCFNvQaKYy8rUiH93EwazTs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770814740,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:01'),
(749, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T09:59:00.570Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:01'),
(750, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:01'),
(751, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387@lid\",\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770814740810,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T09:59:00.810Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:01'),
(752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 09:59:01'),
(753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs53UNseINhKRaThysQY7CzdkaKJUVmgxosNSu3CKgpA&oe=69999A07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T09:59:00.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 09:59:02'),
(754, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:15.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:12:15'),
(755, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:15.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:12:15'),
(756, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:12:17'),
(757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:12:17'),
(758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"ACF48A3CB4B723D94D267FE47F326931\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5Cy9MQGNyNlUkHYe+myZTqflnZefirubksDCsxgzaOU=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770815537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:12:18'),
(759, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"pushName\":\"Victor Qüitz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:12:18'),
(760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:12:18'),
(761, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"ACF48A3CB4B723D94D267FE47F326931\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5Cy9MQGNyNlUkHYe+myZTqflnZefirubksDCsxgzaOU=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770815537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:12:18'),
(762, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"pushName\":\"Victor Qüitz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:12:18'),
(763, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:17.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:12:18'),
(764, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:18.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:12:18'),
(765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:12:18.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:12:19'),
(766, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:26.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:27'),
(767, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:26.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:27'),
(768, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:28'),
(769, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:28'),
(770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:28'),
(771, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:28'),
(772, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:28'),
(773, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"555397110710@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB08C92CA82AD790EAAF0\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oSC24s0PKCDtyvYVnhHaE6WueXAfVNnz+QEEE4QF\\/ps=\"},\"documentWithCaptionMessage\":{\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/586798182_25985230211142575_1906213745928282683_n.enc?ccb=11-4&oh=01_Q5Aa3wFe0jKO9RoLNVr6zyOhHNc57rFYMiZI9WoiW7cQo7VoXQ&oe=69B409DB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante.pdf\",\"fileSha256\":\"BSIGj0L3AlrntdC6ihhS2VV99KzdVia7yOkeUJkeWO4=\",\"fileLength\":\"19829\",\"pageCount\":1,\"mediaKey\":\"FVl9oh6f9E\\/AbsVHgFC59DenlPcmxiuH+1UPAUi5F3Y=\",\"fileName\":\"Comprovante.pdf\",\"fileEncSha256\":\"n+c8CLTwEG29S+u8DZi6JqwEoAn36Kdg3GtJQMju\\/E0=\",\"directPath\":\"\\/v\\/t62.7119-24\\/586798182_25985230211142575_1906213745928282683_n.enc?ccb=11-4&oh=01_Q5Aa3wFe0jKO9RoLNVr6zyOhHNc57rFYMiZI9WoiW7cQo7VoXQ&oe=69B409DB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770815630\",\"contactVcard\":false,\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633982742_1963229214599751_3635903130598907932_n.enc?ccb=11-4&oh=01_Q5Aa3wGA-cq2xkDdG9eYN7TDEECXOL42pb8OGH-olvN_USOFUA&oe=69B3DE31&_nc_sid=5e03e0&_nc_hot=1770815665\",\"thumbnailSha256\":\"gzgtjfHFXK\\/Z2hmX8Vcp43jGPYx3gi4coxN9VBEbChM=\",\"thumbnailEncSha256\":\"Dni8Kfjre34mOTvRADhlAUsFqFzKDO6odYGkAGhFxPE=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAPQMBIgACEQEDEQH\\/xAAsAAEAAwEBAQAAAAAAAAAAAAAAAQMEBQIGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD7tRSblUFyBKJMvN6dBqu8ySgSiTDzOtzT32aLT2ADznrwHY85KDruVpNnqq0AAAAAAAA\\/\\/8QAMBAAAgEDAgMFBwUBAAAAAAAAAQIDAAQREiETIjEFECBCYVFSYnGRscEjMkCB4fH\\/2gAIAQEAAT8AfWCNDAH1GaXXjmIJ9Bjx3sU+qPgyhSAc7\\/4aRLs513kg9mkg\\/ioi8ZJa4kfI82KN\\/ZQMVknRW9hNJcxSoHjcMp6EVrWta918zwtGEZhlT0UNQvp1cahJsdxoWo55nQMvZ7kH40pdwCVwfZWBWBWB3do8pjxAJOUnqR9gaWzYyAy2cag+biEmkjWNQqDAHi7VQF4hoVuVuv8Aw1xpbdcRZjB3AV8DPryVbT3Mz894I0B3JmGf6BQUksT7JIrfIg+HtJ+E0eOCOVjzrn8ioJzO4AgilTzCOPJ+5qCCCViDZlNs5ZAKSCKM5SNV9QAPDcmTUNIQ7eYmg04GyRfU0jtj9QAH4c1JdW0OOLKqZ6ajig8ZAIOQa1LWpe7tGWCPhpKHIPu1G3Z7k6zKnzpLazk\\/Y0p+ooJCXCCC5yanighfTwp326ruKisIXjDkSJ6E0LOJCCBuO4qrdQDXDj9xfpQAAwB\\/O\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABURAQEAAAAAAAAAAAAAAAAAABFA\\/9oACAEDAQE\\/AGj\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"thumbnailHeight\":480,\"thumbnailWidth\":305,\"caption\":\"Comprovante.pdf\"},\"messageContextInfo\":{\"messageSecret\":\"oSC24s0PKCDtyvYVnhHaE6WueXAfVNnz+QEEE4QF\\/ps=\"}}}},\"messageType\":\"documentWithCaptionMessage\",\"messageTimestamp\":1770815668,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:29'),
(774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"555397110710@s.whatsapp.net\",\"pushName\":\"Ricardo 0710 $60 Live E Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:29'),
(775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"555397110710@s.whatsapp.net\",\"pushName\":\"Ricardo 0710 $60 Live E Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:29'),
(776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"555397110710@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB08C92CA82AD790EAAF0\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oSC24s0PKCDtyvYVnhHaE6WueXAfVNnz+QEEE4QF\\/ps=\"},\"documentWithCaptionMessage\":{\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/586798182_25985230211142575_1906213745928282683_n.enc?ccb=11-4&oh=01_Q5Aa3wFe0jKO9RoLNVr6zyOhHNc57rFYMiZI9WoiW7cQo7VoXQ&oe=69B409DB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante.pdf\",\"fileSha256\":\"BSIGj0L3AlrntdC6ihhS2VV99KzdVia7yOkeUJkeWO4=\",\"fileLength\":\"19829\",\"pageCount\":1,\"mediaKey\":\"FVl9oh6f9E\\/AbsVHgFC59DenlPcmxiuH+1UPAUi5F3Y=\",\"fileName\":\"Comprovante.pdf\",\"fileEncSha256\":\"n+c8CLTwEG29S+u8DZi6JqwEoAn36Kdg3GtJQMju\\/E0=\",\"directPath\":\"\\/v\\/t62.7119-24\\/586798182_25985230211142575_1906213745928282683_n.enc?ccb=11-4&oh=01_Q5Aa3wFe0jKO9RoLNVr6zyOhHNc57rFYMiZI9WoiW7cQo7VoXQ&oe=69B409DB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770815630\",\"contactVcard\":false,\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633982742_1963229214599751_3635903130598907932_n.enc?ccb=11-4&oh=01_Q5Aa3wGA-cq2xkDdG9eYN7TDEECXOL42pb8OGH-olvN_USOFUA&oe=69B3DE31&_nc_sid=5e03e0&_nc_hot=1770815665\",\"thumbnailSha256\":\"gzgtjfHFXK\\/Z2hmX8Vcp43jGPYx3gi4coxN9VBEbChM=\",\"thumbnailEncSha256\":\"Dni8Kfjre34mOTvRADhlAUsFqFzKDO6odYGkAGhFxPE=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAPQMBIgACEQEDEQH\\/xAAsAAEAAwEBAQAAAAAAAAAAAAAAAQMEBQIGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD7tRSblUFyBKJMvN6dBqu8ySgSiTDzOtzT32aLT2ADznrwHY85KDruVpNnqq0AAAAAAAA\\/\\/8QAMBAAAgEDAgMFBwUBAAAAAAAAAQIDAAQREiETIjEFECBCYVFSYnGRscEjMkCB4fH\\/2gAIAQEAAT8AfWCNDAH1GaXXjmIJ9Bjx3sU+qPgyhSAc7\\/4aRLs513kg9mkg\\/ioi8ZJa4kfI82KN\\/ZQMVknRW9hNJcxSoHjcMp6EVrWta918zwtGEZhlT0UNQvp1cahJsdxoWo55nQMvZ7kH40pdwCVwfZWBWBWB3do8pjxAJOUnqR9gaWzYyAy2cag+biEmkjWNQqDAHi7VQF4hoVuVuv8Aw1xpbdcRZjB3AV8DPryVbT3Mz894I0B3JmGf6BQUksT7JIrfIg+HtJ+E0eOCOVjzrn8ioJzO4AgilTzCOPJ+5qCCCViDZlNs5ZAKSCKM5SNV9QAPDcmTUNIQ7eYmg04GyRfU0jtj9QAH4c1JdW0OOLKqZ6ajig8ZAIOQa1LWpe7tGWCPhpKHIPu1G3Z7k6zKnzpLazk\\/Y0p+ooJCXCCC5yanighfTwp326ruKisIXjDkSJ6E0LOJCCBuO4qrdQDXDj9xfpQAAwB\\/O\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABURAQEAAAAAAAAAAAAAAAAAABFA\\/9oACAEDAQE\\/AGj\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"thumbnailHeight\":480,\"thumbnailWidth\":305,\"caption\":\"Comprovante.pdf\"},\"messageContextInfo\":{\"messageSecret\":\"oSC24s0PKCDtyvYVnhHaE6WueXAfVNnz+QEEE4QF\\/ps=\"}}}},\"messageType\":\"documentWithCaptionMessage\",\"messageTimestamp\":1770815668,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:29'),
(777, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:28.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:29'),
(778, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:29.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:30'),
(779, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:29.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:31'),
(780, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:36.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:36'),
(781, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:36.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:36'),
(782, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:40.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:41'),
(783, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:40.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:41'),
(784, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:41.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:41'),
(785, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"presences\":{\"86457725255831@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:41.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:41'),
(786, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:42'),
(787, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"555397110710@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB07346302F3F66AA5FCA\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"e o da denise\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vim9ouiVLfekXoofi0fSTZO5TQCCqTw0m+dSi6Zz1gY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770815681,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:42'),
(788, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:42'),
(789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:42'),
(790, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"555397110710@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB07346302F3F66AA5FCA\"},\"pushName\":\"Ricardo Iahnke\",\"message\":{\"conversation\":\"e o da denise\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"F3A1UYK+2Behbg==\",\"senderTimestamp\":\"1769553541\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vim9ouiVLfekXoofi0fSTZO5TQCCqTw0m+dSi6Zz1gY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770815681,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:42'),
(791, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"555397110710@s.whatsapp.net\",\"pushName\":\"Ricardo 0710 $60 Live E Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:14:43'),
(792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"555397110710@s.whatsapp.net\",\"pushName\":\"Ricardo 0710 $60 Live E Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:43'),
(793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"555397110710@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:14:42.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:14:43'),
(794, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:02.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:18:03'),
(795, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5A9349A7969ADBAC53A7F7C921DBD5C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770815882,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:02.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:18:03'),
(796, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:02.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:18:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(797, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5A9349A7969ADBAC53A7F7C921DBD5C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770815882,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:02.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:18:03'),
(798, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:02.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:18:03'),
(799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:02.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:18:03'),
(800, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A9349A7969ADBAC53A7F7C921DBD5C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770815887205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:07.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:18:07'),
(801, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A9349A7969ADBAC53A7F7C921DBD5C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770815887205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:18:07.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:18:07'),
(802, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ Renovação Concluída com Sucesso!\\n\\nOlá, *ricardo07100*!\\nSua assinatura foi renovada e está ativa até:\\n\\n📅 *Data de expiração:*\\n25\\/03\\/2026, 23:00:00 (23h00min)\\n\\nAgradecemos sua confiança em nossos serviços!\\n*Para continuar usando o sistema após essa data*, entre em contato para realizar uma nova renovação.\\n\\n*Aproveite o entretenimento sem limites!* 🎁🎬🍿\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770816012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:20:13'),
(803, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:20:13'),
(804, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816013346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:20:13'),
(805, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"86457725255831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:20:13'),
(806, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:61@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816013346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:20:13'),
(807, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816014090,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:14.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:20:14'),
(808, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"86457725255831@lid\",\"fromMe\":true,\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ Renovação Concluída com Sucesso!\\n\\nOlá, *ricardo07100*!\\nSua assinatura foi renovada e está ativa até:\\n\\n📅 *Data de expiração:*\\n25\\/03\\/2026, 23:00:00 (23h00min)\\n\\nAgradecemos sua confiança em nossos serviços!\\n*Para continuar usando o sistema após essa data*, entre em contato para realizar uma nova renovação.\\n\\n*Aproveite o entretenimento sem limites!* 🎁🎬🍿\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770816012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:20:14'),
(809, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816014090,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:14.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:20:14'),
(810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:20:14'),
(811, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816013430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:20:14'),
(812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"86457725255831@lid\",\"pushName\":\"Ricardo Iahnke\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603982117_1850819425560299_5763232732036170557_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOQrL1ZbO7dINfB2Pv15_f7hpdHf3CX-WIAPVz-_kDxQ&oe=699981AC&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:20:15'),
(813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:62@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816013430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:20:13.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:20:15'),
(814, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A9349A7969ADBAC53A7F7C921DBD5C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770816333876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:33.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:25:34'),
(815, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A9349A7969ADBAC53A7F7C921DBD5C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770816333876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:33.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:25:34'),
(816, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:44.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:25:45'),
(817, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:44.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:25:45'),
(818, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:49.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:25:49'),
(819, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:49.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:25:49'),
(820, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:49.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:25:49'),
(821, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:25:49.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:25:50'),
(822, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:00.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:00'),
(823, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:00.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:00'),
(824, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:11.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:12'),
(825, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:11.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:12'),
(826, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:12.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:12'),
(827, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:12.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:12'),
(828, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:23.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:24'),
(829, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:23.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:24'),
(830, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:27.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:27'),
(831, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:27.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:27'),
(832, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:37.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:37'),
(833, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:37.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:37'),
(834, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:49.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:49'),
(835, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:49.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:49'),
(836, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:50.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:50'),
(837, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:50.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:50'),
(838, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:53.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:53'),
(839, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:53.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:53'),
(840, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:56.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:26:56'),
(841, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:26:56.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:26:56'),
(842, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:00.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:00'),
(843, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:00.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:00'),
(844, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:01.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:01'),
(845, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:01.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:01'),
(846, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:11.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:12'),
(847, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:11.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:12'),
(848, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:12.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:12'),
(849, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:12.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:12'),
(850, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:13'),
(851, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC3A01EDE02FDD303C581D3C82665480\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Minha assinatura espirou \\n\\nVou fazer o pagamento pra renovar \\n\\nEsse mês eu indiquei vocês a uma amiga, e ela me disse que fez a assinatura, da pra ter algum desconto?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/lbd5sNU4qluz8BINoAegJjvyCmvEl7uzJX5Si2qRL8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770816433,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:13'),
(852, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:13'),
(853, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC3A01EDE02FDD303C581D3C82665480\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Minha assinatura espirou \\n\\nVou fazer o pagamento pra renovar \\n\\nEsse mês eu indiquei vocês a uma amiga, e ela me disse que fez a assinatura, da pra ter algum desconto?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/lbd5sNU4qluz8BINoAegJjvyCmvEl7uzJX5Si2qRL8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770816433,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:13'),
(854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:13'),
(855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:27:13'),
(856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:13'),
(857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:27:13.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:27:14'),
(858, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"239461740880058@lid\",\"id\":\"AC8E3A2BBE2EA627F9AF16FCA588FAC2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770816488531,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T10:28:08.531Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:28:08'),
(859, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554799225374@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2FFEDAB6C0F8C24812\"},\"pushName\":\"Regiane Lanor\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633137363_1590200985654356_3574287607988773385_n.enc?ccb=11-4&oh=01_Q5Aa3wHhs4Gnzy9LPzpcFu1Mxy4IxBwks3wj08bkyWtTi8GpWw&oe=69B3DB94&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"5oJiMjszy2YrgOm9ayMS0wLLoto7aAv6oGo6a+hSlEk=\",\"fileEncSha256\":\"KrNdHKoa9alb+6QQCeM4q3+dqtZI6ZijdGhGwqHeP9w=\",\"mediaKey\":\"u1UN\\/km3VOe3xImtYkBWKk\\/boLWbLX5aQtNI1Iq1Ras=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/633137363_1590200985654356_3574287607988773385_n.enc?ccb=11-4&oh=01_Q5Aa3wHhs4Gnzy9LPzpcFu1Mxy4IxBwks3wj08bkyWtTi8GpWw&oe=69B3DB94&_nc_sid=5e03e0\",\"fileLength\":\"218852\",\"mediaKeyTimestamp\":\"1770816526\",\"firstFrameLength\":218540,\"firstFrameSidecar\":\"ZhvQGIi8XSY6Lw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770816526171\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"3rotaq69XrJh6Q==\",\"senderTimestamp\":\"1770643921\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BKxvgnFCvyL8HlZ7xvZFtByHXhSBOI2L5gcc7U\\/hAps=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770816526,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"ios\"},\"date_time\":\"2026-02-11T10:28:46.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:28:46'),
(860, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799225374@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T10:28:46.842Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:28:47'),
(861, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554799225374@s.whatsapp.net\",\"pushName\":\"Regiane Lanor\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417572_856327976734320_4455023591216302254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeNoFWpp81xoDHY6C7khsgcM4do9CczQ-oL5BR7MFUIA&oe=69997F5B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T10:28:46.983Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:28:47'),
(862, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799225374@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417572_856327976734320_4455023591216302254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeNoFWpp81xoDHY6C7khsgcM4do9CczQ-oL5BR7MFUIA&oe=69997F5B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T10:28:46.976Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:28:47'),
(863, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799225374@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T10:29:00.229Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:00'),
(864, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554799225374@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AC3B81D3BF1107F858D\"},\"pushName\":\"Regiane Lanor\",\"message\":{\"conversation\":\"Amo vcs 😘\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"3rotaq69XrJh6Q==\",\"senderTimestamp\":\"1770643921\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"O2\\/igeKl7LhozoR7tgheFHqMEaFMvy290YTO\\/SCSsE8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770816540,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"ios\"},\"date_time\":\"2026-02-11T10:29:00.230Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:00'),
(865, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554799225374@s.whatsapp.net\",\"pushName\":\"Regiane Lanor\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417572_856327976734320_4455023591216302254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeNoFWpp81xoDHY6C7khsgcM4do9CczQ-oL5BR7MFUIA&oe=69997F5B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T10:29:00.481Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:00'),
(866, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799225374@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417572_856327976734320_4455023591216302254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeNoFWpp81xoDHY6C7khsgcM4do9CczQ-oL5BR7MFUIA&oe=69997F5B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T10:29:00.357Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(867, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"241888380645433@lid\",\"fromMe\":false,\"id\":\"AC3A5EF529E3259DCF2A78639FD3F2D7\"},\"pushName\":\"Adilson\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/vt.tiktok.com\\/ZSmLwevH2\\/\",\"matchedText\":\"https:\\/\\/vt.tiktok.com\\/ZSmLwevH2\\/\",\"description\":\"303 gostos, 31 comentários, \\\"Agora a Receita Federal vê movimentações a partir de 15.000,00 para pessoa jurídica Com as novas regras da e-Financeira, a Receita Federal do Brasil passou a monitorar com mais rigor todas as movimentações bancárias a partir de R$ 15.000,00 para pessoa jurídica. Depósitos, PIX, transferências e entradas acima desse valor são enviados automaticamente e analisados pelos sistemas digitais de fiscalização. Quando o que a empresa movimenta não combina com o faturamento declarado, com notas fiscais, com o Simples Nacional ou com o regime tributário escolhido, o sistema identifica possível omissão de receita — e isso pode gerar multa, cobrança retroativa ou reavaliação do regime. A fiscalização ficou 100% digital em 2026, e organizar a movimentação financeira passou a ser essencial para evitar problemas. 👉 Clique na bio e fale com um especialista para manter sua empresa totalmente regular dentro das novas regras.”\",\"title\":\"TikTok · Vidare Empresarial | Contador\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHQAAAgMBAQEBAQAAAAAAAAAABQYDBAcCAQgACf\\/EAD8QAAEDAwIEAwUHAgQFBQAAAAECAwQABRESIQYTMUEiUWEHFDJxsRUjQmJygaEkUjM0kcE1RFNk8YOSk7LR\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAwQAAQIF\\/8QAJBEAAwACAwACAgMBAQAAAAAAAAECAxESITEEQSJRBRMUQnH\\/2gAMAwEAAhEDEQA\\/AMeS8fOrUJ8+9Mb\\/AI0\\/WhKV1ahrAkNE9AsH+aUaHEfTKpBPQmojIUO9V4N0tcphOiWErxulYwasEwzumQmuXrX0dE\\/CSqvxmJQMuLSn5mucMno6k\\/vQPjG4R7XYZMp0hRSMIA7qPSrS29IjeltkHFPHMez\\/AHMXTJlEZIB8KB5msl4p4in3SSkvy3V9wjokfIVTt0eTcJDk19zwuncHfVTHGssV9KS4ghSTtg108WKMf\\/ohkrJk88F2E45GiqcIJKjg5O\\/7U18JcZTLYUpeeLsYbFtZ6D0ParJtEcowEAjHYZxVN+0xW0HCcHORmt5OFTqkVjx5Je0zXLVdo91hpkRl5B6p7pNTuOADrWX8ESnLbexGKssSQR+43FaDIeHnXLyRxrrwfmm136eyJCG0KcX8KRk1h3Ht9F9uLkdsaYzRGgE\\/GfMfKmP2mcSlhpVuiKJcUNTpSPhTnH+9UPZbw+3fp8dVwYU5aYziS84Owz0HfJ8qPhjgudAMt8nwQzeyy1Qry1FmSo550V0CW2oZRKGchRz+L1pi9tr5dat7xQlsKcWEoSMBIAGAKdGvcI6lIgMIjRgfA0jokVn3trkJXAtYT2cX9BQZyOsqS8C3CnHv7M25+O9fvePWhpcrzmetPcRLkAEu+tWY72HEH1FDRUzCiHUEnYEVomjVkOAYwcVP9o+7o1OPhCR3UrAoVEktOYIUlQ9DmmCPMQi3yW47cYyVtqS2XkBSQojbI8qVY0Rs35nb+sa\\/+QUv8dXIXJiJEaeC0qUVK0qz8qcVXZ96HwsFWa2lTDyUz2uWhXg06cg\\/ztS\\/7QEoc40S6yxEZgqaSWBHRpOkDfX+bVnfyxV42uS6MXtyD7dGS1FQ2ohOkbk9qMW1cVS0oHMJO2rTgUEZmNRnA5JOQTsPM0WYvkeUptDDZAJ06sHAPl0pqe+2ZT10hpat5QgpIJBGQaBXhERhfLW6Ur8+womm7LailoKy6DpBzt5UHk3SG2461LdQpaTg5I6\\/uanVdBqfFA9CuS6y6CFBt1KwrrtnrWgpkMPJKkKS4PynNJ8VqMsFaAkMqTqKe3nWhQbYzItyJCGUshzJCUjtXPzVKYTT9Pni6R5XEfGkluJEXFWXCdCwRpA21E9s4\\/mtutC2bXZYcFhptvkoAcUgYLi+6j5mrMq3NsuKcSE8wjBVp3I8s0MkIUnOFfxW6yLIkl4BU8HsI\\/aeD1pO9o8sy4sJPXStR\\/gVckrWgZyM\\/Kgl7aU8w0VEk5Nax40qTRnJkbliepJrnBq+8zpNQaKbFdisBUrScqFcCpmPjT86oIGA2pByglJz1Bq4zcZccA6tY8lV+0DTijXDEdp6a6h5tLiS0dlDI6ilG9DzSC9kLs2M26fAFDPWobpCX7wtbyySlWAT2BA2FNVsgtNRkJabCUjsKFcYMKZ91WMhCjgjtmqx1+RhpcSpHtbEllIcABG4Jqybe3FZK0N5P93rXMR1OlOVYTU97llMZJaWgFHQKO1NxsrU+shaYy2QUE7dahm21uS22423h0HOcd\\/OqyOLhGicp\\/kKwOgWP\\/NEbdxBDfaVhxnCt9KVg4NVxqWFbx2tENvt5ac0pQUtlOkj1rZ4MdDXDsVStgEZJrMIjqXXWwk9Tk\\/KtYbINijI7aR9a5uVO7Ul5PwjaFady1E4P8UOVbJMkZjxnXB5pQTTw1CadcGUimy1NNMtBKEgAV0q+HOPxnHj51ZPUYNdLTIihPvcdxoK6a04zQK7ITyUJCSME9q2L2skOPwEJxslR\\/1I\\/wDysm4n+5aR2yo1URqw1XygTZqBk1QKBmr0twFRqkVjNHaBITganjn7xPzrlLKjU7DCgobd6zoNsZABpNHOE\\/8AiZ8i2R9KW0ujFGOHJDybi0iOoePqD3AB\\/wBs0rx2O1XRq9tZ1RkkDvUXE1vM2xvoQnLjY5iPmKtWUlUNIAyc9BV+a+1boTkmYCllBCVbZ6\\/+awofqBc\\/pmNTLwzAjhbniUfhQO5pKn3SbcZJMl5QaJ2SnoK84kmomXyU6xkRuYrlA9k5qO3MKlymGEEBby0tjPmTgV0InSFbt09H5bTaU\\/4qseqagYKwsk7DselaRx37IuJeEoyZTjAnQikFT8XKgj0UOo+dZspXmd62zH10OPCfEr1uktplEvR84OfiSPSvpODLak2GK+wsLaW2FJUDXyYgBppnzUCSa1\\/2Z35TEB+2Pry2pvmtZPQ9xSjwqrVILWZ8HLNchyMnIom3eGIw++dSn5msfvfFD9vfYDK8IXkEZ69Khe4nafQC5jPkDT2RbEPjYuXY7ca3qJNmMqQ4FJQgDP7msv44ntKZY5SsnWon+K8uNyLwJbQAk9DSjxA4oIaJPUmgcEq2PuEp0U35OSd6rF8561XUomoyTRAQdTbAO1SN23UtKEgalHSPmaOlAHauY4xLZ\\/Wn61v+sB\\/YPVq9kEGPbQbxMecmEeLkEBCPTcZPzq\\/aeB7BbnErS28qQlWA4t04G2MEdKfZLyxkOEaTsCR9aXZf3LywvPKWMEeXy+R+tT\\/MtF\\/66b7ZeiOMNK5DbaWijbCRtQXj5oK4cuCV9HWFYI7LSMg\\/x\\/Fc8xxcxsnqpOkn8yTV25tC72GbEOzxbOk+ZxRJnS4tA7r\\/AKTPkt9CkuFKhhSTgir\\/AA6si+2wf9y1\\/wDYUVuNuDylKxoeSdJ+Y7Gq1liFq\\/W4uJ0kSWyT2+IUJy5CzSs\\/oWhKVsJSsBSSnBBGQdqyP2j+wyw8Tqcm2jTabofFqbT904fzJ7fMU7cX8c2Hg+3JfvM1CFlAKGEHU4vbsn\\/evmf2ge2riDixxyHZCu02s7Etqw6sfmV2+QqMqU\\/RBn2x+zXCXbZhbceiPOMLLatSSUqxsfKi\\/DjilXaE0HC2FLCNSRuAaChGhoDcnPU9TR7guMuVxBGAGQ1lw\\/tVqOictsZ+L+F5Up1n3eWjlN5OrBCt8dunbzpYmWR+KnZ9ayPOtKnPvKa0ob3Hc0p3VD6iS4rA8gKxVP8AY5jwzK6KtruEdq2MsyW1LeTnUQn12\\/jFLnFjyHEsaGuWNR3z1ouhTYOCd6EcWaCxG0ddRz\\/FCT7JS0hfCq8JrgGvc0QCaGsbVxHH9Wz+tP1rpZryP\\/m2f1p+tNpCDZ9CyiBqBoFLSkJOf8PunqUeo9PSikp0lWDhX74NQxbNNu5fMFKQtnGrWrSN84+lMa4rsA\\/yfQKbZS4WsDGVbf6VIlK48kOAfCcEDyoymyqjxWZD8y3IZWvShxUpISpXkD0Jz2qWRZXEzFxTLgJlJRzFNKkpCwnrqKeuPWsU492blVrWjDfaPYjb707NjIJiSvvNh8Ku\\/wC1JpaBGQcH0r6YlcOG4woziZVtfYU5ydXvCVIWVdEg9Cc9qTeIPYxNEpAtciI286CpEV14Aqx109yBQ219MIk\\/0YtJbXIc5khanV4xqXucfvXKGQDnc04TOBL7DdktusxiY\\/8AjaZTZ5e+PFvtv51Ytns5vc95lAVAY5qS42XZjY1pHVQAJJHrWdybWxGcSSQACST0FajwJZDaoSpMtOmS\\/jKT+FPYUdsXs3hWtDc1+7WiS4lWOYZaA2k+Q3603J4UmSipLL8FxRSHMIkJPgPRW3b1qan9kmmn4J1xmsMDZJUo+VJ93nKkEhKUpFaXdeC30MtrkzrayhYC0KXKSkKB6EE9RQlHs4nT1utwJFskuI3WGpSVFPzA6UG1+joRlTXZmAiIUcknNBuKmA0xH053UaZp8Z233GTEfTpdYcU0tOc4Uk4P8igPFi+ZGjDG4Ur6Cl16ErwU66Fdaa6AogAfFVJETmWz+tP1rkipoI\\/q2f1j606c43mW2DnCQdt+\\/wC1FOF2Jkmz36PbnW2pjjQQytzIShRCwCcA1QfB6nof3opwuZP2XfPs9CVzOUAylR0hS8Kxv23omZ\\/gweJfmL59m91tsRUe13KLLiobWywZpQFNpWACcclSDuMY07g9Qd6nf4BurkJy2l61qbVKVO+0slEhRKfgKAjSB+HIVjQANNTxuDL4zwsqxPTecEzWXkytW5bx4wQfUdO+ap3DgfiJqWpy3T1uR4rKYDDbjhCnWlIWVuE5wDrd6eTSaSHCI+zCe5aEQHL2hstFT7ctCwpx2QEJS0VpUgpAR4h4cE7dDTLd+Frlc+LoF9+0WWXoKGUsxmyChQyS9qJRq38IGCPh3oJY+ArgxGtLV1AkPRriHn3A8UoUzyVjASDt4yjI8xmo+D+C+IbdxHBn3N4rjthCVtpeyoENgas905zlPyNQhxePZtcJMi8SWp0V5UyQXmkuvrbEce9NvFKSlJ+NLYBJBKSBjIJwRXwhdVNTmTFsbiJzYJfkPrdcjkNFACDyxq89XhwSrY0CuHBXEj8ZYjsljDiS+Ey9Rl\\/1TbmrB2TpbSsb9deO1M\\/EvDE2dGtLsJh1LjMRxh5oSdBAKQAB1GcioQHN8BT3bJIjSl29BVbTBbJkrfGvXqCypTacdxjBxRmDwlLicbvcQfaDeHFKaciDSG0x9ICMeHVqBB2JxvQqRYeIHuG7TCfgIcTDeW44wmTo5yVIeSjJH4kFTaj2JJx0GRaOC+J0Lb94PvK2ilUp33oj39Hg8GPw40q+efWoQsr9nd1QGXDJhPe5yW24SPeVsgQ2+cW0FYQrC\\/vsHAIIQN\\/I5wPwbLsXEEu4TJLMjnJXpbS4o+7FSslKdgFJOBudwR5Gg8mx36XYbdbTDccXb1L5iFSChJLiVlvSv8Ya1IBPfB7iivA3Dt6tV9W9dFawllaHZPOKvelEpKTp\\/DpAP+tQhivG1vdc4tva0tkpM185\\/wDUVSNxJFKWW9QIOT1rdeIYiXr1ctCf+ZdJUf1Gs049gcphpwDKVLUkH9hVVi09hpzqp0ZU6jSajzV+UzhR2qqW6w0aTHs1PB\\/zbP6x9aiNdwziWz+tP1pwQR9ASNkqwBnyoXI1pUdK1JB28KsUXdGVEZ1eoqo+0FZ1beW1MiqehUelyoNxYe57pSpYQrKz3IFPLhc055i9\\/wAxpKv7A92cKN1AahjfcbinOKoPRmVp31ICh67VrGvUVlfjK0hToZdPMX8Jx4jUBW6ATzHMj8xq3KSBHWe+CDULiPu3Ck7Yq3PZU30fmnHeSnLq\\/wD3GpFuOf8AUXgH+41xGwYyepI32rvOoYxitcTO3s5Up3Ug8xwb\\/wBxqN5bvTmrx+qpFdUj1rl0ZT6\\/KsuTSoHy3XktKXznBpBPxGli1yZC4qVGU8orySdZNMN4OYEgJJC9BHX0pWtUZDcVoFAPhHQ1ho2mE+cUJLbRys9SO1AvaMgIs9ubzk61kkj0FFVu8v4AEilrjiXzoUQEg4Wr6ClsiGcbM9ksAqO1VDH36UVXgmueXQHIdUF1V+j7SmSdvGPrXprjHiHzo4uuzfZd0t7WCqWzgfmB+lCJHElrbBIeKz+VJOaz1Q8NQLUcKpZ\\/Or6Q\\/P8AGQvWMV84ujlJSzGWr1JAp04JmGbw1BeWPHy+nyJ\\/2rD56zg1pfs5lO\\/ZTDeRpCdqZ+FnrJT5Cv8AI\\/GjFC4j3MAMRzHdJNcJb+4OQdxXcjxQ1E\\/2mplpCWsDpinzkJ9FKK2QyQf4r0JJ2Gw71K1tj1r3PU4HWrRpvsgcSQQD6Vw8PArY+mKnO4QTjc1zIGNPkTU9L2K3Er6o9ucCfiUg\\/Ssytd3mNRkpL6jp28W+K0zilAVrB6BIH+prI3hy3nUp6BRpD5jqdNM6fwZmm1S2X7he5Khu9j5AUDmTnpWnmuqWB0yelUbo4oK2NRxlEsgk5OTSOO6q1tj+bHE43pFtKqkChiqmo10FGmWIo\\/\\/Z\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/542930087_1106431841578653_5457642848317230763_n.enc?ccb=11-4&oh=01_Q5Aa3wHPQGDBJEXfTETmNgtMCa2RjYHOL80isFqbekwRfBdSWQ&oe=69B3E87C&_nc_sid=5e03e0\",\"thumbnailSha256\":\"ZGOOkxabaLT7+KXfrOIKthNAhZBpc5e5PxH2388qyDg=\",\"thumbnailEncSha256\":\"0J8LPjmUZwCMkg1fZJFAjKCV5uAFz+4nOuD\\/hf2h+SA=\",\"mediaKey\":\"B+4szx1W8Sd2AhfCP3kxVQckuZhZl+jLMyaCQlMJ2kI=\",\"mediaKeyTimestamp\":\"1770816558\",\"thumbnailHeight\":828,\"thumbnailWidth\":600,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"0YX7PaWYuTaZyg==\",\"senderTimestamp\":\"1769599648\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BXW2tDtLAkSdI343XE3lycxsFBoyqEwtu4g1behV4HE=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770816559,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T10:29:19.830Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:19'),
(868, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T10:29:19.829Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:19'),
(869, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"241888380645433@lid\",\"pushName\":\"Adilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0MebqKuZqMVmLTh2ItfILaX_TMknh3-wTJaa9JlQSkw&oe=699989DE&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T10:29:19.967Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:20'),
(870, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0MebqKuZqMVmLTh2ItfILaX_TMknh3-wTJaa9JlQSkw&oe=699989DE&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T10:29:19.962Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:29:20'),
(871, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T10:32:54.158Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:32:54'),
(872, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:33:55'),
(873, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:33:55'),
(874, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:33:55'),
(875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:33:55'),
(876, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC98C2E1821B6CCCD3D7A8D9D5D24A2F\"},\"pushName\":\"Carlos\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/recibo.infinitepay.io\\/a11567f1-d6ba-4856-abab-c924f4138d59\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/a11567f1-d6ba-4856-abab-c924f4138d59\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAIQAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANv\\/bAEMABgQFBgUEBgYFBgcHBggKEAoKCQkKFA4PDBAXFBgYFxQWFhodJR8aGyMcFhYgLCAjJicpKikZHy0wLSgwJSgpKP\\/bAEMBBwcHCggKEwoKEygaFhooKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKP\\/AABEIAE4ATgMBIgACEQEDEQH\\/xAAcAAABBQEBAQAAAAAAAAAAAAAAAgMEBQYHAQj\\/xAAwEAACAQMDAwIFAwQDAAAAAAABAgMEBREABhITISIUQQcxMlSTFVFxCCMkYTOCkf\\/EABUBAQEAAAAAAAAAAAAAAAAAAAAC\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAER\\/9oADAMBAAIRAxEAPwD6p0ay+5N82bb1XcqSuad6yhtpurwQx83eALMSy+wx0GBLEKGeNc5dQU7e3dPeq2KAbYvdFC7zxtU1L0nTRomKOCEnZ\\/rHHsp7kH5d9BqtGs7trdA3DbLLcKK0XFKO5RGbnI9P\\/ioUDxmUCUnzVlKhQxGRy46or38VLPZbXVV9fQXaOKiplqq5DFGJaNJGZacSoXDBpiuFUAlcgyCMd9Bv9Gs7ed2U1pu1Rb5qOrlkioRW9SIxcHZpBHHAMuCJZHOIwwCuQwViVYDQRSJLEkkTq8bgMrKchgfkQfcaBWjRo0Bo0aNBFqbbQ1XqvU0VNN6uEU1R1IlbrRDliN8jyXzfxPbyb9zp2CmggGIIYoxydvBAO7tyY9vct3P7nvpHoaT7WD8Y0ehpPtYPxjQQqPbljov0\\/wBFZrbT\\/p3U9F0qVE9L1P8Ak6eB4csnPHGffTkditEdRRzx2ugWejaV6aRadA0DSkmUocZUuSeRH1ZOc6k+hpPtYPxjUS1yWa70EVdant9dRS56dRTFJY3wSDhlyDggj+QdA3btsWC2VNNUW6x2uknpojBBJBSRxtFGWLFFIAKqWZjgdssT76sqSmgo6WGlo4YoKaBFjiiiQKkaKMBVA7AAAAAaR6Gk+1g\\/GNHoaT7WD8Y0EjRqP6Gk+1g\\/GNHoaT7WD8Y0EjRqP6Gk+1g\\/GNHoaT7WD8Y0EjXIf6lbhNbtu7TeI3N4ZdyUkVRT2yR0qKmEpLyiTgysSwGAAR3x8tde1VX\\/AG9a9wfpv6vS+o\\/Tq2O4Uv8AcZOnPHng\\/iRnGT2OQfcaDgu3KjdNx+HPxFn21fa23UtRWpR2KnvtxU1tFKGCT07OxJiZsiONGbkDxOQW6ja\\/+nOlgsVuvu2OpeqWvtU8TVFnuVRDUig6qc1MU0ShXV\\/JiO2CD4gks+9l2Rtye6Xq4VVqhqZ7ysK3BahmliqBEAI+UTEpleIwQudNfDrY9n2BtyKz2KNjErM0lRMqdacli2ZGVV5EcuI7dgANByW6\\/FOhofjHca+e4wNa6Gpptsx0c1yWFBI8haqrTE3dekcR8uIVhnD4Ha+2y81P\\/UZVQ024rpdrPcttNd4Y56zrU8Zkq1UdBVwoTgo4kZOCe5zrqV8sVuvq0K3Wn64oquKup\\/Nl4TRnKP4kZwfY5B9xqm3fsi239L3VpGIL5cbLPYxWlnYJBJyOOHLicMeWcZ9s40GP+PtJDLR26mtbVp3hepktdrENwqYkiGS0k7xRSLlI0LMX4NglOQK9tY3c+56233Zrr\\/n1exPh5LBbagi6SQ1dxqiYUaWRAoEvTJHi3BXJJDsrFR1\\/amw7VZKTbTzwJU3Wx21bdBU5YIniBJIkRJVHcju4HIg4JI7aY3J8LNlbl3JHfr5t+mq7onDMrO6rJwPj1EDBZPYeQOQADkADQbXRo0aA0aNGgy9FY7maOkp7jcJZAk8bzNFVyqzItKIyAwwe8o54yM\\/M9+2ranjuUVTTdWZJqcK0cikDmTklZSwAHcBRwCjBY9zjVlrM3zfe3LFuW37futx6F3uHT9NB0JG6nUconkqlRlgR3I\\/320DlRaa6SZ5I5JEXqzMIxcZsMGC4OceP0kcQDw5llIIAPtrt17SOpNXXxRSy0iQxiNmmWCRQQHXngt3JYlslshSfDL29VcaKkkWOqrKaF2yFWSVVJwATgE+2R\\/6NIpbtbqvHpbhST8vl05lbPdx7H945B\\/0b9joI10t1XUVdNJRV0tPGJecy8yc\\/R3AORjirLx+n+4X+pRluntdSl2SqaoqFiWaaUxGteRCGVVUcSB27FsZIUk4znxugQQCCCD3BGjQGjRo0DNZP6aESCGaYl0ThEuW8mC5\\/gZyT7AE6TT1cc\\/UIDoq4w0i8Q44q3IZ9vLH8gjUjRoIcFygmmMSpVKwjEmZKWVFwQCByZQOXceOc\\/MY7HWV3L8NNubj3bQX64xTGrpMl4I5AsNTleP8AeTHl4qFPy5KArclAA22jTBWvbbTc56e4T26knqV4SRTT0w6qFORT6hyUqXfHyKlm+WTqLR7d23QQyx0NltMEU7RGRIKSNRIUYGMsFHfiSCCfp+Yxq80aCus8dBGKmS30zU3XlBkDQPCXdY0QEKwGcIiDt28f9HUyoqI4Iuo\\/MrgkcEZycAnsFBJ7A\\/z8tO6NBX3a5m300EsVDW15llWIR0iBmUnPk3IgKoxgkntnvqw0aNFWzJJH\\/9k=\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TFbKcHlEISsfymXpnWjj9evWENt4hlFeSL85j9zzncs=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770816835,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:33:55'),
(877, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:33:55'),
(878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:33:55'),
(879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:33:55'),
(880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:33:55'),
(881, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC98C2E1821B6CCCD3D7A8D9D5D24A2F\"},\"pushName\":\"Carlos\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/recibo.infinitepay.io\\/a11567f1-d6ba-4856-abab-c924f4138d59\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/a11567f1-d6ba-4856-abab-c924f4138d59\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAIQAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANv\\/bAEMABgQFBgUEBgYFBgcHBggKEAoKCQkKFA4PDBAXFBgYFxQWFhodJR8aGyMcFhYgLCAjJicpKikZHy0wLSgwJSgpKP\\/bAEMBBwcHCggKEwoKEygaFhooKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKP\\/AABEIAE4ATgMBIgACEQEDEQH\\/xAAcAAABBQEBAQAAAAAAAAAAAAAAAgMEBQYHAQj\\/xAAwEAACAQMDAwIFAwQDAAAAAAABAgMEBREABhITISIUQQcxMlSTFVFxCCMkYTOCkf\\/EABUBAQEAAAAAAAAAAAAAAAAAAAAC\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAER\\/9oADAMBAAIRAxEAPwD6p0ay+5N82bb1XcqSuad6yhtpurwQx83eALMSy+wx0GBLEKGeNc5dQU7e3dPeq2KAbYvdFC7zxtU1L0nTRomKOCEnZ\\/rHHsp7kH5d9BqtGs7trdA3DbLLcKK0XFKO5RGbnI9P\\/ioUDxmUCUnzVlKhQxGRy46or38VLPZbXVV9fQXaOKiplqq5DFGJaNJGZacSoXDBpiuFUAlcgyCMd9Bv9Gs7ed2U1pu1Rb5qOrlkioRW9SIxcHZpBHHAMuCJZHOIwwCuQwViVYDQRSJLEkkTq8bgMrKchgfkQfcaBWjRo0Bo0aNBFqbbQ1XqvU0VNN6uEU1R1IlbrRDliN8jyXzfxPbyb9zp2CmggGIIYoxydvBAO7tyY9vct3P7nvpHoaT7WD8Y0ehpPtYPxjQQqPbljov0\\/wBFZrbT\\/p3U9F0qVE9L1P8Ak6eB4csnPHGffTkditEdRRzx2ugWejaV6aRadA0DSkmUocZUuSeRH1ZOc6k+hpPtYPxjUS1yWa70EVdant9dRS56dRTFJY3wSDhlyDggj+QdA3btsWC2VNNUW6x2uknpojBBJBSRxtFGWLFFIAKqWZjgdssT76sqSmgo6WGlo4YoKaBFjiiiQKkaKMBVA7AAAAAaR6Gk+1g\\/GNHoaT7WD8Y0EjRqP6Gk+1g\\/GNHoaT7WD8Y0EjRqP6Gk+1g\\/GNHoaT7WD8Y0EjXIf6lbhNbtu7TeI3N4ZdyUkVRT2yR0qKmEpLyiTgysSwGAAR3x8tde1VX\\/AG9a9wfpv6vS+o\\/Tq2O4Uv8AcZOnPHng\\/iRnGT2OQfcaDgu3KjdNx+HPxFn21fa23UtRWpR2KnvtxU1tFKGCT07OxJiZsiONGbkDxOQW6ja\\/+nOlgsVuvu2OpeqWvtU8TVFnuVRDUig6qc1MU0ShXV\\/JiO2CD4gks+9l2Rtye6Xq4VVqhqZ7ysK3BahmliqBEAI+UTEpleIwQudNfDrY9n2BtyKz2KNjErM0lRMqdacli2ZGVV5EcuI7dgANByW6\\/FOhofjHca+e4wNa6Gpptsx0c1yWFBI8haqrTE3dekcR8uIVhnD4Ha+2y81P\\/UZVQ024rpdrPcttNd4Y56zrU8Zkq1UdBVwoTgo4kZOCe5zrqV8sVuvq0K3Wn64oquKup\\/Nl4TRnKP4kZwfY5B9xqm3fsi239L3VpGIL5cbLPYxWlnYJBJyOOHLicMeWcZ9s40GP+PtJDLR26mtbVp3hepktdrENwqYkiGS0k7xRSLlI0LMX4NglOQK9tY3c+56233Zrr\\/n1exPh5LBbagi6SQ1dxqiYUaWRAoEvTJHi3BXJJDsrFR1\\/amw7VZKTbTzwJU3Wx21bdBU5YIniBJIkRJVHcju4HIg4JI7aY3J8LNlbl3JHfr5t+mq7onDMrO6rJwPj1EDBZPYeQOQADkADQbXRo0aA0aNGgy9FY7maOkp7jcJZAk8bzNFVyqzItKIyAwwe8o54yM\\/M9+2ranjuUVTTdWZJqcK0cikDmTklZSwAHcBRwCjBY9zjVlrM3zfe3LFuW37futx6F3uHT9NB0JG6nUconkqlRlgR3I\\/320DlRaa6SZ5I5JEXqzMIxcZsMGC4OceP0kcQDw5llIIAPtrt17SOpNXXxRSy0iQxiNmmWCRQQHXngt3JYlslshSfDL29VcaKkkWOqrKaF2yFWSVVJwATgE+2R\\/6NIpbtbqvHpbhST8vl05lbPdx7H945B\\/0b9joI10t1XUVdNJRV0tPGJecy8yc\\/R3AORjirLx+n+4X+pRluntdSl2SqaoqFiWaaUxGteRCGVVUcSB27FsZIUk4znxugQQCCCD3BGjQGjRo0DNZP6aESCGaYl0ThEuW8mC5\\/gZyT7AE6TT1cc\\/UIDoq4w0i8Q44q3IZ9vLH8gjUjRoIcFygmmMSpVKwjEmZKWVFwQCByZQOXceOc\\/MY7HWV3L8NNubj3bQX64xTGrpMl4I5AsNTleP8AeTHl4qFPy5KArclAA22jTBWvbbTc56e4T26knqV4SRTT0w6qFORT6hyUqXfHyKlm+WTqLR7d23QQyx0NltMEU7RGRIKSNRIUYGMsFHfiSCCfp+Yxq80aCus8dBGKmS30zU3XlBkDQPCXdY0QEKwGcIiDt28f9HUyoqI4Iuo\\/MrgkcEZycAnsFBJ7A\\/z8tO6NBX3a5m300EsVDW15llWIR0iBmUnPk3IgKoxgkntnvqw0aNFWzJJH\\/9k=\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TFbKcHlEISsfymXpnWjj9evWENt4hlFeSL85j9zzncs=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770816835,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:55.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:33:56'),
(882, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:59.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:34:00'),
(883, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:33:59.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:34:00'),
(884, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:02.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:34:02'),
(885, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:02.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:34:02'),
(886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:34:08'),
(887, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC9DA806DE0D99D5651757A2303B0C5C\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Pode liberar p mi. Por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4FbBSzAo3U876\\/9LzGjZtmK8CRtuQjLWIDi34duBOKo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770816848,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:34:08'),
(888, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:34:08'),
(889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:34:08'),
(890, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"AC9DA806DE0D99D5651757A2303B0C5C\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Pode liberar p mi. Por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4FbBSzAo3U876\\/9LzGjZtmK8CRtuQjLWIDi34duBOKo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770816848,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:34:08'),
(891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:34:09'),
(892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:34:09'),
(893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:34:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:34:09'),
(894, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:26@lid\",\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816968573,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T10:36:08.573Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:36:08'),
(895, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:26@lid\",\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770816968565,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T10:36:08.566Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:36:09'),
(896, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:11.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:12'),
(897, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:11.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:12'),
(898, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5B515174D1335D51A6B4A86CE067DCC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wGcLtlbqR0eJD8g7xPedrH5prjF8zeITdCRBEDy8Fc8_Q&oe=69B3E0DD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"YHm4CBG\\/1AF67+MGkJQNBjlctbBHY\\/aIwz5L1uLVWrk=\",\"fileEncSha256\":\"EbC\\/tUAd+edhEVPVCejteKEglJEBvHylnEuDkRU55SM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wGcLtlbqR0eJD8g7xPedrH5prjF8zeITdCRBEDy8Fc8_Q&oe=69B3E0DD&_nc_sid=5e03e0&_nc_hot=1770817271\",\"mediaKeyTimestamp\":\"1770817270\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770817271,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:11.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(899, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5B515174D1335D51A6B4A86CE067DCC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wGcLtlbqR0eJD8g7xPedrH5prjF8zeITdCRBEDy8Fc8_Q&oe=69B3E0DD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"YHm4CBG\\/1AF67+MGkJQNBjlctbBHY\\/aIwz5L1uLVWrk=\",\"fileEncSha256\":\"EbC\\/tUAd+edhEVPVCejteKEglJEBvHylnEuDkRU55SM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wGcLtlbqR0eJD8g7xPedrH5prjF8zeITdCRBEDy8Fc8_Q&oe=69B3E0DD&_nc_sid=5e03e0&_nc_hot=1770817271\",\"mediaKeyTimestamp\":\"1770817270\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770817271,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:11.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:12'),
(900, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:11.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:12'),
(901, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:11.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:12'),
(902, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5B515174D1335D51A6B4A86CE067DCC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770817273705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:13.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:13'),
(903, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5B515174D1335D51A6B4A86CE067DCC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770817273705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:13.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:14'),
(904, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:36'),
(905, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5F7E17EC772826B7C04A16A22BF9459\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Desconto sempre válidos ate o último dia de vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770817296,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:36'),
(906, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:36'),
(907, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5F7E17EC772826B7C04A16A22BF9459\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Desconto sempre válidos ate o último dia de vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770817296,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:36'),
(908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:36.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:36'),
(909, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:36.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:37'),
(910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5F7E17EC772826B7C04A16A22BF9459\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770817297095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:37.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:41:37'),
(911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5F7E17EC772826B7C04A16A22BF9459\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770817297095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:41:37.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:41:37'),
(912, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116342694924306@lid\",\"presences\":{\"116342694924306@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:49:28.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:49:29'),
(913, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116342694924306@lid\",\"presences\":{\"116342694924306@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:49:28.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:49:29'),
(914, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116342694924306@lid\",\"presences\":{\"116342694924306@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:49:29.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:49:29'),
(915, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116342694924306@lid\",\"presences\":{\"116342694924306@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:49:29.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:49:29'),
(916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5F7E17EC772826B7C04A16A22BF9459\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770818097543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:54:57.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:54:58'),
(917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5F7E17EC772826B7C04A16A22BF9459\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770818097543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:54:57.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:54:59'),
(918, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5B515174D1335D51A6B4A86CE067DCC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770818097552,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:54:57.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:54:59'),
(919, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5B515174D1335D51A6B4A86CE067DCC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770818097552,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:54:57.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:54:59'),
(920, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:55:41.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:55:42'),
(921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:55:41.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:55:42'),
(922, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:55:52.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:55:52'),
(923, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:55:52.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:55:52'),
(924, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:02.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:02'),
(925, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:02.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:03'),
(926, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:12.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:13'),
(927, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:12.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:13'),
(928, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:23.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:23'),
(929, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:23.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:23'),
(930, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:33.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:33'),
(931, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:33.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:33'),
(932, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:34'),
(933, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC61D4D2935EA02906C26F77E39D231B\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/580117692_933976172319413_9070232303074967057_n.enc?ccb=11-4&oh=01_Q5Aa3wEOLDK3HMp4g5yWfH0h3OKUal4KyWgUuU9vfODOLiPx8w&oe=69B3EDEA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MjoNmy9nBX2CPKZMh5rzgqGjDmVGVovtv3vMIYVWtRA=\",\"fileLength\":\"105199\",\"seconds\":51,\"ptt\":true,\"mediaKey\":\"yGP574sPCafPESERZVBWHUwmnp299\\/Q6vZleFUuvMQo=\",\"fileEncSha256\":\"ISuR04oYILi\\/ZafJ8iMys188SQEwnGzVQ6bKiLlnx5g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/580117692_933976172319413_9070232303074967057_n.enc?ccb=11-4&oh=01_Q5Aa3wEOLDK3HMp4g5yWfH0h3OKUal4KyWgUuU9vfODOLiPx8w&oe=69B3EDEA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818144\",\"waveform\":\"AAA8KTYDAxoFAC4qJyQMECQgJDIALjcAMA8AAjMwKDE6JShIIDMjAQApIgAcMCoPOzI7AAA2NigAMgAAMSwvAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RESUjn\\/DPMP\\/3abSpoHkyVNjQkAz9amLFsyvBn3qxs8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:34'),
(934, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:34'),
(935, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:34'),
(936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC61D4D2935EA02906C26F77E39D231B\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/580117692_933976172319413_9070232303074967057_n.enc?ccb=11-4&oh=01_Q5Aa3wEOLDK3HMp4g5yWfH0h3OKUal4KyWgUuU9vfODOLiPx8w&oe=69B3EDEA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MjoNmy9nBX2CPKZMh5rzgqGjDmVGVovtv3vMIYVWtRA=\",\"fileLength\":\"105199\",\"seconds\":51,\"ptt\":true,\"mediaKey\":\"yGP574sPCafPESERZVBWHUwmnp299\\/Q6vZleFUuvMQo=\",\"fileEncSha256\":\"ISuR04oYILi\\/ZafJ8iMys188SQEwnGzVQ6bKiLlnx5g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/580117692_933976172319413_9070232303074967057_n.enc?ccb=11-4&oh=01_Q5Aa3wEOLDK3HMp4g5yWfH0h3OKUal4KyWgUuU9vfODOLiPx8w&oe=69B3EDEA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818144\",\"waveform\":\"AAA8KTYDAxoFAC4qJyQMECQgJDIALjcAMA8AAjMwKDE6JShIIDMjAQApIgAcMCoPOzI7AAA2NigAMgAAMSwvAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RESUjn\\/DPMP\\/3abSpoHkyVNjQkAz9amLFsyvBn3qxs8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:34'),
(937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:35'),
(938, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 10:56:35'),
(939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T10:56:34.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 10:56:36'),
(940, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:07.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:03:08'),
(941, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29537584_1268883695134893_5245502467558540096_n.enc?ccb=11-4&oh=01_Q5Aa3wFmsJQWDOa53dEQWJf7T1vWaoHCy8--c9qHjZVXFWbaaw&oe=69B3F4BB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WJqeina0FM81yA\\/MtDTW\\/Wrmkt7RUO\\/pPDTDxnD2J44=\",\"fileLength\":\"9789\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"sdJXmLu+ZAejzLSYAFL1vmjwa91H9uauIDF1LtqZ\\/Lw=\",\"fileEncSha256\":\"dtKouZMgd1E6+KZ+OXJIcT5JGET4selw2SrsZZveaMQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29537584_1268883695134893_5245502467558540096_n.enc?ccb=11-4&oh=01_Q5Aa3wFmsJQWDOa53dEQWJf7T1vWaoHCy8--c9qHjZVXFWbaaw&oe=69B3F4BB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818584\",\"waveform\":\"ABwaFxUZFxkaFBhFWCFjY1xHKhcNMFVVT0pLSzg7TERSRDxMSBhXUSlOV0kzVUccQ0A+NjJGPSALCggHCQYJEA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:07.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:03:08'),
(942, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:07.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:03:08'),
(943, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29537584_1268883695134893_5245502467558540096_n.enc?ccb=11-4&oh=01_Q5Aa3wFmsJQWDOa53dEQWJf7T1vWaoHCy8--c9qHjZVXFWbaaw&oe=69B3F4BB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WJqeina0FM81yA\\/MtDTW\\/Wrmkt7RUO\\/pPDTDxnD2J44=\",\"fileLength\":\"9789\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"sdJXmLu+ZAejzLSYAFL1vmjwa91H9uauIDF1LtqZ\\/Lw=\",\"fileEncSha256\":\"dtKouZMgd1E6+KZ+OXJIcT5JGET4selw2SrsZZveaMQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29537584_1268883695134893_5245502467558540096_n.enc?ccb=11-4&oh=01_Q5Aa3wFmsJQWDOa53dEQWJf7T1vWaoHCy8--c9qHjZVXFWbaaw&oe=69B3F4BB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818584\",\"waveform\":\"ABwaFxUZFxkaFBhFWCFjY1xHKhcNMFVVT0pLSzg7TERSRDxMSBhXUSlOV0kzVUccQ0A+NjJGPSALCggHCQYJEA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:07.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:03:08'),
(944, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:08.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:03:08'),
(945, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:08.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:03:08'),
(946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818590707,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:10.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:03:10'),
(947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818590707,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:03:10.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:03:10'),
(948, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:46.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:05:46'),
(949, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587262183_3362617970578499_5748995423534365355_n.enc?ccb=11-4&oh=01_Q5Aa3wFSdjolyKvYAYGCcl-Dn47ZQlSzv3eXTvV5CBUDV0Qv3w&oe=69B40D35&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WRkXL\\/krC2qlBWrJNl4DCLG2gJxC16vLTFoplXZu1u0=\",\"fileLength\":\"252877\",\"seconds\":109,\"ptt\":true,\"mediaKey\":\"brbQCV9cgrw\\/d8pRHLdtOuB3TLoS4e32h1E9A9Cj0BA=\",\"fileEncSha256\":\"x+GAN3TBmEWi8uoml1ixlYwvUzf4FtBGfW\\/eBlr5d9g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587262183_3362617970578499_5748995423534365355_n.enc?ccb=11-4&oh=01_Q5Aa3wFSdjolyKvYAYGCcl-Dn47ZQlSzv3eXTvV5CBUDV0Qv3w&oe=69B40D35&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818637\",\"waveform\":\"ADwvCVpKQFQsDVJOTT42IScOAEw4ABQ+UmBaFgBORApRREw1GxNORVZTO1MBPk87V00kAElXKFNQWU4aWT9NAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:46.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:05:46'),
(950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:46.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:05:46'),
(951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:46.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:05:46'),
(952, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587262183_3362617970578499_5748995423534365355_n.enc?ccb=11-4&oh=01_Q5Aa3wFSdjolyKvYAYGCcl-Dn47ZQlSzv3eXTvV5CBUDV0Qv3w&oe=69B40D35&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WRkXL\\/krC2qlBWrJNl4DCLG2gJxC16vLTFoplXZu1u0=\",\"fileLength\":\"252877\",\"seconds\":109,\"ptt\":true,\"mediaKey\":\"brbQCV9cgrw\\/d8pRHLdtOuB3TLoS4e32h1E9A9Cj0BA=\",\"fileEncSha256\":\"x+GAN3TBmEWi8uoml1ixlYwvUzf4FtBGfW\\/eBlr5d9g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587262183_3362617970578499_5748995423534365355_n.enc?ccb=11-4&oh=01_Q5Aa3wFSdjolyKvYAYGCcl-Dn47ZQlSzv3eXTvV5CBUDV0Qv3w&oe=69B40D35&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818637\",\"waveform\":\"ADwvCVpKQFQsDVJOTT42IScOAEw4ABQ+UmBaFgBORApRREw1GxNORVZTO1MBPk87V00kAElXKFNQWU4aWT9NAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:46.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:05:46'),
(953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818747124,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:47.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:05:47'),
(954, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818747124,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:47.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:05:47'),
(955, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:05:46.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:05:47'),
(956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:48.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:06:48'),
(957, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:48.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:06:49');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5C64AACD59837FA85B3F29C29A95898\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633985370_930222226350378_6706380742892173310_n.enc?ccb=11-4&oh=01_Q5Aa3wHJ1qsuPkxZNE7zPhOtUrYzz0RoZSG0lQ_bUBbvE6BmHw&oe=69B415BF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xcxfHCgl7Fw15DR8L0Pw\\/nzjSDBRb7Pstzx+QGs7USQ=\",\"fileLength\":\"73137\",\"seconds\":32,\"ptt\":true,\"mediaKey\":\"CVJBEitKOirIZmStWU6RrOIYb+V8rESKgZZSqLLDSgw=\",\"fileEncSha256\":\"fihvkhBPuPB5z52bvRdH3zwDZcqFtydCxBhaNZJ9AwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633985370_930222226350378_6706380742892173310_n.enc?ccb=11-4&oh=01_Q5Aa3wHJ1qsuPkxZNE7zPhOtUrYzz0RoZSG0lQ_bUBbvE6BmHw&oe=69B415BF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818777\",\"waveform\":\"AB0dLVktTVpjAABOYwAAAGNbHFJAVy5IXAJLXDFdMlVZUl8AWT5fAQBdT1NfU1dbVjEAUD5FPgBbVFtQCB8\\/TQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:48.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:06:49'),
(959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:49.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:06:49'),
(960, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5C64AACD59837FA85B3F29C29A95898\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633985370_930222226350378_6706380742892173310_n.enc?ccb=11-4&oh=01_Q5Aa3wHJ1qsuPkxZNE7zPhOtUrYzz0RoZSG0lQ_bUBbvE6BmHw&oe=69B415BF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xcxfHCgl7Fw15DR8L0Pw\\/nzjSDBRb7Pstzx+QGs7USQ=\",\"fileLength\":\"73137\",\"seconds\":32,\"ptt\":true,\"mediaKey\":\"CVJBEitKOirIZmStWU6RrOIYb+V8rESKgZZSqLLDSgw=\",\"fileEncSha256\":\"fihvkhBPuPB5z52bvRdH3zwDZcqFtydCxBhaNZJ9AwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633985370_930222226350378_6706380742892173310_n.enc?ccb=11-4&oh=01_Q5Aa3wHJ1qsuPkxZNE7zPhOtUrYzz0RoZSG0lQ_bUBbvE6BmHw&oe=69B415BF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818777\",\"waveform\":\"AB0dLVktTVpjAABOYwAAAGNbHFJAVy5IXAJLXDFdMlVZUl8AWT5fAQBdT1NfU1dbVjEAUD5FPgBbVFtQCB8\\/TQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:48.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:06:49'),
(961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:49.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:06:49'),
(962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5C64AACD59837FA85B3F29C29A95898\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818810806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:50.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:06:50'),
(963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5C64AACD59837FA85B3F29C29A95898\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818810806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:06:50.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:06:50'),
(964, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5EC690576E877A40886007A60702039\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634210598_1393536849122064_50828712024510389_n.enc?ccb=11-4&oh=01_Q5Aa3wGgczDNphUFSzMEOrOJKc49e_9ac0QgdK2d3CS6d0Q-7g&oe=69B3F254&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"L6t3VIADQ2sBJpixU7sbkizaJOsIQHy4s852xTqqmnE=\",\"fileLength\":\"25652\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"XGvpgo+RxTc2dpgeQLdWC2qkZ9x0LnxNpk6iFNdpQZA=\",\"fileEncSha256\":\"vMg6mOzZWUAcDOd7QWafupJJrssb76ZjNIAInP3MFwk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634210598_1393536849122064_50828712024510389_n.enc?ccb=11-4&oh=01_Q5Aa3wGgczDNphUFSzMEOrOJKc49e_9ac0QgdK2d3CS6d0Q-7g&oe=69B3F254&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818815\",\"waveform\":\"AAFQYU4kTilHUVJJJkk1VFNTOUM8UzhXRVZFUV0tYwUEAAAAYFxjVi5LRFNTQVorK1lZRlhZVS4eVEs0VwMOHw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818824,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:05'),
(965, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A5EC690576E877A40886007A60702039\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634210598_1393536849122064_50828712024510389_n.enc?ccb=11-4&oh=01_Q5Aa3wGgczDNphUFSzMEOrOJKc49e_9ac0QgdK2d3CS6d0Q-7g&oe=69B3F254&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"L6t3VIADQ2sBJpixU7sbkizaJOsIQHy4s852xTqqmnE=\",\"fileLength\":\"25652\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"XGvpgo+RxTc2dpgeQLdWC2qkZ9x0LnxNpk6iFNdpQZA=\",\"fileEncSha256\":\"vMg6mOzZWUAcDOd7QWafupJJrssb76ZjNIAInP3MFwk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634210598_1393536849122064_50828712024510389_n.enc?ccb=11-4&oh=01_Q5Aa3wGgczDNphUFSzMEOrOJKc49e_9ac0QgdK2d3CS6d0Q-7g&oe=69B3F254&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818815\",\"waveform\":\"AAFQYU4kTilHUVJJJkk1VFNTOUM8UzhXRVZFUV0tYwUEAAAAYFxjVi5LRFNTQVorK1lZRlhZVS4eVEs0VwMOHw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818824,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:05'),
(966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5EC690576E877A40886007A60702039\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818825406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:05'),
(967, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:05'),
(968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5EC690576E877A40886007A60702039\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770818825406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:05'),
(969, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:06'),
(970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:06'),
(971, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:05.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:06'),
(972, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:20.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:20'),
(973, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:20.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:20'),
(974, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:22'),
(975, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A857CE18A872577F536\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770757561\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c2V7EoZ35r0F4+ORM76hFzCB\\/eN2\\/XwWwEYo\\/vdtqV0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770818841,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:22'),
(976, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:22'),
(977, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:22'),
(978, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A857CE18A872577F536\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770757561\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c2V7EoZ35r0F4+ORM76hFzCB\\/eN2\\/XwWwEYo\\/vdtqV0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770818841,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:22'),
(979, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:23'),
(980, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:23'),
(981, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:22.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:23'),
(982, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:25.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:25'),
(983, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:25.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:25'),
(984, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:35.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:35'),
(985, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:35.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:36'),
(986, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:35.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:36'),
(987, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:35.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:36'),
(988, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:41.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:42'),
(989, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:41.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:42'),
(990, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:50.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:50'),
(991, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:50.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:50'),
(992, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:54.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:07:54'),
(993, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:07:54.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:07:54'),
(994, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:04.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:05'),
(995, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:04.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:05'),
(996, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:06.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:06'),
(997, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:06.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:06'),
(998, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:07'),
(999, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A9F56126E2A8376E9CC\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634181463_2430590387380844_944026429358416081_n.enc?ccb=11-4&oh=01_Q5Aa3wGaMZ6sgPWwGCzQTTrDSKEWtgT1Hcbs582NEMWH7k6bFA&oe=69B41680&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WfhiqJW1dNrlMXSydwIghGdk+XuOqhAXs4KGfErcE2U=\",\"fileLength\":\"27641\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"PuCrRPk10EIfaqAOpZVmLkMmW3Z1MyE9vM5LpR8bTEc=\",\"fileEncSha256\":\"M4EUWOYU3dN9Tumoi76TkSmjuOQwjZswnSFople08DA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634181463_2430590387380844_944026429358416081_n.enc?ccb=11-4&oh=01_Q5Aa3wGaMZ6sgPWwGCzQTTrDSKEWtgT1Hcbs582NEMWH7k6bFA&oe=69B41680&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818874\",\"streamingSidecar\":\"hq8UVn4gna1qBw==\",\"waveform\":\"Bg8IZGRkUC1hK2RkN2RkZGRkZFNcZGRkT2RkU2RWMWRkWFBkU0cvUl5kZEA4XWRQYU1ILDQaJk5kZDcYCw8SEw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770757561\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ETCc5qgnbtpgMpZzAuLt28ORGD3xAMZiJtUSO8noFqg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818886,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:07'),
(1000, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:07'),
(1001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A9F56126E2A8376E9CC\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634181463_2430590387380844_944026429358416081_n.enc?ccb=11-4&oh=01_Q5Aa3wGaMZ6sgPWwGCzQTTrDSKEWtgT1Hcbs582NEMWH7k6bFA&oe=69B41680&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WfhiqJW1dNrlMXSydwIghGdk+XuOqhAXs4KGfErcE2U=\",\"fileLength\":\"27641\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"PuCrRPk10EIfaqAOpZVmLkMmW3Z1MyE9vM5LpR8bTEc=\",\"fileEncSha256\":\"M4EUWOYU3dN9Tumoi76TkSmjuOQwjZswnSFople08DA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634181463_2430590387380844_944026429358416081_n.enc?ccb=11-4&oh=01_Q5Aa3wGaMZ6sgPWwGCzQTTrDSKEWtgT1Hcbs582NEMWH7k6bFA&oe=69B41680&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770818874\",\"streamingSidecar\":\"hq8UVn4gna1qBw==\",\"waveform\":\"Bg8IZGRkUC1hK2RkN2RkZGRkZFNcZGRkT2RkU2RWMWRkWFBkU0cvUl5kZEA4XWRQYU1ILDQaJk5kZDcYCw8SEw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770757561\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ETCc5qgnbtpgMpZzAuLt28ORGD3xAMZiJtUSO8noFqg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770818886,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:07'),
(1002, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:07'),
(1003, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:08'),
(1004, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:08'),
(1005, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:07.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:08'),
(1006, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:26.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:26'),
(1007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:26.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:26'),
(1008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:36.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:36'),
(1009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:36.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:36'),
(1010, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:46.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:46'),
(1011, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:46.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:46'),
(1012, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:56.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:08:56'),
(1013, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:08:56.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:08:57'),
(1014, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:08.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:09:08'),
(1015, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:08.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:09:08'),
(1016, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:09:09'),
(1017, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:09:09'),
(1018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:09:09'),
(1019, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AC60D4E2D0ED49E8662\"},\"pushName\":\"Thay\",\"message\":{\"extendedTextMessage\":{\"text\":\"A gente pagou no domingo. Deve ter sido por isso. Desde já agradeço.\",\"contextInfo\":{\"stanzaId\":\"3A1F69F1AECA3BA552A4\",\"participant\":\"209165460963368@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"yOg8MN+j8\\/zGOXEA2Zad+nkcpb2ZYpNKeV06pqmsXd4=\",\"fileLength\":\"48160\",\"height\":1600,\"width\":441,\"mediaKey\":\"lPiZ54O4B1svsxHr5t+zDCGhxKkle3dP7UYNl6neTEM=\",\"fileEncSha256\":\"+5qeNsZxX7RyHUdl0\\/5+rSWE5xvE7yXeJQvrFxnqlmM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&_nc_hot=1770562240\",\"mediaKeyTimestamp\":\"1770562111\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABQDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0F5ZrBjKAM2aAOW8qOqRIKB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/xAAhEAEAAgEDBAMAAAAAAAAAAAABAAIRECExEhMyQQMiYf\\/aAAgBAQABPwB+WtLo5lL9fAmiUy9QQwG0IYVi49QckPNiEOIO7M\\/kHMPNiQ4neqWT3O6O2IWlq2bOMQLnAaOc7T7af\\/\\/+AAMA\\/9k=\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"2VSuPQ5aNNRpyPYoWryKJmqJccn3oZIL4qjSqccxrI5j7IZJOTK84g==\",\"scanLengths\":[3831,22404,10384,11541],\"midQualityFileSha256\":\"Qhgnj1phn0Sb\\/jT3DNPgnNZ3DlF6Zcdo8JsJfSTSULg=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770757561\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nyDSDHSr1yiJoelhwsXJehNYcZeWiyxePnau0r0ceuE=\"}},\"contextInfo\":{\"stanzaId\":\"3A1F69F1AECA3BA552A4\",\"participant\":\"209165460963368@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"yOg8MN+j8\\/zGOXEA2Zad+nkcpb2ZYpNKeV06pqmsXd4=\",\"fileLength\":\"48160\",\"height\":1600,\"width\":441,\"mediaKey\":\"lPiZ54O4B1svsxHr5t+zDCGhxKkle3dP7UYNl6neTEM=\",\"fileEncSha256\":\"+5qeNsZxX7RyHUdl0\\/5+rSWE5xvE7yXeJQvrFxnqlmM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&_nc_hot=1770562240\",\"mediaKeyTimestamp\":\"1770562111\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABQDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0F5ZrBjKAM2aAOW8qOqRIKB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/xAAhEAEAAgEDBAMAAAAAAAAAAAABAAIRECExEhMyQQMiYf\\/aAAgBAQABPwB+WtLo5lL9fAmiUy9QQwG0IYVi49QckPNiEOIO7M\\/kHMPNiQ4neqWT3O6O2IWlq2bOMQLnAaOc7T7af\\/\\/+AAMA\\/9k=\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"2VSuPQ5aNNRpyPYoWryKJmqJccn3oZIL4qjSqccxrI5j7IZJOTK84g==\",\"scanLengths\":[3831,22404,10384,11541],\"midQualityFileSha256\":\"Qhgnj1phn0Sb\\/jT3DNPgnNZ3DlF6Zcdo8JsJfSTSULg=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770818949,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:09:09'),
(1020, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:09:10'),
(1021, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:09:10');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1022, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AC60D4E2D0ED49E8662\"},\"pushName\":\"Thay\",\"message\":{\"extendedTextMessage\":{\"text\":\"A gente pagou no domingo. Deve ter sido por isso. Desde já agradeço.\",\"contextInfo\":{\"stanzaId\":\"3A1F69F1AECA3BA552A4\",\"participant\":\"209165460963368@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"yOg8MN+j8\\/zGOXEA2Zad+nkcpb2ZYpNKeV06pqmsXd4=\",\"fileLength\":\"48160\",\"height\":1600,\"width\":441,\"mediaKey\":\"lPiZ54O4B1svsxHr5t+zDCGhxKkle3dP7UYNl6neTEM=\",\"fileEncSha256\":\"+5qeNsZxX7RyHUdl0\\/5+rSWE5xvE7yXeJQvrFxnqlmM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&_nc_hot=1770562240\",\"mediaKeyTimestamp\":\"1770562111\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABQDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0F5ZrBjKAM2aAOW8qOqRIKB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/xAAhEAEAAgEDBAMAAAAAAAAAAAABAAIRECExEhMyQQMiYf\\/aAAgBAQABPwB+WtLo5lL9fAmiUy9QQwG0IYVi49QckPNiEOIO7M\\/kHMPNiQ4neqWT3O6O2IWlq2bOMQLnAaOc7T7af\\/\\/+AAMA\\/9k=\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"2VSuPQ5aNNRpyPYoWryKJmqJccn3oZIL4qjSqccxrI5j7IZJOTK84g==\",\"scanLengths\":[3831,22404,10384,11541],\"midQualityFileSha256\":\"Qhgnj1phn0Sb\\/jT3DNPgnNZ3DlF6Zcdo8JsJfSTSULg=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770757561\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nyDSDHSr1yiJoelhwsXJehNYcZeWiyxePnau0r0ceuE=\"}},\"contextInfo\":{\"stanzaId\":\"3A1F69F1AECA3BA552A4\",\"participant\":\"209165460963368@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"yOg8MN+j8\\/zGOXEA2Zad+nkcpb2ZYpNKeV06pqmsXd4=\",\"fileLength\":\"48160\",\"height\":1600,\"width\":441,\"mediaKey\":\"lPiZ54O4B1svsxHr5t+zDCGhxKkle3dP7UYNl6neTEM=\",\"fileEncSha256\":\"+5qeNsZxX7RyHUdl0\\/5+rSWE5xvE7yXeJQvrFxnqlmM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/631786594_2715473695461616_3193430717341316406_n.enc?ccb=11-4&oh=01_Q5Aa3wGbPW1Yk7Z4mCkPWGQZNjSKyIdf99RuEHE3KmN-FHFX8Q&oe=69B023E5&_nc_sid=5e03e0&_nc_hot=1770562240\",\"mediaKeyTimestamp\":\"1770562111\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABQDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0F5ZrBjKAM2aAOW8qOqRIKB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/xAAhEAEAAgEDBAMAAAAAAAAAAAABAAIRECExEhMyQQMiYf\\/aAAgBAQABPwB+WtLo5lL9fAmiUy9QQwG0IYVi49QckPNiEOIO7M\\/kHMPNiQ4neqWT3O6O2IWlq2bOMQLnAaOc7T7af\\/\\/+AAMA\\/9k=\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"2VSuPQ5aNNRpyPYoWryKJmqJccn3oZIL4qjSqccxrI5j7IZJOTK84g==\",\"scanLengths\":[3831,22404,10384,11541],\"midQualityFileSha256\":\"Qhgnj1phn0Sb\\/jT3DNPgnNZ3DlF6Zcdo8JsJfSTSULg=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770818949,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:09:10'),
(1023, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:09:09.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:09:10'),
(1024, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5EC690576E877A40886007A60702039\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770819061535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:01.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:11:01'),
(1025, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5C64AACD59837FA85B3F29C29A95898\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770819061543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:01.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:11:01'),
(1026, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770819061551,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:01.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:11:01'),
(1027, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5EC690576E877A40886007A60702039\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770819061535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:01.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:11:02'),
(1028, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770819061551,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:01.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:11:02'),
(1029, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5C64AACD59837FA85B3F29C29A95898\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770819061543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:01.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:11:02'),
(1030, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770819063526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:03.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:11:03'),
(1031, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5A53CDD8364F0DEAFB9138FCEA16F8A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770819063526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:11:03.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:11:03'),
(1032, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5C64AACD59837FA85B3F29C29A95898\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770819184718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:04.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:05'),
(1033, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5C64AACD59837FA85B3F29C29A95898\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770819184718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:04.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:05'),
(1034, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:14.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:14'),
(1035, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:14.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:14'),
(1036, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:24.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:24'),
(1037, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:24.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:24'),
(1038, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:34.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:35'),
(1039, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:34.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:35'),
(1040, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5EC690576E877A40886007A60702039\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770819218922,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:38.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:38'),
(1041, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A5EC690576E877A40886007A60702039\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770819218922,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:38.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:39'),
(1042, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:42'),
(1043, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:42'),
(1044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC7F036AD9CAB9E77A9B58BA6AF68CEB\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Ok Johnny \\n\\nEu entendo \\n\\nObrigado pela ajuda \\n\\nSe puder deixar os 35 está ótimo pra mim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S214XwZt\\/INcM6OGYx3\\/MoBRPCggSpLlaF894iOi0pc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770819222,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:42'),
(1045, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:42'),
(1046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:42'),
(1047, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:43'),
(1048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:43'),
(1049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:43'),
(1050, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:43'),
(1051, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC7F036AD9CAB9E77A9B58BA6AF68CEB\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Ok Johnny \\n\\nEu entendo \\n\\nObrigado pela ajuda \\n\\nSe puder deixar os 35 está ótimo pra mim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S214XwZt\\/INcM6OGYx3\\/MoBRPCggSpLlaF894iOi0pc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770819222,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:42.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:43'),
(1052, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:49.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:49'),
(1053, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:49.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:50'),
(1054, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"ACE8DB28BD6D447D6A898C38302E38D8\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Vou fazer o Pix agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H\\/B9wlmY3wGGXyC624ppq4C+cIZS7KeF7Ew99Um7Mok=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770819239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:59'),
(1055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:59'),
(1056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"ACE8DB28BD6D447D6A898C38302E38D8\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Vou fazer o Pix agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H\\/B9wlmY3wGGXyC624ppq4C+cIZS7KeF7Ew99Um7Mok=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770819239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:13:59'),
(1057, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:13:59'),
(1058, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:14:00'),
(1059, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:14:00'),
(1060, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:14:00'),
(1061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:13:59.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:14:00'),
(1062, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC6F8F95F0A251DA2ADE1D1F83517829\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633978516_693218433780963_3389686367684551618_n.enc?ccb=11-4&oh=01_Q5Aa3wGcgsad03__jBG4WlOEi9_ruVL-ftm5VTt-vl3PVlmDfQ&oe=69B3F968&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"LtwJURjydCQX5g\\/GeDgQ2w2mYoB\\/fj7HfWbf5HIFbX0=\",\"fileLength\":\"67549\",\"height\":1599,\"width\":462,\"mediaKey\":\"EpxFczFcNIXcLsXSvQi2tJ+CSsIwPuTi9o4KguaHhcM=\",\"fileEncSha256\":\"Hp7MR4u1qfZhSSuK0AvC\\/uKkP8LuMpTvuPzGZYVh3as=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633978516_693218433780963_3389686367684551618_n.enc?ccb=11-4&oh=01_Q5Aa3wGcgsad03__jBG4WlOEi9_ruVL-ftm5VTt-vl3PVlmDfQ&oe=69B3F968&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770819375\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADoAEAMBIgACEQEDEQH\\/xAAqAAADAQEAAAAAAAAAAAAAAAABAgMABgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA6CyMHAgMbE3OP\\/\\/EACIQAAIABgEFAQAAAAAAAAAAAAECAAMQERIhIgQTFDEyQf\\/aAAgBAQABPwDLqVezOoBOqdmdcksDuEWeH5uCsAg+qKrg7ItTyZeWNmgEGM5t+JWEy\\/VAhpSI2lJgMSfkiv8A\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAgEBPwAf\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAwEBPwAf\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"bSy1zs40pXW\\/qpHPFVq3NKBwrbCbkesmxYREobuNsYqM78+WIOvjHw==\",\"scanLengths\":[4641,31888,14371,16649],\"midQualityFileSha256\":\"cw0+nB0Wsp1HDZpH4fcxyhB8RV2ylTkvxADF8P8zEss=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QEY7mXYv2RItY0E6ZtPQOR6azhch2UaXOTKfOYWMz0U=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770819377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:17.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:18'),
(1063, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:17.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:18'),
(1064, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"AC6F8F95F0A251DA2ADE1D1F83517829\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633978516_693218433780963_3389686367684551618_n.enc?ccb=11-4&oh=01_Q5Aa3wGcgsad03__jBG4WlOEi9_ruVL-ftm5VTt-vl3PVlmDfQ&oe=69B3F968&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"LtwJURjydCQX5g\\/GeDgQ2w2mYoB\\/fj7HfWbf5HIFbX0=\",\"fileLength\":\"67549\",\"height\":1599,\"width\":462,\"mediaKey\":\"EpxFczFcNIXcLsXSvQi2tJ+CSsIwPuTi9o4KguaHhcM=\",\"fileEncSha256\":\"Hp7MR4u1qfZhSSuK0AvC\\/uKkP8LuMpTvuPzGZYVh3as=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633978516_693218433780963_3389686367684551618_n.enc?ccb=11-4&oh=01_Q5Aa3wGcgsad03__jBG4WlOEi9_ruVL-ftm5VTt-vl3PVlmDfQ&oe=69B3F968&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770819375\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADoAEAMBIgACEQEDEQH\\/xAAqAAADAQEAAAAAAAAAAAAAAAABAgMABgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA6CyMHAgMbE3OP\\/\\/EACIQAAIABgEFAQAAAAAAAAAAAAECAAMQERIhIgQTFDEyQf\\/aAAgBAQABPwDLqVezOoBOqdmdcksDuEWeH5uCsAg+qKrg7ItTyZeWNmgEGM5t+JWEy\\/VAhpSI2lJgMSfkiv8A\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAgEBPwAf\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAwEBPwAf\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"bSy1zs40pXW\\/qpHPFVq3NKBwrbCbkesmxYREobuNsYqM78+WIOvjHw==\",\"scanLengths\":[4641,31888,14371,16649],\"midQualityFileSha256\":\"cw0+nB0Wsp1HDZpH4fcxyhB8RV2ylTkvxADF8P8zEss=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QEY7mXYv2RItY0E6ZtPQOR6azhch2UaXOTKfOYWMz0U=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770819377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:17.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:18'),
(1065, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:17.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:18'),
(1066, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:18.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:18'),
(1067, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:18.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:18'),
(1068, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:17.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:19'),
(1069, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:17.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:19'),
(1070, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:24.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:24'),
(1071, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"presences\":{\"80578032472106@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:24.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:24'),
(1072, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"ACF121EFEEAAFA4A2033BEF4396942DE\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Mais uma vez, obrigado pela ajuda Johnny\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wb17Su6l47zlUzrsBJAVJJVVPBKvS5vB9+vLrpRFOTM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770819395,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:35'),
(1073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:35'),
(1074, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:35'),
(1075, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":false,\"id\":\"ACF121EFEEAAFA4A2033BEF4396942DE\"},\"pushName\":\"Victor Qüitz\",\"message\":{\"conversation\":\"Mais uma vez, obrigado pela ajuda Johnny\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769801289\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wb17Su6l47zlUzrsBJAVJJVVPBKvS5vB9+vLrpRFOTM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770819395,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:35'),
(1076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:35'),
(1077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:36'),
(1078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:16:36'),
(1079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:16:35.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:16:36'),
(1080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:28.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:28'),
(1081, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:28.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:28'),
(1082, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Eu que agradeço a parceria\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770819628,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:28.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:28'),
(1083, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:28.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:28'),
(1084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:28.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:28'),
(1085, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Eu que agradeço a parceria\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770819628,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:28.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:28'),
(1086, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770819629859\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770819631,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:31.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:31.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:31'),
(1088, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"80578032472106@lid\",\"fromMe\":true,\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770819629859\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770819631,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:31.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:31'),
(1089, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"80578032472106@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:31.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:31'),
(1090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:31.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:31'),
(1091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"80578032472106@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620188293_812792861769065_7805264109294610669_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsPInDIs9yXoH7ym0KPG5OkZMM49IzaGFRuNU20iUdrw&oe=6999A24B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:31.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:32'),
(1092, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819632476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:32.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:32'),
(1093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819632476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:32.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:32'),
(1094, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819632844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:32.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:20:32'),
(1095, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819632844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:20:32.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:20:33'),
(1096, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:48.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:22:48'),
(1097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:48.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:22:48'),
(1098, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:48.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:48'),
(1099, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:48.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:48'),
(1100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A54EEF5518D7D34ED6FA37FFBF4DE6F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586164262_927256376458071_6717897011562939790_n.enc?ccb=11-4&oh=01_Q5Aa3wF41Nn0vphALg7ye3JQ4x6gbp66Fyjw4RZKIeg4UCbdkQ&oe=69B41934&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"60I7tInsuVii3Db44xgrGodGcX6SJEByggQQLD3rW9s=\",\"fileEncSha256\":\"VSwnC0A7m3xWrny9FBKuR5SwPphN9m6uWaLnEIopfMw=\",\"mediaKey\":\"E1lRjG\\/\\/FJRCeCyeusEPneDMWnAPWWqxvgNctqxb7IQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586164262_927256376458071_6717897011562939790_n.enc?ccb=11-4&oh=01_Q5Aa3wF41Nn0vphALg7ye3JQ4x6gbp66Fyjw4RZKIeg4UCbdkQ&oe=69B41934&_nc_sid=5e03e0\",\"fileLength\":\"73434\",\"mediaKeyTimestamp\":\"1770681656\",\"isAnimated\":false,\"stickerSentTs\":\"1770819766984\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770819768,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:48.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:22:48'),
(1101, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A54EEF5518D7D34ED6FA37FFBF4DE6F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586164262_927256376458071_6717897011562939790_n.enc?ccb=11-4&oh=01_Q5Aa3wF41Nn0vphALg7ye3JQ4x6gbp66Fyjw4RZKIeg4UCbdkQ&oe=69B41934&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"60I7tInsuVii3Db44xgrGodGcX6SJEByggQQLD3rW9s=\",\"fileEncSha256\":\"VSwnC0A7m3xWrny9FBKuR5SwPphN9m6uWaLnEIopfMw=\",\"mediaKey\":\"E1lRjG\\/\\/FJRCeCyeusEPneDMWnAPWWqxvgNctqxb7IQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586164262_927256376458071_6717897011562939790_n.enc?ccb=11-4&oh=01_Q5Aa3wF41Nn0vphALg7ye3JQ4x6gbp66Fyjw4RZKIeg4UCbdkQ&oe=69B41934&_nc_sid=5e03e0\",\"fileLength\":\"73434\",\"mediaKeyTimestamp\":\"1770681656\",\"isAnimated\":false,\"stickerSentTs\":\"1770819766984\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770819768,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:48.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:49'),
(1102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A54EEF5518D7D34ED6FA37FFBF4DE6F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819769875,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:49.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:22:49'),
(1103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A54EEF5518D7D34ED6FA37FFBF4DE6F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819769875,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:49.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:50'),
(1104, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"33749716775@s.whatsapp.net\",\"pushName\":\"Tatiane7465 $70 Mytv E Void Iza $70\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554799187171@s.whatsapp.net\",\"pushName\":\"Arestides7171 $100 Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T11:22:54.768Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:54'),
(1105, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"33749716775@s.whatsapp.net\",\"pushName\":\"Tatiane7465 $70 Mytv E Void Iza $70\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554799187171@s.whatsapp.net\",\"pushName\":\"Arestides7171 $100 Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T11:22:55.007Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:55'),
(1106, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:59.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:22:59'),
(1107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:59.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:59'),
(1108, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A5D5A4A865DAF38712EF8F09C0AF7910\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770819779,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:59.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:22:59'),
(1109, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A5D5A4A865DAF38712EF8F09C0AF7910\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770819779,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:59.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:22:59'),
(1110, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:59.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:23:00'),
(1111, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:22:59.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:23:00'),
(1112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A59FF9A181CAED0750D45ADC087970F5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/539355850_1671500677561784_8153031675356257145_n.enc?ccb=11-4&oh=01_Q5Aa3wGAK0NEN2jogF236Jh_V5F_WZs5KpkqSWzAjgrFMESlmQ&oe=69B3E908&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WQn34F0aSqYRcqzcoxtoIuPESGUM8GqCoRIytvihcSw=\",\"fileLength\":\"10345\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"RYjvhLAy3t0WNlLU5GkyoF9wiqR5m+KH1AdKpvuFKvA=\",\"fileEncSha256\":\"NHeCFuvHqz4LUk4OKTonnjOBjmrKola07bS2l8Jy3yg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/539355850_1671500677561784_8153031675356257145_n.enc?ccb=11-4&oh=01_Q5Aa3wGAK0NEN2jogF236Jh_V5F_WZs5KpkqSWzAjgrFMESlmQ&oe=69B3E908&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770819915\",\"waveform\":\"ADAbQEBNWltZWFRSW1hVU05KP0BGTStRT1A3QVhQLBEoTUtKRkZPVE5BT0lQUTJCTSA2Tj9OREFPUAcnSkRVUg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770819918,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:18.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:19'),
(1113, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:18.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:19'),
(1114, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:19.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:19'),
(1115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:19.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:19'),
(1116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A59FF9A181CAED0750D45ADC087970F5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/539355850_1671500677561784_8153031675356257145_n.enc?ccb=11-4&oh=01_Q5Aa3wGAK0NEN2jogF236Jh_V5F_WZs5KpkqSWzAjgrFMESlmQ&oe=69B3E908&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WQn34F0aSqYRcqzcoxtoIuPESGUM8GqCoRIytvihcSw=\",\"fileLength\":\"10345\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"RYjvhLAy3t0WNlLU5GkyoF9wiqR5m+KH1AdKpvuFKvA=\",\"fileEncSha256\":\"NHeCFuvHqz4LUk4OKTonnjOBjmrKola07bS2l8Jy3yg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/539355850_1671500677561784_8153031675356257145_n.enc?ccb=11-4&oh=01_Q5Aa3wGAK0NEN2jogF236Jh_V5F_WZs5KpkqSWzAjgrFMESlmQ&oe=69B3E908&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770819915\",\"waveform\":\"ADAbQEBNWltZWFRSW1hVU05KP0BGTStRT1A3QVhQLBEoTUtKRkZPVE5BT0lQUTJCTSA2Tj9OREFPUAcnSkRVUg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770819918,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:18.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:19'),
(1117, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:18.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:20'),
(1118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938696,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:38'),
(1119, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938696,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:39'),
(1120, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938687,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:39'),
(1121, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:39'),
(1122, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938674,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:39'),
(1123, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:39'),
(1124, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:40'),
(1125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:40'),
(1126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"555397110710:64@s.whatsapp.net\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:40'),
(1127, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938674,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:40'),
(1128, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938687,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:40'),
(1129, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938669,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:25:41'),
(1130, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"555397110710:64@s.whatsapp.net\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:41'),
(1131, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:64@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770819938669,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:25:38.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:25:42'),
(1132, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820172498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:32.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:29:32'),
(1133, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820172498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:32.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:29:32'),
(1134, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770820173430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:33.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:29:33'),
(1135, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5E0A2F9DC2AD319AF2BF63B23C56AD6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770820173430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:33.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:29:33'),
(1136, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:40.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:29:40'),
(1137, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:40.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:29:41'),
(1138, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:50.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:29:52'),
(1139, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:29:50.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:29:52'),
(1140, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:00.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:00'),
(1141, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:00.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:01'),
(1142, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:07.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:07'),
(1143, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"ACF27003611D576FFF5D132563624379\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Ah bom é q nem liguei a TV pq pensei q tava vencido mas blz obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pZf+rzo\\/LMDoN9WmWquRD4GzhtEODqIyCiTCwoRBCwo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770820207,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:07.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:07'),
(1144, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:07.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:08'),
(1145, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"ACF27003611D576FFF5D132563624379\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Ah bom é q nem liguei a TV pq pensei q tava vencido mas blz obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pZf+rzo\\/LMDoN9WmWquRD4GzhtEODqIyCiTCwoRBCwo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770820207,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:07.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:08'),
(1146, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:08.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:08'),
(1147, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:07.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:08'),
(1148, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:08.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:08'),
(1149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:08.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:08'),
(1150, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"presences\":{\"251315884175603@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:08.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:08'),
(1151, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:07.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:09'),
(1152, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:10.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:10'),
(1153, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"ACA5AB0284F0C34198D9FCE8A2BA3D03\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Já tá pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bHHRC9EfocerOHP6xtdrhRuGnfUs3mY1GK3rD3ux4TA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770820210,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:10.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:10'),
(1154, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":false,\"id\":\"ACA5AB0284F0C34198D9FCE8A2BA3D03\"},\"pushName\":\"Carlos\",\"message\":{\"conversation\":\"Já tá pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bHHRC9EfocerOHP6xtdrhRuGnfUs3mY1GK3rD3ux4TA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770820210,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:10.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:11'),
(1155, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:11.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:11'),
(1156, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:10.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:11'),
(1157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:11.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:11'),
(1158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:11.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:30:11'),
(1159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:30:11.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:30:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820511885,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:35:11.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:35:12'),
(1161, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820511885,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:35:11.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:35:12'),
(1162, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820511896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:35:11.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:35:12'),
(1163, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820511896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:35:11.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:35:12'),
(1164, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5D5A4A865DAF38712EF8F09C0AF7910\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820647989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:37:27.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:37:28'),
(1165, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5D5A4A865DAF38712EF8F09C0AF7910\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820647989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:37:27.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:37:28'),
(1166, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A59FF9A181CAED0750D45ADC087970F5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820651281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:37:31.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:37:31'),
(1167, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A59FF9A181CAED0750D45ADC087970F5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820651281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:37:31.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:37:31'),
(1168, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5519981605118@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:21.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:38:21'),
(1169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5519981605118@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:21.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:38:21'),
(1170, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519981605118@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02DAB65EC960D3A9EC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"blzz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770820701,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:21.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:38:21'),
(1171, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519981605118@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02DAB65EC960D3A9EC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"blzz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770820701,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:21.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:38:21'),
(1172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5519981605118@s.whatsapp.net\",\"pushName\":\"Carlos 5118 $35 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:21.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:38:22'),
(1173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5519981605118@s.whatsapp.net\",\"pushName\":\"Carlos 5118 $35 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:21.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:38:22'),
(1174, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519981605118@s.whatsapp.net\",\"id\":\"3EB02DAB65EC960D3A9EC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820704532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:24.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:38:24'),
(1175, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519981605118@s.whatsapp.net\",\"id\":\"3EB02DAB65EC960D3A9EC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820704532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:38:24.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:38:24'),
(1176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:04.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:04'),
(1177, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:04.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:04'),
(1178, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A558E8F35E08DFA342287F0E4D762F69\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770820743259\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770820744,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:04.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:04'),
(1179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:04.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:04'),
(1180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:04.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:04'),
(1181, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A558E8F35E08DFA342287F0E4D762F69\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770820743259\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770820744,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:04.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:05'),
(1182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:05.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:05'),
(1183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A5C2E1C7DD6E1976DC1771B5CEF424C4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"ctfTiznBIwwcMPbyhIDvRMjGy3ecNKg6kwJwYtDt5eg=\",\"mediaKey\":\"dKW\\/1EyMl3fTC3s3r2CCcbViLyYxSn7MelqNJq2F5NQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1770637772\",\"isAnimated\":false,\"stickerSentTs\":\"1770820745167\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770820745,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:05.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:05'),
(1184, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251315884175603@lid\",\"fromMe\":true,\"id\":\"A5C2E1C7DD6E1976DC1771B5CEF424C4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"ctfTiznBIwwcMPbyhIDvRMjGy3ecNKg6kwJwYtDt5eg=\",\"mediaKey\":\"dKW\\/1EyMl3fTC3s3r2CCcbViLyYxSn7MelqNJq2F5NQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541753205_910329044869380_1798439862084536786_n.enc?ccb=11-4&oh=01_Q5Aa3wG5mnjOLITRoWGJqE1_d0Zv8Y2HhYNPnYGINgk4HZQP6w&oe=69B40089&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1770637772\",\"isAnimated\":false,\"stickerSentTs\":\"1770820745167\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770820745,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:05.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:06'),
(1185, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251315884175603@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:05.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:06'),
(1186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:06.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:06'),
(1187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251315884175603@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/144182835_276988267094249_1666025118030418530_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXYxCjsKVJW7Jk8sGYJkCreVqha4lcekEK3oN8yobsdw&oe=69999877&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:06.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:06'),
(1188, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A558E8F35E08DFA342287F0E4D762F69\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820746898,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:06.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:06'),
(1189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A558E8F35E08DFA342287F0E4D762F69\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820746898,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:06.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:07'),
(1190, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5C2E1C7DD6E1976DC1771B5CEF424C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820748878,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:08.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:39:08'),
(1191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5C2E1C7DD6E1976DC1771B5CEF424C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770820748878,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:39:08.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:39:09'),
(1192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A558E8F35E08DFA342287F0E4D762F69\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820821265,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:40:21.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:40:21'),
(1193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A558E8F35E08DFA342287F0E4D762F69\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820821265,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:40:21.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:40:21'),
(1194, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5C2E1C7DD6E1976DC1771B5CEF424C4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820821257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:40:21.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:40:21'),
(1195, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"3EB02DAB65EC960D3A9EC8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820821272,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:40:21.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:40:21'),
(1196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"A5C2E1C7DD6E1976DC1771B5CEF424C4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820821257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:40:21.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:40:22'),
(1197, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251315884175603@lid\",\"id\":\"3EB02DAB65EC960D3A9EC8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770820821272,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:40:21.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:40:22'),
(1198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3ABAE5DD0A131CB7F88E\"},\"pushName\":\"Thay\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770820470\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"A54EEF5518D7D34ED6FA37FFBF4DE6F9\"},\"text\":\"😂\",\"senderTimestampMs\":\"1770820923404\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770820923,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:42:03.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:42:04'),
(1199, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:42:03.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:42:04'),
(1200, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3ABAE5DD0A131CB7F88E\"},\"pushName\":\"Thay\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770820470\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"A54EEF5518D7D34ED6FA37FFBF4DE6F9\"},\"text\":\"😂\",\"senderTimestampMs\":\"1770820923404\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770820923,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:42:03.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:42:04'),
(1201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:42:03.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:42:04'),
(1202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:42:03.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:42:04'),
(1203, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-9F4G7abnYcX7KBUcdFZeZnm3u5ymeKvvLuwJSk-CKg&oe=69999210&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:42:03.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:42:05'),
(1204, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:15'),
(1205, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC55EDF4F40393887ED60111C911B277\"},\"pushName\":\"Simone Murakami\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"ByS3E05NanTxE2+FpijysiCYC7PbCBOplwnSuEcbCXQ=\",\"fileLength\":\"6029\",\"pageCount\":2,\"mediaKey\":\"XqnN\\/9oG3FDlsx9yrRUC4z3iRJlDpJwPHFP7cjHIhyo=\",\"fileName\":\"1770242810772.pdf\",\"fileEncSha256\":\"qaKHj2azAIC9Cr17ade150lIqGNkSGWY4iofFH7WUMk=\",\"directPath\":\"\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&_nc_hot=1770821234\",\"mediaKeyTimestamp\":\"1770821234\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633971189_4077144985909474_4111609861617291011_n.enc?ccb=11-4&oh=01_Q5Aa3wHgL9ZniMmhwmBINOWNV6oVgrp9iFrc0p-ZaIxEVhInVw&oe=69B40080&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EiW89vJzSPHhKfCS4hhUCDCUQlE\\/oByQjJsBdMDmM0o=\",\"thumbnailEncSha256\":\"z6tw2hbcUNQ2RMhwC5+DviHMELzdqzl1N2I38kaeRmc=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAASGkFABDkdkoAAiFUAAOXUZtAAH\\/\\/xAAuEAACAAQCBwcFAAAAAAAAAAABAgADESESIAQTMWFxgpEQIkNRU4GhJDIzUlT\\/2gAIAQEAAT8A7HnS5bKGNK1pCaVIJVQ9zuzTUOOqzXO4UgK48SZ8Qgwi7k8cnLHLHLHLHt2TR3fuIvEmakrFimFoVlYVBrldcQpQHjGqP6SukKqrsUDgMs6mC7EbxA2D6r2tGren526CBKcMCZzEeVskyuEUQNcQTcYtHqabaDNNFV2kcIUFbCdM6QqlSauTlcsBULW8a1\\/ReNa\\/oP8AECa\\/otknFQneNBWJToTVtKt5MQI1so+InUQCDsNck2uGyYr7IBeve0ToogMP4\\/gQrkW1JUV3ZCAY1a7+pyU7P\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAhQFH\\/2gAIAQMBAT8AFk\\/\\/2Q==\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yDLJwKL04rtVRnnzE\\/DnnlqeuuUFBwo0L6kJVr4UOW4=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770821235,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:15'),
(1206, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:15'),
(1207, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC55EDF4F40393887ED60111C911B277\"},\"pushName\":\"Simone Murakami\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"ByS3E05NanTxE2+FpijysiCYC7PbCBOplwnSuEcbCXQ=\",\"fileLength\":\"6029\",\"pageCount\":2,\"mediaKey\":\"XqnN\\/9oG3FDlsx9yrRUC4z3iRJlDpJwPHFP7cjHIhyo=\",\"fileName\":\"1770242810772.pdf\",\"fileEncSha256\":\"qaKHj2azAIC9Cr17ade150lIqGNkSGWY4iofFH7WUMk=\",\"directPath\":\"\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&_nc_hot=1770821234\",\"mediaKeyTimestamp\":\"1770821234\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633971189_4077144985909474_4111609861617291011_n.enc?ccb=11-4&oh=01_Q5Aa3wHgL9ZniMmhwmBINOWNV6oVgrp9iFrc0p-ZaIxEVhInVw&oe=69B40080&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EiW89vJzSPHhKfCS4hhUCDCUQlE\\/oByQjJsBdMDmM0o=\",\"thumbnailEncSha256\":\"z6tw2hbcUNQ2RMhwC5+DviHMELzdqzl1N2I38kaeRmc=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAASGkFABDkdkoAAiFUAAOXUZtAAH\\/\\/xAAuEAACAAQCBwcFAAAAAAAAAAABAgADESESIAQTMWFxgpEQIkNRU4GhJDIzUlT\\/2gAIAQEAAT8A7HnS5bKGNK1pCaVIJVQ9zuzTUOOqzXO4UgK48SZ8Qgwi7k8cnLHLHLHLHt2TR3fuIvEmakrFimFoVlYVBrldcQpQHjGqP6SukKqrsUDgMs6mC7EbxA2D6r2tGren526CBKcMCZzEeVskyuEUQNcQTcYtHqabaDNNFV2kcIUFbCdM6QqlSauTlcsBULW8a1\\/ReNa\\/oP8AECa\\/otknFQneNBWJToTVtKt5MQI1so+InUQCDsNck2uGyYr7IBeve0ToogMP4\\/gQrkW1JUV3ZCAY1a7+pyU7P\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAhQFH\\/2gAIAQMBAT8AFk\\/\\/2Q==\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yDLJwKL04rtVRnnzE\\/DnnlqeuuUFBwo0L6kJVr4UOW4=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770821235,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:15'),
(1208, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:15'),
(1209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:15'),
(1210, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:15'),
(1211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:15.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:16'),
(1212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"presences\":{\"116483808063727@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:18.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:18'),
(1213, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"presences\":{\"116483808063727@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:18.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:18'),
(1214, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"presences\":{\"116483808063727@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:28.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:28'),
(1215, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"presences\":{\"116483808063727@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:28.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:28'),
(1216, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:32'),
(1217, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:32'),
(1218, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC9E83648936F6DC3BB49145F01FE36E\"},\"pushName\":\"Simone Murakami\",\"message\":{\"conversation\":\"Bom dia já fiz o pagamento nesse dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4HDu93CamCAWEKXreJ\\/H8o\\/KH+qYEgi9AspmjCvF44c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770821251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:32'),
(1219, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:32'),
(1220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC9E83648936F6DC3BB49145F01FE36E\"},\"pushName\":\"Simone Murakami\",\"message\":{\"conversation\":\"Bom dia já fiz o pagamento nesse dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4HDu93CamCAWEKXreJ\\/H8o\\/KH+qYEgi9AspmjCvF44c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770821251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:32'),
(1221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:47:33'),
(1222, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:33'),
(1223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:47:32.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:47:33'),
(1224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A59FF9A181CAED0750D45ADC087970F5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770821797354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:56:37.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:56:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1225, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5D5A4A865DAF38712EF8F09C0AF7910\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770821797338,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:56:37.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:56:37'),
(1226, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A59FF9A181CAED0750D45ADC087970F5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770821797354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:56:37.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:56:37'),
(1227, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5D5A4A865DAF38712EF8F09C0AF7910\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770821797338,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:56:37.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:56:38'),
(1228, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A59FF9A181CAED0750D45ADC087970F5\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770821798637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:56:38.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:56:38'),
(1229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A59FF9A181CAED0750D45ADC087970F5\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770821798637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:56:38.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:56:39'),
(1230, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:43.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:44'),
(1231, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:43.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:44'),
(1232, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:44.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:44'),
(1233, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:44.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:44'),
(1234, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:48.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:48'),
(1235, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:48.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:48'),
(1236, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:52.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:52'),
(1237, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"presences\":{\"275818689388576@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:52.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:52'),
(1238, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:53.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:53'),
(1239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:53.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:54'),
(1240, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3824BB6AE2A5A01061\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/577377474_1389399916532392_5548982523546220268_n.enc?ccb=11-4&oh=01_Q5Aa3wE6LKeVy-oaIvNK6a2guU5SyYZ65lUpKNDvO2DXHIcxKw&oe=69B40AC5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"LV6ZxjH0fwrDeywmN5Ln8LvQv7TaaczEBdLnBfvANyc=\",\"fileLength\":\"9980\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"\\/YPBnWjFh1020dvygNtTA0gCL8KiwQk3F\\/1c6qVSt6U=\",\"fileEncSha256\":\"iwseraEzEMg7W5jHk3XyzTJ9uxlgPw0usuL2ORdmBGs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/577377474_1389399916532392_5548982523546220268_n.enc?ccb=11-4&oh=01_Q5Aa3wE6LKeVy-oaIvNK6a2guU5SyYZ65lUpKNDvO2DXHIcxKw&oe=69B40AC5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770821868\",\"streamingSidecar\":\"c\\/kmx3Pyhb1+1Q==\",\"waveform\":\"AAIFBQMQOWRkZGRkYl1YXWJkZGFYUFhhZGRfUkY5LiQbEw4IBgQQIjRDU0xFQDxAUmRkZGJfWlBGUl9bT0M3Kw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770817602\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/N5ypvl+M0q9RGSUXuX1gQFfHU9b48uBS+wqt4e4epo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770821873,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:53.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:54'),
(1241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:54.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:54'),
(1242, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997556167@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3824BB6AE2A5A01061\"},\"pushName\":\"Daiane De Oliveira\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/577377474_1389399916532392_5548982523546220268_n.enc?ccb=11-4&oh=01_Q5Aa3wE6LKeVy-oaIvNK6a2guU5SyYZ65lUpKNDvO2DXHIcxKw&oe=69B40AC5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"LV6ZxjH0fwrDeywmN5Ln8LvQv7TaaczEBdLnBfvANyc=\",\"fileLength\":\"9980\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"\\/YPBnWjFh1020dvygNtTA0gCL8KiwQk3F\\/1c6qVSt6U=\",\"fileEncSha256\":\"iwseraEzEMg7W5jHk3XyzTJ9uxlgPw0usuL2ORdmBGs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/577377474_1389399916532392_5548982523546220268_n.enc?ccb=11-4&oh=01_Q5Aa3wE6LKeVy-oaIvNK6a2guU5SyYZ65lUpKNDvO2DXHIcxKw&oe=69B40AC5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770821868\",\"streamingSidecar\":\"c\\/kmx3Pyhb1+1Q==\",\"waveform\":\"AAIFBQMQOWRkZGRkYl1YXWJkZGFYUFhhZGRfUkY5LiQbEw4IBgQQIjRDU0xFQDxAUmRkZGJfWlBGUl9bT0M3Kw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770817602\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/N5ypvl+M0q9RGSUXuX1gQFfHU9b48uBS+wqt4e4epo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770821873,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:53.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:54'),
(1243, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:54.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:57:54'),
(1244, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997556167@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:54.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:55'),
(1245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997556167@s.whatsapp.net\",\"pushName\":\"Daiane6167 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:57:54.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:57:55'),
(1246, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:58:21'),
(1247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:58:21'),
(1248, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:58:21'),
(1249, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/632572604_901499482361308_4020082186077287974_n.enc?ccb=11-4&oh=01_Q5Aa3wHaZ1unc6MPIYSv0yaqWTD86njeZGyQqdNO7cppBbFfbg&oe=69B3F9D4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jywtVlaalp+wG\\/7pVrDaq8H+BW8uG6dki5yXqxxtI5U=\",\"fileLength\":\"140944\",\"seconds\":61,\"ptt\":true,\"mediaKey\":\"17\\/T2IMQB7jkeHSoIyLSmkfroDYmhKHutjL2cYBDsHQ=\",\"fileEncSha256\":\"U3SZB2\\/4sDcwcjgeUbjhnIm0Ip2H41p7lHhWC3XcuG8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/632572604_901499482361308_4020082186077287974_n.enc?ccb=11-4&oh=01_Q5Aa3wHaZ1unc6MPIYSv0yaqWTD86njeZGyQqdNO7cppBbFfbg&oe=69B3F9D4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770821840\",\"waveform\":\"AF5NXQo6VUE3V0UsTgBLSj1BO1s3VgA4SVJOGUdTHkRIWkUyPShAAFYiNREATUpBJUUyRFNcQyExUjtCAEBUOg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770821900,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:58:21'),
(1250, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:58:21'),
(1251, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/632572604_901499482361308_4020082186077287974_n.enc?ccb=11-4&oh=01_Q5Aa3wHaZ1unc6MPIYSv0yaqWTD86njeZGyQqdNO7cppBbFfbg&oe=69B3F9D4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jywtVlaalp+wG\\/7pVrDaq8H+BW8uG6dki5yXqxxtI5U=\",\"fileLength\":\"140944\",\"seconds\":61,\"ptt\":true,\"mediaKey\":\"17\\/T2IMQB7jkeHSoIyLSmkfroDYmhKHutjL2cYBDsHQ=\",\"fileEncSha256\":\"U3SZB2\\/4sDcwcjgeUbjhnIm0Ip2H41p7lHhWC3XcuG8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/632572604_901499482361308_4020082186077287974_n.enc?ccb=11-4&oh=01_Q5Aa3wHaZ1unc6MPIYSv0yaqWTD86njeZGyQqdNO7cppBbFfbg&oe=69B3F9D4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770821840\",\"waveform\":\"AF5NXQo6VUE3V0UsTgBLSj1BO1s3VgA4SVJOGUdTHkRIWkUyPShAAFYiNREATUpBJUUyRFNcQyExUjtCAEBUOg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770821900,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:58:21'),
(1252, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770821901962,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 11:58:22'),
(1253, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770821901962,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T11:58:21.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 11:58:22'),
(1254, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634322951_1354285443203398_2689889996171340364_n.enc?ccb=11-4&oh=01_Q5Aa3wFwe6lxeNm3W3G5l7D6ri8vo6r3aNgzDotcEZKvzhSHgQ&oe=69B41E63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"a5kWhMmfSz7SxpkfiGz8CHtjIDLZlieJyvkKE4bTuYg=\",\"fileLength\":\"11865\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"xus\\/kZn+\\/noa0VICd+TNhZMrvFvbEfkVKltFVnjkkqo=\",\"fileEncSha256\":\"yCZr4UPLR9aqIYN6nNd3XK\\/koYTuuI0KHn8CtF7za\\/A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634322951_1354285443203398_2689889996171340364_n.enc?ccb=11-4&oh=01_Q5Aa3wFwe6lxeNm3W3G5l7D6ri8vo6r3aNgzDotcEZKvzhSHgQ&oe=69B41E63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770822352\",\"waveform\":\"ABMONyc8UEpWS1wxTllKYFQSQUpTU1VKQDckFD5RUlAzUTQ5RVJVS0ZPKlBLUio1NSczNjQaJAk0T1FbLklOTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770822356,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:56.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:05:57'),
(1255, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:56.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:05:57'),
(1256, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:57.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:05:57'),
(1257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:56.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:05:57'),
(1258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634322951_1354285443203398_2689889996171340364_n.enc?ccb=11-4&oh=01_Q5Aa3wFwe6lxeNm3W3G5l7D6ri8vo6r3aNgzDotcEZKvzhSHgQ&oe=69B41E63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"a5kWhMmfSz7SxpkfiGz8CHtjIDLZlieJyvkKE4bTuYg=\",\"fileLength\":\"11865\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"xus\\/kZn+\\/noa0VICd+TNhZMrvFvbEfkVKltFVnjkkqo=\",\"fileEncSha256\":\"yCZr4UPLR9aqIYN6nNd3XK\\/koYTuuI0KHn8CtF7za\\/A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634322951_1354285443203398_2689889996171340364_n.enc?ccb=11-4&oh=01_Q5Aa3wFwe6lxeNm3W3G5l7D6ri8vo6r3aNgzDotcEZKvzhSHgQ&oe=69B41E63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770822352\",\"waveform\":\"ABMONyc8UEpWS1wxTllKYFQSQUpTU1VKQDckFD5RUlAzUTQ5RVJVS0ZPKlBLUio1NSczNjQaJAk0T1FbLklOTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770822356,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:56.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:05:57'),
(1259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:57.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:05:57'),
(1260, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822357565,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:57.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:05:58'),
(1261, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822357565,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:05:57.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:05:58'),
(1262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:02.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:02'),
(1263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"275818689388576@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:02.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:03'),
(1264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A5965A23A536A597F2A6DF583FA03455\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/40311606_4310563739180665_7589101296939553313_n.enc?ccb=11-4&oh=01_Q5Aa3wGmP3AI2hrPMAIgWexLTnQqee5u4m0GpZDACgUNOefPjA&oe=69B41650&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"iS1L\\/8kOSv2Cm+K3sm5EArQAQd1sytTwqT3HFTGTe78=\",\"fileLength\":\"3611\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"9lgHudUsBOn4RMXNF7qPSKzbodMRzi1SqrjE\\/uMrBeg=\",\"fileEncSha256\":\"v4FE4BQq7WYdOcL80V6GTnpzilk2iaqGVMAvSseHByc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/40311606_4310563739180665_7589101296939553313_n.enc?ccb=11-4&oh=01_Q5Aa3wGmP3AI2hrPMAIgWexLTnQqee5u4m0GpZDACgUNOefPjA&oe=69B41650&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770822362\",\"waveform\":\"ABEjM0JJTVFWVU9KSUlKS0A1MS4wMztFTlVZWllORDUmNkdKS0xNQi4rOkRHSk9TUlFRUVFQUFBRU1JPSDUiTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770822362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:02.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:03'),
(1265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:03.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:03'),
(1266, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"275818689388576@lid\",\"fromMe\":true,\"id\":\"A5965A23A536A597F2A6DF583FA03455\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/40311606_4310563739180665_7589101296939553313_n.enc?ccb=11-4&oh=01_Q5Aa3wGmP3AI2hrPMAIgWexLTnQqee5u4m0GpZDACgUNOefPjA&oe=69B41650&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"iS1L\\/8kOSv2Cm+K3sm5EArQAQd1sytTwqT3HFTGTe78=\",\"fileLength\":\"3611\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"9lgHudUsBOn4RMXNF7qPSKzbodMRzi1SqrjE\\/uMrBeg=\",\"fileEncSha256\":\"v4FE4BQq7WYdOcL80V6GTnpzilk2iaqGVMAvSseHByc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/40311606_4310563739180665_7589101296939553313_n.enc?ccb=11-4&oh=01_Q5Aa3wGmP3AI2hrPMAIgWexLTnQqee5u4m0GpZDACgUNOefPjA&oe=69B41650&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770822362\",\"waveform\":\"ABEjM0JJTVFWVU9KSUlKS0A1MS4wMztFTlVZWllORDUmNkdKS0xNQi4rOkRHSk9TUlFRUVFQUFBRU1JPSDUiTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770822362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:02.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:03'),
(1267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"275818689388576@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534416310_2163203580826711_1909942166390959034_n.jpg?ccb=11-4&oh=01_Q5Aa3wElxgaustUI2SvO9eBdEx5dfzI5-aINKzMONCfIDcJXPA&oe=6999A33F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:03.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:03'),
(1268, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5965A23A536A597F2A6DF583FA03455\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822363809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:03.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:03'),
(1269, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5965A23A536A597F2A6DF583FA03455\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822363809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:03.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:05'),
(1270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5965A23A536A597F2A6DF583FA03455\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822378788,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:18.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:18'),
(1271, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5965A23A536A597F2A6DF583FA03455\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822378788,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:18.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:19'),
(1272, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822378782,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:18.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:19'),
(1273, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822378782,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:18.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:19'),
(1274, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770822380105,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:20.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:20'),
(1275, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A549176FA0B81E9DBC3EB72FA5EA8801\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770822380105,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:20.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:20'),
(1276, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5965A23A536A597F2A6DF583FA03455\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770822385928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:25.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:06:26'),
(1277, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"275818689388576@lid\",\"id\":\"A5965A23A536A597F2A6DF583FA03455\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770822385928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:06:25.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:06:26'),
(1278, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:10:54.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:10:55'),
(1279, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:10:54.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:10:55'),
(1280, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:10:58.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:10:58'),
(1281, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:10:58.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:10:59'),
(1282, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:01.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:01'),
(1283, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:01.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:01'),
(1284, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:11.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:12'),
(1285, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:11.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:12'),
(1286, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:14.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:14'),
(1287, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:14.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:14'),
(1288, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:15'),
(1289, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"ACFC8DA1EF9CDDF5190B259DF7E2DC86\"},\"pushName\":\"Eduardo\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586642437_922555676831836_1685656504681456372_n.enc?ccb=11-4&oh=01_Q5Aa3wFTAbUi_QQhC_q9CG0IpVjaMnD1eaJwPs3SeaI2j1Swow&oe=69B4222C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7zIu9SnKT2eADejSoHBS93MiqYnVLcdA86oPHLnfQFI=\",\"fileLength\":\"28616\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"7nZ6J0\\/uOJz702aWSnt9TUMcd250hgQGh+IWt3muK+g=\",\"fileEncSha256\":\"zBb5JEAok1vtHgRdoSx5efVD8aolhrbgyGAzgDEEbNc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586642437_922555676831836_1685656504681456372_n.enc?ccb=11-4&oh=01_Q5Aa3wFTAbUi_QQhC_q9CG0IpVjaMnD1eaJwPs3SeaI2j1Swow&oe=69B4222C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770822663\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"waveform\":\"AAAAACUOAi0CLREeGSMrGCQdKiIpESELAAkAAB0kKiUmGgo0AwAaIgE1KQAACTE0FgcQNSwfGSsMGh8sAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dim3S2Fc1JrkkPbGZj4WhKM\\/wb0aB4Mucbysmzt\\/zis=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770822675,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:15'),
(1290, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:15'),
(1291, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"ACFC8DA1EF9CDDF5190B259DF7E2DC86\"},\"pushName\":\"Eduardo\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586642437_922555676831836_1685656504681456372_n.enc?ccb=11-4&oh=01_Q5Aa3wFTAbUi_QQhC_q9CG0IpVjaMnD1eaJwPs3SeaI2j1Swow&oe=69B4222C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7zIu9SnKT2eADejSoHBS93MiqYnVLcdA86oPHLnfQFI=\",\"fileLength\":\"28616\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"7nZ6J0\\/uOJz702aWSnt9TUMcd250hgQGh+IWt3muK+g=\",\"fileEncSha256\":\"zBb5JEAok1vtHgRdoSx5efVD8aolhrbgyGAzgDEEbNc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586642437_922555676831836_1685656504681456372_n.enc?ccb=11-4&oh=01_Q5Aa3wFTAbUi_QQhC_q9CG0IpVjaMnD1eaJwPs3SeaI2j1Swow&oe=69B4222C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770822663\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"waveform\":\"AAAAACUOAi0CLREeGSMrGCQdKiIpESELAAkAAB0kKiUmGgo0AwAaIgE1KQAACTE0FgcQNSwfGSsMGh8sAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dim3S2Fc1JrkkPbGZj4WhKM\\/wb0aB4Mucbysmzt\\/zis=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770822675,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:15'),
(1292, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1293, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQOVxa7JOrSOxzv2lfFFonBR1td0cv1O4CACleZvWNCA&oe=69999335&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:15'),
(1294, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:15'),
(1295, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQOVxa7JOrSOxzv2lfFFonBR1td0cv1O4CACleZvWNCA&oe=69999335&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:15'),
(1296, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"pushName\":\"Eduardo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQOVxa7JOrSOxzv2lfFFonBR1td0cv1O4CACleZvWNCA&oe=69999335&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:11:15'),
(1297, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"pushName\":\"Eduardo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQOVxa7JOrSOxzv2lfFFonBR1td0cv1O4CACleZvWNCA&oe=69999335&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:11:15.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:11:16'),
(1298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822761171,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:12:41.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:12:41'),
(1299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822761181,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:12:41.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:12:41'),
(1300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A551E8BF6B4D58813BE6576E4C58F82E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822761171,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:12:41.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:12:41'),
(1301, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"80578032472106@lid\",\"id\":\"A580F514CBDC9A2AB99C41EA8187244C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770822761181,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:12:41.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:12:41'),
(1302, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:25'),
(1303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770822924,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:25'),
(1304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRVmage6IPRQj4UpoXTuyF5yWp2wv-r2GN6vwkpCTeZA&oe=6999CB75&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:25'),
(1305, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:25'),
(1306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770822924,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:25'),
(1307, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRVmage6IPRQj4UpoXTuyF5yWp2wv-r2GN6vwkpCTeZA&oe=6999CB75&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:25'),
(1308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822925583,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:26'),
(1309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822925583,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:25.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:26'),
(1310, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:30'),
(1311, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A54F518C81C51F7021BDCDEA106898D2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode sempre pagar pelo link ali\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770822930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:30'),
(1312, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:30'),
(1313, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A54F518C81C51F7021BDCDEA106898D2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode sempre pagar pelo link ali\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770822930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:30'),
(1314, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A54F518C81C51F7021BDCDEA106898D2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822930818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:30'),
(1315, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A54F518C81C51F7021BDCDEA106898D2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770822930818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:31'),
(1316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRVmage6IPRQj4UpoXTuyF5yWp2wv-r2GN6vwkpCTeZA&oe=6999CB75&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:15:31'),
(1317, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRVmage6IPRQj4UpoXTuyF5yWp2wv-r2GN6vwkpCTeZA&oe=6999CB75&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:15:30.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:15:31'),
(1318, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T12:16:30.139Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:16:30'),
(1319, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:16:34.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:16:34'),
(1320, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:16:34.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:16:34'),
(1321, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770823015358,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:16:55.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:16:55'),
(1322, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770823015358,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:16:55.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:16:56'),
(1323, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770823016289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:16:56.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:16:56'),
(1324, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5A9529B6C5C8B7729BD4F095B0C21CA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770823016289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:16:56.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:16:56'),
(1325, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"556596899898@s.whatsapp.net\",\"pushName\":\"Júnior Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554391553645@s.whatsapp.net\",\"pushName\":\"Cida3645 $25 Net Cdn\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T12:19:08.545Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:09'),
(1326, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"556596899898@s.whatsapp.net\",\"pushName\":\"Júnior Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554391553645@s.whatsapp.net\",\"pushName\":\"Cida3645 $25 Net Cdn\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842567_1221551106254935_5284417631062964823_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZgy4ltGXjoQqatwpDlYpyTZ6X5i4iBqI_SM7GnNWNdw&oe=69999B8A&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T12:19:08.788Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:09'),
(1327, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823154272,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T12:19:14.273Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:14'),
(1328, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823154280,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T12:19:14.280Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:14'),
(1329, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"AC4D9416811F7CAD4F2F4992F593CA4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823154480,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T12:19:14.481Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:14'),
(1330, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"AC4050E022B078F8753DE7C0E9D5C47F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823154489,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T12:19:14.489Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:15'),
(1331, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823161038,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:21.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:19:21'),
(1332, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A54F518C81C51F7021BDCDEA106898D2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823161048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:21.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:19:21'),
(1333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823161038,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:21.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:21'),
(1334, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A54F518C81C51F7021BDCDEA106898D2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823161048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:21.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:21'),
(1335, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"ACA026C24C9C00B96924050E87F438FE\"},\"pushName\":\"Simone Murakami\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"ByS3E05NanTxE2+FpijysiCYC7PbCBOplwnSuEcbCXQ=\",\"fileLength\":\"6029\",\"pageCount\":2,\"mediaKey\":\"XqnN\\/9oG3FDlsx9yrRUC4z3iRJlDpJwPHFP7cjHIhyo=\",\"fileName\":\"1770242810772.pdf\",\"fileEncSha256\":\"qaKHj2azAIC9Cr17ade150lIqGNkSGWY4iofFH7WUMk=\",\"directPath\":\"\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&_nc_hot=1770823199\",\"mediaKeyTimestamp\":\"1770821234\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633971189_4077144985909474_4111609861617291011_n.enc?ccb=11-4&oh=01_Q5Aa3wHgL9ZniMmhwmBINOWNV6oVgrp9iFrc0p-ZaIxEVhInVw&oe=69B40080&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EiW89vJzSPHhKfCS4hhUCDCUQlE\\/oByQjJsBdMDmM0o=\",\"thumbnailEncSha256\":\"z6tw2hbcUNQ2RMhwC5+DviHMELzdqzl1N2I38kaeRmc=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAASGkFABDkdkoAAiFUAAOXUZtAAH\\/\\/xAAuEAACAAQCBwcFAAAAAAAAAAABAgADESESIAQTMWFxgpEQIkNRU4GhJDIzUlT\\/2gAIAQEAAT8A7HnS5bKGNK1pCaVIJVQ9zuzTUOOqzXO4UgK48SZ8Qgwi7k8cnLHLHLHLHt2TR3fuIvEmakrFimFoVlYVBrldcQpQHjGqP6SukKqrsUDgMs6mC7EbxA2D6r2tGren526CBKcMCZzEeVskyuEUQNcQTcYtHqabaDNNFV2kcIUFbCdM6QqlSauTlcsBULW8a1\\/ReNa\\/oP8AECa\\/otknFQneNBWJToTVtKt5MQI1so+InUQCDsNck2uGyYr7IBeve0ToogMP4\\/gQrkW1JUV3ZCAY1a7+pyU7P\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAhQFH\\/2gAIAQMBAT8AFk\\/\\/2Q==\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oMOfA\\/RpVrWiVwP2wc7PRbECYM4VknacacsE7zGwCdw=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770823199,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:19:59'),
(1336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:19:59'),
(1337, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:19:59'),
(1338, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"ACA026C24C9C00B96924050E87F438FE\"},\"pushName\":\"Simone Murakami\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"ByS3E05NanTxE2+FpijysiCYC7PbCBOplwnSuEcbCXQ=\",\"fileLength\":\"6029\",\"pageCount\":2,\"mediaKey\":\"XqnN\\/9oG3FDlsx9yrRUC4z3iRJlDpJwPHFP7cjHIhyo=\",\"fileName\":\"1770242810772.pdf\",\"fileEncSha256\":\"qaKHj2azAIC9Cr17ade150lIqGNkSGWY4iofFH7WUMk=\",\"directPath\":\"\\/v\\/t62.7119-24\\/27370052_909751708314899_142518994862124369_n.enc?ccb=11-4&oh=01_Q5Aa3wG4YqTHez2od8ks7u9leqb7sMHhbxL884sMhFXzivNLFg&oe=69B41C96&_nc_sid=5e03e0&_nc_hot=1770823199\",\"mediaKeyTimestamp\":\"1770821234\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633971189_4077144985909474_4111609861617291011_n.enc?ccb=11-4&oh=01_Q5Aa3wHgL9ZniMmhwmBINOWNV6oVgrp9iFrc0p-ZaIxEVhInVw&oe=69B40080&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EiW89vJzSPHhKfCS4hhUCDCUQlE\\/oByQjJsBdMDmM0o=\",\"thumbnailEncSha256\":\"z6tw2hbcUNQ2RMhwC5+DviHMELzdqzl1N2I38kaeRmc=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAASGkFABDkdkoAAiFUAAOXUZtAAH\\/\\/xAAuEAACAAQCBwcFAAAAAAAAAAABAgADESESIAQTMWFxgpEQIkNRU4GhJDIzUlT\\/2gAIAQEAAT8A7HnS5bKGNK1pCaVIJVQ9zuzTUOOqzXO4UgK48SZ8Qgwi7k8cnLHLHLHLHt2TR3fuIvEmakrFimFoVlYVBrldcQpQHjGqP6SukKqrsUDgMs6mC7EbxA2D6r2tGren526CBKcMCZzEeVskyuEUQNcQTcYtHqabaDNNFV2kcIUFbCdM6QqlSauTlcsBULW8a1\\/ReNa\\/oP8AECa\\/otknFQneNBWJToTVtKt5MQI1so+InUQCDsNck2uGyYr7IBeve0ToogMP4\\/gQrkW1JUV3ZCAY1a7+pyU7P\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAhQFH\\/2gAIAQMBAT8AFk\\/\\/2Q==\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oMOfA\\/RpVrWiVwP2wc7PRbECYM4VknacacsE7zGwCdw=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770823199,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:59'),
(1339, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:19:59'),
(1340, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:20:00'),
(1341, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:20:00'),
(1342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:19:59.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:20:00'),
(1343, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"ACEE5D3A1BCF0B6EC8F1715C254C5746\"},\"pushName\":\"Simone Murakami\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/593730389_1123080376516336_2725133964114318027_n.enc?ccb=11-4&oh=01_Q5Aa3wEjp3wBRATlRtFsX_XMcFT6euUWKpR61KBX9KxkbPtvhg&oe=69B3FA26&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"5YckvHSdeM24dpAr108f+zfTXE30Y5hkzR1Q4HVj9+k=\",\"fileLength\":\"6032\",\"pageCount\":2,\"mediaKey\":\"BxfdY07TQR+jDYMuYFGqHPiPeAT5VXCKwHJQR6CKl3M=\",\"fileName\":\"1767557011737.pdf\",\"fileEncSha256\":\"+rgBFA\\/U7bZnWoc4qOFLWvadzDP+w8i9117vrfknycY=\",\"directPath\":\"\\/v\\/t62.7119-24\\/593730389_1123080376516336_2725133964114318027_n.enc?ccb=11-4&oh=01_Q5Aa3wEjp3wBRATlRtFsX_XMcFT6euUWKpR61KBX9KxkbPtvhg&oe=69B3FA26&_nc_sid=5e03e0&_nc_hot=1770823302\",\"mediaKeyTimestamp\":\"1770823302\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633545141_1605462957323278_6806366026593232822_n.enc?ccb=11-4&oh=01_Q5Aa3wEy9kHCJeQBW_TNoehsZASFsBjIODInvKVHZoKo_p8Y9w&oe=69B422D9&_nc_sid=5e03e0\",\"thumbnailSha256\":\"znxcKS77IBzCCC\\/wC9Lzpn9oc6QjIliGDHuDyoc4loA=\",\"thumbnailEncSha256\":\"\\/iempxu+AZJ+IqJ8\\/L102gxWL5reYw5N8Laad4mYLFs=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAASGkFABDkdkoAAiFUAAOXUZtAAH\\/\\/xAAtEAACAQIEAwcEAwAAAAAAAAABAhEAAxITICExcZEEECJTYYKhJDJRgTNSVP\\/aAAgBAQABPwDue9btsoYxMxSdqsSqh9z6arqHHK3nPKKCuN8y58Ugwjdyeej217a9te2v13XR4fuK71ZupaxYrhalZWEgzpdcQiAedZR\\/pa6UqqvBQOWm9GDdiPUUOA+q\\/W1Zbx\\/O3QULThgTeYj8baLk4RCYtxRO4xdnkxxgaroleJHKlBXYXrnSlUqTLk6XLASFnes1\\/Jes1\\/If4oXX8ltF4qE8RgTVp0Jlu1bfhiBWba8xOtAg8DOi7OHZMW\\/CgXnxdk6KKxD\\/AB\\/ApbjAgZDKJ9NBANZa+vU6I7v\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AEf\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAIUBR\\/9oACAEDAQE\\/ABZP\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AE0jOqUxvXB12S9uuN2gTuJMMdQ2Ne56tTBbFbCmz74=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770823302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:42.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:21:43'),
(1344, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:42.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:21:43'),
(1345, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:43.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:21:43'),
(1346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:43.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:21:43'),
(1347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:43.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:21:43'),
(1348, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:42.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:21:44'),
(1349, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:43.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:21:44'),
(1350, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"ACEE5D3A1BCF0B6EC8F1715C254C5746\"},\"pushName\":\"Simone Murakami\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/593730389_1123080376516336_2725133964114318027_n.enc?ccb=11-4&oh=01_Q5Aa3wEjp3wBRATlRtFsX_XMcFT6euUWKpR61KBX9KxkbPtvhg&oe=69B3FA26&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"5YckvHSdeM24dpAr108f+zfTXE30Y5hkzR1Q4HVj9+k=\",\"fileLength\":\"6032\",\"pageCount\":2,\"mediaKey\":\"BxfdY07TQR+jDYMuYFGqHPiPeAT5VXCKwHJQR6CKl3M=\",\"fileName\":\"1767557011737.pdf\",\"fileEncSha256\":\"+rgBFA\\/U7bZnWoc4qOFLWvadzDP+w8i9117vrfknycY=\",\"directPath\":\"\\/v\\/t62.7119-24\\/593730389_1123080376516336_2725133964114318027_n.enc?ccb=11-4&oh=01_Q5Aa3wEjp3wBRATlRtFsX_XMcFT6euUWKpR61KBX9KxkbPtvhg&oe=69B3FA26&_nc_sid=5e03e0&_nc_hot=1770823302\",\"mediaKeyTimestamp\":\"1770823302\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/633545141_1605462957323278_6806366026593232822_n.enc?ccb=11-4&oh=01_Q5Aa3wEy9kHCJeQBW_TNoehsZASFsBjIODInvKVHZoKo_p8Y9w&oe=69B422D9&_nc_sid=5e03e0\",\"thumbnailSha256\":\"znxcKS77IBzCCC\\/wC9Lzpn9oc6QjIliGDHuDyoc4loA=\",\"thumbnailEncSha256\":\"\\/iempxu+AZJ+IqJ8\\/L102gxWL5reYw5N8Laad4mYLFs=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAASGkFABDkdkoAAiFUAAOXUZtAAH\\/\\/xAAtEAACAQIEAwcEAwAAAAAAAAABAhEAAxITICExcZEEECJTYYKhJDJRgTNSVP\\/aAAgBAQABPwDue9btsoYxMxSdqsSqh9z6arqHHK3nPKKCuN8y58Ugwjdyeej217a9te2v13XR4fuK71ZupaxYrhalZWEgzpdcQiAedZR\\/pa6UqqvBQOWm9GDdiPUUOA+q\\/W1Zbx\\/O3QULThgTeYj8baLk4RCYtxRO4xdnkxxgaroleJHKlBXYXrnSlUqTLk6XLASFnes1\\/Jes1\\/If4oXX8ltF4qE8RgTVp0Jlu1bfhiBWba8xOtAg8DOi7OHZMW\\/CgXnxdk6KKxD\\/AB\\/ApbjAgZDKJ9NBANZa+vU6I7v\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AEf\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAIUBR\\/9oACAEDAQE\\/ABZP\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AE0jOqUxvXB12S9uuN2gTuJMMdQ2Ne56tTBbFbCmz74=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770823302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:21:42.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:21:44'),
(1351, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:22:07'),
(1352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A5DA6A806047DBF24FEE830F8541C24F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Obrigado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770823327,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:22:07'),
(1353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:22:07'),
(1354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A5DA6A806047DBF24FEE830F8541C24F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Obrigado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770823327,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:22:07'),
(1355, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:22:07'),
(1356, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DA6A806047DBF24FEE830F8541C24F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823327704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:22:08'),
(1357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:22:08'),
(1358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DA6A806047DBF24FEE830F8541C24F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823327704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:07.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:22:08'),
(1359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DA6A806047DBF24FEE830F8541C24F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770823341018,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:21.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:22:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DA6A806047DBF24FEE830F8541C24F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770823341018,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:22:21.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:22:21'),
(1361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A5DC9790E912166485E979D112E1B663\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634184603_890023490280482_5050742795185315764_n.enc?ccb=11-4&oh=01_Q5Aa3wENOvDfuPPs1Et0lw8a-vnBjmghrVs57LP-uvkygRxaGA&oe=69B41DD9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9oC+0ElhugbJOciKTN5ImYGKymqx0MzUVDDCNfgHZzk=\",\"fileLength\":\"9927\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"D4Q3K4m8YuSTIJRZNePH6XGCXeA0bDnVFtIpGyePAWM=\",\"fileEncSha256\":\"iMdwIyZCCjHYky+kHzpl89qhCe+6RrJyngX+bfk1Z9g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634184603_890023490280482_5050742795185315764_n.enc?ccb=11-4&oh=01_Q5Aa3wENOvDfuPPs1Et0lw8a-vnBjmghrVs57LP-uvkygRxaGA&oe=69B41DD9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770823522\",\"waveform\":\"AF9hYGNEXGNFR0thVUdGMD0nOEZTQ1pLMz5UX2FZVDMKAwAqNDIbEQYMGUlhW1RPTEhPSi5CUl5jREZSSiMQYQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770823525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:25.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:25:26'),
(1362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:25.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:25:26'),
(1363, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:25.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:25:26'),
(1364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A5DC9790E912166485E979D112E1B663\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634184603_890023490280482_5050742795185315764_n.enc?ccb=11-4&oh=01_Q5Aa3wENOvDfuPPs1Et0lw8a-vnBjmghrVs57LP-uvkygRxaGA&oe=69B41DD9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9oC+0ElhugbJOciKTN5ImYGKymqx0MzUVDDCNfgHZzk=\",\"fileLength\":\"9927\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"D4Q3K4m8YuSTIJRZNePH6XGCXeA0bDnVFtIpGyePAWM=\",\"fileEncSha256\":\"iMdwIyZCCjHYky+kHzpl89qhCe+6RrJyngX+bfk1Z9g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634184603_890023490280482_5050742795185315764_n.enc?ccb=11-4&oh=01_Q5Aa3wENOvDfuPPs1Et0lw8a-vnBjmghrVs57LP-uvkygRxaGA&oe=69B41DD9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770823522\",\"waveform\":\"AF9hYGNEXGNFR0thVUdGMD0nOEZTQ1pLMz5UX2FZVDMKAwAqNDIbEQYMGUlhW1RPTEhPSi5CUl5jREZSSiMQYQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770823525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:25.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:25:26'),
(1365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:26.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:25:26'),
(1366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DC9790E912166485E979D112E1B663\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823526337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:26.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:25:26'),
(1367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:26.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:25:26'),
(1368, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DC9790E912166485E979D112E1B663\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770823526337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:25:26.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:25:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1369, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEdNdAug1pI-2R9GsxiQLaZSLlcRkvKc6HXSurG82evw&oe=6999B89F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNRreKP9K_Tf-sgudgNyCiQn15K-CyDU-BsuhGgVCPuw&oe=6999A758&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491869305_2121825071981497_7707523564468076144_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnUvs1srKGAUetsezqKLNuWS243IhVfKiJ9mNHKppQbw&oe=69999AAC&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpBnYVWHTrU4HUehJqZGRJNV2cTG5EQhmIfKonxRerUQ&oe=6999BE5B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe7Zxwh11r_uIpIE6B4BlSIyLJTeSE2w2HGMaN6mR_Jw&oe=6999A626&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTNw7soEtSdRlVIO8fRMA3zHzMjkA2XCR0BcxTiaaF5g&oe=6999A059&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvEkAj3ZVP5V83qsCt9cDaVnUd6tKqXwHCX3iUcKLO-w&oe=6999AAB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAb3lVIkkV1NlL9zQVMoP_oxkYVMKY1XCSsmuNZbGPRw&oe=6999BEE8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFv9c0s-ybexMBueqCHkLJk7f34Osf7ycZsdZasC_QTxw&oe=6999C780&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwXI9AcH3ZU4y3mwjUwGz1VRUvwQr21ZKbqeH3LHAdXw&oe=6999A8C3&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wF64VMb3H_WhStbD1_yCGGwenNel7spECZJoywgo1_AfA&oe=6999C7DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wELHPGRLqvYpOu8Ml7AUidueDGZ-Dv9ZXkRF_4Yi1KEOw&oe=69999FD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNsigt9fYMcMNMs1RJvuPhPs8iFIuxqAnmwMvve0iCEg&oe=6999C615&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4ETkNz2z33u9nCU8-BF3PEhhqj44Rer0ZgScqADYEkw&oe=69999B56&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0wKlVZsqdMyMFxni4Yjuui0CcuIO4QNwHRl-nDwyc1Q&oe=6999960B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxxWDkvHTrOD71S8Why6oHm0l7jOcj_HFCpJkRk5ysFg&oe=69999906&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYvD8eduabn420qROd96XvowsYsvy5mZMMJtX_VZE83A&oe=699996A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSIuINutdaHEw6esodWA7n-WVFE52pv6F3jXajWCS17Q&oe=69999B0C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5B3qN2BS5MYTJwSlwR698x_c2B9lL58TZQlGGce_4nA&oe=6999CBFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMhGbondl71U963sWkQI0CuhE2HnH7t4Hz2ReC6dlX3Q&oe=6999955C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZqtQvrn3bIafajfP346Oq9vc6o9ejNQfH0a3uDdzVQ&oe=6999B8B8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAoZJ0n5aDeJ2z3qSEcJpyoAUWqD9nYIEZfFmx_0ZObQ&oe=699994C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqyORL2INk92Oaja5iu0pJ0TZpfcS1k-jHVH-J7i2rAQ&oe=6999B34F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIvdkAnQdgexgEdw1aZxaPv_hs533HBXKM22Ag02_ESA&oe=699994D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoO7hiX0nm6hYhCd3Oq-QZh6YSXekHH8uvzaFQQwWlRA&oe=6999C196&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgwHzEEoeBpDFhwIrkd6kjCItqMudCOW-p9tmJF1jE3Q&oe=6999A81A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRS8IeSTdd8lDYX4qPqmwYEHDeyzfpqoiZ5yYF4NeB5Q&oe=6999ABB6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz_dAJrnpACH6oWP1_5PISkl90OQ2K3OGdqAA6-dgX2A&oe=6999BCEF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0p07EoOmD2NBu_J7rjgUKRo_IZHgdsHQDSft33BXkFg&oe=6999C36B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wERVCQDqUMcxsDVNGQo9VLw105dnoXjvEJIbq9BoxtSYQ&oe=6999BA4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFkHUklLnZCFZC8mTVUOkf2RGLAMLoC2i3ZKCqdw-yiA&oe=69999823&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzyXwKGgK7uccIJlaj8aA9wiNc53oTG4yEpItE4xs_og&oe=6999BF7B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpgyGc4Xw7_Aj6Wr5jQ_fat1fJSQIGF0zeArt2ptvYsg&oe=6999A082&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy7pDuGsp77SJ2SrO5nMsI-MXsqOzpJi_V4a6cMnfI_g&oe=6999BE15&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUEHzoW7oLpzfS2sw3AQNCmwLRnJ9Ca1GPvHXRO9JSAA&oe=6999C5CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wH05JyrtqLmjPbMZhEZ5qdjXrMgFTOYtn3yO5VSjE4qSQ&oe=6999A51A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGvY4j1G0RAzuL0iLZ1oiNUCK-bTauVg5t9mYpOnaNSQ&oe=699996EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzrlrbYYdKPc9WiyY1iflY281S9J2o2PDjtyi_8GbcFA&oe=69999B25&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKMx_6oVAh8JPOwrZ6MZJPBDsCyDVMs8iRoMofsPHJGg&oe=6999B390&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUrDIpWjjJ5aaCPR_nS2v3QaPG3PKX3qLyZNgRo3mDAA&oe=6999C1AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBfVZGsqfwZ40cLa5OLtGiNrsCiuvm3hkTTG4Tc5K8Tw&oe=6999BBFB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKGy0QwcOZzKzhD36KYKSVyLnx9B80ODwbUbca49vHWw&oe=6999C569&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnZyskfxx_eKb2-e6OG-edspb8mQFZTrlEeK-607Oegg&oe=6999C8EB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoAGIzqFclqsZZTwuzgIwyS4H81okBo9Z0vcgyp9LAYA&oe=699999E4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjZbwKiFtR5igr8JrIW92bK14USv7_OLb_2xBFNlNCIQ&oe=6999B7C5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7TBOkSS1MhYVVIz1PP2yBlo_1x8bw6v1sygDiteFdKA&oe=6999C5AD&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wErV2XAVUDyEe0IXsHBja24k5EiLd-e-eXPjIibblnH6Q&oe=6999A5D2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyT6gjCDtk946rricc0FS6-StTpDrxeCR92ZRsm5VY3g&oe=6999BB95&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtmYnEGTVilWVrTUbhBvGv3c9xCOuNvwl-FgJd5PMOAg&oe=69999F51&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLuV5QbaYh3Q9IGFQrI3tQxAaXoNq5xTow3G3eorJUkQ&oe=6999A579&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxpLjNNNZOZjGwgOKUrxGCY-E6xykKc8zfGdu9LYg3Qg&oe=6999B937&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUJoH_g-xSx-foD5cyzH7hvdfwuGf83osZLGqB8XQxfw&oe=69999942&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFb2I1gYWb89yXAR3lJXqGoEt97l66m5sHRyJ0OYiDmPg&oe=6999C1A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwbPMKPQzKAqgZ6-CHYFqUx2xKQK3PritOqYCHqGYkHQ&oe=6999C70A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDyVrzPFnOc5DdAyshle0AzPdcT_Y-e6MUfxGfOZJ7DQ&oe=6999C77A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkKhm9fIxeJ35C9gNs7rWJzrrjIJeAiRpRL6MUCvg9PQ&oe=6999B02E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzUUPh7QJMFQ1SJR87yS1-twBE9GQYT0ezen3PN1JpeA&oe=6999AF2B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wF49qe1aUF8iDBeb2vdp4Jg9ZbfnUN3wW1FTpfhoQ9fAg&oe=6999C095&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLQQ5p04pzdcRdl5H8KX5XVu83qXEIMymSudT_AAroNg&oe=6999B5EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEf2YJvbpFqfGBIwxO23SprBrNLLMVsTJ2AtyxbOpJWeg&oe=6999A898&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi0p_vqNIbCuMhUivJYceaegON_hT8Hn1XAbjRML_mAg&oe=6999BD93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjTrx4L55EofIrWH809L9tn82d2iDcizd7-vgEHs4Bmg&oe=6999A7B9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NcmjLeoDtyOxh2YYZT-S4VqUD7VG0NtH-yDbdJoErA&oe=69999A46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVMqtdrSTt4rrnpF0OcXtnXXtNOQr1wsnMjnVIIQyqoQ&oe=6999A7E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDtQ62RpU1umXctJJuZFdXBKn8XFc7nOdek2PZZ3IyTA&oe=6999BFB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wELvtafUOhPfCWlP3KyD9AzeHJ83xY4FP8p1RJGg2lPQw&oe=6999A478&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_pBPJJYi88ZFjupvc2l_SOtX5odfjza6KzY0pXQd2-w&oe=6999B340&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wENZ5gCcN5hh4nG8O56XIBQACOyjLVCSYCVcMA6-FuV-A&oe=6999A00F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnDrBmiCwgBaofwIp10f7ifUQNKm2RiOHi9-RXNmjfcg&oe=6999CB7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAXL0heiltnsg7Dn8aEI8KhY2ycgDDBuZdpvU3G8SRXA&oe=699996C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfeWJBbhCl7CNGMoq1OsquG60PiLvEdDFf7dtIN18RsQ&oe=6999BC4E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpc5i1ckV4R5rxq0xh_Z8wOunL1uwrsRJa8RpyfZDkPg&oe=6999C334&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXde1mkMDDkKPP5GL9xdRxmSoankNDKfgnWNmnDO00Ew&oe=6999A8D2&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcE6PzoBtGuI42Z9mzYn7UwCYLTZOff-84TZFt5IqRVw&oe=69999C10&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFThT8lnMkAQ9BkLeizNQkn-GixjjYbBZR_JltvTLhWkw&oe=6999C83C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_4UU41bozsztSMI90iC-cjSusKvUGXYUIPLTveLOTOw&oe=6999CB72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdLN14IOU_4wVlH_7rXasesslKDtfTg6jVFBDbwHvhZA&oe=6999C5EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wEeqfIwdVYtpcQIiwyoEuvJ1EswdRj2q5-j6odDbv_-Dg&oe=6999BA7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx9y-E9ZQi0Yqjv_bNYJJ4YEwcEpTjZ3t9Ir7gTV6cTg&oe=69999BDA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOvR0OlwRIeQdxROtplmIvL9fXpbMMLAtPn0Y7WR3zgw&oe=6999BF50&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6okNAqFm8sqAi1fQApwNL8gH2X90MfgRWPJ7zYEh77Q&oe=6999A304&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQd8WHYgBpPX9jApodOD5FzuD8E08JBL9w4Ivamrz3Ew&oe=6999C66E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfOCWk7gbdWFnxiDqLexRDNHEKNCLcVDrB4GDhCdbyQ&oe=6999AA3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFaHeURxSES7YdrGKTakhm6iaDe7YdqkU7VPoHUueBRTQ&oe=69999855&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEd7gFt-U_4ooewioTCf-dfu90b1lAsb5O1eZPj6SQiGQ&oe=6999A54E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYtDfVFoAfM2kNJkx4-79YFQkP6qKLhHbIqDHDbQrpgg&oe=6999BAB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvtC3iZHLDuY5W3VZVn1oINEzIGooXNgZJy9slt0kdMg&oe=6999C844&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoz_K6izvDW5XfyrQmYPSsdHoEsQlvDyIM8EfeK8Deng&oe=69999BBD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI_NuH7v3TKqM-v00DpjLKt80PlhLjzH-rtOSTDvQ1tg&oe=69999FE5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6dP0fK2Kvn4B5nKTdEDgVwx2_GtciSnIv67jwGkbEhA&oe=6999B77F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHe3bfJ_J3KZ4I56dZ8AHOUpF4v-XOvdS3_fC65hWGirw&oe=69999C82&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdCxK72cPeasigTCAfjyYIsN09al49nre4NUiAQDqyyw&oe=6999C361&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGb51hMy67AcfOFuFbwFbn0q6kN9vfrHc3rzul_nfzirg&oe=6999BE87&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOHom2yE9hetI0srpRNu89YP0pTygtcAu9Dh5dnkAgYA&oe=6999ABE7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4NMP4AqJ-B-fxG-QNk30V20puiv4xEczcdwyh15lxtA&oe=69999700&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEirIVgw49Ez81FDZAm2gvc__-h13Na3DO2dOJQB3sA1g&oe=6999AE9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr9n95aZ0TXT6efrbPmE79vaL_PWkhTYq4I4TP2x99xQ&oe=6999B687&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1cWH0JAaNaUsiLDRXEOCXkdOo8tvzxNjsqJn1svhcMg&oe=6999B223&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGHUcjVwpzUUmLEkE4S0M-eifN_vG_lqDLjZsKKu2tDQ&oe=6999C288&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-7hl8IU_vKU4FSfEveEyhJeY7Tivfb2TgJd5SehruqQ&oe=6999BED1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDwYyCDa8B00Sh1Izzc7mYygQBWdHdGjqNOyYyJCaygw&oe=6999985C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf5mmlJ7QAUFdB8NoUw_6AKIT0eHiUxmXnIn0LjtoA1w&oe=6999B276&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wFi_9t4_nB2hbNvOUEUki8r0LB7PPc-iJTbiMwmLLUgzA&oe=69999694&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH3P81N4AVx6zjglT8BMv7jE5ug-CfKOgEE76Ki5fBA&oe=6999B997&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnoQDBDpo1wYQ_YWSjkZ2YOZWm7aIt7VYdo0Z93AfkCg&oe=6999A8FE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6oScq94NHWVL2X5QyRhYLKDL_Bi4BFmH8Iuju02imLA&oe=6999B0EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTqqGimMe7egePuRv1o5fuqzBtw9aZNhgtbxF927L0iA&oe=6999CC5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIwM507sKHzZzcFCY1EBDPhr0gteyASTuRs_VQiZJxXg&oe=6999C936&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdc3NhVP9_65-VFgKcdF7P7fVcqgZfGeBofmEdpRtfFg&oe=6999991B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd41WN6Pf_J1HW9LykQfaG7u8PPE97BSmOnwG_aSd0eg&oe=6999B5C7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuXzBItrNw9CzPH28ZPv0uMlhDN5vWWgLBlHMFXPOYGQ&oe=6999CB0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9B0y_uS0j1b8cljTuo_YTcF8LQPF6pIG-9BTZeL0o8g&oe=69999777&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDKewXhJ41PssZLygPHSLpoNrJxwP1EX9zAlxKxkC61Q&oe=6999B2A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQ-kagQAwRJ_9yPLfPGx7230dHZYqOSnJu558WQI0lbg&oe=6999A7CB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF04jjm2p-7hi1mEuvooCnSpLaS8taMt_7_kbRIzyD3xg&oe=6999B660&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXyg8Wd2mxiEyHf7k1AzHONEI0ELROPKepES3FW-sRxQ&oe=6999C312&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBu6F1ioIhF13B74aDPNa7h--qyq7DeLzXn4uT2WJZaA&oe=6999C325&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFHqJp9S0i2eKKWOTT0uyuRaC8onFGyAt2kRhR2Dc9uQ&oe=699999C5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX8yBkFkTF-jvQbbtjJ635EwSYEbMsFOqB3vZb9rvT8w&oe=6999BEE3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"i', 0, '2026-02-11 12:28:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1370, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEdNdAug1pI-2R9GsxiQLaZSLlcRkvKc6HXSurG82evw&oe=6999B89F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNRreKP9K_Tf-sgudgNyCiQn15K-CyDU-BsuhGgVCPuw&oe=6999A758&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491869305_2121825071981497_7707523564468076144_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnUvs1srKGAUetsezqKLNuWS243IhVfKiJ9mNHKppQbw&oe=69999AAC&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpBnYVWHTrU4HUehJqZGRJNV2cTG5EQhmIfKonxRerUQ&oe=6999BE5B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe7Zxwh11r_uIpIE6B4BlSIyLJTeSE2w2HGMaN6mR_Jw&oe=6999A626&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTNw7soEtSdRlVIO8fRMA3zHzMjkA2XCR0BcxTiaaF5g&oe=6999A059&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvEkAj3ZVP5V83qsCt9cDaVnUd6tKqXwHCX3iUcKLO-w&oe=6999AAB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAb3lVIkkV1NlL9zQVMoP_oxkYVMKY1XCSsmuNZbGPRw&oe=6999BEE8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFv9c0s-ybexMBueqCHkLJk7f34Osf7ycZsdZasC_QTxw&oe=6999C780&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwXI9AcH3ZU4y3mwjUwGz1VRUvwQr21ZKbqeH3LHAdXw&oe=6999A8C3&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wF64VMb3H_WhStbD1_yCGGwenNel7spECZJoywgo1_AfA&oe=6999C7DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wELHPGRLqvYpOu8Ml7AUidueDGZ-Dv9ZXkRF_4Yi1KEOw&oe=69999FD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNsigt9fYMcMNMs1RJvuPhPs8iFIuxqAnmwMvve0iCEg&oe=6999C615&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4ETkNz2z33u9nCU8-BF3PEhhqj44Rer0ZgScqADYEkw&oe=69999B56&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0wKlVZsqdMyMFxni4Yjuui0CcuIO4QNwHRl-nDwyc1Q&oe=6999960B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxxWDkvHTrOD71S8Why6oHm0l7jOcj_HFCpJkRk5ysFg&oe=69999906&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYvD8eduabn420qROd96XvowsYsvy5mZMMJtX_VZE83A&oe=699996A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSIuINutdaHEw6esodWA7n-WVFE52pv6F3jXajWCS17Q&oe=69999B0C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5B3qN2BS5MYTJwSlwR698x_c2B9lL58TZQlGGce_4nA&oe=6999CBFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMhGbondl71U963sWkQI0CuhE2HnH7t4Hz2ReC6dlX3Q&oe=6999955C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZqtQvrn3bIafajfP346Oq9vc6o9ejNQfH0a3uDdzVQ&oe=6999B8B8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAoZJ0n5aDeJ2z3qSEcJpyoAUWqD9nYIEZfFmx_0ZObQ&oe=699994C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqyORL2INk92Oaja5iu0pJ0TZpfcS1k-jHVH-J7i2rAQ&oe=6999B34F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIvdkAnQdgexgEdw1aZxaPv_hs533HBXKM22Ag02_ESA&oe=699994D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoO7hiX0nm6hYhCd3Oq-QZh6YSXekHH8uvzaFQQwWlRA&oe=6999C196&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgwHzEEoeBpDFhwIrkd6kjCItqMudCOW-p9tmJF1jE3Q&oe=6999A81A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRS8IeSTdd8lDYX4qPqmwYEHDeyzfpqoiZ5yYF4NeB5Q&oe=6999ABB6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz_dAJrnpACH6oWP1_5PISkl90OQ2K3OGdqAA6-dgX2A&oe=6999BCEF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0p07EoOmD2NBu_J7rjgUKRo_IZHgdsHQDSft33BXkFg&oe=6999C36B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wERVCQDqUMcxsDVNGQo9VLw105dnoXjvEJIbq9BoxtSYQ&oe=6999BA4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFkHUklLnZCFZC8mTVUOkf2RGLAMLoC2i3ZKCqdw-yiA&oe=69999823&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzyXwKGgK7uccIJlaj8aA9wiNc53oTG4yEpItE4xs_og&oe=6999BF7B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpgyGc4Xw7_Aj6Wr5jQ_fat1fJSQIGF0zeArt2ptvYsg&oe=6999A082&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy7pDuGsp77SJ2SrO5nMsI-MXsqOzpJi_V4a6cMnfI_g&oe=6999BE15&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUEHzoW7oLpzfS2sw3AQNCmwLRnJ9Ca1GPvHXRO9JSAA&oe=6999C5CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wH05JyrtqLmjPbMZhEZ5qdjXrMgFTOYtn3yO5VSjE4qSQ&oe=6999A51A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGvY4j1G0RAzuL0iLZ1oiNUCK-bTauVg5t9mYpOnaNSQ&oe=699996EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzrlrbYYdKPc9WiyY1iflY281S9J2o2PDjtyi_8GbcFA&oe=69999B25&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKMx_6oVAh8JPOwrZ6MZJPBDsCyDVMs8iRoMofsPHJGg&oe=6999B390&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUrDIpWjjJ5aaCPR_nS2v3QaPG3PKX3qLyZNgRo3mDAA&oe=6999C1AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBfVZGsqfwZ40cLa5OLtGiNrsCiuvm3hkTTG4Tc5K8Tw&oe=6999BBFB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKGy0QwcOZzKzhD36KYKSVyLnx9B80ODwbUbca49vHWw&oe=6999C569&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnZyskfxx_eKb2-e6OG-edspb8mQFZTrlEeK-607Oegg&oe=6999C8EB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoAGIzqFclqsZZTwuzgIwyS4H81okBo9Z0vcgyp9LAYA&oe=699999E4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjZbwKiFtR5igr8JrIW92bK14USv7_OLb_2xBFNlNCIQ&oe=6999B7C5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7TBOkSS1MhYVVIz1PP2yBlo_1x8bw6v1sygDiteFdKA&oe=6999C5AD&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wErV2XAVUDyEe0IXsHBja24k5EiLd-e-eXPjIibblnH6Q&oe=6999A5D2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyT6gjCDtk946rricc0FS6-StTpDrxeCR92ZRsm5VY3g&oe=6999BB95&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtmYnEGTVilWVrTUbhBvGv3c9xCOuNvwl-FgJd5PMOAg&oe=69999F51&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLuV5QbaYh3Q9IGFQrI3tQxAaXoNq5xTow3G3eorJUkQ&oe=6999A579&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxpLjNNNZOZjGwgOKUrxGCY-E6xykKc8zfGdu9LYg3Qg&oe=6999B937&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUJoH_g-xSx-foD5cyzH7hvdfwuGf83osZLGqB8XQxfw&oe=69999942&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFb2I1gYWb89yXAR3lJXqGoEt97l66m5sHRyJ0OYiDmPg&oe=6999C1A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwbPMKPQzKAqgZ6-CHYFqUx2xKQK3PritOqYCHqGYkHQ&oe=6999C70A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDyVrzPFnOc5DdAyshle0AzPdcT_Y-e6MUfxGfOZJ7DQ&oe=6999C77A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkKhm9fIxeJ35C9gNs7rWJzrrjIJeAiRpRL6MUCvg9PQ&oe=6999B02E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzUUPh7QJMFQ1SJR87yS1-twBE9GQYT0ezen3PN1JpeA&oe=6999AF2B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wF49qe1aUF8iDBeb2vdp4Jg9ZbfnUN3wW1FTpfhoQ9fAg&oe=6999C095&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLQQ5p04pzdcRdl5H8KX5XVu83qXEIMymSudT_AAroNg&oe=6999B5EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEf2YJvbpFqfGBIwxO23SprBrNLLMVsTJ2AtyxbOpJWeg&oe=6999A898&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi0p_vqNIbCuMhUivJYceaegON_hT8Hn1XAbjRML_mAg&oe=6999BD93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjTrx4L55EofIrWH809L9tn82d2iDcizd7-vgEHs4Bmg&oe=6999A7B9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NcmjLeoDtyOxh2YYZT-S4VqUD7VG0NtH-yDbdJoErA&oe=69999A46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVMqtdrSTt4rrnpF0OcXtnXXtNOQr1wsnMjnVIIQyqoQ&oe=6999A7E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDtQ62RpU1umXctJJuZFdXBKn8XFc7nOdek2PZZ3IyTA&oe=6999BFB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wELvtafUOhPfCWlP3KyD9AzeHJ83xY4FP8p1RJGg2lPQw&oe=6999A478&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_pBPJJYi88ZFjupvc2l_SOtX5odfjza6KzY0pXQd2-w&oe=6999B340&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wENZ5gCcN5hh4nG8O56XIBQACOyjLVCSYCVcMA6-FuV-A&oe=6999A00F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnDrBmiCwgBaofwIp10f7ifUQNKm2RiOHi9-RXNmjfcg&oe=6999CB7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAXL0heiltnsg7Dn8aEI8KhY2ycgDDBuZdpvU3G8SRXA&oe=699996C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfeWJBbhCl7CNGMoq1OsquG60PiLvEdDFf7dtIN18RsQ&oe=6999BC4E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpc5i1ckV4R5rxq0xh_Z8wOunL1uwrsRJa8RpyfZDkPg&oe=6999C334&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXde1mkMDDkKPP5GL9xdRxmSoankNDKfgnWNmnDO00Ew&oe=6999A8D2&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcE6PzoBtGuI42Z9mzYn7UwCYLTZOff-84TZFt5IqRVw&oe=69999C10&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFThT8lnMkAQ9BkLeizNQkn-GixjjYbBZR_JltvTLhWkw&oe=6999C83C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_4UU41bozsztSMI90iC-cjSusKvUGXYUIPLTveLOTOw&oe=6999CB72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdLN14IOU_4wVlH_7rXasesslKDtfTg6jVFBDbwHvhZA&oe=6999C5EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wEeqfIwdVYtpcQIiwyoEuvJ1EswdRj2q5-j6odDbv_-Dg&oe=6999BA7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx9y-E9ZQi0Yqjv_bNYJJ4YEwcEpTjZ3t9Ir7gTV6cTg&oe=69999BDA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOvR0OlwRIeQdxROtplmIvL9fXpbMMLAtPn0Y7WR3zgw&oe=6999BF50&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6okNAqFm8sqAi1fQApwNL8gH2X90MfgRWPJ7zYEh77Q&oe=6999A304&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQd8WHYgBpPX9jApodOD5FzuD8E08JBL9w4Ivamrz3Ew&oe=6999C66E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfOCWk7gbdWFnxiDqLexRDNHEKNCLcVDrB4GDhCdbyQ&oe=6999AA3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFaHeURxSES7YdrGKTakhm6iaDe7YdqkU7VPoHUueBRTQ&oe=69999855&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEd7gFt-U_4ooewioTCf-dfu90b1lAsb5O1eZPj6SQiGQ&oe=6999A54E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYtDfVFoAfM2kNJkx4-79YFQkP6qKLhHbIqDHDbQrpgg&oe=6999BAB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvtC3iZHLDuY5W3VZVn1oINEzIGooXNgZJy9slt0kdMg&oe=6999C844&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoz_K6izvDW5XfyrQmYPSsdHoEsQlvDyIM8EfeK8Deng&oe=69999BBD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI_NuH7v3TKqM-v00DpjLKt80PlhLjzH-rtOSTDvQ1tg&oe=69999FE5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6dP0fK2Kvn4B5nKTdEDgVwx2_GtciSnIv67jwGkbEhA&oe=6999B77F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHe3bfJ_J3KZ4I56dZ8AHOUpF4v-XOvdS3_fC65hWGirw&oe=69999C82&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdCxK72cPeasigTCAfjyYIsN09al49nre4NUiAQDqyyw&oe=6999C361&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGb51hMy67AcfOFuFbwFbn0q6kN9vfrHc3rzul_nfzirg&oe=6999BE87&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOHom2yE9hetI0srpRNu89YP0pTygtcAu9Dh5dnkAgYA&oe=6999ABE7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4NMP4AqJ-B-fxG-QNk30V20puiv4xEczcdwyh15lxtA&oe=69999700&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEirIVgw49Ez81FDZAm2gvc__-h13Na3DO2dOJQB3sA1g&oe=6999AE9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr9n95aZ0TXT6efrbPmE79vaL_PWkhTYq4I4TP2x99xQ&oe=6999B687&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1cWH0JAaNaUsiLDRXEOCXkdOo8tvzxNjsqJn1svhcMg&oe=6999B223&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGHUcjVwpzUUmLEkE4S0M-eifN_vG_lqDLjZsKKu2tDQ&oe=6999C288&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-7hl8IU_vKU4FSfEveEyhJeY7Tivfb2TgJd5SehruqQ&oe=6999BED1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDwYyCDa8B00Sh1Izzc7mYygQBWdHdGjqNOyYyJCaygw&oe=6999985C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf5mmlJ7QAUFdB8NoUw_6AKIT0eHiUxmXnIn0LjtoA1w&oe=6999B276&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wFi_9t4_nB2hbNvOUEUki8r0LB7PPc-iJTbiMwmLLUgzA&oe=69999694&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH3P81N4AVx6zjglT8BMv7jE5ug-CfKOgEE76Ki5fBA&oe=6999B997&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnoQDBDpo1wYQ_YWSjkZ2YOZWm7aIt7VYdo0Z93AfkCg&oe=6999A8FE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6oScq94NHWVL2X5QyRhYLKDL_Bi4BFmH8Iuju02imLA&oe=6999B0EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTqqGimMe7egePuRv1o5fuqzBtw9aZNhgtbxF927L0iA&oe=6999CC5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIwM507sKHzZzcFCY1EBDPhr0gteyASTuRs_VQiZJxXg&oe=6999C936&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdc3NhVP9_65-VFgKcdF7P7fVcqgZfGeBofmEdpRtfFg&oe=6999991B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd41WN6Pf_J1HW9LykQfaG7u8PPE97BSmOnwG_aSd0eg&oe=6999B5C7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuXzBItrNw9CzPH28ZPv0uMlhDN5vWWgLBlHMFXPOYGQ&oe=6999CB0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9B0y_uS0j1b8cljTuo_YTcF8LQPF6pIG-9BTZeL0o8g&oe=69999777&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDKewXhJ41PssZLygPHSLpoNrJxwP1EX9zAlxKxkC61Q&oe=6999B2A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQ-kagQAwRJ_9yPLfPGx7230dHZYqOSnJu558WQI0lbg&oe=6999A7CB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF04jjm2p-7hi1mEuvooCnSpLaS8taMt_7_kbRIzyD3xg&oe=6999B660&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXyg8Wd2mxiEyHf7k1AzHONEI0ELROPKepES3FW-sRxQ&oe=6999C312&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBu6F1ioIhF13B74aDPNa7h--qyq7DeLzXn4uT2WJZaA&oe=6999C325&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFHqJp9S0i2eKKWOTT0uyuRaC8onFGyAt2kRhR2Dc9uQ&oe=699999C5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX8yBkFkTF-jvQbbtjJ635EwSYEbMsFOqB3vZb9rvT8w&oe=6999BEE3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"i', 0, '2026-02-11 12:28:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1371, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784182262@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:31:56'),
(1372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784182262@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:31:56'),
(1373, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784182262@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:31:56'),
(1374, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784182262@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A8795A8814533CC6043\"},\"pushName\":\"Jader Reiter\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOqaGaRoHFavOBsib_Mhw_XKVMM9wkv-2dh7-_AVLoHMWv02V67x8iUxeH0G0c3vNfa11yoomBt1Bj1FsMEe8t_SN1EW36R6TZsvjjs3A?ccb=9-4&oh=01_Q5Aa3wEoqLTWM92ZhHxJnXpZumHUGthPZTmQggESLw3UDTF79Q&oe=69B40D72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"dJTKRLFqUzJLDDt2Kf\\/sSRZzPynTew2pE1AzZRezA+I=\",\"fileLength\":\"46513\",\"height\":1280,\"width\":474,\"mediaKey\":\"DBrHKALh31K8Jp1P0gMqakZJLoy3T4PSL7OLEgwxrao=\",\"fileEncSha256\":\"gMt3YztoGGSHVQZMG8PYYlNfYqnaU7oWp8jPQNBOVu8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOqaGaRoHFavOBsib_Mhw_XKVMM9wkv-2dh7-_AVLoHMWv02V67x8iUxeH0G0c3vNfa11yoomBt1Bj1FsMEe8t_SN1EW36R6TZsvjjs3A?ccb=9-4&oh=01_Q5Aa3wEoqLTWM92ZhHxJnXpZumHUGthPZTmQggESLw3UDTF79Q&oe=69B40D72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770823913\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABsDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAgEAAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0CzC5TkVBUoE1HjQx0KuJtirY\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/8QAIxAAAQMEAgIDAQAAAAAAAAAAAQACERASITEDUUFhIjJSYv\\/aAAgBAQABPwBxjkm4j0hyNjZKHI090zdluO1A6WKONoJQ5ZOk0kihAKHGPKDQNUdfdAGO0A8HOqkPJMGAvn6Qu8whrKc2TN0INPh6Ad+qENmDtBrRqFA7VqIz9ZUfymj1FP\\/+AAMA\\/9k=\",\"scansSidecar\":\"tEP4QWJULHYUT3ShHsrt1rjLOn3nDJeeQSiQInRcy0RjjJ8kjs09IQ==\",\"scanLengths\":[3538,20264,9159,13550],\"midQualityFileSha256\":\"yBs4G484mijM8dUX+1mGGEkPwiNichY\\/HixUF83XGCQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fjLrgt6731kuXg==\",\"senderTimestamp\":\"1769809794\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CuuqQRNerVFGd0IYZzEGcsAkQC2b3kyXXbUm1szQHJQ=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1770823915,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:31:56'),
(1375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784182262@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:31:56'),
(1376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784182262@s.whatsapp.net\",\"pushName\":\"Jader2262 $40 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:31:56'),
(1377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784182262@s.whatsapp.net\",\"pushName\":\"Jader2262 $40 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:31:56'),
(1378, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784182262@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A8795A8814533CC6043\"},\"pushName\":\"Jader Reiter\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOqaGaRoHFavOBsib_Mhw_XKVMM9wkv-2dh7-_AVLoHMWv02V67x8iUxeH0G0c3vNfa11yoomBt1Bj1FsMEe8t_SN1EW36R6TZsvjjs3A?ccb=9-4&oh=01_Q5Aa3wEoqLTWM92ZhHxJnXpZumHUGthPZTmQggESLw3UDTF79Q&oe=69B40D72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"dJTKRLFqUzJLDDt2Kf\\/sSRZzPynTew2pE1AzZRezA+I=\",\"fileLength\":\"46513\",\"height\":1280,\"width\":474,\"mediaKey\":\"DBrHKALh31K8Jp1P0gMqakZJLoy3T4PSL7OLEgwxrao=\",\"fileEncSha256\":\"gMt3YztoGGSHVQZMG8PYYlNfYqnaU7oWp8jPQNBOVu8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOqaGaRoHFavOBsib_Mhw_XKVMM9wkv-2dh7-_AVLoHMWv02V67x8iUxeH0G0c3vNfa11yoomBt1Bj1FsMEe8t_SN1EW36R6TZsvjjs3A?ccb=9-4&oh=01_Q5Aa3wEoqLTWM92ZhHxJnXpZumHUGthPZTmQggESLw3UDTF79Q&oe=69B40D72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770823913\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABsDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAgEAAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0CzC5TkVBUoE1HjQx0KuJtirY\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/8QAIxAAAQMEAgIDAQAAAAAAAAAAAQACERASITEDUUFhIjJSYv\\/aAAgBAQABPwBxjkm4j0hyNjZKHI090zdluO1A6WKONoJQ5ZOk0kihAKHGPKDQNUdfdAGO0A8HOqkPJMGAvn6Qu8whrKc2TN0INPh6Ad+qENmDtBrRqFA7VqIz9ZUfymj1FP\\/+AAMA\\/9k=\",\"scansSidecar\":\"tEP4QWJULHYUT3ShHsrt1rjLOn3nDJeeQSiQInRcy0RjjJ8kjs09IQ==\",\"scanLengths\":[3538,20264,9159,13550],\"midQualityFileSha256\":\"yBs4G484mijM8dUX+1mGGEkPwiNichY\\/HixUF83XGCQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fjLrgt6731kuXg==\",\"senderTimestamp\":\"1769809794\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CuuqQRNerVFGd0IYZzEGcsAkQC2b3kyXXbUm1szQHJQ=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1770823915,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:31:55.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:31:57'),
(1379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:32:03.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:32:04'),
(1380, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:32:03.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:32:04'),
(1381, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DC9790E912166485E979D112E1B663\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770824062742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:34:22.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:34:23'),
(1382, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DC9790E912166485E979D112E1B663\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770824062742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:34:22.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:34:23'),
(1383, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DC9790E912166485E979D112E1B663\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770824063721,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:34:23.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:34:23'),
(1384, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A5DC9790E912166485E979D112E1B663\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770824063721,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:34:23.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:34:23'),
(1385, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:44.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:45'),
(1386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:44.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:45'),
(1387, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:44.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:45'),
(1388, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC6E7FA46C884C34C1E774400C155A3E\"},\"pushName\":\"Simone Murakami\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634317352_919887481002540_8858082226768307583_n.enc?ccb=11-4&oh=01_Q5Aa3wHgCkivxX-tRJPN125UoXIzvXG8-RupbyJL-EXPkvYEUg&oe=69B425AD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"OLTONcRLO2PZXYUCxWpG\\/4kJFIyjKmVn4KRqb8x7EBA=\",\"fileLength\":\"58909\",\"height\":1280,\"width\":720,\"mediaKey\":\"p64Li+s1sq5ibb2db+dT4IyZyJEBn4nOc0liVEHSoTg=\",\"fileEncSha256\":\"5VbXjpwSZHgI+hCwtVjVC+Ii0uPtKQHyt+RzwsLI0xI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634317352_919887481002540_8858082226768307583_n.enc?ccb=11-4&oh=01_Q5Aa3wHgCkivxX-tRJPN125UoXIzvXG8-RupbyJL-EXPkvYEUg&oe=69B425AD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770824143\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAxAAACAwEBAAAAAAAAAAAAAAAAAgMEBQEGAQADAQEBAAAAAAAAAAAAAAAAAQIDBQT\\/2gAMAwEAAhADEAAAALSRqDKwnCSgLyKTrc1bma867Rinm3zJrlnKs6Lca15s9KYW3FSHYhVWMQiP\\/8QAIxAAAgEDAwQDAAAAAAAAAAAAAAECAxEhBBITEDFRUhVCYf\\/aAAgBAQABPwBbWWJWQ7W7G+PhimOsrq2SUla4lFpM2oWUY8EmaSMbO5sp+6KU1KCyMnu8FPUulHFmfIfiI1JQwLVTOeUkO7Tsmcc\\/VkNJGbvKItHS9RaWC+qOGnE4qfScrI34JTyb+lTMWLshlz\\/\\/xAAhEQABAgQHAAAAAAAAAAAAAAABAAIDEBESExQgMTJRYf\\/aAAgBAgEBPwC13SpOIy5tAsP0IRS3YrMmnFXaP\\/\\/EAB4RAAICAAcAAAAAAAAAAAAAAAABAxECEBIgMVGR\\/9oACAEDAQE\\/ALXebuyO0emhYuUKNLb\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"6DznS+q6eiefcNaOmf8tUhLKwcAmjfgNVfbPR7zfFMbyr7HM2QldTg==\",\"scanLengths\":[7910,21338,9767,19894],\"midQualityFileSha256\":\"RKSeOnPy2T2LkPG6VbP437+\\/BDZ70O7ZYY6202\\/NMRs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Yaa59qOvGa69o8OT5lLsjYVpyz89eLLy0SGljkvCDKI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770824144,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:44.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:45'),
(1389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:44.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:45'),
(1390, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC6E7FA46C884C34C1E774400C155A3E\"},\"pushName\":\"Simone Murakami\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634317352_919887481002540_8858082226768307583_n.enc?ccb=11-4&oh=01_Q5Aa3wHgCkivxX-tRJPN125UoXIzvXG8-RupbyJL-EXPkvYEUg&oe=69B425AD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"OLTONcRLO2PZXYUCxWpG\\/4kJFIyjKmVn4KRqb8x7EBA=\",\"fileLength\":\"58909\",\"height\":1280,\"width\":720,\"mediaKey\":\"p64Li+s1sq5ibb2db+dT4IyZyJEBn4nOc0liVEHSoTg=\",\"fileEncSha256\":\"5VbXjpwSZHgI+hCwtVjVC+Ii0uPtKQHyt+RzwsLI0xI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634317352_919887481002540_8858082226768307583_n.enc?ccb=11-4&oh=01_Q5Aa3wHgCkivxX-tRJPN125UoXIzvXG8-RupbyJL-EXPkvYEUg&oe=69B425AD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770824143\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAxAAACAwEBAAAAAAAAAAAAAAAAAgMEBQEGAQADAQEBAAAAAAAAAAAAAAAAAQIDBQT\\/2gAMAwEAAhADEAAAALSRqDKwnCSgLyKTrc1bma867Rinm3zJrlnKs6Lca15s9KYW3FSHYhVWMQiP\\/8QAIxAAAgEDAwQDAAAAAAAAAAAAAAECAxEhBBITEDFRUhVCYf\\/aAAgBAQABPwBbWWJWQ7W7G+PhimOsrq2SUla4lFpM2oWUY8EmaSMbO5sp+6KU1KCyMnu8FPUulHFmfIfiI1JQwLVTOeUkO7Tsmcc\\/VkNJGbvKItHS9RaWC+qOGnE4qfScrI34JTyb+lTMWLshlz\\/\\/xAAhEQABAgQHAAAAAAAAAAAAAAABAAIDEBESExQgMTJRYf\\/aAAgBAgEBPwC13SpOIy5tAsP0IRS3YrMmnFXaP\\/\\/EAB4RAAICAAcAAAAAAAAAAAAAAAABAxECEBIgMVGR\\/9oACAEDAQE\\/ALXebuyO0emhYuUKNLb\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"6DznS+q6eiefcNaOmf8tUhLKwcAmjfgNVfbPR7zfFMbyr7HM2QldTg==\",\"scanLengths\":[7910,21338,9767,19894],\"midQualityFileSha256\":\"RKSeOnPy2T2LkPG6VbP437+\\/BDZ70O7ZYY6202\\/NMRs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Yaa59qOvGa69o8OT5lLsjYVpyz89eLLy0SGljkvCDKI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770824144,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:44.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:46'),
(1391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:45.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:46'),
(1392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:45.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:46'),
(1393, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"presences\":{\"116483808063727@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:47.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:47'),
(1394, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"presences\":{\"116483808063727@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:47.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:47'),
(1395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC6029B885964E7CC1662309FCFA998E\"},\"pushName\":\"Simone Murakami\",\"message\":{\"conversation\":\"Tá funcionando sim 🙏🙏🙏\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o1eC1qDnocwtdqlUoczM+Ww3u5PeNr1Zzt+IUl+Lu0k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824155,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:55'),
(1396, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:55'),
(1397, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":false,\"id\":\"AC6029B885964E7CC1662309FCFA998E\"},\"pushName\":\"Simone Murakami\",\"message\":{\"conversation\":\"Tá funcionando sim 🙏🙏🙏\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o1eC1qDnocwtdqlUoczM+Ww3u5PeNr1Zzt+IUl+Lu0k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824155,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:55'),
(1398, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:55'),
(1399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:55'),
(1400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:56'),
(1401, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:35:56'),
(1402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5KfdJOCKikgbMvlezN4bz0mvAmuo52GsSupLKG9Kxpw&oe=69999A57&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:35:55.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:35:56'),
(1403, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A5776349692CB51704FEABC54172B346\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770824327525,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:47.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:47'),
(1404, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A58131685F973A21745C15FCC06BF48B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770824327533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:47.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:47'),
(1405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A5776349692CB51704FEABC54172B346\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770824327525,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:47.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:48'),
(1406, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29107161186348@lid\",\"id\":\"A58131685F973A21745C15FCC06BF48B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770824327533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:47.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:48'),
(1407, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:50.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:50'),
(1408, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"presences\":{\"29107161186348@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:50.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:50'),
(1409, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC1B5C1BFDAA4EECDD468AB7AC0969DC\"},\"pushName\":\"Kiko GBN Unid 506🏠🇧🇷\",\"message\":{\"conversation\":\"Valeu pia Deus abençoe 🙌\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pkWXiwcKdZDzlUhatZZUPOCaiYXdnooluVcElEkxArY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824337,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:57'),
(1410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:57'),
(1411, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC1B5C1BFDAA4EECDD468AB7AC0969DC\"},\"pushName\":\"Kiko GBN Unid 506🏠🇧🇷\",\"message\":{\"conversation\":\"Valeu pia Deus abençoe 🙌\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pkWXiwcKdZDzlUhatZZUPOCaiYXdnooluVcElEkxArY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824337,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:57'),
(1412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:57'),
(1413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:57'),
(1414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:38:57'),
(1415, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:57'),
(1416, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:38:57.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:38:58'),
(1417, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC3A7C9E4CD5363BE53D27F83991818A\"},\"pushName\":\"Kiko GBN Unid 506🏠🇧🇷\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/23375593_1404634214775053_2781257800535630356_n.enc?ccb=11-4&oh=01_Q5Aa3wEIxXzW1LvAwbhL-im9qsA2is11VynBhp79h35t0MzYvA&oe=69B3F803&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"aP+LGc9T7bSNG4NpIMj2HypxLfRJjMtUd4lKM99Opog=\",\"fileEncSha256\":\"dL1vabB5\\/jcoMoSV0ndC\\/P6HAFPODphfOonvqK3U4Ew=\",\"mediaKey\":\"3qdyyjMDt6EDB23m9HkkRMc0j3xGNoCWeRxRKUPN1Cc=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/23375593_1404634214775053_2781257800535630356_n.enc?ccb=11-4&oh=01_Q5Aa3wEIxXzW1LvAwbhL-im9qsA2is11VynBhp79h35t0MzYvA&oe=69B3F803&_nc_sid=5e03e0\",\"fileLength\":\"399912\",\"mediaKeyTimestamp\":\"1770778693\",\"firstFrameLength\":399520,\"firstFrameSidecar\":\"Z+ZGidWGtOLc7A==\",\"isAnimated\":true,\"stickerSentTs\":\"1770824338799\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SeqLiEdsMmaNuMIg4Gb6GoXZFPWUGptabb5Z9euBQsI=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770824341,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:01'),
(1418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:01'),
(1419, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29107161186348@lid\",\"fromMe\":false,\"id\":\"AC3A7C9E4CD5363BE53D27F83991818A\"},\"pushName\":\"Kiko GBN Unid 506🏠🇧🇷\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/23375593_1404634214775053_2781257800535630356_n.enc?ccb=11-4&oh=01_Q5Aa3wEIxXzW1LvAwbhL-im9qsA2is11VynBhp79h35t0MzYvA&oe=69B3F803&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"aP+LGc9T7bSNG4NpIMj2HypxLfRJjMtUd4lKM99Opog=\",\"fileEncSha256\":\"dL1vabB5\\/jcoMoSV0ndC\\/P6HAFPODphfOonvqK3U4Ew=\",\"mediaKey\":\"3qdyyjMDt6EDB23m9HkkRMc0j3xGNoCWeRxRKUPN1Cc=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/23375593_1404634214775053_2781257800535630356_n.enc?ccb=11-4&oh=01_Q5Aa3wEIxXzW1LvAwbhL-im9qsA2is11VynBhp79h35t0MzYvA&oe=69B3F803&_nc_sid=5e03e0\",\"fileLength\":\"399912\",\"mediaKeyTimestamp\":\"1770778693\",\"firstFrameLength\":399520,\"firstFrameSidecar\":\"Z+ZGidWGtOLc7A==\",\"isAnimated\":true,\"stickerSentTs\":\"1770824338799\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SeqLiEdsMmaNuMIg4Gb6GoXZFPWUGptabb5Z9euBQsI=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770824341,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:01'),
(1420, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:01'),
(1421, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:01'),
(1422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:02'),
(1423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:02'),
(1424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29107161186348@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/325616825_928859411643463_5872918485289399242_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAwVx97TYO8Wl4HH-JFvUJo-RKzaffz_6tF1r1AUVs-w&oe=6999A7FE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:01.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:02'),
(1425, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:24.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:24'),
(1426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:24.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:24'),
(1427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:30'),
(1428, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:30'),
(1429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:30'),
(1430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC1AF292CE2984E96D32E00A2D47D560\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Boa trd irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xpq3oSm7q8MltJReIfwAHK2Fs6dOZIzTuDQuyUb0aHA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824369,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:30'),
(1431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC1AF292CE2984E96D32E00A2D47D560\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Boa trd irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xpq3oSm7q8MltJReIfwAHK2Fs6dOZIzTuDQuyUb0aHA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824369,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:30'),
(1432, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:31'),
(1434, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:31'),
(1435, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:31'),
(1436, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:30.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:31'),
(1437, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:40.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:40'),
(1438, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:40.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:41'),
(1439, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:50.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:50'),
(1440, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:50.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:51'),
(1441, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:53'),
(1442, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC28CF2DAE6D05EA1FDA238A8CB93B90\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Qual APP usar Na esmart tcl Android\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X4u3VD+yOWApSV75t3UCanRVn62V\\/p7VYC5mDqEoPOI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:53'),
(1443, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:53'),
(1444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:53'),
(1445, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC28CF2DAE6D05EA1FDA238A8CB93B90\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Qual APP usar Na esmart tcl Android\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X4u3VD+yOWApSV75t3UCanRVn62V\\/p7VYC5mDqEoPOI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770824393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:53'),
(1446, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:54'),
(1447, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:39:54'),
(1448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:39:53.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:39:54'),
(1449, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:37.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:37'),
(1450, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5284712DFE18A7A8C40C7410BD347C3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770824977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:37.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:37'),
(1451, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:37.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:37'),
(1452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:37.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:37'),
(1453, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5284712DFE18A7A8C40C7410BD347C3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770824977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:37.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:37'),
(1454, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:37.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:37'),
(1455, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:40.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:40'),
(1456, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A537B549A3D49960F32A34DB5FC62E9A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1.30 t ajudo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770824980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:40.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:40'),
(1457, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5284712DFE18A7A8C40C7410BD347C3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770824980921,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:40.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:40'),
(1458, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:40.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:40'),
(1459, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A537B549A3D49960F32A34DB5FC62E9A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1.30 t ajudo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770824980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:40.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:41'),
(1460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:41.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:41'),
(1461, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5284712DFE18A7A8C40C7410BD347C3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770824980921,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:40.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:41'),
(1462, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A537B549A3D49960F32A34DB5FC62E9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770824981124,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:41.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:41'),
(1463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:41.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:41'),
(1464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A537B549A3D49960F32A34DB5FC62E9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770824981124,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:41.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:42'),
(1465, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A503A3E60CA826169B48994FB9095FC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"To indo levar as filhas na escola\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770824985,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:46'),
(1466, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:46'),
(1467, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:46'),
(1468, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A503A3E60CA826169B48994FB9095FC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"To indo levar as filhas na escola\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770824985,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:46'),
(1469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:46'),
(1470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:46'),
(1471, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A503A3E60CA826169B48994FB9095FC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770824986692,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:49:46'),
(1472, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A503A3E60CA826169B48994FB9095FC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770824986692,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:49:46.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:49:46'),
(1473, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A503A3E60CA826169B48994FB9095FC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825176672,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:52:56.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:52:57'),
(1474, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A537B549A3D49960F32A34DB5FC62E9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825176682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:52:56.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:52:57'),
(1475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5284712DFE18A7A8C40C7410BD347C3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825176690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:52:56.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:52:57'),
(1476, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A537B549A3D49960F32A34DB5FC62E9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825176682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:52:56.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:52:57'),
(1477, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A503A3E60CA826169B48994FB9095FC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825176672,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:52:56.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:52:57'),
(1478, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5284712DFE18A7A8C40C7410BD347C3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825176690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:52:56.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:52:57'),
(1479, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:03.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:53:04'),
(1480, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"presences\":{\"74896226918477@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:03.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:53:04'),
(1481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"ACC2FE1652A90A67E81C1D6F0E8326B4\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pYSwAlpBt+gd2RQU9dZrdR773AyZVZ+EkdhIwMOFeU0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770825185,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:53:05'),
(1482, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:53:05'),
(1483, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:53:05'),
(1484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:53:05'),
(1485, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"ACC2FE1652A90A67E81C1D6F0E8326B4\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pYSwAlpBt+gd2RQU9dZrdR773AyZVZ+EkdhIwMOFeU0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770825185,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:53:05'),
(1486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:53:06'),
(1487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:53:06'),
(1488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:53:05.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:53:06'),
(1489, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:57.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:54:58'),
(1490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A50ADA10064AE3890DC86E0538659877\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHy-cUpTNx3mztbmRRdccGmcUPE1dnSF-aNefAnjch_PQ&oe=69B41706&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHy-cUpTNx3mztbmRRdccGmcUPE1dnSF-aNefAnjch_PQ&oe=69B41706&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"stickerSentTs\":\"1770825296984\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770825297,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:57.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:54:58'),
(1491, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"116483808063727@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:57.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:54:58'),
(1492, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"116483808063727@lid\",\"fromMe\":true,\"id\":\"A50ADA10064AE3890DC86E0538659877\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHy-cUpTNx3mztbmRRdccGmcUPE1dnSF-aNefAnjch_PQ&oe=69B41706&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHy-cUpTNx3mztbmRRdccGmcUPE1dnSF-aNefAnjch_PQ&oe=69B41706&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"stickerSentTs\":\"1770825296984\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770825297,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:57.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:54:58'),
(1493, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A50ADA10064AE3890DC86E0538659877\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770825299215,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:59.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:54:59'),
(1494, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A50ADA10064AE3890DC86E0538659877\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770825299215,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:59.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:54:59'),
(1495, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wEopai38hYe48WGoXSh7GY48Eb0pbnSiocPtIVRI2-Zow&oe=6999D297&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:58.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:55:00'),
(1496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"116483808063727@lid\",\"pushName\":\"Simone Murakami\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/504314735_669250336069577_7183975767142161383_n.jpg?ccb=11-4&oh=01_Q5Aa3wEopai38hYe48WGoXSh7GY48Eb0pbnSiocPtIVRI2-Zow&oe=6999D297&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:54:58.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:55:00'),
(1497, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A50ADA10064AE3890DC86E0538659877\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825313066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:55:13.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:55:13'),
(1498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"116483808063727@lid\",\"id\":\"A50ADA10064AE3890DC86E0538659877\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825313066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:55:13.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:55:13'),
(1499, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"85044798451935@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:02.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:02'),
(1500, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"85044798451935@lid\",\"fromMe\":true,\"id\":\"A5367CE8C99FC75CC37EBF2A37261FEA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde Jader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770825362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:02.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:02'),
(1501, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"85044798451935@lid\",\"fromMe\":true,\"id\":\"A5367CE8C99FC75CC37EBF2A37261FEA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde Jader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770825362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:02.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:02'),
(1502, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"85044798451935@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:02.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:02'),
(1503, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"85044798451935@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:02.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:03'),
(1504, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"85044798451935@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:02.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:03'),
(1505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"85044798451935@lid\",\"fromMe\":true,\"id\":\"A52F044DC57DBEC122D37D81C516F877\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770825363552\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770825364,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:04.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:04'),
(1506, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"85044798451935@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:04.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:04'),
(1507, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"85044798451935@lid\",\"fromMe\":true,\"id\":\"A52F044DC57DBEC122D37D81C516F877\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHSmTf9UCr6c0dR5BgknCW9yjyOTqTKDL-yxuGs5X5Nlw&oe=69B4118C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770825363552\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770825364,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:04.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:04'),
(1508, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"85044798451935@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:04.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:04'),
(1509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"85044798451935@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:04.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:04'),
(1510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"85044798451935@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427419291_476886418411306_3547587877018511162_n.jpg?ccb=11-4&oh=01_Q5Aa3wFu81llmnQkoOxZQw3E5byPrcdAkie3nITKpz5_6_rKAA&oe=6999A1EF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:04.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:05'),
(1511, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A5367CE8C99FC75CC37EBF2A37261FEA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770825365063,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:05.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A52F044DC57DBEC122D37D81C516F877\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770825365174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:05.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 12:56:05'),
(1513, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A5367CE8C99FC75CC37EBF2A37261FEA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770825365063,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:05.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:05'),
(1514, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A52F044DC57DBEC122D37D81C516F877\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770825365174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T12:56:05.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 12:56:05'),
(1515, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A52F044DC57DBEC122D37D81C516F877\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825820229,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:03:40.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 13:03:40'),
(1516, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A5367CE8C99FC75CC37EBF2A37261FEA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825820219,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:03:40.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 13:03:40'),
(1517, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A52F044DC57DBEC122D37D81C516F877\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825820229,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:03:40.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:03:40'),
(1518, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"85044798451935@lid\",\"id\":\"A5367CE8C99FC75CC37EBF2A37261FEA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770825820219,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:03:40.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:03:40'),
(1519, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5DEBAE8DA7BE96B3F838A69203B0D92\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Tas aonde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z5e9iK3wMExJfsdhvR6fiJlWY9Z1AndT8NSwmKpNWGg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770826428,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T13:13:48.784Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:13:49'),
(1520, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T13:13:48.917Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:13:49'),
(1521, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T13:13:48.925Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:13:49'),
(1522, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T13:13:48.782Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:13:49'),
(1523, 'call', 'JTVPLAY_NOVA', '{\"event\":\"call\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A54E8B561FDC87EFAE099EBE92B34A03\",\"date\":\"2026-02-11T16:14:03.000Z\",\"offline\":false,\"status\":\"offer\",\"isVideo\":false,\"isGroup\":false},\"date_time\":\"2026-02-11T13:14:03.970Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:14:04'),
(1524, 'call', 'JTVPLAY_NOVA', '{\"event\":\"call\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A54E8B561FDC87EFAE099EBE92B34A03\",\"date\":\"2026-02-11T16:14:04.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"date_time\":\"2026-02-11T13:14:04.716Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:14:04'),
(1525, 'call', 'JTVPLAY_NOVA', '{\"event\":\"call\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A54E8B561FDC87EFAE099EBE92B34A03\",\"date\":\"2026-02-11T16:14:04.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"date_time\":\"2026-02-11T13:14:04.722Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:14:05'),
(1526, 'call', 'JTVPLAY_NOVA', '{\"event\":\"call\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A54E8B561FDC87EFAE099EBE92B34A03\",\"date\":\"2026-02-11T16:14:04.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"date_time\":\"2026-02-11T13:14:04.733Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:14:05'),
(1527, 'call', 'JTVPLAY_NOVA', '{\"event\":\"call\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A54E8B561FDC87EFAE099EBE92B34A03\",\"date\":\"2026-02-11T16:14:27.000Z\",\"offline\":false,\"status\":\"reject\",\"isVideo\":false,\"isGroup\":false},\"date_time\":\"2026-02-11T13:14:27.409Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:14:27'),
(1528, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A58F42D95BEE73038FA9C259E1836E1B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/541619456_25991093890526799_5193498630555722021_n.enc?ccb=11-4&oh=01_Q5Aa3wGW3wArHpylj_4aP4CU5wC24e6R5Dn64-iglvcYv_GKCg&oe=69B41CEE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"LRbx30+tezurvwuLYwdRu9LdOQ33ayJ+vF+3Yr+PcF8=\",\"fileLength\":\"78389\",\"height\":1599,\"width\":899,\"mediaKey\":\"m\\/5k8sM0eN2ZnZLEOjK7p1i7\\/K0MqBCjY0OEhGb8wNM=\",\"fileEncSha256\":\"IXU3b80kSQdQr3nmizTnbf1q+3u0T9emLV7kDVWgMFM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/541619456_25991093890526799_5193498630555722021_n.enc?ccb=11-4&oh=01_Q5Aa3wGW3wArHpylj_4aP4CU5wC24e6R5Dn64-iglvcYv_GKCg&oe=69B41CEE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770829185\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAwAAACAwEAAAAAAAAAAAAAAAAAAwECBAUBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA2XGTS6aYjRQwBVlM6fPm6EF7jnCuWcXRWb88QQFRvMxRn06hM3iwga\\/\\/xAAhEAADAAICAgIDAAAAAAAAAAAAAQIREgMQMVETIRRSYf\\/aAAgBAQABPwBZfgUe2VDaeGNcsvPlGb\\/UVekJox2ulTQrT8n17Ivbq6SQuZfZ+T\\/C7ieV6M+edcnJyuh0bMm3kV5Q33kmjY2RnpCYjU\\/\\/xAAcEQABBAMBAAAAAAAAAAAAAAABAAIQExEhMVH\\/2gAIAQIBAT8ArcticAqseLstM\\/\\/EABwRAAMAAgMBAAAAAAAAAAAAAAABAhAhAxETUf\\/aAAgBAwEBPwBckmnlW5PZ\\/SpaeaR0aP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"7vrQay1hYW5WD66ZPBSpVBOP\\/N4ZPr5c99SomUovTznNpiMz1hDmsg==\",\"scanLengths\":[10853,26932,13031,27573],\"midQualityFileSha256\":\"MWeNx1UGu26BawSugC0FQFIRa31n+rcTnQgWBqaOzns=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770829186,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 13:59:46'),
(1529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A58F42D95BEE73038FA9C259E1836E1B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/541619456_25991093890526799_5193498630555722021_n.enc?ccb=11-4&oh=01_Q5Aa3wGW3wArHpylj_4aP4CU5wC24e6R5Dn64-iglvcYv_GKCg&oe=69B41CEE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"LRbx30+tezurvwuLYwdRu9LdOQ33ayJ+vF+3Yr+PcF8=\",\"fileLength\":\"78389\",\"height\":1599,\"width\":899,\"mediaKey\":\"m\\/5k8sM0eN2ZnZLEOjK7p1i7\\/K0MqBCjY0OEhGb8wNM=\",\"fileEncSha256\":\"IXU3b80kSQdQr3nmizTnbf1q+3u0T9emLV7kDVWgMFM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/541619456_25991093890526799_5193498630555722021_n.enc?ccb=11-4&oh=01_Q5Aa3wGW3wArHpylj_4aP4CU5wC24e6R5Dn64-iglvcYv_GKCg&oe=69B41CEE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770829185\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAwAAACAwEAAAAAAAAAAAAAAAAAAwECBAUBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA2XGTS6aYjRQwBVlM6fPm6EF7jnCuWcXRWb88QQFRvMxRn06hM3iwga\\/\\/xAAhEAADAAICAgIDAAAAAAAAAAAAAQIREgMQMVETIRRSYf\\/aAAgBAQABPwBZfgUe2VDaeGNcsvPlGb\\/UVekJox2ulTQrT8n17Ivbq6SQuZfZ+T\\/C7ieV6M+edcnJyuh0bMm3kV5Q33kmjY2RnpCYjU\\/\\/xAAcEQABBAMBAAAAAAAAAAAAAAABAAIQExEhMVH\\/2gAIAQIBAT8ArcticAqseLstM\\/\\/EABwRAAMAAgMBAAAAAAAAAAAAAAABAhAhAxETUf\\/aAAgBAwEBPwBckmnlW5PZ\\/SpaeaR0aP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"7vrQay1hYW5WD66ZPBSpVBOP\\/N4ZPr5c99SomUovTznNpiMz1hDmsg==\",\"scanLengths\":[10853,26932,13031,27573],\"midQualityFileSha256\":\"MWeNx1UGu26BawSugC0FQFIRa31n+rcTnQgWBqaOzns=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770829186,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:59:46'),
(1530, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 13:59:46'),
(1531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 13:59:46'),
(1532, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58F42D95BEE73038FA9C259E1836E1B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770829186557,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 13:59:47'),
(1533, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:59:47'),
(1534, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:59:47'),
(1535, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58F42D95BEE73038FA9C259E1836E1B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770829186557,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T13:59:46.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 13:59:47'),
(1536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770829365603,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:45.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:45'),
(1537, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58F42D95BEE73038FA9C259E1836E1B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770829365584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:45.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:48'),
(1538, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770829365603,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:45.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:48'),
(1539, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770829365593,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:45.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:48'),
(1540, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58F42D95BEE73038FA9C259E1836E1B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770829365584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:45.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:48'),
(1541, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770829365593,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:45.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:48'),
(1542, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:49.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:49'),
(1543, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:49.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:49'),
(1544, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:52.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:52'),
(1545, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CB4583B6356F0A2793E9F339BA8E7C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Q sujeira\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rlgWXbyh8uyK7MY5iVSI2JqvRQp23sPRktfithdnYek=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770829372,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:52.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:52'),
(1546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:52.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:53'),
(1547, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:52.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:53'),
(1548, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CB4583B6356F0A2793E9F339BA8E7C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Q sujeira\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rlgWXbyh8uyK7MY5iVSI2JqvRQp23sPRktfithdnYek=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770829372,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:52.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:53'),
(1549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:52.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:53'),
(1550, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:53.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:02:53'),
(1551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94MBCK0ugin_YSuvPlQdTVIPaOIvQDEPLX_0e3QRl9w&oe=6999D5F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:02:53.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:02:53'),
(1552, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770830952430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:12.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:12'),
(1553, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A5F550B530A245980B2062C41591224D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770830952430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:12.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:12'),
(1554, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770830952441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:12.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:12'),
(1555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235686380707934@lid\",\"id\":\"A512510A945F2A0B4E43F19BA3D63113\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770830952441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:12.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:13'),
(1556, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"presences\":{\"235686380707934@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:13.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:13'),
(1557, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"presences\":{\"235686380707934@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:13.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:13'),
(1558, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:22'),
(1559, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:22'),
(1560, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":false,\"id\":\"3A825F5E0533A6E9DFC8\"},\"pushName\":\"Artur Amaral\",\"message\":{\"conversation\":\"Testei agora, deu derto! Valeu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5WDUkh+jsNGqUQ==\",\"senderTimestamp\":\"1770220514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JQeZ9X5\\/fyEHa8e4ChBZU9\\/XunPwCvl2dLIVFAD35RQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770830962,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:22'),
(1561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:22'),
(1562, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:29:22'),
(1563, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"235686380707934@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:22'),
(1564, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"235686380707934@lid\",\"fromMe\":false,\"id\":\"3A825F5E0533A6E9DFC8\"},\"pushName\":\"Artur Amaral\",\"message\":{\"conversation\":\"Testei agora, deu derto! Valeu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5WDUkh+jsNGqUQ==\",\"senderTimestamp\":\"1770220514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JQeZ9X5\\/fyEHa8e4ChBZU9\\/XunPwCvl2dLIVFAD35RQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770830962,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:22'),
(1565, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"235686380707934@lid\",\"pushName\":\"Artur Amaral\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:29:22.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:29:22'),
(1566, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"137289116160043:81@lid\",\"id\":\"A5D9F8B5793A749D7A168295CD35CC56\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770831331482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:35:31.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:35:31'),
(1567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"137289116160043:81@lid\",\"id\":\"A5D9F8B5793A749D7A168295CD35CC56\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770831331482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:35:31.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:35:31'),
(1568, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:35:55.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 14:35:56'),
(1569, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T14:35:55.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:35:56'),
(1570, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":true,\"id\":\"AC61DCBAEBA7247EE56076DDC9D2928A\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770831702,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T14:41:43.004Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:41:43'),
(1571, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:41:43.135Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:41:43'),
(1572, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:41:43.003Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:41:43'),
(1573, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC61DCBAEBA7247EE56076DDC9D2928A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770831704355,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:41:44.356Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:41:44'),
(1574, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:42:25.825Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:42:26'),
(1575, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":true,\"id\":\"AC00AEF6B08A08A755A0CB953136B820\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Me chamo Johnny filho do Sr Adilson Luiz de souza\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770831745,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T14:42:25.826Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:42:26'),
(1576, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:42:26.072Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:42:26'),
(1577, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC00AEF6B08A08A755A0CB953136B820\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770831747069,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:42:27.069Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:42:27'),
(1578, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":true,\"id\":\"ACC01F65F15134EF6C8771F499C90FAA\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Fiz o imposto de renda com tigo através do meu pai gostaria de tirar algumas dúvidas agr pra esse ano de 2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770831897,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T14:44:57.479Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:44:57'),
(1579, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:44:57.478Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:44:57'),
(1580, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:44:57.730Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:44:58'),
(1581, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"ACC01F65F15134EF6C8771F499C90FAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770831898637,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:44:58.637Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:44:58'),
(1582, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC17E31631A8F46A07DCDFA863D655EA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770831922203,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:45:22.203Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:45:22'),
(1583, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC00AEF6B08A08A755A0CB953136B820\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770832223564,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:50:23.564Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:50:23'),
(1584, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:52:21.688Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:22'),
(1585, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3AA2296793339B6C9A81\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"Boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"FXAFlLdfwFKINw==\",\"senderTimestamp\":\"1770817557\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"A5EQSaZiKIqIBQlk8BeU7PT4gstX1+bTPBe6BMkQOAE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770832341,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"ios\"},\"date_time\":\"2026-02-11T14:52:21.689Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:22'),
(1586, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:52:21.942Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:22'),
(1587, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T14:52:21.819Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:22'),
(1588, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:52:21.645Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:22'),
(1589, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:52:23.321Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:23'),
(1590, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T14:52:23.442Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:23'),
(1591, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3ABBD37BB81E2C24EA0B\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"Claro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"FXAFlLdfwFKINw==\",\"senderTimestamp\":\"1770817557\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DHsUOIU3UYwN6+jcl6es+l7y5CCKjQh0yirhqLrFQN0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770832343,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"ios\"},\"date_time\":\"2026-02-11T14:52:23.322Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:23'),
(1592, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:52:23.564Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1593, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3A8CBFD075A08A32FA8A\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"Como posso lhe ajudar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"FXAFlLdfwFKINw==\",\"senderTimestamp\":\"1770817557\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mQ6G1hxzB0Hqml3W3bwWKIx2wWOhgHKVSz\\/9JFp88Yc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770832352,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"ios\"},\"date_time\":\"2026-02-11T14:52:32.434Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:32'),
(1594, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:52:32.690Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:32'),
(1595, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:52:32.433Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:32'),
(1596, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T14:52:32.566Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:52:32'),
(1597, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:53:33.544Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:53:33'),
(1598, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":true,\"id\":\"AC8AA0DDB01EA281659EA4D87F4F03DE\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Voce esta lembrado do meu histórico  ?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770832413,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T14:53:33.544Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:53:33'),
(1599, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:53:33.794Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:53:34'),
(1600, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC8AA0DDB01EA281659EA4D87F4F03DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770832414513,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:53:34.514Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:53:34'),
(1601, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC8AA0DDB01EA281659EA4D87F4F03DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770832434693,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:53:54.693Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:53:55'),
(1602, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:55:04.810Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:55:05'),
(1603, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T14:55:04.940Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:55:05'),
(1604, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3AB1D0B12D73663C981A\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"Lembro sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"FXAFlLdfwFKINw==\",\"senderTimestamp\":\"1770817557\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u8B9FVVHjmjWBkwmODVpfMRXfk+ao8reJ6\\/gRfFKIPU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770832504,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"ios\"},\"date_time\":\"2026-02-11T14:55:04.811Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:55:05'),
(1605, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:55:05.064Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:55:05'),
(1606, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":true,\"id\":\"AC2F77E2E181F4B3EC42AF559DE37850\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Então, com essas novas regras do pix\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770832607,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T14:56:47.955Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:56:48'),
(1607, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:56:47.954Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:56:48'),
(1608, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:56:48.201Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:56:48'),
(1609, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"AC2F77E2E181F4B3EC42AF559DE37850\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770832608875,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:56:48.875Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:56:48'),
(1610, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":true,\"id\":\"ACE834BBFC43CCBB69B55616D3BE55A9\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Como poderemos fazer\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770832628,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T14:57:08.322Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:57:08'),
(1611, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T14:57:08.322Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:57:08'),
(1612, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:57:08.565Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:57:08'),
(1613, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001@lid\",\"id\":\"ACE834BBFC43CCBB69B55616D3BE55A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770832629184,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T14:57:09.185Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 14:57:09'),
(1614, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.861Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:36'),
(1615, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.865Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:36'),
(1616, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.860Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:36'),
(1617, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.845Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:36'),
(1618, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.866Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:36'),
(1619, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.886Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:36'),
(1620, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.848Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:37'),
(1621, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.842Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:37'),
(1622, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.888Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:37'),
(1623, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.880Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:37'),
(1624, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.847Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:38'),
(1625, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.884Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:38'),
(1626, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:38'),
(1627, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"close\",\"statusReason\":428},\"date_time\":\"2026-02-11T15:13:35.803Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:38'),
(1628, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.850Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:38'),
(1629, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.891Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:39'),
(1630, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"V1j5\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.863Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:39'),
(1631, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.877Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:39'),
(1632, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.893Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:39'),
(1633, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.897Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:39'),
(1634, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.868Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:40'),
(1635, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.902Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:40'),
(1636, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.856Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:40'),
(1637, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.913Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:40'),
(1638, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.898Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:40'),
(1639, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.882Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:41'),
(1640, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"zoI9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.879Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:41'),
(1641, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.915Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:41'),
(1642, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.911Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:41'),
(1643, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-11T15:13:37.862Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:41'),
(1644, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.917Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:42'),
(1645, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.904Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:42'),
(1646, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.895Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:42'),
(1647, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.909Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:42'),
(1648, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.852Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1649, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8t+F\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.859Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1650, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.851Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1651, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.852Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1652, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.846Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1653, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.873Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1654, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-11T15:13:36.794Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1655, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.862Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1656, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.855Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1657, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.853Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:46'),
(1658, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.875Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:47'),
(1659, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.905Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:47'),
(1660, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.907Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:47'),
(1661, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.871Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:47'),
(1662, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.889Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:47'),
(1663, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.854Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:48'),
(1664, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.843Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:48'),
(1665, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.869Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:48'),
(1666, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:13:35.900Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:13:48'),
(1667, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:14:55.369Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:14:55'),
(1668, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T15:14:55.493Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:14:56'),
(1669, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433:20@lid\",\"id\":\"ACB3690C19D3E17326CB5E4AFC828B5B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770834379097,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:26:19.098Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:26:19'),
(1670, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC2F77E2E181F4B3EC42AF559DE37850\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835814030,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:14.030Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:14'),
(1671, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"ACE834BBFC43CCBB69B55616D3BE55A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835814036,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:14.037Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:14'),
(1672, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC00AEF6B08A08A755A0CB953136B820\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835814004,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:14.004Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:14'),
(1673, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"ACC01F65F15134EF6C8771F499C90FAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835814010,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:14.010Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:14'),
(1674, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC17E31631A8F46A07DCDFA863D655EA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835814016,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:14.017Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:14'),
(1675, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC61DCBAEBA7247EE56076DDC9D2928A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835813994,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:13.994Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:15'),
(1676, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC8AA0DDB01EA281659EA4D87F4F03DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770835814024,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T15:50:14.024Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 15:50:15'),
(1677, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T16:08:04.110Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 16:08:04'),
(1678, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/141316402_889357615169195_2295005405903438756_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVUzl9a9ZVa8zP17f3EUS4dnMgvc6EdybJ5Q9OW4D4w&oe=6999CF98&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T16:08:04.235Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 16:08:04'),
(1679, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T16:53:19.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 16:53:19'),
(1680, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T16:53:19.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 16:53:19'),
(1681, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:11:19.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:11:20'),
(1682, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:11:19.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:11:20'),
(1683, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1684, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7ZqL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vtUW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"BQMB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7ZqL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1688, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"kQLy\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1689, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1690, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:34'),
(1691, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"+\\/2X\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:35'),
(1692, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:35'),
(1693, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:35'),
(1694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:35'),
(1695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eIaD\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:35'),
(1696, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:36'),
(1697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"BQMB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:36'),
(1698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Yvl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:36'),
(1699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7ZqL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:36'),
(1700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:36'),
(1701, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\\/KDm\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:37'),
(1702, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"l3g0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:37'),
(1703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:37'),
(1704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:37'),
(1705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:37'),
(1706, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"+\\/2X\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:38'),
(1708, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:38'),
(1709, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:38'),
(1710, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:38'),
(1711, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7ZqL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:39'),
(1712, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:39'),
(1713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8+y3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:39'),
(1714, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"CFIk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:39'),
(1715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"UUwZ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:39'),
(1716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"k0SV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:40'),
(1717, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"wWSE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:40'),
(1718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:40'),
(1719, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:40'),
(1720, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Jmg9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:40'),
(1721, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:41'),
(1722, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"UUwZ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:41'),
(1723, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Pp8h\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:41'),
(1724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:41'),
(1725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"mGkB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:41'),
(1726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3z5D\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:42'),
(1727, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:42'),
(1728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vtUW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:42'),
(1729, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3z5D\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:42'),
(1730, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:42'),
(1731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"cNEc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:43'),
(1732, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"woBv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:43'),
(1733, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:43'),
(1734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:43'),
(1735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:43'),
(1736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:44'),
(1737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3z5D\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:44'),
(1738, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"TQVz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:44'),
(1739, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:44'),
(1740, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:44'),
(1741, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:45'),
(1742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:45'),
(1743, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:45'),
(1744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:45'),
(1745, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:45'),
(1746, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:46'),
(1747, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"yZeW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:46'),
(1748, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:46'),
(1749, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:46'),
(1750, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"d3fl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:46'),
(1751, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"l3g0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:47'),
(1752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tCPB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:47'),
(1753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:47'),
(1754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:47'),
(1755, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:47'),
(1756, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"k0SV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:48'),
(1757, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:48'),
(1758, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3XnA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:48'),
(1759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"EyF\\/\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:48'),
(1760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:48'),
(1761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:49'),
(1762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:49'),
(1763, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"N4+l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:49'),
(1764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:49'),
(1765, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:49'),
(1766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"woBv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:50'),
(1767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:50'),
(1768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:50'),
(1769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76Ha\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:50'),
(1770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"TQVz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:50'),
(1771, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Pb7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:51'),
(1772, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3XnA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:51'),
(1773, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:51'),
(1774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Ca13\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:51'),
(1775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:51'),
(1776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"yZeW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:52'),
(1777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9lBL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:52'),
(1778, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:36.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:52'),
(1779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Jmg9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:52'),
(1780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:52'),
(1781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:53'),
(1782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"l3g0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:53'),
(1783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"N4+l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:53'),
(1784, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"wWSE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:53'),
(1785, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Yvl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:53'),
(1786, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:54'),
(1787, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:54'),
(1788, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:54'),
(1789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:54'),
(1790, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:54'),
(1791, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:55'),
(1792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"TQVz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:55'),
(1793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"V1j5\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:55'),
(1794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"gIfb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:55'),
(1795, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:55'),
(1796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JeIJ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:56'),
(1797, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:56'),
(1798, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"gIfb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:56'),
(1799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Pb7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:56'),
(1800, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:56'),
(1801, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:57'),
(1802, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Pb7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:57'),
(1803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Ca13\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:57'),
(1804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:57'),
(1805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:57'),
(1806, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"EyF\\/\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:58'),
(1807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"cNEc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:58'),
(1808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"mGkB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:58'),
(1809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"96YV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:58'),
(1810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"QWfZ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:58'),
(1811, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Vv+3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:59'),
(1813, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JeIJ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:20:59'),
(1814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:59'),
(1815, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:20:59'),
(1816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:00'),
(1817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"QWfZ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:00'),
(1818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:00'),
(1819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ZzuI\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:00'),
(1820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"96YV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:00'),
(1821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Vv+3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:01'),
(1822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:01'),
(1823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:01'),
(1824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76Ha\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:01'),
(1825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:01'),
(1826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"rJLi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:02'),
(1827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:02'),
(1828, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Vv+3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:02'),
(1829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hkMI\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:02'),
(1830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:02'),
(1831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:03'),
(1832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:03'),
(1833, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:03'),
(1834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:03'),
(1835, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tCPB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:03'),
(1836, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:04'),
(1837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:04'),
(1838, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"wWSE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:04'),
(1839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ZzuI\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:04'),
(1840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:04'),
(1841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:05'),
(1842, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:05'),
(1843, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3z5D\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:05'),
(1844, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:05'),
(1845, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eIaD\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:05'),
(1846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:06'),
(1847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8+y3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:06'),
(1848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"kQLy\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:06'),
(1849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:06'),
(1850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:06'),
(1851, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"CFIk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:07'),
(1852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"U3Ps\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:07'),
(1853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"l3g0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:07'),
(1854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\\/KDm\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:07'),
(1855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"d3fl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:07'),
(1856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"wWSE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:08'),
(1857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3z5D\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:08'),
(1858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:08'),
(1859, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:08'),
(1860, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Pp8h\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:08'),
(1861, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:09'),
(1862, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:09'),
(1863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Dzsc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:09'),
(1864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:09'),
(1865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"V1j5\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:09'),
(1866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"oAy\\/\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:10'),
(1867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:10'),
(1868, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9lBL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:10'),
(1869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:10'),
(1870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:10'),
(1871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:11'),
(1872, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:36.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:11'),
(1873, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Vv+3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:11'),
(1874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"xfuj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:11'),
(1875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:11'),
(1876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:12'),
(1877, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:12'),
(1878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:12'),
(1879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:12'),
(1880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:12'),
(1881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:13'),
(1882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"fKLB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:13'),
(1883, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:13'),
(1884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JhU9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:13'),
(1885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:13'),
(1886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"xfuj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:14'),
(1887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"xfuj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:14'),
(1888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"kQLy\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:14'),
(1889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:14'),
(1890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"x\\/oV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:14'),
(1891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:15'),
(1892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:15'),
(1893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:15'),
(1894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hkMI\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:15'),
(1895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:15'),
(1896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:16'),
(1897, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"TQVz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:16'),
(1898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:16'),
(1899, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:16'),
(1900, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"rJLi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:16'),
(1901, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:17'),
(1902, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:17'),
(1903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"4Dz6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:17'),
(1904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hkMI\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:17'),
(1905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:17'),
(1906, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eJmw\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:18'),
(1907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Pb7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:18'),
(1908, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:34.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:18'),
(1909, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"YlEd\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:18'),
(1910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:33.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:21:18'),
(1911, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:20:32.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:21:19'),
(1912, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:39.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1913, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AB29ECED2341929AE7F\"},\"pushName\":\"Anderson \",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633840412_2049810399138121_4203693767570164634_n.enc?ccb=11-4&oh=01_Q5Aa3wEooyvhKEK7m5cTWepLbd3EvUGxlD9jJ8imhYYZkyl5XA&oe=69B45B49&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Boa  tarde mano esse ja  era\",\"fileSha256\":\"lQAuf3XXa+VvW3VAax8yGGW6+Ewx57pEG8nYtGw9Slw=\",\"fileLength\":\"176864\",\"height\":900,\"width\":1600,\"mediaKey\":\"Qai5Jo+MXQG2LWYLJGdSxRKGTPWSocDM\\/AL2jk9tlp4=\",\"fileEncSha256\":\"V85PyZTyaUFPXoAvhoFXt4G5FMYW4TPfV10aLkNqA\\/o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633840412_2049810399138121_4203693767570164634_n.enc?ccb=11-4&oh=01_Q5Aa3wEooyvhKEK7m5cTWepLbd3EvUGxlD9jJ8imhYYZkyl5XA&oe=69B45B49&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770841999\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAMEAgEF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAAC8j7cU8QNPEAPzgDYoa8q+G2NEdO0uZclM4EvhoDs7ZvT56ONmpNfFVja9Y75+3TIzJlfblcmfKGUR7h52vvLq0AUuQoX0GjYJ7oCXwAP\\/xAAgEQABAwQCAwAAAAAAAAAAAAABABARAgMEIRJBICJR\\/9oACAECAQE\\/AJcFiD0oVT0jSA2sgejnIHxC+B0rt\\/nTENvy\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACEBEDIDFBUf\\/aAAgBAwEBPwCprQSV0sfMjGUWH1NZRvYR\\/8QALRAAAQQBAwEHAgcAAAAAAAAAAQACAxEhBBIxQRMUIkJRUpEyYQUQFSNxgeH\\/2gAIAQEAAT8AKpHlH8iqxVItVL9RYfKU3XsvLSjrYzwChq4zzYR1cXqV3yK+Sm6mI+ZHUw+8I6mH3q8qH8PkliD2EG+FJE6KUxu5CEb3NJAJCMT20S0hV8+qLhwDlBuB0I6p9SCmn\\/V2UnsK02r1OnZsY3H3UvaySmQtNlRunYbaCE6Wd4LXA0U62mjhAAiq\\/tFwcNuf5W0CiRVdVrHubqXhpIAKMr7+o\\/KjMr+CflGV7TRcflMleT9R+VMbiYSt3Tom8UeE54dgih0K1pvUyEeqPK0WqEIIIBwp375C4KM5Up\\/ZjVgDPCbJuHHhTiA3xcBSh284KhIZJbmbh6KSdrhTdPtHXCe6922GgftwmtIPCe4iMAp8hNgDChcQ2vKiXO6eFd7kcMkfCM7gbtd8l9y73L7jS7dxF7lHN2rTuzSNXg4TS\\/JaPCEySm54RdSLkSmuQd9lG+uDQTXFxwLATJBtvogS820WF\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"wNYvvyI9lPxrAg==\",\"firstScanLength\":13796,\"scansSidecar\":\"wNYvvyI9lPxrAjdkUwQHleaC7wnd2nKcJoonuXEwh\\/UaFYiL5G7tOQ==\",\"scanLengths\":[13796,50240,38349,74477],\"midQualityFileSha256\":\"qcRjDnod8JPeFCYKGmfZWeYadpXwjfHdEKoHS2Uktqc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770838887\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"R1QkqcON0Z2Jh7ZhuchcNAQ6bDp6VNAMdg1Z6ofIROY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770842019,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:39.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:39'),
(1914, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:39.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:40'),
(1915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AB29ECED2341929AE7F\"},\"pushName\":\"Anderson \",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633840412_2049810399138121_4203693767570164634_n.enc?ccb=11-4&oh=01_Q5Aa3wEooyvhKEK7m5cTWepLbd3EvUGxlD9jJ8imhYYZkyl5XA&oe=69B45B49&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Boa  tarde mano esse ja  era\",\"fileSha256\":\"lQAuf3XXa+VvW3VAax8yGGW6+Ewx57pEG8nYtGw9Slw=\",\"fileLength\":\"176864\",\"height\":900,\"width\":1600,\"mediaKey\":\"Qai5Jo+MXQG2LWYLJGdSxRKGTPWSocDM\\/AL2jk9tlp4=\",\"fileEncSha256\":\"V85PyZTyaUFPXoAvhoFXt4G5FMYW4TPfV10aLkNqA\\/o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633840412_2049810399138121_4203693767570164634_n.enc?ccb=11-4&oh=01_Q5Aa3wEooyvhKEK7m5cTWepLbd3EvUGxlD9jJ8imhYYZkyl5XA&oe=69B45B49&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770841999\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAMEAgEF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAAC8j7cU8QNPEAPzgDYoa8q+G2NEdO0uZclM4EvhoDs7ZvT56ONmpNfFVja9Y75+3TIzJlfblcmfKGUR7h52vvLq0AUuQoX0GjYJ7oCXwAP\\/xAAgEQABAwQCAwAAAAAAAAAAAAABABARAgMEIRJBICJR\\/9oACAECAQE\\/AJcFiD0oVT0jSA2sgejnIHxC+B0rt\\/nTENvy\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACEBEDIDFBUf\\/aAAgBAwEBPwCprQSV0sfMjGUWH1NZRvYR\\/8QALRAAAQQBAwEHAgcAAAAAAAAAAQACAxEhBBIxQRMUIkJRUpEyYQUQFSNxgeH\\/2gAIAQEAAT8AKpHlH8iqxVItVL9RYfKU3XsvLSjrYzwChq4zzYR1cXqV3yK+Sm6mI+ZHUw+8I6mH3q8qH8PkliD2EG+FJE6KUxu5CEb3NJAJCMT20S0hV8+qLhwDlBuB0I6p9SCmn\\/V2UnsK02r1OnZsY3H3UvaySmQtNlRunYbaCE6Wd4LXA0U62mjhAAiq\\/tFwcNuf5W0CiRVdVrHubqXhpIAKMr7+o\\/KjMr+CflGV7TRcflMleT9R+VMbiYSt3Tom8UeE54dgih0K1pvUyEeqPK0WqEIIIBwp375C4KM5Up\\/ZjVgDPCbJuHHhTiA3xcBSh284KhIZJbmbh6KSdrhTdPtHXCe6922GgftwmtIPCe4iMAp8hNgDChcQ2vKiXO6eFd7kcMkfCM7gbtd8l9y73L7jS7dxF7lHN2rTuzSNXg4TS\\/JaPCEySm54RdSLkSmuQd9lG+uDQTXFxwLATJBtvogS820WF\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"wNYvvyI9lPxrAg==\",\"firstScanLength\":13796,\"scansSidecar\":\"wNYvvyI9lPxrAjdkUwQHleaC7wnd2nKcJoonuXEwh\\/UaFYiL5G7tOQ==\",\"scanLengths\":[13796,50240,38349,74477],\"midQualityFileSha256\":\"qcRjDnod8JPeFCYKGmfZWeYadpXwjfHdEKoHS2Uktqc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770838887\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"R1QkqcON0Z2Jh7ZhuchcNAQ6bDp6VNAMdg1Z6ofIROY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770842019,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:39.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:40'),
(1916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:39.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:40'),
(1917, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:39.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:40'),
(1918, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:40.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:40'),
(1919, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:40.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:41'),
(1920, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A94F4BBFF0400BF278E\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Está funcionando até ontem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770838887\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fNZanO+GnvtzfplylFzxo+Jeii3H1vpvjbNBZPakaEw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770842027,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:47.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:47'),
(1921, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:47.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:47'),
(1922, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A94F4BBFF0400BF278E\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Está funcionando até ontem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770838887\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fNZanO+GnvtzfplylFzxo+Jeii3H1vpvjbNBZPakaEw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770842027,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:47.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:47'),
(1923, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:47.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:47'),
(1924, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:48.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:48'),
(1925, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:48.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:33:48'),
(1926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:48.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:48'),
(1927, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:33:48.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:33:48'),
(1928, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:12.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:51:13'),
(1929, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC1605AB3397284AAB1FC6ACA568E2BE\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Iai mn\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P3k4h7+hQnD57VyCycOltSRYMwhoOiuLllVW4zTAagg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770843072,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:12.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:51:13'),
(1930, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:12.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:51:13'),
(1931, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC1605AB3397284AAB1FC6ACA568E2BE\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Iai mn\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P3k4h7+hQnD57VyCycOltSRYMwhoOiuLllVW4zTAagg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770843072,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:12.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:51:13'),
(1932, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:13.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:51:13'),
(1933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:13.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:51:13'),
(1934, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:13.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:51:13'),
(1935, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:51:13.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:51:13'),
(1936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"ACF659049405DEC0C003872E2728A1A9\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Qual o app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TJc7ESWbPYPPx2K6MF+0SnDu52u44vB\\/7aDU\\/juci88=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770843502,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:22.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:58:23'),
(1937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:22.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:58:23'),
(1938, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:22.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:58:23'),
(1939, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"ACF659049405DEC0C003872E2728A1A9\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Qual o app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TJc7ESWbPYPPx2K6MF+0SnDu52u44vB\\/7aDU\\/juci88=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770843502,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:22.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:58:23'),
(1940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:23.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:58:23'),
(1941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:23.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:58:23'),
(1942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:23.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 17:58:23'),
(1943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T17:58:23.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 17:58:23'),
(1944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A555E87AE041709F032B85198F631016\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/579683174_1230613548530015_6504945196758651227_n.enc?ccb=11-4&oh=01_Q5Aa3wEby_Ofl5UhlRXys30v9nlXLXkTCBhFmML-3i7VXlx9mw&oe=69B45AEF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"C7C64o53LuAOwmsfCIynRZrCn+YNwahkajGv7YhLtE0=\",\"fileLength\":\"9759\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"\\/Rop3G8Nn2T6eiaIpNI0fWDyEuidCDGcu0dMlN2cazw=\",\"fileEncSha256\":\"z09NK4EXgThoiSbPXAUb761ZGh9LfoWENM86LL\\/97Yc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/579683174_1230613548530015_6504945196758651227_n.enc?ccb=11-4&oh=01_Q5Aa3wEby_Ofl5UhlRXys30v9nlXLXkTCBhFmML-3i7VXlx9mw&oe=69B45AEF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844455\",\"waveform\":\"AB4YEQsRBwUQEQ0FDi0UEQ8UH0BGOxokQWNeW1xWRxwRBxYvTGNdWV9jXkdPSz1QUUhETlo9TlA5QkUUBAYZDg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844458,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:18.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:18'),
(1945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:18.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:18'),
(1946, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:18.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:18'),
(1947, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A555E87AE041709F032B85198F631016\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/579683174_1230613548530015_6504945196758651227_n.enc?ccb=11-4&oh=01_Q5Aa3wEby_Ofl5UhlRXys30v9nlXLXkTCBhFmML-3i7VXlx9mw&oe=69B45AEF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"C7C64o53LuAOwmsfCIynRZrCn+YNwahkajGv7YhLtE0=\",\"fileLength\":\"9759\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"\\/Rop3G8Nn2T6eiaIpNI0fWDyEuidCDGcu0dMlN2cazw=\",\"fileEncSha256\":\"z09NK4EXgThoiSbPXAUb761ZGh9LfoWENM86LL\\/97Yc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/579683174_1230613548530015_6504945196758651227_n.enc?ccb=11-4&oh=01_Q5Aa3wEby_Ofl5UhlRXys30v9nlXLXkTCBhFmML-3i7VXlx9mw&oe=69B45AEF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844455\",\"waveform\":\"AB4YEQsRBwUQEQ0FDi0UEQ8UH0BGOxokQWNeW1xWRxwRBxYvTGNdWV9jXkdPSz1QUUhETlo9TlA5QkUUBAYZDg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844458,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:18.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:18'),
(1948, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:18.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:19'),
(1949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A555E87AE041709F032B85198F631016\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844459299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:19.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:19'),
(1950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:18.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:19'),
(1951, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A555E87AE041709F032B85198F631016\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844459299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:19.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:19'),
(1952, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A555E87AE041709F032B85198F631016\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844470574,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:30.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:30'),
(1953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A555E87AE041709F032B85198F631016\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844470574,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:30.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:31'),
(1954, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A555E87AE041709F032B85198F631016\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770844471906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:31.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:31'),
(1955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A555E87AE041709F032B85198F631016\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770844471906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:31.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:32'),
(1956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:49.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:49'),
(1957, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:49.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:49'),
(1958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC10834918344121B75BC72D6999154A\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TQRPo87iqmE\\/qRURn9eeVGMCkAEmJBAEozhbmVyqzYI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770844489,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:49.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:49'),
(1959, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC10834918344121B75BC72D6999154A\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TQRPo87iqmE\\/qRURn9eeVGMCkAEmJBAEozhbmVyqzYI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770844489,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:49.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:50'),
(1960, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:49.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:50'),
(1961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:50.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:14:50'),
(1962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:49.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:50'),
(1963, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:14:50.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:14:50'),
(1964, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:00.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:01'),
(1965, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A5972E5A35415A8816695819FD69C2A3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:00.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:01'),
(1966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:00.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:01'),
(1967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A5972E5A35415A8816695819FD69C2A3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:00.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:01'),
(1968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:01.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:01'),
(1969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:01.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:03'),
(1970, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5972E5A35415A8816695819FD69C2A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844504009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:04.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:04'),
(1971, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5972E5A35415A8816695819FD69C2A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844504009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:04.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:04'),
(1972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim negao esse ai precisa mudar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844509,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:09.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:10'),
(1973, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:09.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:10'),
(1974, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:09.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:10'),
(1975, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim negao esse ai precisa mudar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844509,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:09.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:10'),
(1976, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:10.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:10'),
(1977, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844511412,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:11.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:11'),
(1978, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844511412,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:11.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:11'),
(1979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:10.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:11'),
(1980, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A52CF5DF300935795A887AA498A29C5E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Na loja nossa o último app e igual\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844520,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:20.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:20');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(1981, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A52CF5DF300935795A887AA498A29C5E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Na loja nossa o último app e igual\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844520,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:20.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:21'),
(1982, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:20.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:21'),
(1983, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:20.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:21'),
(1984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:21.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:21'),
(1985, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:21.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:21'),
(1986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:22.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:22'),
(1987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A51D6333F7B9634F5A3E8F516E33F7B5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ibo tbm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:22.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:22'),
(1988, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:22.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:22'),
(1989, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A51D6333F7B9634F5A3E8F516E33F7B5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ibo tbm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:22.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:23'),
(1990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:23.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:23'),
(1991, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:23.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:23'),
(1992, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844525173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:25'),
(1993, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5972E5A35415A8816695819FD69C2A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844525170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:25'),
(1994, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844525173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:25'),
(1995, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5972E5A35415A8816695819FD69C2A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844525170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:25'),
(1996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A52CF5DF300935795A887AA498A29C5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844525825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:25'),
(1997, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A52CF5DF300935795A887AA498A29C5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844525825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:26'),
(1998, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526142,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:26'),
(1999, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A51D6333F7B9634F5A3E8F516E33F7B5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526253,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:26'),
(2000, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A539C96B67491AFDBAC7E3554E7605D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526142,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:26'),
(2001, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A51D6333F7B9634F5A3E8F516E33F7B5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526253,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:26'),
(2002, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A51D6333F7B9634F5A3E8F516E33F7B5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844525839,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:27'),
(2003, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A51D6333F7B9634F5A3E8F516E33F7B5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844525839,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:25.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:27'),
(2004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5972E5A35415A8816695819FD69C2A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526145,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:27'),
(2005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A52CF5DF300935795A887AA498A29C5E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526246,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:27'),
(2006, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5972E5A35415A8816695819FD69C2A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526145,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:27'),
(2007, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A5A1536581FF182D2381CD0A293A1F55\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store1.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844527,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:27.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:28'),
(2008, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A5A1536581FF182D2381CD0A293A1F55\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store1.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844527,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:27.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:28'),
(2009, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5A1536581FF182D2381CD0A293A1F55\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844528359,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:28.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:28'),
(2010, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5A1536581FF182D2381CD0A293A1F55\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844528399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:28.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:28'),
(2011, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5A1536581FF182D2381CD0A293A1F55\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844528359,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:28.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:28'),
(2012, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:27.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:29'),
(2013, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A52CF5DF300935795A887AA498A29C5E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844526246,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:26.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:29'),
(2014, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:28.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:29'),
(2015, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A5A1536581FF182D2381CD0A293A1F55\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844528399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:28.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:29'),
(2016, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:27.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:29'),
(2017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:28.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:30'),
(2018, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:37'),
(2019, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC2B352F39DCF621B6FFB521DD80E0F5\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633549813_851472201249790_2558646597166135193_n.enc?ccb=11-4&oh=01_Q5Aa3wGObdk1fH7D-Zzs_gHBNeGLJo_7b50MyO1tKkZblzuPfg&oe=69B45FF6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"C72F86KzaubFDeSHhA5cxUId5E8iTA3Xzj9jbqNQX5A=\",\"fileLength\":\"63476\",\"seconds\":31,\"ptt\":true,\"mediaKey\":\"MoOKfHRV3a5biFP1OJswH+yOBjqGG9dc0O\\/A+WXIePY=\",\"fileEncSha256\":\"dRxxneWWwr\\/KWGvMKA2InA4R+pN+iXFbhuoNABSAPHM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633549813_851472201249790_2558646597166135193_n.enc?ccb=11-4&oh=01_Q5Aa3wGObdk1fH7D-Zzs_gHBNeGLJo_7b50MyO1tKkZblzuPfg&oe=69B45FF6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844507\",\"waveform\":\"AAAAAA0bGSsAAENCAAAAACk1OyM1QDwAAEA+QTsqAAADRRxBOgA9RkIlRiUPRAAAKEYqPyYAPAAARhErAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LhFGPMygMOBlL1rF4enOiNX1jyp9u\\/x5AZmPPLTGO5Y=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:37'),
(2020, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:37'),
(2021, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC2B352F39DCF621B6FFB521DD80E0F5\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633549813_851472201249790_2558646597166135193_n.enc?ccb=11-4&oh=01_Q5Aa3wGObdk1fH7D-Zzs_gHBNeGLJo_7b50MyO1tKkZblzuPfg&oe=69B45FF6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"C72F86KzaubFDeSHhA5cxUId5E8iTA3Xzj9jbqNQX5A=\",\"fileLength\":\"63476\",\"seconds\":31,\"ptt\":true,\"mediaKey\":\"MoOKfHRV3a5biFP1OJswH+yOBjqGG9dc0O\\/A+WXIePY=\",\"fileEncSha256\":\"dRxxneWWwr\\/KWGvMKA2InA4R+pN+iXFbhuoNABSAPHM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633549813_851472201249790_2558646597166135193_n.enc?ccb=11-4&oh=01_Q5Aa3wGObdk1fH7D-Zzs_gHBNeGLJo_7b50MyO1tKkZblzuPfg&oe=69B45FF6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844507\",\"waveform\":\"AAAAAA0bGSsAAENCAAAAACk1OyM1QDwAAEA+QTsqAAADRRxBOgA9RkIlRiUPRAAAKEYqPyYAPAAARhErAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LhFGPMygMOBlL1rF4enOiNX1jyp9u\\/x5AZmPPLTGO5Y=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:37'),
(2022, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:37'),
(2023, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:15:38'),
(2024, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:38'),
(2025, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:15:37.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:15:38'),
(2026, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A869C46F9598CD7420D\"},\"pushName\":\"Anderson \",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/632559601_897391023040485_7143792957001518079_n.enc?ccb=11-4&oh=01_Q5Aa3wFc-hmu52Wf8ziuwR48wJXbzNtMh595vBaDy1QyUj7jbA&oe=69B47AD1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"otveJC1gwHPzmULqs\\/gCE8VFJTgSWqvTKNB7DrVtZi0=\",\"fileLength\":\"40622\",\"seconds\":17,\"ptt\":true,\"mediaKey\":\"vCtfIlOKVvVSupCWcS8nqEj47Dpu6meuyVUrjZx9IY8=\",\"fileEncSha256\":\"5xpwuVPg0PCGxc6FcKUl3\\/SIPU9d8nkbPuWbWQdgrY4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/632559601_897391023040485_7143792957001518079_n.enc?ccb=11-4&oh=01_Q5Aa3wFc-hmu52Wf8ziuwR48wJXbzNtMh595vBaDy1QyUj7jbA&oe=69B47AD1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844558\",\"streamingSidecar\":\"emA6feUjBiH\\/9Q==\",\"waveform\":\"CQ0UDwsMDQ44ZGRkWGRFFClkZGQ8Fl5kZFpiZGRkLztiZGRkQ1IrKDxBRhoQPWRkMRgbZGRfZGRkRjA0ZGRUJw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770838887\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dxmz2GjVqWvhnftuIMSZPIhpVQ2nI1XMx98OvdQnfVg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844577,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:17.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:18'),
(2027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:17.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:18'),
(2028, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A869C46F9598CD7420D\"},\"pushName\":\"Anderson \",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/632559601_897391023040485_7143792957001518079_n.enc?ccb=11-4&oh=01_Q5Aa3wFc-hmu52Wf8ziuwR48wJXbzNtMh595vBaDy1QyUj7jbA&oe=69B47AD1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"otveJC1gwHPzmULqs\\/gCE8VFJTgSWqvTKNB7DrVtZi0=\",\"fileLength\":\"40622\",\"seconds\":17,\"ptt\":true,\"mediaKey\":\"vCtfIlOKVvVSupCWcS8nqEj47Dpu6meuyVUrjZx9IY8=\",\"fileEncSha256\":\"5xpwuVPg0PCGxc6FcKUl3\\/SIPU9d8nkbPuWbWQdgrY4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/632559601_897391023040485_7143792957001518079_n.enc?ccb=11-4&oh=01_Q5Aa3wFc-hmu52Wf8ziuwR48wJXbzNtMh595vBaDy1QyUj7jbA&oe=69B47AD1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844558\",\"streamingSidecar\":\"emA6feUjBiH\\/9Q==\",\"waveform\":\"CQ0UDwsMDQ44ZGRkWGRFFClkZGQ8Fl5kZFpiZGRkLztiZGRkQ1IrKDxBRhoQPWRkMRgbZGRfZGRkRjA0ZGRUJw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770838887\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dxmz2GjVqWvhnftuIMSZPIhpVQ2nI1XMx98OvdQnfVg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844577,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:17.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:18'),
(2029, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:17.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:18'),
(2030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:18.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:18'),
(2031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:18.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:19'),
(2032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:18.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:19'),
(2033, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:18.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:19'),
(2034, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:32.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:32'),
(2035, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:32.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:32'),
(2036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5BDBDF63F445926087E191E7AB1F8E3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844592,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:32.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:32'),
(2037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5BDBDF63F445926087E191E7AB1F8E3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844592,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:32.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:32'),
(2038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:33.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:33'),
(2039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:33.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:33'),
(2040, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5BDBDF63F445926087E191E7AB1F8E3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844593643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:33.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:33'),
(2041, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5BDBDF63F445926087E191E7AB1F8E3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844593643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:33.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:33'),
(2042, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5BDBDF63F445926087E191E7AB1F8E3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844609206,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:49.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:49'),
(2043, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5BDBDF63F445926087E191E7AB1F8E3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844609206,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:49.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:49'),
(2044, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:51.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:51'),
(2045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A59C49A41F0FBD7FF824DF2FFC987017\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oRBFZeg1A6waNyT1rO3BMoP1KX3snT7xzbps1E76yuU=\",\"fileLength\":\"37394\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"voXDjDuylSrQyH0TRUgMKzVhVCxGjMoaihRWXGo9FHw=\",\"fileEncSha256\":\"VYZJ8qO93El1kFBzRUJU0xt0CKQFEMJUpCJScxf37d4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844595\",\"waveform\":\"ABIfLyJQRiszM0lNTiZVCyhCUVVOAgA0R1RQUikuEjwAG1FVQztJUy9RTxdSUwAAAA8YKDoKCktPG0kHFwEJSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:51.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:51'),
(2046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:51.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:51'),
(2047, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A59C49A41F0FBD7FF824DF2FFC987017\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oRBFZeg1A6waNyT1rO3BMoP1KX3snT7xzbps1E76yuU=\",\"fileLength\":\"37394\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"voXDjDuylSrQyH0TRUgMKzVhVCxGjMoaihRWXGo9FHw=\",\"fileEncSha256\":\"VYZJ8qO93El1kFBzRUJU0xt0CKQFEMJUpCJScxf37d4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844595\",\"waveform\":\"ABIfLyJQRiszM0lNTiZVCyhCUVVOAgA0R1RQUikuEjwAG1FVQztJUy9RTxdSUwAAAA8YKDoKCktPG0kHFwEJSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:51.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:52'),
(2048, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844612076,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:52.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:52'),
(2049, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844612076,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:52.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:52'),
(2050, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:52.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:52'),
(2051, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:52.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:52'),
(2052, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770844614776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:54.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:54'),
(2053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770844614776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:54.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:54'),
(2054, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:58.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:58');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2055, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A52240190D71CD4FC4A2849BEF2CF9C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Baixa o app donwloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844618,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:58.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:58'),
(2056, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:58.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:58'),
(2057, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A52240190D71CD4FC4A2849BEF2CF9C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Baixa o app donwloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844618,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:58.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:58'),
(2058, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A52240190D71CD4FC4A2849BEF2CF9C6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844619106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:59.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:59'),
(2059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A52240190D71CD4FC4A2849BEF2CF9C6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844619106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:59.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:59'),
(2060, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:59.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:16:59'),
(2061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:16:59.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:16:59'),
(2062, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:01.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:01'),
(2063, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5A6E415E2B4A87AB045AB7F2B49F196\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Na playstore\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844621,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:01.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:01'),
(2064, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:01.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:01'),
(2065, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5A6E415E2B4A87AB045AB7F2B49F196\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Na playstore\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844621,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:01.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:01'),
(2066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5A6E415E2B4A87AB045AB7F2B49F196\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844621804,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:01.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:01'),
(2067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5A6E415E2B4A87AB045AB7F2B49F196\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844621804,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:01.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:02'),
(2068, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:02.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:02'),
(2069, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:02.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:02'),
(2070, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5872D236124F1F1190ACCEFB0614951\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Digita\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844628,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:08'),
(2071, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:08'),
(2072, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5872D236124F1F1190ACCEFB0614951\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Digita\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844628,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:08'),
(2073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:08'),
(2074, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5872D236124F1F1190ACCEFB0614951\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844628689,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:08'),
(2075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:09'),
(2076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:09'),
(2077, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5872D236124F1F1190ACCEFB0614951\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844628689,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:08.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:09'),
(2078, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store1.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:12.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:12'),
(2079, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:12.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:12'),
(2080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:12.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:12'),
(2081, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store1.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:12.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:12'),
(2082, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844632764,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:12.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:12'),
(2083, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:13.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:13'),
(2084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:13.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:13'),
(2085, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844632764,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:12.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:13'),
(2086, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A526860B0FDB21F79E40071524CD018B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Baixa o último app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844636,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:16'),
(2087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:16'),
(2088, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:16'),
(2089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A526860B0FDB21F79E40071524CD018B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Baixa o último app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844636,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:16'),
(2090, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A526860B0FDB21F79E40071524CD018B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844636704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:16'),
(2091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:17'),
(2092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:17'),
(2093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A526860B0FDB21F79E40071524CD018B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844636704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:16.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:17'),
(2094, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:32.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:32'),
(2095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844652,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:32.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:32'),
(2096, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"185581913018541@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:32.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:32'),
(2097, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"185581913018541@lid\",\"fromMe\":true,\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770844652,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:32.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:32'),
(2098, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:33.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:33'),
(2099, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844653249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:33.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:33'),
(2100, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844653264,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:33.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:33'),
(2101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"185581913018541@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:33.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:33'),
(2102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844653249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:33.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:33'),
(2103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770844653264,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:33.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:34'),
(2104, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC5A0560DEA0772ABCFEB3DFCE72E4E6\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586208162_1259596846051294_240590838309717190_n.enc?ccb=11-4&oh=01_Q5Aa3wHlwkOxf3LV4b9NBsVPK7oLLfrD9J-_VRiQdxIUsj8zNQ&oe=69B44D49&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"EMZwe6eSpEstljQeIu0untiYWoa3ZTi0IPfYEZkxccM=\",\"fileLength\":\"43582\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"LABEjCKFeq7sy1ZZTBq9rlNhPO\\/T76\\/0aI54QLYJiag=\",\"fileEncSha256\":\"M4mtrcy6\\/Dub6uoccnB13wJlBRIkW7Ld8Vbiz3fcVbs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586208162_1259596846051294_240590838309717190_n.enc?ccb=11-4&oh=01_Q5Aa3wHlwkOxf3LV4b9NBsVPK7oLLfrD9J-_VRiQdxIUsj8zNQ&oe=69B44D49&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844644\",\"contextInfo\":{\"stanzaId\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oRBFZeg1A6waNyT1rO3BMoP1KX3snT7xzbps1E76yuU=\",\"fileLength\":\"37394\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"voXDjDuylSrQyH0TRUgMKzVhVCxGjMoaihRWXGo9FHw=\",\"fileEncSha256\":\"VYZJ8qO93El1kFBzRUJU0xt0CKQFEMJUpCJScxf37d4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844595\",\"waveform\":\"ABIfLyJQRiszM0lNTiZVCyhCUVVOAgA0R1RQUikuEjwAG1FVQztJUy9RTxdSUwAAAA8YKDoKCktPG0kHFwEJSg==\"}}},\"waveform\":\"AAAAAEkLL0FGQz1IN0cAAD9CQi8+BwAPOjJDAABBRUQcPAA\\/Q0IDRUE8DQAAAAAAHEAAPj42OTweOQAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"s4mAVzzC57hvWOQTgeRmyEdsCoyxdCoUREtfBoZYACc=\"}},\"contextInfo\":{\"stanzaId\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oRBFZeg1A6waNyT1rO3BMoP1KX3snT7xzbps1E76yuU=\",\"fileLength\":\"37394\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"voXDjDuylSrQyH0TRUgMKzVhVCxGjMoaihRWXGo9FHw=\",\"fileEncSha256\":\"VYZJ8qO93El1kFBzRUJU0xt0CKQFEMJUpCJScxf37d4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844595\",\"waveform\":\"ABIfLyJQRiszM0lNTiZVCyhCUVVOAgA0R1RQUikuEjwAG1FVQztJUy9RTxdSUwAAAA8YKDoKCktPG0kHFwEJSg==\"}}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844664,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:44.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:45'),
(2105, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC5A0560DEA0772ABCFEB3DFCE72E4E6\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586208162_1259596846051294_240590838309717190_n.enc?ccb=11-4&oh=01_Q5Aa3wHlwkOxf3LV4b9NBsVPK7oLLfrD9J-_VRiQdxIUsj8zNQ&oe=69B44D49&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"EMZwe6eSpEstljQeIu0untiYWoa3ZTi0IPfYEZkxccM=\",\"fileLength\":\"43582\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"LABEjCKFeq7sy1ZZTBq9rlNhPO\\/T76\\/0aI54QLYJiag=\",\"fileEncSha256\":\"M4mtrcy6\\/Dub6uoccnB13wJlBRIkW7Ld8Vbiz3fcVbs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586208162_1259596846051294_240590838309717190_n.enc?ccb=11-4&oh=01_Q5Aa3wHlwkOxf3LV4b9NBsVPK7oLLfrD9J-_VRiQdxIUsj8zNQ&oe=69B44D49&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844644\",\"contextInfo\":{\"stanzaId\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oRBFZeg1A6waNyT1rO3BMoP1KX3snT7xzbps1E76yuU=\",\"fileLength\":\"37394\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"voXDjDuylSrQyH0TRUgMKzVhVCxGjMoaihRWXGo9FHw=\",\"fileEncSha256\":\"VYZJ8qO93El1kFBzRUJU0xt0CKQFEMJUpCJScxf37d4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844595\",\"waveform\":\"ABIfLyJQRiszM0lNTiZVCyhCUVVOAgA0R1RQUikuEjwAG1FVQztJUy9RTxdSUwAAAA8YKDoKCktPG0kHFwEJSg==\"}}},\"waveform\":\"AAAAAEkLL0FGQz1IN0cAAD9CQi8+BwAPOjJDAABBRUQcPAA\\/Q0IDRUE8DQAAAAAAHEAAPj42OTweOQAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"s4mAVzzC57hvWOQTgeRmyEdsCoyxdCoUREtfBoZYACc=\"}},\"contextInfo\":{\"stanzaId\":\"A59C49A41F0FBD7FF824DF2FFC987017\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oRBFZeg1A6waNyT1rO3BMoP1KX3snT7xzbps1E76yuU=\",\"fileLength\":\"37394\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"voXDjDuylSrQyH0TRUgMKzVhVCxGjMoaihRWXGo9FHw=\",\"fileEncSha256\":\"VYZJ8qO93El1kFBzRUJU0xt0CKQFEMJUpCJScxf37d4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586601389_1246306764114818_2416749867265165045_n.enc?ccb=11-4&oh=01_Q5Aa3wGWOmJNEEv3YO-mhkCjsDhoI2LvitdFSsjrLHrlKD32DA&oe=69B4499A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844595\",\"waveform\":\"ABIfLyJQRiszM0lNTiZVCyhCUVVOAgA0R1RQUikuEjwAG1FVQztJUy9RTxdSUwAAAA8YKDoKCktPG0kHFwEJSg==\"}}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844664,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:44.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:45'),
(2106, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:44.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:45'),
(2107, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:45.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:45'),
(2108, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:44.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:45'),
(2109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:45.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:46'),
(2110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:45.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:17:46'),
(2111, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:17:45.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:17:46'),
(2112, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844681260,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:01.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:01'),
(2113, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"185581913018541@lid\",\"id\":\"A56EE9D20635D4D44F2DEE5CEDBCDF25\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770844681260,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:01.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:01'),
(2114, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:07'),
(2115, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4540E96D7CFC443B20\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Valeu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5b8oa8uBZkAmVV5Rsm\\/n34JUvzXuscEz2E\\/wCU7deh8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770844687,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:07'),
(2116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:07'),
(2117, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4540E96D7CFC443B20\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Valeu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5b8oa8uBZkAmVV5Rsm\\/n34JUvzXuscEz2E\\/wCU7deh8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770844687,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:07'),
(2118, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:07'),
(2119, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:08'),
(2120, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:08'),
(2121, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:08'),
(2122, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:08'),
(2123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:07.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:08'),
(2124, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:09'),
(2125, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:09'),
(2126, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC1A787C4DE803139070977B533554C8\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587534180_2174832249987814_8473855690990492111_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCRvkEoOaR7yFXu80aRzqnXJ217UTtMXPBS13uoidvA&oe=69B4731D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ukQl9PFn7QlN9s3qldzik2Na6ZjHjxlR9Ip5mxIl6\\/M=\",\"fileLength\":\"15759\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"x2yTEqrMglZcA70ca\\/GmIf5qKurez\\/kTwEJpyJjhDyA=\",\"fileEncSha256\":\"oqOoRoWj2zuKJx0ZV4JQldBCrYlxOqzgkC8tpTx38Bs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587534180_2174832249987814_8473855690990492111_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCRvkEoOaR7yFXu80aRzqnXJ217UTtMXPBS13uoidvA&oe=69B4731D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844682\",\"contextInfo\":{\"stanzaId\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Store1.voidplay.com.br\"}},\"waveform\":\"AAAAAAAAAAAAAAAAADlJQShHRj4jREAAOy5IOy5KQR5EJkhGRjkPADBFRDNHQEE\\/PUhIJwAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CWOX1gGR42lXKPSPWyz95JeBP2K\\/sKEbHhJwQo6eqaQ=\"}},\"contextInfo\":{\"stanzaId\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Store1.voidplay.com.br\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844688,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2127, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC1A787C4DE803139070977B533554C8\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587534180_2174832249987814_8473855690990492111_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCRvkEoOaR7yFXu80aRzqnXJ217UTtMXPBS13uoidvA&oe=69B4731D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ukQl9PFn7QlN9s3qldzik2Na6ZjHjxlR9Ip5mxIl6\\/M=\",\"fileLength\":\"15759\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"x2yTEqrMglZcA70ca\\/GmIf5qKurez\\/kTwEJpyJjhDyA=\",\"fileEncSha256\":\"oqOoRoWj2zuKJx0ZV4JQldBCrYlxOqzgkC8tpTx38Bs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587534180_2174832249987814_8473855690990492111_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCRvkEoOaR7yFXu80aRzqnXJ217UTtMXPBS13uoidvA&oe=69B4731D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770844682\",\"contextInfo\":{\"stanzaId\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Store1.voidplay.com.br\"}},\"waveform\":\"AAAAAAAAAAAAAAAAADlJQShHRj4jREAAOy5IOy5KQR5EJkhGRjkPADBFRDNHQEE\\/PUhIJwAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CWOX1gGR42lXKPSPWyz95JeBP2K\\/sKEbHhJwQo6eqaQ=\"}},\"contextInfo\":{\"stanzaId\":\"A54627EE1BB8ECD3FE99F4DD155B6A35\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Store1.voidplay.com.br\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770844688,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:09'),
(2128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:18:09'),
(2129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:18:08.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:18:10'),
(2130, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:26:59'),
(2131, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEE45B1598CA967B940\"},\"pushName\":\"Anderson \",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634057081_4231521983843374_8103513532267531719_n.enc?ccb=11-4&oh=01_Q5Aa3wHMuiQRJhqn4WnaDexzk8UTitzmrxJRMovKQDTYm-caYw&oe=69B46862&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8aF\\/tjAbhm3icIrBVZwDmcTZiFkMvBrXwwCJojpUris=\",\"fileLength\":\"136015\",\"height\":1600,\"width\":900,\"mediaKey\":\"1it1cHmm8F\\/60YiGIeUClomMxKHR16+QHDAWrFwRnA4=\",\"fileEncSha256\":\"rHW3VjuuAxeUpPyJNnrVvV7UOHZtIViLZhtnVe1BB2k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634057081_4231521983843374_8103513532267531719_n.enc?ccb=11-4&oh=01_Q5Aa3wHMuiQRJhqn4WnaDexzk8UTitzmrxJRMovKQDTYm-caYw&oe=69B46862&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770845218\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAQBAgMF\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAECAwT\\/2gAMAwEAAhADEAAAAOa2mw0\\/FJTioSRTXNqgA0nOcwPtY4ZtM2W0k3rhk0yLgc11BgrsVXmlMTmi9srCg1BcdrFiNnaaZZbRnpbSFbXi8ggQu4EaM4hx98VDr44A0yoAH\\/\\/EAB4RAAICAgIDAAAAAAAAAAAAAAABAhEQIQOBEhQy\\/9oACAECAQE\\/ABtFotGs9COsbNmzZKVKz2ER5PIssn8sUiCtXn\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAREhAgMQEgQxQWGB\\/9oACAEDAQE\\/AIIZZZYiNo9n3aiiijFTQumb8mWjxOKIRh3FioNRxlG\\/\\/8QALBAAAgEDAQQKAwEAAAAAAAAAAQIAAwQRIRIxQUIFExQiQ1FhcYGRIzNSU\\/\\/aAAgBAQABPwDhLRFYHMNmqsBoSRnfKlqtPBZRrOqonwxDa0jwxOyU\\/WNaUgeMNrR8jMy2qlQQFJzFrHmVo1ZSNVf6naEHK0Fyn8NO0r\\/m\\/wBR7lc\\/rf6naAfDf6i42td06PYbRA09YVTJzVzGqMO7nQTjug9pkxiZrASJaCq1QimcDiY9GuvOD7TFccYrXA5hB15H7QPiMLk+IDGo1z4kShV41jAZ0fVVHYNjXznXo40VRKl3SKldlQfOCoh5xGr00OCw+ILql\\/UNxRxkODO10x5wAiUKJqsADiCyUYyzfEaypHcX+oljS2e8jkndiVLFV3gj3iWtIDUEwWtLgCIttSHLn3jDWWTrTYFzgQ36lQuRgccR+ksEhTnPHEbpHcVLEiNflz3wxjXmvdQ4gvTj9esW6q\\/xFTaGJZ0FqVQrDSPbUl3LDRpjlE6tNoZAAho2xJBq4+Iq2oIySRKrUdr8W71i1FHGDCHTWWQY6rgGOKnFhCjnni2lSrnYLHEbo+oBk5A9TFsRzVFHzOy0xTLba5HDzgRfIT\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"80wFRlwgUlJPNA==\",\"firstScanLength\":12111,\"scansSidecar\":\"80wFRlwgUlJPNPsReFd8YJKnhmw8wzlVZOEXCnWvKd1WJNg75eerXw==\",\"scanLengths\":[12111,43426,23384,57092],\"midQualityFileSha256\":\"EfeCjZvci0C8rT+GHMJv7zsKuckM8AoNviJvGU4KB1w=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pI4wh3jwRjmuLThRfYBUZb5Y4QXfxiBBFNCLZgeKVhQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770845219,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:26:59'),
(2132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:26:59'),
(2133, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:26:59'),
(2134, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:26:59'),
(2135, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEE45B1598CA967B940\"},\"pushName\":\"Anderson \",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634057081_4231521983843374_8103513532267531719_n.enc?ccb=11-4&oh=01_Q5Aa3wHMuiQRJhqn4WnaDexzk8UTitzmrxJRMovKQDTYm-caYw&oe=69B46862&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8aF\\/tjAbhm3icIrBVZwDmcTZiFkMvBrXwwCJojpUris=\",\"fileLength\":\"136015\",\"height\":1600,\"width\":900,\"mediaKey\":\"1it1cHmm8F\\/60YiGIeUClomMxKHR16+QHDAWrFwRnA4=\",\"fileEncSha256\":\"rHW3VjuuAxeUpPyJNnrVvV7UOHZtIViLZhtnVe1BB2k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634057081_4231521983843374_8103513532267531719_n.enc?ccb=11-4&oh=01_Q5Aa3wHMuiQRJhqn4WnaDexzk8UTitzmrxJRMovKQDTYm-caYw&oe=69B46862&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770845218\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAQBAgMF\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAECAwT\\/2gAMAwEAAhADEAAAAOa2mw0\\/FJTioSRTXNqgA0nOcwPtY4ZtM2W0k3rhk0yLgc11BgrsVXmlMTmi9srCg1BcdrFiNnaaZZbRnpbSFbXi8ggQu4EaM4hx98VDr44A0yoAH\\/\\/EAB4RAAICAgIDAAAAAAAAAAAAAAABAhEQIQOBEhQy\\/9oACAECAQE\\/ABtFotGs9COsbNmzZKVKz2ER5PIssn8sUiCtXn\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAREhAgMQEgQxQWGB\\/9oACAEDAQE\\/AIIZZZYiNo9n3aiiijFTQumb8mWjxOKIRh3FioNRxlG\\/\\/8QALBAAAgEDAQQKAwEAAAAAAAAAAQIAAwQRIRIxQUIFExQiQ1FhcYGRIzNSU\\/\\/aAAgBAQABPwDhLRFYHMNmqsBoSRnfKlqtPBZRrOqonwxDa0jwxOyU\\/WNaUgeMNrR8jMy2qlQQFJzFrHmVo1ZSNVf6naEHK0Fyn8NO0r\\/m\\/wBR7lc\\/rf6naAfDf6i42td06PYbRA09YVTJzVzGqMO7nQTjug9pkxiZrASJaCq1QimcDiY9GuvOD7TFccYrXA5hB15H7QPiMLk+IDGo1z4kShV41jAZ0fVVHYNjXznXo40VRKl3SKldlQfOCoh5xGr00OCw+ILql\\/UNxRxkODO10x5wAiUKJqsADiCyUYyzfEaypHcX+oljS2e8jkndiVLFV3gj3iWtIDUEwWtLgCIttSHLn3jDWWTrTYFzgQ36lQuRgccR+ksEhTnPHEbpHcVLEiNflz3wxjXmvdQ4gvTj9esW6q\\/xFTaGJZ0FqVQrDSPbUl3LDRpjlE6tNoZAAho2xJBq4+Iq2oIySRKrUdr8W71i1FHGDCHTWWQY6rgGOKnFhCjnni2lSrnYLHEbo+oBk5A9TFsRzVFHzOy0xTLba5HDzgRfIT\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"80wFRlwgUlJPNA==\",\"firstScanLength\":12111,\"scansSidecar\":\"80wFRlwgUlJPNPsReFd8YJKnhmw8wzlVZOEXCnWvKd1WJNg75eerXw==\",\"scanLengths\":[12111,43426,23384,57092],\"midQualityFileSha256\":\"EfeCjZvci0C8rT+GHMJv7zsKuckM8AoNviJvGU4KB1w=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pI4wh3jwRjmuLThRfYBUZb5Y4QXfxiBBFNCLZgeKVhQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770845219,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:26:59'),
(2136, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:27:00'),
(2137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:26:59.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:27:00'),
(2138, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:27:09'),
(2139, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8ED4F5E32FAD753429\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Essa pegada aqui né\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8fdDw3mq1s+GKkaw8vNJuFlAfvQAP9sKu1YgeZrtDuA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770845229,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:27:09'),
(2140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:27:09'),
(2141, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8ED4F5E32FAD753429\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Essa pegada aqui né\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8fdDw3mq1s+GKkaw8vNJuFlAfvQAP9sKu1YgeZrtDuA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770845229,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:27:09'),
(2142, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:27:09'),
(2143, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:27:10'),
(2144, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:27:10'),
(2145, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:27:09.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:27:10'),
(2146, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"AC61DCBAEBA7247EE56076DDC9D2928A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171362,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.362Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:51'),
(2147, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"AC00AEF6B08A08A755A0CB953136B820\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171370,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.371Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:51'),
(2148, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"ACC01F65F15134EF6C8771F499C90FAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171377,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.378Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:51'),
(2149, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"AC17E31631A8F46A07DCDFA863D655EA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171384,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.384Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:51'),
(2150, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"AC2F77E2E181F4B3EC42AF559DE37850\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171395,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.396Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:51'),
(2151, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"AC8AA0DDB01EA281659EA4D87F4F03DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171390,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.390Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:51'),
(2152, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:25@lid\",\"id\":\"ACE834BBFC43CCBB69B55616D3BE55A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770846171400,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T18:42:51.400Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:42:52'),
(2153, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:03.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:04'),
(2154, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3E4738B0BD5FB2FAFA\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Achei aqui o certo  mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jwM9j02JYA8Enl5yTIjegPU5506jJBhl1QVw\\/bF5A+o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770846303,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:03.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:04'),
(2155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:03.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:04'),
(2156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3E4738B0BD5FB2FAFA\"},\"pushName\":\"Anderson \",\"message\":{\"conversation\":\"Achei aqui o certo  mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770844623\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jwM9j02JYA8Enl5yTIjegPU5506jJBhl1QVw\\/bF5A+o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770846303,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:03.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:04'),
(2157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:04.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:04'),
(2158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:04.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:04'),
(2159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511915469555@s.whatsapp.net\",\"pushName\":\"Anderson  Araujo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:04.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:04'),
(2160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:04.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:04'),
(2161, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEE45B1598CA967B940\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:13.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:13'),
(2162, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8ED4F5E32FAD753429\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:13.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:13'),
(2163, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:13.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:13'),
(2164, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEE45B1598CA967B940\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:13.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:13'),
(2165, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511915469555@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8ED4F5E32FAD753429\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:13.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:14'),
(2166, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:14.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:45:14'),
(2167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:14.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:14'),
(2168, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511915469555@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473406201_1086450626591320_784685325286125055_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJEBGWefaAMBXL0HT8HFpZVWQ8Lvr1uUB9jN8d5gLKnA&oe=699A11AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:45:13.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:45:14'),
(2169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:49.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:49'),
(2170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:50.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:50'),
(2171, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:50.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:50'),
(2172, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC26A6EF9090C5BA57D65BB8F105E506\"},\"pushName\":\"✌️\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634146617_1439675157837410_576772148828729705_n.enc?ccb=11-4&oh=01_Q5Aa3wEXBOu0OJ3N06G16Sq-2NgCFD8zqJ19v72XCl56IVNcHQ&oe=69B45349&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"F2Afg+JSChwsJS3AysjtmYGJmsYC0l3FzM85TVHMueE=\",\"fileLength\":\"71977\",\"height\":720,\"width\":1280,\"mediaKey\":\"8ZbZXEAUyiVvj3EvtG8jH+y5e2vtxrMOtNAFGVm867w=\",\"fileEncSha256\":\"t4zVJ3GTBPqHyEfv5v1LtEz5LDKjN5MDw0Lcmeb89yc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634146617_1439675157837410_576772148828729705_n.enc?ccb=11-4&oh=01_Q5Aa3wEXBOu0OJ3N06G16Sq-2NgCFD8zqJ19v72XCl56IVNcHQ&oe=69B45349&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770846467\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAEBQABAwIBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAABaokhOCMtZxpoKIjhO6FeeuYb53h1hXeVU5wcKW3PsrGkG+ZEsqScm0kf\\/EACkQAAIBAwIFAgcAAAAAAAAAAAECAAMEESEyEBITMVEFIhUzQUJSU3H\\/2gAIAQEAAT8ALALC48wuvmFxrCwxM68EUcq6fSEZZRGp0wB7YUXO2FD+MtBb+7rCXwpo4NPbE1Ii7REBaognQqZ3iNQrDXUmVBUTAfIiAE6S6TnKKIqlHAg7CU35HD+DD6on658TeV70XBBfJIiXKL2zDVFR8qD21nNmovAdod3AcLX74Pmj+wz\\/xAAcEQACAgIDAAAAAAAAAAAAAAAAAQIREBIgIWH\\/2gAIAQIBAT8AUbNPRxEQqixvrC4f\\/8QAIBEAAgIABgMAAAAAAAAAAAAAAAIBEQMQEhMhMUFhcf\\/aAAgBAwEBPwBmo3PRD3XRJia74JX6KtNHZJJ5z\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"\\/DMfosxWJ4VLBBHbaHoXDQtAjYGljPCDdO0DS2+wshA2T1ojrWMvEA==\",\"scanLengths\":[8397,23692,12911,26977],\"midQualityFileSha256\":\"dpiXzmQBspKQ5RCuiq0nJk8Nac6rL+fJQJr4GXrnAE8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"owix\\/ABml0mXTEznyDMynJzWoJSMUzH0ut73Jxa0O3k=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770846469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:49.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:55'),
(2173, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:49.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:55'),
(2174, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:49.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:55'),
(2175, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:49.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:55'),
(2176, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC26A6EF9090C5BA57D65BB8F105E506\"},\"pushName\":\"✌️\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634146617_1439675157837410_576772148828729705_n.enc?ccb=11-4&oh=01_Q5Aa3wEXBOu0OJ3N06G16Sq-2NgCFD8zqJ19v72XCl56IVNcHQ&oe=69B45349&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"F2Afg+JSChwsJS3AysjtmYGJmsYC0l3FzM85TVHMueE=\",\"fileLength\":\"71977\",\"height\":720,\"width\":1280,\"mediaKey\":\"8ZbZXEAUyiVvj3EvtG8jH+y5e2vtxrMOtNAFGVm867w=\",\"fileEncSha256\":\"t4zVJ3GTBPqHyEfv5v1LtEz5LDKjN5MDw0Lcmeb89yc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634146617_1439675157837410_576772148828729705_n.enc?ccb=11-4&oh=01_Q5Aa3wEXBOu0OJ3N06G16Sq-2NgCFD8zqJ19v72XCl56IVNcHQ&oe=69B45349&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770846467\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAEBQABAwIBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAABaokhOCMtZxpoKIjhO6FeeuYb53h1hXeVU5wcKW3PsrGkG+ZEsqScm0kf\\/EACkQAAIBAwIFAgcAAAAAAAAAAAECAAMEESEyEBITMVEFIhUzQUJSU3H\\/2gAIAQEAAT8ALALC48wuvmFxrCwxM68EUcq6fSEZZRGp0wB7YUXO2FD+MtBb+7rCXwpo4NPbE1Ii7REBaognQqZ3iNQrDXUmVBUTAfIiAE6S6TnKKIqlHAg7CU35HD+DD6on658TeV70XBBfJIiXKL2zDVFR8qD21nNmovAdod3AcLX74Pmj+wz\\/xAAcEQACAgIDAAAAAAAAAAAAAAAAAQIREBIgIWH\\/2gAIAQIBAT8AUbNPRxEQqixvrC4f\\/8QAIBEAAgIABgMAAAAAAAAAAAAAAAIBEQMQEhMhMUFhcf\\/aAAgBAwEBPwBmo3PRD3XRJia74JX6KtNHZJJ5z\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"\\/DMfosxWJ4VLBBHbaHoXDQtAjYGljPCDdO0DS2+wshA2T1ojrWMvEA==\",\"scanLengths\":[8397,23692,12911,26977],\"midQualityFileSha256\":\"dpiXzmQBspKQ5RCuiq0nJk8Nac6rL+fJQJr4GXrnAE8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"owix\\/ABml0mXTEznyDMynJzWoJSMUzH0ut73Jxa0O3k=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770846469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:49.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:55'),
(2177, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC08011CB365E8D6FB82671750BEBD19\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/541677899_1687012809400685_7688163406712751241_n.enc?ccb=11-4&oh=01_Q5Aa3wGb-5iRST3aPKHglA9VIxVRrET-LR8KONATYbVoYLK_dQ&oe=69B45A73&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uT2Zpg+DB8jsqxHZ\\/++jgOYlaUxXY6AhoBQf1btQLCw=\",\"fileLength\":\"8758\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"9QXfLZIQqBLsncQe0FX\\/symPmR9NG+sYbZpqzCxnBDg=\",\"fileEncSha256\":\"UvrNw\\/OUlCtFJhE+0rsNVsQB\\/O9LFGwRTW+FJ47Fk9Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/541677899_1687012809400685_7688163406712751241_n.enc?ccb=11-4&oh=01_Q5Aa3wGb-5iRST3aPKHglA9VIxVRrET-LR8KONATYbVoYLK_dQ&oe=69B45A73&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770846473\",\"waveform\":\"AAAAAAAAAAAAAAAAAAACAQADPklKNklJSklKRklIQzoWCAAAAw4NBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEGDA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7LgzU92HaBgwGE9eYc3jqVkaUw931WH0Ejxgc7jqieM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770846476,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:56.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:56'),
(2178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:56.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:56'),
(2179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC08011CB365E8D6FB82671750BEBD19\"},\"pushName\":\"✌️\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/541677899_1687012809400685_7688163406712751241_n.enc?ccb=11-4&oh=01_Q5Aa3wGb-5iRST3aPKHglA9VIxVRrET-LR8KONATYbVoYLK_dQ&oe=69B45A73&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uT2Zpg+DB8jsqxHZ\\/++jgOYlaUxXY6AhoBQf1btQLCw=\",\"fileLength\":\"8758\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"9QXfLZIQqBLsncQe0FX\\/symPmR9NG+sYbZpqzCxnBDg=\",\"fileEncSha256\":\"UvrNw\\/OUlCtFJhE+0rsNVsQB\\/O9LFGwRTW+FJ47Fk9Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/541677899_1687012809400685_7688163406712751241_n.enc?ccb=11-4&oh=01_Q5Aa3wGb-5iRST3aPKHglA9VIxVRrET-LR8KONATYbVoYLK_dQ&oe=69B45A73&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770846473\",\"waveform\":\"AAAAAAAAAAAAAAAAAAACAQADPklKNklJSklKRklIQzoWCAAAAw4NBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAEGDA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7LgzU92HaBgwGE9eYc3jqVkaUw931WH0Ejxgc7jqieM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770846476,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:56.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:57'),
(2180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:56.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:57'),
(2181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:57.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:57'),
(2182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:57.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:57'),
(2183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:57.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 18:47:57'),
(2184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T18:47:57.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:47:58'),
(2185, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799845169@s.whatsapp.net\",\"pushName\":\"Will\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"5511960988403@s.whatsapp.net\",\"pushName\":\"Douglas8403 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T18:59:52.410Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:59:52'),
(2186, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799845169@s.whatsapp.net\",\"pushName\":\"Will\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/610254253_2083548552422313_1406173028926613750_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjvQW8K-W0ASWbm_EsNsrvQuIo2AnavYWj6u03w81-eg&oe=699A2443&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"5511960988403@s.whatsapp.net\",\"pushName\":\"Douglas8403 CLT Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620632695_1212613323778280_1612989102620675374_n.jpg?ccb=11-4&oh=01_Q5Aa3wHC0MypshwglsIjeZ31jsmuTeuh42r8l-BK6D9bmLBLog&oe=699A1873&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T18:59:52.673Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 18:59:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:03:59'),
(2188, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":false,\"id\":\"AC3AA1EF9288976EFEBE1AFEFBF91FCC\"},\"pushName\":\"Nelson da silva junior\",\"message\":{\"extendedTextMessage\":{\"text\":\"BoA noite caiu\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5DE2DA8A27F85638DD15F88D0D554A6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ghC0u\\/STouLlKVx+zZ13swcK4uswtRwJ1CmZTZWDlDQ=\",\"fileLength\":\"130993\",\"height\":743,\"width\":650,\"mediaKey\":\"fRhg9ZjkA+tKcRfKYeCkeeCFZ2Hh3oLzFxwx8WdtmVQ=\",\"fileEncSha256\":\"zSpN90kJP2zkW\\/Rej9MkJ8bxjO4GGnOx8XRu+GMa3z4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&_nc_hot=1770766824\",\"mediaKeyTimestamp\":\"1770765437\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAPwMBIgACEQEDEQH\\/xAAtAAADAQEAAAAAAAAAAAAAAAABAgMABAEBAQEBAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAAalzlxznoQ52pidLuQdaZ7LO+OYvQFBQ4mRu8XwEiuhtes6EijykrgNNhaCiwptNztom+1PTZP\\/\\/EACcQAAIBAwMDBQADAAAAAAAAAAABAgMRMQQhMhJBURATIiNxYoGC\\/9oACAEBAAE\\/AIaamp2JaempYFpqTeCWnpIVCn4I6ek3glp6aeChpaaqqYl8+DP8sWeLJv5YL7YE91sPfsUuS2E315Y013Em+5JJPJZEUr59KXNEXD3MHVDDRFwxYmqJ9fggqL83JOHYpdF15I29w2cm0Rtckln0gkyWSlyRGP2CVhLca3ZYSsxlLmhJdXMeeQv0Zb+Yv0la5Q5oXPA08tEU\\/BK6yj+iN+yJx7lFfJMUp+4XmkKUydWb2sOUvBCpNO1ic5NYKUnsrH\\/\\/xAAaEQADAQEBAQAAAAAAAAAAAAAAAVESEQIw\\/9oACAECAQE\\/ANOmnTTpp064acZpxibj+PFDKhxQXlQ\\/\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAECElEjIP\\/aAAgBAwEBPwDxyORyOXmksKSwpLCssKLWUWsotZRaz\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":2,\"isForwarded\":true},\"thumbnailDirectPath\":\"\\/v\\/t62.35850-24\\/579306660_1873762773324817_6643602641733508353_n.enc?ccb=11-4&oh=01_Q5Aa3wFUyauohXlUKA-Q43IiaYbdFnvFNymwyXwibKXH8tcQ_Q&oe=69B34CB7&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EuCRbPkCK5r0gZNrkSMzs15rEO\\/ZKtmdqMPNvlgZ6ww=\",\"thumbnailEncSha256\":\"7D4MHd8yA4jVvf3KIQHtl37DCbGeL3tUOPh9jB3lFVA=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kD9EgzmvHTZslWvyDNpJCU+ya2xRTIPFYvD0RQfcNZ0=\"}},\"contextInfo\":{\"stanzaId\":\"A5DE2DA8A27F85638DD15F88D0D554A6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ghC0u\\/STouLlKVx+zZ13swcK4uswtRwJ1CmZTZWDlDQ=\",\"fileLength\":\"130993\",\"height\":743,\"width\":650,\"mediaKey\":\"fRhg9ZjkA+tKcRfKYeCkeeCFZ2Hh3oLzFxwx8WdtmVQ=\",\"fileEncSha256\":\"zSpN90kJP2zkW\\/Rej9MkJ8bxjO4GGnOx8XRu+GMa3z4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&_nc_hot=1770766824\",\"mediaKeyTimestamp\":\"1770765437\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAPwMBIgACEQEDEQH\\/xAAtAAADAQEAAAAAAAAAAAAAAAABAgMABAEBAQEBAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAAalzlxznoQ52pidLuQdaZ7LO+OYvQFBQ4mRu8XwEiuhtes6EijykrgNNhaCiwptNztom+1PTZP\\/\\/EACcQAAIBAwMDBQADAAAAAAAAAAABAgMRMQQhMhJBURATIiNxYoGC\\/9oACAEBAAE\\/AIaamp2JaempYFpqTeCWnpIVCn4I6ek3glp6aeChpaaqqYl8+DP8sWeLJv5YL7YE91sPfsUuS2E315Y013Em+5JJPJZEUr59KXNEXD3MHVDDRFwxYmqJ9fggqL83JOHYpdF15I29w2cm0Rtckln0gkyWSlyRGP2CVhLca3ZYSsxlLmhJdXMeeQv0Zb+Yv0la5Q5oXPA08tEU\\/BK6yj+iN+yJx7lFfJMUp+4XmkKUydWb2sOUvBCpNO1ic5NYKUnsrH\\/\\/xAAaEQADAQEBAQAAAAAAAAAAAAAAAVESEQIw\\/9oACAECAQE\\/ANOmnTTpp064acZpxibj+PFDKhxQXlQ\\/\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAECElEjIP\\/aAAgBAwEBPwDxyORyOXmksKSwpLCssKLWUWsotZRaz\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":2,\"isForwarded\":true},\"thumbnailDirectPath\":\"\\/v\\/t62.35850-24\\/579306660_1873762773324817_6643602641733508353_n.enc?ccb=11-4&oh=01_Q5Aa3wFUyauohXlUKA-Q43IiaYbdFnvFNymwyXwibKXH8tcQ_Q&oe=69B34CB7&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EuCRbPkCK5r0gZNrkSMzs15rEO\\/ZKtmdqMPNvlgZ6ww=\",\"thumbnailEncSha256\":\"7D4MHd8yA4jVvf3KIQHtl37DCbGeL3tUOPh9jB3lFVA=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770847439,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:03:59'),
(2189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:03:59'),
(2190, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:03:59'),
(2191, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":false,\"id\":\"AC3AA1EF9288976EFEBE1AFEFBF91FCC\"},\"pushName\":\"Nelson da silva junior\",\"message\":{\"extendedTextMessage\":{\"text\":\"BoA noite caiu\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5DE2DA8A27F85638DD15F88D0D554A6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ghC0u\\/STouLlKVx+zZ13swcK4uswtRwJ1CmZTZWDlDQ=\",\"fileLength\":\"130993\",\"height\":743,\"width\":650,\"mediaKey\":\"fRhg9ZjkA+tKcRfKYeCkeeCFZ2Hh3oLzFxwx8WdtmVQ=\",\"fileEncSha256\":\"zSpN90kJP2zkW\\/Rej9MkJ8bxjO4GGnOx8XRu+GMa3z4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&_nc_hot=1770766824\",\"mediaKeyTimestamp\":\"1770765437\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAPwMBIgACEQEDEQH\\/xAAtAAADAQEAAAAAAAAAAAAAAAABAgMABAEBAQEBAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAAalzlxznoQ52pidLuQdaZ7LO+OYvQFBQ4mRu8XwEiuhtes6EijykrgNNhaCiwptNztom+1PTZP\\/\\/EACcQAAIBAwMDBQADAAAAAAAAAAABAgMRMQQhMhJBURATIiNxYoGC\\/9oACAEBAAE\\/AIaamp2JaempYFpqTeCWnpIVCn4I6ek3glp6aeChpaaqqYl8+DP8sWeLJv5YL7YE91sPfsUuS2E315Y013Em+5JJPJZEUr59KXNEXD3MHVDDRFwxYmqJ9fggqL83JOHYpdF15I29w2cm0Rtckln0gkyWSlyRGP2CVhLca3ZYSsxlLmhJdXMeeQv0Zb+Yv0la5Q5oXPA08tEU\\/BK6yj+iN+yJx7lFfJMUp+4XmkKUydWb2sOUvBCpNO1ic5NYKUnsrH\\/\\/xAAaEQADAQEBAQAAAAAAAAAAAAAAAVESEQIw\\/9oACAECAQE\\/ANOmnTTpp064acZpxibj+PFDKhxQXlQ\\/\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAECElEjIP\\/aAAgBAwEBPwDxyORyOXmksKSwpLCssKLWUWsotZRaz\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":2,\"isForwarded\":true},\"thumbnailDirectPath\":\"\\/v\\/t62.35850-24\\/579306660_1873762773324817_6643602641733508353_n.enc?ccb=11-4&oh=01_Q5Aa3wFUyauohXlUKA-Q43IiaYbdFnvFNymwyXwibKXH8tcQ_Q&oe=69B34CB7&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EuCRbPkCK5r0gZNrkSMzs15rEO\\/ZKtmdqMPNvlgZ6ww=\",\"thumbnailEncSha256\":\"7D4MHd8yA4jVvf3KIQHtl37DCbGeL3tUOPh9jB3lFVA=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kD9EgzmvHTZslWvyDNpJCU+ya2xRTIPFYvD0RQfcNZ0=\"}},\"contextInfo\":{\"stanzaId\":\"A5DE2DA8A27F85638DD15F88D0D554A6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ghC0u\\/STouLlKVx+zZ13swcK4uswtRwJ1CmZTZWDlDQ=\",\"fileLength\":\"130993\",\"height\":743,\"width\":650,\"mediaKey\":\"fRhg9ZjkA+tKcRfKYeCkeeCFZ2Hh3oLzFxwx8WdtmVQ=\",\"fileEncSha256\":\"zSpN90kJP2zkW\\/Rej9MkJ8bxjO4GGnOx8XRu+GMa3z4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/542857980_3301289846706871_456147310457540602_n.enc?ccb=11-4&oh=01_Q5Aa3wFQ7qrliTeRVdce5iKosBo9zTKFZTzw6xwhRVO1XunGwg&oe=69B3221E&_nc_sid=5e03e0&_nc_hot=1770766824\",\"mediaKeyTimestamp\":\"1770765437\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAPwMBIgACEQEDEQH\\/xAAtAAADAQEAAAAAAAAAAAAAAAABAgMABAEBAQEBAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAAalzlxznoQ52pidLuQdaZ7LO+OYvQFBQ4mRu8XwEiuhtes6EijykrgNNhaCiwptNztom+1PTZP\\/\\/EACcQAAIBAwMDBQADAAAAAAAAAAABAgMRMQQhMhJBURATIiNxYoGC\\/9oACAEBAAE\\/AIaamp2JaempYFpqTeCWnpIVCn4I6ek3glp6aeChpaaqqYl8+DP8sWeLJv5YL7YE91sPfsUuS2E315Y013Em+5JJPJZEUr59KXNEXD3MHVDDRFwxYmqJ9fggqL83JOHYpdF15I29w2cm0Rtckln0gkyWSlyRGP2CVhLca3ZYSsxlLmhJdXMeeQv0Zb+Yv0la5Q5oXPA08tEU\\/BK6yj+iN+yJx7lFfJMUp+4XmkKUydWb2sOUvBCpNO1ic5NYKUnsrH\\/\\/xAAaEQADAQEBAQAAAAAAAAAAAAAAAVESEQIw\\/9oACAECAQE\\/ANOmnTTpp064acZpxibj+PFDKhxQXlQ\\/\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAECElEjIP\\/aAAgBAwEBPwDxyORyOXmksKSwpLCssKLWUWsotZRaz\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":2,\"isForwarded\":true},\"thumbnailDirectPath\":\"\\/v\\/t62.35850-24\\/579306660_1873762773324817_6643602641733508353_n.enc?ccb=11-4&oh=01_Q5Aa3wFUyauohXlUKA-Q43IiaYbdFnvFNymwyXwibKXH8tcQ_Q&oe=69B34CB7&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EuCRbPkCK5r0gZNrkSMzs15rEO\\/ZKtmdqMPNvlgZ6ww=\",\"thumbnailEncSha256\":\"7D4MHd8yA4jVvf3KIQHtl37DCbGeL3tUOPh9jB3lFVA=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770847439,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:03:59'),
(2192, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:04:00'),
(2193, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:04:00'),
(2194, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:03:59.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:04:00'),
(2195, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:34'),
(2196, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC5A7581AA873BA7C955E1C1DD8E041B\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588661985_1624965131970139_7166290346257977562_n.enc?ccb=11-4&oh=01_Q5Aa3wHQYKSa0eGnux50guJWNBjdutWM-KxrSyUG9QisuA8i8g&oe=69B47348&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"svXoUMXuWfHa5T1iXg09yVfWQpt5KxVAOS9XCJdnybk=\",\"fileLength\":\"185859\",\"height\":1600,\"width\":900,\"mediaKey\":\"hJWxDjX+MXksL0CcOhP7mES+Jqr\\/aSEL002CrR1e4kw=\",\"fileEncSha256\":\"VddheittWqU393KJ6ia55PDSSgetltCbVb2nrBFjsLs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588661985_1624965131970139_7166290346257977562_n.enc?ccb=11-4&oh=01_Q5Aa3wHQYKSa0eGnux50guJWNBjdutWM-KxrSyUG9QisuA8i8g&oe=69B47348&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847712\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABQIDBAEBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAABVbh4xpNVNNmYhG2yFnRhCnXZLXmwGpni7NMrlFlJuLATOnJLDYp0dDOMwP\\/\\/EACMQAAICAgICAQUAAAAAAAAAAAECABEDIQQSFDEiEEFRUoH\\/2gAIAQEAAT8AHNzQc2\\/awclDBkQ+iJ2WdT7qVBBcoRMQIoQYMTPUbhYvsZ4lejPHaBiDqIVOw4Fe5ewAbA2J3vetwxeUwgzr12NmLkx\\/0iI4AotO6fsJWrgP0Qn8y5i4KZMIY5ACY3Bdb+GhDhWrqFCG+M6MZ2YFx3IAM8vkKDb6MHNZVHxBnmKdnGBPGxvTE0TP\\/8QAGxEAAwACAwAAAAAAAAAAAAAAAAESEWEQQlH\\/2gAIAQIBAT8AlEIjfGNEoplFDWUJNdmU\\/T\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAARIREEH\\/2gAIAQMBAT8A0orlFMlEkieMbT8RKP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"wnHr5HXQXqsAPrxYr033Me4mJijUCxnX9Bx8\\/FE47coGw\\/uHBVPM8g==\",\"scanLengths\":[14620,65416,41564,64259],\"midQualityFileSha256\":\"1tMPhR2QQaQNUVJjiZ3O3FHavB1m2KMGzX10r5d+Eg8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wE5qObVNZruBcve85E7rOuIaVmnNSavsVhNMPVLv7DQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770847714,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:34'),
(2197, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:34'),
(2198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC5A7581AA873BA7C955E1C1DD8E041B\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588661985_1624965131970139_7166290346257977562_n.enc?ccb=11-4&oh=01_Q5Aa3wHQYKSa0eGnux50guJWNBjdutWM-KxrSyUG9QisuA8i8g&oe=69B47348&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"svXoUMXuWfHa5T1iXg09yVfWQpt5KxVAOS9XCJdnybk=\",\"fileLength\":\"185859\",\"height\":1600,\"width\":900,\"mediaKey\":\"hJWxDjX+MXksL0CcOhP7mES+Jqr\\/aSEL002CrR1e4kw=\",\"fileEncSha256\":\"VddheittWqU393KJ6ia55PDSSgetltCbVb2nrBFjsLs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588661985_1624965131970139_7166290346257977562_n.enc?ccb=11-4&oh=01_Q5Aa3wHQYKSa0eGnux50guJWNBjdutWM-KxrSyUG9QisuA8i8g&oe=69B47348&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847712\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABQIDBAEBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAABVbh4xpNVNNmYhG2yFnRhCnXZLXmwGpni7NMrlFlJuLATOnJLDYp0dDOMwP\\/\\/EACMQAAICAgICAQUAAAAAAAAAAAECABEDIQQSFDEiEEFRUoH\\/2gAIAQEAAT8AHNzQc2\\/awclDBkQ+iJ2WdT7qVBBcoRMQIoQYMTPUbhYvsZ4lejPHaBiDqIVOw4Fe5ewAbA2J3vetwxeUwgzr12NmLkx\\/0iI4AotO6fsJWrgP0Qn8y5i4KZMIY5ACY3Bdb+GhDhWrqFCG+M6MZ2YFx3IAM8vkKDb6MHNZVHxBnmKdnGBPGxvTE0TP\\/8QAGxEAAwACAwAAAAAAAAAAAAAAAAESEWEQQlH\\/2gAIAQIBAT8AlEIjfGNEoplFDWUJNdmU\\/T\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAARIREEH\\/2gAIAQMBAT8A0orlFMlEkieMbT8RKP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"wnHr5HXQXqsAPrxYr033Me4mJijUCxnX9Bx8\\/FE47coGw\\/uHBVPM8g==\",\"scanLengths\":[14620,65416,41564,64259],\"midQualityFileSha256\":\"1tMPhR2QQaQNUVJjiZ3O3FHavB1m2KMGzX10r5d+Eg8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wE5qObVNZruBcve85E7rOuIaVmnNSavsVhNMPVLv7DQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770847714,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:34'),
(2199, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:34'),
(2200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:34'),
(2201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:34'),
(2202, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:34.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:34'),
(2203, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC2E6C7F061FB5ED7A8AA7D31BB74186\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"E aiii joni\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PkgNZHXLnMDMQR7mNAgZ1twHZ9x07T5usFy0CxiheqM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:43.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:44'),
(2204, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:43.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:44'),
(2205, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:43.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:44'),
(2206, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC2E6C7F061FB5ED7A8AA7D31BB74186\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"E aiii joni\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PkgNZHXLnMDMQR7mNAgZ1twHZ9x07T5usFy0CxiheqM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:43.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:44'),
(2207, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:44.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:44'),
(2208, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:44.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:45'),
(2209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:44.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:45'),
(2210, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:44.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:45'),
(2211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:46.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:46'),
(2212, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACB54E1C2C212DA05091DD36FD5AA933\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Venceu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L14zNtXJEjKy474wG4c\\/KWlvLt3fVSdz70OFOTrIObg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847726,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:46.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:46'),
(2213, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:46.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:47'),
(2214, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACB54E1C2C212DA05091DD36FD5AA933\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Venceu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L14zNtXJEjKy474wG4c\\/KWlvLt3fVSdz70OFOTrIObg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847726,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:46.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:47'),
(2215, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:47.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:47'),
(2216, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:47.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:47'),
(2217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:47.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:08:47'),
(2218, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:08:47.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:08:48'),
(2219, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACACF0E0A4898D50E7C12DDCDA321C4D\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Vamos comprar ele\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TqIsWzNxmZZpp6WRpsSL+WteJHSVQP+bU2VKFUay2VA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847744,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:09:04'),
(2220, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:09:04'),
(2221, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:09:04'),
(2222, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACACF0E0A4898D50E7C12DDCDA321C4D\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Vamos comprar ele\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TqIsWzNxmZZpp6WRpsSL+WteJHSVQP+bU2VKFUay2VA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847744,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:09:04'),
(2223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:09:04'),
(2224, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:09:05'),
(2225, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:09:05'),
(2226, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:09:04.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:09:05'),
(2227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A518BC0443251574131354C81B5F4FBE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:04'),
(2228, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A518BC0443251574131354C81B5F4FBE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:04'),
(2229, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:04'),
(2230, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:04'),
(2231, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:04'),
(2232, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A518BC0443251574131354C81B5F4FBE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847804950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:05'),
(2233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:05'),
(2234, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A518BC0443251574131354C81B5F4FBE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847804950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:04.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:05'),
(2235, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"271068908527686@lid\",\"owner\":\"554791063914@s.whatsapp.net\"},{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T19:10:10.154Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:10');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2236, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"271068908527686@lid\",\"fromMe\":false,\"id\":\"3EB0FC2D00B5F2DCA32DEB\"},\"pushName\":\"bagaitolanchonetebar\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNi4B-kzO3A4yrRfsj-_GDWYH6_hvwvOqt00E0NoMGUebwgs5i8XRB63nFV_uZk2x2rcyDRk4TWxDJDoas3D9eOsuDDSa2xqlYMPW1iFQ?ccb=9-4&oh=01_Q5Aa3gH9zxbYmPOA1eiONC50CUrRQ8-gZ24YR29AmzVNkURW7Q&oe=69967AA8&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"XQWtHX2jPYcQTYyjNqwCocBinDPKzF7aLyZuqx+wt\\/0=\",\"fileLength\":\"274599\",\"height\":1536,\"width\":1024,\"mediaKey\":\"DoDk05bjBWSOYS2vUv9h9P2vq4DuI+Bw8q3SiuTcyrA=\",\"fileEncSha256\":\"oiKjTTmEI3RgVuwDIDWMRLELJeyKLJDVAzNmi2jIKoo=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNqjXeFSfgrek9KxSnyeEjJISXjWKxOvVxcSY-vjn-29xfXN_HRjbox10RiKcyF4WCjF77P36lisHLVVcrBmhqVbBuelPK8Utt6LIpfwQ?ccb=9-4&oh=01_Q5Aa3wHuqRY7aviquFJNvpBzHXev8dTcVFvoqYIS-Wu_CRuCJQ&oe=69B46CDE&_nc_sid=e6ed6c&_nc_hot=1770847807\",\"mediaKeyTimestamp\":\"1768884221\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCABkAEIDASIAAhEBAxEB\\/8QAHQAAAQUBAAMAAAAAAAAAAAAABwAEBQYIAwECCf\\/EADQQAAICAQMDAgQFAgYDAAAAAAECAwQFBhESAAchEzEIFBVBFiIjMlFCYSQ0cYGRsUOh8f\\/EABsBAQADAAMBAAAAAAAAAAAAAAUEBgcAAgMB\\/8QAOREAAQMDAwICBgcIAwAAAAAAAQIDEQAEIQUSMUFRBhMUIjJhcZEVI1OBkrHRFjNSVJPB8PGh4eL\\/2gAMAwEAAhEDEQA\\/APls3t16n\\/Xq3dqKGlsn3M0xjdcNXTT9nK1osm1mya8QrM4Dl5QylF233bkNvfcdHTIYL4U7+kdXZLTX0V71Svkfp0clq3XmtSQ46ikc1RLN5DAnzk88yxTrZllSKVE3KBOgdS15vTLhNutlxUgGUplIkwATIg4ntGZgGErXTlXTRdStIjoTBwJwI\\/w4rLx68H23361G+kvh6xevrVzWOE0lDpLF5i+MfX09qz52fNYmOjkJVkm\\/x0jRz+pBj1iXlX5vYZCreAkcdGfDvDSmPb+zg9WZWDAU\\/k4tVZ5sNXvWRkrkV22wE0Qjk9KKoYazzwt6E\\/qMsjqd4P7W25IhhyCEmdqdvrEjKt20bYlUkR8QqPb6Hcj94nriTOI6RJnpjP3ic27fz15HWsMp21+HyM37ujKelM1paDKZyrm8zl9XWMdZwzj1jQgpJGZRPGY4ucEohutZIkDLHxKrG2dEdj5e0Xa0T6u0ZY1LQF98zRrWI4ZL89ytNboRXbIZHWOOWGvVlPICP13\\/AFYduZ6J8YWywlQZcgmDKRI9VZyASRJSBCtvtoPBmux0V1JI3pwJ5wcpGCQJ5JxPsqHIrMyL489Ij+OiL3exGnsVb04cJitO423awvr5engMz9TqQ2\\/nbSKBL8xY2Y10rMV9U7ct9hvt0PyhPnbx1aLO4ResB5AIBnmOhI6EgjGCCQRminmiwstq5H+dYriPbpdddh\\/HS6kba8pqe7a3dO47uLpXI6wjgfBVc1Rmyi2K5niNRZ0MweMKxkXgG3XY7jxsd9uja2sO0P0mWsmf7cjWpwFWFdQPol3whlXJ2pJ4lpikojstWemPmGqSgrE8YKM3Mg7t7axVHX2m7uckqJjq+WqS3HuIrwJCsyl2kVq9lWQLuSGrWAQNjDKP023ldzmgezWhI6Ouvhq7J6lu2L17LVrOQy9Bvm1p5CLN+hDYpYmCGWWxicpT9IJZNOSKOGJYFcyY+ULUtDa1NwOuOKSRHG2MGYMpMgzChwoRIMCp9rfrtElCUg88z1EdCMjoeR0OaBOH1v8AD4vdXVeWw34SwumbGqcFahizWl3uR2sVFHYGUjpxGtZNX1pWjdF\\/SIQooKceI4X9Z\\/DmuotKajVcDJhsBjMrYXB1dKNLPNaktsuPrXuQrraMNaWu0jNYkDtSnXmxmEkmg9TfDXl9f9qchoNe3fZntbqnR+ltO4TKTXMvFBlMndgrULk1uVHxLuZZDladZvlZ4JPmZjHPNcjasq2XS+hdVYLtn3Fz2vvg\\/wC0czTY+xr+PVOBo046GPxlfE4edaGLks4bI0Z\\/USWRVYSSRySx5Bg4KLPIefCVuV7w+7O0J9pOQEeXk7ZkgyTM7sgipI1p0J2+Wnkng9Vbu8QD04jBmsdaC1Z2s0P3O1rhRqaK325zF\\/GPWhNa3NVt1Ic7Rsqk0EsQZ2ipraU80O\\/6qqW5jmDoo+X9uvoRoiTSmp9c6dz9z4RO3E\\/4hqrnKGkZspUr1Exly81mCwprYkzB4vp8DTNYsTQelakrRwQrcWpHnPvL8Q3bDuj20wOhdIfDXpbt9lMT9MFnKYdq7Cx8rXsRTbMaouH13njd\\/Xtz\\/wCVh93MkroaL6AX3jaPFxZCN8kHgbQrAElW0yeCRiIio996QG0ec3tT60YI5Mkc9JwPfQOjrFlO3Xk12H28dPqaKy8T79SC4l5IuSLudv46tjbG8SKHW7tOar3oH+D0upo4qcHb0m\\/46XXPRVV984VV0jkkJWOMyMFLEAE+ACSfH2ABJ\\/sOrVgcDi89isNhquktVz6hzOoFo171BltQWYCsampWoiFXmuB5Y2G1kAiRE9MFg5q0M81aVLNeV4pYmDpIjFWRgdwQR5BH89StnUWr9RyU6V7O5jJyQ2ZZacUtqWYpPPIGkaNSTs8j7MxHlm2J3PRhIAk1JAKjAolnt\\/oarpi7Jmu2HdWtktE5vH1tZ5Kjbq3sSlJ55oLIDrWUUZzLGkcDSS2I5GEg8cRvw0tpPSOCwGK1rqztFqHWGPwt6K1qSbDa0qGi1OWGN60E6Vqss2PLvZro0kku7sliBBHNHIYPbGfDr3d1Cv1e4Iak4YANetsZtlA4tugfYfYbkEbew8dTMfY\\/vniZhbqa0EE5jgg5wZW0rhIGhaFNwgPGNq1YqP6TBERtwXYY+I9JSooNwmfjP5U2jwzq7iQsW6oPuj86qcfb2K\\/oSJKnbDXVLU1ZGuWszbuxfSLMHykl9Y0rvWjeBmogWEc2ZjKsZ4RkSqY4vXem8do7WNnCZbRestKT1pgtnT2f4jIUomgieNnmaGEszl3fia0YCenszcyyzWoOzPdCOP1sna+oyxpDAsZsyu\\/CJBFGg9RQAEjVVA38KoA8ADqo6j09rStYa9qWlkJJmUBp5mMzcUUKOTbnYBQoG\\/jYbDwOkLbU7K6wy6kn4iflUO50i\\/sxL7KgO8GPnxTGlZaMqW2PV70xNHZZYzt5H36Gytt46l8PlpaFlHBOwPnz07aXAQqFcUM81vGKMIwELANwHnz7dLptX1jSMEZLtuUH\\/XS6sG5FH7DQIJ61P8Cuju2uos3qPLa4zdSjcx6VoqYsSJHtHIZPVKNIQm5CAE\\/uA9t+Wxywdur12Y7eaw7na4g0xoy69K00bTWbazGP5esrKHkOxBbyygKPckew3IzLxCy2\\/pjyHnfLRElRmAAQTMEHIEfrwbZo1yq0vm3Up3EHAxMnAiZEyf8AXNfWfDaW7LKYimssa08qKFRp1kVTx2O\\/ElfJP2J+23UTrvD9n65o4YZKvkDcWVS+PIeQKvBuHNG\\/SkfyqcyAeDn9ygii1Ow\\/bDt\\/2wtYm1Sw2TyeSMYv6k1neibeNZllhjLTMkaR+sqgoAfUZow+4XcU7T+idC1KztqXujFkKUzMtOnMiQ0qUInZpXepXAiHkMAzS7EHiybAhsBS9pzrRds\\/XT0IbXM9YyZIwT7OOK2NpVwVBb7hB7bgfyGB25ol5fsjpS8fSpZaBJUKj00l5OjbBtip2KAoVIJB\\/cm37h0LdYdpjDjZcgtyrcgWrO6rKwKTcfG8Tt4O547bEFgw477jeP8AiI7S9j8\\/ZwFTTc+Nhp07C17qYhK3rBTJGIogxKiNQiWQI1K8pJEJBdyTn3VukO1mlHs06U8zyLLKtW1KI4\\/R9RFNcckYliAWdy3kfkX+rfqzaPo7N7bt3LbiklU+qUyYBj+Lr7u4+FFXes3bC1NLhSR1J7ie1R2vezeGsaDz\\/cXTmaZclpy1XbL4mxGoaSlO6RLdhcMQyrYkjiZfJPqJJuASAFIz0brLd29dY2tiNDplb4v2rGHkECRASQgCNSZV\\/LGrJzSRlcRlSQTxcghm3Slx92xQmaF5a0rQu0EyTRllJBKyRko67jwykqR5BIO\\/Ww6K+VsBlxQK04IBk8kCeo4MVmWsNoFyVtghKoORAyJx0\\/7rqs8gUDkfb+el1zCvsPydLp7ee9Ebaefh6mu5eST8g5Hd12\\/3\\/wDvWofh47X6u7X6t\\/FsD48z3qkVb5AO0vBWmiaWOTdlKTLw9JR+YGVip24sQXNU9i+0mgMtNqzU8EOH9RmSXE1q8V8WN35MErWI3Cb7D80Sxqo8BgDsYrT3dztnexVe1pDO47TmP0\\/PCWjsR3rbmQnlDFL6sAlIIil2MblEPEMNuI6wvWPFFxrtiWrJpRbVhcpJGemJ5OBEzPQ1qNr4VZaeSp1wJjIjkx1E9ueMVb8l2i75a07iWNTZdcN9NqVakmPq2YFmgMocSSQxNHN6kSsYU3lZCWV+JjIVk6A2sdO\\/FDNOa9qnmMTWxkgWi1HFWnjeViSOEvocgiqkY3b9p9FSR\\/Rp\\/C\\/FJo18VL9I1djXaKDlA8kXynI77kKJVHMbHbYfYe\\/ncQtv4yNG4\\/NLgNYYPJ1rNdUWytSnPLCjNGGPFo0YkcmAI33XYr4PLcTR9T1C1R6Oi2nYAAnZEARJiJPvJByZqbe6MF\\/Wm5IBPO5Of+B8p7is72ezFnMwX6uoNcWcpncxQR8bFYhtwRPNGz\\/kbmY+IEYjIeWMgMhDBRvJ00q9rq+jOzGOytrG0dRPqEzWRK2GMsdT11gSsDI6JLEHUzH1l3RSIyu\\/IM2jc78UfbOCt81EuQinKBmUYi4W9PiCg3MX38eD9x5GwPQT7t9\\/sNq3TdWjgsZe9T86CT5eSIiMg712jdfzpvxdS2wDE8QNjuxbaprV24hlTBCNwJJEAe7hMdO\\/GQZom\\/0dDbctvgmcgwTHzNevbvUubrZ6LC6k0wLhnrvWhW69itAyovD9QbhZgF2fky7oq+GU8T1I6y7SfDtrHuzksLZ1bqOplZ7sFESGwbFeWwYFJRZpVJHHiFKOylSwVRsNgIKWk+6WpaFfIYDEGnUyKNH81JdjeWON5vQLtBEzTbMzFNghZiVCBiwBMGgtNjtbl8J+KNa4zN6kjNpkq41oo6TBUZY0tW59kYDlyGyc08Aq20eyjt0NPUp9lYLpnCD60jJk5AHfcRBg46yLLTmnD9a2SMZUMQe3BntE09sfBz2RqzyVbHe6tFLC5jeNrVPdGB2IP6nuD0uuGU0Z8UWVydzKBtIILk8lgKjVXVebFtgzFiR59yST\\/J9+l1IHiB8jNw3\\/AFP\\/ADUr6Ls\\/sFfgH61Xbmt9N55YoszHTyOQji9CCXJ4qnPNGOJ4n5hoy54kkgb+532Pnen0sFgMjiExEN6J1SdrMdcRjijOFWRh+UgEhIxv5\\/aP46G9dLkRMh+alP8AVudvPVk0JK8WbgmirnirgOsm+2249+uitKTYNKUwsiM9IxP617DUHLkhK0CT\\/eKLOidOwYWQlIKs4aNgY3gBUePfwN\\/t9uiPd1PlLlOOvlM\\/lriPBGskck8iKeOxUcWbYgEDbcfbfqq3sLaslcxTkirkpwIRtgP7dVyzpvL3YVYGSRtyB536priW79zzXVwfyqyJbdZQEITIq66v15m8jcr37eett8mYrFeM2gsQeNgwdkH7jyCnc7nwP4GzZO9uZ03I+ctXFunIrxNeSVpIIUCnYRo3IRjzvsnHfYb+NwRXqPS2dxsoWdZlDr45+23+vv03GPt2cN9NumFChZleRh9wP46Ra0axUygEhSeMdv8AcUY7e3aXCEjaR99XvF97dXW9Qteu6xzE1awGkZI5zCkcqxFVCRpsijkEJ8edv7nqCymvslR7rNm5DX1I1GoYKi5NvmYoWfYuyiRW+xdfYe\\/\\/ADWpKFWDB+nPkIVkhmLD003OxUb+f9h1XIMji4cl608lmT2G6nb2\\/wBP7dWvSdOszuCWxEEYEY+Ijp2ou\\/uXk7ZXGQfv+GaLEerO6zRq0eQjRCAVVMVSCgfYD\\/C+3S6g4taadESD0sifyj\\/yDpdWD0Kw\\/l0fhTRfpFz9ur8Rphaw1NWcLzAA8AEbf9dWjSejsMVFllmLsQSefv8A+ul0uqHeuLFvgmrgyhJcyKJNNIquMlSKFNlZdtxv01iyVpGhVGVVY7kAffpdLqkoG4q3Zz\\/anZhIih53JyNy3cCTTsVi34gdVSGEWE4Ss5B3J2O3S6XV308BNojbVVuiTcKmobKKoikQKNl9uo\\/T9OG5f4zb7H7Dx0ul1ZbRRDKiKJeALqQaK0ensYiKohOwAHv0ul0uofmL7mlfLR2Ff\\/\\/Z\",\"contextInfo\":{\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"7h7JaG5lwNxiYg==\",\"senderTimestamp\":\"1768784659\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"buyEpLSszUYv7II7Z+V9F52En7vzbfn2Qx3Y0NI\\/WcQ=\"}},\"contextInfo\":{\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770847809,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-11T19:10:10.155Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:10'),
(2237, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"271068908527686@lid\",\"pushName\":\"bagaitolanchonetebar\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516785401_1516546519508720_2900830950407736150_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy9YLIciov-x5hCbWoi2SlRHycroltRK-6b2ZL7OW4XA&oe=699A15C0&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T19:10:10.279Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:10'),
(2238, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"271068908527686@lid\",\"pushName\":\"bagaitolanchonetebar\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516785401_1516546519508720_2900830950407736150_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy9YLIciov-x5hCbWoi2SlRHycroltRK-6b2ZL7OW4XA&oe=699A15C0&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:10:10.283Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:10'),
(2239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:19.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:19'),
(2240, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:19.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:19'),
(2241, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A53C8887C5ABF420E176F696489578F3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td certo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847819,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:19.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:19'),
(2242, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A53C8887C5ABF420E176F696489578F3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td certo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847819,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:19.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:20'),
(2243, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A53C8887C5ABF420E176F696489578F3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847820087,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:20.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:20'),
(2244, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A53C8887C5ABF420E176F696489578F3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847820087,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:20.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:20'),
(2245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:20.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:20'),
(2246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:20.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:20'),
(2247, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:25.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:25'),
(2248, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:25.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:25'),
(2249, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A547BB3E75945D87DE1A73FD6D3A4169\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Blz vou ativar ele\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847825,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:25.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:25'),
(2250, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A547BB3E75945D87DE1A73FD6D3A4169\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847825653,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:25.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:25'),
(2251, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A547BB3E75945D87DE1A73FD6D3A4169\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Blz vou ativar ele\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847825,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:25.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:25'),
(2252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:26.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:26'),
(2253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:26.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:26'),
(2254, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A547BB3E75945D87DE1A73FD6D3A4169\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847825653,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:25.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:26'),
(2255, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:28'),
(2256, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A514B2052FBFFE16F9016CF6169494B3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"$35 blz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:28'),
(2257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:28'),
(2258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A514B2052FBFFE16F9016CF6169494B3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"$35 blz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770847828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:28'),
(2259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A514B2052FBFFE16F9016CF6169494B3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847828552,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:28'),
(2260, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:29'),
(2261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:29'),
(2262, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A514B2052FBFFE16F9016CF6169494B3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847828552,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:28.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:29'),
(2263, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A5473F98C708309C45BB71CE09BA4B75\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UD4QMEGPGS\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770847829,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:30'),
(2264, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:30'),
(2265, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A5473F98C708309C45BB71CE09BA4B75\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UD4QMEGPGS\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770847829,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:30'),
(2266, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:30'),
(2267, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A5473F98C708309C45BB71CE09BA4B75\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847830430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:30'),
(2268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:10:31'),
(2269, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:31'),
(2270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A5473F98C708309C45BB71CE09BA4B75\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770847830430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:10:30.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:10:31'),
(2271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC7DCAB088926CC7ADB3E1FA2D9E9B5F\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Blzzzz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hKzh0jX\\/qEUVZTXHAzoXkCO9WdcvYztsjuxSzvU1mUc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847869,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:09.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:11:09'),
(2272, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:09.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:11:09'),
(2273, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC7DCAB088926CC7ADB3E1FA2D9E9B5F\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Blzzzz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hKzh0jX\\/qEUVZTXHAzoXkCO9WdcvYztsjuxSzvU1mUc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770847869,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:09.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:11:09'),
(2274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:09.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:11:09'),
(2275, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:09.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:11:10'),
(2276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:09.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:11:10'),
(2277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:10.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:11:10'),
(2278, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:11:10.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:11:10'),
(2279, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:15'),
(2280, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACB99D6CC2DA06068B8149B704BB3BFF\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634228347_1274476667937018_6496663659474676559_n.enc?ccb=11-4&oh=01_Q5Aa3wGNoHYzOfHP1hr2ZOdY7cGGthm1o7LEt38QaRY-Lg4Hrg&oe=69B46FF9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"mxRyfZwj5t601YYg9GB+y8A9yQ\\/FtQ1FkD+BoY4sR24=\",\"fileLength\":\"44373\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"A0U2rxTcSS5AC507OWfCi7YAQrGf3EJAz5njYeT4fjs=\",\"fileEncSha256\":\"9hVYCKQu3iYwAF31oZSwozwSNcgcrpvdY1snvLj7yrM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634228347_1274476667937018_6496663659474676559_n.enc?ccb=11-4&oh=01_Q5Aa3wGNoHYzOfHP1hr2ZOdY7cGGthm1o7LEt38QaRY-Lg4Hrg&oe=69B46FF9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847916\",\"waveform\":\"AEtGWSdZP0VRYUhbYFBWRStTYFNiREY8XwACAAALRQAdOGBNV0BdT1RYNUVJAAAAA00iE0FPQQALAEpXXB4EAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PwNujVX2laoaUODOD8S0H3l40eKrzwVttMyHy1QeQtk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770847935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:15'),
(2281, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"pushName\":\"Ednilson  Antônio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:15'),
(2282, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:15'),
(2283, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACB99D6CC2DA06068B8149B704BB3BFF\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634228347_1274476667937018_6496663659474676559_n.enc?ccb=11-4&oh=01_Q5Aa3wGNoHYzOfHP1hr2ZOdY7cGGthm1o7LEt38QaRY-Lg4Hrg&oe=69B46FF9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"mxRyfZwj5t601YYg9GB+y8A9yQ\\/FtQ1FkD+BoY4sR24=\",\"fileLength\":\"44373\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"A0U2rxTcSS5AC507OWfCi7YAQrGf3EJAz5njYeT4fjs=\",\"fileEncSha256\":\"9hVYCKQu3iYwAF31oZSwozwSNcgcrpvdY1snvLj7yrM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634228347_1274476667937018_6496663659474676559_n.enc?ccb=11-4&oh=01_Q5Aa3wGNoHYzOfHP1hr2ZOdY7cGGthm1o7LEt38QaRY-Lg4Hrg&oe=69B46FF9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847916\",\"waveform\":\"AEtGWSdZP0VRYUhbYFBWRStTYFNiREY8XwACAAALRQAdOGBNV0BdT1RYNUVJAAAAA00iE0FPQQALAEpXXB4EAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PwNujVX2laoaUODOD8S0H3l40eKrzwVttMyHy1QeQtk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770847935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:16'),
(2284, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:16'),
(2285, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"pushName\":\"Ednilson  Antônio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:16'),
(2286, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:15.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:16'),
(2287, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:16.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:16'),
(2288, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:16.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:16'),
(2289, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:23.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:23'),
(2290, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:23.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:23'),
(2291, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC05CB7CE28D7FE829660CD876B8C809\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/543767305_928321350146959_7921963668172411517_n.enc?ccb=11-4&oh=01_Q5Aa3wERxBUEUM03yu5KWGjU6YJ_HgfxtVjIMS1LNZPR0DtAHQ&oe=69B4540C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wNtxwE1S5ZYpv6CFzUvTRLl10RnFRdyXLDBYmG04P8I=\",\"fileLength\":\"10542\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"D803VqNVofnlePOCvc0JbdTxWLXV40HFRW6WtFlZT\\/M=\",\"fileEncSha256\":\"QMJ6C7bHoHkoEJI79YrNBCmT1abPSY6JAWhvYRv+vlg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/543767305_928321350146959_7921963668172411517_n.enc?ccb=11-4&oh=01_Q5Aa3wERxBUEUM03yu5KWGjU6YJ_HgfxtVjIMS1LNZPR0DtAHQ&oe=69B4540C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847940\",\"waveform\":\"AB1KNwgMQ0k0LURcVThWYlpBIV5dUChSUEIiVFBNT1NQOUUcTFRJR15ZSkxHP0NOV08gTVosBAAAAAAAAAAFAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j+zWX8hR5wI+s+6ErPmdT3UOxJTYjKxfF9HECeqwOEg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770847943,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:23.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:23'),
(2292, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:23.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:24');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2293, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC05CB7CE28D7FE829660CD876B8C809\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/543767305_928321350146959_7921963668172411517_n.enc?ccb=11-4&oh=01_Q5Aa3wERxBUEUM03yu5KWGjU6YJ_HgfxtVjIMS1LNZPR0DtAHQ&oe=69B4540C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wNtxwE1S5ZYpv6CFzUvTRLl10RnFRdyXLDBYmG04P8I=\",\"fileLength\":\"10542\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"D803VqNVofnlePOCvc0JbdTxWLXV40HFRW6WtFlZT\\/M=\",\"fileEncSha256\":\"QMJ6C7bHoHkoEJI79YrNBCmT1abPSY6JAWhvYRv+vlg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/543767305_928321350146959_7921963668172411517_n.enc?ccb=11-4&oh=01_Q5Aa3wERxBUEUM03yu5KWGjU6YJ_HgfxtVjIMS1LNZPR0DtAHQ&oe=69B4540C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847940\",\"waveform\":\"AB1KNwgMQ0k0LURcVThWYlpBIV5dUChSUEIiVFBNT1NQOUUcTFRJR15ZSkxHP0NOV08gTVosBAAAAAAAAAAFAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j+zWX8hR5wI+s+6ErPmdT3UOxJTYjKxfF9HECeqwOEg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770847943,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:23.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:24'),
(2294, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:23.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:24'),
(2295, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:24.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:24'),
(2296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:24.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:24'),
(2297, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACA5CEA478AEED512AE15173DD322CD2\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/630919626_1235204822054654_2416747198954068673_n.enc?ccb=11-4&oh=01_Q5Aa3wGjTW-JLi12yJQpWJA8zAyqyix740438BZBrj4MHg9X1A&oe=69B46CED&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"q9ge9gUbz6GXOECRchucqc3++JXcqaFnQPXKFn0T6XQ=\",\"fileLength\":\"75186\",\"height\":1355,\"width\":395,\"mediaKey\":\"uze9bplFZ+ockn7mfVe9CGgtHExdRheG3QhnlubwUSA=\",\"fileEncSha256\":\"yk+Ly7uqSFr1+274WlZ+jZA0yUh4gh8NFFXajNIrAPk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/630919626_1235204822054654_2416747198954068673_n.enc?ccb=11-4&oh=01_Q5Aa3wGjTW-JLi12yJQpWJA8zAyqyix740438BZBrj4MHg9X1A&oe=69B46CED&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847966\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPR4ugo4CwDtM2WqMroy0JAoP\\/\\/EACMQAAICAQMDBQAAAAAAAAAAAAABAhEhEDFBAxIyEyJCUmL\\/2gAIAQEAAT8AKvliVIqecoS0uXdse+\\/ET6i+A5RTumet+JC60frJCHfDEzulfiWnvpWcjjGtiKpbClbervgyK+T\\/xAAWEQADAAAAAAAAAAAAAAAAAAAQIIH\\/2gAIAQIBAT8AMf8A\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAECCB\\/9oACAEDAQE\\/ADX\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"MJ93RYoiNJtn2Ajl5ExaqMU0TrL6gOiefdo\\/WPkghdN3s9J7bvrzEA==\",\"scanLengths\":[4099,37626,15416,18045],\"midQualityFileSha256\":\"4L5WsukjMno9+sbJwVgXYW5pPkElqAqhccOYOnz1oqE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gIkXMgt7UsnNt0Y3UYAgcWokYWJuhh8jRs4Fk7SujPk=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770847967,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:47.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:47'),
(2298, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACA5CEA478AEED512AE15173DD322CD2\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/630919626_1235204822054654_2416747198954068673_n.enc?ccb=11-4&oh=01_Q5Aa3wGjTW-JLi12yJQpWJA8zAyqyix740438BZBrj4MHg9X1A&oe=69B46CED&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"q9ge9gUbz6GXOECRchucqc3++JXcqaFnQPXKFn0T6XQ=\",\"fileLength\":\"75186\",\"height\":1355,\"width\":395,\"mediaKey\":\"uze9bplFZ+ockn7mfVe9CGgtHExdRheG3QhnlubwUSA=\",\"fileEncSha256\":\"yk+Ly7uqSFr1+274WlZ+jZA0yUh4gh8NFFXajNIrAPk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/630919626_1235204822054654_2416747198954068673_n.enc?ccb=11-4&oh=01_Q5Aa3wGjTW-JLi12yJQpWJA8zAyqyix740438BZBrj4MHg9X1A&oe=69B46CED&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770847966\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPR4ugo4CwDtM2WqMroy0JAoP\\/\\/EACMQAAICAQMDBQAAAAAAAAAAAAABAhEhEDFBAxIyEyJCUmL\\/2gAIAQEAAT8AKvliVIqecoS0uXdse+\\/ET6i+A5RTumet+JC60frJCHfDEzulfiWnvpWcjjGtiKpbClbervgyK+T\\/xAAWEQADAAAAAAAAAAAAAAAAAAAQIIH\\/2gAIAQIBAT8AMf8A\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAECCB\\/9oACAEDAQE\\/ADX\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"MJ93RYoiNJtn2Ajl5ExaqMU0TrL6gOiefdo\\/WPkghdN3s9J7bvrzEA==\",\"scanLengths\":[4099,37626,15416,18045],\"midQualityFileSha256\":\"4L5WsukjMno9+sbJwVgXYW5pPkElqAqhccOYOnz1oqE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gIkXMgt7UsnNt0Y3UYAgcWokYWJuhh8jRs4Fk7SujPk=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770847967,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:47.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:47'),
(2299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:47.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:48'),
(2300, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:47.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:48'),
(2301, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:47.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:48'),
(2302, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:47.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:48'),
(2303, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:48.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:12:48'),
(2304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:12:48.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:12:48'),
(2305, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:15:58'),
(2306, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:15:58'),
(2307, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2A04DB7718D55D4AFB05\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Eai mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jxvJvaVJOEay69vM279NcCB5A31nrNGltU7Ou4QU0o0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848158,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:15:58'),
(2308, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:15:58'),
(2309, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2A04DB7718D55D4AFB05\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Eai mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jxvJvaVJOEay69vM279NcCB5A31nrNGltU7Ou4QU0o0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848158,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:15:59'),
(2310, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:15:59'),
(2311, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:59.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:15:59'),
(2312, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:15:59'),
(2313, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:58.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:15:59'),
(2314, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:15:59.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:00'),
(2315, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:02'),
(2316, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2A2C7D512CCC3AFEA503\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Meu acesso caiu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PPoesHonrarBw3Hn5Y1WnST1\\/yMT3Lw75aSQMrVbplI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848162,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:02'),
(2317, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:02'),
(2318, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2A2C7D512CCC3AFEA503\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Meu acesso caiu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PPoesHonrarBw3Hn5Y1WnST1\\/yMT3Lw75aSQMrVbplI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848162,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:02'),
(2319, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:02'),
(2320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:03'),
(2321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:03'),
(2322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:02.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:03'),
(2323, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2A8ADDC53C2E8F22065E\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Vê aí o que foi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vq34T85ZN0I4qwu86J+bSmu5HCHTCH77ckpFisD4W5A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848166,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:06.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:06'),
(2324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:06.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:06'),
(2325, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2A8ADDC53C2E8F22065E\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Vê aí o que foi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vq34T85ZN0I4qwu86J+bSmu5HCHTCH77ckpFisD4W5A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848166,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:06.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:06'),
(2326, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:06.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:06'),
(2327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:06.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:07'),
(2328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:07.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:07'),
(2329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:06.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:07'),
(2330, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:07.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:07'),
(2331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:10'),
(2332, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2ABA8A93321F4B2463E9\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Desde cedo sem tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"q\\/ivNnG7G0SQcylgNcWJcxCmJq7OCp3n2JvmESerSww=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848170,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:10'),
(2333, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:10'),
(2334, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"2ABA8A93321F4B2463E9\"},\"pushName\":\"Eudes Lima\",\"message\":{\"conversation\":\"Desde cedo sem tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"q\\/ivNnG7G0SQcylgNcWJcxCmJq7OCp3n2JvmESerSww=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848170,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:10'),
(2335, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:10'),
(2336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:16:11'),
(2337, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:11'),
(2338, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:16:10.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:16:11');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2339, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzcU1L44zz8R2aMfvfLyrlrJ9SfXKejZY4WYoujb_YIA&oe=6999F0DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrXQp9kabLA1uOhPE6n3hGd9hujYHogfmggcRCD58inA&oe=699A17D8&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&o', 0, '2026-02-11 19:16:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2340, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzcU1L44zz8R2aMfvfLyrlrJ9SfXKejZY4WYoujb_YIA&oe=6999F0DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrXQp9kabLA1uOhPE6n3hGd9hujYHogfmggcRCD58inA&oe=699A17D8&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&o', 0, '2026-02-11 19:16:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2341, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:54'),
(2342, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC021CA1E8F4CFEA8D6B03A9B7CC8323\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Ai coloca uma grade massa de canal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pj0SNAzbcVHoiLLLKJC3fSxssYTFNn5KnmD4rbRIRJU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848274,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:54'),
(2343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:54'),
(2344, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC021CA1E8F4CFEA8D6B03A9B7CC8323\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Ai coloca uma grade massa de canal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pj0SNAzbcVHoiLLLKJC3fSxssYTFNn5KnmD4rbRIRJU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848274,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:54'),
(2345, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:54'),
(2346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:54'),
(2347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:55'),
(2348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:54.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:55'),
(2349, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:58.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:58'),
(2350, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC937830528BE23CD40CA9C77C5C685A\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"😁\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0790p+64IwoHRz4vb3pNmWbbLCQAj30jLn1SsgG6ayY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:58.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:58'),
(2351, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:58.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:58'),
(2352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC937830528BE23CD40CA9C77C5C685A\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"😁\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0790p+64IwoHRz4vb3pNmWbbLCQAj30jLn1SsgG6ayY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:58.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:58'),
(2353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:58.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:58'),
(2354, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:59.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:17:59'),
(2355, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:59.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:59'),
(2356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:17:58.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:17:59'),
(2357, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A54B8DBF4A0B67ACB4693585C640CADB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/541195610_1551053126156344_28725658249451424_n.enc?ccb=11-4&oh=01_Q5Aa3wEVP1i6hmh4cdSX-JfHO7TNbGWuSEprtHH8iMFNv8tk7g&oe=69B48126&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Vsh7jmv+GaYsGDxeqZ5W7TYDZJ8jvN+ps+w4YhSvFmI=\",\"fileLength\":\"18582\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"6WJdIhhZ8zqobMzSBAuS59mBA\\/5nFL6Ogukz6pDkMnA=\",\"fileEncSha256\":\"EW7+GFh+VDiPHGOprqpsvneTlC54QPNgYeq5pkUk9bU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/541195610_1551053126156344_28725658249451424_n.enc?ccb=11-4&oh=01_Q5Aa3wEVP1i6hmh4cdSX-JfHO7TNbGWuSEprtHH8iMFNv8tk7g&oe=69B48126&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848308\",\"waveform\":\"ABIfOU1ZRkBKN0FJPhpJOkwxTCo0PUs1PDdCCwAIJxEDOA48XEpOOjojQEtDSUw4KiI8EgAAAAkOEBA8M0IrBA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:35.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:18:35'),
(2358, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:35.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:18:35'),
(2359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A54B8DBF4A0B67ACB4693585C640CADB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848316903,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:36.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:18:36'),
(2360, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:35.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:18:36'),
(2361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A54B8DBF4A0B67ACB4693585C640CADB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848316903,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:36.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:18:37'),
(2362, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:37.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:18:37'),
(2363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A54B8DBF4A0B67ACB4693585C640CADB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/541195610_1551053126156344_28725658249451424_n.enc?ccb=11-4&oh=01_Q5Aa3wEVP1i6hmh4cdSX-JfHO7TNbGWuSEprtHH8iMFNv8tk7g&oe=69B48126&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Vsh7jmv+GaYsGDxeqZ5W7TYDZJ8jvN+ps+w4YhSvFmI=\",\"fileLength\":\"18582\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"6WJdIhhZ8zqobMzSBAuS59mBA\\/5nFL6Ogukz6pDkMnA=\",\"fileEncSha256\":\"EW7+GFh+VDiPHGOprqpsvneTlC54QPNgYeq5pkUk9bU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/541195610_1551053126156344_28725658249451424_n.enc?ccb=11-4&oh=01_Q5Aa3wEVP1i6hmh4cdSX-JfHO7TNbGWuSEprtHH8iMFNv8tk7g&oe=69B48126&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848308\",\"waveform\":\"ABIfOU1ZRkBKN0FJPhpJOkwxTCo0PUs1PDdCCwAIJxEDOA48XEpOOjojQEtDSUw4KiI8EgAAAAkOEBA8M0IrBA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:35.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:18:37'),
(2364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:18:37.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:18:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2365, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:18:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2366, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:18:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2367, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:18:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2368, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:18:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2369, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:19:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2370, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwLalekdQ32_Zo4PDZkzZG3KHJZaHCxGVpl7Jj-xvJ3g&oe=6999F0F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:19:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2371, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVqJXJbFsUOPW8A_ALZX455CLENEo26b7ZbMoJo7OXZA&oe=699A2938&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:19:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2372, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZUisujceasqoUHfvnRkRYfJzYjFCxliTgQgapNCMvw&oe=6999F69B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wESzkBOjsRF-bkdn3xCjcb6l4ptfk7I8Le2CKXQh0oPQw&oe=699A16A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB9wg8Ipj3v5F12cQZSIN4lGbPS5PWeVNeYmR5R83rLA&oe=699A10D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP1m_j8qZniZE-ec2pDHt4aNSmc4uLMUKfB8VIHQb_CQ&oe=699A1B37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI9FG-PwG0nzKe_Lq3zDLF3Dy-yQdtOad8q7EB9rUaoQ&oe=6999F728&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzsMpFAaxr8LTkIA_q3Gz-8zrwLDMk9S2Of6zQTZdtxQ&oe=6999FFC0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ0vv51qo27sJ_jwSMt5b9ANMBUoIkYS_za_E2XNcAxA&oe=699A1943&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1MC6x-JRN3_txGHZPE3uZ_ZdmK4jjDUSh4CKVUh5kdg&oe=699A001C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Haoe8zdlxM2z8NuTwty_M22tLuQrAJXM_PjafKGZ1Q&oe=699A1055&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG5fD0WdZa9Cih3P0kfyLNMJDwXbcmZ_HWSZy5hJL-BQ&oe=6999FE55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUtiTbFcLUbOwcPV2n6kDyDa5Fn5CBt3fBpqkcSgkHZw&oe=699A0BD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOjASmp_ZK8shl94d-b0xiwAJTFp23noJX3EiELkQKEQ&oe=699A068B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhghWxGLIbK9pYJnFvDk8YURQwbl5z-8mv1RZu56aD5w&oe=699A0986&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4TVI-x6hf1tBtWj-EH9iw22sgORUIDuepefNUIyypow&oe=699A0722&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEvXjKJte2lTrhERrr5Nwev8KPt7YraHwRJByHhQJ9YA&oe=699A0B8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo4MGevqFGTe40PHUIYrCUkHwyVst_EpnhuQjJ3ia-oQ&oe=699A043B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0XGbwxzcs5TLI-dP7niU3wqM1x6sdMRQWyPeIrcDrew&oe=699A05DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVqJXJbFsUOPW8A_ALZX455CLENEo26b7ZbMoJo7OXZA&oe=699A2938&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyPM0CvOmjn8oiCiMf-NvLSzYk4iIvDpRDRXZSvR9RvQ&oe=699A0549&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJxXfs2iFlVie-eUORUuhaJ6nfdodZJdOyfRKrlcgSvg&oe=699A23CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2rTxhoqGZRA4R5L2Zw4VDinP6AY7XR4HwcswhS0kVNg&oe=699A0558&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxLCVSmglOfGGuhzpHqbHaFKPYt0ca4CzCUcN9cIq_MQ&oe=6999F9D6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGslywfxw7NQvTwdkPg3gMT8lKDPs0s764Gb2UT-1_BjQ&oe=699A189A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgZ69K4rR1fcNKUTK86RuoHhnVIExnsiQtOYMwpMvovg&oe=699A1C36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEumo5-Baa9BSetZdRdEe6zTpyWrOGfT3KYqTlCoXIwrQ&oe=6999F52F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_1e-NrZ60WfSiGo7nMCxpxh3XYdjb04DNC_th5i_1Ow&oe=6999FBAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPtJSZ6UMl46d4nkp7zVE0qZxwOBp0797PQOCLDAASrg&oe=6999F28D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkFCdgiWlY6jjylZfWOAA6n084FoYXRwR0QrnlPhOq1w&oe=699A08A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC0Cqi_z2aD0vjQ3fc2ZgPhnfBfRNNc_Yw92EBdZQwsA&oe=6999F7BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhqFMVnugQN4RHPPg_xKaU7-WHLrOnNNmLzy2g1PyVqg&oe=699A1102&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xRLO-yjopLQViSsY_CtyzPczptFuGD8ue5wFaQaK-w&oe=6999F655&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVO1T_kOE84zl1MVAKRhXs5qaNffIIV3FO7o7ClFmDFw&oe=6999FE0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzltnBcDdaQVFdLQlunE8zwh-WpVhzjOEnYXSATK3pA&oe=699A159A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEHFUIZplqscKH9Tacwxgy6EVB1J_HGhHoHXzmINlmag&oe=699A076F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzYTlTzjVhRFL2D0Aye-mxjvAzCZW9ABTmr14hrS6cLA&oe=699A0BA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGboqqi0HNNxcvNmpv17zzk-cgIZS9iB2UIKgOQ-6hYvQ&oe=699A2410&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoW2BSanTRRtvAcoycsAALWI-qbrQyfGpMkPKTPH-AKA&oe=6999F9EA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5obWVcPamh4YHzMFKvUeW_1-y_VB2FigYQ8Em09QgRg&oe=6999F43B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9jMLzbrE7KdkdLlwf8XTI3xvl9nPlb50sjUcoAXl2_A&oe=6999FDA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXf3-VNZxChd-Hq77P7ibExondCxUE6ZuY9wdsZee6FQ&oe=699A012B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl70_-4HWlY3PyjRSwbASAaOJY0OxDL8H8mKL5TZ-RhQ&oe=699A0A64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7rARqKml_KFx97TMlHTQEws350mgBLsN-rEQNQN0fvw&oe=699A2845&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKjDugYS6GTokvtUjZZxYcgJnSuaZX3p5PYbNwKPpSAA&oe=6999FDED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1eBpY5uTXfoj2Tu7lUP-p1ip3O7yjgAMS29wOcAtCw&oe=699A1652&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH3SaHj16vxiTksQFF5yun4mWpu077ueHnjvuBYp3i3g&oe=6999F3D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFd57m-B6HGQSmeQ1QcxBe-HnTpyqMC5uKaKKdxFLNqMg&oe=699A0FD1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkIjJF26mdW9i0zYAC_d5PtEGbpKB5yp5iKmmWeE46Aw&oe=699A15F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHMGSBSD5hYPr6dhCoGqA-2mAyWxe72HV9165FXI2bHg&oe=6999F177&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo9W8aQVjTB8QSbSOCKpjcXcfXX-UMTby0r8Eh8129sg&oe=699A09C2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUdMggv0B3vWtcm2gTT2xAgOUDQD1DwOZCNMht9QD6tA&oe=6999F9E5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp_pu-xevBWbeyAWwWa6rCEx6ODn5pV60vqavrBOvAQ&oe=6999FF4A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfgGeGeBToibzPuHF7Wi7KCr7f5eUE0gypCGXh9w__g&oe=6999FFBA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_tTbf1_aCWl8r3PlnuiYrjj_LlMZ4KyMCXHHDP8ufRg&oe=699A20AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjk5iF3r-8Yhg5PYtwX8l8A0KOUCRgNrPYS_eIX5FVuQ&oe=699A1FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGL27cIWKOiF6OKsWsr2HTUvFivupK-r7sR8BmyzmgU1A&oe=6999F8D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV4HH6ILv7uDIXoTwO2Z8Zb6DEtBliahuI-wfwF4v1cQ&oe=699A266E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmEF4PewHbCk0ohniEv1iK_6nNGJdnfUjn1mXegiXiTg&oe=699A1918&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmFT5AayutIgwX_b8sTBAPxJhE93y2eDUF_GM6W1q1bw&oe=6999F5D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV6RfnT9FcQoEXplHeqRiBdA3qZd-edOR4Qf7xBhwQRQ&oe=699A1839&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8YcH5PXfRDIfuzto0eC13ahV69RUE57onHkL8b7HTCA&oe=699A0AC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG7ZKa3iFqz2RPLwX4O2VKN851_wth73WqMQMqXDWMMg&oe=699A1861&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_664Chf-n44EIgmbH61gVIvo19B5iUc4UyONIilKhw&oe=6999F7F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCYBxPOUaWpa9IUhLNHGqyGQFj3mc0Q-O84s9iU4ZGzg&oe=699A14F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMzq2Sx8Tmj9lLgqXk95VnpnDolhYn0IoiD6okj0uZiw&oe=699A23C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbbsCBiYlP3S9tRJzKvPLFiaS_YpUVPHKGLUGM7dqP3A&oe=699A108F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp-eNR4SsImglgKOknJmlOm_lLiQGvz-A0X5ddfZ893Q&oe=699A03BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHH5An7Pn2PrO36PUhtzrqcdtIPEb5JrFwTia1KwU79OQ&oe=699A0742&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2qf3S8XdoAn1goKs1IiYmhwMTtVxcDzG1JYG7rHvoDQ&oe=6999F48E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcBmsxv_db9tHfmaPT5frKXse_XHGpIZYw3LmlUfAVrA&oe=6999FB74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrmEJ73H0a1KZ8t10bowiUS5TyX8CzJp5cYI2TMqTh4w&oe=699A1952&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt2wdkEsfto1CGpAd5oQYVrvf6XSVx6XXKkNIdB7s-_g&oe=699A0C90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYcoXpcCNN8sBaMmn5EENI0kDSXJrxUm4ew__DqXhDw&oe=699A007C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf9uQsKP54fuRzaHgxJ7KfRjAkQuPzlymKrpPACPERGg&oe=699A03B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEm1HGcOAtAVtle2N5U0-WTtmDrLov-0wwdDXDT0ShpEA&oe=6999FE2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqRwYPx06-zU0oZbIyVuAQU97cgNcTJnFob1NtOiELRQ&oe=6999F2BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi1HN_iWJu2-Xt-7WnXzLrXD0waPCGk_mjSdpQ9Or0yQ&oe=699A0C5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWgjuTUT0hMiIEcb5iTeWgI5fe9d2z82fBal_zOhMHrA&oe=6999F790&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0EE5LNXGsnJW6BqfbmL7XAgeef6t7OPfhv6InxX-XKA&oe=699A1384&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZfLEQZTKJcI9cPh5G3PTRNKNxHTMqwEoL5lL7sHmFKA&oe=6999FEAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFw6mpAxQXjbo6qeGdblIiJRZJUtpXeP0uLXY8P9EXs3w&oe=699A1ABA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpr3Zbm_ZT1fSLX-RLjKluXbLfUIGjIyYRTnk_VHVI8w&oe=699A08D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqxSK_8UTIXBXb6SuglD0gwC8HdVRcthG1WZ_xdVuxpA&oe=699A15CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUH_PsQsBDEaqZWRNHCXV9WsmtImmrzc7kA9aM9v-PA&oe=6999F2F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDbrjZc9Ys5O5AUtxIgDEUaUvG9FxGOsu2F_YP0zlBg&oe=699A0084&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdx6ewGHWhriIWCfglO3UlQqNGSkqVSQbMioT1Q4D4Cw&oe=699A0C3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGK6XYXQ295u2nPIn9snWhpQ_Yf6i8TRyW-IdLwUq1Cg&oe=699A1065&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGm9jtARvnetB1yNOwdDahcwWZIr6SSSMzQJbMSG0AGzw&oe=699A27FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzxQHlQ4s8B8u0UWRo1hlPJJdKEuy-j7V3CfGYhNutnQ&oe=699A0D02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKHY0Q_Tcfq710-8MEY-d2Rw3k7IWLEkn0dn54oYWgtA&oe=6999FBA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHBNHw5PxMCJeKhYVehUhnK_z91PHvgzko6anE8eeP2g&oe=6999F6C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGemyfFpn7j1GWfyB5pVkHjE8u3wGQN6FHlEugSFGLMPw&oe=699A1C67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHqE_4hZs8yNddxEIhehMHprSuW8tX5mKZV168q3l3qw&oe=699A0780&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLsuc4adsbyOmv85VNe3z1lrIL7B4QDYDlnwsahJUjUw&oe=699A1F1D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIYa0bBypMYjRAC3ad9hm7ceTdFe2pYKvGZ5YxQjd-mA&oe=699A2707&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDcXwVWWX3Jl-lvlgkdY83O9pvEsEIAX4L2nPaHwkK4A&oe=699A22A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Yc5Le5-boVOfuKOJHiHuFX4dqkBmy8Eo0gkCyGtyJA&oe=6999FAC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-osBw9PwkPWhwDkrmuOvc8dG7nIHl0Q8vnSVXENpJg&oe=6999F711&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1JzB7j22ucRh0HIlVg9faOr7tYNT-iZ7CXXHghSC96A&oe=699A08DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVVZ2GTjIalopCZN1244Bc6omvUzTijjdN2dzLFYqIFQ&oe=699A22F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOLNKTCYnhiSdDPoN81nv2CFZYdoMjQlWMFKE0TyNttg&oe=699A0714&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wElcDq-bKSGm4_4_UhilgUTj_mfM533tCQY0sVo2G9NWw&oe=6999F1D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuuyOgEBQ-xeZVP8Zr3E--PogEPPvLtiy74ICqKt9ubA&oe=699A197E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv434Z9cubYu_X1iRyldUSqSkV3wuvTQckGvgXYax6aQ&oe=699A216E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSg8xkbh_w5ZpqxpXU6ySbk11lJFxX2aF5KPeOQGvNaA&oe=699A049A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQHKZJ-3r6yJmSOC373_kWPxwRrZX9qwU-5vSa9gbK9g&oe=699A0176&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUV-ehheht4o7C9nUuoZz6TdABTPnyB8v-9f3qxJlJRg&oe=699A099B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9_Xf95QDfJ_VDvo_b73YgXQTDniZ3bozYsKM4aY1JiA&oe=699A2647&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJPGLhrq4QYRYS6VLXCyH-o7LU4CfUkdZCm5isCLxhSA&oe=699A034E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9iVOKUVU85oXp92mhxcSoZFnnlo45mKVkKxGoLOB0lA&oe=699A07F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6xiKMG6eQKZgclM_c0gz6Z_y1XfeYgYo5bsaNUHGccw&oe=699A2320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWtFa4f84EppQqDVP61yaYAvh3XZqC04-zAxRk-ByB1g&oe=699A184B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPuKNmgTJuaBhx4B-lMNBFunnVNAJEfzDnKf2-6ZVVHA&oe=699A26E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDCieAM4HmlBWtZVBwuXqgj1ZRDcNcLxcg5nY6hcjYPg&oe=6999FB52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTCYLmnRdkr5Nfgq5d9R8FkBjr53FMwX4rwQhCcj8mDw&oe=6999FB65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy6kk59RDFPjkpeqh_ZMnVosnfNtYJf1SCUrfTIhx3iw&oe=699A0A45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4XoDyvf8k3dxeq6AG-aivby8wEJUS1XSUdKVXnl05Og&oe=6999F723&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1YNJR0TdAscmk6h5AsJIhCJgh91dpm6vfPgyyAnLalQ&oe=699A0AB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-11 19:19:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:00.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:00'),
(2374, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":false,\"id\":\"AC0EA623D9AD11A50BD653BD5EE037B6\"},\"pushName\":\"Nelson da silva junior\",\"message\":{\"extendedTextMessage\":{\"text\":\"?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AfjYoJogIyS+SGQl5PCOm9ZSG4ON3vhV1KAAhmNpl1E=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848400,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:00.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:00'),
(2375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:00.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:00'),
(2376, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:00.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:00'),
(2377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":false,\"id\":\"AC0EA623D9AD11A50BD653BD5EE037B6\"},\"pushName\":\"Nelson da silva junior\",\"message\":{\"extendedTextMessage\":{\"text\":\"?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AfjYoJogIyS+SGQl5PCOm9ZSG4ON3vhV1KAAhmNpl1E=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848400,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:00.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:00'),
(2378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:01.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:01'),
(2379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:01.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:01'),
(2380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:00.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:01'),
(2381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC5147A79B6F9D9E87758E30726D9E7F\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"???\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LUkUULz3tIWb7pbFOF969EAABJpGceMTSNzYcCZcLyU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848422,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:22.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:23'),
(2382, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:22.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:23'),
(2383, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:22.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:23'),
(2384, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC5147A79B6F9D9E87758E30726D9E7F\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"???\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LUkUULz3tIWb7pbFOF969EAABJpGceMTSNzYcCZcLyU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848422,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:22.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:23'),
(2385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:23.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:23'),
(2386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:23.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:24'),
(2387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:23.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:24'),
(2388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:23.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:24'),
(2389, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:36.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:36'),
(2390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:36.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:36'),
(2391, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC52B9E218AF5A9A9DCEEC175BDC7C57\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Sim sim,to ligado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i6uucQP9npjujIXHd0\\/+uNuIYMb7J3C2Jxu8Lxpu130=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848436,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:36.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:36'),
(2392, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"AC52B9E218AF5A9A9DCEEC175BDC7C57\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"conversation\":\"Sim sim,to ligado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i6uucQP9npjujIXHd0\\/+uNuIYMb7J3C2Jxu8Lxpu130=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848436,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:36.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:37'),
(2393, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:37.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:37'),
(2394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:37.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:20:37'),
(2395, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:37.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:37'),
(2396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:20:37.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:20:37'),
(2397, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.491Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:33'),
(2398, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.496Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:33'),
(2399, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.493Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:33'),
(2400, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"close\",\"statusReason\":428},\"date_time\":\"2026-02-11T19:21:33.462Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:33'),
(2401, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.508Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:33'),
(2402, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-11T19:21:34.553Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:34'),
(2403, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.492Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:34'),
(2404, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.503Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:34'),
(2405, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.488Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:34'),
(2406, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.494Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:34'),
(2407, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.498Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:35'),
(2408, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.500Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:35'),
(2409, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.495Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:35'),
(2410, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.497Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:35'),
(2411, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.504Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:35'),
(2412, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.501Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:36'),
(2413, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.505Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:36'),
(2414, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.490Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:36'),
(2415, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.499Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:36'),
(2416, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.510Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:36'),
(2417, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-11T19:21:33.718Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:37'),
(2418, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.502Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:37'),
(2419, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T19:21:33.507Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:21:37'),
(2420, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:36.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:23:37'),
(2421, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A5ABD4790510BDB4594F96D3FF2BAF81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ Dispositivo ativado!\\n\\n💠 ID: 145872854266\\n📦 Plano: IBOPLAYER\\n💻 MAC: B8:B4:09:72:C6:50\\n📅 Tipo: Anual\\n📆 Expira: 11\\/02\\/2027\\nUse \\/start para recomeçar.\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770848616,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:36.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:23:37'),
(2422, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:36.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:23:37'),
(2423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":true,\"id\":\"A5ABD4790510BDB4594F96D3FF2BAF81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ Dispositivo ativado!\\n\\n💠 ID: 145872854266\\n📦 Plano: IBOPLAYER\\n💻 MAC: B8:B4:09:72:C6:50\\n📅 Tipo: Anual\\n📆 Expira: 11\\/02\\/2027\\nUse \\/start para recomeçar.\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770848616,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:36.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:23:37'),
(2424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:37.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:23:37'),
(2425, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:37.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:23:37'),
(2426, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A5ABD4790510BDB4594F96D3FF2BAF81\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848618438,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:38.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:23:38'),
(2427, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"112115876683817@lid\",\"id\":\"A5ABD4790510BDB4594F96D3FF2BAF81\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848618438,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:23:38.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:23:38'),
(2428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACE6B1E5523F53CF97692AB22866939C\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"A5ABD4790510BDB4594F96D3FF2BAF81\"},\"text\":\"👍🏼\",\"senderTimestampMs\":\"1770848648063\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770848648,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:08.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:08'),
(2429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:08.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:08'),
(2430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"ACE6B1E5523F53CF97692AB22866939C\"},\"pushName\":\"Paulo Rafael Damasio\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"112115876683817@lid\",\"fromMe\":false,\"id\":\"A5ABD4790510BDB4594F96D3FF2BAF81\"},\"text\":\"👍🏼\",\"senderTimestampMs\":\"1770848648063\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770848648,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:08.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:08'),
(2431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"112115876683817@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:08.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:09'),
(2432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:09.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:09'),
(2433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"112115876683817@lid\",\"pushName\":\"Paulo Rafael Damasio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/414473109_1687150232140327_7011678282694342168_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7H98Td1pYQcWFfoAlTDFKlI9aBqTZj-16IUCY2pSqVA&oe=6999FAAF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:09.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:09'),
(2434, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:58.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:58'),
(2435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:58.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:58'),
(2436, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":true,\"id\":\"A567CDF8813044A7CD73527E49D279EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587274054_26242659728697829_6189851147750767954_n.enc?ccb=11-4&oh=01_Q5Aa3wEcS3-QmnGJ9UmSDInWvB8qsK-RAVl_YMUW6v3rgIYQSg&oe=69B4780B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KCA5i1pnBSCdqiA5EZQZkCKavKSOYfO7qZvEKnhlNm8=\",\"fileLength\":\"3988\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"FR\\/JMUQ+w7n15\\/FevEQVUVDcPL9d5WLugVGZmUBZQmM=\",\"fileEncSha256\":\"sxNhz2bQyeSO4+6zRab7qhfRiXj3qJzY+D1Te2s5H3U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587274054_26242659728697829_6189851147750767954_n.enc?ccb=11-4&oh=01_Q5Aa3wEcS3-QmnGJ9UmSDInWvB8qsK-RAVl_YMUW6v3rgIYQSg&oe=69B4780B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848697\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":26977,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AB89TlxcW1pYVVFOTU5OTU9SVllWUk5NUFNWU09RVlZWTkhRVlFNSkdCREtMTEpJRUFLVFRTTjsUAQAAAAAAAA==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":26977,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:58.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:58'),
(2437, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":true,\"id\":\"A567CDF8813044A7CD73527E49D279EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587274054_26242659728697829_6189851147750767954_n.enc?ccb=11-4&oh=01_Q5Aa3wEcS3-QmnGJ9UmSDInWvB8qsK-RAVl_YMUW6v3rgIYQSg&oe=69B4780B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KCA5i1pnBSCdqiA5EZQZkCKavKSOYfO7qZvEKnhlNm8=\",\"fileLength\":\"3988\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"FR\\/JMUQ+w7n15\\/FevEQVUVDcPL9d5WLugVGZmUBZQmM=\",\"fileEncSha256\":\"sxNhz2bQyeSO4+6zRab7qhfRiXj3qJzY+D1Te2s5H3U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587274054_26242659728697829_6189851147750767954_n.enc?ccb=11-4&oh=01_Q5Aa3wEcS3-QmnGJ9UmSDInWvB8qsK-RAVl_YMUW6v3rgIYQSg&oe=69B4780B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848697\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":26977,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AB89TlxcW1pYVVFOTU5OTU9SVllWUk5NUFNWU09RVlZWTkhRVlFNSkdCREtMTEpJRUFLVFRTTjsUAQAAAAAAAA==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":26977,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:58.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:58'),
(2438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:58.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:58'),
(2439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:58.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:58'),
(2440, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A567CDF8813044A7CD73527E49D279EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848699619,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:59.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:24:59'),
(2441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A567CDF8813044A7CD73527E49D279EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848699619,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:24:59.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:24:59'),
(2442, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:02.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:02'),
(2443, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":true,\"id\":\"A59CB42246AE8659EE11414E5C07A068\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30778852_1441076260969401_9040397108768424253_n.enc?ccb=11-4&oh=01_Q5Aa3wEnAV0rbrOwVfupLpOwX9T4UqQmw8rvRWhVX1TaiZ-ifw&oe=69B45AB3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"b2KZdO8\\/Imgz6McXDusN1GGkAfs\\/uFREEu7IgX+JfxM=\",\"fileLength\":\"3736\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"Mc+l4Gxw2u9Xez9TovdpuRhZdXVF6a60k5CdjaBfsjQ=\",\"fileEncSha256\":\"OqPGqB2zKZNU6X9bSjJ3EiSmSH5rRLXZGP7ivB8+CaY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30778852_1441076260969401_9040397108768424253_n.enc?ccb=11-4&oh=01_Q5Aa3wEnAV0rbrOwVfupLpOwX9T4UqQmw8rvRWhVX1TaiZ-ifw&oe=69B45AB3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848702\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAMbMj9MVFtbWVZRTEhGQ0E\\/PUBGT1hbW1hVQi07SUpLSEVAOjMyPUVISERDRUZHR0VAOSMGAAAAAAAAAA==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848702,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:02.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:02'),
(2444, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:02.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:02'),
(2445, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":true,\"id\":\"A59CB42246AE8659EE11414E5C07A068\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30778852_1441076260969401_9040397108768424253_n.enc?ccb=11-4&oh=01_Q5Aa3wEnAV0rbrOwVfupLpOwX9T4UqQmw8rvRWhVX1TaiZ-ifw&oe=69B45AB3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"b2KZdO8\\/Imgz6McXDusN1GGkAfs\\/uFREEu7IgX+JfxM=\",\"fileLength\":\"3736\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"Mc+l4Gxw2u9Xez9TovdpuRhZdXVF6a60k5CdjaBfsjQ=\",\"fileEncSha256\":\"OqPGqB2zKZNU6X9bSjJ3EiSmSH5rRLXZGP7ivB8+CaY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30778852_1441076260969401_9040397108768424253_n.enc?ccb=11-4&oh=01_Q5Aa3wEnAV0rbrOwVfupLpOwX9T4UqQmw8rvRWhVX1TaiZ-ifw&oe=69B45AB3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848702\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAMbMj9MVFtbWVZRTEhGQ0E\\/PUBGT1hbW1hVQi07SUpLSEVAOjMyPUVISERDRUZHR0VAOSMGAAAAAAAAAA==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848702,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:02.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:02'),
(2446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A59CB42246AE8659EE11414E5C07A068\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848702813,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:02.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A59CB42246AE8659EE11414E5C07A068\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848702813,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:02.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:03'),
(2448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:03.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:03'),
(2449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:03.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:03'),
(2450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:19.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:19'),
(2451, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:19.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:19'),
(2452, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848718,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:19.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:19'),
(2453, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848718,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:19.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:19'),
(2454, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:19.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:19'),
(2455, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848720195,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:20.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:20'),
(2456, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848720195,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:20.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:20'),
(2457, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:19.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:20'),
(2458, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual erro?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848720,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:20.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:20'),
(2459, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:20.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:20'),
(2460, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual erro?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848720,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:20.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:21'),
(2461, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:21.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:21'),
(2462, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:20.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:21'),
(2463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:21.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:21'),
(2464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848721900,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:21.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:21'),
(2465, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848721900,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:21.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:22'),
(2466, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:22'),
(2467, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Manda foto\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848722,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:22'),
(2468, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:22'),
(2469, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Manda foto\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848722,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:22'),
(2470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:23.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:23'),
(2471, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A567CDF8813044A7CD73527E49D279EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848722913,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:23'),
(2472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhTz31udv6sv9uvU-nIn-SInQiSKDjUH722_2ankayg&oe=699A2C80&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:23.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:23'),
(2473, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A567CDF8813044A7CD73527E49D279EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848722913,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:23'),
(2474, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A59CB42246AE8659EE11414E5C07A068\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848722910,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:23'),
(2475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848723502,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:23.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:24'),
(2476, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848723502,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:23.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:24'),
(2477, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A59CB42246AE8659EE11414E5C07A068\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848722910,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:22.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:24'),
(2478, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A59CB42246AE8659EE11414E5C07A068\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848723793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:23.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:24'),
(2479, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A59CB42246AE8659EE11414E5C07A068\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848723793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:23.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:25'),
(2480, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A567CDF8813044A7CD73527E49D279EB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848726324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:26.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:26'),
(2481, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A567CDF8813044A7CD73527E49D279EB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848726324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:26.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:26'),
(2482, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC170DB5C5590537EE0A7902B5CAD4B6\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VEr274whjXwBf850fDhfwWplSCStBoo6noF4bUp4ZXA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:46.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:47'),
(2483, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:46.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:47'),
(2484, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC170DB5C5590537EE0A7902B5CAD4B6\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VEr274whjXwBf850fDhfwWplSCStBoo6noF4bUp4ZXA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:46.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:47'),
(2485, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:46.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:47'),
(2486, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"pushName\":\"Rita Theodoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:47.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:47'),
(2487, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"pushName\":\"Rita Theodoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:47.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:48'),
(2488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:47.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:48'),
(2489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:47.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:49'),
(2490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC1313BF4221C7AB9DEC45A9FD6A117A\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595402571_1302368088381176_300570717934218927_n.enc?ccb=11-4&oh=01_Q5Aa3wF9an6VsYGujF59h2TCVQBtWdvp8ZF47t0oSFH3S3wk-g&oe=69B4580C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"hMzZxx5ZihqFQettJRLXgTGYmGoeeW52amTGIH4o+Qw=\",\"fileLength\":\"91199\",\"height\":1280,\"width\":720,\"mediaKey\":\"1pU+3El275d5qnOSeW6mzin5sqGtGfds5RY3hm9As3o=\",\"fileEncSha256\":\"YT0Ll\\/kVk+IuBrBhjDpTSiBTap\\/BRAM25DP3nprNv9o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595402571_1302368088381176_300570717934218927_n.enc?ccb=11-4&oh=01_Q5Aa3wF9an6VsYGujF59h2TCVQBtWdvp8ZF47t0oSFH3S3wk-g&oe=69B4580C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848756\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAAMBAQEAAAAAAAAAAAAAAAACAwEEBf\\/aAAwDAQACEAMQAAAA4nzfQ4up94UappWfATaN6yVs1DDGltG5LRalF2BcCcvT53XzmFAAD\\/\\/EACEQAAICAwACAgMAAAAAAAAAAAECAAMREiEEMRBRIkFC\\/9oACAEBAAE\\/ACSmMCKbmPDyOjqowTmDymSvQxuky9fxUiUXrUR3Mt8rKqdY7FmB6YbFjXcwRmC8AcrEPlOwwqiNdePZmzfc19bGZVVgZT74Zuh7tDYh\\/kzAmOTRoK5oZriLpC9YMDKfQm4EK2Bcgxc5PwHIHJgmClBLTV+owAPxkfc\\/\\/8QAHREAAgIBBQAAAAAAAAAAAAAAAAECERIQMUFRYf\\/aAAgBAgEBPwB8jje5Q5mfpnHsyZbLZWv\\/xAAeEQABAwQDAAAAAAAAAAAAAAAAARESAhMhYRBRUv\\/aAAgBAwEBPwBMo7CVMSqLdPRbTyhHREZDGiWOf\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"NmQY6o2R7dyhNqsKx4cp57KYzKSc9r\\/oUmak+len3bPWQjlNWzNX3Q==\",\"scanLengths\":[10019,37819,15083,28278],\"midQualityFileSha256\":\"GkEjKbMbsvGwfBt0fiOk\\/fuVuBmJpOObmiblhIkm2v0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G\\/G\\/sVlCwZmnvrXcmO2QoZZg1ZidpB3SGgJDFLxs+dY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770848756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:56.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:57'),
(2491, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:56.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:57'),
(2492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:57.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:57'),
(2493, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC1313BF4221C7AB9DEC45A9FD6A117A\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595402571_1302368088381176_300570717934218927_n.enc?ccb=11-4&oh=01_Q5Aa3wF9an6VsYGujF59h2TCVQBtWdvp8ZF47t0oSFH3S3wk-g&oe=69B4580C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"hMzZxx5ZihqFQettJRLXgTGYmGoeeW52amTGIH4o+Qw=\",\"fileLength\":\"91199\",\"height\":1280,\"width\":720,\"mediaKey\":\"1pU+3El275d5qnOSeW6mzin5sqGtGfds5RY3hm9As3o=\",\"fileEncSha256\":\"YT0Ll\\/kVk+IuBrBhjDpTSiBTap\\/BRAM25DP3nprNv9o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595402571_1302368088381176_300570717934218927_n.enc?ccb=11-4&oh=01_Q5Aa3wF9an6VsYGujF59h2TCVQBtWdvp8ZF47t0oSFH3S3wk-g&oe=69B4580C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848756\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAAMBAQEAAAAAAAAAAAAAAAACAwEEBf\\/aAAwDAQACEAMQAAAA4nzfQ4up94UappWfATaN6yVs1DDGltG5LRalF2BcCcvT53XzmFAAD\\/\\/EACEQAAICAwACAgMAAAAAAAAAAAECAAMREiEEMRBRIkFC\\/9oACAEBAAE\\/ACSmMCKbmPDyOjqowTmDymSvQxuky9fxUiUXrUR3Mt8rKqdY7FmB6YbFjXcwRmC8AcrEPlOwwqiNdePZmzfc19bGZVVgZT74Zuh7tDYh\\/kzAmOTRoK5oZriLpC9YMDKfQm4EK2Bcgxc5PwHIHJgmClBLTV+owAPxkfc\\/\\/8QAHREAAgIBBQAAAAAAAAAAAAAAAAECERIQMUFRYf\\/aAAgBAgEBPwB8jje5Q5mfpnHsyZbLZWv\\/xAAeEQABAwQDAAAAAAAAAAAAAAAAARESAhMhYRBRUv\\/aAAgBAwEBPwBMo7CVMSqLdPRbTyhHREZDGiWOf\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"NmQY6o2R7dyhNqsKx4cp57KYzKSc9r\\/oUmak+len3bPWQjlNWzNX3Q==\",\"scanLengths\":[10019,37819,15083,28278],\"midQualityFileSha256\":\"GkEjKbMbsvGwfBt0fiOk\\/fuVuBmJpOObmiblhIkm2v0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G\\/G\\/sVlCwZmnvrXcmO2QoZZg1ZidpB3SGgJDFLxs+dY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770848756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:56.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:57'),
(2494, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:56.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:57'),
(2495, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:57.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:25:58'),
(2496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:57.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:58'),
(2497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:25:57.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:25:58'),
(2498, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":false,\"id\":\"AC966B3E6351432DFDAEDEEE3015889C\"},\"pushName\":\"Nelson da silva junior\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633991258_783688390834974_8579223643141570437_n.enc?ccb=11-4&oh=01_Q5Aa3wHrpo0i71zkkxsqcf1RGXb2Hh6E_w1hdKbxeMN0JykdOw&oe=69B466FC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cpxlnJjpRDQH5dDBlqPpMaK9veCZse6xuETpvz8u6XE=\",\"fileLength\":\"29870\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"skO+0N7tXf6fmnuRCSpIJqSvTRV0aGLpPwqoExgM+UQ=\",\"fileEncSha256\":\"j2d44qL7Fa2VWVc5FupunUVBD14rzSg0ZR74aLwMUXE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633991258_783688390834974_8579223643141570437_n.enc?ccb=11-4&oh=01_Q5Aa3wHrpo0i71zkkxsqcf1RGXb2Hh6E_w1hdKbxeMN0JykdOw&oe=69B466FC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848753\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAMBEQBKThFcRUgDAwIAAABdWztPW0tcK1FUV004MUlQLE1TLEdJTVZSXEhIFAAHAERYXE4\\/OjESMTM8SgtJIQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0o94SzjeosihIPOqesHiY52TkCQa7JDLx5dk5iJlONE=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848765,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:05.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:05'),
(2499, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":false,\"id\":\"AC966B3E6351432DFDAEDEEE3015889C\"},\"pushName\":\"Nelson da silva junior\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633991258_783688390834974_8579223643141570437_n.enc?ccb=11-4&oh=01_Q5Aa3wHrpo0i71zkkxsqcf1RGXb2Hh6E_w1hdKbxeMN0JykdOw&oe=69B466FC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cpxlnJjpRDQH5dDBlqPpMaK9veCZse6xuETpvz8u6XE=\",\"fileLength\":\"29870\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"skO+0N7tXf6fmnuRCSpIJqSvTRV0aGLpPwqoExgM+UQ=\",\"fileEncSha256\":\"j2d44qL7Fa2VWVc5FupunUVBD14rzSg0ZR74aLwMUXE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633991258_783688390834974_8579223643141570437_n.enc?ccb=11-4&oh=01_Q5Aa3wHrpo0i71zkkxsqcf1RGXb2Hh6E_w1hdKbxeMN0JykdOw&oe=69B466FC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848753\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAMBEQBKThFcRUgDAwIAAABdWztPW0tcK1FUV004MUlQLE1TLEdJTVZSXEhIFAAHAERYXE4\\/OjESMTM8SgtJIQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0o94SzjeosihIPOqesHiY52TkCQa7JDLx5dk5iJlONE=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848765,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:05.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:05'),
(2500, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:05.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:05'),
(2501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:05.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:05'),
(2502, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:05.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:05'),
(2503, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:06.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:06'),
(2504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:05.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:06'),
(2505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:06.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:06'),
(2506, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:15'),
(2507, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"ACB6250227208A70D5ACE965C8867DCE\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Está  com algum problema?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0r9CzR9g\\/uQuWgklzuvK8k2UFF4RXB7+dq6Iyqqvf54=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848775,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:15'),
(2508, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2509, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"ACB6250227208A70D5ACE965C8867DCE\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Está  com algum problema?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0r9CzR9g\\/uQuWgklzuvK8k2UFF4RXB7+dq6Iyqqvf54=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848775,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:15'),
(2510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:15'),
(2511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:16'),
(2512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:16'),
(2513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:15.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:16'),
(2514, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":true,\"id\":\"A50F740E438254E394570AD931267CC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634148388_1385596753321252_5717452552078281303_n.enc?ccb=11-4&oh=01_Q5Aa3wFisMlfaR-MVuzZJ5BpT7dwu-xotvNHXzNvoaHaBGgjJg&oe=69B4748D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BopNAeugEPOLbujYX2QVUS2O4zPyT\\/dn0azxvnN2WMQ=\",\"fileLength\":\"17903\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"uhLrC5yh+YQIiv3AEHfwZsSozJAGHzYm0hm7bTHqcKU=\",\"fileEncSha256\":\"S0TFx19c6kaWGXiUVNoqWxbOF+DOBAdgJ9xdSEWhZjo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634148388_1385596753321252_5717452552078281303_n.enc?ccb=11-4&oh=01_Q5Aa3wFisMlfaR-MVuzZJ5BpT7dwu-xotvNHXzNvoaHaBGgjJg&oe=69B4748D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848799\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"ACVPRVw\\/UWFbVQZdTzFTUkdJUTFUXV4sHA8CHgAAAAANFTNOVE1eUEhJTUI\\/VFNUCgEAXzxcV0ljPVlCWFEsUA==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848806,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:46'),
(2515, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:46'),
(2516, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241274267389962@lid\",\"fromMe\":true,\"id\":\"A50F740E438254E394570AD931267CC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634148388_1385596753321252_5717452552078281303_n.enc?ccb=11-4&oh=01_Q5Aa3wFisMlfaR-MVuzZJ5BpT7dwu-xotvNHXzNvoaHaBGgjJg&oe=69B4748D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BopNAeugEPOLbujYX2QVUS2O4zPyT\\/dn0azxvnN2WMQ=\",\"fileLength\":\"17903\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"uhLrC5yh+YQIiv3AEHfwZsSozJAGHzYm0hm7bTHqcKU=\",\"fileEncSha256\":\"S0TFx19c6kaWGXiUVNoqWxbOF+DOBAdgJ9xdSEWhZjo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634148388_1385596753321252_5717452552078281303_n.enc?ccb=11-4&oh=01_Q5Aa3wFisMlfaR-MVuzZJ5BpT7dwu-xotvNHXzNvoaHaBGgjJg&oe=69B4748D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848799\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"ACVPRVw\\/UWFbVQZdTzFTUkdJUTFUXV4sHA8CHgAAAAANFTNOVE1eUEhJTUI\\/VFNUCgEAXzxcV0ljPVlCWFEsUA==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1759866338\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848806,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:46'),
(2517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241274267389962@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:46'),
(2518, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A50F740E438254E394570AD931267CC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848806982,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:47'),
(2519, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:26:47'),
(2520, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A50F740E438254E394570AD931267CC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848806982,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:47'),
(2521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"pushName\":\"Nelson da silva junior\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464710784_1725049361586574_2883626870999963644_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAkpY-alTHdG5fdn4b5PM4RCmx_DLiXNwy4OI2h471nA&oe=699A1358&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:26:46.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:26:47'),
(2522, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":true,\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35723734_2099230547493832_7088386075432387490_n.enc?ccb=11-4&oh=01_Q5Aa3wH3zWH32dAtErFDrUW4gGAqEl7iZwuIozsvyLUZSVR50w&oe=69B48CBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HTsI\\/bBMSrCab\\/pCBmceavxAT8451GR8doj9l0DfbnY=\",\"fileLength\":\"24732\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"YeEZSjrERrhJGiPb8E6sEhLhpTEaQsvfupk+OccbjCw=\",\"fileEncSha256\":\"p5GTEEYOW2joMd6vXuo6oJLx\\/+D2iDh\\/7nkwAbMJCiM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35723734_2099230547493832_7088386075432387490_n.enc?ccb=11-4&oh=01_Q5Aa3wH3zWH32dAtErFDrUW4gGAqEl7iZwuIozsvyLUZSVR50w&oe=69B48CBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848816\",\"waveform\":\"AAAAS1JZUVVHQiJPG0pJQVVMWw9MWU9ITT9DHkRBT00wVjUnAAAAAwlUVUFNNjVQVRtFTExRSyRJM0RAUFQ2QA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848825,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:05.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:05'),
(2523, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":true,\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35723734_2099230547493832_7088386075432387490_n.enc?ccb=11-4&oh=01_Q5Aa3wH3zWH32dAtErFDrUW4gGAqEl7iZwuIozsvyLUZSVR50w&oe=69B48CBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HTsI\\/bBMSrCab\\/pCBmceavxAT8451GR8doj9l0DfbnY=\",\"fileLength\":\"24732\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"YeEZSjrERrhJGiPb8E6sEhLhpTEaQsvfupk+OccbjCw=\",\"fileEncSha256\":\"p5GTEEYOW2joMd6vXuo6oJLx\\/+D2iDh\\/7nkwAbMJCiM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35723734_2099230547493832_7088386075432387490_n.enc?ccb=11-4&oh=01_Q5Aa3wH3zWH32dAtErFDrUW4gGAqEl7iZwuIozsvyLUZSVR50w&oe=69B48CBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848816\",\"waveform\":\"AAAAS1JZUVVHQiJPG0pJQVVMWw9MWU9ITT9DHkRBT00wVjUnAAAAAwlUVUFNNjVQVRtFTExRSyRJM0RAUFQ2QA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848825,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:05.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:05'),
(2524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:05.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:05'),
(2525, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:05.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:05'),
(2526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:06.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:06'),
(2527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:06.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:06'),
(2528, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848826371,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:06.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:06'),
(2529, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848826371,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:06.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:06'),
(2530, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:14.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:14'),
(2531, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A52FBB30B773C844A179274FFBEF29D1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770848833,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:14.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:14'),
(2532, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:14.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:14'),
(2533, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A52FBB30B773C844A179274FFBEF29D1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770848833,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:14.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:14'),
(2534, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:14.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:14'),
(2535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:14.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:15'),
(2536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52FBB30B773C844A179274FFBEF29D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848835406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:15.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:15'),
(2537, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52FBB30B773C844A179274FFBEF29D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848835406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:15.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:15'),
(2538, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:21.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:21'),
(2539, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:21.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:22'),
(2540, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A523A8C730530C5DE9972C4F9DC34692\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UD4V9R0LE4\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770848841,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:21.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:22'),
(2541, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A523A8C730530C5DE9972C4F9DC34692\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848842224,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:22.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:22'),
(2542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A523A8C730530C5DE9972C4F9DC34692\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UD4V9R0LE4\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770848841,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:21.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:22'),
(2543, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A523A8C730530C5DE9972C4F9DC34692\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848842224,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:22.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:22'),
(2544, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A50F740E438254E394570AD931267CC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848843660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:23.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:23'),
(2545, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A50F740E438254E394570AD931267CC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848843660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:23.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:23'),
(2546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:22.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:24'),
(2547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:22.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:24'),
(2548, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A50F740E438254E394570AD931267CC3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848844369,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:24.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:24'),
(2549, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241274267389962@lid\",\"id\":\"A50F740E438254E394570AD931267CC3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848844369,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:24.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:24'),
(2550, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC2FE076A5EDDEBF912DF8E1D2969F26\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"🤷🏻\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x5EKyERIrHtI9GXac\\/a4MWs64ItOFR2vg1aiidI1E0g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:41.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:41'),
(2551, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":false,\"id\":\"AC2FE076A5EDDEBF912DF8E1D2969F26\"},\"pushName\":\"✌️\",\"message\":{\"conversation\":\"🤷🏻\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x5EKyERIrHtI9GXac\\/a4MWs64ItOFR2vg1aiidI1E0g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:41.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:41'),
(2552, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:41.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:42'),
(2553, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:41.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:42'),
(2554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:42.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:42'),
(2555, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:42.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:27:42'),
(2556, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:42.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:42'),
(2557, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:27:42.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:27:42'),
(2558, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A523A8C730530C5DE9972C4F9DC34692\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848899313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:19.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:28:19'),
(2559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52FBB30B773C844A179274FFBEF29D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848899319,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:19.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:28:19'),
(2560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A523A8C730530C5DE9972C4F9DC34692\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848899313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:19.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:28:19'),
(2561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52FBB30B773C844A179274FFBEF29D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848899319,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:19.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:28:19'),
(2562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848903673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:23.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:28:23'),
(2563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848903673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:23.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:28:23'),
(2564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848904155,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:24.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:28:24'),
(2565, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A5A78507CA6C1C01B350A6AEDD495E66\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848904155,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:28:24.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:28:24'),
(2566, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:05.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:05'),
(2567, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACDC3008A137261099DC8AB88C607335\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"👍\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3GT8uJq\\/u9uSy9LwBpPoAZEYYhR2ucfxKXYXjTtgdW8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:05.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:05'),
(2568, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:05.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:06'),
(2569, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACDC3008A137261099DC8AB88C607335\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"👍\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3GT8uJq\\/u9uSy9LwBpPoAZEYYhR2ucfxKXYXjTtgdW8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:05.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:06'),
(2570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:05.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:06'),
(2571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:06'),
(2572, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:05.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:06'),
(2573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A59D32EE4C7C0DCBA68A847B915F81D0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848947526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:07.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:07'),
(2574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A59D32EE4C7C0DCBA68A847B915F81D0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848947526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:07.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:07'),
(2575, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A59D32EE4C7C0DCBA68A847B915F81D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848946,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:07'),
(2576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:07'),
(2577, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1MV3yOwfimZ6Bk6Y3JI-Ij6wLfSYG48NfRfIqbVAKUg&oe=699A2CB1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:07'),
(2578, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:08.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:08'),
(2579, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:08.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:08');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:08.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:08'),
(2581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:08.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:08'),
(2582, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:07.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:08'),
(2583, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:09'),
(2584, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:09'),
(2585, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1MV3yOwfimZ6Bk6Y3JI-Ij6wLfSYG48NfRfIqbVAKUg&oe=699A2CB1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:09'),
(2586, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC5D7B7CFE7092B14C5643EF7EF9AF9D\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"A tá já tirei estou colocando novamente\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T4oZFzJpGU5fVweCupK7VsKCrvlLr+D0COyWjZosfuc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848947,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:07.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:09'),
(2587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:07.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:09'),
(2588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A59D32EE4C7C0DCBA68A847B915F81D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770848946,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:06.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:10'),
(2589, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC5D7B7CFE7092B14C5643EF7EF9AF9D\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"A tá já tirei estou colocando novamente\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T4oZFzJpGU5fVweCupK7VsKCrvlLr+D0COyWjZosfuc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848947,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:07.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:10'),
(2590, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:13'),
(2591, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC60CCE1E9A4C5C5477E7A86BAC73608\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"Muito obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QBYZmzdqD82YIlvxd6Fbcs\\/tpsaovBgDhwFOg7HCQgE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:13'),
(2592, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:13'),
(2593, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC60CCE1E9A4C5C5477E7A86BAC73608\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"Muito obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QBYZmzdqD82YIlvxd6Fbcs\\/tpsaovBgDhwFOg7HCQgE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770848953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:13'),
(2594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:13'),
(2595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:14'),
(2596, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:14'),
(2597, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:13.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:14'),
(2598, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:16'),
(2599, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A5110E0409EF38D6C605E4A812E3E988\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770848956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:16'),
(2600, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:16'),
(2601, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A5110E0409EF38D6C605E4A812E3E988\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770848956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:16'),
(2602, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5110E0409EF38D6C605E4A812E3E988\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848956506,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:16'),
(2603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1MV3yOwfimZ6Bk6Y3JI-Ij6wLfSYG48NfRfIqbVAKUg&oe=699A2CB1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:17'),
(2604, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5110E0409EF38D6C605E4A812E3E988\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848956506,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:17'),
(2605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1MV3yOwfimZ6Bk6Y3JI-Ij6wLfSYG48NfRfIqbVAKUg&oe=699A2CB1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:16.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:17'),
(2606, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/18963031_1476798537415060_1776524762920457635_n.enc?ccb=11-4&oh=01_Q5Aa3wF_9dnb7jWVMO1SxzOIG9S0asXijWRe0P8QbzXmKqGeNQ&oe=69B45A9E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2+nJm+wo2t0l2OaXI0GfnCSjKhHDQEIQtepQebccWEE=\",\"fileLength\":\"29777\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"sXTfCuXF5OcvosPnrB832VKCngCg0\\/BQdZIF4\\/fAepc=\",\"fileEncSha256\":\"6bdhJQd9eu9fAChueyOiORRQ38rs08kAoq+lKWqft\\/U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/18963031_1476798537415060_1776524762920457635_n.enc?ccb=11-4&oh=01_Q5Aa3wF_9dnb7jWVMO1SxzOIG9S0asXijWRe0P8QbzXmKqGeNQ&oe=69B45A9E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848964\",\"waveform\":\"ABYyVFJDRy1CVjMxSzhLXlQxWE1jS0haUTYbUSxTF0wMS0dSNlNOCElcI1NTT1E0Wkw0PBhKT1IpTlcxLjBGAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848975,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:36'),
(2607, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/18963031_1476798537415060_1776524762920457635_n.enc?ccb=11-4&oh=01_Q5Aa3wF_9dnb7jWVMO1SxzOIG9S0asXijWRe0P8QbzXmKqGeNQ&oe=69B45A9E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2+nJm+wo2t0l2OaXI0GfnCSjKhHDQEIQtepQebccWEE=\",\"fileLength\":\"29777\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"sXTfCuXF5OcvosPnrB832VKCngCg0\\/BQdZIF4\\/fAepc=\",\"fileEncSha256\":\"6bdhJQd9eu9fAChueyOiORRQ38rs08kAoq+lKWqft\\/U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/18963031_1476798537415060_1776524762920457635_n.enc?ccb=11-4&oh=01_Q5Aa3wF_9dnb7jWVMO1SxzOIG9S0asXijWRe0P8QbzXmKqGeNQ&oe=69B45A9E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770848964\",\"waveform\":\"ABYyVFJDRy1CVjMxSzhLXlQxWE1jS0haUTYbUSxTF0wMS0dSNlNOCElcI1NTT1E0Wkw0PBhKT1IpTlcxLjBGAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770848975,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:36'),
(2608, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:36'),
(2609, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848976369,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:36'),
(2610, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:36'),
(2611, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770848976369,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:37'),
(2612, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:37'),
(2613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:36.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:37'),
(2614, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848987133,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:47.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:47'),
(2615, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770848987133,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:47.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:47'),
(2616, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848988033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:48.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:29:48'),
(2617, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A579243FFB3943BB9D1CD5947DFE3CFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770848988033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:29:48.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:29:48'),
(2618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:11.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:11'),
(2619, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC136D8E3D3CD320A750400AECD06490\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/11952568_791547563969323_5681894516806593568_n.enc?ccb=11-4&oh=01_Q5Aa3wEcSGiJHm4sPRRinZLTltSym4B2a1aVqZjnDqySdLB_Aw&oe=69B47108&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"1ycuGlfCf9mtEzJGd1lGvFlqq0eBU8uJFF8S1OpEhEE=\",\"fileLength\":\"66499\",\"height\":1280,\"width\":720,\"mediaKey\":\"bFXOsz\\/KSRRJ6HHHYHVeHdmygu5wIoAAJuNC81wlOcU=\",\"fileEncSha256\":\"nIbgxTFmSY1jS\\/7rV4oJ+q3VkWtiqWfUZcXbRYpFMvw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/11952568_791547563969323_5681894516806593568_n.enc?ccb=11-4&oh=01_Q5Aa3wEcSGiJHm4sPRRinZLTltSym4B2a1aVqZjnDqySdLB_Aw&oe=69B47108&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849010\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAwQBAgUBAAMBAQEAAAAAAAAAAAAAAAABBAMCBf\\/aAAwDAQACEAMQAAAAr6n1Kkm0KSYDx+rCrKezmnKnSUSatU9vnM2RM9zyU473XJxWc98s6EiP\\/8QAJxAAAgIBAwIFBQAAAAAAAAAAAAECAxIRFCEEEyAiMUJRMjNBQ4H\\/2gAIAQEAAT8AS8O4rNzA3UDcxNyvg85rYRjJx1kyrp3Z+TZacZsVRKvhihmoRQ32Z4xf0k+qm5PkyLLEkym\\/SRff52x3IlbFv7sSxxl+1HFXvROSl7zj5MDAcDGOvqdseMo5IdmvEURafqtRqL1P6z\\/\\/xAAdEQADAQABBQAAAAAAAAAAAAAAARECEgMhQVFh\\/9oACAECAQE\\/AKioqF0MytDzleCI55g0uP04l0U7+z\\/\\/xAAeEQACAgICAwAAAAAAAAAAAAAAAgERAxIQISJRYf\\/aAAgBAwEBPwDVvRqxrI2enhbO5PIjFbxIrtfw3Kjjo\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"WeqJ8Mn\\/T56g7ScW1aI4Hj4OCo6QgBzURUECZAbpvOJXLv96GxWGDQ==\",\"scanLengths\":[8704,23675,9848,24272],\"midQualityFileSha256\":\"dyu3CKOumxYhFJYInSwuewbRkyi4U2I0wCKiaP9EzRk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"90ujI9H+8Uqc25Ky\\/qUgov5kea0srAJugd3lkSiYHu0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770849011,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:11.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:11'),
(2620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:11.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:11'),
(2621, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC136D8E3D3CD320A750400AECD06490\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/11952568_791547563969323_5681894516806593568_n.enc?ccb=11-4&oh=01_Q5Aa3wEcSGiJHm4sPRRinZLTltSym4B2a1aVqZjnDqySdLB_Aw&oe=69B47108&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"1ycuGlfCf9mtEzJGd1lGvFlqq0eBU8uJFF8S1OpEhEE=\",\"fileLength\":\"66499\",\"height\":1280,\"width\":720,\"mediaKey\":\"bFXOsz\\/KSRRJ6HHHYHVeHdmygu5wIoAAJuNC81wlOcU=\",\"fileEncSha256\":\"nIbgxTFmSY1jS\\/7rV4oJ+q3VkWtiqWfUZcXbRYpFMvw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/11952568_791547563969323_5681894516806593568_n.enc?ccb=11-4&oh=01_Q5Aa3wEcSGiJHm4sPRRinZLTltSym4B2a1aVqZjnDqySdLB_Aw&oe=69B47108&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849010\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAwQBAgUBAAMBAQEAAAAAAAAAAAAAAAABBAMCBf\\/aAAwDAQACEAMQAAAAr6n1Kkm0KSYDx+rCrKezmnKnSUSatU9vnM2RM9zyU473XJxWc98s6EiP\\/8QAJxAAAgIBAwIFBQAAAAAAAAAAAAECAxIRFCEEEyAiMUJRMjNBQ4H\\/2gAIAQEAAT8AS8O4rNzA3UDcxNyvg85rYRjJx1kyrp3Z+TZacZsVRKvhihmoRQ32Z4xf0k+qm5PkyLLEkym\\/SRff52x3IlbFv7sSxxl+1HFXvROSl7zj5MDAcDGOvqdseMo5IdmvEURafqtRqL1P6z\\/\\/xAAdEQADAQABBQAAAAAAAAAAAAAAARECEgMhQVFh\\/9oACAECAQE\\/AKioqF0MytDzleCI55g0uP04l0U7+z\\/\\/xAAeEQACAgICAwAAAAAAAAAAAAAAAgERAxIQISJRYf\\/aAAgBAwEBPwDVvRqxrI2enhbO5PIjFbxIrtfw3Kjjo\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"WeqJ8Mn\\/T56g7ScW1aI4Hj4OCo6QgBzURUECZAbpvOJXLv96GxWGDQ==\",\"scanLengths\":[8704,23675,9848,24272],\"midQualityFileSha256\":\"dyu3CKOumxYhFJYInSwuewbRkyi4U2I0wCKiaP9EzRk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"90ujI9H+8Uqc25Ky\\/qUgov5kea0srAJugd3lkSiYHu0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770849011,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:11.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:11'),
(2622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:11.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:12'),
(2623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:12.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:12'),
(2624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:11.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:12'),
(2625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:12.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:12'),
(2626, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:15.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:15'),
(2627, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"ACC3D9CF3BE9266796BB99C2E91CEA20\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Voltou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bfDrS2vEf1ACRlUrVFfFTNhmjpQfrKTla947X2oYLnU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:15.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:15'),
(2628, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:15.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:16'),
(2629, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"ACC3D9CF3BE9266796BB99C2E91CEA20\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Voltou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bfDrS2vEf1ACRlUrVFfFTNhmjpQfrKTla947X2oYLnU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:15.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:16'),
(2630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:16.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:16'),
(2631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:16.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:16'),
(2632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:16.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:16'),
(2633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:16.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:16'),
(2634, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:17.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:17'),
(2635, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"ACE73BFB2F0C1C2286FBF6A04ADFB8BF\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"O g\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x5agnbA4Vlwg2jNEU6mvmwtqy1TjhaLgSLxQhQ79kqg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849017,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:17.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:17'),
(2636, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:17.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:17'),
(2637, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"ACE73BFB2F0C1C2286FBF6A04ADFB8BF\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"O g\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x5agnbA4Vlwg2jNEU6mvmwtqy1TjhaLgSLxQhQ79kqg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849017,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:17.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:17'),
(2638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:17.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:18'),
(2639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:17.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:18'),
(2640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:18.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:18'),
(2641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:18.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:18'),
(2642, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:20.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:20'),
(2643, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC0EE350732FA76BA7B4E2E0C243030E\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L7vb5a+j8K4p9fzaYGoSqfxRr5jP+\\/lQLTyNI5d98dc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849020,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:20.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:20'),
(2644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:20.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:20'),
(2645, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":false,\"id\":\"AC0EE350732FA76BA7B4E2E0C243030E\"},\"pushName\":\"Rita Theodoro\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L7vb5a+j8K4p9fzaYGoSqfxRr5jP+\\/lQLTyNI5d98dc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849020,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:20.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:20'),
(2646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:20.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:20'),
(2647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:20.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:21.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:21'),
(2649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:21.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:21'),
(2650, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:27'),
(2651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/543509969_1170984674889802_4872587260703684803_n.enc?ccb=11-4&oh=01_Q5Aa3wGA2AJ7YRMjUy4u4Xg9pf344g0qaStBhcoC2YjgHguGlA&oe=69B47326&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"shkvpSCwTxVf7lxah3B5C8de0wHtOmRTsruUqyoYJAY=\",\"fileLength\":\"11549\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"0foc8HvJS+ZV\\/TOfNr5pTs8B0y60njQ\\/wK5GY\\/Jvg24=\",\"fileEncSha256\":\"h09kb2AT0LIKWfez9qdstvpIE960FtDhuFaYCznSTPY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/543509969_1170984674889802_4872587260703684803_n.enc?ccb=11-4&oh=01_Q5Aa3wGA2AJ7YRMjUy4u4Xg9pf344g0qaStBhcoC2YjgHguGlA&oe=69B47326&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849023\",\"waveform\":\"AAAABBAWADZjY15DLVtcTUFeWWFjYixYRRlhUFVeP1FVFgZiV2FgW0hJV1ZURUpHNEZOG0ZaXkRFVVszWk9bEw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770849027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:27'),
(2652, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:27'),
(2653, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/543509969_1170984674889802_4872587260703684803_n.enc?ccb=11-4&oh=01_Q5Aa3wGA2AJ7YRMjUy4u4Xg9pf344g0qaStBhcoC2YjgHguGlA&oe=69B47326&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"shkvpSCwTxVf7lxah3B5C8de0wHtOmRTsruUqyoYJAY=\",\"fileLength\":\"11549\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"0foc8HvJS+ZV\\/TOfNr5pTs8B0y60njQ\\/wK5GY\\/Jvg24=\",\"fileEncSha256\":\"h09kb2AT0LIKWfez9qdstvpIE960FtDhuFaYCznSTPY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/543509969_1170984674889802_4872587260703684803_n.enc?ccb=11-4&oh=01_Q5Aa3wGA2AJ7YRMjUy4u4Xg9pf344g0qaStBhcoC2YjgHguGlA&oe=69B47326&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849023\",\"waveform\":\"AAAABBAWADZjY15DLVtcTUFeWWFjYixYRRlhUFVeP1FVFgZiV2FgW0hJV1ZURUpHNEZOG0ZaXkRFVVszWk9bEw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770849027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:27'),
(2654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:27'),
(2655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:28'),
(2656, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849027900,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:28'),
(2657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849027900,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:27.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:28'),
(2658, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A58BE32945CE1A5259514210722A07EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634088338_1451386519662189_5699196951798688350_n.enc?ccb=11-4&oh=01_Q5Aa3wGwAHza4mQ-4SbP1-NNCgwezoMwF85WqxrCN8DGPK_f7g&oe=69B48307&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"DUzIHB9Wjjyw5pkmc\\/826casL3pvuBiFWT+ecpVl8kg=\",\"fileLength\":\"14234\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"4roy54BQ0PheR0xRVmj2x93YkHHUos4pbk9H94Dj4OQ=\",\"fileEncSha256\":\"Rs4ryKLPIjEgmBzzKkgfJXyW65rEqSAqMyZDfUlWxIQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634088338_1451386519662189_5699196951798688350_n.enc?ccb=11-4&oh=01_Q5Aa3wGwAHza4mQ-4SbP1-NNCgwezoMwF85WqxrCN8DGPK_f7g&oe=69B48307&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849030\",\"waveform\":\"AAwhFwYRGxUdUVJHOWFPSkZcHktKVB1BTlFRUTU6UTgzRERGL04+QDY+Ml9UP0FeMj8xP0ItJVpTBkZRUD9QAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770849035,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:35'),
(2659, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:35'),
(2660, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A58BE32945CE1A5259514210722A07EE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849035426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:35'),
(2661, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74896226918477@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:35'),
(2662, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74896226918477@lid\",\"fromMe\":true,\"id\":\"A58BE32945CE1A5259514210722A07EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634088338_1451386519662189_5699196951798688350_n.enc?ccb=11-4&oh=01_Q5Aa3wGwAHza4mQ-4SbP1-NNCgwezoMwF85WqxrCN8DGPK_f7g&oe=69B48307&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"DUzIHB9Wjjyw5pkmc\\/826casL3pvuBiFWT+ecpVl8kg=\",\"fileLength\":\"14234\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"4roy54BQ0PheR0xRVmj2x93YkHHUos4pbk9H94Dj4OQ=\",\"fileEncSha256\":\"Rs4ryKLPIjEgmBzzKkgfJXyW65rEqSAqMyZDfUlWxIQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634088338_1451386519662189_5699196951798688350_n.enc?ccb=11-4&oh=01_Q5Aa3wGwAHza4mQ-4SbP1-NNCgwezoMwF85WqxrCN8DGPK_f7g&oe=69B48307&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849030\",\"waveform\":\"AAwhFwYRGxUdUVJHOWFPSkZcHktKVB1BTlFRUTU6UTgzRERGL04+QDY+Ml9UP0FeMj8xP0ItJVpTBkZRUD9QAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770849035,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:35'),
(2663, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A58BE32945CE1A5259514210722A07EE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849035426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:36'),
(2664, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:36'),
(2665, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74896226918477@lid\",\"pushName\":\"✌️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:35.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:36'),
(2666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:46.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:46'),
(2667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"183884746612892@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:46.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:46'),
(2668, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":true,\"id\":\"A599D5774425EBB5B081D4D36695A393\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"stickerSentTs\":\"1770849045951\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770849046,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:46.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:46'),
(2669, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"183884746612892@lid\",\"fromMe\":true,\"id\":\"A599D5774425EBB5B081D4D36695A393\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"stickerSentTs\":\"1770849045951\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770849046,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:46.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:47'),
(2670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A599D5774425EBB5B081D4D36695A393\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849047396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:47.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:47'),
(2671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:47.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:30:47'),
(2672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A599D5774425EBB5B081D4D36695A393\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849047396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:47.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:47'),
(2673, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"183884746612892@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/486460177_1192330902402183_4483054983914130637_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUjRn1hsNunHDQ1ZFllcz7re4CAec0fYNlgcSdNxrB8w&oe=699A0CCF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:30:47.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:30:47'),
(2674, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACA3EF4419EEE8B7E977C5843FD128E4\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/586185828_1569668974291391_4573713071418979890_n.enc?ccb=11-4&oh=01_Q5Aa3wGbCP6BKlNxa9Zqh0NPUTZ4h5b1dF1BVJRmr736KvbBAg&oe=69B469C4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"bvHH4\\/8uzGyAe0kuaE8dDlZdFq7RO16wRNOSx\\/x8KF4=\",\"fileLength\":\"207983\",\"pageCount\":2,\"mediaKey\":\"Q00HcWlqc1BcGpLkeVRPs2MbWDi2CgO5R5KoNAtYa7Q=\",\"fileName\":\"2026-02-11_193124.pdf\",\"fileEncSha256\":\"+1tyA90bSpuA33gyMJ60cSB9uYezxr9oCnmptiWGRdU=\",\"directPath\":\"\\/v\\/t62.7119-24\\/586185828_1569668974291391_4573713071418979890_n.enc?ccb=11-4&oh=01_Q5Aa3wGbCP6BKlNxa9Zqh0NPUTZ4h5b1dF1BVJRmr736KvbBAg&oe=69B469C4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849093\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/33426627_1369109491686469_2822389272324683255_n.enc?ccb=11-4&oh=01_Q5Aa3wHlDGdUJOh4NcK5ARMqo8PM0TQ3VvYbYbDZ7WKjSj01SA&oe=69B46C0B&_nc_sid=5e03e0\",\"thumbnailSha256\":\"I4lIq7jJCl21rRnpjj86Mxv4LH0j+RvWVabXyAfK1Rg=\",\"thumbnailEncSha256\":\"IepQJ0kUVuodA+MVm7Cs9syoZGOo\\/U6Q87I0\\/WfJaWA=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAwAAEAAwEBAQAAAAAAAAAAAAAAAQIDBQQGAQEBAQEBAAAAAAAAAAAAAAAAAQUCBP\\/aAAwDAQACEAMQAAAA5lbZ6eaqqlouqkxBcH3Wvrtne\\/jen23rwx0UvG16VjjOyMq1Trac5i6bLRcQkYxsSLaSuTUZNRk1RSuglEgAAHm0vayJJQAAP\\/\\/EADIQAAIBAwEECAUEAwAAAAAAAAECAAMRElIFIVGRBAYTFCAiIzFBU2FygRYkQqEQMET\\/2gAIAQEAAT8AuPlp\\/cyHy0jEMLBFH1ExMwMxmMxMwMHSXKBLL7W9hOMJa8ysYGvL7rQkwNYzIn2MTq3s8ICS8bq5s8a4dj7JBFn3ffP07st0DguQYerezk1z9O7Owy8\\/OPsXZaEC7czB1f2U65IXMfq30DI2qVRB3sVdzDs7Rj0j+JE\\/dfHCL3j+RH4l6vGerxhVz7z1eM9XjG7TMYndMa+sQZgAGx\\/Mu\\/Becu\\/Ac5d9I5y76Rzl30jn\\/iqtMv56QbdovMaGQ9Dfxwi0aBsRSUfid3ofKTlFVUFlUAcB4XWsT5bW+pMHeeFPmYudvMBf6eN3ftRath7bt0s\\/l\\/fD+oKtgL1qcs+peUs+peUs+peUs+peUs+peUErhTULNSDj7QTFWi3\\/ADgfDeonYUflJyHjqUKzPdHUL9bwU+miwFWlb7TAOlKRepSx4Ynx18RV+Itb4mL0ZGQMHexG7eYKRUABzMW1mYtrMxbWZi2szFtZgjmotUWW6\\/d\\/p\\/\\/EAB8RAAEEAgIDAAAAAAAAAAAAAAEAAhNSAxEQIDCBkf\\/aAAgBAgEBPwAc74kfYo5H2P1SPsVI+xUmSxW+vvxbPX\\/\\/xAAfEQAABQQDAAAAAAAAAAAAAAAAAQITUgMQESAwgZH\\/2gAIAQMBAT8AvixIRANoiXgbREg2iJBqnEhjXriwWv8A\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QdZ3R9mVBezqAr4Y1FKlLbiWz9mijBRnqyhJBOvUyPM=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770849094,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:34.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:34'),
(2675, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACA3EF4419EEE8B7E977C5843FD128E4\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/586185828_1569668974291391_4573713071418979890_n.enc?ccb=11-4&oh=01_Q5Aa3wGbCP6BKlNxa9Zqh0NPUTZ4h5b1dF1BVJRmr736KvbBAg&oe=69B469C4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"bvHH4\\/8uzGyAe0kuaE8dDlZdFq7RO16wRNOSx\\/x8KF4=\",\"fileLength\":\"207983\",\"pageCount\":2,\"mediaKey\":\"Q00HcWlqc1BcGpLkeVRPs2MbWDi2CgO5R5KoNAtYa7Q=\",\"fileName\":\"2026-02-11_193124.pdf\",\"fileEncSha256\":\"+1tyA90bSpuA33gyMJ60cSB9uYezxr9oCnmptiWGRdU=\",\"directPath\":\"\\/v\\/t62.7119-24\\/586185828_1569668974291391_4573713071418979890_n.enc?ccb=11-4&oh=01_Q5Aa3wGbCP6BKlNxa9Zqh0NPUTZ4h5b1dF1BVJRmr736KvbBAg&oe=69B469C4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770849093\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/33426627_1369109491686469_2822389272324683255_n.enc?ccb=11-4&oh=01_Q5Aa3wHlDGdUJOh4NcK5ARMqo8PM0TQ3VvYbYbDZ7WKjSj01SA&oe=69B46C0B&_nc_sid=5e03e0\",\"thumbnailSha256\":\"I4lIq7jJCl21rRnpjj86Mxv4LH0j+RvWVabXyAfK1Rg=\",\"thumbnailEncSha256\":\"IepQJ0kUVuodA+MVm7Cs9syoZGOo\\/U6Q87I0\\/WfJaWA=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAwAAEAAwEBAQAAAAAAAAAAAAAAAQIDBQQGAQEBAQEBAAAAAAAAAAAAAAAAAQUCBP\\/aAAwDAQACEAMQAAAA5lbZ6eaqqlouqkxBcH3Wvrtne\\/jen23rwx0UvG16VjjOyMq1Trac5i6bLRcQkYxsSLaSuTUZNRk1RSuglEgAAHm0vayJJQAAP\\/\\/EADIQAAIBAwEECAUEAwAAAAAAAAECAAMRElIFIVGRBAYTFCAiIzFBU2FygRYkQqEQMET\\/2gAIAQEAAT8AuPlp\\/cyHy0jEMLBFH1ExMwMxmMxMwMHSXKBLL7W9hOMJa8ysYGvL7rQkwNYzIn2MTq3s8ICS8bq5s8a4dj7JBFn3ffP07st0DguQYerezk1z9O7Owy8\\/OPsXZaEC7czB1f2U65IXMfq30DI2qVRB3sVdzDs7Rj0j+JE\\/dfHCL3j+RH4l6vGerxhVz7z1eM9XjG7TMYndMa+sQZgAGx\\/Mu\\/Becu\\/Ac5d9I5y76Rzl30jn\\/iqtMv56QbdovMaGQ9Dfxwi0aBsRSUfid3ofKTlFVUFlUAcB4XWsT5bW+pMHeeFPmYudvMBf6eN3ftRath7bt0s\\/l\\/fD+oKtgL1qcs+peUs+peUs+peUs+peUs+peUErhTULNSDj7QTFWi3\\/ADgfDeonYUflJyHjqUKzPdHUL9bwU+miwFWlb7TAOlKRepSx4Ynx18RV+Itb4mL0ZGQMHexG7eYKRUABzMW1mYtrMxbWZi2szFtZgjmotUWW6\\/d\\/p\\/\\/EAB8RAAEEAgIDAAAAAAAAAAAAAAEAAhNSAxEQIDCBkf\\/aAAgBAgEBPwAc74kfYo5H2P1SPsVI+xUmSxW+vvxbPX\\/\\/xAAfEQAABQQDAAAAAAAAAAAAAAAAAQITUgMQESAwgZH\\/2gAIAQMBAT8AvixIRANoiXgbREg2iJBqnEhjXriwWv8A\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QdZ3R9mVBezqAr4Y1FKlLbiWz9mijBRnqyhJBOvUyPM=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770849094,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:34.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:34'),
(2676, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:34.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:34'),
(2677, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:34.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:35'),
(2678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:34.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:35'),
(2679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:35.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:35'),
(2680, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:34.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:35'),
(2681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:35.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:35'),
(2682, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC0471D6E96AD072BE9CA6E7A703A5E5\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"👍\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e0udZSYESfIlMlzeux1J9hZg2QNmgm62L3huutPHiSc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:46.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:46'),
(2683, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:46.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:46'),
(2684, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"AC0471D6E96AD072BE9CA6E7A703A5E5\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"👍\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e0udZSYESfIlMlzeux1J9hZg2QNmgm62L3huutPHiSc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:46.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:47'),
(2685, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:46.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:47'),
(2686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:47.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:47'),
(2687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:47.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:31:47'),
(2688, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:47.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:47'),
(2689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:31:47.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:31:48'),
(2690, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:15.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:16'),
(2691, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A5E253CE0569C7D3B189F6AD023A70EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"A conta\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770849195,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:15.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:16'),
(2692, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:15.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:16'),
(2693, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A5E253CE0569C7D3B189F6AD023A70EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849196349,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:16.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:16'),
(2694, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A5E253CE0569C7D3B189F6AD023A70EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"A conta\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770849195,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:15.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:16'),
(2695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:16.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:17'),
(2696, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A5E253CE0569C7D3B189F6AD023A70EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849196349,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:16.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:17'),
(2697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:16.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:17'),
(2698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:22.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:22'),
(2699, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:22.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:22'),
(2700, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A52896AC9916350AE53C504DF2B94D4E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ta no nome do seu filho?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770849202,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:22.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:22'),
(2701, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A52896AC9916350AE53C504DF2B94D4E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ta no nome do seu filho?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770849202,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:22.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:22'),
(2702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52896AC9916350AE53C504DF2B94D4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849202796,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:22.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:22'),
(2703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:23.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:23'),
(2704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:23.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:23'),
(2705, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52896AC9916350AE53C504DF2B94D4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849202796,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:22.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:23'),
(2706, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52896AC9916350AE53C504DF2B94D4E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849211822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:31.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:31'),
(2707, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A5E253CE0569C7D3B189F6AD023A70EC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849211827,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:31.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:31'),
(2708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A52896AC9916350AE53C504DF2B94D4E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849211822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:31.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:32'),
(2709, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A5E253CE0569C7D3B189F6AD023A70EC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849211827,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:31.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:32'),
(2710, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:44.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:44'),
(2711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:44.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:44'),
(2712, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACF03FFFF964A3FE57FBAA8A59463647\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"Diego Lopes MENDES\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/SJOQ2q+E5g1oJAvmBTNFccVgfXLejH1UGdlI6K4GLg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849224,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:44.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:44'),
(2713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:44.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:44'),
(2714, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":false,\"id\":\"ACF03FFFF964A3FE57FBAA8A59463647\"},\"pushName\":\"Ednilson  Antônio\",\"message\":{\"conversation\":\"Diego Lopes MENDES\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/SJOQ2q+E5g1oJAvmBTNFccVgfXLejH1UGdlI6K4GLg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770849224,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:44.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:44'),
(2715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:44.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:45.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:33:45'),
(2717, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:33:45.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:33:45'),
(2718, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:44.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:44'),
(2719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A542ED5ACCA12BA518868A7CFFFF0FA7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770849283669\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770849284,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:44.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:44'),
(2720, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:44.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:44'),
(2721, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A542ED5ACCA12BA518868A7CFFFF0FA7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770849283669\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770849284,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:44.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:44'),
(2722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A542ED5ACCA12BA518868A7CFFFF0FA7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849284701,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:44.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:45'),
(2723, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A542ED5ACCA12BA518868A7CFFFF0FA7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849284701,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:44.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:45'),
(2724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:45.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:45'),
(2725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:45.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:45'),
(2726, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A501F35E3ACC1BB5F10C7C7703E6515D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHFf2nKyU5_LVqVRfeqVePo0lkei_EMEA-07Wzw4WqHTg&oe=69B459E8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHFf2nKyU5_LVqVRfeqVePo0lkei_EMEA-07Wzw4WqHTg&oe=69B459E8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770849291074\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770849291,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:51.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:52'),
(2727, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:51.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:52'),
(2728, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"121414849966117@lid\",\"fromMe\":true,\"id\":\"A501F35E3ACC1BB5F10C7C7703E6515D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHFf2nKyU5_LVqVRfeqVePo0lkei_EMEA-07Wzw4WqHTg&oe=69B459E8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHFf2nKyU5_LVqVRfeqVePo0lkei_EMEA-07Wzw4WqHTg&oe=69B459E8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770849291074\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770849291,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:51.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:52'),
(2729, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"121414849966117@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:51.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:52'),
(2730, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A501F35E3ACC1BB5F10C7C7703E6515D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849292223,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:52.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:52'),
(2731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:52.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:34:53'),
(2732, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A501F35E3ACC1BB5F10C7C7703E6515D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770849292223,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:52.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:53'),
(2733, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"121414849966117@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:34:52.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:34:53'),
(2734, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A501F35E3ACC1BB5F10C7C7703E6515D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849311904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:35:11.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:35:12'),
(2735, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A542ED5ACCA12BA518868A7CFFFF0FA7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849311911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:35:11.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:35:12'),
(2736, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A542ED5ACCA12BA518868A7CFFFF0FA7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849311911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:35:11.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:35:12'),
(2737, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"121414849966117@lid\",\"id\":\"A501F35E3ACC1BB5F10C7C7703E6515D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849311904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:35:11.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:35:12'),
(2738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A58BE32945CE1A5259514210722A07EE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849898566,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:44:58.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:44:58'),
(2739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849898575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:44:58.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:44:58'),
(2740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A58BE32945CE1A5259514210722A07EE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849898566,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:44:58.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:44:59'),
(2741, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770849898575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:44:58.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:44:59'),
(2742, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770849899399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:44:59.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:44:59'),
(2743, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A5F6AC3118849888F7D2CD0A40EA9ED7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770849899399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:44:59.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:44:59'),
(2744, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A58BE32945CE1A5259514210722A07EE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770849910213,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:10.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:45:10'),
(2745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74896226918477@lid\",\"id\":\"A58BE32945CE1A5259514210722A07EE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770849910213,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:10.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:45:10'),
(2746, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":503},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:28.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:45:28'),
(2747, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:28.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:45:28'),
(2748, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":503},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:28.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:45:28'),
(2749, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:28.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:45:28'),
(2750, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:30.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:45:30'),
(2751, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:45:30.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:45:30'),
(2752, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:47:32.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:47:33'),
(2753, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:47:32.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:47:33'),
(2754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A599D5774425EBB5B081D4D36695A393\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770850162876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:49:22.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 19:49:23'),
(2755, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"183884746612892@lid\",\"id\":\"A599D5774425EBB5B081D4D36695A393\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770850162876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T19:49:22.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 19:49:23'),
(2756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC0743D6C95F82A0C7EE8F288AF8BB1B\"},\"pushName\":\"Darlene\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite TD bem?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KrUfW8A5hm+fFzN6Riopxv3ZcNn\\/TtHTmMQzLuFALik=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:01.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:02'),
(2757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:01.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:02'),
(2758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC0743D6C95F82A0C7EE8F288AF8BB1B\"},\"pushName\":\"Darlene\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite TD bem?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KrUfW8A5hm+fFzN6Riopxv3ZcNn\\/TtHTmMQzLuFALik=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:01.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:02'),
(2759, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:01.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:02'),
(2760, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:02'),
(2761, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:02'),
(2762, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:02'),
(2763, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"pushName\":\"Darlene\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:02'),
(2764, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:02'),
(2765, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:02'),
(2766, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A539BE363CD82B8F614939B0739466E7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850862644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:03'),
(2767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:03.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:03'),
(2768, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A539BE363CD82B8F614939B0739466E7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850862644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:03'),
(2769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:03.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:03'),
(2770, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"pushName\":\"Darlene\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:03'),
(2771, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:04'),
(2772, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A539BE363CD82B8F614939B0739466E7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:04'),
(2773, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A539BE363CD82B8F614939B0739466E7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:02.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:04'),
(2774, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:33.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:34'),
(2775, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC332B50DB7CB5F94085E84A832C601F\"},\"pushName\":\"Darlene\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tá com algum problema na minha tv\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E7s0nNiSl34O+fr3P+Muz2SyGU74\\/\\/Ztf5MPOxA9bZo=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850893,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:33.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:34'),
(2776, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:33.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:34'),
(2777, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC332B50DB7CB5F94085E84A832C601F\"},\"pushName\":\"Darlene\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tá com algum problema na minha tv\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E7s0nNiSl34O+fr3P+Muz2SyGU74\\/\\/Ztf5MPOxA9bZo=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850893,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:33.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:34'),
(2778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:34.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:34'),
(2779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:34.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:35'),
(2780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:34.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:35'),
(2781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:34.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:35'),
(2782, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:54.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:54'),
(2783, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A56DBBD322160908C6F805FB5572695D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850914,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:54.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:54'),
(2784, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:54.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:55');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2785, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A56DBBD322160908C6F805FB5572695D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850914,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:54.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:55'),
(2786, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A56DBBD322160908C6F805FB5572695D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850915128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:55.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:55'),
(2787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A56DBBD322160908C6F805FB5572695D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850915128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:55.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:55'),
(2788, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:55.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:01:55'),
(2789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:01:55.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:01:56'),
(2790, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:03.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:03'),
(2791, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A5B3DB7EEF4C4262840D6C02E67D6CE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Reinicia tv e Internet por 1 min da tomasa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:03.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:03'),
(2792, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:03.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:03'),
(2793, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A5B3DB7EEF4C4262840D6C02E67D6CE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Reinicia tv e Internet por 1 min da tomasa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:03.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:03'),
(2794, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A5B3DB7EEF4C4262840D6C02E67D6CE8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850924010,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:04.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:04'),
(2795, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A5B3DB7EEF4C4262840D6C02E67D6CE8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850924010,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:04.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:04'),
(2796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:04.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:04'),
(2797, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:04.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:04'),
(2798, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:06'),
(2799, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A5AF9A39E1CCD2879431B02C796C901D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tomada\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850925,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:06'),
(2800, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:06'),
(2801, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A5AF9A39E1CCD2879431B02C796C901D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tomada\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850925,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:06'),
(2802, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A5AF9A39E1CCD2879431B02C796C901D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850926362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:06'),
(2803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:07'),
(2804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:07'),
(2805, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A5AF9A39E1CCD2879431B02C796C901D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770850926362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:06.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:07'),
(2806, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:18.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:18'),
(2807, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC68F78F9B462D0BE9D0A821A770A906\"},\"pushName\":\"Darlene\",\"message\":{\"extendedTextMessage\":{\"text\":\"Blz\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dHd2HqXKyWOXpttYK7zrHO54dzeQhwVW4RBXCp4T3Xk=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850938,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:18.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:18'),
(2808, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:18.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:18'),
(2809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:18.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:18'),
(2810, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC68F78F9B462D0BE9D0A821A770A906\"},\"pushName\":\"Darlene\",\"message\":{\"extendedTextMessage\":{\"text\":\"Blz\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dHd2HqXKyWOXpttYK7zrHO54dzeQhwVW4RBXCp4T3Xk=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770850938,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:18.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:18'),
(2811, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:18.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:19'),
(2812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:19.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:02:19'),
(2813, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:02:19.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:02:19'),
(2814, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:57.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:08:58'),
(2815, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC79ACD2BE7C2D3A5AEE5741A0085793\"},\"pushName\":\"Darlene\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29052414_1459878299061375_2660990343254540544_n.enc?ccb=11-4&oh=01_Q5Aa3wEAiLL8o7A89PB1l2OdjvJ0GOBkxt2o1T09Fztamd2Acw&oe=69B47099&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wTQkSt1cKAhJdUtnpRKSUfFrYv8Un8u1zNTa5JQ2TgI=\",\"fileLength\":\"15241\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"8JEZqBd5q1cnMcIiKitSu+6KDWc9mVlyhnc163KM9Bs=\",\"fileEncSha256\":\"9+eLHvvW2BTzx9LY+IHb8pzT6oVLmCs5gVCqrphY3nA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29052414_1459878299061375_2660990343254540544_n.enc?ccb=11-4&oh=01_Q5Aa3wEAiLL8o7A89PB1l2OdjvJ0GOBkxt2o1T09Fztamd2Acw&oe=69B47099&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770851332\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AABPVVdMTEcgV1UrTVVZVUghV1lVI000SktJMQcGNUFEJFozV1Y1VE42VSALMlQ\\/CwAAAAAAAExSVldWLCZVLg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"27SuaxBDagztK2fZD2MmaiSjHLoanSB+\\/+TC1Au6gww=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770851337,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:57.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:08:58'),
(2816, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:57.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:08:58'),
(2817, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":false,\"id\":\"AC79ACD2BE7C2D3A5AEE5741A0085793\"},\"pushName\":\"Darlene\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29052414_1459878299061375_2660990343254540544_n.enc?ccb=11-4&oh=01_Q5Aa3wEAiLL8o7A89PB1l2OdjvJ0GOBkxt2o1T09Fztamd2Acw&oe=69B47099&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wTQkSt1cKAhJdUtnpRKSUfFrYv8Un8u1zNTa5JQ2TgI=\",\"fileLength\":\"15241\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"8JEZqBd5q1cnMcIiKitSu+6KDWc9mVlyhnc163KM9Bs=\",\"fileEncSha256\":\"9+eLHvvW2BTzx9LY+IHb8pzT6oVLmCs5gVCqrphY3nA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29052414_1459878299061375_2660990343254540544_n.enc?ccb=11-4&oh=01_Q5Aa3wEAiLL8o7A89PB1l2OdjvJ0GOBkxt2o1T09Fztamd2Acw&oe=69B47099&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770851332\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AABPVVdMTEcgV1UrTVVZVUghV1lVI000SktJMQcGNUFEJFozV1Y1VE42VSALMlQ\\/CwAAAAAAAExSVldWLCZVLg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"zBExYS+hbKmLqg==\",\"senderTimestamp\":\"1770380582\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"27SuaxBDagztK2fZD2MmaiSjHLoanSB+\\/+TC1Au6gww=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254514\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770851337,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:57.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:08:58'),
(2818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:58.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:08:58'),
(2819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:58.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:08:58'),
(2820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:58.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:08:58'),
(2821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:08:58.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:08:58'),
(2822, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:13:41.097Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:13:41'),
(2823, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"close\",\"statusReason\":428},\"date_time\":\"2026-02-11T20:13:41.079Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:13:41'),
(2824, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-11T20:13:41.129Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:13:41'),
(2825, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-11T20:13:42.042Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:13:42'),
(2826, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:38.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:15:39'),
(2827, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A538F8B378890AEDEE81A3AC1325BFF4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770851737969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770851738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:38.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:15:39'),
(2828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"45806463766669@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:38.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:15:39'),
(2829, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"45806463766669@lid\",\"fromMe\":true,\"id\":\"A538F8B378890AEDEE81A3AC1325BFF4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wHY8ia0mUvqKpGXOIsbWgZgIkgwUT_lDhHpG-9_Digj1g&oe=69B48786&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770851737969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768254513\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770851738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:38.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:15:39'),
(2830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:39.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:15:39'),
(2831, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A538F8B378890AEDEE81A3AC1325BFF4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770851739776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:39.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:15:40'),
(2832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"45806463766669@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604415020_1264808715495327_8144803999308051701_n.jpg?ccb=11-4&oh=01_Q5Aa3wEduTN2jRTkR9EQDPKAT5unFUNN1p_Mvq1ktbn9_egbSQ&oe=699A16B7&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:39.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:15:40'),
(2833, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"45806463766669@lid\",\"id\":\"A538F8B378890AEDEE81A3AC1325BFF4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770851739776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:15:39.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:15:41'),
(2834, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5C6CA0BA7994D026389E0574A3DF613\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/541581793_865334876500913_7625756310279817435_n.enc?ccb=11-4&oh=01_Q5Aa3wHREPpGe3OWS3GMQltFbOvbtTQofepw8ENQcH7G0wqPeQ&oe=69B47132&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"W84ZhurAmevgBojRjZ\\/NZnhQ7S1k8vajQXM4Geja5fs=\",\"fileLength\":\"134747\",\"height\":1600,\"width\":900,\"mediaKey\":\"+cSGv1tX1IMQLkvckyKmd5RuZIKpVl5l+k4aX2OZsqU=\",\"fileEncSha256\":\"6WaNmWKpylOti2iWe2an9SipcAjqE+CIPOs0X717R4s=\",\"directPath\":\"\\/v\\/t62.7118-24\\/541581793_865334876500913_7625756310279817435_n.enc?ccb=11-4&oh=01_Q5Aa3wHREPpGe3OWS3GMQltFbOvbtTQofepw8ENQcH7G0wqPeQ&oe=69B47132&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770852935\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAvAAADAAMAAAAAAAAAAAAAAAAAAgMBBAUBAAMBAQAAAAAAAAAAAAAAAAACAwEE\\/9oADAMBAAIQAxAAAADoQbm43ShmUnqQAjDc1rTSOcT6AsBXYRm51s2FZQKpq7fMaNOpLDOigNkpAF3AHA0\\/\\/8QAHxAAAgICAgMBAAAAAAAAAAAAAQIAAxESBCEiMUET\\/9oACAEBAAE\\/ABx1EtZKHAMptRy2sfysOIVZMZEPLPxZyrTayys4rAGAIzIjgs0PJq7GxjHX0ZoxbbMtt211MZiMRQOzGFWPEyxvzx9zPuR9jdMJXWXBxFP6uSo8ZZUGUCJxxgRePXg5gGh1Aig1JqIXOmPUXH5A5i+WO45XsHMN+LAD6mVAOBmV0gqWJwBA2vkPUI3bPqWVkDaVWpjDEiU3Loygk5meiBFDKCSJqjjB6gorigDxEU4M2Pc\\/\\/8QAHhEAAgEEAwEAAAAAAAAAAAAAAQIAEBEhMQMSIFH\\/2gAIAQIBAT8AbUD2xO7fKHcsYzgbiOGJxTkW+YoHn\\/\\/EAB0RAAMAAQUBAAAAAAAAAAAAAAABAjEQERMgITL\\/2gAIAQMBAT8AnI4bZxiF8jqUyYbwUmlnSHt4U+v\\/2Q==\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"scansSidecar\":\"SGVcG0Eiq6ZOfu6fHv3xhuspUD0ukRJH367Bytez1VC97NgOcsUl7A==\",\"scanLengths\":[16916,46852,26502,44477],\"midQualityFileSha256\":\"rJJ5sDtFlaZTX9t3A7RubZ7DP1zPWVdcO6fgmfozagA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XOS7SWybn8gSTtE6KkDc\\/6gkXuI+q\\/0+S3tL8awmIPk=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770852935,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:35:36.107Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:36'),
(2835, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:35:36.105Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:36'),
(2836, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:35:36.282Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:36'),
(2837, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:35:36.277Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:36'),
(2838, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-11T20:35:37.206Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:37'),
(2839, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:35:47.094Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:47'),
(2840, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A533B9920AC4847FA689DE21851BEC0F\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"conversation\":\"Dae feio\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"b7hoYN1BCFBAYw\\/7rjq2Vc00z\\/oze5xry4qDjLNlRyc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770852946,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:35:47.095Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:47'),
(2841, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:35:47.430Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:47'),
(2842, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:35:47.261Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:47'),
(2843, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-11T20:35:48.581Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:48'),
(2844, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-11T20:35:58.576Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:35:58'),
(2845, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"available\"}}},\"date_time\":\"2026-02-11T20:36:09.999Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:36:10'),
(2846, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:36:12.016Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:36:12'),
(2847, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5625806BE347708D21D0C7F2ADE4A8C\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"conversation\":\"Tao sumido, tão bravo com nós ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YUErD1ppWmWpjtBWCpB6QUfC4oNwfmx7BPieTxZy\\/vQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770852971,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:36:12.017Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:36:12'),
(2848, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:36:12.181Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:36:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2849, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:36:12.340Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:36:12'),
(2850, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:37:11.789Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:11'),
(2851, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5406EFF9FC7C79815409BFBEFAC1D1E\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/632588839_1231073709208068_8511522637620687538_n.enc?ccb=11-4&oh=01_Q5Aa3wGxAOdGW7DSPzgAhVYGFw3qF7V9NRmkSb-pxtooiJd0DQ&oe=69B48DCD&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"sKktAoXmam3cncmMLOY53JNwOLpgTjBlPNSPH6S89Dg=\",\"fileEncSha256\":\"UOm8G8K3MJf5T6hAgJtF3NG9Q48C45qAu9Aecclde80=\",\"mediaKey\":\"ZcGscd1Q7Nze\\/tF31Y7CQeamxfHZIkref\\/bgxTy64QU=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/632588839_1231073709208068_8511522637620687538_n.enc?ccb=11-4&oh=01_Q5Aa3wGxAOdGW7DSPzgAhVYGFw3qF7V9NRmkSb-pxtooiJd0DQ&oe=69B48DCD&_nc_sid=5e03e0\",\"fileLength\":\"15676\",\"mediaKeyTimestamp\":\"1770736148\",\"isAnimated\":false,\"stickerSentTs\":\"1770853031262\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MKE+37OKTCZMNP25ZqCL1c5HzIUvdeL0nJhmb\\/zk84A=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770853031,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:37:11.790Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:11'),
(2852, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:37:12.119Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:12'),
(2853, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:37:11.958Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:12'),
(2854, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-11T20:37:19.022Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:19'),
(2855, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-11T20:37:29.135Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:29'),
(2856, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:37:32.954Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:32'),
(2857, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:37:33.117Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:33'),
(2858, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5BB8F649C1032F74D247E3B443E16D2\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"conversation\":\"Fala aiiii viado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ERpflLdARe9f8yO8cyWgU6weaChbE27Z3IF7+h5OQMw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770853052,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:37:32.955Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:33'),
(2859, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:37:33.277Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:37:33'),
(2860, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:18.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:18'),
(2861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:18.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:18'),
(2862, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:18.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:18'),
(2863, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:18.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:19'),
(2864, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:20'),
(2865, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:20'),
(2866, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":false,\"id\":\"AC218970276A3B5531000465D2C6E617\"},\"pushName\":\"Valter\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔥 Olá! Vi o site da JTVPLAY e quero fazer um TESTE GRÁTIS de 4 horas para conhecer todos os canais, filmes e séries. Pode me liberar agora?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tmXWOBuh2WpdB3E9e9uKgALPbyE09O9hSf6n4ld0Lt8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770853218,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:20'),
(2867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604395076_25484788587796540_1880278350821721846_n.jpg?ccb=11-4&oh=01_Q5Aa3wES5Ed7OYKu57VHZDg4bhYaupmV_ntsYVRJf-dVX2VPfA&oe=699A0EB0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:20'),
(2868, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":false,\"id\":\"AC218970276A3B5531000465D2C6E617\"},\"pushName\":\"Valter\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔥 Olá! Vi o site da JTVPLAY e quero fazer um TESTE GRÁTIS de 4 horas para conhecer todos os canais, filmes e séries. Pode me liberar agora?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tmXWOBuh2WpdB3E9e9uKgALPbyE09O9hSf6n4ld0Lt8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770853219,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:20'),
(2869, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":false,\"id\":\"AC218970276A3B5531000465D2C6E617\"},\"pushName\":\"Valter\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔥 Olá! Vi o site da JTVPLAY e quero fazer um TESTE GRÁTIS de 4 horas para conhecer todos os canais, filmes e séries. Pode me liberar agora?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tmXWOBuh2WpdB3E9e9uKgALPbyE09O9hSf6n4ld0Lt8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770853218,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:20'),
(2870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604395076_25484788587796540_1880278350821721846_n.jpg?ccb=11-4&oh=01_Q5Aa3wES5Ed7OYKu57VHZDg4bhYaupmV_ntsYVRJf-dVX2VPfA&oe=699A0EB0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:21'),
(2871, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":true,\"id\":\"A59E2ED4E5F3B5189E3A802A88706106\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770853220,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:21'),
(2872, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":false,\"id\":\"AC218970276A3B5531000465D2C6E617\"},\"pushName\":\"Valter\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔥 Olá! Vi o site da JTVPLAY e quero fazer um TESTE GRÁTIS de 4 horas para conhecer todos os canais, filmes e séries. Pode me liberar agora?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tmXWOBuh2WpdB3E9e9uKgALPbyE09O9hSf6n4ld0Lt8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":1},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770853219,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:21'),
(2873, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"pushName\":\"Valter\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:21'),
(2874, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":true,\"id\":\"A59E2ED4E5F3B5189E3A802A88706106\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770853220,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:21'),
(2875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254954342199375@lid\",\"id\":\"A59E2ED4E5F3B5189E3A802A88706106\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770853221481,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:22'),
(2876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:22'),
(2877, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"pushName\":\"Valter\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:22'),
(2878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:22'),
(2879, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254954342199375@lid\",\"id\":\"A59E2ED4E5F3B5189E3A802A88706106\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770853221481,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:22'),
(2880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:23'),
(2881, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:21.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:23'),
(2882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:23'),
(2883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:23'),
(2884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:23'),
(2885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:40:24'),
(2886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:24'),
(2887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:24'),
(2888, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:24'),
(2889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:40:20.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:40:24'),
(2890, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":true,\"id\":\"A5C17A0D9C37A0CEC94BE05AB10DFD1E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa noite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770853676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:56.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:47:56'),
(2891, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254954342199375@lid\",\"id\":\"A5C17A0D9C37A0CEC94BE05AB10DFD1E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770853676739,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:56.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:47:57'),
(2892, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254954342199375@lid\",\"id\":\"A5C17A0D9C37A0CEC94BE05AB10DFD1E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770853676739,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:56.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:47:57'),
(2893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:57.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:47:57'),
(2894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254954342199375@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:57.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:47:57'),
(2895, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:56.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:48:05'),
(2896, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254954342199375@lid\",\"fromMe\":true,\"id\":\"A5C17A0D9C37A0CEC94BE05AB10DFD1E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa noite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770853676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:56.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:48:05'),
(2897, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254954342199375@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:47:56.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:48:05'),
(2898, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:49:20.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:49:20'),
(2899, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:49:20.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:49:20'),
(2900, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:17.662Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2901, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:17.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:18'),
(2902, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A561053017B546CB0AA1962D6A678EA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633958391_917594224093808_9033241051752107763_n.enc?ccb=11-4&oh=01_Q5Aa3wGdF-Hexxh3xug64pkcZV7LD6ZTLFIQb6VcNgnBiFgmFg&oe=69B490A8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"TSLTMpzctG8rPa\\/YJTrGV7jtkRgghSBPUlNygLXoWZ4=\",\"fileEncSha256\":\"k6LaemxC1Ol93ZVGXPUgLqbfPZSTbGcAOeWgBi32SnU=\",\"mediaKey\":\"RQ7iElUYStVFnrJg3gi2jv+s+tgmWHDZ9RPwSgxW14s=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/633958391_917594224093808_9033241051752107763_n.enc?ccb=11-4&oh=01_Q5Aa3wGdF-Hexxh3xug64pkcZV7LD6ZTLFIQb6VcNgnBiFgmFg&oe=69B490A8&_nc_sid=5e03e0\",\"fileLength\":\"476338\",\"mediaKeyTimestamp\":\"1770825453\",\"firstFrameLength\":475930,\"firstFrameSidecar\":\"kRucfN6QdJr8Rg==\",\"isAnimated\":true,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"stickerSentTs\":\"1770854116969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UK7VyLEsBBE7MnZPUL9AOKZzV60yli\\/9HtPD0sBHbEk=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854117,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:17.664Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2903, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A561053017B546CB0AA1962D6A678EA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633958391_917594224093808_9033241051752107763_n.enc?ccb=11-4&oh=01_Q5Aa3wGdF-Hexxh3xug64pkcZV7LD6ZTLFIQb6VcNgnBiFgmFg&oe=69B490A8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"TSLTMpzctG8rPa\\/YJTrGV7jtkRgghSBPUlNygLXoWZ4=\",\"fileEncSha256\":\"k6LaemxC1Ol93ZVGXPUgLqbfPZSTbGcAOeWgBi32SnU=\",\"mediaKey\":\"RQ7iElUYStVFnrJg3gi2jv+s+tgmWHDZ9RPwSgxW14s=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/633958391_917594224093808_9033241051752107763_n.enc?ccb=11-4&oh=01_Q5Aa3wGdF-Hexxh3xug64pkcZV7LD6ZTLFIQb6VcNgnBiFgmFg&oe=69B490A8&_nc_sid=5e03e0\",\"fileLength\":\"476338\",\"mediaKeyTimestamp\":\"1770825453\",\"firstFrameLength\":475930,\"firstFrameSidecar\":\"kRucfN6QdJr8Rg==\",\"isAnimated\":true,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"stickerSentTs\":\"1770854116969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:18'),
(2904, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A561053017B546CB0AA1962D6A678EA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854118068,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:18'),
(2905, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:17.837Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2906, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:17.831Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2907, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:17.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2908, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A561053017B546CB0AA1962D6A678EA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633958391_917594224093808_9033241051752107763_n.enc?ccb=11-4&oh=01_Q5Aa3wGdF-Hexxh3xug64pkcZV7LD6ZTLFIQb6VcNgnBiFgmFg&oe=69B490A8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"TSLTMpzctG8rPa\\/YJTrGV7jtkRgghSBPUlNygLXoWZ4=\",\"fileEncSha256\":\"k6LaemxC1Ol93ZVGXPUgLqbfPZSTbGcAOeWgBi32SnU=\",\"mediaKey\":\"RQ7iElUYStVFnrJg3gi2jv+s+tgmWHDZ9RPwSgxW14s=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/633958391_917594224093808_9033241051752107763_n.enc?ccb=11-4&oh=01_Q5Aa3wGdF-Hexxh3xug64pkcZV7LD6ZTLFIQb6VcNgnBiFgmFg&oe=69B490A8&_nc_sid=5e03e0\",\"fileLength\":\"476338\",\"mediaKeyTimestamp\":\"1770825453\",\"firstFrameLength\":475930,\"firstFrameSidecar\":\"kRucfN6QdJr8Rg==\",\"isAnimated\":true,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"stickerSentTs\":\"1770854116969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A561053017B546CB0AA1962D6A678EA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854118068,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:18'),
(2910, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5EB6483784EFED48A9891CF902026F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/543860155_1234255122181973_5488410866003297842_n.enc?ccb=11-4&oh=01_Q5Aa3wEUvJcifTn-mbddor4PUEuMwB3Qh4aU8l7pNXqwm6JGPQ&oe=69B47797&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"MobatPtXx+7m0nmEHhbaqkuFgP0\\/q7cBPQk4lPR+mx8=\",\"fileEncSha256\":\"XQb4+RCeeqv9A9al\\/PxIcjnVbKKwxpMXvIPMs0kOpmc=\",\"mediaKey\":\"tMMZUTXMH43gaSpR4Hray4Oi5a68+OEBcJaqb4AuJy8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/543860155_1234255122181973_5488410866003297842_n.enc?ccb=11-4&oh=01_Q5Aa3wEUvJcifTn-mbddor4PUEuMwB3Qh4aU8l7pNXqwm6JGPQ&oe=69B47797&_nc_sid=5e03e0\",\"fileLength\":\"15626\",\"mediaKeyTimestamp\":\"1770825749\",\"isAnimated\":false,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"stickerSentTs\":\"1770854117611\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854118,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:18'),
(2911, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:19'),
(2912, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/595379450_1273419104660328_9183749710880446904_n.enc?ccb=11-4&oh=01_Q5Aa3wGWM4mFIJB6d3jUKyDwwvdeEAtcDF_DRXyL7Zrfdws5Dg&oe=69B4A37F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"yG4jb1Ff1s+FQT\\/CN6LRKpYVrdJNHyOTYv5XT4TkJ7c=\",\"fileEncSha256\":\"vUQI2wv2wYj5yxk+7PCLqXeSX0DmqBz97HYbWUGX8TQ=\",\"mediaKey\":\"L0lfK1qeEPejob8e2mhdkPsjlvtz5pr3SCWuU8OEH2Q=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/595379450_1273419104660328_9183749710880446904_n.enc?ccb=11-4&oh=01_Q5Aa3wGWM4mFIJB6d3jUKyDwwvdeEAtcDF_DRXyL7Zrfdws5Dg&oe=69B4A37F&_nc_sid=5e03e0\",\"fileLength\":\"258980\",\"mediaKeyTimestamp\":\"1770811299\",\"firstFrameLength\":258594,\"firstFrameSidecar\":\"Q6tzrje5Z1nqUg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854118369\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854118,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:19'),
(2913, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:19.090Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:19'),
(2914, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:19'),
(2915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/595379450_1273419104660328_9183749710880446904_n.enc?ccb=11-4&oh=01_Q5Aa3wGWM4mFIJB6d3jUKyDwwvdeEAtcDF_DRXyL7Zrfdws5Dg&oe=69B4A37F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"yG4jb1Ff1s+FQT\\/CN6LRKpYVrdJNHyOTYv5XT4TkJ7c=\",\"fileEncSha256\":\"vUQI2wv2wYj5yxk+7PCLqXeSX0DmqBz97HYbWUGX8TQ=\",\"mediaKey\":\"L0lfK1qeEPejob8e2mhdkPsjlvtz5pr3SCWuU8OEH2Q=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/595379450_1273419104660328_9183749710880446904_n.enc?ccb=11-4&oh=01_Q5Aa3wGWM4mFIJB6d3jUKyDwwvdeEAtcDF_DRXyL7Zrfdws5Dg&oe=69B4A37F&_nc_sid=5e03e0\",\"fileLength\":\"258980\",\"mediaKeyTimestamp\":\"1770811299\",\"firstFrameLength\":258594,\"firstFrameSidecar\":\"Q6tzrje5Z1nqUg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854118369\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854118,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:19'),
(2916, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:19.770Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:20');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2917, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:20'),
(2918, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:20.235Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:20'),
(2919, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/593746281_1795377587823018_4273099727400074788_n.enc?ccb=11-4&oh=01_Q5Aa3wGhax2eF31kXJdHlQJW4IqHuY5-xX0PoCVCv43MVPc25w&oe=69B48930&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"q7OYuLRW24i+muvn19WrnGvN0WAhzKp0lYXhVZVvnPs=\",\"fileEncSha256\":\"VEtDO+4nViWj3CIw9uSlAIzgdPy+4krBcxFAHOjtqto=\",\"mediaKey\":\"pLmuii7jo30Neu1VxpJf1qLmyxQiZdtdwyVTPVF5BUE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/593746281_1795377587823018_4273099727400074788_n.enc?ccb=11-4&oh=01_Q5Aa3wGhax2eF31kXJdHlQJW4IqHuY5-xX0PoCVCv43MVPc25w&oe=69B48930&_nc_sid=5e03e0\",\"fileLength\":\"34754\",\"mediaKeyTimestamp\":\"1770768015\",\"isAnimated\":false,\"stickerSentTs\":\"1770854119690\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UcyQHj+f0fyrOrBD3BoJgPLa\\/q62qNas5m5cGSJ1MLQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854120,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:20.236Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:20'),
(2920, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:18.178Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:20'),
(2921, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:21.037Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:21'),
(2922, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A52055939D3D00C10008208173849DE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634527031_837750985969573_5520145662260769055_n.enc?ccb=11-4&oh=01_Q5Aa3wGqNN1ut-KrXaAhUvRrXCDY4FZ9y13K1Y3YlLkXzvGT7Q&oe=69B4728F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"sv7Q44EfSCQs\\/L3bR6kBpKex\\/8rWvDzd9S3+kbNpQUg=\",\"fileEncSha256\":\"nvXLWNwJZOpfQRtDU\\/e2yTw0HhKNugmqxO6qbuPG5\\/Q=\",\"mediaKey\":\"LTMLLJx5qOOaxc5JozxLTwn6EkgHhL2qBhUBMkmngnI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634527031_837750985969573_5520145662260769055_n.enc?ccb=11-4&oh=01_Q5Aa3wGqNN1ut-KrXaAhUvRrXCDY4FZ9y13K1Y3YlLkXzvGT7Q&oe=69B4728F&_nc_sid=5e03e0\",\"fileLength\":\"70418\",\"mediaKeyTimestamp\":\"1770854120\",\"isAnimated\":false,\"stickerSentTs\":\"1770854120151\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fdRRAJvYwmS4pNk+xCS9J+LMM+C4AIybJ\\/VUpVuCZF8=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854120,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:20.874Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:21'),
(2923, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:21'),
(2924, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:21.202Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:21'),
(2925, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5EB6483784EFED48A9891CF902026F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/543860155_1234255122181973_5488410866003297842_n.enc?ccb=11-4&oh=01_Q5Aa3wEUvJcifTn-mbddor4PUEuMwB3Qh4aU8l7pNXqwm6JGPQ&oe=69B47797&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"MobatPtXx+7m0nmEHhbaqkuFgP0\\/q7cBPQk4lPR+mx8=\",\"fileEncSha256\":\"XQb4+RCeeqv9A9al\\/PxIcjnVbKKwxpMXvIPMs0kOpmc=\",\"mediaKey\":\"tMMZUTXMH43gaSpR4Hray4Oi5a68+OEBcJaqb4AuJy8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/543860155_1234255122181973_5488410866003297842_n.enc?ccb=11-4&oh=01_Q5Aa3wEUvJcifTn-mbddor4PUEuMwB3Qh4aU8l7pNXqwm6JGPQ&oe=69B47797&_nc_sid=5e03e0\",\"fileLength\":\"15626\",\"mediaKeyTimestamp\":\"1770825749\",\"isAnimated\":false,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"stickerSentTs\":\"1770854117611\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E7QpTvZ11HAfSU8AQBbNWRtPPbVwAXL3XZljhAZlOOg=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854118,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:18.180Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:21'),
(2926, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52055939D3D00C10008208173849DE8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854121192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:22'),
(2927, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:20.559Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:22'),
(2928, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:22'),
(2929, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:21.568Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:22'),
(2930, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:21.893Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:22'),
(2931, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:22.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:23'),
(2932, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:23'),
(2933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:23'),
(2934, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:22.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:23'),
(2935, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52055939D3D00C10008208173849DE8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854121192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:23'),
(2936, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:18.345Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:24'),
(2937, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wHhUXjfQfGSqLN07Aseqe51vmuKgS5WYZ4TcdGGw0y6OQ&oe=69B47815&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"dwbJmaV\\/L5R22dYqcF26i67l5cWBQjGLBUPrCCp5ewU=\",\"mediaKey\":\"LG5VFSBgqkLFgvv+QX\\/rVG3l8r2d+yD\\/chwIXEZ3ww8=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wHhUXjfQfGSqLN07Aseqe51vmuKgS5WYZ4TcdGGw0y6OQ&oe=69B47815&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1770729603\",\"isAnimated\":false,\"stickerSentTs\":\"1770854118894\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+Gw5egRxwGa9P6WdqJJqLxZCCNEarQHH\\/MBnj\\/7SomE=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854119,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:19.446Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:24'),
(2938, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/595379450_1273419104660328_9183749710880446904_n.enc?ccb=11-4&oh=01_Q5Aa3wGWM4mFIJB6d3jUKyDwwvdeEAtcDF_DRXyL7Zrfdws5Dg&oe=69B4A37F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"yG4jb1Ff1s+FQT\\/CN6LRKpYVrdJNHyOTYv5XT4TkJ7c=\",\"fileEncSha256\":\"vUQI2wv2wYj5yxk+7PCLqXeSX0DmqBz97HYbWUGX8TQ=\",\"mediaKey\":\"L0lfK1qeEPejob8e2mhdkPsjlvtz5pr3SCWuU8OEH2Q=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/595379450_1273419104660328_9183749710880446904_n.enc?ccb=11-4&oh=01_Q5Aa3wGWM4mFIJB6d3jUKyDwwvdeEAtcDF_DRXyL7Zrfdws5Dg&oe=69B4A37F&_nc_sid=5e03e0\",\"fileLength\":\"258980\",\"mediaKeyTimestamp\":\"1770811299\",\"firstFrameLength\":258594,\"firstFrameSidecar\":\"Q6tzrje5Z1nqUg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854118369\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GjjmJIVZMM1oawPnlBn775aR8qbL3N\\/OPz7laQCOf+c=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854118,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:18.927Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:24'),
(2939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:24'),
(2940, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wHhUXjfQfGSqLN07Aseqe51vmuKgS5WYZ4TcdGGw0y6OQ&oe=69B47815&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"dwbJmaV\\/L5R22dYqcF26i67l5cWBQjGLBUPrCCp5ewU=\",\"mediaKey\":\"LG5VFSBgqkLFgvv+QX\\/rVG3l8r2d+yD\\/chwIXEZ3ww8=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wHhUXjfQfGSqLN07Aseqe51vmuKgS5WYZ4TcdGGw0y6OQ&oe=69B47815&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1770729603\",\"isAnimated\":false,\"stickerSentTs\":\"1770854118894\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:24'),
(2941, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586850629_26137032915909168_6001889814952515531_n.enc?ccb=11-4&oh=01_Q5Aa3wENlvHkDZhoRNRNDrxSMjtXWCJBEdSCkGObIv7hrvNUPQ&oe=69B485A1&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"q7hWJdKu6oUtkrZhmmZphHKi+iaEIDtakq0eeQr\\/+3I=\",\"fileEncSha256\":\"zczOqF+AX0\\/1lUcMyvqor0zJA8gXTYs\\/JhbAc\\/U7YzA=\",\"mediaKey\":\"LmSRZ4wq3\\/cOxUAkb5rbbxWGEK6g4\\/1ZmhwBKP46GpM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586850629_26137032915909168_6001889814952515531_n.enc?ccb=11-4&oh=01_Q5Aa3wENlvHkDZhoRNRNDrxSMjtXWCJBEdSCkGObIv7hrvNUPQ&oe=69B485A1&_nc_sid=5e03e0\",\"fileLength\":\"417322\",\"mediaKeyTimestamp\":\"1770854123\",\"firstFrameLength\":416924,\"firstFrameSidecar\":\"5ibtAfqKR4CaBw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854123233\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1o654Jia3LWof7phfrEwlkxvHrUeSO+MiAkUbRp1vN4=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854125,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:25.543Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:25'),
(2942, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:25.543Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:25'),
(2943, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:25.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:25'),
(2944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586850629_26137032915909168_6001889814952515531_n.enc?ccb=11-4&oh=01_Q5Aa3wENlvHkDZhoRNRNDrxSMjtXWCJBEdSCkGObIv7hrvNUPQ&oe=69B485A1&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"q7hWJdKu6oUtkrZhmmZphHKi+iaEIDtakq0eeQr\\/+3I=\",\"fileEncSha256\":\"zczOqF+AX0\\/1lUcMyvqor0zJA8gXTYs\\/JhbAc\\/U7YzA=\",\"mediaKey\":\"LmSRZ4wq3\\/cOxUAkb5rbbxWGEK6g4\\/1ZmhwBKP46GpM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586850629_26137032915909168_6001889814952515531_n.enc?ccb=11-4&oh=01_Q5Aa3wENlvHkDZhoRNRNDrxSMjtXWCJBEdSCkGObIv7hrvNUPQ&oe=69B485A1&_nc_sid=5e03e0\",\"fileLength\":\"417322\",\"mediaKeyTimestamp\":\"1770854123\",\"firstFrameLength\":416924,\"firstFrameSidecar\":\"5ibtAfqKR4CaBw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854123233\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854125,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:25.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:25'),
(2945, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:25.702Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:25'),
(2946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:26.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:26'),
(2947, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586850629_26137032915909168_6001889814952515531_n.enc?ccb=11-4&oh=01_Q5Aa3wENlvHkDZhoRNRNDrxSMjtXWCJBEdSCkGObIv7hrvNUPQ&oe=69B485A1&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"q7hWJdKu6oUtkrZhmmZphHKi+iaEIDtakq0eeQr\\/+3I=\",\"fileEncSha256\":\"zczOqF+AX0\\/1lUcMyvqor0zJA8gXTYs\\/JhbAc\\/U7YzA=\",\"mediaKey\":\"LmSRZ4wq3\\/cOxUAkb5rbbxWGEK6g4\\/1ZmhwBKP46GpM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586850629_26137032915909168_6001889814952515531_n.enc?ccb=11-4&oh=01_Q5Aa3wENlvHkDZhoRNRNDrxSMjtXWCJBEdSCkGObIv7hrvNUPQ&oe=69B485A1&_nc_sid=5e03e0\",\"fileLength\":\"417322\",\"mediaKeyTimestamp\":\"1770854123\",\"firstFrameLength\":416924,\"firstFrameSidecar\":\"5ibtAfqKR4CaBw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854123233\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854125,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:25.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:26'),
(2948, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:26.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:26'),
(2949, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:25.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:26'),
(2950, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:25.859Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:26'),
(2951, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5EB6483784EFED48A9891CF902026F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854118548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:27'),
(2952, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:18.925Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:27'),
(2953, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:19.251Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:27'),
(2954, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5D620443211C418B7BC64EB6E00229F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634479348_1266076872245904_7029214317410083729_n.enc?ccb=11-4&oh=01_Q5Aa3wEoT1-sVd3q1-tAdSVlCPdMuK87C-6Eti_aARMwr2mmHw&oe=69B47C1A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"NnsekMXNzOnqSRdSs+fzvjbdwqTKKy7AVsxJAeOY+P0=\",\"fileEncSha256\":\"7ay8dbxglF5MjHC+lM+wDFb42cgZeCP1PlUg1cn3D3o=\",\"mediaKey\":\"Lahiy1aVMQmutpfopVNVxPJ2Db3dFaZzQCCCU0LUKq0=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/634479348_1266076872245904_7029214317410083729_n.enc?ccb=11-4&oh=01_Q5Aa3wEoT1-sVd3q1-tAdSVlCPdMuK87C-6Eti_aARMwr2mmHw&oe=69B47C1A&_nc_sid=5e03e0\",\"fileLength\":\"312984\",\"mediaKeyTimestamp\":\"1770854120\",\"firstFrameLength\":312602,\"firstFrameSidecar\":\"gNj1+WImzJr+Ow==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854120841\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oAeJ7HGK8pgHClLlsGEId2dHqTpQljZ3tYyfynHHLko=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854121,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:21.570Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:27'),
(2955, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:27'),
(2956, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/585644465_867546749433509_5686306700148228996_n.enc?ccb=11-4&oh=01_Q5Aa3wG_7xfxjuCobbn7QMnqxiX-5Rf5rRZbm7wkJtuO19W1lQ&oe=69B4780D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"uV2Pe9IySmqYKT\\/hRrZL0sMW0j3v+fN10E7as8hu5j0=\",\"fileEncSha256\":\"2Wc0oS9VANOFAtzZsGspBVzH8NVIJs\\/Bdq9xV4jlvys=\",\"mediaKey\":\"ucojzsrBXqol5Df\\/AuzFxJ0xuy\\/8ZfmNOc\\/6YEtDa7w=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/585644465_867546749433509_5686306700148228996_n.enc?ccb=11-4&oh=01_Q5Aa3wG_7xfxjuCobbn7QMnqxiX-5Rf5rRZbm7wkJtuO19W1lQ&oe=69B4780D&_nc_sid=5e03e0\",\"fileLength\":\"21374\",\"mediaKeyTimestamp\":\"1770854128\",\"isAnimated\":false,\"stickerSentTs\":\"1770854128131\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XCq8Q6LQQDpxPZ4AQZNb8\\/i4o82FpC40dGJPd7NLJPQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854128,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:28.775Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:28'),
(2957, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:28.774Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:28'),
(2958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854120631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:28'),
(2959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:28'),
(2960, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/593746281_1795377587823018_4273099727400074788_n.enc?ccb=11-4&oh=01_Q5Aa3wGhax2eF31kXJdHlQJW4IqHuY5-xX0PoCVCv43MVPc25w&oe=69B48930&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"q7OYuLRW24i+muvn19WrnGvN0WAhzKp0lYXhVZVvnPs=\",\"fileEncSha256\":\"VEtDO+4nViWj3CIw9uSlAIzgdPy+4krBcxFAHOjtqto=\",\"mediaKey\":\"pLmuii7jo30Neu1VxpJf1qLmyxQiZdtdwyVTPVF5BUE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/593746281_1795377587823018_4273099727400074788_n.enc?ccb=11-4&oh=01_Q5Aa3wGhax2eF31kXJdHlQJW4IqHuY5-xX0PoCVCv43MVPc25w&oe=69B48930&_nc_sid=5e03e0\",\"fileLength\":\"34754\",\"mediaKeyTimestamp\":\"1770768015\",\"isAnimated\":false,\"stickerSentTs\":\"1770854119690\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:28'),
(2961, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:29.093Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:29'),
(2962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854129098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:29'),
(2963, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:29.130Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:29'),
(2964, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A56044A96B02E8C4AAF39892E3B05191\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634076702_801969139596952_557236420591146515_n.enc?ccb=11-4&oh=01_Q5Aa3wHTKnH7AjlO4tDhNdJM37SFjuOZxR6lVrfQ9_p1u_2i5g&oe=69B472C5&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"xjxNSzItPwwbXYxQ5tst79bAJVWS76UvJbaoXY7FGdE=\",\"fileEncSha256\":\"fJwxnv88g1b9T88MLI3pwpQ\\/0zLOafHipIpV9WgXhNs=\",\"mediaKey\":\"l+qAkUVc72qX79mBUHBavknxBsxJDmvQgHfUC2DKkSg=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634076702_801969139596952_557236420591146515_n.enc?ccb=11-4&oh=01_Q5Aa3wHTKnH7AjlO4tDhNdJM37SFjuOZxR6lVrfQ9_p1u_2i5g&oe=69B472C5&_nc_sid=5e03e0\",\"fileLength\":\"34236\",\"mediaKeyTimestamp\":\"1770854128\",\"isAnimated\":false,\"stickerSentTs\":\"1770854128589\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4b+TSSQLsjCE3ddI+g7Ci6ZoZNu29q4TqOBq9LG2FtA=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854128,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:29.131Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:29'),
(2965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854129098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:29'),
(2966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A56044A96B02E8C4AAF39892E3B05191\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854129461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:30'),
(2967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A56044A96B02E8C4AAF39892E3B05191\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854129461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:30'),
(2968, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:29.291Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:30'),
(2969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:30'),
(2970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:30'),
(2971, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:31'),
(2972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/585644465_867546749433509_5686306700148228996_n.enc?ccb=11-4&oh=01_Q5Aa3wG_7xfxjuCobbn7QMnqxiX-5Rf5rRZbm7wkJtuO19W1lQ&oe=69B4780D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"uV2Pe9IySmqYKT\\/hRrZL0sMW0j3v+fN10E7as8hu5j0=\",\"fileEncSha256\":\"2Wc0oS9VANOFAtzZsGspBVzH8NVIJs\\/Bdq9xV4jlvys=\",\"mediaKey\":\"ucojzsrBXqol5Df\\/AuzFxJ0xuy\\/8ZfmNOc\\/6YEtDa7w=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/585644465_867546749433509_5686306700148228996_n.enc?ccb=11-4&oh=01_Q5Aa3wG_7xfxjuCobbn7QMnqxiX-5Rf5rRZbm7wkJtuO19W1lQ&oe=69B4780D&_nc_sid=5e03e0\",\"fileLength\":\"21374\",\"mediaKeyTimestamp\":\"1770854128\",\"isAnimated\":false,\"stickerSentTs\":\"1770854128131\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:28.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:31'),
(2973, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:20.401Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:31'),
(2974, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(2975, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A52055939D3D00C10008208173849DE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634527031_837750985969573_5520145662260769055_n.enc?ccb=11-4&oh=01_Q5Aa3wGqNN1ut-KrXaAhUvRrXCDY4FZ9y13K1Y3YlLkXzvGT7Q&oe=69B4728F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"sv7Q44EfSCQs\\/L3bR6kBpKex\\/8rWvDzd9S3+kbNpQUg=\",\"fileEncSha256\":\"nvXLWNwJZOpfQRtDU\\/e2yTw0HhKNugmqxO6qbuPG5\\/Q=\",\"mediaKey\":\"LTMLLJx5qOOaxc5JozxLTwn6EkgHhL2qBhUBMkmngnI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634527031_837750985969573_5520145662260769055_n.enc?ccb=11-4&oh=01_Q5Aa3wGqNN1ut-KrXaAhUvRrXCDY4FZ9y13K1Y3YlLkXzvGT7Q&oe=69B4728F&_nc_sid=5e03e0\",\"fileLength\":\"70418\",\"mediaKeyTimestamp\":\"1770854120\",\"isAnimated\":false,\"stickerSentTs\":\"1770854120151\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:31'),
(2976, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/585644465_867546749433509_5686306700148228996_n.enc?ccb=11-4&oh=01_Q5Aa3wG_7xfxjuCobbn7QMnqxiX-5Rf5rRZbm7wkJtuO19W1lQ&oe=69B4780D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"uV2Pe9IySmqYKT\\/hRrZL0sMW0j3v+fN10E7as8hu5j0=\",\"fileEncSha256\":\"2Wc0oS9VANOFAtzZsGspBVzH8NVIJs\\/Bdq9xV4jlvys=\",\"mediaKey\":\"ucojzsrBXqol5Df\\/AuzFxJ0xuy\\/8ZfmNOc\\/6YEtDa7w=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/585644465_867546749433509_5686306700148228996_n.enc?ccb=11-4&oh=01_Q5Aa3wG_7xfxjuCobbn7QMnqxiX-5Rf5rRZbm7wkJtuO19W1lQ&oe=69B4780D&_nc_sid=5e03e0\",\"fileLength\":\"21374\",\"mediaKeyTimestamp\":\"1770854128\",\"isAnimated\":false,\"stickerSentTs\":\"1770854128131\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:28.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:32'),
(2977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:32'),
(2978, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5EB6483784EFED48A9891CF902026F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854118548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:32'),
(2979, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D620443211C418B7BC64EB6E00229F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854121905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:32'),
(2980, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:32'),
(2981, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:33'),
(2982, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A52055939D3D00C10008208173849DE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634527031_837750985969573_5520145662260769055_n.enc?ccb=11-4&oh=01_Q5Aa3wGqNN1ut-KrXaAhUvRrXCDY4FZ9y13K1Y3YlLkXzvGT7Q&oe=69B4728F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"sv7Q44EfSCQs\\/L3bR6kBpKex\\/8rWvDzd9S3+kbNpQUg=\",\"fileEncSha256\":\"nvXLWNwJZOpfQRtDU\\/e2yTw0HhKNugmqxO6qbuPG5\\/Q=\",\"mediaKey\":\"LTMLLJx5qOOaxc5JozxLTwn6EkgHhL2qBhUBMkmngnI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634527031_837750985969573_5520145662260769055_n.enc?ccb=11-4&oh=01_Q5Aa3wGqNN1ut-KrXaAhUvRrXCDY4FZ9y13K1Y3YlLkXzvGT7Q&oe=69B4728F&_nc_sid=5e03e0\",\"fileLength\":\"70418\",\"mediaKeyTimestamp\":\"1770854120\",\"isAnimated\":false,\"stickerSentTs\":\"1770854120151\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:33'),
(2983, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5D620443211C418B7BC64EB6E00229F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634479348_1266076872245904_7029214317410083729_n.enc?ccb=11-4&oh=01_Q5Aa3wEoT1-sVd3q1-tAdSVlCPdMuK87C-6Eti_aARMwr2mmHw&oe=69B47C1A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"NnsekMXNzOnqSRdSs+fzvjbdwqTKKy7AVsxJAeOY+P0=\",\"fileEncSha256\":\"7ay8dbxglF5MjHC+lM+wDFb42cgZeCP1PlUg1cn3D3o=\",\"mediaKey\":\"Lahiy1aVMQmutpfopVNVxPJ2Db3dFaZzQCCCU0LUKq0=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/634479348_1266076872245904_7029214317410083729_n.enc?ccb=11-4&oh=01_Q5Aa3wEoT1-sVd3q1-tAdSVlCPdMuK87C-6Eti_aARMwr2mmHw&oe=69B47C1A&_nc_sid=5e03e0\",\"fileLength\":\"312984\",\"mediaKeyTimestamp\":\"1770854120\",\"firstFrameLength\":312602,\"firstFrameSidecar\":\"gNj1+WImzJr+Ow==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854120841\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854121,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:33'),
(2984, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:28.935Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:33'),
(2985, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:28.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:33'),
(2986, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:34'),
(2987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5D620443211C418B7BC64EB6E00229F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634479348_1266076872245904_7029214317410083729_n.enc?ccb=11-4&oh=01_Q5Aa3wEoT1-sVd3q1-tAdSVlCPdMuK87C-6Eti_aARMwr2mmHw&oe=69B47C1A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"NnsekMXNzOnqSRdSs+fzvjbdwqTKKy7AVsxJAeOY+P0=\",\"fileEncSha256\":\"7ay8dbxglF5MjHC+lM+wDFb42cgZeCP1PlUg1cn3D3o=\",\"mediaKey\":\"Lahiy1aVMQmutpfopVNVxPJ2Db3dFaZzQCCCU0LUKq0=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/634479348_1266076872245904_7029214317410083729_n.enc?ccb=11-4&oh=01_Q5Aa3wEoT1-sVd3q1-tAdSVlCPdMuK87C-6Eti_aARMwr2mmHw&oe=69B47C1A&_nc_sid=5e03e0\",\"fileLength\":\"312984\",\"mediaKeyTimestamp\":\"1770854120\",\"firstFrameLength\":312602,\"firstFrameSidecar\":\"gNj1+WImzJr+Ow==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854120841\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854121,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:34'),
(2988, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:34'),
(2989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:34'),
(2990, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:20.873Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:34'),
(2991, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:28.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:35'),
(2992, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:29.448Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:35'),
(2993, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D620443211C418B7BC64EB6E00229F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854121905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:21.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:35'),
(2994, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:35'),
(2995, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wHhUXjfQfGSqLN07Aseqe51vmuKgS5WYZ4TcdGGw0y6OQ&oe=69B47815&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"dwbJmaV\\/L5R22dYqcF26i67l5cWBQjGLBUPrCCp5ewU=\",\"mediaKey\":\"LG5VFSBgqkLFgvv+QX\\/rVG3l8r2d+yD\\/chwIXEZ3ww8=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wHhUXjfQfGSqLN07Aseqe51vmuKgS5WYZ4TcdGGw0y6OQ&oe=69B47815&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1770729603\",\"isAnimated\":false,\"stickerSentTs\":\"1770854118894\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:35'),
(2996, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A54CB80627BCD643962255C053D8FA94\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587099897_911487291289908_9133339557156239146_n.enc?ccb=11-4&oh=01_Q5Aa3wFkwoHEwJ50-ktPKZUmorZVe3P0pedG1rzyj5Io3J-gNg&oe=69B47B74&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ggDlOZ5Pz0r\\/ux0gHaFdwgOs134gnMOcoK\\/WyK1XhM0=\",\"fileEncSha256\":\"nz1Cug3zAbV9M765\\/d5OOZOs5HlahWINiTGHYtV5b2o=\",\"mediaKey\":\"I7iouo2iAsNXErb3TSpndnHmpmY3O4BzNjSdZyI7xCU=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587099897_911487291289908_9133339557156239146_n.enc?ccb=11-4&oh=01_Q5Aa3wFkwoHEwJ50-ktPKZUmorZVe3P0pedG1rzyj5Io3J-gNg&oe=69B47B74&_nc_sid=5e03e0\",\"fileLength\":\"133772\",\"mediaKeyTimestamp\":\"1770854135\",\"firstFrameLength\":133684,\"firstFrameSidecar\":\"rqQodyED1cUqtw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854135356\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QdFgN4Y2yeL6jf0YjJZCfXPW4FEJItgDE6tnCeKhNjw=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854135,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:36.135Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:36'),
(2997, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:36.134Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:36'),
(2998, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A54CB80627BCD643962255C053D8FA94\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587099897_911487291289908_9133339557156239146_n.enc?ccb=11-4&oh=01_Q5Aa3wFkwoHEwJ50-ktPKZUmorZVe3P0pedG1rzyj5Io3J-gNg&oe=69B47B74&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ggDlOZ5Pz0r\\/ux0gHaFdwgOs134gnMOcoK\\/WyK1XhM0=\",\"fileEncSha256\":\"nz1Cug3zAbV9M765\\/d5OOZOs5HlahWINiTGHYtV5b2o=\",\"mediaKey\":\"I7iouo2iAsNXErb3TSpndnHmpmY3O4BzNjSdZyI7xCU=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587099897_911487291289908_9133339557156239146_n.enc?ccb=11-4&oh=01_Q5Aa3wFkwoHEwJ50-ktPKZUmorZVe3P0pedG1rzyj5Io3J-gNg&oe=69B47B74&_nc_sid=5e03e0\",\"fileLength\":\"133772\",\"mediaKeyTimestamp\":\"1770854135\",\"firstFrameLength\":133684,\"firstFrameSidecar\":\"rqQodyED1cUqtw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854135356\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:36'),
(2999, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:36'),
(3000, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:36.296Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:36'),
(3001, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A506239E670309956E4944010D038DDB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wHFwQRC1PAxIIek9IvsrFQs4xAY-NzMFgw0fZGwjvnR0w&oe=69B48826&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8iSCUz+gptsDQkDtVfOyxACXXaqLNZTf4YTXplU3WaQ=\",\"fileEncSha256\":\"hUtOn7mi8W7ne7efCJQufxfm6TEP9PNczEeCpYPWjiQ=\",\"mediaKey\":\"fYc2S\\/QHsgQ9BwLcbBpLUDR12uOjDHvvWT72gH2rtX0=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wHFwQRC1PAxIIek9IvsrFQs4xAY-NzMFgw0fZGwjvnR0w&oe=69B48826&_nc_sid=5e03e0\",\"fileLength\":\"93402\",\"mediaKeyTimestamp\":\"1770854136\",\"isAnimated\":false,\"stickerSentTs\":\"1770854136582\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3w3yYB8ryr+xfdjkeY3dY5qt50S10+wR2edM7A5BZzc=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854137,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:37.394Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:37'),
(3002, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:37.390Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:37'),
(3003, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A506239E670309956E4944010D038DDB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wHFwQRC1PAxIIek9IvsrFQs4xAY-NzMFgw0fZGwjvnR0w&oe=69B48826&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8iSCUz+gptsDQkDtVfOyxACXXaqLNZTf4YTXplU3WaQ=\",\"fileEncSha256\":\"hUtOn7mi8W7ne7efCJQufxfm6TEP9PNczEeCpYPWjiQ=\",\"mediaKey\":\"fYc2S\\/QHsgQ9BwLcbBpLUDR12uOjDHvvWT72gH2rtX0=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wHFwQRC1PAxIIek9IvsrFQs4xAY-NzMFgw0fZGwjvnR0w&oe=69B48826&_nc_sid=5e03e0\",\"fileLength\":\"93402\",\"mediaKeyTimestamp\":\"1770854136\",\"isAnimated\":false,\"stickerSentTs\":\"1770854136582\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854137,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:37.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:37'),
(3004, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:37.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:37'),
(3005, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:37.562Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:37'),
(3006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:38.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:38'),
(3007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:38.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:38'),
(3008, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:37.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:38'),
(3009, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A506239E670309956E4944010D038DDB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854137697,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:37.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:38'),
(3010, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:38'),
(3011, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:38.997Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:39'),
(3012, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586743312_877429035085320_7924817288326874896_n.enc?ccb=11-4&oh=01_Q5Aa3wFM5UAtfN1gMFzJ_riBHy2KMRcoOxp5wHEUE_tIM6H6Aw&oe=69B4752D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"k2q+avWxVRlx7xmTMWlfUAM4AVd1TjoCeIyUWXrBdf8=\",\"fileEncSha256\":\"xNLYxBFfohcZLw3ToYhnPcEb+rLa8vtBWjMF\\/xRxzgc=\",\"mediaKey\":\"2uFo757LKxBNCPb+Bfa3zBfb9qcz8BWqI+nBQmdBX3A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586743312_877429035085320_7924817288326874896_n.enc?ccb=11-4&oh=01_Q5Aa3wFM5UAtfN1gMFzJ_riBHy2KMRcoOxp5wHEUE_tIM6H6Aw&oe=69B4752D&_nc_sid=5e03e0\",\"fileLength\":\"554960\",\"mediaKeyTimestamp\":\"1770854137\",\"firstFrameLength\":554476,\"firstFrameSidecar\":\"E4MZxF+SGH5AJQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854137559\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZqeapA\\/dCBlsROAJYVWF6QdVeeyRiGdhes0CHsnlZtw=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854138,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:38.999Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:39'),
(3013, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:39'),
(3014, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586743312_877429035085320_7924817288326874896_n.enc?ccb=11-4&oh=01_Q5Aa3wFM5UAtfN1gMFzJ_riBHy2KMRcoOxp5wHEUE_tIM6H6Aw&oe=69B4752D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"k2q+avWxVRlx7xmTMWlfUAM4AVd1TjoCeIyUWXrBdf8=\",\"fileEncSha256\":\"xNLYxBFfohcZLw3ToYhnPcEb+rLa8vtBWjMF\\/xRxzgc=\",\"mediaKey\":\"2uFo757LKxBNCPb+Bfa3zBfb9qcz8BWqI+nBQmdBX3A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586743312_877429035085320_7924817288326874896_n.enc?ccb=11-4&oh=01_Q5Aa3wFM5UAtfN1gMFzJ_riBHy2KMRcoOxp5wHEUE_tIM6H6Aw&oe=69B4752D&_nc_sid=5e03e0\",\"fileLength\":\"554960\",\"mediaKeyTimestamp\":\"1770854137\",\"firstFrameLength\":554476,\"firstFrameSidecar\":\"E4MZxF+SGH5AJQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854137559\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854138,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:39'),
(3015, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:39.157Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:39'),
(3016, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586743312_877429035085320_7924817288326874896_n.enc?ccb=11-4&oh=01_Q5Aa3wFM5UAtfN1gMFzJ_riBHy2KMRcoOxp5wHEUE_tIM6H6Aw&oe=69B4752D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"k2q+avWxVRlx7xmTMWlfUAM4AVd1TjoCeIyUWXrBdf8=\",\"fileEncSha256\":\"xNLYxBFfohcZLw3ToYhnPcEb+rLa8vtBWjMF\\/xRxzgc=\",\"mediaKey\":\"2uFo757LKxBNCPb+Bfa3zBfb9qcz8BWqI+nBQmdBX3A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586743312_877429035085320_7924817288326874896_n.enc?ccb=11-4&oh=01_Q5Aa3wFM5UAtfN1gMFzJ_riBHy2KMRcoOxp5wHEUE_tIM6H6Aw&oe=69B4752D&_nc_sid=5e03e0\",\"fileLength\":\"554960\",\"mediaKeyTimestamp\":\"1770854137\",\"firstFrameLength\":554476,\"firstFrameSidecar\":\"E4MZxF+SGH5AJQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854137559\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854138,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:40'),
(3017, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A506239E670309956E4944010D038DDB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wHFwQRC1PAxIIek9IvsrFQs4xAY-NzMFgw0fZGwjvnR0w&oe=69B48826&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8iSCUz+gptsDQkDtVfOyxACXXaqLNZTf4YTXplU3WaQ=\",\"fileEncSha256\":\"hUtOn7mi8W7ne7efCJQufxfm6TEP9PNczEeCpYPWjiQ=\",\"mediaKey\":\"fYc2S\\/QHsgQ9BwLcbBpLUDR12uOjDHvvWT72gH2rtX0=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wHFwQRC1PAxIIek9IvsrFQs4xAY-NzMFgw0fZGwjvnR0w&oe=69B48826&_nc_sid=5e03e0\",\"fileLength\":\"93402\",\"mediaKeyTimestamp\":\"1770854136\",\"isAnimated\":false,\"stickerSentTs\":\"1770854136582\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854137,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:37.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:40'),
(3018, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A54CB80627BCD643962255C053D8FA94\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587099897_911487291289908_9133339557156239146_n.enc?ccb=11-4&oh=01_Q5Aa3wFkwoHEwJ50-ktPKZUmorZVe3P0pedG1rzyj5Io3J-gNg&oe=69B47B74&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ggDlOZ5Pz0r\\/ux0gHaFdwgOs134gnMOcoK\\/WyK1XhM0=\",\"fileEncSha256\":\"nz1Cug3zAbV9M765\\/d5OOZOs5HlahWINiTGHYtV5b2o=\",\"mediaKey\":\"I7iouo2iAsNXErb3TSpndnHmpmY3O4BzNjSdZyI7xCU=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587099897_911487291289908_9133339557156239146_n.enc?ccb=11-4&oh=01_Q5Aa3wFkwoHEwJ50-ktPKZUmorZVe3P0pedG1rzyj5Io3J-gNg&oe=69B47B74&_nc_sid=5e03e0\",\"fileLength\":\"133772\",\"mediaKeyTimestamp\":\"1770854135\",\"firstFrameLength\":133684,\"firstFrameSidecar\":\"rqQodyED1cUqtw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854135356\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:40'),
(3019, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:39.314Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:40'),
(3020, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:40'),
(3021, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:41'),
(3022, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A506239E670309956E4944010D038DDB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854137697,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:37.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:41'),
(3023, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:41'),
(3024, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854139322,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:41'),
(3025, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854125864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:25.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:41'),
(3026, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854125864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:25.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:42'),
(3027, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:42'),
(3028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:42'),
(3029, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854139322,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:39.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:42'),
(3030, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854120631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:42'),
(3031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:43'),
(3032, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/593746281_1795377587823018_4273099727400074788_n.enc?ccb=11-4&oh=01_Q5Aa3wGhax2eF31kXJdHlQJW4IqHuY5-xX0PoCVCv43MVPc25w&oe=69B48930&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"q7OYuLRW24i+muvn19WrnGvN0WAhzKp0lYXhVZVvnPs=\",\"fileEncSha256\":\"VEtDO+4nViWj3CIw9uSlAIzgdPy+4krBcxFAHOjtqto=\",\"mediaKey\":\"pLmuii7jo30Neu1VxpJf1qLmyxQiZdtdwyVTPVF5BUE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/593746281_1795377587823018_4273099727400074788_n.enc?ccb=11-4&oh=01_Q5Aa3wGhax2eF31kXJdHlQJW4IqHuY5-xX0PoCVCv43MVPc25w&oe=69B48930&_nc_sid=5e03e0\",\"fileLength\":\"34754\",\"mediaKeyTimestamp\":\"1770768015\",\"isAnimated\":false,\"stickerSentTs\":\"1770854119690\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3033, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:43'),
(3034, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A56044A96B02E8C4AAF39892E3B05191\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634076702_801969139596952_557236420591146515_n.enc?ccb=11-4&oh=01_Q5Aa3wHTKnH7AjlO4tDhNdJM37SFjuOZxR6lVrfQ9_p1u_2i5g&oe=69B472C5&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"xjxNSzItPwwbXYxQ5tst79bAJVWS76UvJbaoXY7FGdE=\",\"fileEncSha256\":\"fJwxnv88g1b9T88MLI3pwpQ\\/0zLOafHipIpV9WgXhNs=\",\"mediaKey\":\"l+qAkUVc72qX79mBUHBavknxBsxJDmvQgHfUC2DKkSg=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634076702_801969139596952_557236420591146515_n.enc?ccb=11-4&oh=01_Q5Aa3wHTKnH7AjlO4tDhNdJM37SFjuOZxR6lVrfQ9_p1u_2i5g&oe=69B472C5&_nc_sid=5e03e0\",\"fileLength\":\"34236\",\"mediaKeyTimestamp\":\"1770854128\",\"isAnimated\":false,\"stickerSentTs\":\"1770854128589\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:43'),
(3035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:43'),
(3036, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54CB80627BCD643962255C053D8FA94\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854136475,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:44'),
(3037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A56044A96B02E8C4AAF39892E3B05191\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634076702_801969139596952_557236420591146515_n.enc?ccb=11-4&oh=01_Q5Aa3wHTKnH7AjlO4tDhNdJM37SFjuOZxR6lVrfQ9_p1u_2i5g&oe=69B472C5&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"xjxNSzItPwwbXYxQ5tst79bAJVWS76UvJbaoXY7FGdE=\",\"fileEncSha256\":\"fJwxnv88g1b9T88MLI3pwpQ\\/0zLOafHipIpV9WgXhNs=\",\"mediaKey\":\"l+qAkUVc72qX79mBUHBavknxBsxJDmvQgHfUC2DKkSg=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634076702_801969139596952_557236420591146515_n.enc?ccb=11-4&oh=01_Q5Aa3wHTKnH7AjlO4tDhNdJM37SFjuOZxR6lVrfQ9_p1u_2i5g&oe=69B472C5&_nc_sid=5e03e0\",\"fileLength\":\"34236\",\"mediaKeyTimestamp\":\"1770854128\",\"isAnimated\":false,\"stickerSentTs\":\"1770854128589\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:29.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:44'),
(3038, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:36.454Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:44'),
(3039, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:37.722Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:44'),
(3040, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54CB80627BCD643962255C053D8FA94\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854136475,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:36.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:44'),
(3041, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:18.505Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:45'),
(3042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:45'),
(3043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5EB6483784EFED48A9891CF902026F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/543860155_1234255122181973_5488410866003297842_n.enc?ccb=11-4&oh=01_Q5Aa3wEUvJcifTn-mbddor4PUEuMwB3Qh4aU8l7pNXqwm6JGPQ&oe=69B47797&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"MobatPtXx+7m0nmEHhbaqkuFgP0\\/q7cBPQk4lPR+mx8=\",\"fileEncSha256\":\"XQb4+RCeeqv9A9al\\/PxIcjnVbKKwxpMXvIPMs0kOpmc=\",\"mediaKey\":\"tMMZUTXMH43gaSpR4Hray4Oi5a68+OEBcJaqb4AuJy8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/543860155_1234255122181973_5488410866003297842_n.enc?ccb=11-4&oh=01_Q5Aa3wEUvJcifTn-mbddor4PUEuMwB3Qh4aU8l7pNXqwm6JGPQ&oe=69B47797&_nc_sid=5e03e0\",\"fileLength\":\"15626\",\"mediaKeyTimestamp\":\"1770825749\",\"isAnimated\":false,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"stickerSentTs\":\"1770854117611\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854118,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:45'),
(3044, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:19.445Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:45'),
(3045, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:19.608Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:45'),
(3046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:46'),
(3047, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:46.515Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:46'),
(3048, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A53246C74AE4841D439F67589300A746\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587552207_1979606719659694_472249151209608546_n.enc?ccb=11-4&oh=01_Q5Aa3wHvd0kBm_MzKJjzkpdoTL0tfHIftaD8x3qnGMKUmOqX0A&oe=69B4871F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"EJj6NiG7qwZuBOIXkCIzhbTkxg4zYs+PmWwJUrl7hdw=\",\"fileEncSha256\":\"wnWWYk6u4sR5UpMEMLjmYMU3BE69UiY3ii0RdglWmtw=\",\"mediaKey\":\"ookSVW2\\/uqg3J4PzcXcAliddswYfTVfgYevDLT4YZ7A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587552207_1979606719659694_472249151209608546_n.enc?ccb=11-4&oh=01_Q5Aa3wHvd0kBm_MzKJjzkpdoTL0tfHIftaD8x3qnGMKUmOqX0A&oe=69B4871F&_nc_sid=5e03e0\",\"fileLength\":\"330536\",\"mediaKeyTimestamp\":\"1770854145\",\"firstFrameLength\":330122,\"firstFrameSidecar\":\"fODpsrlRytfITA==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854145726\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nOnk1qvmrabo5ZjHhFRwUe1qo5x0u\\/uS77xBlDeQFcQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854146,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:46.517Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:46'),
(3049, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:46.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:46'),
(3050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A53246C74AE4841D439F67589300A746\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587552207_1979606719659694_472249151209608546_n.enc?ccb=11-4&oh=01_Q5Aa3wHvd0kBm_MzKJjzkpdoTL0tfHIftaD8x3qnGMKUmOqX0A&oe=69B4871F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"EJj6NiG7qwZuBOIXkCIzhbTkxg4zYs+PmWwJUrl7hdw=\",\"fileEncSha256\":\"wnWWYk6u4sR5UpMEMLjmYMU3BE69UiY3ii0RdglWmtw=\",\"mediaKey\":\"ookSVW2\\/uqg3J4PzcXcAliddswYfTVfgYevDLT4YZ7A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587552207_1979606719659694_472249151209608546_n.enc?ccb=11-4&oh=01_Q5Aa3wHvd0kBm_MzKJjzkpdoTL0tfHIftaD8x3qnGMKUmOqX0A&oe=69B4871F&_nc_sid=5e03e0\",\"fileLength\":\"330536\",\"mediaKeyTimestamp\":\"1770854145\",\"firstFrameLength\":330122,\"firstFrameSidecar\":\"fODpsrlRytfITA==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854145726\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:46.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:46'),
(3051, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:47.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:47'),
(3052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:47.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:47'),
(3053, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:46.674Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:47'),
(3054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854119832,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:47'),
(3055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:47'),
(3056, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:20.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:48'),
(3057, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854119832,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:48'),
(3058, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A53246C74AE4841D439F67589300A746\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587552207_1979606719659694_472249151209608546_n.enc?ccb=11-4&oh=01_Q5Aa3wHvd0kBm_MzKJjzkpdoTL0tfHIftaD8x3qnGMKUmOqX0A&oe=69B4871F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"EJj6NiG7qwZuBOIXkCIzhbTkxg4zYs+PmWwJUrl7hdw=\",\"fileEncSha256\":\"wnWWYk6u4sR5UpMEMLjmYMU3BE69UiY3ii0RdglWmtw=\",\"mediaKey\":\"ookSVW2\\/uqg3J4PzcXcAliddswYfTVfgYevDLT4YZ7A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/587552207_1979606719659694_472249151209608546_n.enc?ccb=11-4&oh=01_Q5Aa3wHvd0kBm_MzKJjzkpdoTL0tfHIftaD8x3qnGMKUmOqX0A&oe=69B4871F&_nc_sid=5e03e0\",\"fileLength\":\"330536\",\"mediaKeyTimestamp\":\"1770854145\",\"firstFrameLength\":330122,\"firstFrameSidecar\":\"fODpsrlRytfITA==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854145726\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:46.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:48'),
(3059, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:46.832Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:48'),
(3060, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:46.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:48'),
(3061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53246C74AE4841D439F67589300A746\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854146858,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:46.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:49'),
(3062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854119337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:49'),
(3063, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:21.730Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:49'),
(3064, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:49'),
(3065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53246C74AE4841D439F67589300A746\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854146858,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:46.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:50'),
(3066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854119337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:19.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:50'),
(3067, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:18.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:50'),
(3068, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"kXh3kALaekA9Sv\\/wWTUx2zvaFscHj8gSBEKF2NR0fpU=\",\"fileEncSha256\":\"UYZAvfwh3oi5F+TR\\/v0HFFiTWAGTgFIVlmD2Zkl5\\/OY=\",\"mediaKey\":\"t5Tc5W8L9Qp\\/Zm4KApWe5lKEBBAUDatea36pWQkcZKE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0\",\"fileLength\":\"84544\",\"mediaKeyTimestamp\":\"1770854150\",\"isAnimated\":false,\"stickerSentTs\":\"1770854150481\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rht5LIkRDuJfzPpy8CvqECKORDHoKR7NmVqFNVDUKIQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854151,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:55:51.199Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:51'),
(3069, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:55:51.199Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:51'),
(3070, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:51.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:51'),
(3071, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"kXh3kALaekA9Sv\\/wWTUx2zvaFscHj8gSBEKF2NR0fpU=\",\"fileEncSha256\":\"UYZAvfwh3oi5F+TR\\/v0HFFiTWAGTgFIVlmD2Zkl5\\/OY=\",\"mediaKey\":\"t5Tc5W8L9Qp\\/Zm4KApWe5lKEBBAUDatea36pWQkcZKE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0\",\"fileLength\":\"84544\",\"mediaKeyTimestamp\":\"1770854150\",\"isAnimated\":false,\"stickerSentTs\":\"1770854150481\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854151,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:51.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:51'),
(3072, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:55:51.356Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:51'),
(3073, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:52.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:52'),
(3074, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:52.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:52'),
(3075, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:51.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:52'),
(3076, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"kXh3kALaekA9Sv\\/wWTUx2zvaFscHj8gSBEKF2NR0fpU=\",\"fileEncSha256\":\"UYZAvfwh3oi5F+TR\\/v0HFFiTWAGTgFIVlmD2Zkl5\\/OY=\",\"mediaKey\":\"t5Tc5W8L9Qp\\/Zm4KApWe5lKEBBAUDatea36pWQkcZKE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0\",\"fileLength\":\"84544\",\"mediaKeyTimestamp\":\"1770854150\",\"isAnimated\":false,\"stickerSentTs\":\"1770854150481\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854151,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:51.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:52'),
(3077, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:55:51.515Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:52'),
(3078, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854151600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:51.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:55:53'),
(3079, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854151600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:55:51.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:55:54'),
(3080, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634362732_824913987274845_7149205748479435891_n.enc?ccb=11-4&oh=01_Q5Aa3wGM2CW2yZoINldMdiA-bk4uIl53PllgIKf9WTbnZwJQYQ&oe=69B47CDE&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"eLFaELP5\\/U\\/BsmXi+HcwLUZWs\\/E2Qy\\/yVbwW\\/O6DJW0=\",\"fileEncSha256\":\"8VWZVMAOc7YgNZwATfNEX6ZiSuM5zOjIyeXvwCoUl9E=\",\"mediaKey\":\"CmbKbbqXWUYYBBJ9cpaJhukLo3jATW6reQhAIYfVXOY=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634362732_824913987274845_7149205748479435891_n.enc?ccb=11-4&oh=01_Q5Aa3wGM2CW2yZoINldMdiA-bk4uIl53PllgIKf9WTbnZwJQYQ&oe=69B47CDE&_nc_sid=5e03e0\",\"fileLength\":\"808212\",\"mediaKeyTimestamp\":\"1770854182\",\"firstFrameLength\":807718,\"firstFrameSidecar\":\"\\/EYN3lrIizNnYg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854182327\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V+WdfCaVykgF6J9JPte4h12gNzXkmHikqxYQji9oEnQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854183,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:56:23.205Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:23'),
(3081, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:56:23.204Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:23'),
(3082, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:23'),
(3083, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634362732_824913987274845_7149205748479435891_n.enc?ccb=11-4&oh=01_Q5Aa3wGM2CW2yZoINldMdiA-bk4uIl53PllgIKf9WTbnZwJQYQ&oe=69B47CDE&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"eLFaELP5\\/U\\/BsmXi+HcwLUZWs\\/E2Qy\\/yVbwW\\/O6DJW0=\",\"fileEncSha256\":\"8VWZVMAOc7YgNZwATfNEX6ZiSuM5zOjIyeXvwCoUl9E=\",\"mediaKey\":\"CmbKbbqXWUYYBBJ9cpaJhukLo3jATW6reQhAIYfVXOY=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634362732_824913987274845_7149205748479435891_n.enc?ccb=11-4&oh=01_Q5Aa3wGM2CW2yZoINldMdiA-bk4uIl53PllgIKf9WTbnZwJQYQ&oe=69B47CDE&_nc_sid=5e03e0\",\"fileLength\":\"808212\",\"mediaKeyTimestamp\":\"1770854182\",\"firstFrameLength\":807718,\"firstFrameSidecar\":\"\\/EYN3lrIizNnYg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854182327\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:23'),
(3084, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:56:23.368Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:23'),
(3085, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:24'),
(3086, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:24'),
(3087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:24'),
(3088, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634362732_824913987274845_7149205748479435891_n.enc?ccb=11-4&oh=01_Q5Aa3wGM2CW2yZoINldMdiA-bk4uIl53PllgIKf9WTbnZwJQYQ&oe=69B47CDE&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"eLFaELP5\\/U\\/BsmXi+HcwLUZWs\\/E2Qy\\/yVbwW\\/O6DJW0=\",\"fileEncSha256\":\"8VWZVMAOc7YgNZwATfNEX6ZiSuM5zOjIyeXvwCoUl9E=\",\"mediaKey\":\"CmbKbbqXWUYYBBJ9cpaJhukLo3jATW6reQhAIYfVXOY=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634362732_824913987274845_7149205748479435891_n.enc?ccb=11-4&oh=01_Q5Aa3wGM2CW2yZoINldMdiA-bk4uIl53PllgIKf9WTbnZwJQYQ&oe=69B47CDE&_nc_sid=5e03e0\",\"fileLength\":\"808212\",\"mediaKeyTimestamp\":\"1770854182\",\"firstFrameLength\":807718,\"firstFrameSidecar\":\"\\/EYN3lrIizNnYg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854182327\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:24'),
(3089, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:56:23.530Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:24'),
(3090, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854183544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:25'),
(3091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854183544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:23.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:25'),
(3092, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586876730_803658989412566_9091070280574951252_n.enc?ccb=11-4&oh=01_Q5Aa3wFAfZTZVlLWu7S59Zo_oLldfQzjP7ARepA8c8jCRjcL1g&oe=69B4700F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8s+jRnhe9k\\/ycuB0Fu2tv\\/ARwgEQ+gwmzQgtp7Xhenk=\",\"fileEncSha256\":\"mtFgnUuAsicuoAOPeazl3ijGh7xFCjEtfzIrdM6CvCw=\",\"mediaKey\":\"hvfkCDbZAs4TK5Ckh6S3iGtpcP9HfV4JmRp91UvUCiw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586876730_803658989412566_9091070280574951252_n.enc?ccb=11-4&oh=01_Q5Aa3wFAfZTZVlLWu7S59Zo_oLldfQzjP7ARepA8c8jCRjcL1g&oe=69B4700F&_nc_sid=5e03e0\",\"fileLength\":\"252514\",\"mediaKeyTimestamp\":\"1770854187\",\"firstFrameLength\":252238,\"firstFrameSidecar\":\"ErEpWI4wPLoLgQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854187109\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RQDu7Js9Weph3it5HR+4HHOfGyJrmuO7p6SqT3acXOQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854188,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:56:28.215Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:28'),
(3093, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:56:28.214Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:28'),
(3094, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:28');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586876730_803658989412566_9091070280574951252_n.enc?ccb=11-4&oh=01_Q5Aa3wFAfZTZVlLWu7S59Zo_oLldfQzjP7ARepA8c8jCRjcL1g&oe=69B4700F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8s+jRnhe9k\\/ycuB0Fu2tv\\/ARwgEQ+gwmzQgtp7Xhenk=\",\"fileEncSha256\":\"mtFgnUuAsicuoAOPeazl3ijGh7xFCjEtfzIrdM6CvCw=\",\"mediaKey\":\"hvfkCDbZAs4TK5Ckh6S3iGtpcP9HfV4JmRp91UvUCiw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586876730_803658989412566_9091070280574951252_n.enc?ccb=11-4&oh=01_Q5Aa3wFAfZTZVlLWu7S59Zo_oLldfQzjP7ARepA8c8jCRjcL1g&oe=69B4700F&_nc_sid=5e03e0\",\"fileLength\":\"252514\",\"mediaKeyTimestamp\":\"1770854187\",\"firstFrameLength\":252238,\"firstFrameSidecar\":\"ErEpWI4wPLoLgQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854187109\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854188,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:28'),
(3096, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:56:28.374Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:28'),
(3097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:29'),
(3098, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:29'),
(3099, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:56:28.530Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:29'),
(3100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586876730_803658989412566_9091070280574951252_n.enc?ccb=11-4&oh=01_Q5Aa3wFAfZTZVlLWu7S59Zo_oLldfQzjP7ARepA8c8jCRjcL1g&oe=69B4700F&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8s+jRnhe9k\\/ycuB0Fu2tv\\/ARwgEQ+gwmzQgtp7Xhenk=\",\"fileEncSha256\":\"mtFgnUuAsicuoAOPeazl3ijGh7xFCjEtfzIrdM6CvCw=\",\"mediaKey\":\"hvfkCDbZAs4TK5Ckh6S3iGtpcP9HfV4JmRp91UvUCiw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586876730_803658989412566_9091070280574951252_n.enc?ccb=11-4&oh=01_Q5Aa3wFAfZTZVlLWu7S59Zo_oLldfQzjP7ARepA8c8jCRjcL1g&oe=69B4700F&_nc_sid=5e03e0\",\"fileLength\":\"252514\",\"mediaKeyTimestamp\":\"1770854187\",\"firstFrameLength\":252238,\"firstFrameSidecar\":\"ErEpWI4wPLoLgQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854187109\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854188,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:29'),
(3101, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:29'),
(3102, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:56:30.759Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:30'),
(3103, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wF27GCPFBJsXjyIK5z00u8_IRaC9-IDKHYxb9Ty3fUV5Q&oe=69B473F0&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"C4t\\/qoLLHk2V44\\/TL3YbYXJoCXhj+sOHPfPyhNaMERM=\",\"mediaKey\":\"lLhY6I3j8LmhS0NsXrrN1RZFVsRh8UoWnhbc9QnV2uE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wF27GCPFBJsXjyIK5z00u8_IRaC9-IDKHYxb9Ty3fUV5Q&oe=69B473F0&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1770854189\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"OSUCUmmf7BmRSA==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854189868\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"R6FF3X2qgT6fqB9\\/6k++CDal04Z7hqCW22pxdXopOO8=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854190,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:56:30.760Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:30'),
(3104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854188548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:30'),
(3105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:30.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:30'),
(3106, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wF27GCPFBJsXjyIK5z00u8_IRaC9-IDKHYxb9Ty3fUV5Q&oe=69B473F0&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"C4t\\/qoLLHk2V44\\/TL3YbYXJoCXhj+sOHPfPyhNaMERM=\",\"mediaKey\":\"lLhY6I3j8LmhS0NsXrrN1RZFVsRh8UoWnhbc9QnV2uE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wF27GCPFBJsXjyIK5z00u8_IRaC9-IDKHYxb9Ty3fUV5Q&oe=69B473F0&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1770854189\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"OSUCUmmf7BmRSA==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854189868\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854190,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:30.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:30'),
(3107, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wF27GCPFBJsXjyIK5z00u8_IRaC9-IDKHYxb9Ty3fUV5Q&oe=69B473F0&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"C4t\\/qoLLHk2V44\\/TL3YbYXJoCXhj+sOHPfPyhNaMERM=\",\"mediaKey\":\"lLhY6I3j8LmhS0NsXrrN1RZFVsRh8UoWnhbc9QnV2uE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wF27GCPFBJsXjyIK5z00u8_IRaC9-IDKHYxb9Ty3fUV5Q&oe=69B473F0&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1770854189\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"OSUCUmmf7BmRSA==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854189868\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854190,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:30.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:31'),
(3108, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:30.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:31'),
(3109, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:56:31.076Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:31'),
(3110, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854191084,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:31.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:31'),
(3111, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854191084,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:31.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:31'),
(3112, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:31.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:32'),
(3113, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:56:30.917Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:32'),
(3114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854188548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:28.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:32'),
(3115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:31.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:32'),
(3116, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A5C3E704FE96030100F8C79C46D0E486\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854193723\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Xc7MZgU0wOpJSB3ZZj24XUyFJylZ4ZmaE7Rjjm4sxyQ=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854194,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:56:34.486Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:34'),
(3117, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:56:34.485Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:34'),
(3118, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5C3E704FE96030100F8C79C46D0E486\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854193723\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:34.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:34'),
(3119, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:34.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:34'),
(3120, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:56:34.644Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:34'),
(3121, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:35.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:35'),
(3122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:35.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:35'),
(3123, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:56:34.802Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:35'),
(3124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5C3E704FE96030100F8C79C46D0E486\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854193723\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:34.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:35'),
(3125, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:34.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:35'),
(3126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5C3E704FE96030100F8C79C46D0E486\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854194796,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:34.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:56:36'),
(3127, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5C3E704FE96030100F8C79C46D0E486\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854194796,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:56:34.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:56:36'),
(3128, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:57:01.195Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:01'),
(3129, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEmR6numS78EyX7PRw4fbKZxZ56MZmxCKuySere_8exGw&oe=69B490EA&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"UcW38lF+9oolXuVMKe0LARzG0gPuEUxcoY8LAqMbMGc=\",\"fileEncSha256\":\"9kEOebgApFhQnZtaMojtbFJN4HfURocyRvCgS3UM9m8=\",\"mediaKey\":\"Y1L7IA292mV8J3\\/GVdg40RUcml2yHbyLl+Z+cMwlz5A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEmR6numS78EyX7PRw4fbKZxZ56MZmxCKuySere_8exGw&oe=69B490EA&_nc_sid=5e03e0\",\"fileLength\":\"637660\",\"mediaKeyTimestamp\":\"1770854220\",\"firstFrameLength\":637188,\"firstFrameSidecar\":\"cZLEab361bWKKw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854220061\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2hXV70seUQJr7C2k\\/5xynHym3KsgjB++ErsorcxXrVU=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854221,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:57:01.196Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:01'),
(3130, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:01'),
(3131, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEmR6numS78EyX7PRw4fbKZxZ56MZmxCKuySere_8exGw&oe=69B490EA&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"UcW38lF+9oolXuVMKe0LARzG0gPuEUxcoY8LAqMbMGc=\",\"fileEncSha256\":\"9kEOebgApFhQnZtaMojtbFJN4HfURocyRvCgS3UM9m8=\",\"mediaKey\":\"Y1L7IA292mV8J3\\/GVdg40RUcml2yHbyLl+Z+cMwlz5A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEmR6numS78EyX7PRw4fbKZxZ56MZmxCKuySere_8exGw&oe=69B490EA&_nc_sid=5e03e0\",\"fileLength\":\"637660\",\"mediaKeyTimestamp\":\"1770854220\",\"firstFrameLength\":637188,\"firstFrameSidecar\":\"cZLEab361bWKKw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854220061\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854221,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:01'),
(3132, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:57:01.361Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:01'),
(3133, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:02'),
(3134, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:02'),
(3135, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEmR6numS78EyX7PRw4fbKZxZ56MZmxCKuySere_8exGw&oe=69B490EA&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"UcW38lF+9oolXuVMKe0LARzG0gPuEUxcoY8LAqMbMGc=\",\"fileEncSha256\":\"9kEOebgApFhQnZtaMojtbFJN4HfURocyRvCgS3UM9m8=\",\"mediaKey\":\"Y1L7IA292mV8J3\\/GVdg40RUcml2yHbyLl+Z+cMwlz5A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEmR6numS78EyX7PRw4fbKZxZ56MZmxCKuySere_8exGw&oe=69B490EA&_nc_sid=5e03e0\",\"fileLength\":\"637660\",\"mediaKeyTimestamp\":\"1770854220\",\"firstFrameLength\":637188,\"firstFrameSidecar\":\"cZLEab361bWKKw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854220061\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854221,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:02'),
(3136, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:02'),
(3137, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:57:01.518Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:02'),
(3138, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854221635,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:03'),
(3139, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854221635,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:01.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:04'),
(3140, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":false,\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/34528383_1625098045155323_2346105259497485503_n.enc?ccb=11-4&oh=01_Q5Aa3wEMLNurQ1Vz9kC_6pw1f5nakkQD-4wAea7oOsebJOJjCw&oe=69B48695&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"+sYniWHqZ1XSUeKKNQtkY3okS2RHGrI43DlIpg22wyo=\",\"fileEncSha256\":\"n1owNuajK5wajsEqjeinvZ6R9DfUpq2I8JtCQ2WrP1k=\",\"mediaKey\":\"NlN+1zn3ZB37LU66vQ1Ke\\/xVHiKe2BCPm0H\\/IXO9DlE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/34528383_1625098045155323_2346105259497485503_n.enc?ccb=11-4&oh=01_Q5Aa3wEMLNurQ1Vz9kC_6pw1f5nakkQD-4wAea7oOsebJOJjCw&oe=69B48695&_nc_sid=5e03e0\",\"fileLength\":\"750770\",\"mediaKeyTimestamp\":\"1770854225\",\"firstFrameLength\":2816,\"firstFrameSidecar\":\"CnqG2LAg1aR45A==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854225753\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sehYQxS5jA8YfJXVMjU39WBJyfYt3SSd7WIPK1dfTMc=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854226,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T20:57:06.588Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:06'),
(3141, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T20:57:06.587Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:06'),
(3142, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:06.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:06'),
(3143, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/34528383_1625098045155323_2346105259497485503_n.enc?ccb=11-4&oh=01_Q5Aa3wEMLNurQ1Vz9kC_6pw1f5nakkQD-4wAea7oOsebJOJjCw&oe=69B48695&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"+sYniWHqZ1XSUeKKNQtkY3okS2RHGrI43DlIpg22wyo=\",\"fileEncSha256\":\"n1owNuajK5wajsEqjeinvZ6R9DfUpq2I8JtCQ2WrP1k=\",\"mediaKey\":\"NlN+1zn3ZB37LU66vQ1Ke\\/xVHiKe2BCPm0H\\/IXO9DlE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/34528383_1625098045155323_2346105259497485503_n.enc?ccb=11-4&oh=01_Q5Aa3wEMLNurQ1Vz9kC_6pw1f5nakkQD-4wAea7oOsebJOJjCw&oe=69B48695&_nc_sid=5e03e0\",\"fileLength\":\"750770\",\"mediaKeyTimestamp\":\"1770854225\",\"firstFrameLength\":2816,\"firstFrameSidecar\":\"CnqG2LAg1aR45A==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854225753\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854226,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:06.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:06'),
(3144, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T20:57:06.748Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:06'),
(3145, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:06.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:07'),
(3146, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/34528383_1625098045155323_2346105259497485503_n.enc?ccb=11-4&oh=01_Q5Aa3wEMLNurQ1Vz9kC_6pw1f5nakkQD-4wAea7oOsebJOJjCw&oe=69B48695&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"+sYniWHqZ1XSUeKKNQtkY3okS2RHGrI43DlIpg22wyo=\",\"fileEncSha256\":\"n1owNuajK5wajsEqjeinvZ6R9DfUpq2I8JtCQ2WrP1k=\",\"mediaKey\":\"NlN+1zn3ZB37LU66vQ1Ke\\/xVHiKe2BCPm0H\\/IXO9DlE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/34528383_1625098045155323_2346105259497485503_n.enc?ccb=11-4&oh=01_Q5Aa3wEMLNurQ1Vz9kC_6pw1f5nakkQD-4wAea7oOsebJOJjCw&oe=69B48695&_nc_sid=5e03e0\",\"fileLength\":\"750770\",\"mediaKeyTimestamp\":\"1770854225\",\"firstFrameLength\":2816,\"firstFrameSidecar\":\"CnqG2LAg1aR45A==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854225753\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854226,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:06.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:07'),
(3147, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854226927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:06.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:07'),
(3148, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T20:57:06.903Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:07'),
(3149, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854226927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:06.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:07'),
(3150, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:07.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 20:57:08'),
(3151, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T20:57:07.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 20:57:08'),
(3152, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:27.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:28'),
(3153, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:27.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:28'),
(3154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC208B5F7FE7137542005100A62596FE\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oi boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U2MYu\\/1ALnlydMnU982CaITTMD2RdveXwHJfNxV2G1g=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770854670,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC208B5F7FE7137542005100A62596FE\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oi boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U2MYu\\/1ALnlydMnU982CaITTMD2RdveXwHJfNxV2G1g=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770854670,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3159, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3161, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A54A4FE12C8A8B18CF9E6155B93E3354\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854671,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3162, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3163, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3164, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3165, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A54A4FE12C8A8B18CF9E6155B93E3354\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854671,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3166, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3167, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:31'),
(3168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A54A4FE12C8A8B18CF9E6155B93E3354\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854671780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:31'),
(3169, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:32.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:04:32'),
(3170, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A54A4FE12C8A8B18CF9E6155B93E3354\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854671780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:31.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:32'),
(3171, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:04:32.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:04:32'),
(3172, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:51.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:51'),
(3173, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A56CCAF0932EBA410B5A8BD802678341\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854751,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:51.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:51'),
(3174, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A56CCAF0932EBA410B5A8BD802678341\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854751946,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:51.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:51'),
(3175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:51.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:52'),
(3176, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A56CCAF0932EBA410B5A8BD802678341\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854751,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:51.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:52'),
(3177, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A56CCAF0932EBA410B5A8BD802678341\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854751946,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:51.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:52'),
(3178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:52.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:52'),
(3179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:52.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:52'),
(3180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:57'),
(3181, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A53C534C46F8B5035056D3574F5125D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:57'),
(3182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:57'),
(3183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A53C534C46F8B5035056D3574F5125D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:57'),
(3184, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A53C534C46F8B5035056D3574F5125D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854757300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:57'),
(3185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A53C534C46F8B5035056D3574F5125D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854757300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:58'),
(3186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:05:58'),
(3187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:05:57.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:05:59'),
(3188, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A56CCAF0932EBA410B5A8BD802678341\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854763239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:03.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:03'),
(3189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A53C534C46F8B5035056D3574F5125D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854763235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:03.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:03'),
(3190, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A56CCAF0932EBA410B5A8BD802678341\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854763239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:03.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:03'),
(3191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A53C534C46F8B5035056D3574F5125D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854763235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:03.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:03'),
(3192, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:08'),
(3193, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:08'),
(3194, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768490,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:08'),
(3195, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768508,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:08'),
(3196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53246C74AE4841D439F67589300A746\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:08'),
(3197, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:08'),
(3198, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A506239E670309956E4944010D038DDB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768550,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3199, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3200, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A561053017B546CB0AA1962D6A678EA9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768647,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5C3E704FE96030100F8C79C46D0E486\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3202, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3203, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768626,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3204, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3205, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768525,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:09'),
(3206, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54CB80627BCD643962255C053D8FA94\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768556,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:10'),
(3207, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:10'),
(3208, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A585B2EAA9E30DF1E8CDD5D652486E81\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768490,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:10'),
(3209, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52055939D3D00C10008208173849DE8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768597,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:10'),
(3210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53246C74AE4841D439F67589300A746\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:10'),
(3211, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5736477EEA5612BEB7F50DB4D8C5C12\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:11'),
(3212, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54CB80627BCD643962255C053D8FA94\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768556,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:11'),
(3213, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52055939D3D00C10008208173849DE8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768597,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:11'),
(3214, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A599F06BC10D0215E5E8192B0FEF391C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768626,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:11'),
(3215, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:11'),
(3216, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5C3E704FE96030100F8C79C46D0E486\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:12'),
(3217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50DC06C433A0857E25D2AEF32E2E72C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768525,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:12'),
(3218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D008F033D8BF940DDE8D2C626F0016\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:12'),
(3219, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A561053017B546CB0AA1962D6A678EA9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768647,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:12'),
(3220, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:12'),
(3221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5AFCD39A4CD8DE827F70778AB1AE452\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:13'),
(3222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CFA6BA7850A15D3EBAA675DF2D324E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768508,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:13'),
(3223, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CD5A22BD29BB1609797A430C7FC639\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:13'),
(3224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A56044A96B02E8C4AAF39892E3B05191\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768563,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:13'),
(3225, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768569,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:13'),
(3226, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D620443211C418B7BC64EB6E00229F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:14'),
(3227, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A54197FEB9A52DBAC2C595B2B2560371\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768569,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:14'),
(3228, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A506239E670309956E4944010D038DDB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768550,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:14'),
(3229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A59D0983AE211B97D7114BC7603DD1CC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:14'),
(3230, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A56044A96B02E8C4AAF39892E3B05191\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768563,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:14'),
(3231, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5D620443211C418B7BC64EB6E00229F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:15'),
(3232, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50B126B05BFAFF33A4AE2ABA22EF1F8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:15'),
(3233, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A50225F74B8880A2AB66B329BFD38FF6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:15'),
(3234, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5EB6483784EFED48A9891CF902026F9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768639,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:15'),
(3235, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5EB6483784EFED48A9891CF902026F9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854768639,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:08.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:16');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3236, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:19.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:19'),
(3237, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:19.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:19'),
(3238, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:29.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:29'),
(3239, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:29.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:29'),
(3240, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:40.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:40'),
(3241, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:40.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:40'),
(3242, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:41.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:41'),
(3243, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC0490A4C16C94ED558831A3401A06A5\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Eu fiquei sem renovar o aplicativo e hj fui recarregar não foi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"y\\/WbuBsfCSJUUhlPl6tw2K2YUpQT6L1i318Ct9fy7Yo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770854801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:41.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:41'),
(3244, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:41.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:41'),
(3245, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC0490A4C16C94ED558831A3401A06A5\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Eu fiquei sem renovar o aplicativo e hj fui recarregar não foi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"y\\/WbuBsfCSJUUhlPl6tw2K2YUpQT6L1i318Ct9fy7Yo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770854801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:41.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:41'),
(3246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:42.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:42'),
(3247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:42.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:42'),
(3248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:42.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:42'),
(3249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:42.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:42'),
(3250, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:06:46.706Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:46'),
(3251, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"ACDC62AE5CB076E7B74BDB29DBE60B55\"},\"pushName\":\"~Johnny\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854805875\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854806,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:06:46.707Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:46'),
(3252, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:46.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:46'),
(3253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACDC62AE5CB076E7B74BDB29DBE60B55\"},\"pushName\":\"~Johnny\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854805875\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wv0hBltegPp54QZfmxVa0uvUd0qqYLWuhz3pkPPmFwk=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854806,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:46.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:46'),
(3254, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:46.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:46'),
(3255, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXjQr-hU0d9foCZHTw6F71eev_fEBBH_YZPfFAAvjUUQ&oe=699A2CD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:06:47.020Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:47'),
(3256, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387@lid\",\"id\":\"ACDC62AE5CB076E7B74BDB29DBE60B55\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854807068,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:06:47.069Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:47'),
(3257, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:47.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:47'),
(3258, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:47.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:47'),
(3259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:47.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:06:47'),
(3260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACDC62AE5CB076E7B74BDB29DBE60B55\"},\"pushName\":\"~Johnny\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854805875\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wv0hBltegPp54QZfmxVa0uvUd0qqYLWuhz3pkPPmFwk=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854806,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:46.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:48'),
(3261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyxi0Eqq_xqaJb5-RMyblqzbyrUFupyZTjbFlITrbEfg&oe=699A42C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:06:47.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:06:48'),
(3262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:18.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:18'),
(3263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:18.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:18'),
(3264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AB98DC3CA5C775A7AC0\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634405780_933645742949410_3951091152067204893_n.enc?ccb=11-4&oh=01_Q5Aa3wHdxHuZJZzm6LFcBPFqjhytPAYpcaUf4akDGM5DZYWCrg&oe=69B49F80&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"13YkPj4jUat9V+TYCILhDc2jtnOf9z8zPhpJ+q7vXH8=\",\"fileLength\":\"66184\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"mlyXRCi1t12HkXkQzEeNUFfM8V+Ds83Jbd9vOAUb2q4=\",\"fileEncSha256\":\"Vfdj7Vbbg6MaaWo\\/+VtBC8D20NpCv4xHHifPOBMGGBI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634405780_933645742949410_3951091152067204893_n.enc?ccb=11-4&oh=01_Q5Aa3wHdxHuZJZzm6LFcBPFqjhytPAYpcaUf4akDGM5DZYWCrg&oe=69B49F80&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770854842\",\"streamingSidecar\":\"G3dZFKNWQOaeafa51mEVrDn79x4=\",\"waveform\":\"QmRhTU5eZGJhZGRkZGRkZGRkWV1fY1xUWGRjZGRkZGBkW15XYGRkXWRkZGRkZGRkZGRkZGRkZGRkYmRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770854836\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kxFredfxDGuj9iQ2YKVhTkssvlIS8xL+YMFobShybTY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:26'),
(3265, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AB98DC3CA5C775A7AC0\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634405780_933645742949410_3951091152067204893_n.enc?ccb=11-4&oh=01_Q5Aa3wHdxHuZJZzm6LFcBPFqjhytPAYpcaUf4akDGM5DZYWCrg&oe=69B49F80&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"13YkPj4jUat9V+TYCILhDc2jtnOf9z8zPhpJ+q7vXH8=\",\"fileLength\":\"66184\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"mlyXRCi1t12HkXkQzEeNUFfM8V+Ds83Jbd9vOAUb2q4=\",\"fileEncSha256\":\"Vfdj7Vbbg6MaaWo\\/+VtBC8D20NpCv4xHHifPOBMGGBI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634405780_933645742949410_3951091152067204893_n.enc?ccb=11-4&oh=01_Q5Aa3wHdxHuZJZzm6LFcBPFqjhytPAYpcaUf4akDGM5DZYWCrg&oe=69B49F80&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770854842\",\"streamingSidecar\":\"G3dZFKNWQOaeafa51mEVrDn79x4=\",\"waveform\":\"QmRhTU5eZGJhZGRkZGRkZGRkWV1fY1xUWGRjZGRkZGBkW15XYGRkXWRkZGRkZGRkZGRkZGRkZGRkYmRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770854836\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kxFredfxDGuj9iQ2YKVhTkssvlIS8xL+YMFobShybTY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:26'),
(3266, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:26'),
(3267, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD1A683463C71AA5F98\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586885801_2014129819533077_1210335990667621748_n.enc?ccb=11-4&oh=01_Q5Aa3wFyYfTDmk30z-vRC5N2SX5jkFbk2IcFNU43NlE8BKK0qQ&oe=69B48795&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fxQsJPpDVZa0Qx3bUFA3+PmzQAwm6kdsKZldcrhM864=\",\"fileLength\":\"27078\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"Qd1oBb1OFyGRSvvLzPKOfM+u\\/z0aH3PrXO\\/0W9H5JZ4=\",\"fileEncSha256\":\"Rxdn3+d58AFu8fU\\/xg2KnSxGmSNvn6X6Z1HQnSyxJN8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586885801_2014129819533077_1210335990667621748_n.enc?ccb=11-4&oh=01_Q5Aa3wFyYfTDmk30z-vRC5N2SX5jkFbk2IcFNU43NlE8BKK0qQ&oe=69B48795&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770854150\",\"streamingSidecar\":\"\\/iEWy\\/w+IEf6Rg==\",\"waveform\":\"FjY3Kio0Vj44PTk\\/TD1kVGRkWUdkZGRkZGRkZGRkZGJkZF5kZGRkZGRkZGRkZGRkZGRhYWBkX2RkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770854836\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fFwY0jlmIUU0R18QTcK6KemgOfLqGmt5AC3\\/ah9c06M=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:26'),
(3268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:26'),
(3269, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:07:27.064Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:27'),
(3270, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"AC895154CD4E8C0C09C1466BA82980B8\"},\"pushName\":\"~Johnny\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"kXh3kALaekA9Sv\\/wWTUx2zvaFscHj8gSBEKF2NR0fpU=\",\"fileEncSha256\":\"UYZAvfwh3oi5F+TR\\/v0HFFiTWAGTgFIVlmD2Zkl5\\/OY=\",\"mediaKey\":\"t5Tc5W8L9Qp\\/Zm4KApWe5lKEBBAUDatea36pWQkcZKE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/633916704_2688732334832017_5780199562268285315_n.enc?ccb=11-4&oh=01_Q5Aa3wHxAbQ4EG4z69poOiq18B0HB0Mi7Vz9iocI7n01hho1-g&oe=69B49E65&_nc_sid=5e03e0\",\"fileLength\":\"84544\",\"mediaKeyTimestamp\":\"1770854150\",\"isAnimated\":false,\"stickerSentTs\":\"1770854846451\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:07:27.064Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:27'),
(3271, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:27'),
(3272, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:27.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:27'),
(3273, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:27'),
(3274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:28'),
(3275, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:28'),
(3276, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC895154CD4E8C0C09C1466BA82980B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854848744,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:07:28.745Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:28'),
(3277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:28'),
(3278, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:07:27.377Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:28'),
(3279, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:29'),
(3280, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5F03D7EE61409D047F5778CB2CF6BAA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:29'),
(3281, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:27.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:29'),
(3282, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD1A683463C71AA5F98\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586885801_2014129819533077_1210335990667621748_n.enc?ccb=11-4&oh=01_Q5Aa3wFyYfTDmk30z-vRC5N2SX5jkFbk2IcFNU43NlE8BKK0qQ&oe=69B48795&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fxQsJPpDVZa0Qx3bUFA3+PmzQAwm6kdsKZldcrhM864=\",\"fileLength\":\"27078\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"Qd1oBb1OFyGRSvvLzPKOfM+u\\/z0aH3PrXO\\/0W9H5JZ4=\",\"fileEncSha256\":\"Rxdn3+d58AFu8fU\\/xg2KnSxGmSNvn6X6Z1HQnSyxJN8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586885801_2014129819533077_1210335990667621748_n.enc?ccb=11-4&oh=01_Q5Aa3wFyYfTDmk30z-vRC5N2SX5jkFbk2IcFNU43NlE8BKK0qQ&oe=69B48795&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770854150\",\"streamingSidecar\":\"\\/iEWy\\/w+IEf6Rg==\",\"waveform\":\"FjY3Kio0Vj44PTk\\/TD1kVGRkWUdkZGRkZGRkZGRkZGJkZF5kZGRkZGRkZGRkZGRkZGRhYWBkX2RkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770854836\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fFwY0jlmIUU0R18QTcK6KemgOfLqGmt5AC3\\/ah9c06M=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:29'),
(3283, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:27.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:29'),
(3284, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:30'),
(3285, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:30'),
(3286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5F03D7EE61409D047F5778CB2CF6BAA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854846,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:30'),
(3287, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:27.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:30'),
(3288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F03D7EE61409D047F5778CB2CF6BAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854847564,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:27.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:07:30'),
(3289, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F03D7EE61409D047F5778CB2CF6BAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854847564,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:27.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:31'),
(3290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:31'),
(3291, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:07:26.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:31'),
(3292, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"AC6E5B50ED95AD1037C815EF7FA335BF\"},\"pushName\":\"~Johnny\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/629451643_1415810780027785_4625965772055804696_n.enc?ccb=11-4&oh=01_Q5Aa3wHqSoHcaa-7qWzdxu7QxcrClR0BeiAsvzEuTEn6rltwKw&oe=69B49941&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"\\/XWU1HVH+0cI1vEtI3J+AUi4qBIcqWRZaFxzqvlo6W8=\",\"fileEncSha256\":\"q3dBwrrcsh\\/wTrqO8GsJOcR3J3YuLtN\\/X\\/WpyoCZr6M=\",\"mediaKey\":\"9\\/4huohyMQJf3rIZcJyTgSb6QQJGk7Lpc4Gh3c8\\/Ho8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/629451643_1415810780027785_4625965772055804696_n.enc?ccb=11-4&oh=01_Q5Aa3wHqSoHcaa-7qWzdxu7QxcrClR0BeiAsvzEuTEn6rltwKw&oe=69B49941&_nc_sid=5e03e0\",\"fileLength\":\"40670\",\"mediaKeyTimestamp\":\"1753788730408\",\"isAnimated\":false,\"contextInfo\":{\"stanzaId\":\"A5625806BE347708D21D0C7F2ADE4A8C\",\"participant\":\"273426342236368@lid\",\"quotedMessage\":{\"conversation\":\"Tao sumido, tão bravo com nós ?\"}},\"stickerSentTs\":\"1770854871938\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"stanzaId\":\"A5625806BE347708D21D0C7F2ADE4A8C\",\"participant\":\"273426342236368@lid\",\"quotedMessage\":{\"conversation\":\"Tao sumido, tão bravo com nós ?\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854872,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:07:52.487Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:52'),
(3293, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:07:52.487Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:52'),
(3294, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:07:52.812Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:52'),
(3295, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC6E5B50ED95AD1037C815EF7FA335BF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854872950,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:07:52.950Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:07:52'),
(3296, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"ACDC62AE5CB076E7B74BDB29DBE60B55\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770854891396,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:08:11.396Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:08:11'),
(3297, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC895154CD4E8C0C09C1466BA82980B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854918651,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:08:38.651Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:08:38'),
(3298, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC6E5B50ED95AD1037C815EF7FA335BF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854918639,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:08:38.639Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:08:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3299, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5C7443A1FEE18C332E62B6B2FA2CA9B\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/631662029_2552961341772116_4633459819156500651_n.enc?ccb=11-4&oh=01_Q5Aa3wGHZaO9Cznt9YDjtddhWl9f2xIuoIlJiR-hEbgEsnxjdQ&oe=69B47826&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"PseE8QX3bqPNwjouw3oGc682JV+0clWmfZCuecC9zac=\",\"fileEncSha256\":\"o5E+Z6BnmhIGDmNCoTqQzfg4Ka71sRPw2P863msK6YE=\",\"mediaKey\":\"yai3JDsq9lPJ6192KS0kKU34di+xUodqF1masi3LDPo=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/631662029_2552961341772116_4633459819156500651_n.enc?ccb=11-4&oh=01_Q5Aa3wGHZaO9Cznt9YDjtddhWl9f2xIuoIlJiR-hEbgEsnxjdQ&oe=69B47826&_nc_sid=5e03e0\",\"fileLength\":\"440770\",\"mediaKeyTimestamp\":\"1770854955\",\"firstFrameLength\":440362,\"firstFrameSidecar\":\"+FFr4maakTMuOw==\",\"isAnimated\":true,\"stickerSentTs\":\"1770854954919\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yw4wDNCwnHLV5gNmm8Mc1CDWIUtaHwpRVe89Mptsmec=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854955,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:09:15.947Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:16'),
(3300, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:09:16.113Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:16'),
(3301, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:09:15.945Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:16'),
(3302, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:09:16.272Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:16'),
(3303, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"ACF948B1958EAC286507CF42F0A8BA8E\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"N entendi feio\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770854955,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:09:16.081Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:16'),
(3304, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACF948B1958EAC286507CF42F0A8BA8E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854956907,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:09:16.908Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:17'),
(3305, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:09:16.080Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:17'),
(3306, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:09:16.402Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:17'),
(3307, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:09:21.697Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:21'),
(3308, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"ACE2C47D600430188090E9A46836C9F1\"},\"pushName\":\"~Johnny\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"oK5MPD4ru0Z6AANC4WVRgTZ\\/MS4CR\\/r3TYx08NoxCDg=\",\"fileEncSha256\":\"JlzjGlDa+Zf+Up5mVkEleQy0qVRGILXLYm3AqygwgqA=\",\"mediaKey\":\"plKIcIVt6T0dmJ0G+Nr+o+vknEfFA29V1qT5vRgzv+4=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/25961096_3346745488817418_4343000209749449152_n.enc?ccb=11-4&oh=01_Q5Aa3wFKkyLD6TEPFlXHiM4l5y4pzWikMy31XVIP9kgkbN5LLg&oe=69B4861A&_nc_sid=5e03e0\",\"fileLength\":\"42984\",\"mediaKeyTimestamp\":\"1770854193\",\"isAnimated\":false,\"stickerSentTs\":\"1770854961117\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770854961,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:09:21.698Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:21'),
(3309, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:09:22.023Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:22'),
(3310, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACE2C47D600430188090E9A46836C9F1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770854962190,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:09:22.190Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:22'),
(3311, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-11T21:09:29.788Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:29'),
(3312, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:09:34.757Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:34'),
(3313, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5ACBE1304264AA0363B23200B5786D8\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"conversation\":\"Tão sumido\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"v57gjndIFHuvJYnzZD\\/fgv1e6\\/T8YhYC1y\\/RMR4rWbA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770854974,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:09:34.758Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:34'),
(3314, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:09:34.918Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:34'),
(3315, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:09:35.077Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:09:35'),
(3316, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"AC634D43CCEED3687B5F0317F38EDC93\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586796106_1446824783801575_8212451208929757263_n.enc?ccb=11-4&oh=01_Q5Aa3wE6I3QgcoXg_T2qko9ERNCRlAlREIURLmuVV2j3e6w9-A&oe=69B470BC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"8N+BK7kCw9mo6G2fwLomvlJCYAf2Ui8CVS8Nb33CMO4=\",\"fileLength\":\"55698\",\"seconds\":24,\"ptt\":true,\"mediaKey\":\"lzSBQDJUL1HQT9Vz1L7qA5IMP4iRoZLW7aeE6TbUkOA=\",\"fileEncSha256\":\"v7ozOL39\\/ZJiMuHYUC3S\\/IFCcrvvH+rqrNrZgEtojYM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586796106_1446824783801575_8212451208929757263_n.enc?ccb=11-4&oh=01_Q5Aa3wE6I3QgcoXg_T2qko9ERNCRlAlREIURLmuVV2j3e6w9-A&oe=69B470BC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770854981\",\"waveform\":\"ACYwWQAANgBdSx1VV1paMF8NO0JLF01PWk9LMUk5XwIBVlBMS0VGVQAAQ0kpQiMABAMCAB0vSjAiAAAAGTEsTw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855004,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:10:04.891Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:05'),
(3317, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:10:04.890Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:05'),
(3318, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:10:05.210Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:05'),
(3319, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC634D43CCEED3687B5F0317F38EDC93\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855005578,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:10:05.578Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:05'),
(3320, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC634D43CCEED3687B5F0317F38EDC93\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770855007276,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:10:07.277Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:07'),
(3321, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633978723_1399062414624851_4330854195202073155_n.enc?ccb=11-4&oh=01_Q5Aa3wFmfenUyKkwf_FzZZuHqAAHlCiBdsZtN3q7Oy-kltNr-Q&oe=69B47F08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Hk7evgQShTfCsBCTUp433OCMrE\\/2Snqi7Us2MEYiXIQ=\",\"fileLength\":\"10762\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"SlYVVY7KhIttDhsSX9qXte2tAu+YPK\\/JH++Su7PSmPQ=\",\"fileEncSha256\":\"Bky5IDal5uOd0Fptf3kaMs0VusQhA2A4kjRm14vZVgc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633978723_1399062414624851_4330854195202073155_n.enc?ccb=11-4&oh=01_Q5Aa3wFmfenUyKkwf_FzZZuHqAAHlCiBdsZtN3q7Oy-kltNr-Q&oe=69B47F08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855023\",\"waveform\":\"AAAbTl1YGVVZL2BeWk4yTEtPU1FSUlJNMz85S01EKCJdXzFRT0xYW1ZFSzdESFNWTiktTQ4dOjs4ARITVFBNSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855026,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:26.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:10:26'),
(3322, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:26.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:10:26'),
(3323, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633978723_1399062414624851_4330854195202073155_n.enc?ccb=11-4&oh=01_Q5Aa3wFmfenUyKkwf_FzZZuHqAAHlCiBdsZtN3q7Oy-kltNr-Q&oe=69B47F08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Hk7evgQShTfCsBCTUp433OCMrE\\/2Snqi7Us2MEYiXIQ=\",\"fileLength\":\"10762\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"SlYVVY7KhIttDhsSX9qXte2tAu+YPK\\/JH++Su7PSmPQ=\",\"fileEncSha256\":\"Bky5IDal5uOd0Fptf3kaMs0VusQhA2A4kjRm14vZVgc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633978723_1399062414624851_4330854195202073155_n.enc?ccb=11-4&oh=01_Q5Aa3wFmfenUyKkwf_FzZZuHqAAHlCiBdsZtN3q7Oy-kltNr-Q&oe=69B47F08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855023\",\"waveform\":\"AAAbTl1YGVVZL2BeWk4yTEtPU1FSUlJNMz85S01EKCJdXzFRT0xYW1ZFSzdESFNWTiktTQ4dOjs4ARITVFBNSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855026,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:26.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:26'),
(3324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:26.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:26'),
(3325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:27.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:10:27'),
(3326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:27.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:27'),
(3327, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855028108,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:28.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:10:28'),
(3328, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855028108,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:28.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:28'),
(3329, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:10:42.524Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:42'),
(3330, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5186868092DE5CEBA788AE21653E6FA\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/40876618_2328198647665944_7034730517426086193_n.enc?ccb=11-4&oh=01_Q5Aa3wEUEIib4GUmvMt15EfsYF6X04fW9ItCjmp8hLxaP8iypw&oe=69B48C7A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+A\\/U1ZkVqlZQd0Bh8H2r51kZiGL5fIYh0WW7ItdW7lI=\",\"fileLength\":\"149325\",\"height\":1600,\"width\":900,\"mediaKey\":\"kBfz5M+eOVed7zOfgnw8UkW4Fek\\/FcCOq1Pn2QPHDx8=\",\"fileEncSha256\":\"53S+DDlqeRHQowvyFMymsEL5RQl7HjHr0IcOD68mYgU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/40876618_2328198647665944_7034730517426086193_n.enc?ccb=11-4&oh=01_Q5Aa3wEUEIib4GUmvMt15EfsYF6X04fW9ItCjmp8hLxaP8iypw&oe=69B48C7A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855041\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABQIDBAEBAQEBAQAAAAAAAAAAAAAAAAABAwL\\/2gAMAwEAAhADEAAAAGcbIlPeRTonFezUaIIcWmwkZ7dup5plqXXK00GcdMZzLzlX2zNJWVtqCFzgLFQB\\/8QAIhAAAgIDAQABBQEAAAAAAAAAAQIAAwQREiFBEyIjMVEy\\/9oACAEBAAE\\/AAI+u0EuH4mmOPtWZV4TS7gjLtplHmhjMdwKQxmS1nZcxbEPzDYp+ZnWA1ACBD9BFErQtvs+f2J11vWhKx2dencyamUbQEkQX3966PsfVahT7FY79gYEgAws6+dTIYI4MuzCwGhBUCf9QLr0H0QsynomW2m1zFrAOmm\\/IqTJsCpzv0xR6sQoKbSdFjEVSmzCSB5Lz059iIed6mJwXZW\\/UCl\\/Jk2ioBR+4ql2H9Jl4GPigfMqBrsQn5n\\/xAAZEQACAwEAAAAAAAAAAAAAAAARIAABEBL\\/2gAIAQIBAT8AU4JzT\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAERACACEBL\\/2gAIAQMBAT8AqBBiS1rox2\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"D5BjmK+8VmrN\\/dgWfN61Vw\\/3PllTLHIf4svaliu6tsgsbGkAfZHcag==\",\"scanLengths\":[15660,46480,31708,55477],\"midQualityFileSha256\":\"oBALLLmTrfGIxnLgT8P59sxMlIUvA\\/6wst82h8177F8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G6mpAGPJ+aURrLRdlcAoJQYgD8GbKP1SMlq5FY6lEu0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770855042,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:10:42.525Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:42'),
(3331, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:10:42.693Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:42'),
(3332, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:10:42.851Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:42'),
(3333, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"date_time\":\"2026-02-11T21:10:43.210Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:43'),
(3334, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"available\"}}},\"date_time\":\"2026-02-11T21:10:45.477Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:45'),
(3335, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:10:46.290Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:46'),
(3336, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A533915EE2D30733AC2CEDAAEC57C469\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634629882_898503122588028_4912032651758297031_n.enc?ccb=11-4&oh=01_Q5Aa3wGef7p2pF8TuH-riiPAUeKPVmqRlQ8XpbNECf_-YwfbtQ&oe=69B49DD9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"zJrI4oQ8wl81jjrHxK5H9OyMO+k1lgIQ9+ug9pSreLE=\",\"fileLength\":\"5190\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"P2pKvgCoAovGKKAlvswFeQBlSZHmpLvJHeYezN+YWX4=\",\"fileEncSha256\":\"iFwxxwodSP5gODrjZyd9TMRNsM208mx8\\/RkPyFgZgQk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634629882_898503122588028_4912032651758297031_n.enc?ccb=11-4&oh=01_Q5Aa3wGef7p2pF8TuH-riiPAUeKPVmqRlQ8XpbNECf_-YwfbtQ&oe=69B49DD9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855045\",\"waveform\":\"ABw0R0pPWV1eWVxgYFVNT1hhYWFhYVxWVFdcV1VWXGBgXFdPUlFJSEM3Mi0kJSYmJyksMTUtMDYxLCgsKyYoKQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zYoSE8fvrEDvcTbfVRdii3kxTNadP5DjYUaABtTTYgk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855046,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:10:46.291Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:46'),
(3337, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:10:46.450Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:46'),
(3338, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:10:46.608Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:46'),
(3339, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"date_time\":\"2026-02-11T21:10:47.148Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:47'),
(3340, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"presences\":{\"273426342236368@lid\":{\"lastKnownPresence\":\"available\"}}},\"date_time\":\"2026-02-11T21:10:50.541Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:50'),
(3341, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:10:51.165Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:51'),
(3342, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5BF98D0220CD871719B571FC2989B05\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634410498_741513858786266_8691701734855314053_n.enc?ccb=11-4&oh=01_Q5Aa3wHiGxJ-5z0M2Ank4v9URaasbT9kdFoGxpTeZGYlnVI7hw&oe=69B4770A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"V8GuSk8z7prFsyJB9IBMxbiR9rZI2e5iDq7d1cJhSV4=\",\"fileLength\":\"8286\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"W1h+M8gyK0GCCGFA1ewRwje3eE5lPW2l1WVlIACiHNU=\",\"fileEncSha256\":\"KyKgsZeoHunv7XmfILm19rJ3W\\/66l4KdRK4ix\\/mQmrE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634410498_741513858786266_8691701734855314053_n.enc?ccb=11-4&oh=01_Q5Aa3wHiGxJ-5z0M2Ank4v9URaasbT9kdFoGxpTeZGYlnVI7hw&oe=69B4770A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855048\",\"waveform\":\"ABUsNjg0OTs8PT9TXl9gYWFiXmBSQz1fXlpfYWFfXVpRVmBhYWFJW2FaRExMYWBbV11UQFBfX1BLWF9TWWBYWQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G\\/zZPBjamx4pyrvi4XPQo4W\\/WwEGHAirm4k3xfZflI8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855051,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:10:51.165Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:51'),
(3343, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:10:51.323Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:51'),
(3344, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:10:51.480Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:10:51'),
(3345, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591791257_1437623231065718_4807548333221258110_n.enc?ccb=11-4&oh=01_Q5Aa3wGr3Z04syTvVmqmAT4U5ivffc9_x68AM2rGaDI78weivA&oe=69B476A7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tstlmJKuFYyRfU8d8F5W6icxlTjmDErlAybS2yHbdrc=\",\"fileLength\":\"17838\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"rNsRQdXXMh812xizw8VmmzydPfD6D1qub7Jzsxk8TCU=\",\"fileEncSha256\":\"suMGMnA1uoeuW1qF2TwZDpSaGsGgYpY5Xn5of2mhwv4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591791257_1437623231065718_4807548333221258110_n.enc?ccb=11-4&oh=01_Q5Aa3wGr3Z04syTvVmqmAT4U5ivffc9_x68AM2rGaDI78weivA&oe=69B476A7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855053\",\"waveform\":\"AAYAAAgiLyBbVUdRTSY+QFI8U1RHSFMpRUxVQ0hNVVVRUmJSM1BQWFheJkIgNiMiMxxBNFs\\/XCtEOEJROzZgYA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855059,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:59.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:00'),
(3346, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:59.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:00'),
(3347, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591791257_1437623231065718_4807548333221258110_n.enc?ccb=11-4&oh=01_Q5Aa3wGr3Z04syTvVmqmAT4U5ivffc9_x68AM2rGaDI78weivA&oe=69B476A7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tstlmJKuFYyRfU8d8F5W6icxlTjmDErlAybS2yHbdrc=\",\"fileLength\":\"17838\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"rNsRQdXXMh812xizw8VmmzydPfD6D1qub7Jzsxk8TCU=\",\"fileEncSha256\":\"suMGMnA1uoeuW1qF2TwZDpSaGsGgYpY5Xn5of2mhwv4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591791257_1437623231065718_4807548333221258110_n.enc?ccb=11-4&oh=01_Q5Aa3wGr3Z04syTvVmqmAT4U5ivffc9_x68AM2rGaDI78weivA&oe=69B476A7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855053\",\"waveform\":\"AAYAAAgiLyBbVUdRTSY+QFI8U1RHSFMpRUxVQ0hNVVVRUmJSM1BQWFheJkIgNiMiMxxBNFs\\/XCtEOEJROzZgYA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855059,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:59.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:00'),
(3348, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:10:59.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:00'),
(3349, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:00.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:00'),
(3350, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:00.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:01'),
(3351, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855060850,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:00.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:01'),
(3352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855060850,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:00.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:01'),
(3353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:20.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:20'),
(3354, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:11:20.678Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:20'),
(3355, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A510E4C5F8DCD66A35DE3AE4FE08D7CB\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634415683_893926563246292_6788072142167844692_n.enc?ccb=11-4&oh=01_Q5Aa3wE359q4rT9IHleWXLLfzSTTAcMZEeuxwuEff2uF1LxkEA&oe=69B472A7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"lYIpSeATKz7vnKclw3iESI5AZwQ1RmpGhUa8sj8loHM=\",\"fileLength\":\"135592\",\"height\":1600,\"width\":900,\"mediaKey\":\"5M1ENaluV8HUnGJ64jSmQh0vQgkhH4eMGHJRWuA21+w=\",\"fileEncSha256\":\"0azptelFJWfZV+WhYjuYXHQY82KkqHcyr9vBTn7Tiz8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634415683_893926563246292_6788072142167844692_n.enc?ccb=11-4&oh=01_Q5Aa3wE359q4rT9IHleWXLLfzSTTAcMZEeuxwuEff2uF1LxkEA&oe=69B472A7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855079\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAwQBAgUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAL42UakLuikULHekvztmncyPlcJOkcKbqE3rSTWGlTyrWbNn4hFggS6cNkMAawI6f\\/\\/EACAQAAICAgIDAQEAAAAAAAAAAAECABEDEiExBBMiUWH\\/2gAIAQEAAT8A8jIjkVMhJFKIgbupn5aATEocXBjAhoKZkIqzNzyQOIXRD2Jl8jUfIgzsx5MTMurCKVHJ6hc9x8\\/soVH2B6M9mPUChAR1Uf4Q3MZbcUIyvRaEC1IirZ7iIO7gKqfy4F+foyk2PEZlriD6FAR02Mxvl0ANcTJkVTZmXOW\\/giXAQI\\/kjpY77GBdiBHyhY+ZmEsmJjLGhF8Q9kz\\/xAAaEQEAAwEBAQAAAAAAAAAAAAABAAIQIRJB\\/9oACAECAQE\\/AHVRJbj9ywTltANZ6Z\\/\\/xAAaEQEAAgMBAAAAAAAAAAAAAAABADECEBES\\/9oACAEDAQE\\/AHYd7MQSozFS4Lju9lzyT\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"yLj+QK2YbQ603FAMBS4PnKg5wEDi3pergf4JCWEOu0jP5DIO+7BvXw==\",\"scanLengths\":[15248,45591,27491,47262],\"midQualityFileSha256\":\"Y0vkpkUrpXUTMUSAm+zqEz0HEgiPFe4vCUCr8Rm5ziw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4Tc4WIaKOD2JtO7WAo47lyOU\\/y2E2syJh6gwwqU+9C0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770855080,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:11:20.679Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:20'),
(3356, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A58B12D6D70C9F40E74B75403629BF74\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633094927_1213473120440572_7759846643353203847_n.enc?ccb=11-4&oh=01_Q5Aa3wFAxESI5PB-Gv6MPYvUXcEGFloEuiI-HNwPObq7bUS9Fw&oe=69B48982&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"e+Ecy9WYXL7nJhLH7siTHs7LyA2V1bCLHOEGBtEBEGA=\",\"fileLength\":\"43205\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"wLLFfr8uoQpGZlBPzmNWOzZFEkFANEHXdcYXf3B8WhM=\",\"fileEncSha256\":\"Hy3jUXm+Q9mHpHSHtsKh4EKHZ6SZVtUDPahfM2CgPjo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633094927_1213473120440572_7759846643353203847_n.enc?ccb=11-4&oh=01_Q5Aa3wFAxESI5PB-Gv6MPYvUXcEGFloEuiI-HNwPObq7bUS9Fw&oe=69B48982&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855062\",\"waveform\":\"AAEeXmATQkNJY1wuUzBNVVJYLU9LOloqLycBMy4AAABTT1IwU0tJFE0dVkpVUFNOSAAZAA1fX1gvRDddRE1NUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:20.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:20'),
(3357, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:11:20.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:20'),
(3358, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtEXOwWGkmlZsZUI6UxCMVh32VFEoP3O4_L-veAV-VLQ&oe=699A12AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:11:21.000Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:21'),
(3359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:21.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:11:21'),
(3360, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:21.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:21'),
(3361, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:20.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3362, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A58B12D6D70C9F40E74B75403629BF74\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633094927_1213473120440572_7759846643353203847_n.enc?ccb=11-4&oh=01_Q5Aa3wFAxESI5PB-Gv6MPYvUXcEGFloEuiI-HNwPObq7bUS9Fw&oe=69B48982&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"e+Ecy9WYXL7nJhLH7siTHs7LyA2V1bCLHOEGBtEBEGA=\",\"fileLength\":\"43205\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"wLLFfr8uoQpGZlBPzmNWOzZFEkFANEHXdcYXf3B8WhM=\",\"fileEncSha256\":\"Hy3jUXm+Q9mHpHSHtsKh4EKHZ6SZVtUDPahfM2CgPjo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633094927_1213473120440572_7759846643353203847_n.enc?ccb=11-4&oh=01_Q5Aa3wFAxESI5PB-Gv6MPYvUXcEGFloEuiI-HNwPObq7bUS9Fw&oe=69B48982&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855062\",\"waveform\":\"AAEeXmATQkNJY1wuUzBNVVJYLU9LOloqLycBMy4AAABTT1IwU0tJFE0dVkpVUFNOSAAZAA1fX1gvRDddRE1NUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:11:20.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:11:21'),
(3363, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855155355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:12:35.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:12:35'),
(3364, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855155355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:12:35.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:12:35'),
(3365, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A58B12D6D70C9F40E74B75403629BF74\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855156107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:12:36.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:12:36'),
(3366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A58B12D6D70C9F40E74B75403629BF74\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855156107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:12:36.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:12:36'),
(3367, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:12:45.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:12:46'),
(3368, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:12:45.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:12:46'),
(3369, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855287370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:14:47.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:14:47'),
(3370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855287370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:14:47.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:14:47'),
(3371, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770855288009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:14:48.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:14:48'),
(3372, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5275E6273D6B0B6ED5E843B48F7A1E5\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770855288009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:14:48.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:14:48'),
(3373, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:14:54.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:14:55'),
(3374, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:14:54.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:14:55'),
(3375, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:04.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:04'),
(3376, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:04.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:04'),
(3377, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:05'),
(3378, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:05'),
(3379, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACC224BD9F4B9F3345456615EB1311E0\"},\"pushName\":\"josiane Antonio\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634377257_2659516557765683_5412561643596955154_n.enc?ccb=11-4&oh=01_Q5Aa3wF07iO-rNKzEp9dbyiuuy9PcnlAA-51ObWSFjg9tG6y2Q&oe=69B47C0C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FNNl1mHZkijOdM2ArknH0JO0HMAPtkbimDEjdGxaZDg=\",\"fileLength\":\"22561\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"akoVCUNlwbr4yK7v8HVXnvoWkrbwqcxNeFdWNsLu32w=\",\"fileEncSha256\":\"grSiCVRIwKMsDZvgFrF+6iN\\/HTukErea9b5kHpsRMv0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634377257_2659516557765683_5412561643596955154_n.enc?ccb=11-4&oh=01_Q5Aa3wF07iO-rNKzEp9dbyiuuy9PcnlAA-51ObWSFjg9tG6y2Q&oe=69B47C0C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855296\",\"waveform\":\"AE1bXVlUWzReXFtJUiw9VV1PVVRVQzlSWVpZPFBTVTcAAAAAPFhTWFNNGiAMAAA6DU1SRSgAAAAAAABPVhknAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"C260ZreYCYchL1bAj2fGcw7uKxMAkrIBpgtMJUNAgdk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:05'),
(3380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:05'),
(3381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACC224BD9F4B9F3345456615EB1311E0\"},\"pushName\":\"josiane Antonio\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634377257_2659516557765683_5412561643596955154_n.enc?ccb=11-4&oh=01_Q5Aa3wF07iO-rNKzEp9dbyiuuy9PcnlAA-51ObWSFjg9tG6y2Q&oe=69B47C0C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FNNl1mHZkijOdM2ArknH0JO0HMAPtkbimDEjdGxaZDg=\",\"fileLength\":\"22561\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"akoVCUNlwbr4yK7v8HVXnvoWkrbwqcxNeFdWNsLu32w=\",\"fileEncSha256\":\"grSiCVRIwKMsDZvgFrF+6iN\\/HTukErea9b5kHpsRMv0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634377257_2659516557765683_5412561643596955154_n.enc?ccb=11-4&oh=01_Q5Aa3wF07iO-rNKzEp9dbyiuuy9PcnlAA-51ObWSFjg9tG6y2Q&oe=69B47C0C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855296\",\"waveform\":\"AE1bXVlUWzReXFtJUiw9VV1PVVRVQzlSWVpZPFBTVTcAAAAAPFhTWFNNGiAMAAA6DU1SRSgAAAAAAABPVhknAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"C260ZreYCYchL1bAj2fGcw7uKxMAkrIBpgtMJUNAgdk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:05'),
(3382, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:05'),
(3383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:05'),
(3384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBeYTl2ew2PR37KOQT4mE2b4_yDxOns2zK_uB9rA8rvw&oe=699A1544&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:05.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:06'),
(3385, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855330026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:30'),
(3386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A58B12D6D70C9F40E74B75403629BF74\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855330014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:30'),
(3387, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855330026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:30'),
(3388, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A58B12D6D70C9F40E74B75403629BF74\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855330014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:30'),
(3389, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770855330002,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:30'),
(3390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F03D7EE61409D047F5778CB2CF6BAA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855330020,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:30'),
(3391, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A518040F72D7C3CE6FD0E1DBBE1A2DC2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770855330002,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:30'),
(3392, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F03D7EE61409D047F5778CB2CF6BAA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855330020,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:30.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:30'),
(3393, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:33.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:33'),
(3394, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:33.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:33'),
(3395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A80515FD7533AD23BF6\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634341577_886883140598558_554942612732293619_n.enc?ccb=11-4&oh=01_Q5Aa3wFWsHYHdJHyUZQXHZFtixdRkqzDP38NtMzx5v3RVflyvA&oe=69B47D67&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"u9TYOeSH6I7IVVKmk+MMD5SWLCpPigepV86xr4KI93U=\",\"fileLength\":\"33885\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"U0Dm3DWPnroPEZjB3b2Nye3zpJRWB5GdUme9JDMqZug=\",\"fileEncSha256\":\"oJLxtMdAS1H40N3ncbQ64MK5fkBfL8nSUSlpvlNZT7k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634341577_886883140598558_554942612732293619_n.enc?ccb=11-4&oh=01_Q5Aa3wFWsHYHdJHyUZQXHZFtixdRkqzDP38NtMzx5v3RVflyvA&oe=69B47D67&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855330\",\"streamingSidecar\":\"fk1vxYWNibWWPQ==\",\"waveform\":\"F1NkZGRkZGReZFs9ZGJkZGRkZFlDPmRkZGRENmRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770854836\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2aIiTWtacFvLGrSoaSxvIa+vMrAhsn2xxHxBUETHZcA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855333,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:33.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:33'),
(3396, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:33.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:33'),
(3397, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:33.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:34'),
(3398, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A80515FD7533AD23BF6\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634341577_886883140598558_554942612732293619_n.enc?ccb=11-4&oh=01_Q5Aa3wFWsHYHdJHyUZQXHZFtixdRkqzDP38NtMzx5v3RVflyvA&oe=69B47D67&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"u9TYOeSH6I7IVVKmk+MMD5SWLCpPigepV86xr4KI93U=\",\"fileLength\":\"33885\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"U0Dm3DWPnroPEZjB3b2Nye3zpJRWB5GdUme9JDMqZug=\",\"fileEncSha256\":\"oJLxtMdAS1H40N3ncbQ64MK5fkBfL8nSUSlpvlNZT7k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634341577_886883140598558_554942612732293619_n.enc?ccb=11-4&oh=01_Q5Aa3wFWsHYHdJHyUZQXHZFtixdRkqzDP38NtMzx5v3RVflyvA&oe=69B47D67&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855330\",\"streamingSidecar\":\"fk1vxYWNibWWPQ==\",\"waveform\":\"F1NkZGRkZGReZFs9ZGJkZGRkZFlDPmRkZGRENmRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770854836\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2aIiTWtacFvLGrSoaSxvIa+vMrAhsn2xxHxBUETHZcA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855333,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:33.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:34'),
(3399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:34.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:34'),
(3400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:34.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:34'),
(3401, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:34.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:34'),
(3402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:34.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:35'),
(3403, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:42.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:15:42'),
(3404, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:15:42.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:15:42'),
(3405, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:36.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:16:36'),
(3406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEF234A6612C19CB9BC\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587382312_1555671165665284_4161471858236059997_n.enc?ccb=11-4&oh=01_Q5Aa3wE8waQ0sQMGTwB5OLneYgTK2EZffguI-jiFlijje3FQkA&oe=69B4925A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+ZE5DYhlTnckbhMk09KCx3Zjl\\/DEAZs32wCUGpw9Omw=\",\"fileLength\":\"56618\",\"seconds\":24,\"ptt\":true,\"mediaKey\":\"uZAEJGR51Ljojo\\/P1ozAJVtKdMQabXAjkl8NKQEY2dg=\",\"fileEncSha256\":\"3plkK\\/AXX4NC\\/u9mrdgaarcSaO4KpvKQ3Ug3pE5As6U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587382312_1555671165665284_4161471858236059997_n.enc?ccb=11-4&oh=01_Q5Aa3wE8waQ0sQMGTwB5OLneYgTK2EZffguI-jiFlijje3FQkA&oe=69B4925A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855355\",\"streamingSidecar\":\"hsd5q9QqOH9FVQ==\",\"waveform\":\"QmRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkX2NeZGRkZGRkZGRkZGRkZGRkX1lkZGRkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770855394\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Kp5J7hR8SjdYPNHMh\\/4v25AhAp1CmuMKhl4wUjnLJ\\/Y=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855396,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:36.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:16:36'),
(3407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:37.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:16:37'),
(3408, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:36.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:16:37'),
(3409, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AEF234A6612C19CB9BC\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587382312_1555671165665284_4161471858236059997_n.enc?ccb=11-4&oh=01_Q5Aa3wE8waQ0sQMGTwB5OLneYgTK2EZffguI-jiFlijje3FQkA&oe=69B4925A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+ZE5DYhlTnckbhMk09KCx3Zjl\\/DEAZs32wCUGpw9Omw=\",\"fileLength\":\"56618\",\"seconds\":24,\"ptt\":true,\"mediaKey\":\"uZAEJGR51Ljojo\\/P1ozAJVtKdMQabXAjkl8NKQEY2dg=\",\"fileEncSha256\":\"3plkK\\/AXX4NC\\/u9mrdgaarcSaO4KpvKQ3Ug3pE5As6U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587382312_1555671165665284_4161471858236059997_n.enc?ccb=11-4&oh=01_Q5Aa3wE8waQ0sQMGTwB5OLneYgTK2EZffguI-jiFlijje3FQkA&oe=69B4925A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855355\",\"streamingSidecar\":\"hsd5q9QqOH9FVQ==\",\"waveform\":\"QmRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkX2NeZGRkZGRkZGRkZGRkZGRkX1lkZGRkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770855394\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Kp5J7hR8SjdYPNHMh\\/4v25AhAp1CmuMKhl4wUjnLJ\\/Y=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855396,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:36.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:16:37'),
(3410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:37.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:16:37'),
(3411, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:37.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:16:37'),
(3412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:16:37.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:16:38'),
(3413, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:17:13.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:17:14'),
(3414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:17:13.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:17:14'),
(3415, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A54C4095EACC6782441C0217A72B4B93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634419082_885728600735308_53535457996779706_n.enc?ccb=11-4&oh=01_Q5Aa3wGr39i5SgN5Ukr9fULBCmBnRXHvo-7TVGDpvm65FSUSDQ&oe=69B4A702&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HUUe6h+SoMCyt9yBJjLpJfOoif6FnA9LrNm5aP3xCVY=\",\"fileLength\":\"6090\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"YCrJ0iRg8ogq\\/bnZAYQSWG9clyUm10dKY4NGjlpTEUI=\",\"fileEncSha256\":\"2QlqRihs53L1JxS1OfyhWzi9Od4kH5ECdY4J\\/NIK0VY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634419082_885728600735308_53535457996779706_n.enc?ccb=11-4&oh=01_Q5Aa3wGr39i5SgN5Ukr9fULBCmBnRXHvo-7TVGDpvm65FSUSDQ&oe=69B4A702&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855432\",\"waveform\":\"ABsoLC5APTg6QD00M1leUEhgYmFgY2NhX11ZSk9fX19TSFFYW1hQUkMtID1XWlBMT1ZcW1BERVZdW1RJOUtXWw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855433,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:17:13.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:17:14'),
(3416, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A54C4095EACC6782441C0217A72B4B93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634419082_885728600735308_53535457996779706_n.enc?ccb=11-4&oh=01_Q5Aa3wGr39i5SgN5Ukr9fULBCmBnRXHvo-7TVGDpvm65FSUSDQ&oe=69B4A702&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HUUe6h+SoMCyt9yBJjLpJfOoif6FnA9LrNm5aP3xCVY=\",\"fileLength\":\"6090\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"YCrJ0iRg8ogq\\/bnZAYQSWG9clyUm10dKY4NGjlpTEUI=\",\"fileEncSha256\":\"2QlqRihs53L1JxS1OfyhWzi9Od4kH5ECdY4J\\/NIK0VY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634419082_885728600735308_53535457996779706_n.enc?ccb=11-4&oh=01_Q5Aa3wGr39i5SgN5Ukr9fULBCmBnRXHvo-7TVGDpvm65FSUSDQ&oe=69B4A702&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855432\",\"waveform\":\"ABsoLC5APTg6QD00M1leUEhgYmFgY2NhX11ZSk9fX19TSFFYW1hQUkMtID1XWlBMT1ZcW1BERVZdW1RJOUtXWw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855433,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:17:13.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:17:14'),
(3417, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:17:14.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:17:14'),
(3418, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEam9ieOrNark1Axql85frmXNQdEj_fm0Zaun6CRwB3Nw&oe=699A1561&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:17:14.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:17:14'),
(3419, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"A533915EE2D30733AC2CEDAAEC57C469\",\"fromMe\":false,\"status\":\"PLAYED\",\"datetime\":1770855463056,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:17:43.056Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:17:43'),
(3420, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"A5BF98D0220CD871719B571FC2989B05\",\"fromMe\":false,\"status\":\"PLAYED\",\"datetime\":1770855465640,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:17:45.641Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:17:45'),
(3421, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"AC10894DFCBF2863894ACB1C0E256679\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634678890_1226398149626430_1839317226815897408_n.enc?ccb=11-4&oh=01_Q5Aa3wH3gyqsPZJx8I9-WidetnVQVwpK9NWpTEuULXTVwNdx6A&oe=69B4A8D3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+piKOJvTW+jnDpvgddtGW6n+A2tYEipCAUd78RjLDmw=\",\"fileLength\":\"50121\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"wnhZ1uLLZGfmIbVaCc7ffFwaFjXLNJggCLwEaEhb4W4=\",\"fileEncSha256\":\"NLrVBW4oYxIfjDkclAlRQ\\/OA58WW0gv6kkgYxWT5WAs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634678890_1226398149626430_1839317226815897408_n.enc?ccb=11-4&oh=01_Q5Aa3wH3gyqsPZJx8I9-WidetnVQVwpK9NWpTEuULXTVwNdx6A&oe=69B4A8D3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770855499\",\"waveform\":\"ABkhXlAQFBMHVzxQTFFPODBDSwhGPkhVPhVTCwgTAy8dYyw9QQNRUkBFU1wSAAgRV01SWgQNGBVMUlFcAhMdFg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770855519,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:18:39.333Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:18:39'),
(3422, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:18:39.332Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:18:39'),
(3423, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC10894DFCBF2863894ACB1C0E256679\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855519870,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:18:39.871Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:18:39'),
(3424, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEY73bCL2CCDQisQPHUYd2q_tvl_9q_sWJtXJvLGayEUw&oe=699A4AEF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:18:39.657Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:18:40'),
(3425, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC10894DFCBF2863894ACB1C0E256679\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770855564482,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:19:24.482Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:19:24'),
(3426, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"AC10894DFCBF2863894ACB1C0E256679\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770855565234,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:19:25.235Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:19:25'),
(3427, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:19:56.201Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:19:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3428, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A50A84E20A53291A68AA52127AD8C213\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/32281849_1230739709024065_8381687380423702481_n.enc?ccb=11-4&oh=01_Q5Aa3wHpxAnkYWm0-huzk4PmoCgnUAWVq3xszdvfD8imDYurXw&oe=69B48C7C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"SH85xFawziE9ls19ebYAu4iV5thEVHvED+MBk62VAb4=\",\"fileEncSha256\":\"96byKCAeHiLdxpK6rTMJNi+vWq\\/F8dyOelEHP40mDds=\",\"mediaKey\":\"ZBB8Wg\\/U3OU6quT4hCwj2ivf7BlMSO1VcTzT2O7GClw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/32281849_1230739709024065_8381687380423702481_n.enc?ccb=11-4&oh=01_Q5Aa3wHpxAnkYWm0-huzk4PmoCgnUAWVq3xszdvfD8imDYurXw&oe=69B48C7C&_nc_sid=5e03e0\",\"fileLength\":\"60272\",\"mediaKeyTimestamp\":\"1770855595\",\"isAnimated\":false,\"stickerSentTs\":\"1770855595466\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WwzepI3A7sTMbqu2UKFDsOlE1WmpxJ2RVuyRmCpDSpI=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770855596,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:19:56.202Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:19:56'),
(3429, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEY73bCL2CCDQisQPHUYd2q_tvl_9q_sWJtXJvLGayEUw&oe=699A4AEF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:19:56.366Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:19:56'),
(3430, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEY73bCL2CCDQisQPHUYd2q_tvl_9q_sWJtXJvLGayEUw&oe=699A4AEF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:19:56.527Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:19:56'),
(3431, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855712139,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:21:52.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:21:52'),
(3432, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855712139,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:21:52.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:21:52'),
(3433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855730131,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:22:10.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:22:10'),
(3434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770855730131,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:22:10.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:22:10'),
(3435, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"ACC80D96D53ED8D5A135FA19BAE84061\"},\"pushName\":\"~Johnny\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634219702_3082520391939028_4107369668881260821_n.enc?ccb=11-4&oh=01_Q5Aa3wE1s89UU0rHNS1FbNZiskIKTw1FBNe4OggFuYfnWr2gaQ&oe=69B4A4A9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"kpr3STeygWaKuiJGWkDSF+VuK5Koe7yTQ1d9jMllszg=\",\"fileLength\":\"146444\",\"height\":1599,\"width\":899,\"mediaKey\":\"3jtfK\\/cOmswk7NFzZH3ZtOfflc50aV0xH08+uNQI5QM=\",\"fileEncSha256\":\"mslhPFu\\/1DA9YNPzeMNQ8PezF2prSYAYyeF9HVHaNc4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634219702_3082520391939028_4107369668881260821_n.enc?ccb=11-4&oh=01_Q5Aa3wE1s89UU0rHNS1FbNZiskIKTw1FBNe4OggFuYfnWr2gaQ&oe=69B4A4A9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856054\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAwUEAgEBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAG5KUmFmVzHMOAun5IqbMbM7uOTED5Q5myuW7TRgNwmKhK851Qnu3ZllQqf\\/xAAlEAACAgICAQMFAQAAAAAAAAABAgADERIEIVITMVEUIjNBU2H\\/2gAIAQEAAT8A5SMU\\/wAEV6mRvYdw8ihLdl8YLnsvJUkCbv8A0lgJXvPYh4NhJi8NugY\\/Fbj2KFE2u8RLLlRdhgrBajAEHqJiywKO5zNxUvQmh\\/qJW7Ert33KFBVi3vDYePa+hEfnl0dLBNz8ymlg0qvUIVPvHBLk\\/qFSZpHpbGFMt9SpgcGJbWQO4iVuD2J6VPnKOTYD8iC6uwasBH4qn8Z1lq3ocGfT3ecrGEJjdrmUXPnUmZz9pAImw8RP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAEREEH\\/2gAIAQIBAT8A5MrxKIhRMo0VoqP\\/xAAdEQEBAQAABwAAAAAAAAAAAAABABESISIxQVFh\\/9oACAEDAQE\\/ADpY15XCepnvbH2Q8NkNm2N\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"TMCF5QiI+xHHdjsvo8xLKWvit7abxRgFG0BA29YCEYeIcUAXLuunQQ==\",\"scanLengths\":[17631,54977,29732,44104],\"midQualityFileSha256\":\"ibWQ3k6\\/x2YVQRe7zVSHMU8q9A4VZ0DAh9l01xMGX8g=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856057,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:27:37.698Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:27:38'),
(3436, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:27:37.696Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:27:38'),
(3437, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEY73bCL2CCDQisQPHUYd2q_tvl_9q_sWJtXJvLGayEUw&oe=699A4AEF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:27:38.020Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:27:38'),
(3438, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACC80D96D53ED8D5A135FA19BAE84061\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856090068,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:28:10.069Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:10'),
(3439, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:10.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:10'),
(3440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3tyt8pxPKHEHlDBF9QdHkVT+fKe6qrywz4Dx9Iz8t0M=\",\"fileLength\":\"4715\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WczUCFTIDyQpeEmKb1Y9WJyoQQQe5+a1FLvMarsiK04=\",\"fileEncSha256\":\"tr5QN9CICXLJ7obdg7RxQuxF9aZ5WScdaT4Ns8Ylk5w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856089\",\"waveform\":\"ADlfWlxhYmBZTDo9PisxS1ljY1pHS1RXWVhWVVteXkgqPk5VVVJRUVJTU1FPSzkZGyMnKCYlJBwSAwUNFRoaGg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856090,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:10.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:10'),
(3441, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:10.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:10'),
(3442, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3tyt8pxPKHEHlDBF9QdHkVT+fKe6qrywz4Dx9Iz8t0M=\",\"fileLength\":\"4715\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WczUCFTIDyQpeEmKb1Y9WJyoQQQe5+a1FLvMarsiK04=\",\"fileEncSha256\":\"tr5QN9CICXLJ7obdg7RxQuxF9aZ5WScdaT4Ns8Ylk5w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856089\",\"waveform\":\"ADlfWlxhYmBZTDo9PisxS1ljY1pHS1RXWVhWVVteXkgqPk5VVVJRUVJTU1FPSzkZGyMnKCYlJBwSAwUNFRoaGg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856090,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:10.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:10'),
(3443, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856091159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:11.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:11'),
(3444, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856091159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:11.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:11'),
(3445, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:10.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:11'),
(3446, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:10.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:11'),
(3447, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A59B87988BDF93D6B9212D8D4AE8D577\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UD5SPUVF7U\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770856122,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:42.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:43'),
(3448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:42.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:43'),
(3449, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A59B87988BDF93D6B9212D8D4AE8D577\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UD5SPUVF7U\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770856122,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:42.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:43'),
(3450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:42.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:43'),
(3451, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A59B87988BDF93D6B9212D8D4AE8D577\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856123386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:43.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:43'),
(3452, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:43.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:44'),
(3453, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A59B87988BDF93D6B9212D8D4AE8D577\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856123386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:43.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:44'),
(3454, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:43.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:45'),
(3455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fEf6iaTlsJSHmMkZttC87z2pHyPyFzb\\/koselG4gQz0=\",\"fileLength\":\"13786\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"SiY7FOjRW1IhgnhjgBNmWVDRwCI33OIE8fMiyqnf\\/Vg=\",\"fileEncSha256\":\"XTZtxHlsPDJ2PtlxcRpKpc3mklXJzb8yOhEEJoRP64E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856125\",\"waveform\":\"AFEwRkw9TDlSTFBHPUxSVVNKSVYSA0RIFltGGktJTShFW1NNPkJUSU5VRhBdU09IXxtEVVtVP0hKPklXLzVTYg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856130,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:50.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:50'),
(3456, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fEf6iaTlsJSHmMkZttC87z2pHyPyFzb\\/koselG4gQz0=\",\"fileLength\":\"13786\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"SiY7FOjRW1IhgnhjgBNmWVDRwCI33OIE8fMiyqnf\\/Vg=\",\"fileEncSha256\":\"XTZtxHlsPDJ2PtlxcRpKpc3mklXJzb8yOhEEJoRP64E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856125\",\"waveform\":\"AFEwRkw9TDlSTFBHPUxSVVNKSVYSA0RIFltGGktJTShFW1NNPkJUSU5VRhBdU09IXxtEVVtVP0hKPklXLzVTYg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856130,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:50.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:50'),
(3457, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:50.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:51'),
(3458, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856130968,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:50.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:51'),
(3459, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:50.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:51'),
(3460, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856130968,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:50.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:51'),
(3461, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:51.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:28:51'),
(3462, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:28:51.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:28:52'),
(3463, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856187878,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:47.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:48'),
(3464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856187888,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:47.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:48'),
(3465, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856187878,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:47.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:48'),
(3466, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54C4095EACC6782441C0217A72B4B93\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856187888,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:47.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:48'),
(3467, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:48'),
(3468, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A59E74EE5A795642E601C751EF811FBB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856188685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:49'),
(3469, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A59E74EE5A795642E601C751EF811FBB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856188685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:49'),
(3470, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"ACCAAEA20BB0CC6D1AF4038BD5EB4A6B\"},\"pushName\":\"Meiriane\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588674949_1666720701158976_7723566158491769746_n.enc?ccb=11-4&oh=01_Q5Aa3wF6Mm5wWUujJBwj2FbkuZ1ft4Z-7rQcPIxfSeWCXreqAA&oe=69B496D0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"O app esta com alguma atualização? Pq nao esta carregando nada\",\"fileSha256\":\"XfyvJRRLrrjQS36bFwiokcK9qanlBkTZR\\/JZYJEh70M=\",\"fileLength\":\"145681\",\"height\":1599,\"width\":899,\"mediaKey\":\"P\\/PECD4clDnjRWSGotK+qImWAYKXjsMWDvEQLs5qSZI=\",\"fileEncSha256\":\"rit\\/ljHJmmty749DLAUjnCyiEjrwA0fUxzK\\/9uHS\\/aA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588674949_1666720701158976_7723566158491769746_n.enc?ccb=11-4&oh=01_Q5Aa3wF6Mm5wWUujJBwj2FbkuZ1ft4Z-7rQcPIxfSeWCXreqAA&oe=69B496D0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856187\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAAAwECBQYEAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADIradxNPQtVkmDrPNPMtsUkk53ZfmFkqpYaQJSNP3rzZ1MnKnSh\\/\\/EACYQAAICAQMDAwUAAAAAAAAAAAECAAMRBBIxEBMhFCIyQVFSU2L\\/2gAIAQEAAT8AhAhWeRMzPVuuYYenaDsFA8mXaOyoZYTtFhkfTmdhyu4CbZZZV31deJqNVRbQyge+KyqGGeREtZNw3eDPUD+Yi0YJsZs\\/YR\\/SYO3fmBFPJldNbfN8T02m\\/fN3niEme9p2rW4UzsXfgZpdLXcuWg0VCj4xKal4QQgDgdP\\/xAAZEQEBAAMBAAAAAAAAAAAAAAABAgAQETD\\/2gAIAQIBAT8AJHGOGisb6eH\\/xAAYEQACAwAAAAAAAAAAAAAAAAAQEQAgMf\\/aAAgBAwEBPwAoubX\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"\\/F44fpylqS89bcGkm9kKMyjggbGjP2zN8wQKBn\\/rc4sJKcePtKq8sw==\",\"scanLengths\":[13001,35663,32508,64509],\"midQualityFileSha256\":\"htfZQR7WOr93\\/Fquu5JbCRYLz7aYjFj1Oa10fxAsdqM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9PfLjR3OaMynNZk3SmC\\/pLZ1JA5brRZeEtN0k3ZHZXs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856187,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:49'),
(3471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:49'),
(3472, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:49'),
(3473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:49.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:50'),
(3474, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:50'),
(3475, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"ACCAAEA20BB0CC6D1AF4038BD5EB4A6B\"},\"pushName\":\"Meiriane\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588674949_1666720701158976_7723566158491769746_n.enc?ccb=11-4&oh=01_Q5Aa3wF6Mm5wWUujJBwj2FbkuZ1ft4Z-7rQcPIxfSeWCXreqAA&oe=69B496D0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"O app esta com alguma atualização? Pq nao esta carregando nada\",\"fileSha256\":\"XfyvJRRLrrjQS36bFwiokcK9qanlBkTZR\\/JZYJEh70M=\",\"fileLength\":\"145681\",\"height\":1599,\"width\":899,\"mediaKey\":\"P\\/PECD4clDnjRWSGotK+qImWAYKXjsMWDvEQLs5qSZI=\",\"fileEncSha256\":\"rit\\/ljHJmmty749DLAUjnCyiEjrwA0fUxzK\\/9uHS\\/aA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588674949_1666720701158976_7723566158491769746_n.enc?ccb=11-4&oh=01_Q5Aa3wF6Mm5wWUujJBwj2FbkuZ1ft4Z-7rQcPIxfSeWCXreqAA&oe=69B496D0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856187\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAAAwECBQYEAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADIradxNPQtVkmDrPNPMtsUkk53ZfmFkqpYaQJSNP3rzZ1MnKnSh\\/\\/EACYQAAICAQMDAwUAAAAAAAAAAAECAAMRBBIxEBMhFCIyQVFSU2L\\/2gAIAQEAAT8AhAhWeRMzPVuuYYenaDsFA8mXaOyoZYTtFhkfTmdhyu4CbZZZV31deJqNVRbQyge+KyqGGeREtZNw3eDPUD+Yi0YJsZs\\/YR\\/SYO3fmBFPJldNbfN8T02m\\/fN3niEme9p2rW4UzsXfgZpdLXcuWg0VCj4xKal4QQgDgdP\\/xAAZEQEBAAMBAAAAAAAAAAAAAAABAgAQETD\\/2gAIAQIBAT8AJHGOGisb6eH\\/xAAYEQACAwAAAAAAAAAAAAAAAAAQEQAgMf\\/aAAgBAwEBPwAoubX\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"\\/F44fpylqS89bcGkm9kKMyjggbGjP2zN8wQKBn\\/rc4sJKcePtKq8sw==\",\"scanLengths\":[13001,35663,32508,64509],\"midQualityFileSha256\":\"htfZQR7WOr93\\/Fquu5JbCRYLz7aYjFj1Oa10fxAsdqM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9PfLjR3OaMynNZk3SmC\\/pLZ1JA5brRZeEtN0k3ZHZXs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856187,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:50'),
(3476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:49.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:50'),
(3477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:50'),
(3478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:51'),
(3479, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":true,\"id\":\"A59E74EE5A795642E601C751EF811FBB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770856188,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:51'),
(3480, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"pushName\":\"Meiriane\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:29:51'),
(3481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":true,\"id\":\"A59E74EE5A795642E601C751EF811FBB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770856188,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:52'),
(3482, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"pushName\":\"Meiriane\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:29:48.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:29:52'),
(3483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856239416,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:39.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:39'),
(3484, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856239403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:39.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:39'),
(3485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856239416,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:39.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:39'),
(3486, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856239403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:39.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:39'),
(3487, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A59B87988BDF93D6B9212D8D4AE8D577\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856239409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:39.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3488, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A59B87988BDF93D6B9212D8D4AE8D577\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856239409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:39.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:40'),
(3489, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856240696,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:40.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:40'),
(3490, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856240696,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:40.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:40'),
(3491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:57.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:57'),
(3492, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:57.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:57'),
(3493, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:58.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:58'),
(3494, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC89285BAB414571DACACBC03604782E\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"Não\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3tyt8pxPKHEHlDBF9QdHkVT+fKe6qrywz4Dx9Iz8t0M=\",\"fileLength\":\"4715\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WczUCFTIDyQpeEmKb1Y9WJyoQQQe5+a1FLvMarsiK04=\",\"fileEncSha256\":\"tr5QN9CICXLJ7obdg7RxQuxF9aZ5WScdaT4Ns8Ylk5w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856089\",\"waveform\":\"ADlfWlxhYmBZTDo9PisxS1ljY1pHS1RXWVhWVVteXkgqPk5VVVJRUVJTU1FPSzkZGyMnKCYlJBwSAwUNFRoaGg==\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"n2apBtjlGObgOZeUj8PBYH5LHtenpDYaC5\\/uZwzU3+I=\"}},\"contextInfo\":{\"stanzaId\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3tyt8pxPKHEHlDBF9QdHkVT+fKe6qrywz4Dx9Iz8t0M=\",\"fileLength\":\"4715\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WczUCFTIDyQpeEmKb1Y9WJyoQQQe5+a1FLvMarsiK04=\",\"fileEncSha256\":\"tr5QN9CICXLJ7obdg7RxQuxF9aZ5WScdaT4Ns8Ylk5w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856089\",\"waveform\":\"ADlfWlxhYmBZTDo9PisxS1ljY1pHS1RXWVhWVVteXkgqPk5VVVJRUVJTU1FPSzkZGyMnKCYlJBwSAwUNFRoaGg==\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770856258,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:58.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:58'),
(3495, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:58.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:58'),
(3496, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC89285BAB414571DACACBC03604782E\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"Não\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3tyt8pxPKHEHlDBF9QdHkVT+fKe6qrywz4Dx9Iz8t0M=\",\"fileLength\":\"4715\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WczUCFTIDyQpeEmKb1Y9WJyoQQQe5+a1FLvMarsiK04=\",\"fileEncSha256\":\"tr5QN9CICXLJ7obdg7RxQuxF9aZ5WScdaT4Ns8Ylk5w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856089\",\"waveform\":\"ADlfWlxhYmBZTDo9PisxS1ljY1pHS1RXWVhWVVteXkgqPk5VVVJRUVJTU1FPSzkZGyMnKCYlJBwSAwUNFRoaGg==\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"n2apBtjlGObgOZeUj8PBYH5LHtenpDYaC5\\/uZwzU3+I=\"}},\"contextInfo\":{\"stanzaId\":\"A595C46DCADE884E9E53D5D1F981D6BD\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3tyt8pxPKHEHlDBF9QdHkVT+fKe6qrywz4Dx9Iz8t0M=\",\"fileLength\":\"4715\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WczUCFTIDyQpeEmKb1Y9WJyoQQQe5+a1FLvMarsiK04=\",\"fileEncSha256\":\"tr5QN9CICXLJ7obdg7RxQuxF9aZ5WScdaT4Ns8Ylk5w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634193880_1996162497911014_3313402034775960743_n.enc?ccb=11-4&oh=01_Q5Aa3wHK8zlAuhKZzukJCky4iQo8C5JY0WB5M85EzpHt7vCb0g&oe=69B48DC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856089\",\"waveform\":\"ADlfWlxhYmBZTDo9PisxS1ljY1pHS1RXWVhWVVteXkgqPk5VVVJRUVJTU1FPSzkZGyMnKCYlJBwSAwUNFRoaGg==\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770856258,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:58.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:58'),
(3497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:58.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:58'),
(3498, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:59.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:59'),
(3499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:59.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:59'),
(3500, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856259321,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:59.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:30:59'),
(3501, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856259321,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:59.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:59'),
(3502, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:30:58.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:30:59'),
(3503, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3DCA6636D2EB3A6CEA\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586898508_3043640732489976_7088992263525655716_n.enc?ccb=11-4&oh=01_Q5Aa3wHTmqOAPDRJ3WKravJOhhpYdcnqp5ZnXrFCDX3eDSmHZw&oe=69B49807&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"0UmqK9YO9Bza4yiXcWpjExJOXn83Gr99kNQ156vohRM=\",\"fileLength\":\"6418\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"1LX3TcielEuB6wpuuyBw8N6+6BtqS5MbmmXCV11MzLU=\",\"fileEncSha256\":\"FwnEtInVOM3+JIm+m4TmOStV1p6sMzAhErUccI0SJ3I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586898508_3043640732489976_7088992263525655716_n.enc?ccb=11-4&oh=01_Q5Aa3wHTmqOAPDRJ3WKravJOhhpYdcnqp5ZnXrFCDX3eDSmHZw&oe=69B49807&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856136\",\"streamingSidecar\":\"wmTMxCjWVt7BEg==\",\"waveform\":\"ABo0TlxeYWRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRcVExLU1tkWlBFPzw4Nw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770856186\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BWNWVkSd\\/lYljzuzlozGRDXzHtGv7pg+gTTnYs\\/LbwA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856266,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:06.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:06'),
(3504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:06.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:06'),
(3505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:06.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:06'),
(3506, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:06.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:07'),
(3507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:06.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:07'),
(3508, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3DCA6636D2EB3A6CEA\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586898508_3043640732489976_7088992263525655716_n.enc?ccb=11-4&oh=01_Q5Aa3wHTmqOAPDRJ3WKravJOhhpYdcnqp5ZnXrFCDX3eDSmHZw&oe=69B49807&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"0UmqK9YO9Bza4yiXcWpjExJOXn83Gr99kNQ156vohRM=\",\"fileLength\":\"6418\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"1LX3TcielEuB6wpuuyBw8N6+6BtqS5MbmmXCV11MzLU=\",\"fileEncSha256\":\"FwnEtInVOM3+JIm+m4TmOStV1p6sMzAhErUccI0SJ3I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586898508_3043640732489976_7088992263525655716_n.enc?ccb=11-4&oh=01_Q5Aa3wHTmqOAPDRJ3WKravJOhhpYdcnqp5ZnXrFCDX3eDSmHZw&oe=69B49807&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856136\",\"streamingSidecar\":\"wmTMxCjWVt7BEg==\",\"waveform\":\"ABo0TlxeYWRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRcVExLU1tkWlBFPzw4Nw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770856186\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BWNWVkSd\\/lYljzuzlozGRDXzHtGv7pg+gTTnYs\\/LbwA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856266,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:06.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:07'),
(3509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:07.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:07'),
(3510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:07.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:07'),
(3511, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:10.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:10'),
(3512, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:10.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:10'),
(3513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:15.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:16'),
(3514, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:15.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:16'),
(3515, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:17.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:17'),
(3516, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:17.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:17'),
(3517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:19.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:19'),
(3518, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACC95B363498B7FC5964399CA8C02770\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"O valor é o msm\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fEf6iaTlsJSHmMkZttC87z2pHyPyFzb\\/koselG4gQz0=\",\"fileLength\":\"13786\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"SiY7FOjRW1IhgnhjgBNmWVDRwCI33OIE8fMiyqnf\\/Vg=\",\"fileEncSha256\":\"XTZtxHlsPDJ2PtlxcRpKpc3mklXJzb8yOhEEJoRP64E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856125\",\"waveform\":\"AFEwRkw9TDlSTFBHPUxSVVNKSVYSA0RIFltGGktJTShFW1NNPkJUSU5VRhBdU09IXxtEVVtVP0hKPklXLzVTYg==\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QvIsJRE5pKhiSENqZZpHlBzG3nSG1tP60GLeEJNX2ZQ=\"}},\"contextInfo\":{\"stanzaId\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fEf6iaTlsJSHmMkZttC87z2pHyPyFzb\\/koselG4gQz0=\",\"fileLength\":\"13786\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"SiY7FOjRW1IhgnhjgBNmWVDRwCI33OIE8fMiyqnf\\/Vg=\",\"fileEncSha256\":\"XTZtxHlsPDJ2PtlxcRpKpc3mklXJzb8yOhEEJoRP64E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856125\",\"waveform\":\"AFEwRkw9TDlSTFBHPUxSVVNKSVYSA0RIFltGGktJTShFW1NNPkJUSU5VRhBdU09IXxtEVVtVP0hKPklXLzVTYg==\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770856279,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:19.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:19'),
(3519, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:19.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:19'),
(3520, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACC95B363498B7FC5964399CA8C02770\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"O valor é o msm\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fEf6iaTlsJSHmMkZttC87z2pHyPyFzb\\/koselG4gQz0=\",\"fileLength\":\"13786\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"SiY7FOjRW1IhgnhjgBNmWVDRwCI33OIE8fMiyqnf\\/Vg=\",\"fileEncSha256\":\"XTZtxHlsPDJ2PtlxcRpKpc3mklXJzb8yOhEEJoRP64E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856125\",\"waveform\":\"AFEwRkw9TDlSTFBHPUxSVVNKSVYSA0RIFltGGktJTShFW1NNPkJUSU5VRhBdU09IXxtEVVtVP0hKPklXLzVTYg==\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QvIsJRE5pKhiSENqZZpHlBzG3nSG1tP60GLeEJNX2ZQ=\"}},\"contextInfo\":{\"stanzaId\":\"A5C5CCE42693A6932FFED44A6B6414A1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fEf6iaTlsJSHmMkZttC87z2pHyPyFzb\\/koselG4gQz0=\",\"fileLength\":\"13786\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"SiY7FOjRW1IhgnhjgBNmWVDRwCI33OIE8fMiyqnf\\/Vg=\",\"fileEncSha256\":\"XTZtxHlsPDJ2PtlxcRpKpc3mklXJzb8yOhEEJoRP64E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634361907_1600203831293502_7917820206301718420_n.enc?ccb=11-4&oh=01_Q5Aa3wHw7aSs9oah8Q8-zblSbKHxKvEHJefeOba1IKaCkIfwTg&oe=69B4AB4F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856125\",\"waveform\":\"AFEwRkw9TDlSTFBHPUxSVVNKSVYSA0RIFltGGktJTShFW1NNPkJUSU5VRhBdU09IXxtEVVtVP0hKPklXLzVTYg==\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770856279,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:19.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:19'),
(3521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:19.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:19'),
(3522, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:19.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:20'),
(3523, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:20.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:31:20'),
(3524, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:31:20.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:31:20'),
(3525, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:30.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:32:31'),
(3526, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC82A67A5D17466FA8F038438148EE8E\"},\"pushName\":\"josiane Antonio\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/634328555_1842113203023121_7858942342143243149_n.enc?ccb=11-4&oh=01_Q5Aa3wHMYSoYEx5uwCfhWTak6Z-q4lFnz1aJUpl_v4_Yffr1Qw&oe=69B4A530&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"c0\\/mEMQPY8TzkJ\\/QVEqie+QaEkzLOk1vBU8jUEaPybk=\",\"fileLength\":\"134757\",\"pageCount\":1,\"mediaKey\":\"27a497xp3uJoeJp5Rm4kPRnDAjtKeEolK\\/hQUPBfU8s=\",\"fileName\":\"comprovante2026-02-11_213221.pdf\",\"fileEncSha256\":\"lENxLaWugK7J+krNT7mz5logeyWgSgnKDdsVfqr1Y3w=\",\"directPath\":\"\\/v\\/t62.7119-24\\/634328555_1842113203023121_7858942342143243149_n.enc?ccb=11-4&oh=01_Q5Aa3wHMYSoYEx5uwCfhWTak6Z-q4lFnz1aJUpl_v4_Yffr1Qw&oe=69B4A530&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856349\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/590887993_1592860568413779_5769328976138732778_n.enc?ccb=11-4&oh=01_Q5Aa3wG1k1_BwfxU5CDtkw3fhalSREeBS3wD71R0Neasx6ttzw&oe=69B4A15C&_nc_sid=5e03e0\",\"thumbnailSha256\":\"o3xZ\\/0PF9ulkzcLP7Dl1mYX0voIGU\\/NrBsGDiGwPxTs=\",\"thumbnailEncSha256\":\"7PRp1qkGIoXbJaYwT0859E\\/17Xnq8woRX5B6nkGrUxg=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAGwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAAMAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAA9LzejR083gd\\/zXS4Z5huatpvz6Jc5xpVyAGsy5IZngZd1YkCGjcl0f\\/EAC0QAAIBAgQEBQMFAAAAAAAAAAECAwARBBASIQUTMYEjMkFCcQYVIlFTYWKC\\/9oACAEBAAE\\/AOJ8Qx2HxkyIzBFNffOI\\/vNS8Z4mSPHyxHBoMRNPNKz3LbBTS\\/T2BYbtMKbgGGAfl83XY6bnKQXkvd+3Sgl\\/c\\/c1p\\/k5SDxeh7Ggt+uod6CgG9zlKqmQgqvc2qONdNxpHwb1oGUzDm+z\\/S6qSWEAAEbn0Fs3Lc3SCbUq29xOchZZbqL0CxO62zxRQzEtyr291r1hUwrr5Ymb4FKiJ5VA+BlJs+zkUs5A3a5pZVOwydvyta9Bv6UGP6ZSxMzEgChAfUUI7dBl\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgEDERIAMKH\\/2gAIAQIBAT8AE2UFJHmOkBVqka\\/\\/xAAbEQACAwADAAAAAAAAAAAAAAABAgMREgAwof\\/aAAgBAwEBPwBkmJNN7yJXXWjfX\\/\\/Z\",\"thumbnailHeight\":480,\"thumbnailWidth\":135},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2Azov0BCZPN0yM+jTxs7HPVf1dDVXF7+X5yNQLLvv04=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770856350,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:30.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:32:31'),
(3527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:31.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:32:31'),
(3528, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:30.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:32:31'),
(3529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC82A67A5D17466FA8F038438148EE8E\"},\"pushName\":\"josiane Antonio\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/634328555_1842113203023121_7858942342143243149_n.enc?ccb=11-4&oh=01_Q5Aa3wHMYSoYEx5uwCfhWTak6Z-q4lFnz1aJUpl_v4_Yffr1Qw&oe=69B4A530&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"c0\\/mEMQPY8TzkJ\\/QVEqie+QaEkzLOk1vBU8jUEaPybk=\",\"fileLength\":\"134757\",\"pageCount\":1,\"mediaKey\":\"27a497xp3uJoeJp5Rm4kPRnDAjtKeEolK\\/hQUPBfU8s=\",\"fileName\":\"comprovante2026-02-11_213221.pdf\",\"fileEncSha256\":\"lENxLaWugK7J+krNT7mz5logeyWgSgnKDdsVfqr1Y3w=\",\"directPath\":\"\\/v\\/t62.7119-24\\/634328555_1842113203023121_7858942342143243149_n.enc?ccb=11-4&oh=01_Q5Aa3wHMYSoYEx5uwCfhWTak6Z-q4lFnz1aJUpl_v4_Yffr1Qw&oe=69B4A530&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856349\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/590887993_1592860568413779_5769328976138732778_n.enc?ccb=11-4&oh=01_Q5Aa3wG1k1_BwfxU5CDtkw3fhalSREeBS3wD71R0Neasx6ttzw&oe=69B4A15C&_nc_sid=5e03e0\",\"thumbnailSha256\":\"o3xZ\\/0PF9ulkzcLP7Dl1mYX0voIGU\\/NrBsGDiGwPxTs=\",\"thumbnailEncSha256\":\"7PRp1qkGIoXbJaYwT0859E\\/17Xnq8woRX5B6nkGrUxg=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAGwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAAMAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAA9LzejR083gd\\/zXS4Z5huatpvz6Jc5xpVyAGsy5IZngZd1YkCGjcl0f\\/EAC0QAAIBAgQEBQMFAAAAAAAAAAECAwARBBASIQUTMYEjMkFCcQYVIlFTYWKC\\/9oACAEBAAE\\/AOJ8Qx2HxkyIzBFNffOI\\/vNS8Z4mSPHyxHBoMRNPNKz3LbBTS\\/T2BYbtMKbgGGAfl83XY6bnKQXkvd+3Sgl\\/c\\/c1p\\/k5SDxeh7Ggt+uod6CgG9zlKqmQgqvc2qONdNxpHwb1oGUzDm+z\\/S6qSWEAAEbn0Fs3Lc3SCbUq29xOchZZbqL0CxO62zxRQzEtyr291r1hUwrr5Ymb4FKiJ5VA+BlJs+zkUs5A3a5pZVOwydvyta9Bv6UGP6ZSxMzEgChAfUUI7dBl\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgEDERIAMKH\\/2gAIAQIBAT8AE2UFJHmOkBVqka\\/\\/xAAbEQACAwADAAAAAAAAAAAAAAABAgMREgAwof\\/aAAgBAwEBPwBkmJNN7yJXXWjfX\\/\\/Z\",\"thumbnailHeight\":480,\"thumbnailWidth\":135},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2Azov0BCZPN0yM+jTxs7HPVf1dDVXF7+X5yNQLLvv04=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770856350,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:30.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:32:31'),
(3530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:31.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:32:32'),
(3531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:31.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:32:32'),
(3532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:31.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:32:33'),
(3533, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":true,\"id\":\"A5C528FA32258A487423F7077A863085\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/587178517_2033495590532073_5704242389767513393_n.enc?ccb=11-4&oh=01_Q5Aa3wG1R7fhXB-1dt3YhfvtsHf3oXIvZZyUKC43duPSENJGXA&oe=69B48B86&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"yR6v+05uW\\/cTEh4eloWlwAI6QCNHfSd\\/wknKsXdPVsc=\",\"fileLength\":\"2626390\",\"seconds\":14,\"mediaKey\":\"NBSoMdfQ4WMLy29qoEnQa+pQbc0VtBoyPGOfE0mt7ik=\",\"height\":392,\"width\":848,\"fileEncSha256\":\"Db7b6zBWu8iB0BJS+YVdF8wbtUWk787DlTmIfemXTb0=\",\"directPath\":\"\\/v\\/t62.7161-24\\/587178517_2033495590532073_5704242389767513393_n.enc?ccb=11-4&oh=01_Q5Aa3wG1R7fhXB-1dt3YhfvtsHf3oXIvZZyUKC43duPSENJGXA&oe=69B48B86&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856378\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEASAMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAABAgT\\/2gAMAwEAAhADEAAAAPFbu3l515xrq4dVlNa3UNSs5o0rUTNJXScpSygzGNpEAgKB\\/8QAIxAAAgICAgEEAwAAAAAAAAAAAAERIQISAzEQBBQiQTBSof\\/aAAgBAQABPwBYD4zQ0NOD23Sn+mgsMbkww4Yy2TmoOXD07202n6KZlSNibhDqosmKaLcwujFUUvEyh4T0RrJZG0CwSVomo8K\\/slS\\/kLNm5sbjzZX7rolazN\\/i\\/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECERIiEyD\\/2gAIAQIBAT8AwqKiVEUItnmjaOaOTUYm19f\\/xAAbEQACAwADAAAAAAAAAAAAAAAAAQIREiAhIv\\/aAAgBAwEBPwDTsuQtIcmjbMM9HZTZl8v\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"SMA3FNrh3ATMN2sxAEfszPMZCrPn0D17cDhcn2NraElvuC48zl1zLYaudj3Eh1wJvtlXoUAiQKPzet4zdWDyokegEvmbFV5+enjwFcbNri+w4oGfb8VGmaidT3SgE3Qxn2OVomqbr3GDPeb7i+vckWZuvw0Wcz1iGXLFCdMZ5T+vm1ihvcFbZGq\\/DPxlKZ+47JcBgLV5+PJyYM6S+S4Db7\\/SrR6oZG0czquVqc3MMbYp7hjoyJl3LVjIAaXP4Pnz5L4tyDldruquvZ1Xg3bGpKiVwB+mZB8R4W5a4f2wCVtZXmv\\/El+IQQPS3NY\\/rSojDuRSI60ynrzdknJRWJG4oaLzJ3dS\\/4gsE\\/ibXXgrZ+9WWlYMxWWqptLR0Wj2UPRVAgfmUsIND+W\\/Qjw2MZ8e+4yVK3\\/K41wBm8grOH7BLNu9X7UKhKoBrz3RJ15s8\\/vJEet\\/PjE5RzXIWWCVAMzQ3xonlGgzR6VInKTBDRcA+oU7P\\/mk7uJF4E1yyMbPBvNcUcYTFWYFF87UzGuOXAtu5X\\/emgc3aeJ9vFg=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1770856379,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:59.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:32:59'),
(3534, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":true,\"id\":\"A5C528FA32258A487423F7077A863085\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/587178517_2033495590532073_5704242389767513393_n.enc?ccb=11-4&oh=01_Q5Aa3wG1R7fhXB-1dt3YhfvtsHf3oXIvZZyUKC43duPSENJGXA&oe=69B48B86&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"yR6v+05uW\\/cTEh4eloWlwAI6QCNHfSd\\/wknKsXdPVsc=\",\"fileLength\":\"2626390\",\"seconds\":14,\"mediaKey\":\"NBSoMdfQ4WMLy29qoEnQa+pQbc0VtBoyPGOfE0mt7ik=\",\"height\":392,\"width\":848,\"fileEncSha256\":\"Db7b6zBWu8iB0BJS+YVdF8wbtUWk787DlTmIfemXTb0=\",\"directPath\":\"\\/v\\/t62.7161-24\\/587178517_2033495590532073_5704242389767513393_n.enc?ccb=11-4&oh=01_Q5Aa3wG1R7fhXB-1dt3YhfvtsHf3oXIvZZyUKC43duPSENJGXA&oe=69B48B86&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856378\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEASAMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAABAgT\\/2gAMAwEAAhADEAAAAPFbu3l515xrq4dVlNa3UNSs5o0rUTNJXScpSygzGNpEAgKB\\/8QAIxAAAgICAgEEAwAAAAAAAAAAAAERIQISAzEQBBQiQTBSof\\/aAAgBAQABPwBYD4zQ0NOD23Sn+mgsMbkww4Yy2TmoOXD07202n6KZlSNibhDqosmKaLcwujFUUvEyh4T0RrJZG0CwSVomo8K\\/slS\\/kLNm5sbjzZX7rolazN\\/i\\/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECERIiEyD\\/2gAIAQIBAT8AwqKiVEUItnmjaOaOTUYm19f\\/xAAbEQACAwADAAAAAAAAAAAAAAAAAQIREiAhIv\\/aAAgBAwEBPwDTsuQtIcmjbMM9HZTZl8v\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"SMA3FNrh3ATMN2sxAEfszPMZCrPn0D17cDhcn2NraElvuC48zl1zLYaudj3Eh1wJvtlXoUAiQKPzet4zdWDyokegEvmbFV5+enjwFcbNri+w4oGfb8VGmaidT3SgE3Qxn2OVomqbr3GDPeb7i+vckWZuvw0Wcz1iGXLFCdMZ5T+vm1ihvcFbZGq\\/DPxlKZ+47JcBgLV5+PJyYM6S+S4Db7\\/SrR6oZG0czquVqc3MMbYp7hjoyJl3LVjIAaXP4Pnz5L4tyDldruquvZ1Xg3bGpKiVwB+mZB8R4W5a4f2wCVtZXmv\\/El+IQQPS3NY\\/rSojDuRSI60ynrzdknJRWJG4oaLzJ3dS\\/4gsE\\/ibXXgrZ+9WWlYMxWWqptLR0Wj2UPRVAgfmUsIND+W\\/Qjw2MZ8e+4yVK3\\/K41wBm8grOH7BLNu9X7UKhKoBrz3RJ15s8\\/vJEet\\/PjE5RzXIWWCVAMzQ3xonlGgzR6VInKTBDRcA+oU7P\\/mk7uJF4E1yyMbPBvNcUcYTFWYFF87UzGuOXAtu5X\\/emgc3aeJ9vFg=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1770856379,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:59.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:32:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3535, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:59.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:32:59'),
(3536, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:32:59.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:32:59'),
(3537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:00.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:00'),
(3538, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:00.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:00'),
(3539, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5C528FA32258A487423F7077A863085\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856380526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:00.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:00'),
(3540, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5C528FA32258A487423F7077A863085\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856380526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:00.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:00'),
(3541, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5864991D6198D9859905E6AF2B9F25D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19151452_840276059040224_4112760829238627955_n.enc?ccb=11-4&oh=01_Q5Aa3wHZxqDoX9DAF5kyltE_fmWmhr5CA55lHjGzcQyVxsV3fg&oe=69B4850C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"99X+nKARcRdWP2xlgYx2A8sBejyBOE0\\/KPG1+wrIBAw=\",\"fileLength\":\"20324\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"GxEFblRjAjpi3m0vP+BIDnDo1e5rqwqVN+ebJlS9lJ4=\",\"fileEncSha256\":\"vmxVqIqlYGuLVcdxwRGLmwjt2cUqTD6fHA3uea86z54=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19151452_840276059040224_4112760829238627955_n.enc?ccb=11-4&oh=01_Q5Aa3wHZxqDoX9DAF5kyltE_fmWmhr5CA55lHjGzcQyVxsV3fg&oe=69B4850C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856385\",\"waveform\":\"AAgAAAEFAWNaYmM5V1s\\/TEhDBWBPNWBXUD4kVGJVVFFcHlZTMksrXENYXkwAAAAAABZOWFxDTmIlW0g0KUUVSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:13.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:13'),
(3542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5864991D6198D9859905E6AF2B9F25D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19151452_840276059040224_4112760829238627955_n.enc?ccb=11-4&oh=01_Q5Aa3wHZxqDoX9DAF5kyltE_fmWmhr5CA55lHjGzcQyVxsV3fg&oe=69B4850C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"99X+nKARcRdWP2xlgYx2A8sBejyBOE0\\/KPG1+wrIBAw=\",\"fileLength\":\"20324\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"GxEFblRjAjpi3m0vP+BIDnDo1e5rqwqVN+ebJlS9lJ4=\",\"fileEncSha256\":\"vmxVqIqlYGuLVcdxwRGLmwjt2cUqTD6fHA3uea86z54=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19151452_840276059040224_4112760829238627955_n.enc?ccb=11-4&oh=01_Q5Aa3wHZxqDoX9DAF5kyltE_fmWmhr5CA55lHjGzcQyVxsV3fg&oe=69B4850C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856385\",\"waveform\":\"AAgAAAEFAWNaYmM5V1s\\/TEhDBWBPNWBXUD4kVGJVVFFcHlZTMksrXENYXkwAAAAAABZOWFxDTmIlW0g0KUUVSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:13.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:13'),
(3543, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:13.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:14'),
(3544, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:13.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:14'),
(3545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:14.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:14'),
(3546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:14.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:14'),
(3547, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A5598F1AD1C4610A62159E88286A6BF4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770856410254\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770856411,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:31'),
(3548, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:31'),
(3549, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A5598F1AD1C4610A62159E88286A6BF4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770856410254\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770856411,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:31'),
(3550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:31'),
(3551, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856411603,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:31'),
(3552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:32'),
(3553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:32'),
(3554, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856411603,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:31.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:32'),
(3555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5864991D6198D9859905E6AF2B9F25D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856427284,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:47.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:47'),
(3556, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5864991D6198D9859905E6AF2B9F25D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770856427284,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:47.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:47'),
(3557, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5864991D6198D9859905E6AF2B9F25D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856430769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:50.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:50'),
(3558, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5864991D6198D9859905E6AF2B9F25D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856430769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:50.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:50'),
(3559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5864991D6198D9859905E6AF2B9F25D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856430952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:50.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:33:51'),
(3560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5864991D6198D9859905E6AF2B9F25D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770856430952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:33:50.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:33:51'),
(3561, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD00EE39D503A2F522C\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"contactsArrayMessage\":{\"displayName\":\"‎2 contatos\",\"contacts\":[{\"displayName\":\"Solano Vivo \",\"vcard\":\"BEGIN:VCARD\\nVERSION:3.0\\nN:;Solano Vivo;;;\\nFN:Solano Vivo \\nTEL;type=CELL;type=VOICE;waid=553399921854:+55 33 99992-1854\\nEND:VCARD\"},{\"displayName\":\"Solano \",\"vcard\":\"BEGIN:VCARD\\nVERSION:3.0\\nN:;Solano;;;\\nFN:Solano \\nTEL;type=CELL;type=VOICE;waid=553399921854:+55 33 99992-1854\\nEND:VCARD\"}]},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770856186\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wONwA2Eq6XwbxTPRSzOjShL5aycm5ZA0v4K6x2lGxds=\"}},\"contextInfo\":null,\"messageType\":\"contactsArrayMessage\",\"messageTimestamp\":1770856446,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:06.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:06'),
(3562, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD00EE39D503A2F522C\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"contactsArrayMessage\":{\"displayName\":\"‎2 contatos\",\"contacts\":[{\"displayName\":\"Solano Vivo \",\"vcard\":\"BEGIN:VCARD\\nVERSION:3.0\\nN:;Solano Vivo;;;\\nFN:Solano Vivo \\nTEL;type=CELL;type=VOICE;waid=553399921854:+55 33 99992-1854\\nEND:VCARD\"},{\"displayName\":\"Solano \",\"vcard\":\"BEGIN:VCARD\\nVERSION:3.0\\nN:;Solano;;;\\nFN:Solano \\nTEL;type=CELL;type=VOICE;waid=553399921854:+55 33 99992-1854\\nEND:VCARD\"}]},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770856186\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wONwA2Eq6XwbxTPRSzOjShL5aycm5ZA0v4K6x2lGxds=\"}},\"contextInfo\":null,\"messageType\":\"contactsArrayMessage\",\"messageTimestamp\":1770856446,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:06.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:06'),
(3563, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:06.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:07'),
(3564, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:07.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:07'),
(3565, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:06.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:07'),
(3566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:07.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:07'),
(3567, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:07.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:07'),
(3568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:07.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:08'),
(3569, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:22.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:22'),
(3570, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:22.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:22'),
(3571, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:27.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:27'),
(3572, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:27.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:27'),
(3573, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:28'),
(3574, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0C7C5840EAD70D78A3\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/541328924_893697290036075_2347393969654753229_n.enc?ccb=11-4&oh=01_Q5Aa3wFB0NfF0b1Ut6t9tAyqVq27guyRRqwcMgOudN92dEZeOQ&oe=69B497B8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7Vhf5EIkxq9cNmI3Y+keU7g46WIrKazFBpUuZOsaPeM=\",\"fileLength\":\"9851\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"gDnViK8WuFy+FNB164arLnhtBmnnZQwQQIiiaBMMmLc=\",\"fileEncSha256\":\"io1qN1+cNiZl7OsShEgJZBECKPtx5GDOnS0eukLlVZg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/541328924_893697290036075_2347393969654753229_n.enc?ccb=11-4&oh=01_Q5Aa3wFB0NfF0b1Ut6t9tAyqVq27guyRRqwcMgOudN92dEZeOQ&oe=69B497B8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856462\",\"streamingSidecar\":\"nl2URQkCJ+HHWA==\",\"waveform\":\"ACxYZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkX1lRR0FHTU9RSDs3PD40KzI5Ni83TVtOQlFgZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770856186\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MAUcjFTRfC03sBQuxh8jg3V3iEYYhsYBxnrH7VzOceU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856467,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:28'),
(3575, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:28'),
(3576, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0C7C5840EAD70D78A3\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/541328924_893697290036075_2347393969654753229_n.enc?ccb=11-4&oh=01_Q5Aa3wFB0NfF0b1Ut6t9tAyqVq27guyRRqwcMgOudN92dEZeOQ&oe=69B497B8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7Vhf5EIkxq9cNmI3Y+keU7g46WIrKazFBpUuZOsaPeM=\",\"fileLength\":\"9851\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"gDnViK8WuFy+FNB164arLnhtBmnnZQwQQIiiaBMMmLc=\",\"fileEncSha256\":\"io1qN1+cNiZl7OsShEgJZBECKPtx5GDOnS0eukLlVZg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/541328924_893697290036075_2347393969654753229_n.enc?ccb=11-4&oh=01_Q5Aa3wFB0NfF0b1Ut6t9tAyqVq27guyRRqwcMgOudN92dEZeOQ&oe=69B497B8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856462\",\"streamingSidecar\":\"nl2URQkCJ+HHWA==\",\"waveform\":\"ACxYZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkX1lRR0FHTU9RSDs3PD40KzI5Ni83TVtOQlFgZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770856186\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MAUcjFTRfC03sBQuxh8jg3V3iEYYhsYBxnrH7VzOceU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770856467,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:28'),
(3577, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:28'),
(3578, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:29'),
(3579, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:29'),
(3580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7Xi1UFDG4q63TjG13DaYsQnaXDVv_l2EiKTKfp7QO1g&oe=699A4DA1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:28.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:29'),
(3581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5C528FA32258A487423F7077A863085\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856498210,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:58.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:34:58'),
(3582, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5C528FA32258A487423F7077A863085\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856498210,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:34:58.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:34:58'),
(3583, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856516908,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:16.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:17'),
(3584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770856516908,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:16.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:17'),
(3585, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:21.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:21'),
(3586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:21.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:21'),
(3587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:23'),
(3588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC5DB135D495E5E7694453E876B1309F\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"Obrigado\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770856410254\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zGY+YAFLaHcaZKQ7E1PnrL+mk+V1kX6woLA5m+zSdQU=\"}},\"contextInfo\":{\"stanzaId\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770856410254\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770856523,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:23'),
(3589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:23'),
(3590, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC5DB135D495E5E7694453E876B1309F\"},\"pushName\":\"josiane Antonio\",\"message\":{\"extendedTextMessage\":{\"text\":\"Obrigado\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770856410254\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zGY+YAFLaHcaZKQ7E1PnrL+mk+V1kX6woLA5m+zSdQU=\"}},\"contextInfo\":{\"stanzaId\":\"A5598F1AD1C4610A62159E88286A6BF4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFr375XPT0ngdBSwzfvDhWqBI4skfoD3GiOTAw1X9wrkg&oe=69B4820C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770856410254\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770856523,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:23'),
(3591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:23'),
(3592, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:24'),
(3593, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:24'),
(3594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:24.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:24'),
(3595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:24.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:24'),
(3596, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:23.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:24');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3597, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:24.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:25'),
(3598, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:24.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:25'),
(3599, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:24.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:25'),
(3600, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:24.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:25'),
(3601, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC528F75987A1F245F19FA887CD04300\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Deixa eu te fazer uma pergunta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L7sP4xBDDcWMnRVx9ZhKOHiPRLd+xDjFEctKWdwbvOQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770856535,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:35'),
(3602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC528F75987A1F245F19FA887CD04300\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Deixa eu te fazer uma pergunta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L7sP4xBDDcWMnRVx9ZhKOHiPRLd+xDjFEctKWdwbvOQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770856535,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:35'),
(3603, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:35'),
(3604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:35'),
(3605, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:35'),
(3606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:35'),
(3607, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:35'),
(3608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:36'),
(3609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:36'),
(3610, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:35.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:36'),
(3611, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:46.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:46'),
(3612, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:46.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:46'),
(3613, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:56.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:35:56'),
(3614, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:35:56.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:35:56'),
(3615, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:06.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:06'),
(3616, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"presences\":{\"256091736768538@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:06.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:06'),
(3617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC5E93319639A206624FABDDCDB056A3\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Desde de dezembro eu tento entrar em jogos online e não entra vc sabe me dizer o pq\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vLl0SA1VhFjxp6PqL7NN1hFXxtjFVbGfXmaENnxltcI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770856575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:16'),
(3618, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"AC5E93319639A206624FABDDCDB056A3\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Desde de dezembro eu tento entrar em jogos online e não entra vc sabe me dizer o pq\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vLl0SA1VhFjxp6PqL7NN1hFXxtjFVbGfXmaENnxltcI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770856575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:16'),
(3619, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:16'),
(3620, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:16'),
(3621, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:16'),
(3622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:17'),
(3623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:17'),
(3624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:16.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:17'),
(3625, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:26.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:26'),
(3626, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACD9A0E4FDD96A52E9DE5DD2456CF664\"},\"pushName\":\"josiane Antonio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633991366_3811010899036282_564930919169639387_n.enc?ccb=11-4&oh=01_Q5Aa3wFNkRMgU1DY2y6CzwP-un1OCxUFTNh80Fm_gcWK1TNNXA&oe=69B47B88&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Fica assim\",\"fileSha256\":\"VXawI7CxHLJBVH12ag0KgMn5Iz2FRKyGDP6zbw7AIA4=\",\"fileLength\":\"20907\",\"height\":1600,\"width\":757,\"mediaKey\":\"1sqse+ihRTBSmMld5+QZz3ankppZBR5zZTjOoD1ah3Y=\",\"fileEncSha256\":\"+5AFaMgPVRP1dDao5bzyV5HzbOBV0TrXuI0xn0uwZ6U=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633991366_3811010899036282_564930919169639387_n.enc?ccb=11-4&oh=01_Q5Aa3wFNkRMgU1DY2y6CzwP-un1OCxUFTNh80Fm_gcWK1TNNXA&oe=69B47B88&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856579\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEcAIQMBIgACEQEDEQH\\/xAAqAAEBAQEAAAAAAAAAAAAAAAAABQMEAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAAdFjaoK8IK8AgAAAAAAAAAAD\\/xAAdEAABBQADAQAAAAAAAAAAAAABAAIDFlMEBRFQ\\/9oACAEBAAE\\/AG9P761syr7tlXzuq+d1XjuoeLHCS4fI\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAEQAw\\/9oACAECAQE\\/AGZ1\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"mr95RDcg6r5vDVA0pjcNr\\/dBUTqKZE+uv29QUIyHUe0BHXRdPx8C2g==\",\"scanLengths\":[4396,12431,1870,2210],\"midQualityFileSha256\":\"HicmxzQSEsfZWe36V2o5Zz6HWRpG3vYjDYABGWQwPxo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ALuSHWb0FxcHvm0e\\/Te9kgJEh8EtEr0ilrgKQTDEjNE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856586,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:26.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:26'),
(3627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:26.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:26'),
(3628, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACD9A0E4FDD96A52E9DE5DD2456CF664\"},\"pushName\":\"josiane Antonio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633991366_3811010899036282_564930919169639387_n.enc?ccb=11-4&oh=01_Q5Aa3wFNkRMgU1DY2y6CzwP-un1OCxUFTNh80Fm_gcWK1TNNXA&oe=69B47B88&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Fica assim\",\"fileSha256\":\"VXawI7CxHLJBVH12ag0KgMn5Iz2FRKyGDP6zbw7AIA4=\",\"fileLength\":\"20907\",\"height\":1600,\"width\":757,\"mediaKey\":\"1sqse+ihRTBSmMld5+QZz3ankppZBR5zZTjOoD1ah3Y=\",\"fileEncSha256\":\"+5AFaMgPVRP1dDao5bzyV5HzbOBV0TrXuI0xn0uwZ6U=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633991366_3811010899036282_564930919169639387_n.enc?ccb=11-4&oh=01_Q5Aa3wFNkRMgU1DY2y6CzwP-un1OCxUFTNh80Fm_gcWK1TNNXA&oe=69B47B88&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856579\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEcAIQMBIgACEQEDEQH\\/xAAqAAEBAQEAAAAAAAAAAAAAAAAABQMEAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAAdFjaoK8IK8AgAAAAAAAAAAD\\/xAAdEAABBQADAQAAAAAAAAAAAAABAAIDFlMEBRFQ\\/9oACAEBAAE\\/AG9P761syr7tlXzuq+d1XjuoeLHCS4fI\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAEQAw\\/9oACAECAQE\\/AGZ1\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"mr95RDcg6r5vDVA0pjcNr\\/dBUTqKZE+uv29QUIyHUe0BHXRdPx8C2g==\",\"scanLengths\":[4396,12431,1870,2210],\"midQualityFileSha256\":\"HicmxzQSEsfZWe36V2o5Zz6HWRpG3vYjDYABGWQwPxo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ALuSHWb0FxcHvm0e\\/Te9kgJEh8EtEr0ilrgKQTDEjNE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856586,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:26.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:26'),
(3629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:26.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:26'),
(3630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:27.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:27'),
(3631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:27.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:27'),
(3632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Rt08BpDh3MDV02IzCd4_jHa2ury2tislYzNe1JcsRA&oe=699A4D84&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:26.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:27'),
(3633, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:32.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:33'),
(3634, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:32.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:33'),
(3635, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC7165CE2552A5AEAEA42E48546F799D\"},\"pushName\":\"Meiriane\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/634264882_873803952085784_5679973568503614755_n.enc?ccb=11-4&oh=01_Q5Aa3wFrBI2bYfhV4oOgUDCjeoiWMcNM-5J6WjyrKoXvLM6COQ&oe=69B4A48F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"Efd6Sn2kfgC+Z3avxa7fwj6P5YptbfTVHdzH4x\\/gnE0=\",\"fileLength\":\"8757453\",\"seconds\":40,\"mediaKey\":\"cUXxTiyaQo\\/rTA7Z6K2cAB7EZGgy3688Mg5btDZb+eA=\",\"height\":850,\"width\":474,\"fileEncSha256\":\"YKsF4PrVJZCsjidqdLuPVopSiy0t49FG\\/3q8Pt9Y2J0=\",\"directPath\":\"\\/v\\/t62.7161-24\\/634264882_873803952085784_5679973568503614755_n.enc?ccb=11-4&oh=01_Q5Aa3wFrBI2bYfhV4oOgUDCjeoiWMcNM-5J6WjyrKoXvLM6COQ&oe=69B4A48F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856590\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAECBQMBAAIDAAAAAAAAAAAAAAAAAAADAQIE\\/9oADAMBAAIQAxAAAADAk29qMSNytl4hoCXo7mC7amzXLl2RszxOpK1JzaG1Z5zFigEna9LLQ3IKDQDvIInlAEVAD\\/\\/EACIQAAICAQMFAQEAAAAAAAAAAAABAgMRBBIhEBMUQVEgM\\/\\/aAAgBAQABPwDBtZj8V1V9qO5Hi1SLNFU3mPCNRpI1wclLpUm4QY62llLj4KMjW\\/xlwZPNntSwuELXTR58\\/hbrHZBxcRLJtawTqSg2kZ4MmcM3SY5WNdOeibRl\\/emJComKhe2dqK9Cil6JLgY0N4NyHyf\\/xAAbEQADAAIDAAAAAAAAAAAAAAAAAQIREgMgMv\\/aAAgBAgEBPwCJTHCKnDOO0ZWPSKpCZszbv\\/\\/EAB8RAAIDAAEFAQAAAAAAAAAAAAIRAAEDMQQQEyEwUf\\/aAAgBAwEBPwDXXxr03K6nOCYnTG3Ns7NK+JeW\\/wCVcxAgG2uey+H\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"vglxpb2trUIsImieRDtRal5SWUICkN0JTwbasVv0Vo0itlOlvx91uKIff0hE0jbSOItVpipIpzqYGNpnNOQh6ipyo\\/CkQaLNTe8WFUvEhncQZmTszIvsR8W2lTVk3iRqpmE64g0xHwz6EJw4Cc6\\/lQyVvg3GnzzWV4DPoVotMBZ9jTkJm2QQZuMjIfgIGZgoDnr8STC7K1gel0gHQhJa\\/GStzPGx+gsvok7VxG04Etn3iqruh\\/qvZj3+DsY84G3fBBJlI3AmIdJ+HLcaWwMaPlqaWJtSp2PBhnGL1TQjymrpigOxd7oar4fw3rByksCIxikBpSjmspmkfN\\/id3NfJGGoSxsmwiEeikuyAYQw7DT02TMi1GdxHEWPiXoB\\/3+IKGz87F4GoLgmt32+aYKnmjLrPtgsYAtDEtCKGx9fd1mPSgMJe21VOnEdoed5VlJ5in8KcVDFGLFPxNrk09Zcyk0rSQ2X7vAIqGT2io8bn+jIUA6lF\\/eFBRe0NtAVtFHQoUSHZ\\/fQ6335Dl9uyNzirAjj1D1WAFaIZiqE0gE1U4uaCuvE2\\/nrGAgn6q8KdOt1HXquAY4WWNPkQk63sZdfnfONMeAElpLaCvj+BrWQRrvVmV3KQgefWAlVbmZv2Y1lo1Kyc65emJUhJbptLXtxoPQEdZiBSenyl1QOByGjXsL6rijlE\\/n\\/QCqA9dp7lVRFqfkShRXQRaDaQqED9nI\\/YjQahhPpqUdaY38zqnlpA+VB1nYY0Ms0oMMPZh9WvFpp0H4x3+OWj38\\/2Q2jpPwo3iV+TcvEdcanHQScPZ9Pvkzu\\/z4mPTBhbFXoPucuao2Xdw6kFUXET9nhyzVPRG6HHL7BTR6EKx2ibjbcWx25i8qSIYTpEug+XF+W2Y2Pr\\/xnh4hEomtGhvXa8ELldIc6kexyV53I6wj2YXuj6R2bGjxgdS02t4EUVA1EVzXznJjOx5a7hWiv2YTG6RjOpcGOBeuoxivgCtezXuynmEai0SRXDimCaqIUlSsjT8oIsxI1BKSS0sRvTAf3YIyFha+3BL5dBRS0xm9mkZo\\/YL3a2+t2czua+dqeR1rEkkzyS0da3ADurLt3J47u10msjIThjIXnhkaAN1ly9FPKAyrAkaslUruMN3o2v0NYzhMiGeoLW5Ia8S+p\\/yH93he2cXSebpfOz2JE8JF0qMsb6Nu4wfTF4RsE2qk4oFsgJAOHZO2xm1g2lKUPo6EAn43YZhUTvF6up++W3TM6qZMo5Z2HWRqN23ctPFe0kujEz51rL3WCd7qBBJRziZBBGcGtHkIliuezJq0U6tNkqseRV2yFbMokSyLNUYX\\/MFvz5F37\\/p0ggqmwvI0eazlK1AsFZUQDkz0WKLv95Hbkz26J\\/P0EQSaZkKdfRRmnAEs7mF6r12e2jctFPjLg+Ke2HBRU9jAnHRuOrucLxpZtXFP4qmn2pFlsG\\/e043lgWa0Xrh8enKIbqU0fA+F7X9Yu9FvctHAXeGzZVLIQ0y4Wu5cBZAuEOF7vIbCFjHwm+j0eLYQMVOjNsg9cWa3JjEHOh0Ndqk+Y1dWDMEeTBphS6BNBajsg+yfYwVJ2NEK1pZPh6O\\/PEL8P6nsf70dplnfuU+7mZ7WoxTyQnQtEem64qqZUE7k7bfdiysSD9rlEEGNrj06r\\/TjUafj3Br7opQbGPkAu50M\\/iNv6tqLkbFgXCAP9D5SiyYb4ElK3R3+BMpRLNTH8tbkdzI1aQNgNo7ms2xwyn148eL0VcERM6GnGyvnBm70DWP2mi+SAAtbbWY+y2jM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OR\\/BILWp2vhwyUnX+n8Zo2Zw3JPiNU0ETQ\\/32RcFRkA=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1770856592,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:32.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:33'),
(3636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:33.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:33'),
(3637, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC7165CE2552A5AEAEA42E48546F799D\"},\"pushName\":\"Meiriane\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/634264882_873803952085784_5679973568503614755_n.enc?ccb=11-4&oh=01_Q5Aa3wFrBI2bYfhV4oOgUDCjeoiWMcNM-5J6WjyrKoXvLM6COQ&oe=69B4A48F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"Efd6Sn2kfgC+Z3avxa7fwj6P5YptbfTVHdzH4x\\/gnE0=\",\"fileLength\":\"8757453\",\"seconds\":40,\"mediaKey\":\"cUXxTiyaQo\\/rTA7Z6K2cAB7EZGgy3688Mg5btDZb+eA=\",\"height\":850,\"width\":474,\"fileEncSha256\":\"YKsF4PrVJZCsjidqdLuPVopSiy0t49FG\\/3q8Pt9Y2J0=\",\"directPath\":\"\\/v\\/t62.7161-24\\/634264882_873803952085784_5679973568503614755_n.enc?ccb=11-4&oh=01_Q5Aa3wFrBI2bYfhV4oOgUDCjeoiWMcNM-5J6WjyrKoXvLM6COQ&oe=69B4A48F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856590\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAECBQMBAAIDAAAAAAAAAAAAAAAAAAADAQIE\\/9oADAMBAAIQAxAAAADAk29qMSNytl4hoCXo7mC7amzXLl2RszxOpK1JzaG1Z5zFigEna9LLQ3IKDQDvIInlAEVAD\\/\\/EACIQAAICAQMFAQEAAAAAAAAAAAABAgMRBBIhEBMUQVEgM\\/\\/aAAgBAQABPwDBtZj8V1V9qO5Hi1SLNFU3mPCNRpI1wclLpUm4QY62llLj4KMjW\\/xlwZPNntSwuELXTR58\\/hbrHZBxcRLJtawTqSg2kZ4MmcM3SY5WNdOeibRl\\/emJComKhe2dqK9Cil6JLgY0N4NyHyf\\/xAAbEQADAAIDAAAAAAAAAAAAAAAAAQIREgMgMv\\/aAAgBAgEBPwCJTHCKnDOO0ZWPSKpCZszbv\\/\\/EAB8RAAIDAAEFAQAAAAAAAAAAAAIRAAEDMQQQEyEwUf\\/aAAgBAwEBPwDXXxr03K6nOCYnTG3Ns7NK+JeW\\/wCVcxAgG2uey+H\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"vglxpb2trUIsImieRDtRal5SWUICkN0JTwbasVv0Vo0itlOlvx91uKIff0hE0jbSOItVpipIpzqYGNpnNOQh6ipyo\\/CkQaLNTe8WFUvEhncQZmTszIvsR8W2lTVk3iRqpmE64g0xHwz6EJw4Cc6\\/lQyVvg3GnzzWV4DPoVotMBZ9jTkJm2QQZuMjIfgIGZgoDnr8STC7K1gel0gHQhJa\\/GStzPGx+gsvok7VxG04Etn3iqruh\\/qvZj3+DsY84G3fBBJlI3AmIdJ+HLcaWwMaPlqaWJtSp2PBhnGL1TQjymrpigOxd7oar4fw3rByksCIxikBpSjmspmkfN\\/id3NfJGGoSxsmwiEeikuyAYQw7DT02TMi1GdxHEWPiXoB\\/3+IKGz87F4GoLgmt32+aYKnmjLrPtgsYAtDEtCKGx9fd1mPSgMJe21VOnEdoed5VlJ5in8KcVDFGLFPxNrk09Zcyk0rSQ2X7vAIqGT2io8bn+jIUA6lF\\/eFBRe0NtAVtFHQoUSHZ\\/fQ6335Dl9uyNzirAjj1D1WAFaIZiqE0gE1U4uaCuvE2\\/nrGAgn6q8KdOt1HXquAY4WWNPkQk63sZdfnfONMeAElpLaCvj+BrWQRrvVmV3KQgefWAlVbmZv2Y1lo1Kyc65emJUhJbptLXtxoPQEdZiBSenyl1QOByGjXsL6rijlE\\/n\\/QCqA9dp7lVRFqfkShRXQRaDaQqED9nI\\/YjQahhPpqUdaY38zqnlpA+VB1nYY0Ms0oMMPZh9WvFpp0H4x3+OWj38\\/2Q2jpPwo3iV+TcvEdcanHQScPZ9Pvkzu\\/z4mPTBhbFXoPucuao2Xdw6kFUXET9nhyzVPRG6HHL7BTR6EKx2ibjbcWx25i8qSIYTpEug+XF+W2Y2Pr\\/xnh4hEomtGhvXa8ELldIc6kexyV53I6wj2YXuj6R2bGjxgdS02t4EUVA1EVzXznJjOx5a7hWiv2YTG6RjOpcGOBeuoxivgCtezXuynmEai0SRXDimCaqIUlSsjT8oIsxI1BKSS0sRvTAf3YIyFha+3BL5dBRS0xm9mkZo\\/YL3a2+t2czua+dqeR1rEkkzyS0da3ADurLt3J47u10msjIThjIXnhkaAN1ly9FPKAyrAkaslUruMN3o2v0NYzhMiGeoLW5Ia8S+p\\/yH93he2cXSebpfOz2JE8JF0qMsb6Nu4wfTF4RsE2qk4oFsgJAOHZO2xm1g2lKUPo6EAn43YZhUTvF6up++W3TM6qZMo5Z2HWRqN23ctPFe0kujEz51rL3WCd7qBBJRziZBBGcGtHkIliuezJq0U6tNkqseRV2yFbMokSyLNUYX\\/MFvz5F37\\/p0ggqmwvI0eazlK1AsFZUQDkz0WKLv95Hbkz26J\\/P0EQSaZkKdfRRmnAEs7mF6r12e2jctFPjLg+Ke2HBRU9jAnHRuOrucLxpZtXFP4qmn2pFlsG\\/e043lgWa0Xrh8enKIbqU0fA+F7X9Yu9FvctHAXeGzZVLIQ0y4Wu5cBZAuEOF7vIbCFjHwm+j0eLYQMVOjNsg9cWa3JjEHOh0Ndqk+Y1dWDMEeTBphS6BNBajsg+yfYwVJ2NEK1pZPh6O\\/PEL8P6nsf70dplnfuU+7mZ7WoxTyQnQtEem64qqZUE7k7bfdiysSD9rlEEGNrj06r\\/TjUafj3Br7opQbGPkAu50M\\/iNv6tqLkbFgXCAP9D5SiyYb4ElK3R3+BMpRLNTH8tbkdzI1aQNgNo7ms2xwyn148eL0VcERM6GnGyvnBm70DWP2mi+SAAtbbWY+y2jM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OR\\/BILWp2vhwyUnX+n8Zo2Zw3JPiNU0ETQ\\/32RcFRkA=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1770856592,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:32.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:33'),
(3638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:33.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:33'),
(3639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:33.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:36:33'),
(3640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:36:33.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:36:34'),
(3641, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"presences\":{\"168126578716679@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:32.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:37:32'),
(3642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"presences\":{\"168126578716679@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:32.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:37:33'),
(3643, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"ACEC3B9A6825C694E820EDD32E49E9FF\"},\"pushName\":\"Meiriane\",\"message\":{\"conversation\":\"Entrei nos filmes tbm não carrega\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j9v3lUXSrt6OZaX2BC4kaKCVRUUtld179Zd6SgUBUiY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770856661,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:41.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:37:42'),
(3644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:41.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:37:42'),
(3645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:42.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:37:42'),
(3646, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"ACEC3B9A6825C694E820EDD32E49E9FF\"},\"pushName\":\"Meiriane\",\"message\":{\"conversation\":\"Entrei nos filmes tbm não carrega\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j9v3lUXSrt6OZaX2BC4kaKCVRUUtld179Zd6SgUBUiY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770856661,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:41.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:37:42'),
(3647, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:41.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:37:42'),
(3648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:42.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:37:43'),
(3649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:42.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:37:43'),
(3650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:37:42.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:37:44'),
(3651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC2A6741A4130773BD1412BF669A670B\"},\"pushName\":\"Meiriane\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634334435_1416814896714880_4863565385264426036_n.enc?ccb=11-4&oh=01_Q5Aa3wEwLulqgpoaO7U4lBGtLA1F4ALcgyinmvHA7337SP3xkw&oe=69B4AC85&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Nem os canais\",\"fileSha256\":\"ASRO6XQdJwzLk626Ey+gSkNY8M5cJ\\/HhvDMvKjgMPoY=\",\"fileLength\":\"119771\",\"height\":1599,\"width\":899,\"mediaKey\":\"ptJiAj5mtbZDE1nM5UqjiOjXvx5vbQAD9mfkrGYpKGI=\",\"fileEncSha256\":\"NNKdbMGIPHiVIqNb5YLZU1RosxUe3TjlvfwnCvdw97k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634334435_1416814896714880_4863565385264426036_n.enc?ccb=11-4&oh=01_Q5Aa3wEwLulqgpoaO7U4lBGtLA1F4ALcgyinmvHA7337SP3xkw&oe=69B4AC85&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856984\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAECBQMBAAMBAQAAAAAAAAAAAAAAAAABAgQD\\/9oADAMBAAIQAxAAAADOU3szRzSOhNLknKtRnItojRVpyo4EGa32s20ukc5F0KDCsiIGm0Zhogf\\/xAAmEAACAgEDAgYDAAAAAAAAAAABAgADERATIQQxEhQiMlFSFWGB\\/9oACAEBAAE\\/AD0d+M7ZjKQcGZZexm42Dp+TtRQOGnU2b1jP4cZmJbUExzoVrSvn3GdIPHUwKhlzz8y1aycAdz\\/ZdWAj\\/IOmTFtdOxnmXJywzGvZgwwOdNraurUmdRUgpdxiH24iMB3GZ6PiBbX9UdbQvLgicmBXPYTat+pmf2dMwMw7Gbtn3OvT0LbnM8pUJ5er6z\\/\\/xAAdEQEAAQMFAAAAAAAAAAAAAAABAgASExARMFFh\\/9oACAECAQE\\/ALJdVjUXTIMdqyRtTzg\\/\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAEREDD\\/2gAIAQMBAT8ARchHw\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"hE\\/SaX7T9eaDvLCRokarU2tnHFLr8X5H3UGiS216uvnnWuo6ldoHKA==\",\"scanLengths\":[12303,49632,19151,38685],\"midQualityFileSha256\":\"reXTrOLiZqY\\/kAlzF8MDYjt+plx8CLNMsWeS8k6tAHw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3PVt\\/hNFLyFhcbasxuebox5PrUDQx1cL59mqJ11hir0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856985,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:05.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:43:06'),
(3652, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:05.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:43:06');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3653, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:05.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:43:06'),
(3654, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC2A6741A4130773BD1412BF669A670B\"},\"pushName\":\"Meiriane\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634334435_1416814896714880_4863565385264426036_n.enc?ccb=11-4&oh=01_Q5Aa3wEwLulqgpoaO7U4lBGtLA1F4ALcgyinmvHA7337SP3xkw&oe=69B4AC85&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Nem os canais\",\"fileSha256\":\"ASRO6XQdJwzLk626Ey+gSkNY8M5cJ\\/HhvDMvKjgMPoY=\",\"fileLength\":\"119771\",\"height\":1599,\"width\":899,\"mediaKey\":\"ptJiAj5mtbZDE1nM5UqjiOjXvx5vbQAD9mfkrGYpKGI=\",\"fileEncSha256\":\"NNKdbMGIPHiVIqNb5YLZU1RosxUe3TjlvfwnCvdw97k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634334435_1416814896714880_4863565385264426036_n.enc?ccb=11-4&oh=01_Q5Aa3wEwLulqgpoaO7U4lBGtLA1F4ALcgyinmvHA7337SP3xkw&oe=69B4AC85&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770856984\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAECBQMBAAMBAQAAAAAAAAAAAAAAAAABAgQD\\/9oADAMBAAIQAxAAAADOU3szRzSOhNLknKtRnItojRVpyo4EGa32s20ukc5F0KDCsiIGm0Zhogf\\/xAAmEAACAgEDAgYDAAAAAAAAAAABAgADERATIQQxEhQiMlFSFWGB\\/9oACAEBAAE\\/AD0d+M7ZjKQcGZZexm42Dp+TtRQOGnU2b1jP4cZmJbUExzoVrSvn3GdIPHUwKhlzz8y1aycAdz\\/ZdWAj\\/IOmTFtdOxnmXJywzGvZgwwOdNraurUmdRUgpdxiH24iMB3GZ6PiBbX9UdbQvLgicmBXPYTat+pmf2dMwMw7Gbtn3OvT0LbnM8pUJ5er6z\\/\\/xAAdEQEAAQMFAAAAAAAAAAAAAAABAgASExARMFFh\\/9oACAECAQE\\/ALJdVjUXTIMdqyRtTzg\\/\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAEREDD\\/2gAIAQMBAT8ARchHw\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"hE\\/SaX7T9eaDvLCRokarU2tnHFLr8X5H3UGiS216uvnnWuo6ldoHKA==\",\"scanLengths\":[12303,49632,19151,38685],\"midQualityFileSha256\":\"reXTrOLiZqY\\/kAlzF8MDYjt+plx8CLNMsWeS8k6tAHw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3PVt\\/hNFLyFhcbasxuebox5PrUDQx1cL59mqJ11hir0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770856985,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:05.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:43:06'),
(3655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:05.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:43:06'),
(3656, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:06.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 21:43:06'),
(3657, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:05.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:43:06'),
(3658, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTHOE3UmFlwep-pE8XXkRdFB2pxv3-Gvz8BukAyvXlTQ&oe=699A19C6&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T21:43:06.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:43:06'),
(3659, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-11T21:50:13.869Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:50:14'),
(3660, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A53DC5ACA6FDD1564E1929F55AD03461\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/vt.tiktok.com\\/ZSmNGoBRF\\/\",\"matchedText\":\"https:\\/\\/vt.tiktok.com\\/ZSmNGoBRF\\/\",\"description\":\"Assiste, segue e descobre mais conteúdo popular.\",\"title\":\"Visita o TikTok para descobrir vídeos!\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHQABAQEAAwADAQAAAAAAAAAAAAgHBAUGAQIDCf\\/EADUQAAEDAwMDAgUBBgcAAAAAAAEAAgMEBREGBxITITEIQRQiMlFxFSM3QmGBs3Jzg5GhovH\\/xAAZAQEAAwEBAAAAAAAAAAAAAAAAAQIDBAX\\/xAAoEQACAgEDBAEDBQAAAAAAAAAAAQIRAwQhMQUSE0EyImHBUXGh8PH\\/2gAMAwEAAhEDEQA\\/AJqREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQHZ6astTqG901ronwsqJ+XF0xIaOLS45IBPhp9l6\\/WG0OqdK2Q3W4QRS0jXhrnU4kcWAg4ccsAA7YznyQuDs3+8i0f639l6vS8Wel1Bpma1XBrjTVUAY7j5Hghw\\/mCAR+Ft2xWLurdt\\/g8\\/Hknk6l4JTrHGMW6Sb3lJP8AhH810Wj7j7Qam0XcKvnRvrbRHykjr4Rlrox3y4eWkDyPzgkd1nCyaa5O5TjJuMXdchERQWCIiAIiIAiIgCIiAIiID7RRvlkZHExz5HkNa1oyXE+AAtW0hsbqS\\/xtkqC2iB\\/g4dR7e2fm7ho9u3LK7H00aRZe9QSXGcD9i\\/owOJ+lxaS92PuG4Az2+b+S37dPcuh21pIrdbaaF9XwDz1c8IwTgZA7uccHtkY8lbqMMcFKatvhHn4Mes6trJ6XRtQhD5S25q3V\\/Skk1bd7ukic7Bo+r0RvdQWitkEpi6nGXAbyzTF3gE4xzA8qrNy9YS6G0hS3iOlZVMZKxksLncS5nTe48T7H5R3wVL1s1m7XO81ou00IhqH9bqNYziztTlowC4nwz3K3b1L\\/ALpG\\/wCa3+zIok7wp\\/d\\/g9DR6TDDr7wKXkj4sdv9XU+7hJfK+EjiVW+GjdU6JvFOypmo6+oo5oWUtTH8xe6MgYLcjGTjJwo6vPH9WrOGOPVdjHjyuGixO3JqoS06wQhW9t39q2\\/1hERDiCIiAIiIAiIgCIiAIiICk\\/R1dqVlwulqlGKp2Zo8+4IaDj8cP+wXZeqnb+\\/XW4Q3+y0cldRiMNqI4MukjcBgO4e7cY7jPvkDyZv0tf7hpe\\/Ul3s83RrKZ\\/Jp8hw92uHuCOxCsTQvqC0lf6CNl7lfaLlxAkhkjc+N7vfg5oOR+QFeUu6r9EaHDmxSzQwb+T173rauXuk9v24RhGyGgL4\\/V1LcquimpY4Q9sTJW8XyPc0t+k9w0BxJJ+35xt\\/qkuFPS6AgtbpGmokc6QN9+LY3Nz\\/UuA\\/8K7e+7xaMsdM+a1cKyd2SelH0G57fW9wHnPkAqU90NfVusrrNNUTukDz3x2Y1oOQxg9mj\\/k9znuTOTJFxUILZHf0npGfpubJ1PqbqTVRjVN13UknvVtuUnS9I8GiIszhCIiAIiIAiIgCIiAIiIDlUVtrq9rzQ0VTUhnZxhic\\/j+cBfvLYrvDE+WW117I2Auc91O8BoHkk47Be42e3PvWgqiWhs9LbpoblURdY1Ub3Obg4+Xi9uPqPnK3P1Sbg3jTog0zbo6P4K80T21EsjHmVoLuJDSHAYI7HIPkoCTYLbXVEoip6KpllLBKGMic4lh8OwB47juuPLG+KR8crHMkYS1zXDBaR5BCunT1FfafeG3T6iqrXUPk05URQ\\/AUroeLWVFOTyLnOJyX9hnA9h3Ocb1dtdYrK3VWrdyrhW0bay5VL7Zb6CWNs04MjiCeTXfVkHAHyjuT3wAMHprNdKuBs1Lbq2aF2eMkcDnNODjsQPulVZrnSQOmqrbWwwtxykkgc1oycDJI+6oX0y7mXWW+WbQkdJQssbG1L45HNe6pA\\/aSgF\\/INPc4zwHZd1uBJf9190K7bqQUlJp601UdXNVRRO6\\/ER+CSS3J6jgOw\\/rjBlK3RSc1CPcyUVyKahq6uOWSlpZ5o4hmR0cZcGD7kjx4P+ypNm2W0F31DV6Qs99uUepIg+Nr3PLm9VgPJvdga4jHcAj3wexx++xuma+wWbd3T88ZnroacU7RCC7qu6dQBxHk59lBsoNw71wiXUWw602007t7oaB+sLjWy62rmOkprbQys6ULfAMpLCSGnOSCORy1vYF6x5CgREQBERAEREAREQHMsz2x3ihfI4NY2eMuc44AHIdytv9V99tF81bp6ay3WguMMVKWyPpKhkzWHqZwS0nBWCIgLpl1xpM7mWWqGp7F8NHZKuJ836hFwa901KQ0u5YBIa4geflP2Wd1etNPbqUGsdJ6vudpoKmjq5pbJdJZ444nMEhDMPIx7Mzgkva448ZUtIgNT9PdZQ6f3loZLvcaGlpacVMb6qSoY2HPTc0EPJ4kE+DnvkL31u3Ps+lfURqm4TVkVTYLn043VVKRMwFsbOLgWnuAeQOM\\/j3E3IpTp2Z5cayR7X\\/adoqnT+m9qtF6yOtKbXVHLBA6Samt0NQyR0ZeCOOAS9wAcQAQD4yTg5+dst07dUXTdDUlVcKCiqKhsUlugr5mRumEUcwjbx5AuOAwENPv591KqKDdTqDivfJRV+v8AZN5NqI575dLTbNd2YuEfxNQymFW0jOG83BuHgD\\/C9v8AC13edURCgREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQBERAEREAREQBERAf\\/2Q==\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/541818964_799341519108620_6361451980539156854_n.enc?ccb=11-4&oh=01_Q5Aa3wHiJqm0NJx7QguaJH9R2XCrkew5RnlKiRjKK4V2zZSa7A&oe=69B4A622&_nc_sid=5e03e0\",\"thumbnailSha256\":\"WNf12c+kzDmQbhU2x9dMuXSMS2ZdcFLvejXOHdKI+oo=\",\"thumbnailEncSha256\":\"WtkpPVHmYJXTtHqXo3QlOrxD9h6uZW1zXkjNxpijWHc=\",\"mediaKey\":\"KAQDu0OIwIULBwbO6Lq+6Y3Nllo\\/+addrQwmh\\/NwzKQ=\",\"mediaKeyTimestamp\":\"1770857281\",\"thumbnailHeight\":928,\"thumbnailWidth\":928,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ulNUSKOtRgkQmGMlzWKT1xcRy4vQddnsNGw1vMlVQfE=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770857413,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-11T21:50:13.871Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:50:14'),
(3661, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTcbaqw6SMILFscqMfi3e2YXF7tLiSERkCMbZVtq_Wng&oe=699A4672&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-11T21:50:14.038Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:50:14'),
(3662, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTcbaqw6SMILFscqMfi3e2YXF7tLiSERkCMbZVtq_Wng&oe=699A4672&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-11T21:50:14.044Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 21:50:14'),
(3663, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:39.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:40'),
(3664, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:39.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:40'),
(3665, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:41.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:41'),
(3666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:41.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:41'),
(3667, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A58C1E23404234881C2\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Fala irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H+Fy0dtZdEebEifUh8iBvmD0rw3KyfPhbvhluEboIhk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861221,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:41.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:42'),
(3668, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:41.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:42'),
(3669, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A58C1E23404234881C2\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Fala irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H+Fy0dtZdEebEifUh8iBvmD0rw3KyfPhbvhluEboIhk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861221,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:41.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:42'),
(3670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:41.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:42'),
(3671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:42.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:42'),
(3672, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:42.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:42'),
(3673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:43'),
(3674, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACDEFBDF29F8C5E448B\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"v\\/\\/xgk9PXvnBtbGN4LOlqvlZ8VJ5zrGIO8ISCKCJUkc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861222,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:43'),
(3675, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:43'),
(3676, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACDEFBDF29F8C5E448B\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"v\\/\\/xgk9PXvnBtbGN4LOlqvlZ8VJ5zrGIO8ISCKCJUkc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861222,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:43'),
(3677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:43'),
(3678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:44'),
(3679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:44'),
(3680, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:43.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:44'),
(3681, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:44.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:44'),
(3682, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:44.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:44'),
(3683, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A5633B7F77CD1F6CD959306D52BDDE91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770861224,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:44.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:45'),
(3684, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:45.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:45'),
(3685, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A5633B7F77CD1F6CD959306D52BDDE91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770861224,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:44.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:45'),
(3686, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:45.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:45'),
(3687, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5633B7F77CD1F6CD959306D52BDDE91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770861225263,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:45.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:45'),
(3688, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5633B7F77CD1F6CD959306D52BDDE91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770861225263,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:45.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:46'),
(3689, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:47'),
(3690, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A88B5908DD4253E958D\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Sei que está fora de horário\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j2S6V8gRHQI9h4dogw4EPwhJeDklsIj30BMXIl5k6rw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861227,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:47'),
(3691, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:47'),
(3692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A88B5908DD4253E958D\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Sei que está fora de horário\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j2S6V8gRHQI9h4dogw4EPwhJeDklsIj30BMXIl5k6rw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861227,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:47'),
(3693, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:47'),
(3694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:48'),
(3695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:48'),
(3696, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:47.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:49'),
(3697, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:50.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:50'),
(3698, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:50.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:50'),
(3699, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:55.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:55'),
(3700, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ADB36805A53A5D8AF04\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Mas a tv da minha coroa tá off.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1oNGI1e4VtiI1F0HWuNk6mTSWR1xF5xnU4OPl4GArBk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861235,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:55.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:55'),
(3701, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:55.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:56'),
(3702, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:55.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:56'),
(3703, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ADB36805A53A5D8AF04\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Mas a tv da minha coroa tá off.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1oNGI1e4VtiI1F0HWuNk6mTSWR1xF5xnU4OPl4GArBk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861235,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:55.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:56'),
(3704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:55.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:56'),
(3705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:56.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:53:56'),
(3706, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:53:56.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:53:57'),
(3707, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:00.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:00'),
(3708, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:00.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:00'),
(3709, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:10.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:10'),
(3710, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:10.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:10'),
(3711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:17.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:17'),
(3712, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A650A54DC86996CF654\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Se não rolar hoje, pode ser amanhã de manhã mesmos\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hSlwoQ3LvVmaEb9YIL4hYrT+\\/T0PIpnmvJ4mJcs5v6U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861257,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:17.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:17'),
(3713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:17.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:17'),
(3714, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:17.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:17'),
(3715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:17.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A650A54DC86996CF654\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Se não rolar hoje, pode ser amanhã de manhã mesmos\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hSlwoQ3LvVmaEb9YIL4hYrT+\\/T0PIpnmvJ4mJcs5v6U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861257,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:17.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:18'),
(3717, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:18.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:18'),
(3718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:18.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:18'),
(3719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1071EEBB7F2B9F424C\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NZjlqNuba7wc0MIVHKhhe5Zzn863Q+ieAdASPaKmSrI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861259,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:19.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:20'),
(3720, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:19.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:20'),
(3721, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:19.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:20'),
(3722, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1071EEBB7F2B9F424C\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NZjlqNuba7wc0MIVHKhhe5Zzn863Q+ieAdASPaKmSrI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861259,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:19.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:20'),
(3723, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:20.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:20'),
(3724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:20.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:21'),
(3725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:20.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:21'),
(3726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFerd2HHkzkXBwrgL2xmWw2ZkVEM3pSp5nDCubA-ZlSYg&oe=699A564B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:20.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:21'),
(3727, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:22.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 22:54:22'),
(3728, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T22:54:22.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 22:54:22'),
(3729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:23.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:23'),
(3730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:23.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:23'),
(3731, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:25.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:25'),
(3732, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:25.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:25'),
(3733, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:25.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:26'),
(3734, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:25.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:26'),
(3735, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:26.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:26'),
(3736, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:26.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:26'),
(3737, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:28'),
(3738, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:28'),
(3739, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"ACFF0BFD27695E26CA6622EE92550071\"},\"pushName\":\"Edmilson\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tt\\/RKWEBkAvCUSW36C1QnUaWeXtLA3sCSSEVQ9+BobE=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770861928,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:28'),
(3740, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:28'),
(3741, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:28'),
(3742, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"ACFF0BFD27695E26CA6622EE92550071\"},\"pushName\":\"Edmilson\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tt\\/RKWEBkAvCUSW36C1QnUaWeXtLA3sCSSEVQ9+BobE=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770861928,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:29'),
(3743, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:29'),
(3744, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:29'),
(3745, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:29'),
(3746, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:28.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:29'),
(3747, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:32'),
(3748, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":true,\"id\":\"A562D6FD27C55541626933AAE8B3369F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770861931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:32'),
(3749, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:32'),
(3750, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":true,\"id\":\"A562D6FD27C55541626933AAE8B3369F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770861931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:32'),
(3751, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"76403307491437@lid\",\"id\":\"A562D6FD27C55541626933AAE8B3369F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770861932530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:32'),
(3752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:33'),
(3753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:33'),
(3754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"76403307491437@lid\",\"id\":\"A562D6FD27C55541626933AAE8B3369F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770861932530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:32.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:33'),
(3755, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"AC000344957F3EB92363D7E39AFE5C70\"},\"pushName\":\"Edmilson\",\"message\":{\"conversation\":\"Parou de funcionar o app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4e8tqYIvm8MdS1Vwa5ApRd1qbaxjyUgkNzXa5\\/LiGL8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:35.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:35'),
(3756, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:35.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:35'),
(3757, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"AC000344957F3EB92363D7E39AFE5C70\"},\"pushName\":\"Edmilson\",\"message\":{\"conversation\":\"Parou de funcionar o app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4e8tqYIvm8MdS1Vwa5ApRd1qbaxjyUgkNzXa5\\/LiGL8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770861935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:35.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:35'),
(3758, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:35.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:35'),
(3759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:35.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:35'),
(3760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:36.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:36'),
(3761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:36.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:36'),
(3762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:35.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:36'),
(3763, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:51.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:52'),
(3764, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"AC214DF7B34CD243C26806EF7FA3E1E1\"},\"pushName\":\"Edmilson\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633885399_2746685382359126_2962106324806474597_n.enc?ccb=11-4&oh=01_Q5Aa3wFfdbKpg28_KuBHHxTx2EppYMZpFgDEi6uetUegfZqGfA&oe=69B4B53B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"fF8w3tTNr2Qcc8fB3jkR7bXTqMAJtnbx174pWnMdg8c=\",\"fileLength\":\"67150\",\"height\":1599,\"width\":899,\"mediaKey\":\"4qqtWvOMeATEoytKJDmT4eGY4bNIRbXHTzmo2uWwz+Y=\",\"fileEncSha256\":\"3ssQu4Ee9yExJKLmh5cU3H\\/pJpKE+xXYBccQrAFBAq4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633885399_2746685382359126_2962106324806474597_n.enc?ccb=11-4&oh=01_Q5Aa3wFfdbKpg28_KuBHHxTx2EppYMZpFgDEi6uetUegfZqGfA&oe=69B4B53B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770861950\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAAAwECBQQGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPOkhAAAGyp6rIsttlC4P1MMm+rtyG3FSRM1vATemzIk1DLE\\/8QAIxAAAQQBAgcBAAAAAAAAAAAAAQACAxEEEhMQFCAiMVFSIf\\/aAAgBAQABPwDpo+lR9dEb4mXriDkdJs1X6hHCSFtRg0ACtmL5U8DoTRQikc0uDCQgFRHkcMifdKblQR4rQCPCxBHJk29Z8kRDWgDgbK1dpbSbYNp2kkEAqlzT\\/QTM3TfYCjmRnTTKTsuEjtFFczH9dX\\/\\/xAAYEQEAAwEAAAAAAAAAAAAAAAABAhARIP\\/aAAgBAgEBPwCxJGjZHDr\\/xAAbEQABBAMAAAAAAAAAAAAAAAABAAIQERIgMf\\/aAAgBAwEBPwCSCOiXvzN60v\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"p7iHJgDswxj4uxh0qC2TPDopJnhDyvBbXTf80T2YXf2\\/HYIs3myEOA==\",\"scanLengths\":[9238,28020,8181,21711],\"midQualityFileSha256\":\"5lextL17hGuIgVebP53JU06GyI0cX7gJQsPnScZtyCk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"so7O+CQ4bs7rEaOfEH0KbWZ1qkRzOo+cHe3XHMv1s9g=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770861951,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:51.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:52'),
(3765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:51.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:52'),
(3766, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"AC214DF7B34CD243C26806EF7FA3E1E1\"},\"pushName\":\"Edmilson\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633885399_2746685382359126_2962106324806474597_n.enc?ccb=11-4&oh=01_Q5Aa3wFfdbKpg28_KuBHHxTx2EppYMZpFgDEi6uetUegfZqGfA&oe=69B4B53B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"fF8w3tTNr2Qcc8fB3jkR7bXTqMAJtnbx174pWnMdg8c=\",\"fileLength\":\"67150\",\"height\":1599,\"width\":899,\"mediaKey\":\"4qqtWvOMeATEoytKJDmT4eGY4bNIRbXHTzmo2uWwz+Y=\",\"fileEncSha256\":\"3ssQu4Ee9yExJKLmh5cU3H\\/pJpKE+xXYBccQrAFBAq4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633885399_2746685382359126_2962106324806474597_n.enc?ccb=11-4&oh=01_Q5Aa3wFfdbKpg28_KuBHHxTx2EppYMZpFgDEi6uetUegfZqGfA&oe=69B4B53B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770861950\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAAAwECBQQGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPOkhAAAGyp6rIsttlC4P1MMm+rtyG3FSRM1vATemzIk1DLE\\/8QAIxAAAQQBAgcBAAAAAAAAAAAAAQACAxEEEhMQFCAiMVFSIf\\/aAAgBAQABPwDpo+lR9dEb4mXriDkdJs1X6hHCSFtRg0ACtmL5U8DoTRQikc0uDCQgFRHkcMifdKblQR4rQCPCxBHJk29Z8kRDWgDgbK1dpbSbYNp2kkEAqlzT\\/QTM3TfYCjmRnTTKTsuEjtFFczH9dX\\/\\/xAAYEQEAAwEAAAAAAAAAAAAAAAABAhARIP\\/aAAgBAgEBPwCxJGjZHDr\\/xAAbEQABBAMAAAAAAAAAAAAAAAABAAIQERIgMf\\/aAAgBAwEBPwCSCOiXvzN60v\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"p7iHJgDswxj4uxh0qC2TPDopJnhDyvBbXTf80T2YXf2\\/HYIs3myEOA==\",\"scanLengths\":[9238,28020,8181,21711],\"midQualityFileSha256\":\"5lextL17hGuIgVebP53JU06GyI0cX7gJQsPnScZtyCk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"so7O+CQ4bs7rEaOfEH0KbWZ1qkRzOo+cHe3XHMv1s9g=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770861951,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:51.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:52'),
(3767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:52.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:52'),
(3768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:52.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:05:53'),
(3769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:52.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:53'),
(3770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:05:52.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:05:53'),
(3771, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:44.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:06:45'),
(3772, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:44.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:06:45'),
(3773, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:55.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:06:56'),
(3774, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"presences\":{\"76403307491437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:55.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:06:56'),
(3775, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:58.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:06:58'),
(3776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"AC028088BDBD56F5FB85447820A610D3\"},\"pushName\":\"Edmilson\",\"message\":{\"conversation\":\"Ta a msg que expirou a playlist\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vkCAKpBZUiAm7IZDkYNojAwJi0NeWdxHH67tNoXhPvg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770862018,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:58.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:06:58'),
(3777, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:58.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:06:58'),
(3778, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":false,\"id\":\"AC028088BDBD56F5FB85447820A610D3\"},\"pushName\":\"Edmilson\",\"message\":{\"conversation\":\"Ta a msg que expirou a playlist\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770756899\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vkCAKpBZUiAm7IZDkYNojAwJi0NeWdxHH67tNoXhPvg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770862018,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:58.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:06:59'),
(3779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:58.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:06:59'),
(3780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:58.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:06:59'),
(3781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:59.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-11 23:06:59'),
(3782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuWEEiL1sWQ2eJgyhluSOniIr8GVFUAagI0H3mb_3DvA&oe=699A44DB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-11T23:06:59.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-11 23:06:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3783, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFIi0X9SXU9n00mSTA9UFyUveIe7rc-3IXz9GHTLLZ5Q&oe=699A615F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcKmJauIg9A_aUhmiBwwqJJaqPcUxOeuQwJbsbKOLfbA&oe=699A2EDB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0nxNtmI1LvfloxJ6b64YvPecat02ba0cg8TUm2-v0YQ&oe=699A4EE6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo1wNDteq7_KUYTRfMyLxIjKw179rnc7Jpo05Mx6P9ZQ&oe=699A4919&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpfnwJ3D_A3n4UWaUgH_kOGqOBHYVXrOK_snzqaJXXQ&oe=699A5377&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wENBSzWYoTlTwLSOVlPkzzN16Y9vTHAp0dbgi5W_5JrYA&oe=699A2F68&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEVfbLNGlzcGupNjzceAOt1rAJY6O2Rju5LK5E68W5rg&oe=699A3800&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXj0tQunXp3Zh5f3VzOirLSd_2qL8ptZ2wZhMR7GFDvQ&oe=699A5183&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO_GcbVs7RmQ5B2jdyymiVgDMKZSb1N0HsIw9dVRwZuQ&oe=699A385C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZAH4h3EiWdMdRS8zvd38MgxnIFRaf7UuKAm7vewSgqw&oe=699A4895&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWkgWPWYSjekntu1tpGAieu_w8TPFYEAjw8nYkB3S9RA&oe=699A3695&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8iwXb-QrfFIBQ1Td0bZUUbWDCqxQ-FbeGciAM7zC9Jg&oe=699A4416&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr6g_dqE-YXRVIOY-YrSXOaLu0JMYESQkRXISIyi4BLQ&oe=699A3ECB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbh6TXMxT_WGsaamXAOxQiAZaIMMdlZDwDPtnrC4WO2w&oe=699A41C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wEBt7w3siyGyj6n9uYTBpC4gmA75rNMInw02hvzGynCaw&oe=699A3F62&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHaaPEu7cMankT3vfzSnemUAM0PzCa0rLtawDIuNQ_efA&oe=699A43CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wE08XS20MJP28wl8t1-jsZY8AtFsaMkinee89SxGOf3mw&oe=699A3C7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDnlN7cp1fLfsj3ed5R9BcBFzujJnYoycV8n6FSpc4pg&oe=699A3E1C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFae2JIIRBExH1cjXgHvRci75nAi5sKSBmJZeOk7CiJg&oe=699A6178&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wELprpA-P-AAwsBGKFIQh0kD6mAidZFl_lhpij3x-PiiA&oe=699A3D89&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wETQes0GL03EISFlCsWrJgC6AyEBm24NcfqazI6QkMH5A&oe=699A5C0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiw5VFJ7VfeMN_RZ_JxFYiQxPrJk340aTgD6vw-PU6fg&oe=699A3D98&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY-Kcv08doh1CxNk9JCxrJQIoQgyZ_8lBx3QH1kKWcBg&oe=699A3216&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wE40RLpC7bIaWv76dnO_H57HJRjWAxTqm45jz7Mj0BVzg&oe=699A50DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrRYgRhYDyIP-7FIgd6_HOA0lZnkaqw9TXhkAIVTTK7g&oe=699A5476&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wECn_KszICKj5CzgmZClLICXh1Sxwbw0UFYCnFtYbm7tA&oe=699A2D6F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wER5IYF7vwT78tA20CVBLhB0KhtLL3XWTe3eZ61hXfoTQ&oe=699A33EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wELV9OL62kwWZxff0uMRwpON-J9-C1IHKwYH-XVkrAc3g&oe=699A630D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg9O3HFf6zi2uFLiHfW2vL36oqC_69ccGzT9KxglH2Uw&oe=699A40E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9sikK376AuKoolnAJooszMSPkw_obUf4JLCZgulOObQ&oe=699A2FFB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjN3ESfhXwrliptcdqIuDGe6FUUk4S8CnlQQfyRNDpsA&oe=699A4942&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2mT6JGT16MfX4uJcPpP4VBi-NCQFz5fY6LCKEFr9iYQ&oe=699A2E95&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8vbGQC6yqCu563pY7OMn1M_UKJRKEu_2OcqI_K4htIA&oe=699A364C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaBi7pkbtrZrxcut54-j4sXNDc0ODcWPRCYPZjfu4PWQ&oe=699A4DDA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTE13WhyP2_zXWBeG00D4YhebKC3rt74dy7cGtrFXUTg&oe=699A3FAF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHez0RIqiBcL3MdtxVYBmrF15-iCIMMpK3ujEu7hIugOg&oe=699A43E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrEDCZ0Q4ew6bvzZbQZtIOCRh1bqpHjXnVd3mQr2bMzA&oe=699A5C50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4ofRANqLXEpx9TcUNQPgBgy1MG2_CSfJ0KDS2PGA6sg&oe=699A322A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqzMZ0GbrjO125CECqmgp_o5Kqx_YFzETNY8H4SmarjA&oe=699A2C7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ_GoKMJd1QH4TnH4rrTFNfKgzEs_zGbgiHoqGVHAwWw&oe=699A35E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0a8PNTWR9iJgJ1_9xwp3rYhu9sW8DswGu8lJHCKppWA&oe=699A396B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNIrlJYT3JP9gXvcufgmSmdG3sQxDkJc59WfG-oJzkuQ&oe=699A42A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyMkrnAutjVwHtEENRUkeNi9nIscS19Jgq4ijfGif1DQ&oe=699A6085&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wENjKWY_ULFEnk9z5wxFP2su2Bd4FGk9ENgEIJ8Yw4elg&oe=699A362D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK9ohoDBbnaL6rZ8pVYsLJDgBuKujRyJo0ULMm8qk_ug&oe=699A4E92&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyH0NwFcr1GBqf2mr6_fRcDkniWJgjLwr97D2eVPZS8Q&oe=699A2C15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFi5-NY2wFXYQeCC2lqE37rSpYoxsqjpbVyvt1LEQ580g&oe=699A4811&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7BBKfMbeFHAV9UdLfqfsEvAGuAe3ehuMBWQz-qaSU3Q&oe=699A4E39&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wETQQkzkXDGWobiMpQzRpHtc2El8Eobj36aMwPzdMnysQ&oe=699A61F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFVM0P3S12ZQhzQVo0rf11I9uYFYYJH0rnIr4WSENUdg&oe=699A4202&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHi1jJx_U6P1bL05fQ-XphdkF4yCC3BtvSp5Bm8GDsPw&oe=699A3225&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUxXDYhCu7li344hutVVD_1hWK1oRnOHncz5tkHh-xPw&oe=699A378A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXtvl9uGS6Ii97BR3A1Hd0-Osk-ovpe5hL0F13OWrx0Q&oe=699A37FA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGjweR95o0D5gJkyKd-8nqroZq28ExuKNDRXTcas-UaA&oe=699A58EE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo7BuBU1vnGvdPGeVuzT6Bt0cwxecPfrRJoczUOAin7A&oe=699A57EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe_OZjFTp3HiIrIig-zOwO-28l_AHiWJ-t579VLDrZjw&oe=699A3115&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2LG_oEljpuNnTrBJucgjAfjKeI6pYFDNloXks8jBofQ&oe=699A5EAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbSXI6X9vPLtv1snVjKdyoyK8IbpA1GAM-1D5IGwgmYQ&oe=699A5158&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUgeLHJSz4ie4bWBPbcocU9pOTUWZR82qeh3xbv-6lQ&oe=699A2E13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFboSnuobrXuEQYnRD2l34LB8Fdyyxs3_x9QEfz2Ld9Vw&oe=699A5079&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9jmOBXMCpjUQJxzK4gCQNddLJNNEi7yIBicosNj1oxQ&oe=699A4306&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ1i-Rqw98LGh8NBi7HLpKOukkg1lYoKbYVipMc3yqOA&oe=699A50A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEoIpNFImJY5ob5uzH1qAHj51Ik8gWTnetfVJE-zblDww&oe=699A3038&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5sP19tFACjRFlWqkGFYge-k5JTXAT-6QbD2BEz9vQGA&oe=699A4D38&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXCfOCzO3Cjvza1GASlvzzRYMzkcj_G2K0SwMieEYxbw&oe=699A5C00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOmY85aVAu1-x0Ri_8jRJCJ6zGTOqJi-UMZmBjCliGIg&oe=699A48CF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp3nN9XFMGw6fLqCw_25A0VFx2gdldH9MQDFi6KkpNfQ&oe=699A3BFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIZeIo48v0RZRaAZRvGrUvQnqnUXYqG4CBy9mtM4k7ew&oe=699A3F82&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG95bXsnxO5QrlLMEZm5-bQZIBLQtDxUtjE9MoF1je0Pg&oe=699A2CCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMchvs75FPyDMCCZr1ZxwTIw-MstQ0z7bpJSPaG4hinQ&oe=699A33B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHze8r8nCHOf0nOq5ORa56AJAnd2HCILzFFyytk7W-Kgg&oe=699A5192&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWxX96OSyEnnZ_3TMYIDf2CpXVMnxIaAUaSP4P7jJuRQ&oe=699A44D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ4VMEt7cNrIdEfo_lu2lFQU3heQ68brW6dcuQYonlrQ&oe=699A38BC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdIDUlS5oJSNhF73vcV_6skj30zWeVrqmdDekkVV2U2w&oe=699A3BF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiYdg588wcaeA6_-qGSZESU1cKN38zfQUN7UP8OwqIxA&oe=699A366F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJTB-fwnxUVfdwe11EWjs3WHUD6hxacVqvnHdHY2cvvQ&oe=699A633C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyzX1vPVfCMgb1HXezQCKF-S5I8P3Y8wo-sAhAjf0dPQ&oe=699A449A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ1XTKMxT_8S3ahH7IptfRJ_Hm5DUV8o1I2hD1OjIw2w&oe=699A2FD0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wGa98uvchB2TEhOzJfv0xwPcYxK7KiyNIB4F2v0ebmTRQ&oe=699A4BC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-uxC5bYFmOCHHhuemYMkeYcpMbSsfS_cbbOE77VhCbg&oe=699A36EE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtwfJu3e84eV4B68YZ4Aq8HEe5Vcvvy7lMZuVvXwj_lA&oe=699A52FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKtDIcTSYkWg1gNS_xqN0dVSxoF_OlmmijqjyopE8zUQ&oe=699A4115&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPQ8CxH8dfsq5eAJdPSQaDT9DGeEhly0TdzzZ1gp-MHw&oe=699A4E0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEilCOc2k1Bfo0IVOiRyyCcVDVcixKKMb0FNmlj3DZl1A&oe=699A6375&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdCmCuf3BeMPPUfzRl35PrANxijPi4AF7ivskncmPdzg&oe=699A38C4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6PUN9usqXjPHdxhjY8OlkKEddeiarAy2hG6pGqBKtg&oe=699A447D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wENPatpIttG_KVzj1DDnHNOBnh6QQ_DXibXIi_YaA2lHA&oe=699A48A5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-55LiWX8uwzzEATuHtfTwQ9uuBKSu_Gg_VD4eXXTwRg&oe=699A603F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcpv6xFwxtmIy2cXCxG94y0mjnI8urIm8pD7Ynsw8T8g&oe=699A4542&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZcZmG_nlYIkuRLZn81H2hM8yNPnmamgvDEbx4i7BCpA&oe=699A33E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXRhOnV_Ohe4GRzymcvuJcxRTBVFZFqqkAhWHfQ11trw&oe=699A2F07&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaZ6c5A4zZcJmm6hoBHpBubH7BnC87J6ad8J-bKFInuQ&oe=699A54A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVoW31xCE9BWj_iiobKwiaOkJg_EAKAxYtSU39G7dQRQ&oe=699A3FC0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRSsITB8NNBNEgqDRGcf37JMmTkn-cG3oToamKJ-wrFA&oe=699A575D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wSgtzX2G7Pv-IJbwRviZ2h_emy_WKFpHWfM19t8gAA&oe=699A5F47&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKLFUcFXzZmfIC6-OzYNaTadJDunl3sjNeEYZG2PttNg&oe=699A5AE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1efCvFpqeqOOgPNd6aRXwdJZ5qcMe6vaRYwSxGqAwcw&oe=699A3308&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0mtVDPTaWSR02rvchOfKsM8Y-rawf3rYSfksR4__jhw&oe=699A2F51&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWqtz9X1wPdMWY3jx68o_jZJG_tijVtb07ZOOFZ45hHA&oe=699A411C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQlyIxJwt2oQ0OoB1kruMZ5HFBqUkHfR7WmWqSMtHU4w&oe=699A5B36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9G8gTjYM-I8aso8LQOyl-otXJavNovq_rseHdQ8wbNw&oe=699A3F54&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFG7xQfyKhx4p4a_iFmqqu0cAGit-HWv-Q_d5HC8BkbeA&oe=699A6257&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsDPRZQYxqcfb3ZkC2XNSRdLV1tRxygMtWJE_d3H7JNA&oe=699A51BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVH1OUL82E0bk288Y6Ha53jU5cFsQLrvTIxpY75tlbzg&oe=699A59AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYSLx6wIMnFvLmSR8EYRmGKQuY9R9OLEacuX43lSzRLg&oe=699A3CDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqqiHU41J8tma4RrMY9Rj_4YQQOtVmeuK4fF8Iw058Tw&oe=699A39B6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZoV8gkSwAkbgG8sZ2IpHOywpaMXZRxDXURINfNb7Ykw&oe=699A41DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8l62UqaHEUQfz4VePu_kVD4VWfR7EHjzTqNXVwovcmA&oe=699A5E87&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN5gYtMK5rZt-S7DaOqyol0DT4XXuElz_tOwXo0DXh3g&oe=699A3B8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL2P3ZypFmVpYzR8PRNS3eY-YCPB5NNfL1dxuL2Rla1A&oe=699A4037&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbE7VNY9-UbHUghGVRPWoaiAra0704TawwGXPsrBUuaw&oe=699A5B60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNZr_EVPJZX2OSrw0039UBnErbRMR1NoyJPgEJ880Z4g&oe=699A508B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyYBFTqynW8ZsuWeDL72yajqZ7YY1TUEANmQQ8W3GtYw&oe=699A5F20&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXLVUFgszL8WONAgeHq3HZTi67-XfZIBxyZZ5zxsy6gw&oe=699A3392&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEooAotmE2pal1Az38ftu7HJ4EN2vG3LnyjBQk5owcr7g&oe=699A33A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE0c_dakUVgqee0e4sGrbHVtCqXjrk8GY3oQGPZMKuxw&oe=699A4285&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmn4E_VoMofWhiwa8PWIOw9sylaO7LUYq-zjA4LmtrtQ&oe=699A2F63&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcG-1ET06cGuLRPkNAuwohgFA9019obp29DKiLm1RsxA&oe=699A42F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 0, '2026-02-11 23:31:30');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3784, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFIi0X9SXU9n00mSTA9UFyUveIe7rc-3IXz9GHTLLZ5Q&oe=699A615F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcKmJauIg9A_aUhmiBwwqJJaqPcUxOeuQwJbsbKOLfbA&oe=699A2EDB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0nxNtmI1LvfloxJ6b64YvPecat02ba0cg8TUm2-v0YQ&oe=699A4EE6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo1wNDteq7_KUYTRfMyLxIjKw179rnc7Jpo05Mx6P9ZQ&oe=699A4919&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpfnwJ3D_A3n4UWaUgH_kOGqOBHYVXrOK_snzqaJXXQ&oe=699A5377&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wENBSzWYoTlTwLSOVlPkzzN16Y9vTHAp0dbgi5W_5JrYA&oe=699A2F68&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEVfbLNGlzcGupNjzceAOt1rAJY6O2Rju5LK5E68W5rg&oe=699A3800&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXj0tQunXp3Zh5f3VzOirLSd_2qL8ptZ2wZhMR7GFDvQ&oe=699A5183&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO_GcbVs7RmQ5B2jdyymiVgDMKZSb1N0HsIw9dVRwZuQ&oe=699A385C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZAH4h3EiWdMdRS8zvd38MgxnIFRaf7UuKAm7vewSgqw&oe=699A4895&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWkgWPWYSjekntu1tpGAieu_w8TPFYEAjw8nYkB3S9RA&oe=699A3695&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8iwXb-QrfFIBQ1Td0bZUUbWDCqxQ-FbeGciAM7zC9Jg&oe=699A4416&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr6g_dqE-YXRVIOY-YrSXOaLu0JMYESQkRXISIyi4BLQ&oe=699A3ECB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbh6TXMxT_WGsaamXAOxQiAZaIMMdlZDwDPtnrC4WO2w&oe=699A41C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wEBt7w3siyGyj6n9uYTBpC4gmA75rNMInw02hvzGynCaw&oe=699A3F62&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHaaPEu7cMankT3vfzSnemUAM0PzCa0rLtawDIuNQ_efA&oe=699A43CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wE08XS20MJP28wl8t1-jsZY8AtFsaMkinee89SxGOf3mw&oe=699A3C7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDnlN7cp1fLfsj3ed5R9BcBFzujJnYoycV8n6FSpc4pg&oe=699A3E1C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFae2JIIRBExH1cjXgHvRci75nAi5sKSBmJZeOk7CiJg&oe=699A6178&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wELprpA-P-AAwsBGKFIQh0kD6mAidZFl_lhpij3x-PiiA&oe=699A3D89&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wETQes0GL03EISFlCsWrJgC6AyEBm24NcfqazI6QkMH5A&oe=699A5C0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiw5VFJ7VfeMN_RZ_JxFYiQxPrJk340aTgD6vw-PU6fg&oe=699A3D98&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY-Kcv08doh1CxNk9JCxrJQIoQgyZ_8lBx3QH1kKWcBg&oe=699A3216&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wE40RLpC7bIaWv76dnO_H57HJRjWAxTqm45jz7Mj0BVzg&oe=699A50DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrRYgRhYDyIP-7FIgd6_HOA0lZnkaqw9TXhkAIVTTK7g&oe=699A5476&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wECn_KszICKj5CzgmZClLICXh1Sxwbw0UFYCnFtYbm7tA&oe=699A2D6F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wER5IYF7vwT78tA20CVBLhB0KhtLL3XWTe3eZ61hXfoTQ&oe=699A33EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wELV9OL62kwWZxff0uMRwpON-J9-C1IHKwYH-XVkrAc3g&oe=699A630D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg9O3HFf6zi2uFLiHfW2vL36oqC_69ccGzT9KxglH2Uw&oe=699A40E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9sikK376AuKoolnAJooszMSPkw_obUf4JLCZgulOObQ&oe=699A2FFB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjN3ESfhXwrliptcdqIuDGe6FUUk4S8CnlQQfyRNDpsA&oe=699A4942&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2mT6JGT16MfX4uJcPpP4VBi-NCQFz5fY6LCKEFr9iYQ&oe=699A2E95&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8vbGQC6yqCu563pY7OMn1M_UKJRKEu_2OcqI_K4htIA&oe=699A364C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaBi7pkbtrZrxcut54-j4sXNDc0ODcWPRCYPZjfu4PWQ&oe=699A4DDA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTE13WhyP2_zXWBeG00D4YhebKC3rt74dy7cGtrFXUTg&oe=699A3FAF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHez0RIqiBcL3MdtxVYBmrF15-iCIMMpK3ujEu7hIugOg&oe=699A43E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrEDCZ0Q4ew6bvzZbQZtIOCRh1bqpHjXnVd3mQr2bMzA&oe=699A5C50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4ofRANqLXEpx9TcUNQPgBgy1MG2_CSfJ0KDS2PGA6sg&oe=699A322A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqzMZ0GbrjO125CECqmgp_o5Kqx_YFzETNY8H4SmarjA&oe=699A2C7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ_GoKMJd1QH4TnH4rrTFNfKgzEs_zGbgiHoqGVHAwWw&oe=699A35E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0a8PNTWR9iJgJ1_9xwp3rYhu9sW8DswGu8lJHCKppWA&oe=699A396B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNIrlJYT3JP9gXvcufgmSmdG3sQxDkJc59WfG-oJzkuQ&oe=699A42A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyMkrnAutjVwHtEENRUkeNi9nIscS19Jgq4ijfGif1DQ&oe=699A6085&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wENjKWY_ULFEnk9z5wxFP2su2Bd4FGk9ENgEIJ8Yw4elg&oe=699A362D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK9ohoDBbnaL6rZ8pVYsLJDgBuKujRyJo0ULMm8qk_ug&oe=699A4E92&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyH0NwFcr1GBqf2mr6_fRcDkniWJgjLwr97D2eVPZS8Q&oe=699A2C15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFi5-NY2wFXYQeCC2lqE37rSpYoxsqjpbVyvt1LEQ580g&oe=699A4811&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7BBKfMbeFHAV9UdLfqfsEvAGuAe3ehuMBWQz-qaSU3Q&oe=699A4E39&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wETQQkzkXDGWobiMpQzRpHtc2El8Eobj36aMwPzdMnysQ&oe=699A61F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFVM0P3S12ZQhzQVo0rf11I9uYFYYJH0rnIr4WSENUdg&oe=699A4202&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHi1jJx_U6P1bL05fQ-XphdkF4yCC3BtvSp5Bm8GDsPw&oe=699A3225&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUxXDYhCu7li344hutVVD_1hWK1oRnOHncz5tkHh-xPw&oe=699A378A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXtvl9uGS6Ii97BR3A1Hd0-Osk-ovpe5hL0F13OWrx0Q&oe=699A37FA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGjweR95o0D5gJkyKd-8nqroZq28ExuKNDRXTcas-UaA&oe=699A58EE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wEo7BuBU1vnGvdPGeVuzT6Bt0cwxecPfrRJoczUOAin7A&oe=699A57EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe_OZjFTp3HiIrIig-zOwO-28l_AHiWJ-t579VLDrZjw&oe=699A3115&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2LG_oEljpuNnTrBJucgjAfjKeI6pYFDNloXks8jBofQ&oe=699A5EAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbSXI6X9vPLtv1snVjKdyoyK8IbpA1GAM-1D5IGwgmYQ&oe=699A5158&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUgeLHJSz4ie4bWBPbcocU9pOTUWZR82qeh3xbv-6lQ&oe=699A2E13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFboSnuobrXuEQYnRD2l34LB8Fdyyxs3_x9QEfz2Ld9Vw&oe=699A5079&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9jmOBXMCpjUQJxzK4gCQNddLJNNEi7yIBicosNj1oxQ&oe=699A4306&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ1i-Rqw98LGh8NBi7HLpKOukkg1lYoKbYVipMc3yqOA&oe=699A50A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEoIpNFImJY5ob5uzH1qAHj51Ik8gWTnetfVJE-zblDww&oe=699A3038&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5sP19tFACjRFlWqkGFYge-k5JTXAT-6QbD2BEz9vQGA&oe=699A4D38&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXCfOCzO3Cjvza1GASlvzzRYMzkcj_G2K0SwMieEYxbw&oe=699A5C00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOmY85aVAu1-x0Ri_8jRJCJ6zGTOqJi-UMZmBjCliGIg&oe=699A48CF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHp3nN9XFMGw6fLqCw_25A0VFx2gdldH9MQDFi6KkpNfQ&oe=699A3BFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIZeIo48v0RZRaAZRvGrUvQnqnUXYqG4CBy9mtM4k7ew&oe=699A3F82&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG95bXsnxO5QrlLMEZm5-bQZIBLQtDxUtjE9MoF1je0Pg&oe=699A2CCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMchvs75FPyDMCCZr1ZxwTIw-MstQ0z7bpJSPaG4hinQ&oe=699A33B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHze8r8nCHOf0nOq5ORa56AJAnd2HCILzFFyytk7W-Kgg&oe=699A5192&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWxX96OSyEnnZ_3TMYIDf2CpXVMnxIaAUaSP4P7jJuRQ&oe=699A44D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ4VMEt7cNrIdEfo_lu2lFQU3heQ68brW6dcuQYonlrQ&oe=699A38BC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdIDUlS5oJSNhF73vcV_6skj30zWeVrqmdDekkVV2U2w&oe=699A3BF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiYdg588wcaeA6_-qGSZESU1cKN38zfQUN7UP8OwqIxA&oe=699A366F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJTB-fwnxUVfdwe11EWjs3WHUD6hxacVqvnHdHY2cvvQ&oe=699A633C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyzX1vPVfCMgb1HXezQCKF-S5I8P3Y8wo-sAhAjf0dPQ&oe=699A449A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ1XTKMxT_8S3ahH7IptfRJ_Hm5DUV8o1I2hD1OjIw2w&oe=699A2FD0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wGa98uvchB2TEhOzJfv0xwPcYxK7KiyNIB4F2v0ebmTRQ&oe=699A4BC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-uxC5bYFmOCHHhuemYMkeYcpMbSsfS_cbbOE77VhCbg&oe=699A36EE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtwfJu3e84eV4B68YZ4Aq8HEe5Vcvvy7lMZuVvXwj_lA&oe=699A52FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKtDIcTSYkWg1gNS_xqN0dVSxoF_OlmmijqjyopE8zUQ&oe=699A4115&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPQ8CxH8dfsq5eAJdPSQaDT9DGeEhly0TdzzZ1gp-MHw&oe=699A4E0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEilCOc2k1Bfo0IVOiRyyCcVDVcixKKMb0FNmlj3DZl1A&oe=699A6375&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdCmCuf3BeMPPUfzRl35PrANxijPi4AF7ivskncmPdzg&oe=699A38C4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6PUN9usqXjPHdxhjY8OlkKEddeiarAy2hG6pGqBKtg&oe=699A447D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wENPatpIttG_KVzj1DDnHNOBnh6QQ_DXibXIi_YaA2lHA&oe=699A48A5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-55LiWX8uwzzEATuHtfTwQ9uuBKSu_Gg_VD4eXXTwRg&oe=699A603F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcpv6xFwxtmIy2cXCxG94y0mjnI8urIm8pD7Ynsw8T8g&oe=699A4542&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZcZmG_nlYIkuRLZn81H2hM8yNPnmamgvDEbx4i7BCpA&oe=699A33E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXRhOnV_Ohe4GRzymcvuJcxRTBVFZFqqkAhWHfQ11trw&oe=699A2F07&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaZ6c5A4zZcJmm6hoBHpBubH7BnC87J6ad8J-bKFInuQ&oe=699A54A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVoW31xCE9BWj_iiobKwiaOkJg_EAKAxYtSU39G7dQRQ&oe=699A3FC0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRSsITB8NNBNEgqDRGcf37JMmTkn-cG3oToamKJ-wrFA&oe=699A575D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9wSgtzX2G7Pv-IJbwRviZ2h_emy_WKFpHWfM19t8gAA&oe=699A5F47&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKLFUcFXzZmfIC6-OzYNaTadJDunl3sjNeEYZG2PttNg&oe=699A5AE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1efCvFpqeqOOgPNd6aRXwdJZ5qcMe6vaRYwSxGqAwcw&oe=699A3308&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0mtVDPTaWSR02rvchOfKsM8Y-rawf3rYSfksR4__jhw&oe=699A2F51&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWqtz9X1wPdMWY3jx68o_jZJG_tijVtb07ZOOFZ45hHA&oe=699A411C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQlyIxJwt2oQ0OoB1kruMZ5HFBqUkHfR7WmWqSMtHU4w&oe=699A5B36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9G8gTjYM-I8aso8LQOyl-otXJavNovq_rseHdQ8wbNw&oe=699A3F54&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFG7xQfyKhx4p4a_iFmqqu0cAGit-HWv-Q_d5HC8BkbeA&oe=699A6257&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsDPRZQYxqcfb3ZkC2XNSRdLV1tRxygMtWJE_d3H7JNA&oe=699A51BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVH1OUL82E0bk288Y6Ha53jU5cFsQLrvTIxpY75tlbzg&oe=699A59AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYSLx6wIMnFvLmSR8EYRmGKQuY9R9OLEacuX43lSzRLg&oe=699A3CDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqqiHU41J8tma4RrMY9Rj_4YQQOtVmeuK4fF8Iw058Tw&oe=699A39B6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZoV8gkSwAkbgG8sZ2IpHOywpaMXZRxDXURINfNb7Ykw&oe=699A41DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8l62UqaHEUQfz4VePu_kVD4VWfR7EHjzTqNXVwovcmA&oe=699A5E87&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN5gYtMK5rZt-S7DaOqyol0DT4XXuElz_tOwXo0DXh3g&oe=699A3B8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL2P3ZypFmVpYzR8PRNS3eY-YCPB5NNfL1dxuL2Rla1A&oe=699A4037&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbE7VNY9-UbHUghGVRPWoaiAra0704TawwGXPsrBUuaw&oe=699A5B60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNZr_EVPJZX2OSrw0039UBnErbRMR1NoyJPgEJ880Z4g&oe=699A508B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyYBFTqynW8ZsuWeDL72yajqZ7YY1TUEANmQQ8W3GtYw&oe=699A5F20&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXLVUFgszL8WONAgeHq3HZTi67-XfZIBxyZZ5zxsy6gw&oe=699A3392&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEooAotmE2pal1Az38ftu7HJ4EN2vG3LnyjBQk5owcr7g&oe=699A33A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE0c_dakUVgqee0e4sGrbHVtCqXjrk8GY3oQGPZMKuxw&oe=699A4285&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmn4E_VoMofWhiwa8PWIOw9sylaO7LUYq-zjA4LmtrtQ&oe=699A2F63&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcG-1ET06cGuLRPkNAuwohgFA9019obp29DKiLm1RsxA&oe=699A42F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 0, '2026-02-11 23:31:30');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3785, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.852Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3786, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.846Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3787, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3788, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.843Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3789, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.839Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3790, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.842Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3791, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"close\",\"statusReason\":428},\"date_time\":\"2026-02-12T01:07:53.805Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3792, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3793, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"kgjs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.848Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3794, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.849Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3795, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.850Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:54'),
(3796, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.854Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:55'),
(3797, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.841Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:55'),
(3798, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.859Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:55'),
(3799, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.845Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:55'),
(3800, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-12T01:07:54.908Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:55'),
(3801, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.842Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:56'),
(3802, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.855Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:56'),
(3803, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.856Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:56'),
(3804, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.853Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:56'),
(3805, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8AuP\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.853Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:56'),
(3806, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.857Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:57'),
(3807, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.847Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:57'),
(3808, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-12T01:07:54.069Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:57'),
(3809, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T01:07:53.858Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:07:57'),
(3810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PwNi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3811, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3813, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"U5YK\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3815, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bWT7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"u5A7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8ZnB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:03'),
(3824, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:03.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:04'),
(3825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:04'),
(3826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:04'),
(3827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:04'),
(3828, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:05'),
(3829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:05'),
(3830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:05'),
(3831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:05'),
(3832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:05'),
(3833, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PwNi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:06'),
(3834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1Brp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:06'),
(3835, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:06'),
(3836, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:06'),
(3837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:06'),
(3838, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"u5A7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:07'),
(3839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3JuP\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:07'),
(3840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:07'),
(3841, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:07'),
(3842, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:07'),
(3843, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:07'),
(3844, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3JuP\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:07'),
(3845, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8gXt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:07'),
(3846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:07'),
(3847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:09'),
(3848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:09'),
(3849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"U5YK\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:09'),
(3850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bWT7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:09'),
(3851, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:09'),
(3852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:10'),
(3853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8gXt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:10'),
(3854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:10'),
(3855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:10'),
(3856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:10'),
(3857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:11'),
(3858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:11'),
(3859, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"h90H\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:11'),
(3860, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:11'),
(3861, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:03.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:11'),
(3862, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"h90H\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:12'),
(3863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:12'),
(3864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:12'),
(3865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:12'),
(3866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\\/9hY\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:12'),
(3867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\\/9hY\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:13'),
(3868, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:13'),
(3869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:13'),
(3870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:13'),
(3871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1Brp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:13'),
(3872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:14'),
(3873, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:14'),
(3874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8ZnB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:14'),
(3875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"QEs1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:14'),
(3876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:14'),
(3877, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:15'),
(3878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"QEs1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:15'),
(3879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vpJh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:15'),
(3880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:15'),
(3881, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 01:19:15'),
(3882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vpJh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:16'),
(3883, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:16'),
(3884, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:16'),
(3885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T01:19:02.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 01:19:16'),
(3886, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T05:18:23.331Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 05:18:23'),
(3887, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T06:22:38.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 06:22:39'),
(3888, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T06:22:38.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 06:22:39'),
(3889, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACC80D96D53ED8D5A135FA19BAE84061\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770888439914,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T06:27:19.915Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 06:27:20'),
(3890, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T06:44:31.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 06:44:32'),
(3891, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T06:44:31.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 06:44:32'),
(3892, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T06:47:57.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 06:47:57'),
(3893, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T06:47:57.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 06:47:57'),
(3894, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5110E0409EF38D6C605E4A812E3E988\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770894420054,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:07:00.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:07:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3895, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A59D32EE4C7C0DCBA68A847B915F81D0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770894420069,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:07:00.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:07:00'),
(3896, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5110E0409EF38D6C605E4A812E3E988\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770894420054,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:07:00.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:07:00'),
(3897, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A59D32EE4C7C0DCBA68A847B915F81D0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770894420069,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:07:00.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:07:00'),
(3898, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:26@lid\",\"id\":\"ACDC62AE5CB076E7B74BDB29DBE60B55\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895198331,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T08:19:58.331Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:19:58'),
(3899, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A54F518C81C51F7021BDCDEA106898D2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770895447286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:24:07.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:24:07'),
(3900, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770895447295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:24:07.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:24:07'),
(3901, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5B0CD3CEEE12F14F06EA1E34A4D0292\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770895447295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:24:07.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:24:07'),
(3902, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A54F518C81C51F7021BDCDEA106898D2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770895447286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:24:07.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:24:07'),
(3903, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554298397673@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:31.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:31'),
(3904, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9C81016798BCC4C77\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770895711,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:31.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:31'),
(3905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554298397673@s.whatsapp.net\",\"pushName\":\"Meiriane7673 $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:31.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:31'),
(3906, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554298397673@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:31.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:31'),
(3907, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9C81016798BCC4C77\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770895711,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:31.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:31'),
(3908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554298397673@s.whatsapp.net\",\"pushName\":\"Meiriane7673 $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:31.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:32'),
(3909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"id\":\"3EB0E9C81016798BCC4C77\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895712441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:32.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:32'),
(3910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"id\":\"3EB0E9C81016798BCC4C77\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895712441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:32.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:32'),
(3911, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554298397673@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:58'),
(3912, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554298397673@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:58'),
(3913, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB022EAFB9D7815B14719\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"voce reiniciou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770895738,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:58'),
(3914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"id\":\"3EB022EAFB9D7815B14719\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895738489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:58'),
(3915, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554298397673@s.whatsapp.net\",\"pushName\":\"Meiriane7673 $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:28:58'),
(3916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"id\":\"3EB022EAFB9D7815B14719\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895738489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:58'),
(3917, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554298397673@s.whatsapp.net\",\"pushName\":\"Meiriane7673 $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:58'),
(3918, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB022EAFB9D7815B14719\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"voce reiniciou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770895738,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:28:58.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:28:58'),
(3919, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08725AA2AF14BE4EE53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"na tela inicial do app tem o botao update pra atualizar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770895752,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:12.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:29:12'),
(3920, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554298397673@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:12.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:29:12'),
(3921, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08725AA2AF14BE4EE53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"na tela inicial do app tem o botao update pra atualizar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770895752,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:12.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:29:12'),
(3922, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554298397673@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:12.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:29:12'),
(3923, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554298397673@s.whatsapp.net\",\"pushName\":\"Meiriane7673 $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:13.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:29:13'),
(3924, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554298397673@s.whatsapp.net\",\"pushName\":\"Meiriane7673 $100 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:13.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:29:13'),
(3925, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"id\":\"3EB08725AA2AF14BE4EE53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895753531,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:13.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:29:13'),
(3926, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554298397673@s.whatsapp.net\",\"id\":\"3EB08725AA2AF14BE4EE53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770895753531,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:29:13.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:29:13'),
(3927, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"3EB022EAFB9D7815B14719\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770896050412,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:10.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:10'),
(3928, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"3EB0E9C81016798BCC4C77\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770896050420,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:10.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:10'),
(3929, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"3EB08725AA2AF14BE4EE53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770896050404,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:10.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:10'),
(3930, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"3EB08725AA2AF14BE4EE53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770896050404,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:10.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:10'),
(3931, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"3EB0E9C81016798BCC4C77\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770896050420,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:10.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:10'),
(3932, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"3EB022EAFB9D7815B14719\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770896050412,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:10.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:11'),
(3933, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:41.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:41'),
(3934, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC5E194A04338EC65AD427D4F4366FD7\"},\"pushName\":\"Meiriane\",\"message\":{\"conversation\":\"Bom dia, eu atualizei mas não entrou, nao estou em casa agora somente ao 12:10\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zIsO5QNNg6uDoWSLdJqgA7U99hTbTk\\/NdUgWFZhpwNY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770896081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:41.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:41'),
(3935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:41.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:42'),
(3936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC5E194A04338EC65AD427D4F4366FD7\"},\"pushName\":\"Meiriane\",\"message\":{\"conversation\":\"Bom dia, eu atualizei mas não entrou, nao estou em casa agora somente ao 12:10\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"iZ7QxvdhU6TrLw==\",\"senderTimestamp\":\"1770828896\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zIsO5QNNg6uDoWSLdJqgA7U99hTbTk\\/NdUgWFZhpwNY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770896081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:41.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:42'),
(3937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:42.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:42'),
(3938, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:42.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:42'),
(3939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:42.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:34:42'),
(3940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:34:42.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:34:43'),
(3941, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T08:45:22.175Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:45:22'),
(3942, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A58E2B589A3F0FEADD5136141D29505B\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634695939_875892868541325_3335537751293348348_n.enc?ccb=11-4&oh=01_Q5Aa3wFoKnHQCJAehH47Gzd48m1bTeky9GmTh_xMBPxMLmchKQ&oe=69B540E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ciccsZpQUX411gk9HhiXkfcfR5yci7kwbQSqgpCSM+E=\",\"fileLength\":\"7841\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"fdo57MQpVhLM3i2+rtzKcx0xjm25cefC5hzv7hdVaTg=\",\"fileEncSha256\":\"lg5sdRKT162yJT1QxYAUzFPfdJdgVz58ByffU8GmAxg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634695939_875892868541325_3335537751293348348_n.enc?ccb=11-4&oh=01_Q5Aa3wFoKnHQCJAehH47Gzd48m1bTeky9GmTh_xMBPxMLmchKQ&oe=69B540E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770896719\",\"waveform\":\"GzpTXl5OTVZeYGBhXV1fYVhQU1phX1tXWWBdVmBeR1phYFFNTE9dWF5fXF9gWlxgVktSXGBfYWBeWllTYV5DXg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Aah8UW6UfOvNRGUZuwrWNJomNGWVAf4NBdhWFuApas0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770896722,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T08:45:22.177Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:45:22'),
(3943, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUSwgCu0Br_srQyYrk_gE_e0Br2DdMj5xxCh9r7MUSEQ&oe=699ABB6F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T08:45:22.341Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:45:22'),
(3944, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUSwgCu0Br_srQyYrk_gE_e0Br2DdMj5xxCh9r7MUSEQ&oe=699ABB6F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T08:45:22.335Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:45:22'),
(3945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:47:17'),
(3946, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":false,\"id\":\"AC0F0E54F6B886411AC8B412BACC4BBC\"},\"pushName\":\"ignezcamargo2000\",\"message\":{\"conversation\":\"Eu não tenho televisão mais pode cancelar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U+TnLQY1L5xEw\\/zwb5hv1JnHIxKvgHRaKbslQD9ObTg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770896836,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:47:17'),
(3947, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:47:17'),
(3948, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":false,\"id\":\"AC0F0E54F6B886411AC8B412BACC4BBC\"},\"pushName\":\"ignezcamargo2000\",\"message\":{\"conversation\":\"Eu não tenho televisão mais pode cancelar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U+TnLQY1L5xEw\\/zwb5hv1JnHIxKvgHRaKbslQD9ObTg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770896836,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:47:17'),
(3949, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:47:17'),
(3950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:47:17'),
(3951, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 08:47:18'),
(3952, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T08:47:17.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 08:47:18'),
(3953, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:06.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:06'),
(3954, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC7D5B213EA235921FADA90FE437EC15\"},\"pushName\":\"Mota\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Y2ev54o6oY699Ef7EPwq+riSdvmOt9D\\/+\\/KU3ph9xpc=\"}},\"messageTimestamp\":1770897606,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:06.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:07'),
(3955, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:06.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:07'),
(3956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:07'),
(3957, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC7D5B213EA235921FADA90FE437EC15\"},\"pushName\":\"Mota\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Y2ev54o6oY699Ef7EPwq+riSdvmOt9D\\/+\\/KU3ph9xpc=\"}},\"messageTimestamp\":1770897606,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:06.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:07'),
(3958, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:07'),
(3959, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"pushName\":\"Mota\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:07'),
(3960, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:07'),
(3961, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACD13CFD56D57CC19212130642B3E783\"},\"pushName\":\"Mota\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634705116_1388049172504825_6956325633681533651_n.enc?ccb=11-4&oh=01_Q5Aa3wHf3jRkq0ghIVSZRBthV4eGivXti-LI1coo8AAqgLL5uQ&oe=69B5341F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"JJtUxBvisKHm7U59nPrIF0JwfYnnTRg3uU\\/CpNpn8UU=\",\"fileLength\":\"78043\",\"height\":1600,\"width\":720,\"mediaKey\":\"zhu78UXTEpLv4aRlph6MUfK+6cfolWzqmvMFmwMRMfw=\",\"fileEncSha256\":\"tepfCnGpxy4BXYRfqfF3Ch8B3B6c70iFD0QxjKryTAs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634705116_1388049172504825_6956325633681533651_n.enc?ccb=11-4&oh=01_Q5Aa3wHf3jRkq0ghIVSZRBthV4eGivXti-LI1coo8AAqgLL5uQ&oe=69B5341F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897601\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPNjGAnSyG5hlDcg0auQ6zpZMwAMAs21mJRSVKkP\\/8QAJBAAAQQCAAYDAQAAAAAAAAAAAQACAxEQEgQTITEyUSJBU2H\\/2gAIAQEAAT8ADjj4rYVrfTEbWnuntAPTLfdp2Io43ebiFyYK8yhBw\\/6FPjY2+\\/8AFwzxWpTRGKsWCniLSmhcS9poNQcjMaq1zn+1tga\\/YR1OaCoZsq0V\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"Rlx8ISX4Y8D8X5VZQWi15+jDdLima+H6g0nExeYsSgJyWTlbTnhUlw==\",\"scanLengths\":[8234,36569,14697,18543],\"midQualityFileSha256\":\"KYlxIk0jGxooO7LdDFt146KSL1Tzy5rr2cYUVPoZNig=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f6f2ylRjv1XYQsCDECpts6IpIQ\\/xklGilFsKyfpJKf8=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770897607,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:07'),
(3962, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"pushName\":\"Mota\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:07'),
(3963, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:09'),
(3964, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:08.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(3965, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACD13CFD56D57CC19212130642B3E783\"},\"pushName\":\"Mota\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634705116_1388049172504825_6956325633681533651_n.enc?ccb=11-4&oh=01_Q5Aa3wHf3jRkq0ghIVSZRBthV4eGivXti-LI1coo8AAqgLL5uQ&oe=69B5341F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"JJtUxBvisKHm7U59nPrIF0JwfYnnTRg3uU\\/CpNpn8UU=\",\"fileLength\":\"78043\",\"height\":1600,\"width\":720,\"mediaKey\":\"zhu78UXTEpLv4aRlph6MUfK+6cfolWzqmvMFmwMRMfw=\",\"fileEncSha256\":\"tepfCnGpxy4BXYRfqfF3Ch8B3B6c70iFD0QxjKryTAs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634705116_1388049172504825_6956325633681533651_n.enc?ccb=11-4&oh=01_Q5Aa3wHf3jRkq0ghIVSZRBthV4eGivXti-LI1coo8AAqgLL5uQ&oe=69B5341F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897601\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPNjGAnSyG5hlDcg0auQ6zpZMwAMAs21mJRSVKkP\\/8QAJBAAAQQCAAYDAQAAAAAAAAAAAQACAxEQEgQTITEyUSJBU2H\\/2gAIAQEAAT8ADjj4rYVrfTEbWnuntAPTLfdp2Io43ebiFyYK8yhBw\\/6FPjY2+\\/8AFwzxWpTRGKsWCniLSmhcS9poNQcjMaq1zn+1tga\\/YR1OaCoZsq0V\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"Rlx8ISX4Y8D8X5VZQWi15+jDdLima+H6g0nExeYsSgJyWTlbTnhUlw==\",\"scanLengths\":[8234,36569,14697,18543],\"midQualityFileSha256\":\"KYlxIk0jGxooO7LdDFt146KSL1Tzy5rr2cYUVPoZNig=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f6f2ylRjv1XYQsCDECpts6IpIQ\\/xklGilFsKyfpJKf8=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770897607,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:09'),
(3966, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:09'),
(3967, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:08.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:09'),
(3968, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:10'),
(3969, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:10'),
(3970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:10'),
(3971, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:08.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:10'),
(3972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACAC0E21D6E41CD40735BA8CACA020C6\"},\"pushName\":\"Mota\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23769534_913851044457697_134836047047364033_n.enc?ccb=11-4&oh=01_Q5Aa3wFczHO2wW3LHGQZ0eb-MWnGXFI0H1tSK3A2NmCHnl9HeA&oe=69B53974&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"a1R7mYR\\/cqte5AmJq88aljzLwoM\\/9f0LqTGZeOMGGmQ=\",\"fileLength\":\"51031\",\"height\":1600,\"width\":720,\"mediaKey\":\"Wp3eOeK8hV1cOJ7DFiOlOu540443IBaf4d2TyG1gu14=\",\"fileEncSha256\":\"QiDJxdJRDLGDP+HdY1Kv1tLsDQIYRZ1OlLMtUR5vJz8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23769534_913851044457697_134836047047364033_n.enc?ccb=11-4&oh=01_Q5Aa3wFczHO2wW3LHGQZ0eb-MWnGXFI0H1tSK3A2NmCHnl9HeA&oe=69B53974&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897601\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAAtAAEBAQEBAQAAAAAAAAAAAAADAAECBAUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAA+fGJ6N8zWRoc3iktxEpLy4sWausefvrmNOpqSj\\/\\/xAAgEAACAwACAgMBAAAAAAAAAAAAAQIDMRESBGETIUEi\\/9oACAEBAAE\\/AOyjxyN1fjY3D8YpNrhYXYhKXHKRJyelOMuxCk0iTbKcZdiOzSQ5Nrgpxl2ITSWDfopxl2IhByxEl1KcZdiIQbXPVk4OK+4tFOMuxFfmOuHTqi7yXbHjqU4ya7I+P2fH7I\\/yj\\/\\/EABoRAQACAwEAAAAAAAAAAAAAAAECEAARIiD\\/2gAIAQIBAT8AWnxEjvpxIjy3\\/8QAHREBAAICAgMAAAAAAAAAAAAAAQIRECIAICExQf\\/aAAgBAwEBPwAF9GIIXanj50mzDUvkGbHYpz\\/\\/2Q==\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"lDnXiLRZboo9KFSOVbF\\/oiEAApfsOrZr24Cd4gfiSTSF5mbBSflDPA==\",\"scanLengths\":[6402,27211,7843,9575],\"midQualityFileSha256\":\"ohvi15GC7+ZF1prqvMNDKidIFDN2Ck8xSUdhvuBG6gk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z+EDQD5ry9sFpJl7Xlda6L2CCyGo3HfgnLj\\/2QyeXB0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770897607,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:10'),
(3973, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:11'),
(3974, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:08.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:11'),
(3975, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACAC0E21D6E41CD40735BA8CACA020C6\"},\"pushName\":\"Mota\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23769534_913851044457697_134836047047364033_n.enc?ccb=11-4&oh=01_Q5Aa3wFczHO2wW3LHGQZ0eb-MWnGXFI0H1tSK3A2NmCHnl9HeA&oe=69B53974&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"a1R7mYR\\/cqte5AmJq88aljzLwoM\\/9f0LqTGZeOMGGmQ=\",\"fileLength\":\"51031\",\"height\":1600,\"width\":720,\"mediaKey\":\"Wp3eOeK8hV1cOJ7DFiOlOu540443IBaf4d2TyG1gu14=\",\"fileEncSha256\":\"QiDJxdJRDLGDP+HdY1Kv1tLsDQIYRZ1OlLMtUR5vJz8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23769534_913851044457697_134836047047364033_n.enc?ccb=11-4&oh=01_Q5Aa3wFczHO2wW3LHGQZ0eb-MWnGXFI0H1tSK3A2NmCHnl9HeA&oe=69B53974&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897601\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAAtAAEBAQEBAQAAAAAAAAAAAAADAAECBAUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAA+fGJ6N8zWRoc3iktxEpLy4sWausefvrmNOpqSj\\/\\/xAAgEAACAwACAgMBAAAAAAAAAAAAAQIDMRESBGETIUEi\\/9oACAEBAAE\\/AOyjxyN1fjY3D8YpNrhYXYhKXHKRJyelOMuxCk0iTbKcZdiOzSQ5Nrgpxl2ITSWDfopxl2IhByxEl1KcZdiIQbXPVk4OK+4tFOMuxFfmOuHTqi7yXbHjqU4ya7I+P2fH7I\\/yj\\/\\/EABoRAQACAwEAAAAAAAAAAAAAAAECEAARIiD\\/2gAIAQIBAT8AWnxEjvpxIjy3\\/8QAHREBAAICAgMAAAAAAAAAAAAAAQIRECIAICExQf\\/aAAgBAwEBPwAF9GIIXanj50mzDUvkGbHYpz\\/\\/2Q==\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"lDnXiLRZboo9KFSOVbF\\/oiEAApfsOrZr24Cd4gfiSTSF5mbBSflDPA==\",\"scanLengths\":[6402,27211,7843,9575],\"midQualityFileSha256\":\"ohvi15GC7+ZF1prqvMNDKidIFDN2Ck8xSUdhvuBG6gk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z+EDQD5ry9sFpJl7Xlda6L2CCyGo3HfgnLj\\/2QyeXB0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":71273,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770897607,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:11'),
(3976, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:07.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:11'),
(3977, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC68CA7C575DF920FADEC79F33BCD1E6\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/630902405_811830205292921_4782078950431341104_n.enc?ccb=11-4&oh=01_Q5Aa3wGXAAKn632VVmE1a8uNOT8eWai6SI5Rqqdv3MMM6iiEEA&oe=69B52C2E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"r1pslqamVPoIHDOCa2aov0Q6A4zxBKTjmbyDu5Tnd1k=\",\"fileLength\":\"43592\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"4u2RvrFwKFq6QN79+w2wHB\\/86kw80KMjVJLZ7D1XMpU=\",\"fileEncSha256\":\"w+VsmqOZfgU4H05lVVpW+RKsUknBENuh2azxp5oRifY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/630902405_811830205292921_4782078950431341104_n.enc?ccb=11-4&oh=01_Q5Aa3wGXAAKn632VVmE1a8uNOT8eWai6SI5Rqqdv3MMM6iiEEA&oe=69B52C2E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897606\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAoVGwxcWFdaRkdXU1VXUEk4WwBXQlhLWVIAAEtcAFZVJlIjMzgvTSkAAFI5PTIyKUNXADtRVxFBXQRXKkorAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fAJjrmYw\\/atclz5yrMg+2sc6DcrNEP1EdGs6HQu0fpg=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770897623,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:23'),
(3978, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:23'),
(3979, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC68CA7C575DF920FADEC79F33BCD1E6\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/630902405_811830205292921_4782078950431341104_n.enc?ccb=11-4&oh=01_Q5Aa3wGXAAKn632VVmE1a8uNOT8eWai6SI5Rqqdv3MMM6iiEEA&oe=69B52C2E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"r1pslqamVPoIHDOCa2aov0Q6A4zxBKTjmbyDu5Tnd1k=\",\"fileLength\":\"43592\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"4u2RvrFwKFq6QN79+w2wHB\\/86kw80KMjVJLZ7D1XMpU=\",\"fileEncSha256\":\"w+VsmqOZfgU4H05lVVpW+RKsUknBENuh2azxp5oRifY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/630902405_811830205292921_4782078950431341104_n.enc?ccb=11-4&oh=01_Q5Aa3wGXAAKn632VVmE1a8uNOT8eWai6SI5Rqqdv3MMM6iiEEA&oe=69B52C2E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897606\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAoVGwxcWFdaRkdXU1VXUEk4WwBXQlhLWVIAAEtcAFZVJlIjMzgvTSkAAFI5PTIyKUNXADtRVxFBXQRXKkorAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fAJjrmYw\\/atclz5yrMg+2sc6DcrNEP1EdGs6HQu0fpg=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770897623,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:23'),
(3980, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:23'),
(3981, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:23'),
(3982, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:24'),
(3983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:24'),
(3984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:23.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:24'),
(3985, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:28'),
(3986, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACDE459F399F60540E767D06808B49A9\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31197986_1302239668403578_4605434019225474942_n.enc?ccb=11-4&oh=01_Q5Aa3wGjPa8gdXO9CEeCrnwjabOztYJgu-TQzJNo9NQJVNLrIQ&oe=69B537AF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"N1CyXYcWH0XD4gE0HStIFMudux8qrSannIpN7aCqXF4=\",\"fileLength\":\"8728\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"5ramwXYZiCmZ1G6Kvwm+eCrXkeWICYw0naBGv7PILJw=\",\"fileEncSha256\":\"7GG0HIu2\\/0jMPOL1oIXhBxlWCfxJ6z9bYQHHLagWs78=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31197986_1302239668403578_4605434019225474942_n.enc?ccb=11-4&oh=01_Q5Aa3wGjPa8gdXO9CEeCrnwjabOztYJgu-TQzJNo9NQJVNLrIQ&oe=69B537AF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897626\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAABCA0TFBQXGBkYHCFYWUpJQDk4V11YQDlYUlNKRDVMSEZGHxY\\/TzoOS1EcNkdLRiw5NC4mHTFKTh44FQQAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hSCPRP9LlVfnP00yp0c8SKEtoBQjpdgtfpopUnCfxJ0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770897628,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:28'),
(3987, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:28'),
(3988, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACDE459F399F60540E767D06808B49A9\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31197986_1302239668403578_4605434019225474942_n.enc?ccb=11-4&oh=01_Q5Aa3wGjPa8gdXO9CEeCrnwjabOztYJgu-TQzJNo9NQJVNLrIQ&oe=69B537AF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"N1CyXYcWH0XD4gE0HStIFMudux8qrSannIpN7aCqXF4=\",\"fileLength\":\"8728\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"5ramwXYZiCmZ1G6Kvwm+eCrXkeWICYw0naBGv7PILJw=\",\"fileEncSha256\":\"7GG0HIu2\\/0jMPOL1oIXhBxlWCfxJ6z9bYQHHLagWs78=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31197986_1302239668403578_4605434019225474942_n.enc?ccb=11-4&oh=01_Q5Aa3wGjPa8gdXO9CEeCrnwjabOztYJgu-TQzJNo9NQJVNLrIQ&oe=69B537AF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897626\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAABCA0TFBQXGBkYHCFYWUpJQDk4V11YQDlYUlNKRDVMSEZGHxY\\/TzoOS1EcNkdLRiw5NC4mHTFKTh44FQQAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hSCPRP9LlVfnP00yp0c8SKEtoBQjpdgtfpopUnCfxJ0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770897628,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:28'),
(3989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:28'),
(3990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:29'),
(3991, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:29'),
(3992, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:28.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:29'),
(3993, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:51'),
(3994, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC76596022C6A413909E0AE39E8EF023\"},\"pushName\":\"Mota\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/590790375_1631062487913373_279181036588133182_n.enc?ccb=11-4&oh=01_Q5Aa3wHS2bV9nRtgjqIVtVQ1n18P4kcIRX9RcR7u6LEMj9lW3A&oe=69B53657&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"0sqgs9FiyOcVhiLa\\/UlS8TlNF+UE4R7gtPBypcVnBi0=\",\"fileLength\":\"76393\",\"height\":1599,\"width\":718,\"mediaKey\":\"WsDMNXZWYXAsYUfChsT+sIUiGTGcG5URyyMNgNZJjlU=\",\"fileEncSha256\":\"1LN15ylNV2LHPzApdgMFzql24XTZ19k5W7VhhGzff+w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/590790375_1631062487913373_279181036588133182_n.enc?ccb=11-4&oh=01_Q5Aa3wHS2bV9nRtgjqIVtVQ1n18P4kcIRX9RcR7u6LEMj9lW3A&oe=69B53657&_nc_sid=5e03e0&_nc_hot=1770897650\",\"mediaKeyTimestamp\":\"1770897644\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQ68mxqAZNsKA526LBmFpjoDBAXQH\\/\\/xAAgEAACAgEFAQEBAAAAAAAAAAAAAQIREgMQIUFSMSJh\\/9oACAEBAAE\\/ANOeqtWV1h0Xu1JydURUY0+zJbZNX+RTfgTfnZU2+Sl6Fs0smYxvsUq4oUv4OUr+IhOSfKQtRbOVP4KS8lryUhyjfwU10jMzG+TJCd7f\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"eIs8LYb6hhoab1x9DYHLfKsJYaHnUYFnAdloAIZMOPvKEB6DlZhc9g==\",\"scanLengths\":[6633,36620,15125,18015],\"midQualityFileSha256\":\"6K894TLcd6LgqBidMJOx4MRPaeeoUnNiUxqcI+ecVIM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0\\/vX0jBogIs1iW2lQ3FHGd9cG4vC+Dj7Js000nEGS\\/w=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770897651,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:51'),
(3995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:51'),
(3996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC76596022C6A413909E0AE39E8EF023\"},\"pushName\":\"Mota\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/590790375_1631062487913373_279181036588133182_n.enc?ccb=11-4&oh=01_Q5Aa3wHS2bV9nRtgjqIVtVQ1n18P4kcIRX9RcR7u6LEMj9lW3A&oe=69B53657&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"0sqgs9FiyOcVhiLa\\/UlS8TlNF+UE4R7gtPBypcVnBi0=\",\"fileLength\":\"76393\",\"height\":1599,\"width\":718,\"mediaKey\":\"WsDMNXZWYXAsYUfChsT+sIUiGTGcG5URyyMNgNZJjlU=\",\"fileEncSha256\":\"1LN15ylNV2LHPzApdgMFzql24XTZ19k5W7VhhGzff+w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/590790375_1631062487913373_279181036588133182_n.enc?ccb=11-4&oh=01_Q5Aa3wHS2bV9nRtgjqIVtVQ1n18P4kcIRX9RcR7u6LEMj9lW3A&oe=69B53657&_nc_sid=5e03e0&_nc_hot=1770897650\",\"mediaKeyTimestamp\":\"1770897644\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQ68mxqAZNsKA526LBmFpjoDBAXQH\\/\\/xAAgEAACAgEFAQEBAAAAAAAAAAAAAQIREgMQIUFSMSJh\\/9oACAEBAAE\\/ANOeqtWV1h0Xu1JydURUY0+zJbZNX+RTfgTfnZU2+Sl6Fs0smYxvsUq4oUv4OUr+IhOSfKQtRbOVP4KS8lryUhyjfwU10jMzG+TJCd7f\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"eIs8LYb6hhoab1x9DYHLfKsJYaHnUYFnAdloAIZMOPvKEB6DlZhc9g==\",\"scanLengths\":[6633,36620,15125,18015],\"midQualityFileSha256\":\"6K894TLcd6LgqBidMJOx4MRPaeeoUnNiUxqcI+ecVIM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0\\/vX0jBogIs1iW2lQ3FHGd9cG4vC+Dj7Js000nEGS\\/w=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770897651,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:51'),
(3997, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:51'),
(3998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:00:52'),
(3999, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:52'),
(4000, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:00:51.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:00:52'),
(4001, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:01:00'),
(4002, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACA4979B136E6A43F9EB3E5F387DF7A6\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634571085_923341550200707_5416623527049638437_n.enc?ccb=11-4&oh=01_Q5Aa3wGvxnUMMZ1OhwY0A1iOagPDHj8kFGv2mg9XJZsiLDw_Nw&oe=69B517C9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3V9P5+kG8J9Gs21\\/HyljOeb1qCQP01BBTz1DHUm9czI=\",\"fileLength\":\"15788\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"XzcS2Y298JwHB7TxEHkmpBWpBjzidOXnZ5kuE6vNIf4=\",\"fileEncSha256\":\"bShevUyceVc3lz6flPZoT2V+Awyp+fv8LAH6qZ9r86A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634571085_923341550200707_5416623527049638437_n.enc?ccb=11-4&oh=01_Q5Aa3wGvxnUMMZ1OhwY0A1iOagPDHj8kFGv2mg9XJZsiLDw_Nw&oe=69B517C9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897648\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAELEB0bFRUeIRZXTjQ8V0pAUlIhQ0M+WVVQJ1MtUjZHLCkWAAAAAAc9LDA6UTooJQAiDBo6NT4oAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bBsjFE+olIBbvbPjxALhxAjX2FYQNYE++7snu\\/NeVqg=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770897660,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:01:00'),
(4003, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:01:00'),
(4004, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:01:00'),
(4005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"ACA4979B136E6A43F9EB3E5F387DF7A6\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634571085_923341550200707_5416623527049638437_n.enc?ccb=11-4&oh=01_Q5Aa3wGvxnUMMZ1OhwY0A1iOagPDHj8kFGv2mg9XJZsiLDw_Nw&oe=69B517C9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3V9P5+kG8J9Gs21\\/HyljOeb1qCQP01BBTz1DHUm9czI=\",\"fileLength\":\"15788\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"XzcS2Y298JwHB7TxEHkmpBWpBjzidOXnZ5kuE6vNIf4=\",\"fileEncSha256\":\"bShevUyceVc3lz6flPZoT2V+Awyp+fv8LAH6qZ9r86A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634571085_923341550200707_5416623527049638437_n.enc?ccb=11-4&oh=01_Q5Aa3wGvxnUMMZ1OhwY0A1iOagPDHj8kFGv2mg9XJZsiLDw_Nw&oe=69B517C9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770897648\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAELEB0bFRUeIRZXTjQ8V0pAUlIhQ0M+WVVQJ1MtUjZHLCkWAAAAAAc9LDA6UTooJQAiDBo6NT4oAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bBsjFE+olIBbvbPjxALhxAjX2FYQNYE++7snu\\/NeVqg=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770897660,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:01:00'),
(4006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:01:01'),
(4007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:01:01'),
(4008, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:01:00.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:01:02'),
(4009, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4010, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACA133249248C18779D\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qKEn1cpFgEHxRtuT1IjSgte2c8t1ELnIp4o5tNKEqhQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770898362,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:42'),
(4011, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:42'),
(4012, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:42'),
(4013, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACA133249248C18779D\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qKEn1cpFgEHxRtuT1IjSgte2c8t1ELnIp4o5tNKEqhQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770898362,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:43'),
(4014, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:43'),
(4015, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:43'),
(4016, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:42.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:43'),
(4017, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:44'),
(4018, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2D205D9B38DAF73177\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Voltou aqui.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"haZ6RLlHpv9lAbTiK0\\/dDR2Kb2hWGqVLaJWfEHLwS0Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770898364,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:44'),
(4019, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:44'),
(4020, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2D205D9B38DAF73177\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Voltou aqui.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"haZ6RLlHpv9lAbTiK0\\/dDR2Kb2hWGqVLaJWfEHLwS0Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770898364,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:44'),
(4021, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:44'),
(4022, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:45'),
(4023, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:45'),
(4024, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:44.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:45'),
(4025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:45.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:45'),
(4026, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A91C28C0610B4A3A7A4\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9OkPPGSxKz2ol\\/M5z\\/xTPQqkC2tUdnmN6Nx082nXtds=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770898365,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:45.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:45'),
(4027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:45.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:46'),
(4028, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A91C28C0610B4A3A7A4\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9OkPPGSxKz2ol\\/M5z\\/xTPQqkC2tUdnmN6Nx082nXtds=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770898365,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:45.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:46'),
(4029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:46.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:46'),
(4030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:46.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:46'),
(4031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:46.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:12:46'),
(4032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:12:46.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:12:47'),
(4033, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5515996946853@s.whatsapp.net\",\"pushName\":\"Daniel6853\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"5515998355920@s.whatsapp.net\",\"pushName\":\"Anderson5920 Contó\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T09:16:44.090Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:16:44'),
(4034, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5515996946853@s.whatsapp.net\",\"pushName\":\"Daniel6853\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"5515998355920@s.whatsapp.net\",\"pushName\":\"Anderson5920 Contó\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T09:16:44.414Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:16:44'),
(4035, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"A58E2B589A3F0FEADD5136141D29505B\",\"fromMe\":false,\"status\":\"PLAYED\",\"datetime\":1770898617347,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:16:57.348Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:16:57'),
(4036, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:38.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:39'),
(4037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04FFE70B8434E99F8BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bomdia irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770898778,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:38.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:39'),
(4038, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:38.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:39'),
(4039, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04FFE70B8434E99F8BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bomdia irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770898778,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:38.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:39'),
(4040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:39.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:39'),
(4041, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB04FFE70B8434E99F8BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770898779346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:39.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:39'),
(4042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:39.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:39'),
(4043, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB04FFE70B8434E99F8BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770898779346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:39.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:39'),
(4044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AEC5B9BF81B262DCFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"que bom\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770898782,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:42'),
(4045, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:42'),
(4046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:42'),
(4047, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AEC5B9BF81B262DCFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"que bom\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770898782,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:42'),
(4048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:42'),
(4049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd8hMk2d6COhVzpp-nrC-ORBk1DVi31YQOuNOCQlcI2w&oe=699AC6CB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:43'),
(4050, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB0AEC5B9BF81B262DCFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770898782787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:19:43'),
(4051, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB0AEC5B9BF81B262DCFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770898782787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:19:42.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:19:44'),
(4052, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":true,\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592662540_2045858382871398_2652630774191804392_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHbS7fn6p5rvZ_qrdlKDQQccyepoJhUPDi248hvWASA&oe=69B52450&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wcn4lz3GT+Fn4kDqcS+xzqu5CTrN5Ou5Qc+w0vXGkAA=\",\"fileLength\":\"13956\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"p2H8OjNcBIbBPZU6Dc+RvA\\/EWDCoiql7PwwR0hVwiOg=\",\"fileEncSha256\":\"SGE02tzW9DTm5D1kKME08qCNIchtd06lyYWgmGOXdDs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592662540_2045858382871398_2652630774191804392_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHbS7fn6p5rvZ_qrdlKDQQccyepoJhUPDi248hvWASA&oe=69B52450&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899176\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"AAQYXFNUWlxTVVdTLlpSK0s\\/VS0mIiYoEztQSFFUPDFTTkpKSk1THyVRLykuKzQ7QQUAAAApQlJUGUooOE5FAw==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899181,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:21'),
(4053, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:21'),
(4054, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:21'),
(4055, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":true,\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592662540_2045858382871398_2652630774191804392_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHbS7fn6p5rvZ_qrdlKDQQccyepoJhUPDi248hvWASA&oe=69B52450&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wcn4lz3GT+Fn4kDqcS+xzqu5CTrN5Ou5Qc+w0vXGkAA=\",\"fileLength\":\"13956\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"p2H8OjNcBIbBPZU6Dc+RvA\\/EWDCoiql7PwwR0hVwiOg=\",\"fileEncSha256\":\"SGE02tzW9DTm5D1kKME08qCNIchtd06lyYWgmGOXdDs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592662540_2045858382871398_2652630774191804392_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHbS7fn6p5rvZ_qrdlKDQQccyepoJhUPDi248hvWASA&oe=69B52450&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899176\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"AAQYXFNUWlxTVVdTLlpSK0s\\/VS0mIiYoEztQSFFUPDFTTkpKSk1THyVRLykuKzQ7QQUAAAApQlJUGUooOE5FAw==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899181,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:21'),
(4056, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:22'),
(4057, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:22'),
(4058, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899181819,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:22'),
(4059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899181819,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:21.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:22'),
(4060, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":true,\"id\":\"A58ACA073B1992B322FD5B298158FEDD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Feito\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770899206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:46.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:47'),
(4061, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:46.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:47'),
(4062, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:47.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:47'),
(4063, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:46.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:47'),
(4064, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":true,\"id\":\"A58ACA073B1992B322FD5B298158FEDD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Feito\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770899206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:46.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:47'),
(4065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A58ACA073B1992B322FD5B298158FEDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899207145,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:47.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:26:48'),
(4066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A58ACA073B1992B322FD5B298158FEDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899207145,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:47.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:48'),
(4067, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:26:47.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:26:48'),
(4068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A58ACA073B1992B322FD5B298158FEDD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899221726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:01.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:01'),
(4069, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A58ACA073B1992B322FD5B298158FEDD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899221726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:01.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:02'),
(4070, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899221737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:01.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:02'),
(4071, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899221737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:01.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:02'),
(4072, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770899222865,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:02.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:02'),
(4073, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5FAC52F9812FEC27346FC8904C4B6B8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770899222865,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:02.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:03'),
(4074, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:07.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:07'),
(4075, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":true,\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628971931_678535491952281_7610912748471317757_n.enc?ccb=11-4&oh=01_Q5Aa3wFACz-tQQF6Z_X8AkJ3W2L0t67PDGengrGJbzDGw_S88Q&oe=69B52D7D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cQBaPVBLc9Kts8b0w8hjjh8Ls4e897a2VjTDsdxt\\/HY=\",\"fileLength\":\"34549\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"0+kxzBSccfCsYMSLXtN10tDM+SxCv4yf6O7XaIkwM8A=\",\"fileEncSha256\":\"p1OX5Oc0pMuMXXQZAqtAGc6v1181ZiBlIeXbVF8BGBY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628971931_678535491952281_7610912748471317757_n.enc?ccb=11-4&oh=01_Q5Aa3wFACz-tQQF6Z_X8AkJ3W2L0t67PDGengrGJbzDGw_S88Q&oe=69B52D7D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899214\",\"waveform\":\"AAAHVU9UPU4MQ09DRDFLT0w6Jwg3S0A6SyIoKkVBRAYFETlFUElLTD4vQjIACUYcHExJNzEpLEROSQg0I0YpAQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899227,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:07.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:07'),
(4076, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:07.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:08'),
(4077, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":true,\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628971931_678535491952281_7610912748471317757_n.enc?ccb=11-4&oh=01_Q5Aa3wFACz-tQQF6Z_X8AkJ3W2L0t67PDGengrGJbzDGw_S88Q&oe=69B52D7D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cQBaPVBLc9Kts8b0w8hjjh8Ls4e897a2VjTDsdxt\\/HY=\",\"fileLength\":\"34549\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"0+kxzBSccfCsYMSLXtN10tDM+SxCv4yf6O7XaIkwM8A=\",\"fileEncSha256\":\"p1OX5Oc0pMuMXXQZAqtAGc6v1181ZiBlIeXbVF8BGBY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628971931_678535491952281_7610912748471317757_n.enc?ccb=11-4&oh=01_Q5Aa3wFACz-tQQF6Z_X8AkJ3W2L0t67PDGengrGJbzDGw_S88Q&oe=69B52D7D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899214\",\"waveform\":\"AAAHVU9UPU4MQ09DRDFLT0w6Jwg3S0A6SyIoKkVBRAYFETlFUElLTD4vQjIACUYcHExJNzEpLEROSQg0I0YpAQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899227,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:07.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:08');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:08.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:08'),
(4079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:08.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:08'),
(4080, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679:91@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899228344,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:08.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:08'),
(4081, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899229132,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:09.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:09'),
(4082, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899229132,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:09.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:09'),
(4083, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679:91@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899228344,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:08.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:09'),
(4084, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC1114B7E154A82FA4DB4D1C505DD271\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633913877_4199478970318778_8963915975393410260_n.enc?ccb=11-4&oh=01_Q5Aa3wGgdSOB678p0jK4ueKy73fwxRNyHX03YXRknib1aYWa7w&oe=69B52760&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lbopYpO+bnMx9r2psaUFjkQUX5EjPSc3jaWziqsHa5U=\",\"fileLength\":\"12951\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"tHHFa9eZ1\\/7nSgL\\/xCflre399i3LsA4OYUe8Zomhcnk=\",\"fileEncSha256\":\"bQiRL74Mz25EvOf4X3\\/+CCfMRJEMLRLvMvCcGjv+Wr4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633913877_4199478970318778_8963915975393410260_n.enc?ccb=11-4&oh=01_Q5Aa3wGgdSOB678p0jK4ueKy73fwxRNyHX03YXRknib1aYWa7w&oe=69B52760&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899260\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAAAAAQAAAACARtAR1Q3UkxOS0saGlc+UDhbTwsFAB9EPDo8QUhGUTkVBgEzOERFODFGUltRPTRCNzENAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oKERXgWglZzGQSJV\\/sCzRClla2KLjmqm1xDkviYw3YY=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899264,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:45'),
(4085, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":false,\"id\":\"AC1114B7E154A82FA4DB4D1C505DD271\"},\"pushName\":\"Mota\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633913877_4199478970318778_8963915975393410260_n.enc?ccb=11-4&oh=01_Q5Aa3wGgdSOB678p0jK4ueKy73fwxRNyHX03YXRknib1aYWa7w&oe=69B52760&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lbopYpO+bnMx9r2psaUFjkQUX5EjPSc3jaWziqsHa5U=\",\"fileLength\":\"12951\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"tHHFa9eZ1\\/7nSgL\\/xCflre399i3LsA4OYUe8Zomhcnk=\",\"fileEncSha256\":\"bQiRL74Mz25EvOf4X3\\/+CCfMRJEMLRLvMvCcGjv+Wr4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633913877_4199478970318778_8963915975393410260_n.enc?ccb=11-4&oh=01_Q5Aa3wGgdSOB678p0jK4ueKy73fwxRNyHX03YXRknib1aYWa7w&oe=69B52760&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899260\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAAAAAQAAAACARtAR1Q3UkxOS0saGlc+UDhbTwsFAB9EPDo8QUhGUTkVBgEzOERFODFGUltRPTRCNzENAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oKERXgWglZzGQSJV\\/sCzRClla2KLjmqm1xDkviYw3YY=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899264,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:45'),
(4086, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:45'),
(4087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:45'),
(4088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:45'),
(4089, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:27:45'),
(4090, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:45'),
(4091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:27:45.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:27:45'),
(4092, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899289896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:09.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:28:10'),
(4093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899289896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:09.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:28:10'),
(4094, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770899290928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:10.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:28:11'),
(4095, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168126578716679@lid\",\"id\":\"A5617B2591CE0B0CCA850557A44A5C79\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770899290928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:10.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:28:11'),
(4096, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC4F96638EE525CDCFEAAAA38F253190\"},\"pushName\":\"Meiriane\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634393049_1573196650457618_789178547061485785_n.enc?ccb=11-4&oh=01_Q5Aa3wEgzX5dbII-Xi-RlQWRKr5GbAdvhLafM1dgI4R6Af3SeA&oe=69B53594&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bfmGQBMIvZHcVB0GXrDLp\\/NbCNRRCAbNa+WN5u17gjQ=\",\"fileLength\":\"15656\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"nAwhX6O5UDDg731uXPmAD3vrl2zYa8fj\\/\\/eTiHiMdPA=\",\"fileEncSha256\":\"21Z0w\\/khYKOcHLcNSh8GEdadnapwB4gLHhHR2oTgG\\/c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634393049_1573196650457618_789178547061485785_n.enc?ccb=11-4&oh=01_Q5Aa3wEgzX5dbII-Xi-RlQWRKr5GbAdvhLafM1dgI4R6Af3SeA&oe=69B53594&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899308\",\"waveform\":\"AA8cHUE4TlE3MDQlOz5HRkJOSEJSST8fRyNKTUdITkJHRklIJCkfR0oxPzspPENDFh4eHiBUTVM8HxkOFBESFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mlsNA7HH4llgVw==\",\"senderTimestamp\":\"1770896104\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ivcDohpYVdZ8FKl2FSKlWlCN0GoX3mhcKbUJZ6QCkW0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899314,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:34.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:28:34'),
(4097, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168126578716679@lid\",\"fromMe\":false,\"id\":\"AC4F96638EE525CDCFEAAAA38F253190\"},\"pushName\":\"Meiriane\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634393049_1573196650457618_789178547061485785_n.enc?ccb=11-4&oh=01_Q5Aa3wEgzX5dbII-Xi-RlQWRKr5GbAdvhLafM1dgI4R6Af3SeA&oe=69B53594&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bfmGQBMIvZHcVB0GXrDLp\\/NbCNRRCAbNa+WN5u17gjQ=\",\"fileLength\":\"15656\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"nAwhX6O5UDDg731uXPmAD3vrl2zYa8fj\\/\\/eTiHiMdPA=\",\"fileEncSha256\":\"21Z0w\\/khYKOcHLcNSh8GEdadnapwB4gLHhHR2oTgG\\/c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634393049_1573196650457618_789178547061485785_n.enc?ccb=11-4&oh=01_Q5Aa3wEgzX5dbII-Xi-RlQWRKr5GbAdvhLafM1dgI4R6Af3SeA&oe=69B53594&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899308\",\"waveform\":\"AA8cHUE4TlE3MDQlOz5HRkJOSEJSST8fRyNKTUdITkJHRklIJCkfR0oxPzspPENDFh4eHiBUTVM8HxkOFBESFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mlsNA7HH4llgVw==\",\"senderTimestamp\":\"1770896104\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ivcDohpYVdZ8FKl2FSKlWlCN0GoX3mhcKbUJZ6QCkW0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899314,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:34.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:28:35'),
(4098, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:34.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:28:35'),
(4099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:34.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:28:35'),
(4100, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:34.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:28:35'),
(4101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:35.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:28:35'),
(4102, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168126578716679@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:34.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:28:35'),
(4103, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168126578716679@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/602172954_1523070495408849_1378968340009123515_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVHceyuMUrq9p3-wT-oNVclrfczmhgIK6wi1R60JXwLw&oe=699AC286&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:28:35.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:28:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4104, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6JB1oPEB6kEtQSmItBe8JHgN9fbsCec1yY6FmRl17g&oe=699AD79B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-DFFXfEOZM5G7OrFzJCaYwj3RgpNtBGIArr2nYTpxcA&oe=699ABF66&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHEco5hZM7j3rwSARxRyfdF6_guWU4uGnnUwpvKY2xnA&oe=699AC3F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXLsNpd0D60GDrnG8Oge-p1nGiXHu02zz8NXecS6qvA&oe=699AD828&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3EDskTlKssbDAxcBfD2gaDcamZMzzh9YW6RXPtIj5A&oe=699AC203&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKEVsxiJNPXFWBLB7AocpPAmF8CMTIairsrMOdGBXiWA&oe=699AD1F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjrXHiR70bqQiE-QWDMJetLxxOaK01cTXpyq-q3WTN7w&oe=699ACC8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxQVl6MwYgoEOv2yGtH9-NT4j3L-BONa2VBcqYS3ohoA&oe=699AC15A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUl_d2FNqAUmBpwyQNw59cQSc_xVj2bwFdsqMJXcjuhA&oe=699AC4F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1mZ5dKml9QTVUKJLcblpb8xEVo7r6jcTT5HGPPJFOeQ&oe=699AD62F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo9Ly_epqNBg7kopdRxfUg591VVAF5Q20QArkvSKR23w&oe=699AD38D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH04f4XeSYW0gDM8hSc_YFZ9NIcuSy5RlWlX7c9pVPzCA&oe=699AD8BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0iPr2AQ1589DFJNHFDEIajUQk4iN62rOEeVtges2cJw&oe=699AD755&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ1fV1fy-6I-vtxC_LbQvVBoTOX3G5n-QvzzjagBdf-g&oe=699ABE5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuJDEpB1vP3ZNmUclzZ44y8ECFsZrSyv-jiK6otb3OFA&oe=699ACCD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-0tA5IhsFFqzEr0CJgAqzKHK2GsAgsWn67Xt1_qagmQ&oe=699AD53B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8P3FCm-Ly4JCPOAGb2nPQLt4mudOXdtqbcG1C1UY_4Q&oe=699AD105&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRO7GfhtaUsbMrJBA7GtFTcVAKaAdBfIUtAyKgh_z-SQ&oe=699ABF12&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzNUTKXyzYkAlvtDy6r36LbYhW9iOPFwyX_NNwZPVAGg&oe=699AD4D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2NL7Am2MNjDjRavDn9KhzTLZEFbPXrHEjkeSQn_DJiA&oe=699ABEB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFBZNOA3cp2Dht-6QrlpEaCLxcBvERnbYdTTez9EO1WA&oe=699AD277&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL0xGkeMFO0NDXzmLMHShqhn2E5VqRY4M7BzFd3GvPPw&oe=699AC96E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoWzxJlUVs9qJbMreg9n_iMQuKWWFc3PLH6n51dFA2yg&oe=699AC86B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3sq9RMxuP8Cm7FPKFAjWFwkqnNO0XJY_f0nceEnwszw&oe=699AD9D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHYwAfAPJiI-JG5QHLlrcxrgIoEpU1ikGB9dt5k0imNg&oe=699ACF2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEifP26uOTb_y_tOA1L4dQV5EWP6-I2xXu4eh3hL8locg&oe=699AC1D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLCzfLatXOc1fVKlGfXO_VhmkI6tDFLXYnaXGDMbVkvA&oe=699AD6D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsfmNz53lvfKslFFA3iD-7uIm4K74Ijx_hMy3C4xOh8A&oe=699AC0F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUzJ8mPGi4Koh5V55H5_TnzlJ2TvzvbTj870yS2IH5jA&oe=699AC121&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyz4aV5MpZbH0MCaEfoDlPEqCcQiGNtnhNfVH_K9IcOw&oe=699AD8F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7ViR-OwY7t7IgufjWunbgPxqpnxfKfuGdRrhopjHxSQ&oe=699ABDB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZx9ny556sdVlO_BvM9I792Ja6IUNs2Mz1TbFTwUWiw&oe=699ACC80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOjlgsmPKyFLbHMoWHuitBKtotMh6-OHv5Na0B3ZCaMg&oe=699AD58E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoaAJEOGafZEgIpMYqKms-uy-Xw-n4yhM4qRYT1BNYxQ&oe=699AC212&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOfY0PNrbfnX_CWRZ5RUBCdx53Hxi2ZIaSaQkz6fJPmQ&oe=699AD3BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRQrRZ05k_ukpavYBzFtcH5JlAJm3Smy2YS96t7g6IA&oe=699AD890&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFa5SZ15XkgD29qzBVNbJaAW9VZm1yCWif--Q2euNULdw&oe=699ABC44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17YNzxGdUKwux6qvgsOpMir-uUiiNvZV84HA_XGHICg&oe=699AC37A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzOwQwgW1rvbYDCr5JLGBbmwLWRsqEF5sGFeiVVT8Aew&oe=699ABE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFla7NjMzjdVNMGk4gQ-1heUfxj7JBnBmfbDWolXb6Pvg&oe=699AD3F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuMy4mhZEu_g1jVmrJV8Gby5w9xTggb9udEskscOqPLA&oe=699AD0BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_4hvdGvIGMR1sMAPZjtz83mhyjOu8s9LQGnsg3o3Xiw&oe=699AD7C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGc-pqkWTW9x0xOxF2rQIYJ_TLSFppZH6o__ytuKoY6wQ&oe=699AC527&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcN6hVCSBU6YbNlSj8D8uORD_XK0-WmLwpsIllhVeVRA&oe=699AC7DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjPdT2q1g9B9ySgfuEYYXgJ_8bvkJxenFqy_7KLoRRMg&oe=699ACFC7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCug2NTYZxZIUoQ7opOEwHLnBmyTaKaH8qhbZbKkRsgg&oe=699ACB63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWRVbggZ-pPm08nkGvK69BLHD_qTdxOdioQl0Z5SnXsA&oe=699AD811&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS-BrxAMSO7HZCokJnL-79fq2w_8RgRk6GsWoqc5chUg&oe=699ACBB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDATf2LTwPc9In0srNh6NXHr-9bxzKMuKCto9-A16YxQ&oe=699AD2D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-rWoOUNQ-jKDDLff71RjGWrThqWLYgon1gPzLAhoIPg&oe=699AC23E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfTFCkR0QfmAexEyNRq9hRoSszcYxwBhtdFmmqaQycDg&oe=699ACA2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfRXu7R-fswi5-9i8J2k953XPaEhLLva7xREL8J8UScA&oe=699ACF07&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEk-XQqNWwsemdDZZgvUFsocwmmZRbkWZmjv5uq0_1GDw&oe=699ACBE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB8gfCCuAWsfUkXD0PufNqtulnH8BA6aS845W-9U_0eQ&oe=699AC10B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBFghwAghFWO7vITwOo5yX1nniZWOjAiEviZjR0o8Exg&oe=699ACFA0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMfT7GavHzbtRXWDLznK2bHWyjzNQi060YbOJuHmuDUQ&oe=699AD823&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFya49uSglntsUbDoY_K7XfeG3XeUPyoPjGZxN-94T-xw&oe=699AEBB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-12 09:29:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4105, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6JB1oPEB6kEtQSmItBe8JHgN9fbsCec1yY6FmRl17g&oe=699AD79B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-DFFXfEOZM5G7OrFzJCaYwj3RgpNtBGIArr2nYTpxcA&oe=699ABF66&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHEco5hZM7j3rwSARxRyfdF6_guWU4uGnnUwpvKY2xnA&oe=699AC3F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXLsNpd0D60GDrnG8Oge-p1nGiXHu02zz8NXecS6qvA&oe=699AD828&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3EDskTlKssbDAxcBfD2gaDcamZMzzh9YW6RXPtIj5A&oe=699AC203&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKEVsxiJNPXFWBLB7AocpPAmF8CMTIairsrMOdGBXiWA&oe=699AD1F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjrXHiR70bqQiE-QWDMJetLxxOaK01cTXpyq-q3WTN7w&oe=699ACC8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxQVl6MwYgoEOv2yGtH9-NT4j3L-BONa2VBcqYS3ohoA&oe=699AC15A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUl_d2FNqAUmBpwyQNw59cQSc_xVj2bwFdsqMJXcjuhA&oe=699AC4F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1mZ5dKml9QTVUKJLcblpb8xEVo7r6jcTT5HGPPJFOeQ&oe=699AD62F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo9Ly_epqNBg7kopdRxfUg591VVAF5Q20QArkvSKR23w&oe=699AD38D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH04f4XeSYW0gDM8hSc_YFZ9NIcuSy5RlWlX7c9pVPzCA&oe=699AD8BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0iPr2AQ1589DFJNHFDEIajUQk4iN62rOEeVtges2cJw&oe=699AD755&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ1fV1fy-6I-vtxC_LbQvVBoTOX3G5n-QvzzjagBdf-g&oe=699ABE5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuJDEpB1vP3ZNmUclzZ44y8ECFsZrSyv-jiK6otb3OFA&oe=699ACCD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-0tA5IhsFFqzEr0CJgAqzKHK2GsAgsWn67Xt1_qagmQ&oe=699AD53B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8P3FCm-Ly4JCPOAGb2nPQLt4mudOXdtqbcG1C1UY_4Q&oe=699AD105&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRO7GfhtaUsbMrJBA7GtFTcVAKaAdBfIUtAyKgh_z-SQ&oe=699ABF12&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzNUTKXyzYkAlvtDy6r36LbYhW9iOPFwyX_NNwZPVAGg&oe=699AD4D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2NL7Am2MNjDjRavDn9KhzTLZEFbPXrHEjkeSQn_DJiA&oe=699ABEB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFBZNOA3cp2Dht-6QrlpEaCLxcBvERnbYdTTez9EO1WA&oe=699AD277&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL0xGkeMFO0NDXzmLMHShqhn2E5VqRY4M7BzFd3GvPPw&oe=699AC96E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoWzxJlUVs9qJbMreg9n_iMQuKWWFc3PLH6n51dFA2yg&oe=699AC86B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3sq9RMxuP8Cm7FPKFAjWFwkqnNO0XJY_f0nceEnwszw&oe=699AD9D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHYwAfAPJiI-JG5QHLlrcxrgIoEpU1ikGB9dt5k0imNg&oe=699ACF2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEifP26uOTb_y_tOA1L4dQV5EWP6-I2xXu4eh3hL8locg&oe=699AC1D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLCzfLatXOc1fVKlGfXO_VhmkI6tDFLXYnaXGDMbVkvA&oe=699AD6D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsfmNz53lvfKslFFA3iD-7uIm4K74Ijx_hMy3C4xOh8A&oe=699AC0F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUzJ8mPGi4Koh5V55H5_TnzlJ2TvzvbTj870yS2IH5jA&oe=699AC121&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyz4aV5MpZbH0MCaEfoDlPEqCcQiGNtnhNfVH_K9IcOw&oe=699AD8F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7ViR-OwY7t7IgufjWunbgPxqpnxfKfuGdRrhopjHxSQ&oe=699ABDB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZx9ny556sdVlO_BvM9I792Ja6IUNs2Mz1TbFTwUWiw&oe=699ACC80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOjlgsmPKyFLbHMoWHuitBKtotMh6-OHv5Na0B3ZCaMg&oe=699AD58E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoaAJEOGafZEgIpMYqKms-uy-Xw-n4yhM4qRYT1BNYxQ&oe=699AC212&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOfY0PNrbfnX_CWRZ5RUBCdx53Hxi2ZIaSaQkz6fJPmQ&oe=699AD3BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRQrRZ05k_ukpavYBzFtcH5JlAJm3Smy2YS96t7g6IA&oe=699AD890&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFa5SZ15XkgD29qzBVNbJaAW9VZm1yCWif--Q2euNULdw&oe=699ABC44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17YNzxGdUKwux6qvgsOpMir-uUiiNvZV84HA_XGHICg&oe=699AC37A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzOwQwgW1rvbYDCr5JLGBbmwLWRsqEF5sGFeiVVT8Aew&oe=699ABE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFla7NjMzjdVNMGk4gQ-1heUfxj7JBnBmfbDWolXb6Pvg&oe=699AD3F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuMy4mhZEu_g1jVmrJV8Gby5w9xTggb9udEskscOqPLA&oe=699AD0BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_4hvdGvIGMR1sMAPZjtz83mhyjOu8s9LQGnsg3o3Xiw&oe=699AD7C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGc-pqkWTW9x0xOxF2rQIYJ_TLSFppZH6o__ytuKoY6wQ&oe=699AC527&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcN6hVCSBU6YbNlSj8D8uORD_XK0-WmLwpsIllhVeVRA&oe=699AC7DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjPdT2q1g9B9ySgfuEYYXgJ_8bvkJxenFqy_7KLoRRMg&oe=699ACFC7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCug2NTYZxZIUoQ7opOEwHLnBmyTaKaH8qhbZbKkRsgg&oe=699ACB63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWRVbggZ-pPm08nkGvK69BLHD_qTdxOdioQl0Z5SnXsA&oe=699AD811&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS-BrxAMSO7HZCokJnL-79fq2w_8RgRk6GsWoqc5chUg&oe=699ACBB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDATf2LTwPc9In0srNh6NXHr-9bxzKMuKCto9-A16YxQ&oe=699AD2D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-rWoOUNQ-jKDDLff71RjGWrThqWLYgon1gPzLAhoIPg&oe=699AC23E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfTFCkR0QfmAexEyNRq9hRoSszcYxwBhtdFmmqaQycDg&oe=699ACA2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfRXu7R-fswi5-9i8J2k953XPaEhLLva7xREL8J8UScA&oe=699ACF07&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEk-XQqNWwsemdDZZgvUFsocwmmZRbkWZmjv5uq0_1GDw&oe=699ACBE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB8gfCCuAWsfUkXD0PufNqtulnH8BA6aS845W-9U_0eQ&oe=699AC10B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBFghwAghFWO7vITwOo5yX1nniZWOjAiEviZjR0o8Exg&oe=699ACFA0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMfT7GavHzbtRXWDLznK2bHWyjzNQi060YbOJuHmuDUQ&oe=699AD823&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFya49uSglntsUbDoY_K7XfeG3XeUPyoPjGZxN-94T-xw&oe=699AEBB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-12 09:29:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4106, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6JB1oPEB6kEtQSmItBe8JHgN9fbsCec1yY6FmRl17g&oe=699AD79B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-DFFXfEOZM5G7OrFzJCaYwj3RgpNtBGIArr2nYTpxcA&oe=699ABF66&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHEco5hZM7j3rwSARxRyfdF6_guWU4uGnnUwpvKY2xnA&oe=699AC3F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXLsNpd0D60GDrnG8Oge-p1nGiXHu02zz8NXecS6qvA&oe=699AD828&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3EDskTlKssbDAxcBfD2gaDcamZMzzh9YW6RXPtIj5A&oe=699AC203&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKEVsxiJNPXFWBLB7AocpPAmF8CMTIairsrMOdGBXiWA&oe=699AD1F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjrXHiR70bqQiE-QWDMJetLxxOaK01cTXpyq-q3WTN7w&oe=699ACC8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxQVl6MwYgoEOv2yGtH9-NT4j3L-BONa2VBcqYS3ohoA&oe=699AC15A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUl_d2FNqAUmBpwyQNw59cQSc_xVj2bwFdsqMJXcjuhA&oe=699AC4F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1mZ5dKml9QTVUKJLcblpb8xEVo7r6jcTT5HGPPJFOeQ&oe=699AD62F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo9Ly_epqNBg7kopdRxfUg591VVAF5Q20QArkvSKR23w&oe=699AD38D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH04f4XeSYW0gDM8hSc_YFZ9NIcuSy5RlWlX7c9pVPzCA&oe=699AD8BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0iPr2AQ1589DFJNHFDEIajUQk4iN62rOEeVtges2cJw&oe=699AD755&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ1fV1fy-6I-vtxC_LbQvVBoTOX3G5n-QvzzjagBdf-g&oe=699ABE5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuJDEpB1vP3ZNmUclzZ44y8ECFsZrSyv-jiK6otb3OFA&oe=699ACCD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-0tA5IhsFFqzEr0CJgAqzKHK2GsAgsWn67Xt1_qagmQ&oe=699AD53B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8P3FCm-Ly4JCPOAGb2nPQLt4mudOXdtqbcG1C1UY_4Q&oe=699AD105&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRO7GfhtaUsbMrJBA7GtFTcVAKaAdBfIUtAyKgh_z-SQ&oe=699ABF12&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzNUTKXyzYkAlvtDy6r36LbYhW9iOPFwyX_NNwZPVAGg&oe=699AD4D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2NL7Am2MNjDjRavDn9KhzTLZEFbPXrHEjkeSQn_DJiA&oe=699ABEB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFBZNOA3cp2Dht-6QrlpEaCLxcBvERnbYdTTez9EO1WA&oe=699AD277&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL0xGkeMFO0NDXzmLMHShqhn2E5VqRY4M7BzFd3GvPPw&oe=699AC96E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoWzxJlUVs9qJbMreg9n_iMQuKWWFc3PLH6n51dFA2yg&oe=699AC86B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3sq9RMxuP8Cm7FPKFAjWFwkqnNO0XJY_f0nceEnwszw&oe=699AD9D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHYwAfAPJiI-JG5QHLlrcxrgIoEpU1ikGB9dt5k0imNg&oe=699ACF2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEifP26uOTb_y_tOA1L4dQV5EWP6-I2xXu4eh3hL8locg&oe=699AC1D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLCzfLatXOc1fVKlGfXO_VhmkI6tDFLXYnaXGDMbVkvA&oe=699AD6D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsfmNz53lvfKslFFA3iD-7uIm4K74Ijx_hMy3C4xOh8A&oe=699AC0F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUzJ8mPGi4Koh5V55H5_TnzlJ2TvzvbTj870yS2IH5jA&oe=699AC121&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyz4aV5MpZbH0MCaEfoDlPEqCcQiGNtnhNfVH_K9IcOw&oe=699AD8F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7ViR-OwY7t7IgufjWunbgPxqpnxfKfuGdRrhopjHxSQ&oe=699ABDB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZx9ny556sdVlO_BvM9I792Ja6IUNs2Mz1TbFTwUWiw&oe=699ACC80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOjlgsmPKyFLbHMoWHuitBKtotMh6-OHv5Na0B3ZCaMg&oe=699AD58E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoaAJEOGafZEgIpMYqKms-uy-Xw-n4yhM4qRYT1BNYxQ&oe=699AC212&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOfY0PNrbfnX_CWRZ5RUBCdx53Hxi2ZIaSaQkz6fJPmQ&oe=699AD3BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRQrRZ05k_ukpavYBzFtcH5JlAJm3Smy2YS96t7g6IA&oe=699AD890&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFa5SZ15XkgD29qzBVNbJaAW9VZm1yCWif--Q2euNULdw&oe=699ABC44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17YNzxGdUKwux6qvgsOpMir-uUiiNvZV84HA_XGHICg&oe=699AC37A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzOwQwgW1rvbYDCr5JLGBbmwLWRsqEF5sGFeiVVT8Aew&oe=699ABE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFla7NjMzjdVNMGk4gQ-1heUfxj7JBnBmfbDWolXb6Pvg&oe=699AD3F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuMy4mhZEu_g1jVmrJV8Gby5w9xTggb9udEskscOqPLA&oe=699AD0BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_4hvdGvIGMR1sMAPZjtz83mhyjOu8s9LQGnsg3o3Xiw&oe=699AD7C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGc-pqkWTW9x0xOxF2rQIYJ_TLSFppZH6o__ytuKoY6wQ&oe=699AC527&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcN6hVCSBU6YbNlSj8D8uORD_XK0-WmLwpsIllhVeVRA&oe=699AC7DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjPdT2q1g9B9ySgfuEYYXgJ_8bvkJxenFqy_7KLoRRMg&oe=699ACFC7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCug2NTYZxZIUoQ7opOEwHLnBmyTaKaH8qhbZbKkRsgg&oe=699ACB63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWRVbggZ-pPm08nkGvK69BLHD_qTdxOdioQl0Z5SnXsA&oe=699AD811&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS-BrxAMSO7HZCokJnL-79fq2w_8RgRk6GsWoqc5chUg&oe=699ACBB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDATf2LTwPc9In0srNh6NXHr-9bxzKMuKCto9-A16YxQ&oe=699AD2D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-rWoOUNQ-jKDDLff71RjGWrThqWLYgon1gPzLAhoIPg&oe=699AC23E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfTFCkR0QfmAexEyNRq9hRoSszcYxwBhtdFmmqaQycDg&oe=699ACA2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfRXu7R-fswi5-9i8J2k953XPaEhLLva7xREL8J8UScA&oe=699ACF07&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEk-XQqNWwsemdDZZgvUFsocwmmZRbkWZmjv5uq0_1GDw&oe=699ACBE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB8gfCCuAWsfUkXD0PufNqtulnH8BA6aS845W-9U_0eQ&oe=699AC10B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBFghwAghFWO7vITwOo5yX1nniZWOjAiEviZjR0o8Exg&oe=699ACFA0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMfT7GavHzbtRXWDLznK2bHWyjzNQi060YbOJuHmuDUQ&oe=699AD823&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFya49uSglntsUbDoY_K7XfeG3XeUPyoPjGZxN-94T-xw&oe=699AEBB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-12 09:29:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4107, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6JB1oPEB6kEtQSmItBe8JHgN9fbsCec1yY6FmRl17g&oe=699AD79B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-DFFXfEOZM5G7OrFzJCaYwj3RgpNtBGIArr2nYTpxcA&oe=699ABF66&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHEco5hZM7j3rwSARxRyfdF6_guWU4uGnnUwpvKY2xnA&oe=699AC3F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXLsNpd0D60GDrnG8Oge-p1nGiXHu02zz8NXecS6qvA&oe=699AD828&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3EDskTlKssbDAxcBfD2gaDcamZMzzh9YW6RXPtIj5A&oe=699AC203&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKEVsxiJNPXFWBLB7AocpPAmF8CMTIairsrMOdGBXiWA&oe=699AD1F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjrXHiR70bqQiE-QWDMJetLxxOaK01cTXpyq-q3WTN7w&oe=699ACC8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxQVl6MwYgoEOv2yGtH9-NT4j3L-BONa2VBcqYS3ohoA&oe=699AC15A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUl_d2FNqAUmBpwyQNw59cQSc_xVj2bwFdsqMJXcjuhA&oe=699AC4F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1mZ5dKml9QTVUKJLcblpb8xEVo7r6jcTT5HGPPJFOeQ&oe=699AD62F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo9Ly_epqNBg7kopdRxfUg591VVAF5Q20QArkvSKR23w&oe=699AD38D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH04f4XeSYW0gDM8hSc_YFZ9NIcuSy5RlWlX7c9pVPzCA&oe=699AD8BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0iPr2AQ1589DFJNHFDEIajUQk4iN62rOEeVtges2cJw&oe=699AD755&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ1fV1fy-6I-vtxC_LbQvVBoTOX3G5n-QvzzjagBdf-g&oe=699ABE5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuJDEpB1vP3ZNmUclzZ44y8ECFsZrSyv-jiK6otb3OFA&oe=699ACCD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-0tA5IhsFFqzEr0CJgAqzKHK2GsAgsWn67Xt1_qagmQ&oe=699AD53B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8P3FCm-Ly4JCPOAGb2nPQLt4mudOXdtqbcG1C1UY_4Q&oe=699AD105&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRO7GfhtaUsbMrJBA7GtFTcVAKaAdBfIUtAyKgh_z-SQ&oe=699ABF12&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzNUTKXyzYkAlvtDy6r36LbYhW9iOPFwyX_NNwZPVAGg&oe=699AD4D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2NL7Am2MNjDjRavDn9KhzTLZEFbPXrHEjkeSQn_DJiA&oe=699ABEB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFBZNOA3cp2Dht-6QrlpEaCLxcBvERnbYdTTez9EO1WA&oe=699AD277&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL0xGkeMFO0NDXzmLMHShqhn2E5VqRY4M7BzFd3GvPPw&oe=699AC96E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoWzxJlUVs9qJbMreg9n_iMQuKWWFc3PLH6n51dFA2yg&oe=699AC86B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3sq9RMxuP8Cm7FPKFAjWFwkqnNO0XJY_f0nceEnwszw&oe=699AD9D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHYwAfAPJiI-JG5QHLlrcxrgIoEpU1ikGB9dt5k0imNg&oe=699ACF2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEifP26uOTb_y_tOA1L4dQV5EWP6-I2xXu4eh3hL8locg&oe=699AC1D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLCzfLatXOc1fVKlGfXO_VhmkI6tDFLXYnaXGDMbVkvA&oe=699AD6D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsfmNz53lvfKslFFA3iD-7uIm4K74Ijx_hMy3C4xOh8A&oe=699AC0F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUzJ8mPGi4Koh5V55H5_TnzlJ2TvzvbTj870yS2IH5jA&oe=699AC121&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyz4aV5MpZbH0MCaEfoDlPEqCcQiGNtnhNfVH_K9IcOw&oe=699AD8F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7ViR-OwY7t7IgufjWunbgPxqpnxfKfuGdRrhopjHxSQ&oe=699ABDB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZx9ny556sdVlO_BvM9I792Ja6IUNs2Mz1TbFTwUWiw&oe=699ACC80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOjlgsmPKyFLbHMoWHuitBKtotMh6-OHv5Na0B3ZCaMg&oe=699AD58E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoaAJEOGafZEgIpMYqKms-uy-Xw-n4yhM4qRYT1BNYxQ&oe=699AC212&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOfY0PNrbfnX_CWRZ5RUBCdx53Hxi2ZIaSaQkz6fJPmQ&oe=699AD3BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRQrRZ05k_ukpavYBzFtcH5JlAJm3Smy2YS96t7g6IA&oe=699AD890&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFa5SZ15XkgD29qzBVNbJaAW9VZm1yCWif--Q2euNULdw&oe=699ABC44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17YNzxGdUKwux6qvgsOpMir-uUiiNvZV84HA_XGHICg&oe=699AC37A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzOwQwgW1rvbYDCr5JLGBbmwLWRsqEF5sGFeiVVT8Aew&oe=699ABE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFla7NjMzjdVNMGk4gQ-1heUfxj7JBnBmfbDWolXb6Pvg&oe=699AD3F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuMy4mhZEu_g1jVmrJV8Gby5w9xTggb9udEskscOqPLA&oe=699AD0BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_4hvdGvIGMR1sMAPZjtz83mhyjOu8s9LQGnsg3o3Xiw&oe=699AD7C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGc-pqkWTW9x0xOxF2rQIYJ_TLSFppZH6o__ytuKoY6wQ&oe=699AC527&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcN6hVCSBU6YbNlSj8D8uORD_XK0-WmLwpsIllhVeVRA&oe=699AC7DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjPdT2q1g9B9ySgfuEYYXgJ_8bvkJxenFqy_7KLoRRMg&oe=699ACFC7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCug2NTYZxZIUoQ7opOEwHLnBmyTaKaH8qhbZbKkRsgg&oe=699ACB63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWRVbggZ-pPm08nkGvK69BLHD_qTdxOdioQl0Z5SnXsA&oe=699AD811&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS-BrxAMSO7HZCokJnL-79fq2w_8RgRk6GsWoqc5chUg&oe=699ACBB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDATf2LTwPc9In0srNh6NXHr-9bxzKMuKCto9-A16YxQ&oe=699AD2D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-rWoOUNQ-jKDDLff71RjGWrThqWLYgon1gPzLAhoIPg&oe=699AC23E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfTFCkR0QfmAexEyNRq9hRoSszcYxwBhtdFmmqaQycDg&oe=699ACA2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfRXu7R-fswi5-9i8J2k953XPaEhLLva7xREL8J8UScA&oe=699ACF07&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEk-XQqNWwsemdDZZgvUFsocwmmZRbkWZmjv5uq0_1GDw&oe=699ACBE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB8gfCCuAWsfUkXD0PufNqtulnH8BA6aS845W-9U_0eQ&oe=699AC10B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBFghwAghFWO7vITwOo5yX1nniZWOjAiEviZjR0o8Exg&oe=699ACFA0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMfT7GavHzbtRXWDLznK2bHWyjzNQi060YbOJuHmuDUQ&oe=699AD823&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFya49uSglntsUbDoY_K7XfeG3XeUPyoPjGZxN-94T-xw&oe=699AEBB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441994779_485466277793908_3651441752899156590_n.j', 0, '2026-02-12 09:29:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4108, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:25.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:29:25'),
(4109, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":true,\"id\":\"A5EFBA1D9C2917D17FB67B3DFB10BC69\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770899365,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:25.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:29:25'),
(4110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0ImfnXCcivvojJjvqKmKKHDSfPdXFQl2x3e3YnZklFQ&oe=699AED9B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:25.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:29:25'),
(4111, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76403307491437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:25.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:29:26'),
(4112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"76403307491437@lid\",\"fromMe\":true,\"id\":\"A5EFBA1D9C2917D17FB67B3DFB10BC69\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770899365,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:25.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:29:26'),
(4113, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"76403307491437@lid\",\"pushName\":\"Edmilson\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425328_1082208616204024_8063840075571261799_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0ImfnXCcivvojJjvqKmKKHDSfPdXFQl2x3e3YnZklFQ&oe=699AED9B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:25.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:29:26'),
(4114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"76403307491437@lid\",\"id\":\"A5EFBA1D9C2917D17FB67B3DFB10BC69\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899366052,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:26.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:29:26'),
(4115, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"76403307491437@lid\",\"id\":\"A5EFBA1D9C2917D17FB67B3DFB10BC69\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899366052,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:29:26.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:29:26'),
(4116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vless:\\/\\/52031642-5900-42e3-8022-e12221cac73f@141.193.213.10:80?path=%2Fws%2F&security=none&fragment=80-250%2C10-100%2Ctlshello&encryption=none&host=softwar.shop&type=ws#ti8088\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770899411,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:12'),
(4117, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vless:\\/\\/52031642-5900-42e3-8022-e12221cac73f@141.193.213.10:80?path=%2Fws%2F&security=none&fragment=80-250%2C10-100%2Ctlshello&encryption=none&host=softwar.shop&type=ws#ti8088\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770899411,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:12'),
(4118, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:12'),
(4119, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:12'),
(4120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:12'),
(4121, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899412612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:13'),
(4122, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899412612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:13'),
(4123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:12.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:13'),
(4124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634683059_1831790927522336_7069285463251493592_n.enc?ccb=11-4&oh=01_Q5Aa3wEQrqAq7XRNpqjjkvwY9wn4WKch-SHTIuxhnHTn9bSxsw&oe=69B54D56&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Kj4JtN5tekjMrZduEdr7C\\/oM3ubbqA5RmF+pAESgPJU=\",\"fileLength\":\"16155\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"xYGH7RORuPhXBWVjm2vm0ykvpgT9DVRS\\/BVZ+G96jbI=\",\"fileEncSha256\":\"l+R5DctClCCnFgvm\\/GBFLmH4W37cPBwAdfg59o3GZBY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634683059_1831790927522336_7069285463251493592_n.enc?ccb=11-4&oh=01_Q5Aa3wEQrqAq7XRNpqjjkvwY9wn4WKch-SHTIuxhnHTn9bSxsw&oe=69B54D56&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899414\",\"waveform\":\"AERNPENEXlUvTkM\\/TklVRypTVTpWWlFOIypOUFVVUUsbVFZJU0pYSlNPAAAAAAAAFBw5WVNGLwtYLUZAR0pDSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899421,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:21'),
(4125, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:21'),
(4126, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634683059_1831790927522336_7069285463251493592_n.enc?ccb=11-4&oh=01_Q5Aa3wEQrqAq7XRNpqjjkvwY9wn4WKch-SHTIuxhnHTn9bSxsw&oe=69B54D56&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Kj4JtN5tekjMrZduEdr7C\\/oM3ubbqA5RmF+pAESgPJU=\",\"fileLength\":\"16155\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"xYGH7RORuPhXBWVjm2vm0ykvpgT9DVRS\\/BVZ+G96jbI=\",\"fileEncSha256\":\"l+R5DctClCCnFgvm\\/GBFLmH4W37cPBwAdfg59o3GZBY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634683059_1831790927522336_7069285463251493592_n.enc?ccb=11-4&oh=01_Q5Aa3wEQrqAq7XRNpqjjkvwY9wn4WKch-SHTIuxhnHTn9bSxsw&oe=69B54D56&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899414\",\"waveform\":\"AERNPENEXlUvTkM\\/TklVRypTVTpWWlFOIypOUFVVUUsbVFZJU0pYSlNPAAAAAAAAFBw5WVNGLwtYLUZAR0pDSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899421,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:21'),
(4127, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:21'),
(4128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:21'),
(4129, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899421968,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:22'),
(4130, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899421968,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:22'),
(4131, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:21.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:22'),
(4132, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A574B2749DAFC76DAB610B792B481323\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634801622_1449097726937009_3041866449593950186_n.enc?ccb=11-4&oh=01_Q5Aa3wETNggsgr78BedYMZxenmUtLIi0XsIX7cIqCGOYhkIhcQ&oe=69B54E10&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jT36uUaJc3zp2+MXNT2dxupgFbxlEbYEUzRMfbmBQCQ=\",\"fileLength\":\"2876\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"ACfoxrcpwKnOvl92tXE5vz+u+trcqJ8cA3affwDENy0=\",\"fileEncSha256\":\"E+uQA8wg0XV0E+Y\\/kizYY1kqbIXflO+CYk8w+xzSKl0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634801622_1449097726937009_3041866449593950186_n.enc?ccb=11-4&oh=01_Q5Aa3wETNggsgr78BedYMZxenmUtLIi0XsIX7cIqCGOYhkIhcQ&oe=69B54E10&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899422\",\"waveform\":\"AAAABxwwPUdSU1VWU1BNS0pMT1FTVFRTUlJSTUE0KSAXKTxLU1pdXV5ZVEgwGBETFhofHxkTHjJGS1FRSD8tVQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899423,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:23'),
(4133, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:23'),
(4134, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:23'),
(4135, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A574B2749DAFC76DAB610B792B481323\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634801622_1449097726937009_3041866449593950186_n.enc?ccb=11-4&oh=01_Q5Aa3wETNggsgr78BedYMZxenmUtLIi0XsIX7cIqCGOYhkIhcQ&oe=69B54E10&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jT36uUaJc3zp2+MXNT2dxupgFbxlEbYEUzRMfbmBQCQ=\",\"fileLength\":\"2876\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"ACfoxrcpwKnOvl92tXE5vz+u+trcqJ8cA3affwDENy0=\",\"fileEncSha256\":\"E+uQA8wg0XV0E+Y\\/kizYY1kqbIXflO+CYk8w+xzSKl0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634801622_1449097726937009_3041866449593950186_n.enc?ccb=11-4&oh=01_Q5Aa3wETNggsgr78BedYMZxenmUtLIi0XsIX7cIqCGOYhkIhcQ&oe=69B54E10&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899422\",\"waveform\":\"AAAABxwwPUdSU1VWU1BNS0pMT1FTVFRTUlJSTUE0KSAXKTxLU1pdXV5ZVEgwGBETFhofHxkTHjJGS1FRSD8tVQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899423,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:23'),
(4136, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:23'),
(4137, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899423885,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:24'),
(4138, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:24'),
(4139, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899423885,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:23.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:24'),
(4140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:55.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:55'),
(4141, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:55.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:55'),
(4142, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587585294_1089218530011587_7733929617376854998_n.enc?ccb=11-4&oh=01_Q5Aa3wH75JzJgJ0EziubDJ7Oy3P1egXVaVLi9zZB6SFcx5wjaA&oe=69B5466E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eRbTAuedEkEfZ7NLTsDgpSgu3lNRxCJC7S4N7VFzY28=\",\"fileLength\":\"46998\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"0uZS+zInORTc1Jdo9OzidwbCdXCY5NGJkD6gd7N7dSw=\",\"fileEncSha256\":\"LxXATrqg+975MvzwxZXXxVihdj1DjL1lUvECTJvUFBo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587585294_1089218530011587_7733929617376854998_n.enc?ccb=11-4&oh=01_Q5Aa3wH75JzJgJ0EziubDJ7Oy3P1egXVaVLi9zZB6SFcx5wjaA&oe=69B5466E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899435\",\"waveform\":\"AFVXODFMAE05TFFKTkZKAAE+Rh1SRkpUAkROSkFCMk0wAQAATkswPDYxREtRUiApRUBGIQAAJj0\\/VFM2CD8GAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:55.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:55'),
(4143, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:55.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:56'),
(4144, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587585294_1089218530011587_7733929617376854998_n.enc?ccb=11-4&oh=01_Q5Aa3wH75JzJgJ0EziubDJ7Oy3P1egXVaVLi9zZB6SFcx5wjaA&oe=69B5466E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eRbTAuedEkEfZ7NLTsDgpSgu3lNRxCJC7S4N7VFzY28=\",\"fileLength\":\"46998\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"0uZS+zInORTc1Jdo9OzidwbCdXCY5NGJkD6gd7N7dSw=\",\"fileEncSha256\":\"LxXATrqg+975MvzwxZXXxVihdj1DjL1lUvECTJvUFBo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587585294_1089218530011587_7733929617376854998_n.enc?ccb=11-4&oh=01_Q5Aa3wH75JzJgJ0EziubDJ7Oy3P1egXVaVLi9zZB6SFcx5wjaA&oe=69B5466E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770899435\",\"waveform\":\"AFVXODFMAE05TFFKTkZKAAE+Rh1SRkpUAkROSkFCMk0wAQAATkswPDYxREtRUiApRUBGIQAAJj0\\/VFM2CD8GAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770899455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:55.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:56'),
(4145, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:55.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:56'),
(4146, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899457341,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:57.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:30:57'),
(4147, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899457341,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:30:57.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:30:57'),
(4148, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A5CA967F865CA30AD2C66F30C3C40A4F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770899467,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:07.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:07'),
(4149, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:07.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:07'),
(4150, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A5CA967F865CA30AD2C66F30C3C40A4F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770899467,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:07.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:07'),
(4151, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:07.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:07'),
(4152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:07.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:07'),
(4153, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:08'),
(4154, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:07.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:08'),
(4155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231937008476412@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:08'),
(4156, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A505F218C14EE28C5DF9FB7D7AD7B87C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899468880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:08'),
(4157, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A505F218C14EE28C5DF9FB7D7AD7B87C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wFRqaGfiHwFbKr5iJncXobX559yyw7cCkRz57wTl0x3fQ&oe=69B520D5&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"dwbJmaV\\/L5R22dYqcF26i67l5cWBQjGLBUPrCCp5ewU=\",\"mediaKey\":\"LG5VFSBgqkLFgvv+QX\\/rVG3l8r2d+yD\\/chwIXEZ3ww8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wFRqaGfiHwFbKr5iJncXobX559yyw7cCkRz57wTl0x3fQ&oe=69B520D5&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1770729603\",\"isAnimated\":false,\"stickerSentTs\":\"1770899468075\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770899468,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:08'),
(4158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231937008476412@lid\",\"fromMe\":true,\"id\":\"A505F218C14EE28C5DF9FB7D7AD7B87C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wFRqaGfiHwFbKr5iJncXobX559yyw7cCkRz57wTl0x3fQ&oe=69B520D5&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"dwbJmaV\\/L5R22dYqcF26i67l5cWBQjGLBUPrCCp5ewU=\",\"mediaKey\":\"LG5VFSBgqkLFgvv+QX\\/rVG3l8r2d+yD\\/chwIXEZ3ww8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/587215458_826132893819229_6140376590101408216_n.enc?ccb=11-4&oh=01_Q5Aa3wFRqaGfiHwFbKr5iJncXobX559yyw7cCkRz57wTl0x3fQ&oe=69B520D5&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1770729603\",\"isAnimated\":false,\"stickerSentTs\":\"1770899468075\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770899468,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:09'),
(4159, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A505F218C14EE28C5DF9FB7D7AD7B87C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899468880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:09'),
(4160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5CA967F865CA30AD2C66F30C3C40A4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899468767,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:09'),
(4161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:31:09'),
(4162, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5CA967F865CA30AD2C66F30C3C40A4F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899468767,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:10'),
(4163, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231937008476412@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/310336881_538648978073541_3916206081698856764_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOAoz9W-bRn_7xG50h1pI0K2LZbMM74Yz4CzuAc7kazw&oe=699AD571&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:31:08.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:31:10'),
(4164, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"ACE834BBFC43CCBB69B55616D3BE55A9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899602577,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:33:22.578Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:33:22'),
(4165, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC17E31631A8F46A07DCDFA863D655EA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899602598,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:33:22.598Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:33:22'),
(4166, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"136627624141001:24@lid\",\"id\":\"AC2F77E2E181F4B3EC42AF559DE37850\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770899602588,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:33:22.588Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:33:22'),
(4167, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB0AEC5B9BF81B262DCFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899658667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:34:18.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:34:18'),
(4168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB0AEC5B9BF81B262DCFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899658667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:34:18.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:18'),
(4169, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB04FFE70B8434E99F8BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899658677,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:34:18.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:34:19'),
(4170, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"3EB04FFE70B8434E99F8BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899658677,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:34:18.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:19'),
(4171, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T09:34:41.139Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:41'),
(4172, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T09:34:41.662Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:41'),
(4173, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T09:34:41.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:41'),
(4174, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"Edson Marques\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:34:41.874Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:41'),
(4175, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3EB008635464D1F1B289B4\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"Voce recebe os valores na conta corrente do CNPJ, correto?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"ftWfke3N5u2MvA==\",\"senderTimestamp\":\"1770817557\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KzhmiZb3pKqbs6PKm11BwU8XB7sBVrAnEoqU+9p0mBQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770899681,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T09:34:41.663Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:42'),
(4176, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3EB0B1C7847C5E188A8ECA\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"se está recebendo valores maior que o limite mensal de R$ 6.750,00 no MEI\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"ftWfke3N5u2MvA==\",\"senderTimestamp\":\"1770817557\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L27QTRzhQcdJjFr8S\\/4wVRlfNUxN05W+0m+dLWQwUXM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770899698,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T09:34:58.235Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:58'),
(4177, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T09:34:58.234Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:58');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4178, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"Edson Marques\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:34:58.622Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:58'),
(4179, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T09:34:58.420Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:34:58'),
(4180, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T09:35:25.876Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:35:25'),
(4181, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"136627624141001@lid\",\"fromMe\":false,\"id\":\"3EB0433263394D3B5A18D1\"},\"pushName\":\"Edson Marques\",\"message\":{\"conversation\":\"fica sujeito ao desenquadramento do MEI, não é uma regra, mas, há um risco.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"ftWfke3N5u2MvA==\",\"senderTimestamp\":\"1770817557\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c\\/DrzsA2ndisAEvWj6ywLWBBTh29vvjNY\\/pKg56zCyY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770899725,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T09:35:25.877Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:35:25'),
(4182, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"136627624141001@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T09:35:26.059Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:35:26'),
(4183, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"136627624141001@lid\",\"pushName\":\"Edson Marques\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T09:35:26.260Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:35:26'),
(4184, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:40.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:39:41'),
(4185, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":true,\"id\":\"A5DEB09E752767B4D9F52B63CC96FB7D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"stickerSentTs\":\"1770899980099\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770899980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:40.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:39:41'),
(4186, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"260373986992181@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:40.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:39:41'),
(4187, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"260373986992181@lid\",\"fromMe\":true,\"id\":\"A5DEB09E752767B4D9F52B63CC96FB7D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"stickerSentTs\":\"1770899980099\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1746551315\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770899980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:40.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:39:41'),
(4188, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:41.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:39:41'),
(4189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"260373986992181@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554938369_2012099716314656_4500645575897082109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC5f1jg7fCe3CbY2nacMnC7RUNrzIBjPNuHhUtbmNukw&oe=699AE131&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:41.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:39:42'),
(4190, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5DEB09E752767B4D9F52B63CC96FB7D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899981106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:41.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:39:42'),
(4191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5DEB09E752767B4D9F52B63CC96FB7D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770899981106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:39:41.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:39:42'),
(4192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900048483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:40:48.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:40:48'),
(4193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900048453,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:40:48.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:40:48'),
(4194, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900048473,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:40:48.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:40:48'),
(4195, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900048483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:40:48.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:40:48'),
(4196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900048453,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:40:48.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:40:48'),
(4197, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900048473,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:40:48.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:40:48'),
(4198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9204007AC0C04E67342A234B59CCAD\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Bom dia meu irmão se tá baum\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"R5nOUsmku4aGN4y49hsDAPlvbmXngp7JZJesknF0oKw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:19'),
(4199, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:19'),
(4200, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:19'),
(4201, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9204007AC0C04E67342A234B59CCAD\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Bom dia meu irmão se tá baum\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"R5nOUsmku4aGN4y49hsDAPlvbmXngp7JZJesknF0oKw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:19'),
(4202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:19'),
(4203, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:19'),
(4204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:20'),
(4205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:19.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:20'),
(4206, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5DEB09E752767B4D9F52B63CC96FB7D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900081848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:21.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:21'),
(4207, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"260373986992181@lid\",\"id\":\"A5DEB09E752767B4D9F52B63CC96FB7D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900081848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:21.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:22'),
(4208, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:31.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:32'),
(4209, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9FFC254C8ABE4A80353BD80FFC8B70\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Deixa te perguntar não tem como colocar o Bob no outro ponto não\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yIzop+RZVKB3X39WmKlNj0eNFU5pS5WmTYfRXztJJQU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900091,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:31.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:32'),
(4210, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:31.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:32'),
(4211, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9FFC254C8ABE4A80353BD80FFC8B70\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Deixa te perguntar não tem como colocar o Bob no outro ponto não\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yIzop+RZVKB3X39WmKlNj0eNFU5pS5WmTYfRXztJJQU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900091,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:31.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:32'),
(4212, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:32.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:32'),
(4213, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:32.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:33'),
(4214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:32.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:33'),
(4215, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:32.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:33'),
(4216, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:37'),
(4217, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC8240BBE9F34FC7DE00F937D1CAAF94\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Estou usando o mais TV\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AGp935FdCUSiGBCSRFFI97U382EGSVKy3giFxBsci80=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900097,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:37'),
(4218, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC8240BBE9F34FC7DE00F937D1CAAF94\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Estou usando o mais TV\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AGp935FdCUSiGBCSRFFI97U382EGSVKy3giFxBsci80=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900097,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:37'),
(4219, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:37'),
(4220, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:37'),
(4221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:38'),
(4222, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:38'),
(4223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:37.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:38'),
(4224, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:44'),
(4225, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC36CA7DDF40B3BFD16C49599FF55E78\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Cara mais vira e mexe a tela fica preta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iKHJRlVNaN\\/+IpRXR5xiJgBqbDSSzfzrPMP9vMiYCH0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900104,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:44'),
(4226, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:44'),
(4227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC36CA7DDF40B3BFD16C49599FF55E78\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Cara mais vira e mexe a tela fica preta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iKHJRlVNaN\\/+IpRXR5xiJgBqbDSSzfzrPMP9vMiYCH0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900104,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:44'),
(4228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:44'),
(4229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:45'),
(4230, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:45'),
(4231, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:45'),
(4232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACCFB0EEB40E30F5CB16919899BC4152\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Traba\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H0edGoup5es8+S44O0XAo8eIligq5gp5Z5QlDWzpwYQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900105,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:45'),
(4233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:44.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:45'),
(4234, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:46'),
(4235, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACCFB0EEB40E30F5CB16919899BC4152\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Traba\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H0edGoup5es8+S44O0XAo8eIligq5gp5Z5QlDWzpwYQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900105,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:46'),
(4236, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:46'),
(4237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:46'),
(4238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:46'),
(4239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"pushName\":\"Bruno Marcel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:45.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:47'),
(4240, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:52.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:52'),
(4241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:52.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:52'),
(4242, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:55'),
(4243, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC3B07332A599B1D52574D6A49D45B65\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"O Bob é fera\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rV881gq+Z5e4VGBuBF2VsBabPbCHvLmsdKotd2xwyGI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900115,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:55'),
(4244, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:55'),
(4245, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC3B07332A599B1D52574D6A49D45B65\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"O Bob é fera\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rV881gq+Z5e4VGBuBF2VsBabPbCHvLmsdKotd2xwyGI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900115,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:55'),
(4246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:55'),
(4247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:56'),
(4248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:41:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:41:55.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:41:56'),
(4250, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900276702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:36.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:37'),
(4251, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900276716,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:36.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:37'),
(4252, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900276709,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:36.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:37'),
(4253, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5C396C8ABCBC1964D98A85BE2A81377\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900276702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:36.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:37'),
(4254, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900276716,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:36.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:37'),
(4255, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900276709,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:36.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:37'),
(4256, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770900280095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:40.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:40'),
(4257, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5F0641FD0B71121B1998EB6D8A8EA65\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770900280095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:40.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:40'),
(4258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770900288127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:48.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:48'),
(4259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A574B2749DAFC76DAB610B792B481323\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770900288127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:48.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:48'),
(4260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A7FF83742D95796DFFC\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591759083_1809603106395136_3761010952029145170_n.enc?ccb=11-4&oh=01_Q5Aa3wFFstekXO0l0utP5YVUzrIUVWhBAnfeFxyxOO-uGJ7vXg&oe=69B52B98&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WF5eKqUaMDqDVoD41S3YR6ubjKj25owynt2squtT4M4=\",\"fileLength\":\"6302\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"vSL88Ua\\/Ugfm+CWsyL17Hne18SVu5\\/c6HDYQk4y\\/zho=\",\"fileEncSha256\":\"zI1NO8oY36AkBgaF3sNvaSe2UkaPMYevWCCAtbB\\/u0k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591759083_1809603106395136_3761010952029145170_n.enc?ccb=11-4&oh=01_Q5Aa3wFFstekXO0l0utP5YVUzrIUVWhBAnfeFxyxOO-uGJ7vXg&oe=69B52B98&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770900290\",\"streamingSidecar\":\"H\\/RA3cYiCxqsnA==\",\"waveform\":\"ABkyTGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZF5WTkZERkdISUlJSU5VXGNkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770900048\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HN61dQtwrSQA8mzebyDKizl\\/VmTL0CbJ2\\/wwW1VfoJ4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770900294,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:55'),
(4261, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A7FF83742D95796DFFC\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591759083_1809603106395136_3761010952029145170_n.enc?ccb=11-4&oh=01_Q5Aa3wFFstekXO0l0utP5YVUzrIUVWhBAnfeFxyxOO-uGJ7vXg&oe=69B52B98&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WF5eKqUaMDqDVoD41S3YR6ubjKj25owynt2squtT4M4=\",\"fileLength\":\"6302\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"vSL88Ua\\/Ugfm+CWsyL17Hne18SVu5\\/c6HDYQk4y\\/zho=\",\"fileEncSha256\":\"zI1NO8oY36AkBgaF3sNvaSe2UkaPMYevWCCAtbB\\/u0k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591759083_1809603106395136_3761010952029145170_n.enc?ccb=11-4&oh=01_Q5Aa3wFFstekXO0l0utP5YVUzrIUVWhBAnfeFxyxOO-uGJ7vXg&oe=69B52B98&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770900290\",\"streamingSidecar\":\"H\\/RA3cYiCxqsnA==\",\"waveform\":\"ABkyTGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZF5WTkZERkdISUlJSU5VXGNkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770900048\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HN61dQtwrSQA8mzebyDKizl\\/VmTL0CbJ2\\/wwW1VfoJ4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770900294,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:55'),
(4262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:55'),
(4263, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:55'),
(4264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:44:55'),
(4265, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:56'),
(4266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:56'),
(4267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:44:55.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:44:56'),
(4268, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900647971,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:50:47.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:50:48'),
(4269, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770900648081,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:50:48.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:50:48'),
(4270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900647971,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:50:47.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:50:48'),
(4271, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A58F4AE962A2425DEF94F0C1A1BF690D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770900648081,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:50:48.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:50:48'),
(4272, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:51:40'),
(4273, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACE3F56A704312BE3B9A14A54D95EDD3\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Bom dia mais antes eu conseguia usar agora não até os vídeos está travando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Au0t\\/OkbT8wvxcEcy8qCE9U3aOFvMxs9QTvV2g4MdHk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900700,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:51:40'),
(4274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:51:40'),
(4275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":false,\"id\":\"ACE3F56A704312BE3B9A14A54D95EDD3\"},\"pushName\":\"josiane Antonio\",\"message\":{\"conversation\":\"Bom dia mais antes eu conseguia usar agora não até os vídeos está travando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Au0t\\/OkbT8wvxcEcy8qCE9U3aOFvMxs9QTvV2g4MdHk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770900700,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:51:40'),
(4276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:51:40'),
(4277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:51:41'),
(4278, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:51:41'),
(4279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:51:40.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:51:41'),
(4280, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29691243155491@lid\",\"id\":\"A5EA49D8B6076E775CBA0D158B4A81E3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900757110,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:52:37.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:52:37'),
(4281, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29691243155491@lid\",\"id\":\"A5EA49D8B6076E775CBA0D158B4A81E3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900757110,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:52:37.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:52:37'),
(4282, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29691243155491@lid\",\"id\":\"A56451DA8C454A5133010816328B6C9B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900757104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:52:37.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:52:37'),
(4283, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29691243155491@lid\",\"id\":\"A56451DA8C454A5133010816328B6C9B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770900757104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:52:37.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 09:52:37'),
(4284, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A547322ADEB75D65B2AC9118E150DA84\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810046,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 09:53:30'),
(4285, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A547322ADEB75D65B2AC9118E150DA84\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810046,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:30'),
(4286, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A57068ACB9779F5843CE8C241480E175\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 09:53:30'),
(4287, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A5E9E12577B0FCA238BE92C84AE67954\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 09:53:30'),
(4288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A58873D1854E4D411332D66E883E6DE6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810052,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 09:53:30'),
(4289, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A52A0C6A83A94755ACEE55E18D238108\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810029,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 09:53:30'),
(4290, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A5560C70FAAC2526C624254F29262A1F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 09:53:30'),
(4291, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A5C5BD6BBB39578544319FE6CBBACF4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:53:30'),
(4292, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A577621A1DF5B83ECF19A5F53AF78533\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 09:53:30'),
(4293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A58873D1854E4D411332D66E883E6DE6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810052,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:31'),
(4294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A57068ACB9779F5843CE8C241480E175\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:31'),
(4295, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A5560C70FAAC2526C624254F29262A1F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:31'),
(4296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A5E9E12577B0FCA238BE92C84AE67954\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:31'),
(4297, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A52A0C6A83A94755ACEE55E18D238108\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810029,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:31'),
(4298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A577621A1DF5B83ECF19A5F53AF78533\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:32'),
(4299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"235347111878680:5@lid\",\"id\":\"A5C5BD6BBB39578544319FE6CBBACF4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770900810042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T09:53:30.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 09:53:32'),
(4300, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"241888380645433@lid\",\"fromMe\":true,\"id\":\"AC7285EF9C694B362F30CA36314323FE\"},\"pushName\":\"~Johnny\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/586179837_2804790359714777_5734001784559148494_n.enc?ccb=11-4&oh=01_Q5Aa3wHD0GX2dnAjqA0jIEc0ltIKp-Iuq-p8A-nYkT4c8LTr6A&oe=69B53999&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"dsjTREmVrvZL5q3QcbZ6+qiuaS6i7tUG08\\/e0WMAwU0=\",\"fileLength\":\"126497\",\"height\":1600,\"width\":738,\"mediaKey\":\"j8w6HWvyEYRiH+iHtBJiux84TICAGC8GIoXbhmOJrv8=\",\"fileEncSha256\":\"+Sd8YkBT7bEBB4gZe20iAhq0bzTcy6RNrHJG8AGNHyE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/586179837_2804790359714777_5734001784559148494_n.enc?ccb=11-4&oh=01_Q5Aa3wHD0GX2dnAjqA0jIEc0ltIKp-Iuq-p8A-nYkT4c8LTr6A&oe=69B53999&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAEBAQEBAQAAAAAAAAAAAAACAAMBBAYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAA+h6Ms59FgjS4VcIXETlKQHXu9HQxKiwpP\\/\\/EACUQAAICAQMCBwEAAAAAAAAAAAERAAIhAyMxElEQICIyQUJhUv\\/aAAgBAQABPwA9zBZMCMmD3MyzWBFdz155leA538lhjEep+Tc+VAbPMUdu0dv5gtYlGvgQCeZ0DvEpa2UjAKs4MCH1MM3HhKbn5N15UtaoTM6A3AxOZq6A1Uyp\\/8QAGREAAgMBAAAAAAAAAAAAAAAAABEQEiEg\\/9oACAECAQE\\/AGWhmm8\\/\\/8QAGREBAQEAAwAAAAAAAAAAAAAAAQAREiAi\\/9oACAEDAQE\\/AFxuUtpO3rogmN\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7p71DFB5TflxmCBT+ziot\\/c2mRqWPUA\\/kQ4fsyoSJe4OBoJDFZXnxA==\",\"scanLengths\":[9847,57189,25442,34019],\"midQualityFileSha256\":\"H1CTt0G6kYWrhqGR1C2DmUClDnGNTbzbxCHRMHt743I=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770901297,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T10:01:37.534Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:37'),
(4301, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T10:01:37.533Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:42'),
(4302, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"241888380645433@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTdM2bksUMfGQ0GRaAeXAjpOiMMSgEjxXRV_34kf8UQ&oe=699ADB5E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:01:37.722Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:42'),
(4303, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC7285EF9C694B362F30CA36314323FE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901298550,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:01:38.550Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:42'),
(4304, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"241888380645433@lid\",\"fromMe\":true,\"id\":\"ACBF6CC5D58CB70A1C43E597021B58BC\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"Fique calmo: é comum ultrapassar o limite do MEI (R$ 81 mil\\/ano), e o contador já sabe seu faturamento exato da declaração recente, então ele resolve isso sem pânico. ��� O importante é agir rápido para evitar multas extras.Passos imediatos (faça HOJE)Mande essa mensagem pro contador (copia e cola):“Oi [nome], confirmei que já ultrapassei R$ 6.750 esse mês (ou o limite acumulado). Você que fez minha declaração sabe os números exatos.\\nO que eu faço agora? Preciso comunicar desenquadramento? Quanto vai dar de DAS complementar ou impostos retroativos?\\nPode migrar pra ME sem custo alto? Me passa simulação urgente pra eu decidir. Valeu!”Ele vai calcular o excesso exato (até 20% = só no ano que vem; acima = retroativo). ���Acesse o Portal do Simples Nacional (com seu código ou cert. digital):Vá em \\\"SIMEI > Comunicação de desenquadramento\\\".Informe \\\"Excesso de receita bruta\\\" e data do excesso.Isso formaliza e gera guias pendentes. ���Pague o DAS complementar (se gerado):Sistema calcula automático na DASN-SIMEI anual (até maio\\/2027 pro ano de 2026).Sem atraso pra evitar juros. ��O que acontece agoraSe excesso ≤20% (até R$ 97.200\\/ano): Fica MEI até 31\\/12\\/2026, desenquadra só em 2027. Paga DAS extra só pelo excesso. ��Se >20%: Desenquadra retroativo a jan\\/2026, vira ME no Simples (impostos sobre todo o ano, ~4-6% faturamento). ��Benefício: Como ME, limite sobe pra R$ 360 mil\\/ano, sem limite rígido.\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770901311,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T10:01:51.147Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:51'),
(4305, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T10:01:51.145Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:51'),
(4306, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"241888380645433@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTdM2bksUMfGQ0GRaAeXAjpOiMMSgEjxXRV_34kf8UQ&oe=699ADB5E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:01:51.502Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:51'),
(4307, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"ACBF6CC5D58CB70A1C43E597021B58BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901311508,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:01:51.508Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:01:51'),
(4308, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T10:02:34.835Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:02:34'),
(4309, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"241888380645433@lid\",\"fromMe\":true,\"id\":\"AC91AD54F274C0C55F664F62458BD874\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586194608_1476550143887549_6050786629799334254_n.enc?ccb=11-4&oh=01_Q5Aa3wE8Z_IT4-n5avqI1Dxb9yXEwIol4KMje05lUWKlcEs6WA&oe=69B5521C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GIG7CgJKZFc4zuPQwc1weq9dbnWJP7UEd0KagQTaav4=\",\"fileLength\":\"40668\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"YwOeSUuR\\/pUqk21rJh\\/uPbSEjYVpUUtzsAQbQBEor6o=\",\"fileEncSha256\":\"wtewqFkMMOm+KteLI2SwqJHqnOXoG1RuncptufdF8CY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586194608_1476550143887549_6050786629799334254_n.enc?ccb=11-4&oh=01_Q5Aa3wE8Z_IT4-n5avqI1Dxb9yXEwIol4KMje05lUWKlcEs6WA&oe=69B5521C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901336\",\"waveform\":\"AABQRBgAS15MWBtJV0pJGwAAAAABQiYVPTFHSj4TI0dITT9MAAAAAClAQy5HIjIiQEwAAC5EAVEyNgAAAABNFA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901354,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T10:02:34.836Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:02:35'),
(4310, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC91AD54F274C0C55F664F62458BD874\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901355156,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:02:35.156Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:02:35'),
(4311, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"241888380645433@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTdM2bksUMfGQ0GRaAeXAjpOiMMSgEjxXRV_34kf8UQ&oe=699ADB5E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:02:35.192Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:02:35'),
(4312, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC91AD54F274C0C55F664F62458BD874\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901391132,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:03:11.133Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:03:11'),
(4313, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC7285EF9C694B362F30CA36314323FE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770901399478,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:03:19.479Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:03:19'),
(4314, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"ACBF6CC5D58CB70A1C43E597021B58BC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770901399473,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:03:19.474Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:03:19'),
(4315, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC91AD54F274C0C55F664F62458BD874\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770901399468,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:03:19.468Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:03:19'),
(4316, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:44.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:05:45'),
(4317, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC6B3E49B501568FE2DDB7A4B4CBC85C\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Bom dia blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HGKfZdIiFDKr3SaPpgluHaSD7Misl5yDZbEj7AO0Yis=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770901544,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:44.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:05:45'),
(4318, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:45.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:05:45'),
(4319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC6B3E49B501568FE2DDB7A4B4CBC85C\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Bom dia blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HGKfZdIiFDKr3SaPpgluHaSD7Misl5yDZbEj7AO0Yis=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770901544,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:44.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:05:45'),
(4320, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:44.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:05:45');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:45.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:05:46'),
(4322, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:45.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:05:46'),
(4323, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:05:45.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:05:46'),
(4324, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":true,\"id\":\"A5642F85C49FB59DE8268D7EA716DA7D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bomm\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770901567,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:07'),
(4325, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":true,\"id\":\"A5642F85C49FB59DE8268D7EA716DA7D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bomm\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770901567,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:07'),
(4326, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:07'),
(4327, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"72868582961307@lid\",\"id\":\"A5642F85C49FB59DE8268D7EA716DA7D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901567831,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:06:07'),
(4328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:07'),
(4329, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:08'),
(4330, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"72868582961307@lid\",\"id\":\"A5642F85C49FB59DE8268D7EA716DA7D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901567831,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:06:08'),
(4331, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:07.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:08'),
(4332, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:14.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:14'),
(4333, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"ACAF43F36448A1F57C2D576251207368\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Não está querendo carregar os canais\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oC36gcCzlOrqI\\/VkYYgEyVpmLS0IwYBCUMb0u04YSsE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770901573,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:13.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:14'),
(4334, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:13.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:14'),
(4335, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:14.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:14'),
(4336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:14.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:14'),
(4337, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"ACAF43F36448A1F57C2D576251207368\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Não está querendo carregar os canais\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oC36gcCzlOrqI\\/VkYYgEyVpmLS0IwYBCUMb0u04YSsE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770901573,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:13.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:15'),
(4338, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:14.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:15'),
(4339, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:13.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:16'),
(4340, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:50.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:50'),
(4341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A535282864779A62541673F8B54CF80D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31872493_1901206063823489_7957181274428364271_n.enc?ccb=11-4&oh=01_Q5Aa3wE0Z4A6t34qW17l7On-bD845hv7Qij2eIqBXNHWQpAA6g&oe=69B53C3F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"zPpa918mXMrvlf9M3vWPX6bKlWQPExXHb42KOn\\/YUIo=\",\"fileLength\":\"80079\",\"seconds\":35,\"ptt\":true,\"mediaKey\":\"u\\/EiJ6aEMTWDfmiRlSKXw4YJ1oWA1+ZH3VAWNpE5aYA=\",\"fileEncSha256\":\"tXs\\/6n3sggzpFdtyzmOTGWKJVN07o4B6u23lp+oxO\\/Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31872493_1901206063823489_7957181274428364271_n.enc?ccb=11-4&oh=01_Q5Aa3wE0Z4A6t34qW17l7On-bD845hv7Qij2eIqBXNHWQpAA6g&oe=69B53C3F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901576\",\"waveform\":\"AEtGSCtLAAAQPxlDGQBKSjU3RElAOks+HEA9PCsIV0MkQEsHQ0NABzkjLTRTF1BKKj5JSAMAAQk+EDFEMkYjGw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901610,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:50.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:50'),
(4342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"256091736768538@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:50.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:50'),
(4343, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"256091736768538@lid\",\"fromMe\":true,\"id\":\"A535282864779A62541673F8B54CF80D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31872493_1901206063823489_7957181274428364271_n.enc?ccb=11-4&oh=01_Q5Aa3wE0Z4A6t34qW17l7On-bD845hv7Qij2eIqBXNHWQpAA6g&oe=69B53C3F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"zPpa918mXMrvlf9M3vWPX6bKlWQPExXHb42KOn\\/YUIo=\",\"fileLength\":\"80079\",\"seconds\":35,\"ptt\":true,\"mediaKey\":\"u\\/EiJ6aEMTWDfmiRlSKXw4YJ1oWA1+ZH3VAWNpE5aYA=\",\"fileEncSha256\":\"tXs\\/6n3sggzpFdtyzmOTGWKJVN07o4B6u23lp+oxO\\/Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31872493_1901206063823489_7957181274428364271_n.enc?ccb=11-4&oh=01_Q5Aa3wE0Z4A6t34qW17l7On-bD845hv7Qij2eIqBXNHWQpAA6g&oe=69B53C3F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901576\",\"waveform\":\"AEtGSCtLAAAQPxlDGQBKSjU3RElAOks+HEA9PCsIV0MkQEsHQ0NABzkjLTRTF1BKKj5JSAMAAQk+EDFEMkYjGw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901610,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:50.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:50'),
(4344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:50.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:06:50'),
(4345, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"256091736768538@lid\",\"pushName\":\"josiane Antonio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_815732371464699_5164094599587449622_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFJbO6n5xtTQ28inpL_9jW7hrxmYEan470nx6jOGsgUQ&oe=699AF644&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:06:50.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:06:51'),
(4346, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:07:12'),
(4347, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:07:12'),
(4348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"72868582961307@lid\",\"id\":\"A5CB6C8A909C2D4C40E23C4F06EB8B96\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901632540,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:07:12'),
(4349, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":true,\"id\":\"A5CB6C8A909C2D4C40E23C4F06EB8B96\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634653800_897238289898126_4799458051341989851_n.enc?ccb=11-4&oh=01_Q5Aa3wGdEcyjNk9HSnzemonyWXtoHPkCkVxOV7-sG73spZ52DQ&oe=69B54C9D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"I1BUfDjcnuQL\\/NqTlQbkiLzO4WgXCLOb0rt0aEV6CkM=\",\"fileLength\":\"15496\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"HJluaowwKRTu8GQCWuRZeIGAqcOr8D1cSxkb2AMW\\/Vw=\",\"fileEncSha256\":\"caSmbMUmm1JN6VkIFZmp7PbH70xLeYL\\/pp1pCE5vwCI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634653800_897238289898126_4799458051341989851_n.enc?ccb=11-4&oh=01_Q5Aa3wGdEcyjNk9HSnzemonyWXtoHPkCkVxOV7-sG73spZ52DQ&oe=69B54C9D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901626\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAYAAkZJW0c2R05ATioxOE5LSVMfUBhNOlRSRzw+Wj1OTTQxQzNNJlBMSkZHKj5HUUs8RilBJCpIShBBCBFCRA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:07:12'),
(4350, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:07:12'),
(4351, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":true,\"id\":\"A5CB6C8A909C2D4C40E23C4F06EB8B96\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634653800_897238289898126_4799458051341989851_n.enc?ccb=11-4&oh=01_Q5Aa3wGdEcyjNk9HSnzemonyWXtoHPkCkVxOV7-sG73spZ52DQ&oe=69B54C9D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"I1BUfDjcnuQL\\/NqTlQbkiLzO4WgXCLOb0rt0aEV6CkM=\",\"fileLength\":\"15496\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"HJluaowwKRTu8GQCWuRZeIGAqcOr8D1cSxkb2AMW\\/Vw=\",\"fileEncSha256\":\"caSmbMUmm1JN6VkIFZmp7PbH70xLeYL\\/pp1pCE5vwCI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634653800_897238289898126_4799458051341989851_n.enc?ccb=11-4&oh=01_Q5Aa3wGdEcyjNk9HSnzemonyWXtoHPkCkVxOV7-sG73spZ52DQ&oe=69B54C9D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901626\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAYAAkZJW0c2R05ATioxOE5LSVMfUBhNOlRSRzw+Wj1OTTQxQzNNJlBMSkZHKj5HUUs8RilBJCpIShBBCBFCRA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:07:13'),
(4352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"72868582961307@lid\",\"id\":\"A5CB6C8A909C2D4C40E23C4F06EB8B96\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901632540,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:07:13'),
(4353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:12.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:07:13'),
(4354, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:14.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:07:14'),
(4355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:14.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:07:14'),
(4356, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A535282864779A62541673F8B54CF80D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901635709,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:15.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:07:15'),
(4357, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A535282864779A62541673F8B54CF80D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901635709,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:15.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:07:15'),
(4358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A535282864779A62541673F8B54CF80D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770901645077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:25.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:07:25'),
(4359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A535282864779A62541673F8B54CF80D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770901645077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:25.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:07:25'),
(4360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A535282864779A62541673F8B54CF80D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770901646635,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:26.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:07:26'),
(4361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"256091736768538@lid\",\"id\":\"A535282864779A62541673F8B54CF80D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770901646635,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:07:26.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:07:26'),
(4362, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC91AD54F274C0C55F664F62458BD874\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770901657518,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:07:37.519Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:07:37'),
(4363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC3E137B158FF2262C3CB8FFAEDF36B0\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Ah blz vou ver aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iX+2lXSWywJqX0zCt54v2Z+O0bXn9R\\/w1LDsuEmeV2M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770901684,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:04'),
(4364, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:04'),
(4365, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:04'),
(4366, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC3E137B158FF2262C3CB8FFAEDF36B0\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Ah blz vou ver aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iX+2lXSWywJqX0zCt54v2Z+O0bXn9R\\/w1LDsuEmeV2M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770901684,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:04'),
(4367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:04'),
(4368, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:05'),
(4369, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:05'),
(4370, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:04.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:05'),
(4371, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:17.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:17'),
(4372, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586822871_889947697184577_6149629673342505001_n.enc?ccb=11-4&oh=01_Q5Aa3wFSGT6W6T2NMb1IAIFf4KUi8DYpCUtsFLGeQEDbINIKtQ&oe=69B54CC8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"o7cImJ5j9J7W6aBHx10qWmJRW2pEXwHw\\/C5EZbKcFvA=\",\"fileLength\":\"27332\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"1UCVs1RTQs04zHMpornd95\\/q\\/ZFAxmtUgL1KKnkUX5s=\",\"fileEncSha256\":\"p5xjqGJoTVaX1vJdBF4+VGpb\\/ddrgcqH3kUlZuRVK8U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586822871_889947697184577_6149629673342505001_n.enc?ccb=11-4&oh=01_Q5Aa3wFSGT6W6T2NMb1IAIFf4KUi8DYpCUtsFLGeQEDbINIKtQ&oe=69B54CC8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901686\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":28},\"waveform\":\"AEBPUDtFS0opTUhCPEY\\/UCU\\/QEgyRUBSAAAAIAhPTlI+RSdOG0dPK1NFO0QwSi4kPBc4PAYEBQUKLSU9VDw9Ng==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":28},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:17.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:17'),
(4373, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586822871_889947697184577_6149629673342505001_n.enc?ccb=11-4&oh=01_Q5Aa3wFSGT6W6T2NMb1IAIFf4KUi8DYpCUtsFLGeQEDbINIKtQ&oe=69B54CC8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"o7cImJ5j9J7W6aBHx10qWmJRW2pEXwHw\\/C5EZbKcFvA=\",\"fileLength\":\"27332\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"1UCVs1RTQs04zHMpornd95\\/q\\/ZFAxmtUgL1KKnkUX5s=\",\"fileEncSha256\":\"p5xjqGJoTVaX1vJdBF4+VGpb\\/ddrgcqH3kUlZuRVK8U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586822871_889947697184577_6149629673342505001_n.enc?ccb=11-4&oh=01_Q5Aa3wFSGT6W6T2NMb1IAIFf4KUi8DYpCUtsFLGeQEDbINIKtQ&oe=69B54CC8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901686\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":28},\"waveform\":\"AEBPUDtFS0opTUhCPEY\\/UCU\\/QEgyRUBSAAAAIAhPTlI+RSdOG0dPK1NFO0QwSi4kPBc4PAYEBQUKLSU9VDw9Ng==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":28},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:17.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:17'),
(4374, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:17.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:17'),
(4375, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:17.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:17'),
(4376, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:17.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:18'),
(4377, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T10:08:18.898Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:18'),
(4378, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"241888380645433@lid\",\"fromMe\":false,\"id\":\"AC3C9B2C6AF91DB6202D3948684E7590\"},\"pushName\":\"Adilson\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634739372_917612857514302_5231430606369699307_n.enc?ccb=11-4&oh=01_Q5Aa3wHdu07Fpm6kp_5NFkOnJiFLv_HCiIafotPrie6Nhhq4BQ&oe=69B53534&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QrkRr2452ipim4tidjv+y4VHit3Q8vOnbEY1IPRnDHg=\",\"fileLength\":\"12112\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"31BRBUFkrAaKSSZHU4m7d4mTfCubGYzrVS147DmjTLg=\",\"fileEncSha256\":\"vVya8NuuQMlluX2cU38AXqiokGbj3QPa6xSduyOW4GY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634739372_917612857514302_5231430606369699307_n.enc?ccb=11-4&oh=01_Q5Aa3wHdu07Fpm6kp_5NFkOnJiFLv_HCiIafotPrie6Nhhq4BQ&oe=69B53534&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901695\",\"waveform\":\"AAIAAAAAAzMrUEZKPSE0Pi5GPUg2O0chO0kwOzsRUD5CRihANzY4AAAAAAAAAAEsLUhHTDQ6F0xSRk4tAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"0YX7PaWYuTaZyg==\",\"senderTimestamp\":\"1770895903\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Kc+fFrGZRpGLuV5X9mUxESclNhkMvPdTbcEEnTQHpSk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901698,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T10:08:18.899Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:18'),
(4379, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTdM2bksUMfGQ0GRaAeXAjpOiMMSgEjxXRV_34kf8UQ&oe=699ADB5E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T10:08:19.072Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:08:19'),
(4380, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"241888380645433@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTdM2bksUMfGQ0GRaAeXAjpOiMMSgEjxXRV_34kf8UQ&oe=699ADB5E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:08:19.248Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:19'),
(4381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:43.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:44'),
(4382, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:43.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:44'),
(4383, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:44.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4384, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A5E65B01C58D8C77E68B8738940559F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634373339_1622320155606367_2554703343681772786_n.enc?ccb=11-4&oh=01_Q5Aa3wE2fXyjqiNYfxNypjcxQraslBUr5Sbu89uYQ14QztHOMw&oe=69B5475C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"icg+IGRn0bE9yAZhvTI8rKQfK57o2NlDruwPFtOL0Zg=\",\"fileLength\":\"9748\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"4FK31Gvb81Trp4LYPwv6g8rYMLZES72MKxOzp7h066Q=\",\"fileEncSha256\":\"5o+Pa0+Ww6Fl1YoHR1yHHO97X2sCmlDbJ0ajFdXOOLo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634373339_1622320155606367_2554703343681772786_n.enc?ccb=11-4&oh=01_Q5Aa3wE2fXyjqiNYfxNypjcxQraslBUr5Sbu89uYQ14QztHOMw&oe=69B5475C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901720\",\"contextInfo\":{\"stanzaId\":\"4ABE74B42BE367874CB3\",\"participant\":\"104917578559621@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tvzTBVKOhxFbyE1yDSon9PtxuXvTn5comLd1qpi6X6Y=\",\"fileLength\":\"36420\",\"height\":1280,\"width\":388,\"mediaKey\":\"enG\\/YX+X86CVNzdfrEEunoKoOjjBl+2HPblqzpl6Hw0=\",\"fileEncSha256\":\"gasqbVpL0\\/islHrSbYEVgwT+UlYCAozCyF0Dc9V4iFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1767809753\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABYDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIDAQb\\/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA9DWQ1ZjtY0asx3s0UkRfOhQx4SWLf\\/\\/EABYRAAMAAAAAAAAAAAAAAAAAAAEQMP\\/aAAgBAgEBPwCBX\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACMQAAICAQQCAgMAAAAAAAAAAAABAhESAyExURNBIiMyUmH\\/2gAIAQEAAT8AdWZLsTT4LnfCs+fSPsXpG2TsyX9E7G529hSnXCMtTpD\\/ACYsX6EkuBakVJ7mcezyR7HCN1SFpr2keOPRacnubfsWux6crsik3V7mDP\\/+AAMA\\/9k=\",\"contextInfo\":[]}},\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"waveform\":\"ABpQWFhKTExXUS4rQkJIUE1JTzhGTlIrSlpMKCEhERQ4Nzs9V01LP0s8LUUEPkcqSEdIQz5JRUtTTUlDRz4dQg==\"}},\"contextInfo\":{\"stanzaId\":\"4ABE74B42BE367874CB3\",\"participant\":\"104917578559621@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tvzTBVKOhxFbyE1yDSon9PtxuXvTn5comLd1qpi6X6Y=\",\"fileLength\":\"36420\",\"height\":1280,\"width\":388,\"mediaKey\":\"enG\\/YX+X86CVNzdfrEEunoKoOjjBl+2HPblqzpl6Hw0=\",\"fileEncSha256\":\"gasqbVpL0\\/islHrSbYEVgwT+UlYCAozCyF0Dc9V4iFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1767809753\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABYDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIDAQb\\/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA9DWQ1ZjtY0asx3s0UkRfOhQx4SWLf\\/\\/EABYRAAMAAAAAAAAAAAAAAAAAAAEQMP\\/aAAgBAgEBPwCBX\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACMQAAICAQQCAgMAAAAAAAAAAAABAhESAyExURNBIiMyUmH\\/2gAIAQEAAT8AdWZLsTT4LnfCs+fSPsXpG2TsyX9E7G529hSnXCMtTpD\\/ACYsX6EkuBakVJ7mcezyR7HCN1SFpr2keOPRacnubfsWux6crsik3V7mDP\\/+AAMA\\/9k=\",\"contextInfo\":[]}},\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:43.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:08:44'),
(4385, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:44.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:44'),
(4386, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A5E65B01C58D8C77E68B8738940559F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634373339_1622320155606367_2554703343681772786_n.enc?ccb=11-4&oh=01_Q5Aa3wE2fXyjqiNYfxNypjcxQraslBUr5Sbu89uYQ14QztHOMw&oe=69B5475C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"icg+IGRn0bE9yAZhvTI8rKQfK57o2NlDruwPFtOL0Zg=\",\"fileLength\":\"9748\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"4FK31Gvb81Trp4LYPwv6g8rYMLZES72MKxOzp7h066Q=\",\"fileEncSha256\":\"5o+Pa0+Ww6Fl1YoHR1yHHO97X2sCmlDbJ0ajFdXOOLo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634373339_1622320155606367_2554703343681772786_n.enc?ccb=11-4&oh=01_Q5Aa3wE2fXyjqiNYfxNypjcxQraslBUr5Sbu89uYQ14QztHOMw&oe=69B5475C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901720\",\"contextInfo\":{\"stanzaId\":\"4ABE74B42BE367874CB3\",\"participant\":\"104917578559621@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tvzTBVKOhxFbyE1yDSon9PtxuXvTn5comLd1qpi6X6Y=\",\"fileLength\":\"36420\",\"height\":1280,\"width\":388,\"mediaKey\":\"enG\\/YX+X86CVNzdfrEEunoKoOjjBl+2HPblqzpl6Hw0=\",\"fileEncSha256\":\"gasqbVpL0\\/islHrSbYEVgwT+UlYCAozCyF0Dc9V4iFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1767809753\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABYDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIDAQb\\/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA9DWQ1ZjtY0asx3s0UkRfOhQx4SWLf\\/\\/EABYRAAMAAAAAAAAAAAAAAAAAAAEQMP\\/aAAgBAgEBPwCBX\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACMQAAICAQQCAgMAAAAAAAAAAAABAhESAyExURNBIiMyUmH\\/2gAIAQEAAT8AdWZLsTT4LnfCs+fSPsXpG2TsyX9E7G529hSnXCMtTpD\\/ACYsX6EkuBakVJ7mcezyR7HCN1SFpr2keOPRacnubfsWux6crsik3V7mDP\\/+AAMA\\/9k=\",\"contextInfo\":[]}},\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"waveform\":\"ABpQWFhKTExXUS4rQkJIUE1JTzhGTlIrSlpMKCEhERQ4Nzs9V01LP0s8LUUEPkcqSEdIQz5JRUtTTUlDRz4dQg==\"}},\"contextInfo\":{\"stanzaId\":\"4ABE74B42BE367874CB3\",\"participant\":\"104917578559621@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tvzTBVKOhxFbyE1yDSon9PtxuXvTn5comLd1qpi6X6Y=\",\"fileLength\":\"36420\",\"height\":1280,\"width\":388,\"mediaKey\":\"enG\\/YX+X86CVNzdfrEEunoKoOjjBl+2HPblqzpl6Hw0=\",\"fileEncSha256\":\"gasqbVpL0\\/islHrSbYEVgwT+UlYCAozCyF0Dc9V4iFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMwxGmYD41vlc0o-ALnYMi4vjVZKqy3EpIYsrqu8s_INSTgHuCdS6FC8QDzwZaFwNtla0djUu8iVhTqmcjheW7uWUAmknZqKwcUDQVX7w?ccb=9-4&oh=01_Q5Aa3gGM_RwAq7_ZMVqsVSEYgdZeUw2LZHwKtGrikZznJndo2g&oe=69861BE4&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1767809753\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABYDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIDAQb\\/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA9DWQ1ZjtY0asx3s0UkRfOhQx4SWLf\\/\\/EABYRAAMAAAAAAAAAAAAAAAAAAAEQMP\\/aAAgBAgEBPwCBX\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACMQAAICAQQCAgMAAAAAAAAAAAABAhESAyExURNBIiMyUmH\\/2gAIAQEAAT8AdWZLsTT4LnfCs+fSPsXpG2TsyX9E7G529hSnXCMtTpD\\/ACYsX6EkuBakVJ7mcezyR7HCN1SFpr2keOPRacnubfsWux6crsik3V7mDP\\/+AAMA\\/9k=\",\"contextInfo\":[]}},\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:08:43.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:08:44'),
(4387, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A515302579FF237CDFD4BB8E44760F2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634752008_1564012061499254_4069055164573788210_n.enc?ccb=11-4&oh=01_Q5Aa3wGJpaINkr5RwEWYZJcZWcBVh8OzzdbVD-aKhpZo8Aidfg&oe=69B54E16&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JrhPF1DaWf+ZTKCINey1dFN2TlqJEagp2MpfDiscTIE=\",\"fileLength\":\"14737\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"EJi1+MVzqc4QvyWzOQEBIwkMVHvNGe4yqZ0QAIh+\\/7k=\",\"fileEncSha256\":\"HhpzTt8\\/eok3S171IpahlTVJmKrXe4Xeu0LHrIwHIxI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634752008_1564012061499254_4069055164573788210_n.enc?ccb=11-4&oh=01_Q5Aa3wGJpaINkr5RwEWYZJcZWcBVh8OzzdbVD-aKhpZo8Aidfg&oe=69B54E16&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901740\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"waveform\":\"AAUQVFRMUkhAPE9MNUsjTFELBAgIAwVTUEpMTk01UCItP0dKTURBMkcqL0tACA0IBQEORDFASUxSRjhOLEoEAA==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:06.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:09:06'),
(4388, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A515302579FF237CDFD4BB8E44760F2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634752008_1564012061499254_4069055164573788210_n.enc?ccb=11-4&oh=01_Q5Aa3wGJpaINkr5RwEWYZJcZWcBVh8OzzdbVD-aKhpZo8Aidfg&oe=69B54E16&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JrhPF1DaWf+ZTKCINey1dFN2TlqJEagp2MpfDiscTIE=\",\"fileLength\":\"14737\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"EJi1+MVzqc4QvyWzOQEBIwkMVHvNGe4yqZ0QAIh+\\/7k=\",\"fileEncSha256\":\"HhpzTt8\\/eok3S171IpahlTVJmKrXe4Xeu0LHrIwHIxI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634752008_1564012061499254_4069055164573788210_n.enc?ccb=11-4&oh=01_Q5Aa3wGJpaINkr5RwEWYZJcZWcBVh8OzzdbVD-aKhpZo8Aidfg&oe=69B54E16&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901740\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"waveform\":\"AAUQVFRMUkhAPE9MNUsjTFELBAgIAwVTUEpMTk01UCItP0dKTURBMkcqL0tACA0IBQEORDFASUxSRjhOLEoEAA==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:06.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:09:06'),
(4389, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:06.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:09:06'),
(4390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:06.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:09:06'),
(4391, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:06.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:09:06'),
(4392, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:06.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:09:06'),
(4393, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515302579FF237CDFD4BB8E44760F2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901747026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:07.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:09:07'),
(4394, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515302579FF237CDFD4BB8E44760F2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901747026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:07.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:09:07'),
(4395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A52175622850F1DE27D4440F95336909\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587544492_1433430808446284_714682342441039514_n.enc?ccb=11-4&oh=01_Q5Aa3wG8rM8nv-i3nlcxn5MzZRCvAJuyOkpOjGwUsVThe_0G_w&oe=69B5269F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"rBD1yWMgQ+QolWR+6\\/e\\/rssOhMJ21voJI89WWVlPwPo=\",\"fileLength\":\"15654\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"l2uSoMDgaWzHXMOttDTPrfFLfQrU0YZCK1BPz3aPQ+M=\",\"fileEncSha256\":\"a3EiqNdh1FqdwAzdy+fQd8vcG+hC2qP8wvKHz4i3kzw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587544492_1433430808446284_714682342441039514_n.enc?ccb=11-4&oh=01_Q5Aa3wG8rM8nv-i3nlcxn5MzZRCvAJuyOkpOjGwUsVThe_0G_w&oe=69B5269F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901774\",\"waveform\":\"AAAHPiVUFkxCRkslTTRJS0FPTwsjR0Y9GkUwEkdBPzVBSkQ\\/RUIlPDtNQEIhMEQaU0YUBgkAAwICA0lMSE1GTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901779,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:39.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:09:40'),
(4396, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:39.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:09:40'),
(4397, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:39.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:09:40'),
(4398, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A52175622850F1DE27D4440F95336909\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587544492_1433430808446284_714682342441039514_n.enc?ccb=11-4&oh=01_Q5Aa3wG8rM8nv-i3nlcxn5MzZRCvAJuyOkpOjGwUsVThe_0G_w&oe=69B5269F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"rBD1yWMgQ+QolWR+6\\/e\\/rssOhMJ21voJI89WWVlPwPo=\",\"fileLength\":\"15654\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"l2uSoMDgaWzHXMOttDTPrfFLfQrU0YZCK1BPz3aPQ+M=\",\"fileEncSha256\":\"a3EiqNdh1FqdwAzdy+fQd8vcG+hC2qP8wvKHz4i3kzw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587544492_1433430808446284_714682342441039514_n.enc?ccb=11-4&oh=01_Q5Aa3wG8rM8nv-i3nlcxn5MzZRCvAJuyOkpOjGwUsVThe_0G_w&oe=69B5269F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901774\",\"waveform\":\"AAAHPiVUFkxCRkslTTRJS0FPTwsjR0Y9GkUwEkdBPzVBSkQ\\/RUIlPDtNQEIhMEQaU0YUBgkAAwICA0lMSE1GTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901779,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:39.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:09:40'),
(4399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:40.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:09:40'),
(4400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:40.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:09:41'),
(4401, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A52175622850F1DE27D4440F95336909\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901781954,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:41.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:09:42'),
(4402, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A52175622850F1DE27D4440F95336909\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901781954,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:09:41.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:09:42'),
(4403, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:08.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:10:08'),
(4404, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:08.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:10:08'),
(4405, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:08.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:08'),
(4406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A59A8008019D022AC26D3F4CDD5FC0E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634835524_4370578693267225_5769991643326544099_n.enc?ccb=11-4&oh=01_Q5Aa3wFaeiNa6q3TzpJeDJ8FLOJ-ZrqIvprK1atdyGHs9pO6zA&oe=69B52CB4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"8RoJbGz0C5AGSqzdvYnxpFZbwLReF4w023gxqTzFpdE=\",\"fileLength\":\"11041\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"mB9fYAZj7AmeVD58+kMfpUSssf+PVk\\/aLA1Gh9mde1s=\",\"fileEncSha256\":\"favpRsXywjjnQCMcF4bEhIYugOuKpVuwvtcrGEW1ATU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634835524_4370578693267225_5769991643326544099_n.enc?ccb=11-4&oh=01_Q5Aa3wFaeiNa6q3TzpJeDJ8FLOJ-ZrqIvprK1atdyGHs9pO6zA&oe=69B52CB4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901804\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"waveform\":\"AA0GK1pUTU5NVFJGPkkpN0xJIkdKKkBETlJXXF0jCgAJJD5CSk9HR0AxKUA8SkxGKUwvOUtMSFNOQj5BRiYeTQ==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:08.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:10:08'),
(4407, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:08.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:08'),
(4408, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A59A8008019D022AC26D3F4CDD5FC0E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634835524_4370578693267225_5769991643326544099_n.enc?ccb=11-4&oh=01_Q5Aa3wFaeiNa6q3TzpJeDJ8FLOJ-ZrqIvprK1atdyGHs9pO6zA&oe=69B52CB4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"8RoJbGz0C5AGSqzdvYnxpFZbwLReF4w023gxqTzFpdE=\",\"fileLength\":\"11041\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"mB9fYAZj7AmeVD58+kMfpUSssf+PVk\\/aLA1Gh9mde1s=\",\"fileEncSha256\":\"favpRsXywjjnQCMcF4bEhIYugOuKpVuwvtcrGEW1ATU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634835524_4370578693267225_5769991643326544099_n.enc?ccb=11-4&oh=01_Q5Aa3wFaeiNa6q3TzpJeDJ8FLOJ-ZrqIvprK1atdyGHs9pO6zA&oe=69B52CB4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901804\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"waveform\":\"AA0GK1pUTU5NVFJGPkkpN0xJIkdKKkBETlJXXF0jCgAJJD5CSk9HR0AxKUA8SkxGKUwvOUtMSFNOQj5BRiYeTQ==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:08.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:09'),
(4409, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A59A8008019D022AC26D3F4CDD5FC0E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901811533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:11.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:10:11'),
(4410, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A59A8008019D022AC26D3F4CDD5FC0E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901811533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:10:11.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:10:11'),
(4411, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC3C9B2C6AF91DB6202D3948684E7590\",\"fromMe\":false,\"status\":\"PLAYED\",\"datetime\":1770901815677,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:10:15.677Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:15'),
(4412, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"241888380645433@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T10:10:41.893Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:42'),
(4413, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"241888380645433@lid\",\"fromMe\":true,\"id\":\"AC4636AB6FF11907E6E986C04A19D6C9\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634830103_1709280343816180_4494253973393430216_n.enc?ccb=11-4&oh=01_Q5Aa3wEA6r2GVDHAfZrfYDkiCswsqMkadhKmNid9AzCv0OTRsg&oe=69B54873&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tBHXBUy40Nux3WE9FfHYfgYjUKHbkuk+NeCOQ+ZU2wI=\",\"fileLength\":\"40405\",\"seconds\":18,\"ptt\":true,\"mediaKey\":\"jEB5d6ppKzFDIR\\/VhG7BILtAYYbQ1laZ8FmA1+j6kAw=\",\"fileEncSha256\":\"f2rj9nCv6YXlWJ3ZTyDLyIY\\/IDSz\\/iwaxLvYFwllTsU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634830103_1709280343816180_4494253973393430216_n.enc?ccb=11-4&oh=01_Q5Aa3wEA6r2GVDHAfZrfYDkiCswsqMkadhKmNid9AzCv0OTRsg&oe=69B54873&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770901823\",\"waveform\":\"AFRKHy1KQUJMGkkAAgYGR0NBOQc6GE1GJRkxPzFOMAEIASo9OjoZDBYCSCc4Og9GDUELBAdLIklMPko8NTFKGA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770901841,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T10:10:41.894Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:42'),
(4414, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"241888380645433@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603057364_1220532489990073_1537443803654542750_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTdM2bksUMfGQ0GRaAeXAjpOiMMSgEjxXRV_34kf8UQ&oe=699ADB5E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:10:42.077Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:10:42'),
(4415, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC4636AB6FF11907E6E986C04A19D6C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770901864659,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:11:04.659Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:11:04'),
(4416, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:58.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:16:59'),
(4417, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC3071569491D1837B7A00EA09D4499C\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Agora deu certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AWL3BSArA2X6KK\\/E5r3qS4GR4FVlC\\/OdsxeBh58dvLM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902218,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:58.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:16:59'),
(4418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:58.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:16:59'),
(4419, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC3071569491D1837B7A00EA09D4499C\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Agora deu certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AWL3BSArA2X6KK\\/E5r3qS4GR4FVlC\\/OdsxeBh58dvLM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902218,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:58.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:16:59'),
(4420, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:59.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:16:59'),
(4421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:59.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:16:59'),
(4422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:59.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:16:59'),
(4423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:16:59.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:16:59'),
(4424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:01'),
(4425, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC19A04F06D4AFCBCBE6904833208EC9\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Kkk\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/oAazdJykSuGuTI8AyjnAOPt2m+bivHQGAM+IqvM0dk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902221,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:01'),
(4426, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:01'),
(4427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:01'),
(4428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC19A04F06D4AFCBCBE6904833208EC9\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Kkk\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/oAazdJykSuGuTI8AyjnAOPt2m+bivHQGAM+IqvM0dk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902221,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:01'),
(4429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:02'),
(4430, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:02'),
(4431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:01.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:02'),
(4432, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC0232C05AA0BBAD28017F604AD69CE1\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Precisei fazer duas vezes mais deu certinho blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1\\/CxF6gZbYcUOBWMOWPJtbcTcNduyQg68MaKkX9PF6U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902241,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:22'),
(4433, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:22'),
(4434, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC0232C05AA0BBAD28017F604AD69CE1\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Precisei fazer duas vezes mais deu certinho blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1\\/CxF6gZbYcUOBWMOWPJtbcTcNduyQg68MaKkX9PF6U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902241,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:22'),
(4435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:22'),
(4436, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4437, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:23'),
(4438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:23'),
(4439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:22.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:23'),
(4440, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:26.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:27'),
(4441, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC72255ED22986DB7C5E115849D4117E\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Desculpa o incomodo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"v81cRA1py987CTNV+fF\\/2lTWtsgXwdklOHBnly4n\\/p0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902246,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:26.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:27'),
(4442, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:26.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:27'),
(4443, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC72255ED22986DB7C5E115849D4117E\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"conversation\":\"Desculpa o incomodo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"v81cRA1py987CTNV+fF\\/2lTWtsgXwdklOHBnly4n\\/p0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902246,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:26.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:27'),
(4444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:27.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:27'),
(4445, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:27.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:17:28'),
(4446, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:27.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:28'),
(4447, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:17:27.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:17:28'),
(4448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:00'),
(4449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:00'),
(4450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:00'),
(4451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAB6EC9107495176876\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"Bom dia beleza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H+mwtuJH0kc04Y3eQhr1urUQn7SJ6rTGjCBKmq0Q5iE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902340,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:00'),
(4452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:01'),
(4453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:01'),
(4454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:01'),
(4455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAB6EC9107495176876\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"Bom dia beleza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H+mwtuJH0kc04Y3eQhr1urUQn7SJ6rTGjCBKmq0Q5iE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902340,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:00.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:01'),
(4456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:01.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:01'),
(4457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:01.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:02'),
(4458, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4B03D66AA9F0613E76\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"Não mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nAAt63LO9zRTbN2oTPoCVU\\/JamxVBwTP6zSWvArP8c4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902345,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:05'),
(4459, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:05'),
(4460, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4B03D66AA9F0613E76\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"Não mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nAAt63LO9zRTbN2oTPoCVU\\/JamxVBwTP6zSWvArP8c4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902345,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:05'),
(4461, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:05'),
(4462, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:05'),
(4463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:06'),
(4464, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:06'),
(4465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:05.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:06'),
(4466, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:10'),
(4467, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA9296117843DCFA216\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"O grupo não mandou nada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0gtkPrnJ1OYmrA+yYBScjbQQ1hZcYlsczTcYCcluzXA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902350,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:10'),
(4468, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:10'),
(4469, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA9296117843DCFA216\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"O grupo não mandou nada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0gtkPrnJ1OYmrA+yYBScjbQQ1hZcYlsczTcYCcluzXA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770902350,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:10'),
(4470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:11'),
(4471, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:19:11'),
(4472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:11'),
(4473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:19:10.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:19:11');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4474, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSK8so4pQURXpi9JOuIK8BrnTL7kEXv_YKuXKkkjEfSQ&oe=699AD1DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkZ8RR0CWaAQkWOCgBQsQkanjdZ5v3UN_oGSyU3eOOuQ&oe=699AF8D8&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6JB1oPEB6kEtQSmItBe8JHgN9fbsCec1yY6FmRl17g&oe=699AD79B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wETLkGAnlW0zkeK6Iwfyb3zDvJRnnDdSEW05jJ83f_r7g&oe=699AF7A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_g0M093cAGZQeeIN1MlsPoCWd7VRSlWhtjgIDZD3I3g&oe=699AFC37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXLsNpd0D60GDrnG8Oge-p1nGiXHu02zz8NXecS6qvA&oe=699AD828&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFtgEhE0yZn4O9KYIW_KCHC4-97cX8Larx2LiFFRZXig&oe=699AFA43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKEVsxiJNPXFWBLB7AocpPAmF8CMTIairsrMOdGBXiWA&oe=699AD1F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjrXHiR70bqQiE-QWDMJetLxxOaK01cTXpyq-q3WTN7w&oe=699ACC8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDLAGv7yIOQDghSAOQZ80arU-VoXOe3UyDKC35W8QCKw&oe=699AF99A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJJXlqns2PLXNhuQFqzjYu-C7pWZf3RXYWKSPk7eV9hA&oe=699AFD36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1mZ5dKml9QTVUKJLcblpb8xEVo7r6jcTT5HGPPJFOeQ&oe=699AD62F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo9Ly_epqNBg7kopdRxfUg591VVAF5Q20QArkvSKR23w&oe=699AD38D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH04f4XeSYW0gDM8hSc_YFZ9NIcuSy5RlWlX7c9pVPzCA&oe=699AD8BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0iPr2AQ1589DFJNHFDEIajUQk4iN62rOEeVtges2cJw&oe=699AD755&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEYc7QP3n4oYXP3QZIyecFlCgoOEs8RImLDzeCaDDNqA&oe=699AF69A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuJDEpB1vP3ZNmUclzZ44y8ECFsZrSyv-jiK6otb3OFA&oe=699ACCD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-0tA5IhsFFqzEr0CJgAqzKHK2GsAgsWn67Xt1_qagmQ&oe=699AD53B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8P3FCm-Ly4JCPOAGb2nPQLt4mudOXdtqbcG1C1UY_4Q&oe=699AD105&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyJI66cHwSjyinJkkmEe11uo7ouoOfP6dxw9yg70eVfA&oe=699AF752&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzNUTKXyzYkAlvtDy6r36LbYhW9iOPFwyX_NNwZPVAGg&oe=699AD4D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2No9VNUQ17wi0j8eNzeWWspyDIs3gr2t2caTwMfJxuw&oe=699AF6F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFBZNOA3cp2Dht-6QrlpEaCLxcBvERnbYdTTez9EO1WA&oe=699AD277&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL0xGkeMFO0NDXzmLMHShqhn2E5VqRY4M7BzFd3GvPPw&oe=699AC96E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoWzxJlUVs9qJbMreg9n_iMQuKWWFc3PLH6n51dFA2yg&oe=699AC86B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3sq9RMxuP8Cm7FPKFAjWFwkqnNO0XJY_f0nceEnwszw&oe=699AD9D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHYwAfAPJiI-JG5QHLlrcxrgIoEpU1ikGB9dt5k0imNg&oe=699ACF2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wENYB2S1fRt7eQF_rUgFGcwYP_syNkEJ1fbignjpbQwlw&oe=699AFA18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLCzfLatXOc1fVKlGfXO_VhmkI6tDFLXYnaXGDMbVkvA&oe=699AD6D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkNj_tg6Ryki8Hby3SUx4pX0DdEHoop_O0ZaCuJ-zLUQ&oe=699AF939&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyponiRaL5GCTnp9bR-gHmkSVVSBvm0yTLOH-Ytozw1Q&oe=699AF961&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyz4aV5MpZbH0MCaEfoDlPEqCcQiGNtnhNfVH_K9IcOw&oe=699AD8F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6GzU3c3cGOPadGl9Vm4saEJrHfWeXGsZyjE3jHBT6g&oe=699AF5F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZx9ny556sdVlO_BvM9I792Ja6IUNs2Mz1TbFTwUWiw&oe=699ACC80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOjlgsmPKyFLbHMoWHuitBKtotMh6-OHv5Na0B3ZCaMg&oe=699AD58E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZm7cN5INewG4NxK9YLE7P8TEE8I_n1DekBF5tZgaMXw&oe=699AFA52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOfY0PNrbfnX_CWRZ5RUBCdx53Hxi2ZIaSaQkz6fJPmQ&oe=699AD3BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRQrRZ05k_ukpavYBzFtcH5JlAJm3Smy2YS96t7g6IA&oe=699AD890&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8ru_P_sqbihk98LdNedO0n9xk0xmrAMEupl6tNP6OIg&oe=699AF484&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_p9STg6_hon2Nfs2eLRAGPTL-urXNVPGgERcPEWAwCw&oe=699AFBBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz7uraLyKKm3T-hsaz2rDBtakAqWaaeySUkzkbJatokA&oe=699AF6CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFla7NjMzjdVNMGk4gQ-1heUfxj7JBnBmfbDWolXb6Pvg&oe=699AD3F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuMy4mhZEu_g1jVmrJV8Gby5w9xTggb9udEskscOqPLA&oe=699AD0BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_4hvdGvIGMR1sMAPZjtz83mhyjOu8s9LQGnsg3o3Xiw&oe=699AD7C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsAHV-MckU5Ci5h8ussRb7PMyLcxRzPNOACAgSSqlQhg&oe=699AFD67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcN6hVCSBU6YbNlSj8D8uORD_XK0-WmLwpsIllhVeVRA&oe=699AC7DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjPdT2q1g9B9ySgfuEYYXgJ_8bvkJxenFqy_7KLoRRMg&oe=699ACFC7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCug2NTYZxZIUoQ7opOEwHLnBmyTaKaH8qhbZbKkRsgg&oe=699ACB63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWRVbggZ-pPm08nkGvK69BLHD_qTdxOdioQl0Z5SnXsA&oe=699AD811&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS-BrxAMSO7HZCokJnL-79fq2w_8RgRk6GsWoqc5chUg&oe=699ACBB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDATf2LTwPc9In0srNh6NXHr-9bxzKMuKCto9-A16YxQ&oe=699AD2D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH5fat9ruEX8WIzyc3OUB7EZEspe_AYtwQmPoEM_gSQ&oe=699AFA7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfTFCkR0QfmAexEyNRq9hRoSszcYxwBhtdFmmqaQycDg&oe=699ACA2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfRXu7R-fswi5-9i8J2k953XPaEhLLva7xREL8J8UScA&oe=699ACF07&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEk-XQqNWwsemdDZZgvUFsocwmmZRbkWZmjv5uq0_1GDw&oe=699ACBE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdFmepBkK6sGlN7Fy1on4U1JZIWTdTQZSqI-FMQ7DoAg&oe=699AF94B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBFghwAghFWO7vITwOo5yX1nniZWOjAiEviZjR0o8Exg&oe=699ACFA0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMfT7GavHzbtRXWDLznK2bHWyjzNQi060YbOJuHmuDUQ&oe=699AD823&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&o', 0, '2026-02-12 10:19:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4475, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSK8so4pQURXpi9JOuIK8BrnTL7kEXv_YKuXKkkjEfSQ&oe=699AD1DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkZ8RR0CWaAQkWOCgBQsQkanjdZ5v3UN_oGSyU3eOOuQ&oe=699AF8D8&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEO6JB1oPEB6kEtQSmItBe8JHgN9fbsCec1yY6FmRl17g&oe=699AD79B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wETLkGAnlW0zkeK6Iwfyb3zDvJRnnDdSEW05jJ83f_r7g&oe=699AF7A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_g0M093cAGZQeeIN1MlsPoCWd7VRSlWhtjgIDZD3I3g&oe=699AFC37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXLsNpd0D60GDrnG8Oge-p1nGiXHu02zz8NXecS6qvA&oe=699AD828&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFtgEhE0yZn4O9KYIW_KCHC4-97cX8Larx2LiFFRZXig&oe=699AFA43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKEVsxiJNPXFWBLB7AocpPAmF8CMTIairsrMOdGBXiWA&oe=699AD1F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjrXHiR70bqQiE-QWDMJetLxxOaK01cTXpyq-q3WTN7w&oe=699ACC8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDLAGv7yIOQDghSAOQZ80arU-VoXOe3UyDKC35W8QCKw&oe=699AF99A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJJXlqns2PLXNhuQFqzjYu-C7pWZf3RXYWKSPk7eV9hA&oe=699AFD36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1mZ5dKml9QTVUKJLcblpb8xEVo7r6jcTT5HGPPJFOeQ&oe=699AD62F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo9Ly_epqNBg7kopdRxfUg591VVAF5Q20QArkvSKR23w&oe=699AD38D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH04f4XeSYW0gDM8hSc_YFZ9NIcuSy5RlWlX7c9pVPzCA&oe=699AD8BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0iPr2AQ1589DFJNHFDEIajUQk4iN62rOEeVtges2cJw&oe=699AD755&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEYc7QP3n4oYXP3QZIyecFlCgoOEs8RImLDzeCaDDNqA&oe=699AF69A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuJDEpB1vP3ZNmUclzZ44y8ECFsZrSyv-jiK6otb3OFA&oe=699ACCD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-0tA5IhsFFqzEr0CJgAqzKHK2GsAgsWn67Xt1_qagmQ&oe=699AD53B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8P3FCm-Ly4JCPOAGb2nPQLt4mudOXdtqbcG1C1UY_4Q&oe=699AD105&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyJI66cHwSjyinJkkmEe11uo7ouoOfP6dxw9yg70eVfA&oe=699AF752&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzNUTKXyzYkAlvtDy6r36LbYhW9iOPFwyX_NNwZPVAGg&oe=699AD4D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2No9VNUQ17wi0j8eNzeWWspyDIs3gr2t2caTwMfJxuw&oe=699AF6F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFBZNOA3cp2Dht-6QrlpEaCLxcBvERnbYdTTez9EO1WA&oe=699AD277&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL0xGkeMFO0NDXzmLMHShqhn2E5VqRY4M7BzFd3GvPPw&oe=699AC96E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoWzxJlUVs9qJbMreg9n_iMQuKWWFc3PLH6n51dFA2yg&oe=699AC86B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3sq9RMxuP8Cm7FPKFAjWFwkqnNO0XJY_f0nceEnwszw&oe=699AD9D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHYwAfAPJiI-JG5QHLlrcxrgIoEpU1ikGB9dt5k0imNg&oe=699ACF2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wENYB2S1fRt7eQF_rUgFGcwYP_syNkEJ1fbignjpbQwlw&oe=699AFA18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLCzfLatXOc1fVKlGfXO_VhmkI6tDFLXYnaXGDMbVkvA&oe=699AD6D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkNj_tg6Ryki8Hby3SUx4pX0DdEHoop_O0ZaCuJ-zLUQ&oe=699AF939&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyponiRaL5GCTnp9bR-gHmkSVVSBvm0yTLOH-Ytozw1Q&oe=699AF961&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyz4aV5MpZbH0MCaEfoDlPEqCcQiGNtnhNfVH_K9IcOw&oe=699AD8F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6GzU3c3cGOPadGl9Vm4saEJrHfWeXGsZyjE3jHBT6g&oe=699AF5F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMZx9ny556sdVlO_BvM9I792Ja6IUNs2Mz1TbFTwUWiw&oe=699ACC80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOjlgsmPKyFLbHMoWHuitBKtotMh6-OHv5Na0B3ZCaMg&oe=699AD58E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZm7cN5INewG4NxK9YLE7P8TEE8I_n1DekBF5tZgaMXw&oe=699AFA52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOfY0PNrbfnX_CWRZ5RUBCdx53Hxi2ZIaSaQkz6fJPmQ&oe=699AD3BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRQrRZ05k_ukpavYBzFtcH5JlAJm3Smy2YS96t7g6IA&oe=699AD890&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8ru_P_sqbihk98LdNedO0n9xk0xmrAMEupl6tNP6OIg&oe=699AF484&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_p9STg6_hon2Nfs2eLRAGPTL-urXNVPGgERcPEWAwCw&oe=699AFBBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz7uraLyKKm3T-hsaz2rDBtakAqWaaeySUkzkbJatokA&oe=699AF6CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFla7NjMzjdVNMGk4gQ-1heUfxj7JBnBmfbDWolXb6Pvg&oe=699AD3F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuMy4mhZEu_g1jVmrJV8Gby5w9xTggb9udEskscOqPLA&oe=699AD0BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_4hvdGvIGMR1sMAPZjtz83mhyjOu8s9LQGnsg3o3Xiw&oe=699AD7C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsAHV-MckU5Ci5h8ussRb7PMyLcxRzPNOACAgSSqlQhg&oe=699AFD67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcN6hVCSBU6YbNlSj8D8uORD_XK0-WmLwpsIllhVeVRA&oe=699AC7DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjPdT2q1g9B9ySgfuEYYXgJ_8bvkJxenFqy_7KLoRRMg&oe=699ACFC7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCug2NTYZxZIUoQ7opOEwHLnBmyTaKaH8qhbZbKkRsgg&oe=699ACB63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWRVbggZ-pPm08nkGvK69BLHD_qTdxOdioQl0Z5SnXsA&oe=699AD811&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS-BrxAMSO7HZCokJnL-79fq2w_8RgRk6GsWoqc5chUg&oe=699ACBB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDATf2LTwPc9In0srNh6NXHr-9bxzKMuKCto9-A16YxQ&oe=699AD2D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH5fat9ruEX8WIzyc3OUB7EZEspe_AYtwQmPoEM_gSQ&oe=699AFA7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfTFCkR0QfmAexEyNRq9hRoSszcYxwBhtdFmmqaQycDg&oe=699ACA2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfRXu7R-fswi5-9i8J2k953XPaEhLLva7xREL8J8UScA&oe=699ACF07&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEk-XQqNWwsemdDZZgvUFsocwmmZRbkWZmjv5uq0_1GDw&oe=699ACBE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdFmepBkK6sGlN7Fy1on4U1JZIWTdTQZSqI-FMQ7DoAg&oe=699AF94B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBFghwAghFWO7vITwOo5yX1nniZWOjAiEviZjR0o8Exg&oe=699ACFA0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMfT7GavHzbtRXWDLznK2bHWyjzNQi060YbOJuHmuDUQ&oe=699AD823&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&o', 0, '2026-02-12 10:19:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4476, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC4636AB6FF11907E6E986C04A19D6C9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770902433914,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:20:33.914Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:20:34'),
(4477, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433@lid\",\"id\":\"AC4636AB6FF11907E6E986C04A19D6C9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770902434868,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T10:20:34.869Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:20:34'),
(4478, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A57A5AE3E67753117C6B76F2A7ABC31F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634948317_957257839957208_9168924436725719164_n.enc?ccb=11-4&oh=01_Q5Aa3wEefDi7r7X1V9034re7j6AdDCqN2UkS02YCMUFATB49vw&oe=69B535B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1maFeOWTDdhK+so03A2eLnde+K2YWHnQGYyXEHzGvm0=\",\"fileLength\":\"6408\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"EfYd91C8ahB5J+u1B2qK4ryh9s4cbp46KqCi6d3tnB4=\",\"fileEncSha256\":\"7LgWi96VKafSNctpdChxeftIspA7y5rf36S3xfMgiEA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634948317_957257839957208_9168924436725719164_n.enc?ccb=11-4&oh=01_Q5Aa3wEefDi7r7X1V9034re7j6AdDCqN2UkS02YCMUFATB49vw&oe=69B535B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902664\",\"waveform\":\"AAAAAAACBwAOVU1HS1JTUEE1KztTVjlRT0hCQykpPUUgLj40BQAAAAAAAAAAAAAAAAUDAAAAAAADCAYHAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902667,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:27.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:28'),
(4479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:27.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:28'),
(4480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:28.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:28'),
(4481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:28.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:28'),
(4482, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:27.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:28'),
(4483, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A57A5AE3E67753117C6B76F2A7ABC31F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634948317_957257839957208_9168924436725719164_n.enc?ccb=11-4&oh=01_Q5Aa3wEefDi7r7X1V9034re7j6AdDCqN2UkS02YCMUFATB49vw&oe=69B535B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1maFeOWTDdhK+so03A2eLnde+K2YWHnQGYyXEHzGvm0=\",\"fileLength\":\"6408\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"EfYd91C8ahB5J+u1B2qK4ryh9s4cbp46KqCi6d3tnB4=\",\"fileEncSha256\":\"7LgWi96VKafSNctpdChxeftIspA7y5rf36S3xfMgiEA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634948317_957257839957208_9168924436725719164_n.enc?ccb=11-4&oh=01_Q5Aa3wEefDi7r7X1V9034re7j6AdDCqN2UkS02YCMUFATB49vw&oe=69B535B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902664\",\"waveform\":\"AAAAAAACBwAOVU1HS1JTUEE1KztTVjlRT0hCQykpPUUgLj40BQAAAAAAAAAAAAAAAAUDAAAAAAADCAYHAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902667,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:27.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:28'),
(4484, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A57A5AE3E67753117C6B76F2A7ABC31F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770902669457,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:29.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:24:29'),
(4485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A57A5AE3E67753117C6B76F2A7ABC31F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770902669457,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:29.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:24:29'),
(4486, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:38.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:39'),
(4487, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":true,\"id\":\"A559042F5DE4A730D05115AF3785E113\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770902678386\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770902678,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:38.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:39'),
(4488, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:38.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:39'),
(4489, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":true,\"id\":\"A559042F5DE4A730D05115AF3785E113\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wFSkLDXsGEY8NVD2EOxTBfxkiZ4DEXlorwy2BMriN5cDA&oe=69B53AE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770902678386\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1708806295\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770902678,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:38.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:39'),
(4490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:39.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:39'),
(4491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:39.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:40'),
(4492, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"72868582961307@lid\",\"id\":\"A559042F5DE4A730D05115AF3785E113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770902680528,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:40.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:24:40'),
(4493, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"72868582961307@lid\",\"id\":\"A559042F5DE4A730D05115AF3785E113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770902680528,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:40.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:24:40'),
(4494, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC33C2CE4FC0D5954CB62AD213F545E6\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/21194541_873250665548955_5937649976644242476_n.enc?ccb=11-4&oh=01_Q5Aa3wFUsqQhASGWssiW6gdyCZb7W2Xb0PPYFdj_-tanmtGhQg&oe=69B53647&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"mxPbinoy8ucxl3qS4AzXnPziyD4qMzg3XrAriXL4KS4=\",\"fileEncSha256\":\"FAYfsVauhSjpattgBS2KwC9uJRTVtqbktq6ZVSU3Ma4=\",\"mediaKey\":\"UeHdT0S\\/67q4k10BaE0jXQsPzC2f87JFDyoYnsy0KaY=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/21194541_873250665548955_5937649976644242476_n.enc?ccb=11-4&oh=01_Q5Aa3wFUsqQhASGWssiW6gdyCZb7W2Xb0PPYFdj_-tanmtGhQg&oe=69B53647&_nc_sid=5e03e0\",\"fileLength\":\"28382\",\"mediaKeyTimestamp\":\"1770902694\",\"isAnimated\":false,\"stickerSentTs\":\"1770902694395\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VAXJlz3Z9n\\/fXEOyCoQQqSd1cW0GAKW4ylTV1oSgysY=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770902695,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:55'),
(4495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"72868582961307@lid\",\"fromMe\":false,\"id\":\"AC33C2CE4FC0D5954CB62AD213F545E6\"},\"pushName\":\"JefersoneCamila♥️♥️\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/21194541_873250665548955_5937649976644242476_n.enc?ccb=11-4&oh=01_Q5Aa3wFUsqQhASGWssiW6gdyCZb7W2Xb0PPYFdj_-tanmtGhQg&oe=69B53647&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"mxPbinoy8ucxl3qS4AzXnPziyD4qMzg3XrAriXL4KS4=\",\"fileEncSha256\":\"FAYfsVauhSjpattgBS2KwC9uJRTVtqbktq6ZVSU3Ma4=\",\"mediaKey\":\"UeHdT0S\\/67q4k10BaE0jXQsPzC2f87JFDyoYnsy0KaY=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/21194541_873250665548955_5937649976644242476_n.enc?ccb=11-4&oh=01_Q5Aa3wFUsqQhASGWssiW6gdyCZb7W2Xb0PPYFdj_-tanmtGhQg&oe=69B53647&_nc_sid=5e03e0\",\"fileLength\":\"28382\",\"mediaKeyTimestamp\":\"1770902694\",\"isAnimated\":false,\"stickerSentTs\":\"1770902694395\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VAXJlz3Z9n\\/fXEOyCoQQqSd1cW0GAKW4ylTV1oSgysY=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770902695,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:55'),
(4496, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:55'),
(4497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:55'),
(4498, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:55'),
(4499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:24:56'),
(4500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"72868582961307@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:56'),
(4501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"72868582961307@lid\",\"pushName\":\"JefersoneCamila♥️♥️\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491878493_1408329710684033_3905378675077142368_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzZ73fWFO_qpVv2qiGlvFxcTBhzXqwhG6iHy5Wjr21Mw&oe=699ACEC5&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:24:55.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:24:56'),
(4502, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:09'),
(4503, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634966162_1245152040903171_1842372224761176332_n.enc?ccb=11-4&oh=01_Q5Aa3wFfKZqQXKhNjJHP92-Y9PbfHO_I7aWIEuiChexhXWFi2Q&oe=69B52EB6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hz59SPbRNgZZX014jlJ6avS+Ebk8LB1OqhgOCHheDfA=\",\"fileLength\":\"8112\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"gnEH6WKJyD35MY4V06rJVy28DYYhi2wFHX3aT5bG7CY=\",\"fileEncSha256\":\"1jSkhHQYvIh82yUzqYP0g6OOyDqjUjTgCjHkvX1KV5Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634966162_1245152040903171_1842372224761176332_n.enc?ccb=11-4&oh=01_Q5Aa3wFfKZqQXKhNjJHP92-Y9PbfHO_I7aWIEuiChexhXWFi2Q&oe=69B52EB6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902706\",\"waveform\":\"AAAJNiEUBgAFEQQAAQAHTUpCV1ZVQThMREhVVEtRPy5APFJUQU5OS0MeJ0ZAKzU\\/QEZJOUYyLUFBQTUZKDk7NA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:09'),
(4504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:09'),
(4505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634966162_1245152040903171_1842372224761176332_n.enc?ccb=11-4&oh=01_Q5Aa3wFfKZqQXKhNjJHP92-Y9PbfHO_I7aWIEuiChexhXWFi2Q&oe=69B52EB6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hz59SPbRNgZZX014jlJ6avS+Ebk8LB1OqhgOCHheDfA=\",\"fileLength\":\"8112\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"gnEH6WKJyD35MY4V06rJVy28DYYhi2wFHX3aT5bG7CY=\",\"fileEncSha256\":\"1jSkhHQYvIh82yUzqYP0g6OOyDqjUjTgCjHkvX1KV5Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634966162_1245152040903171_1842372224761176332_n.enc?ccb=11-4&oh=01_Q5Aa3wFfKZqQXKhNjJHP92-Y9PbfHO_I7aWIEuiChexhXWFi2Q&oe=69B52EB6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902706\",\"waveform\":\"AAAJNiEUBgAFEQQAAQAHTUpCV1ZVQThMREhVVEtRPy5APFJUQU5OS0MeJ0ZAKzU\\/QEZJOUYyLUFBQTUZKDk7NA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:09'),
(4506, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:09'),
(4507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:10'),
(4508, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770902709737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:25:10'),
(4509, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770902709737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:09.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:25:11'),
(4510, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770902730295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:30.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:25:30'),
(4511, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770902730295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:30.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:25:30'),
(4512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770902730636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:30.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:25:30'),
(4513, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5BED93E84BB8FFE2486D70715E28E18\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770902730636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:30.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:25:30'),
(4514, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:57'),
(4515, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9AEF5C2A8B7AB19A262C1EDEE4C5A0\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634820209_4090913434385656_4215685059705443639_n.enc?ccb=11-4&oh=01_Q5Aa3wEQkoTLREWvxsK5oe4P9YdZbrdENjNzVPGDlIilhSDy1A&oe=69B559AA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UuetdRBbvKNL+4dS9\\/MOiUa6\\/hKaVPjrYQruZgbGsNo=\",\"fileLength\":\"42181\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"CtK6363jjViPcF4sFqIja4yyg4lowEeGHqjGw0NQWMo=\",\"fileEncSha256\":\"99JjsPXbLhI7uy7dEcUo4rO3dhagavLRF1NgGn70Rx0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634820209_4090913434385656_4215685059705443639_n.enc?ccb=11-4&oh=01_Q5Aa3wEQkoTLREWvxsK5oe4P9YdZbrdENjNzVPGDlIilhSDy1A&oe=69B559AA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902739\",\"waveform\":\"ABY1OTsHAAAOSBdAKgAACAA1NT8sRwEAT0JHMxpYPxIAAEoAT0FIKjwzN00xSQAAOihNNQADACw2BjY5NDATDw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cm2XAURReLNS3GwSNL8SuZZJuIblxSyCUwflRxkoEMw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902757,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:57'),
(4516, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:57'),
(4517, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:57'),
(4518, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9AEF5C2A8B7AB19A262C1EDEE4C5A0\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634820209_4090913434385656_4215685059705443639_n.enc?ccb=11-4&oh=01_Q5Aa3wEQkoTLREWvxsK5oe4P9YdZbrdENjNzVPGDlIilhSDy1A&oe=69B559AA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UuetdRBbvKNL+4dS9\\/MOiUa6\\/hKaVPjrYQruZgbGsNo=\",\"fileLength\":\"42181\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"CtK6363jjViPcF4sFqIja4yyg4lowEeGHqjGw0NQWMo=\",\"fileEncSha256\":\"99JjsPXbLhI7uy7dEcUo4rO3dhagavLRF1NgGn70Rx0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634820209_4090913434385656_4215685059705443639_n.enc?ccb=11-4&oh=01_Q5Aa3wEQkoTLREWvxsK5oe4P9YdZbrdENjNzVPGDlIilhSDy1A&oe=69B559AA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902739\",\"waveform\":\"ABY1OTsHAAAOSBdAKgAACAA1NT8sRwEAT0JHMxpYPxIAAEoAT0FIKjwzN00xSQAAOihNNQADACw2BjY5NDATDw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cm2XAURReLNS3GwSNL8SuZZJuIblxSyCUwflRxkoEMw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902757,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:57'),
(4519, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:58'),
(4520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:25:58'),
(4521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:25:57.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:25:58'),
(4522, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:23.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:27:24'),
(4523, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A121A901064F64C0754\"},\"pushName\":\"Lima\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55949625_1977074306252199_7313936821143034505_n.enc?ccb=11-4&oh=01_Q5Aa3wHirq3wD1a-JetxLYPMLjX7K3_7ctUc9dB1pbc6XAXCMQ&oe=69B56033&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"EEVH82vdcm83IDRprng7jQSo0sIfvsQ\\/5\\/hIztOqouI=\",\"fileLength\":\"29744\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"R8FVYtXkU6kDGNww7Rl\\/vXImOa6Z8e7Evj+4+vd9Kb8=\",\"fileEncSha256\":\"j\\/REz9GQgT7e8ZGVMLdzfkULTTOITg5PZ+WBeRZwKrQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55949625_1977074306252199_7313936821143034505_n.enc?ccb=11-4&oh=01_Q5Aa3wHirq3wD1a-JetxLYPMLjX7K3_7ctUc9dB1pbc6XAXCMQ&oe=69B56033&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902829\",\"streamingSidecar\":\"O4dXXgkQ8kpokg==\",\"waveform\":\"JyYqP2RkZFlkZGRkSjJTZEUlRGRkQzVkZGQ1KjI8NzxkZGRkZF5kZGJQZGRkQ2RkTk5kZGRPJh4wSWRHZFtMMQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FB8LaS4ySHy3GVcwm8LUUzph8zdNTtjScw2X4d5EmwU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902843,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:23.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:27:24'),
(4524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:23.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:27:24'),
(4525, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A121A901064F64C0754\"},\"pushName\":\"Lima\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55949625_1977074306252199_7313936821143034505_n.enc?ccb=11-4&oh=01_Q5Aa3wHirq3wD1a-JetxLYPMLjX7K3_7ctUc9dB1pbc6XAXCMQ&oe=69B56033&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"EEVH82vdcm83IDRprng7jQSo0sIfvsQ\\/5\\/hIztOqouI=\",\"fileLength\":\"29744\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"R8FVYtXkU6kDGNww7Rl\\/vXImOa6Z8e7Evj+4+vd9Kb8=\",\"fileEncSha256\":\"j\\/REz9GQgT7e8ZGVMLdzfkULTTOITg5PZ+WBeRZwKrQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55949625_1977074306252199_7313936821143034505_n.enc?ccb=11-4&oh=01_Q5Aa3wHirq3wD1a-JetxLYPMLjX7K3_7ctUc9dB1pbc6XAXCMQ&oe=69B56033&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770902829\",\"streamingSidecar\":\"O4dXXgkQ8kpokg==\",\"waveform\":\"JyYqP2RkZFlkZGRkSjJTZEUlRGRkQzVkZGQ1KjI8NzxkZGRkZF5kZGJQZGRkQ2RkTk5kZGRPJh4wSWRHZFtMMQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902211\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FB8LaS4ySHy3GVcwm8LUUzph8zdNTtjScw2X4d5EmwU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770902843,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:23.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:27:24'),
(4526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:24.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:27:24'),
(4527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:24.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:27:25'),
(4528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:24.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:27:25'),
(4529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:27:24.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:27:25'),
(4530, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5E65B01C58D8C77E68B8738940559F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770903378530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:36:18.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:36:18'),
(4531, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5E65B01C58D8C77E68B8738940559F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770903378530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:36:18.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:36:19'),
(4532, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770903591896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:39:51.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:39:52'),
(4533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770903591896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:39:51.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:39:52'),
(4534, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770904012307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:46:52.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:46:52'),
(4535, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770904012307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:46:52.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:46:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770904019268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:46:59.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:46:59'),
(4537, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5F390CAAD88D4BAD8CB64ECFC82E476\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770904019268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:46:59.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:46:59'),
(4538, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:25.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:47:25'),
(4539, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:25.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:47:26'),
(4540, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:26.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:47:27'),
(4541, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:26.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:47:27'),
(4542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":false,\"id\":\"3A931DA60E26307C42D4\"},\"pushName\":\"Cleber Proença🩸O-\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634515397_1411327460477699_4541233551592115635_n.enc?ccb=11-4&oh=01_Q5Aa3wHW6RaED48LZh-uwVgKBQFHInWYw8ebMbeIIczlE-oDZw&oe=69B53D94&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"maM8mm63QMEUtEm9KjhG+t5A+W0JTmzEMCGtocU0S2o=\",\"fileLength\":\"37727\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"2zWFtwDZLe7W\\/9LcrtTl\\/zpwqkWoase3e\\/GRX6SvYc8=\",\"fileEncSha256\":\"lHypdoTU5jschQ6QEhGKMiugIny9jvNZhO12K6YMwGk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634515397_1411327460477699_4541233551592115635_n.enc?ccb=11-4&oh=01_Q5Aa3wHW6RaED48LZh-uwVgKBQFHInWYw8ebMbeIIczlE-oDZw&oe=69B53D94&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770904028\",\"streamingSidecar\":\"oieym9dxJkyalA==\",\"waveform\":\"MmRkZGRUJ01DZGRNJDtkRl5iZGRkZF5QZGRVJz5NZGROZFxbZCwPPlVPVlZkZF1dZGRZYGMzZGFkOBtGZGRQHw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770899806\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F06KAyFS2061wAFJgEPp++sgTa6KtxJCPatqe76PwiM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770904046,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:26.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:47:27'),
(4543, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":false,\"id\":\"3A931DA60E26307C42D4\"},\"pushName\":\"Cleber Proença🩸O-\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634515397_1411327460477699_4541233551592115635_n.enc?ccb=11-4&oh=01_Q5Aa3wHW6RaED48LZh-uwVgKBQFHInWYw8ebMbeIIczlE-oDZw&oe=69B53D94&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"maM8mm63QMEUtEm9KjhG+t5A+W0JTmzEMCGtocU0S2o=\",\"fileLength\":\"37727\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"2zWFtwDZLe7W\\/9LcrtTl\\/zpwqkWoase3e\\/GRX6SvYc8=\",\"fileEncSha256\":\"lHypdoTU5jschQ6QEhGKMiugIny9jvNZhO12K6YMwGk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634515397_1411327460477699_4541233551592115635_n.enc?ccb=11-4&oh=01_Q5Aa3wHW6RaED48LZh-uwVgKBQFHInWYw8ebMbeIIczlE-oDZw&oe=69B53D94&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770904028\",\"streamingSidecar\":\"oieym9dxJkyalA==\",\"waveform\":\"MmRkZGRUJ01DZGRNJDtkRl5iZGRkZF5QZGRVJz5NZGROZFxbZCwPPlVPVlZkZF1dZGRZYGMzZGFkOBtGZGRQHw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770899806\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F06KAyFS2061wAFJgEPp++sgTa6KtxJCPatqe76PwiM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770904046,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:26.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:47:27'),
(4544, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:27.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:47:27'),
(4545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:27.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:47:27'),
(4546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:27.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:47:27'),
(4547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:47:27.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:47:27'),
(4548, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:56:30'),
(4549, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":false,\"id\":\"AC927B01EA2B410FB6376B76413DDD77\"},\"pushName\":\"Stelia Saude\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/40914195_793744726396719_8821324572233192611_n.enc?ccb=11-4&oh=01_Q5Aa3wGfKgxjStRakF1mdQGZebMxiWHD8ujXiePZ9MRaa4IIRA&oe=69B55A2B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"cQiPNtVGWVksjuvRuQ7jkvTKWzCIevm3SfS\\/TxiA4ek=\",\"fileLength\":\"67737\",\"height\":1600,\"width\":450,\"mediaKey\":\"YL7+ivG+I7AgGayx73VnTTgwRoWhuNN1ass3ul9NGnI=\",\"fileEncSha256\":\"auVOztbt\\/CYvGMBKhSS+7vzrQDBwZyDVG5Ch1exbB1k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/40914195_793744726396719_8821324572233192611_n.enc?ccb=11-4&oh=01_Q5Aa3wGfKgxjStRakF1mdQGZebMxiWHD8ujXiePZ9MRaa4IIRA&oe=69B55A2B&_nc_sid=5e03e0&_nc_hot=1770904589\",\"mediaKeyTimestamp\":\"1770904549\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADsAEAMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAgEGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADo6DQGCLD\\/xAAhEAABAwQBBQAAAAAAAAAAAAABAAIhAxESIhAgMkJRYf\\/aAAgBAQABPwAOrtyDyJ7U3K2xlBlUE7wpv86QQeHMqeLkAYlDME7hC8SFgz0gAF\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"6DBn4IpQ2gSs+6Yz+z5HVV\\/DB9ore\\/y8qzOfT6jk5Ng4OIfKWIeXlA==\",\"scanLengths\":[4619,31939,14484,16695],\"midQualityFileSha256\":\"0OrMM3+eeFEu1cbMYJvFGE94xx8Ky2\\/vqenFN79QObY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1mK3cYqVDN9ItWoWiwMgxPVgXh4ynN\\/RiRxhYLLqR94=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770904589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 10:56:30'),
(4550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:56:30'),
(4551, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":false,\"id\":\"AC927B01EA2B410FB6376B76413DDD77\"},\"pushName\":\"Stelia Saude\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/40914195_793744726396719_8821324572233192611_n.enc?ccb=11-4&oh=01_Q5Aa3wGfKgxjStRakF1mdQGZebMxiWHD8ujXiePZ9MRaa4IIRA&oe=69B55A2B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"cQiPNtVGWVksjuvRuQ7jkvTKWzCIevm3SfS\\/TxiA4ek=\",\"fileLength\":\"67737\",\"height\":1600,\"width\":450,\"mediaKey\":\"YL7+ivG+I7AgGayx73VnTTgwRoWhuNN1ass3ul9NGnI=\",\"fileEncSha256\":\"auVOztbt\\/CYvGMBKhSS+7vzrQDBwZyDVG5Ch1exbB1k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/40914195_793744726396719_8821324572233192611_n.enc?ccb=11-4&oh=01_Q5Aa3wGfKgxjStRakF1mdQGZebMxiWHD8ujXiePZ9MRaa4IIRA&oe=69B55A2B&_nc_sid=5e03e0&_nc_hot=1770904589\",\"mediaKeyTimestamp\":\"1770904549\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADsAEAMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAgEGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADo6DQGCLD\\/xAAhEAABAwQBBQAAAAAAAAAAAAABAAIhAxESIhAgMkJRYf\\/aAAgBAQABPwAOrtyDyJ7U3K2xlBlUE7wpv86QQeHMqeLkAYlDME7hC8SFgz0gAF\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"6DBn4IpQ2gSs+6Yz+z5HVV\\/DB9ore\\/y8qzOfT6jk5Ng4OIfKWIeXlA==\",\"scanLengths\":[4619,31939,14484,16695],\"midQualityFileSha256\":\"0OrMM3+eeFEu1cbMYJvFGE94xx8Ky2\\/vqenFN79QObY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1mK3cYqVDN9ItWoWiwMgxPVgXh4ynN\\/RiRxhYLLqR94=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770904589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 10:56:30'),
(4552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:56:30'),
(4553, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:56:30'),
(4554, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:56:31'),
(4555, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:56:31'),
(4556, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 10:56:31'),
(4557, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T10:56:30.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 10:56:31'),
(4558, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A5BFB52C327C4B48CA9A4D372E967C0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770905033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:53.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:03:53'),
(4559, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:53.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:03:53'),
(4560, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:53.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:03:53'),
(4561, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:53.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:03:53'),
(4562, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A5BFB52C327C4B48CA9A4D372E967C0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770905033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:53.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:03:53'),
(4563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:53.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:03:54'),
(4564, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:55.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:03:55'),
(4565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A5BE63421361A8E17060630F4A91D17B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDC1F1Q8TH\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770905035,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:55.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:03:55'),
(4566, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:55.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:03:55'),
(4567, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A5BE63421361A8E17060630F4A91D17B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDC1F1Q8TH\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770905035,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:55.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:03:55'),
(4568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:55.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:03:55'),
(4569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEB9qo2gyR518jPkipnuOXfsLNGQsZEOkqgyyUPsafIQw&oe=699AF60E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:03:55.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:03:56'),
(4570, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5E328A4AABD868FE99C22B9A2185A9D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585011815_1269598631725355_6850645952413144720_n.enc?ccb=11-4&oh=01_Q5Aa3wHJbSIOldFemV4WIEfPA7z2R2LfpKom_wq3cLJoKgtUeQ&oe=69B54657&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2Ej24AXh3ZeYge4XXlnfRUvHjp7Pg3Js1JwFjCyYm4w=\",\"fileLength\":\"38351\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"BTySMixhvcgjSqg8TJ3BzrUWx70lWTXAazlNyLsyXuA=\",\"fileEncSha256\":\"pjJCfyjVnadJgym9fZmJnXEXGVz8s2WLxK1FTIVm\\/2I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585011815_1269598631725355_6850645952413144720_n.enc?ccb=11-4&oh=01_Q5Aa3wHJbSIOldFemV4WIEfPA7z2R2LfpKom_wq3cLJoKgtUeQ&oe=69B54657&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905083\",\"waveform\":\"AFkgTj4QClFZVFRhCFlJP0pQT0wAADBBVFQnVUhQVkJDVU0LEhFXXC1JQkZVVj9EO1QTF1ZTRBs5JBE6PkNRBQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905099,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:04:59.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:04:59'),
(4571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:04:59.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:04:59'),
(4572, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:04:59.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:04:59'),
(4573, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5E328A4AABD868FE99C22B9A2185A9D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585011815_1269598631725355_6850645952413144720_n.enc?ccb=11-4&oh=01_Q5Aa3wHJbSIOldFemV4WIEfPA7z2R2LfpKom_wq3cLJoKgtUeQ&oe=69B54657&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2Ej24AXh3ZeYge4XXlnfRUvHjp7Pg3Js1JwFjCyYm4w=\",\"fileLength\":\"38351\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"BTySMixhvcgjSqg8TJ3BzrUWx70lWTXAazlNyLsyXuA=\",\"fileEncSha256\":\"pjJCfyjVnadJgym9fZmJnXEXGVz8s2WLxK1FTIVm\\/2I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585011815_1269598631725355_6850645952413144720_n.enc?ccb=11-4&oh=01_Q5Aa3wHJbSIOldFemV4WIEfPA7z2R2LfpKom_wq3cLJoKgtUeQ&oe=69B54657&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905083\",\"waveform\":\"AFkgTj4QClFZVFRhCFlJP0pQT0wAADBBVFQnVUhQVkJDVU0LEhFXXC1JQkZVVj9EO1QTF1ZTRBs5JBE6PkNRBQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905099,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:04:59.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:04:59'),
(4574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:04:59.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:04:59'),
(4575, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:04:59.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:04:59'),
(4576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5E328A4AABD868FE99C22B9A2185A9D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905100375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:00.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:05:00'),
(4577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5E328A4AABD868FE99C22B9A2185A9D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905100375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:00.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:05:00'),
(4578, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:01.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:05:01'),
(4579, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A590B5BB3C78B1D5FB862C64C7B0B96C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDC1Q003R3\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770905101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:01.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:05:01'),
(4580, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A590B5BB3C78B1D5FB862C64C7B0B96C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDC1Q003R3\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770905101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:01.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:05:01'),
(4581, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:01.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:05:01'),
(4582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:01.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:05:01'),
(4583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:01.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:05:02'),
(4584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A590B5BB3C78B1D5FB862C64C7B0B96C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905104905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:04.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:05:04'),
(4585, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A590B5BB3C78B1D5FB862C64C7B0B96C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905104905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:05:04.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:05:05'),
(4586, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:06:09'),
(4587, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634789971_1698175224481368_942769351464828669_n.enc?ccb=11-4&oh=01_Q5Aa3wFh_qIPY5HT0Jfu_iLnr8ko52Xwje-YzcSkE1K3zlDuEg&oe=69B54C78&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"io5MjwZHiDB3m2vF7ckMvaZC9x1TRK35b\\/wqXRBZLSk=\",\"fileLength\":\"84512\",\"seconds\":38,\"ptt\":true,\"mediaKey\":\"pMPerR4vGKtxY88mlJEMpjKzPhbTVcKAMkda2fC4aaQ=\",\"fileEncSha256\":\"OfjBduqEqNAJFdcQUr6qrx2wO9EoRFUVFKGs7aP2kYE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634789971_1698175224481368_942769351464828669_n.enc?ccb=11-4&oh=01_Q5Aa3wFh_qIPY5HT0Jfu_iLnr8ko52Xwje-YzcSkE1K3zlDuEg&oe=69B54C78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905132\",\"waveform\":\"AB5dVltNVixaVEwAJ1JSU1FUTg9eUFkUPkZdSwBhXlVFYk9TVi5RUhZKVTMTUSteRDxGEQ0mVlNWUWJECjhTRA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905168,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:08.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:06:09'),
(4588, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:06:09'),
(4589, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634789971_1698175224481368_942769351464828669_n.enc?ccb=11-4&oh=01_Q5Aa3wFh_qIPY5HT0Jfu_iLnr8ko52Xwje-YzcSkE1K3zlDuEg&oe=69B54C78&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"io5MjwZHiDB3m2vF7ckMvaZC9x1TRK35b\\/wqXRBZLSk=\",\"fileLength\":\"84512\",\"seconds\":38,\"ptt\":true,\"mediaKey\":\"pMPerR4vGKtxY88mlJEMpjKzPhbTVcKAMkda2fC4aaQ=\",\"fileEncSha256\":\"OfjBduqEqNAJFdcQUr6qrx2wO9EoRFUVFKGs7aP2kYE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634789971_1698175224481368_942769351464828669_n.enc?ccb=11-4&oh=01_Q5Aa3wFh_qIPY5HT0Jfu_iLnr8ko52Xwje-YzcSkE1K3zlDuEg&oe=69B54C78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905132\",\"waveform\":\"AB5dVltNVixaVEwAJ1JSU1FUTg9eUFkUPkZdSwBhXlVFYk9TVi5RUhZKVTMTUSteRDxGEQ0mVlNWUWJECjhTRA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905168,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:08.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:06:09'),
(4590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:09.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:06:09'),
(4591, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905169646,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:09.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:06:09'),
(4592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:09.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:06:09'),
(4593, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905169646,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:06:09.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:06:09'),
(4594, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T11:07:09.358Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:07:09'),
(4595, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wELsuyCUnsodBvzXK9xUokIg1-Wc8YOw2OVdpxtagANlg&oe=699AF3AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:07:09.515Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:07:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4596, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"ACEF52FF15E9290DFB58B7B72F69E329\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634811719_930930992701195_7023153111732955578_n.enc?ccb=11-4&oh=01_Q5Aa3wE17k2VzBYnLziJH-rDMJSURNVUT6PKZgE_TqxpmV0qSA&oe=69B5452C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CDdgCqI5UViJKhPgCfuQSF36nbrR5KSw\\/cfASIrFSQE=\",\"fileLength\":\"34535\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"Xjhch8n\\/z0QuLpVpOMQcA1KGhYDBNRIRHQptvbdcwyM=\",\"fileEncSha256\":\"vuY5glkCXwTce7vJt0TrBFEuPnwSLvilNC0pgL7STHI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634811719_930930992701195_7023153111732955578_n.enc?ccb=11-4&oh=01_Q5Aa3wE17k2VzBYnLziJH-rDMJSURNVUT6PKZgE_TqxpmV0qSA&oe=69B5452C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905214\",\"waveform\":\"ACVRXwtPQTw5RFFTVTZBFRhDIzdXS1gqREw7ShpFUjNGUAACAAAAABtWQxBNSkw\\/Uk9CTDNIOTpNUhlNAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905229,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T11:07:09.359Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:07:09'),
(4597, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACEF52FF15E9290DFB58B7B72F69E329\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905233193,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:07:13.193Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:07:13'),
(4598, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T11:08:10.601Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:10'),
(4599, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":true,\"id\":\"ACBCB3BD76AA146B233A8CC2FDB978F5\"},\"pushName\":\"~Johnny\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628692142_1206089057916727_7383308224172746943_n.enc?ccb=11-4&oh=01_Q5Aa3wEhtOF1vVlfyQcQZHKYYf_bnlMvBpxqCyVhB7MCoRVNVw&oe=69B536A1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4NmLbJy9eIitGg3h6hay7iH1ZwZfAzsvNr46eb8f6Ek=\",\"fileLength\":\"37936\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"AASIBkRhzr042YGUXt4ecNmfEZVMOPntwXXSAMHZ0cQ=\",\"fileEncSha256\":\"xfit9MqImhduuCOm1d0Bv57AGUsXMN\\/ih3GjZZYde2E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628692142_1206089057916727_7383308224172746943_n.enc?ccb=11-4&oh=01_Q5Aa3wEhtOF1vVlfyQcQZHKYYf_bnlMvBpxqCyVhB7MCoRVNVw&oe=69B536A1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905275\",\"waveform\":\"ADpZXy1PWkpOUhJaTgoAAENQGlNLSkgAAABJU1dHSExOACUAACMDSTZIL05MMR48S0sAAwAVVidJMkU8Ris6FQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905290,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T11:08:10.602Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:10'),
(4600, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wELsuyCUnsodBvzXK9xUokIg1-Wc8YOw2OVdpxtagANlg&oe=699AF3AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:08:10.898Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:10'),
(4601, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACBCB3BD76AA146B233A8CC2FDB978F5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905292007,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:08:12.008Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:12'),
(4602, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905300776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:20.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:20'),
(4603, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905300776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:20.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:21'),
(4604, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905302391,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:22.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:22'),
(4605, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5AED5D14E5000900DED96E12A7EEEA9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905302391,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:22.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:22'),
(4606, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC32B2A71CE5DE107FE2926BC0E3E7DA\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Ele está direto no roteador\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3E2R8kPwj2NHeu86ovpS7zZCih8JPgjyueE7eFqthuk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:36.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:37'),
(4607, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:36.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:37'),
(4608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:37.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:37'),
(4609, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC32B2A71CE5DE107FE2926BC0E3E7DA\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Ele está direto no roteador\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3E2R8kPwj2NHeu86ovpS7zZCih8JPgjyueE7eFqthuk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:36.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:37'),
(4610, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:36.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:37'),
(4611, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:36.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:37'),
(4612, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:36.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:38'),
(4613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:37.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:38'),
(4614, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:39.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:39'),
(4615, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9676817C51580315A7DC72EAC6BA99\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Com cabo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HQNJpHQXRsH1M6amtXd2a1U3iIl6sfkElIhqjsGSX6k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:39.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:39'),
(4616, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:39.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:39'),
(4617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC9676817C51580315A7DC72EAC6BA99\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Com cabo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HQNJpHQXRsH1M6amtXd2a1U3iIl6sfkElIhqjsGSX6k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:39.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:39'),
(4618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:39.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:39'),
(4619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:39.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:40'),
(4620, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:40.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:40'),
(4621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:40.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:40'),
(4622, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:46'),
(4623, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACD372BA5E06AEE27D580733EA6E86E4\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Fica tranquilo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GZEVKujp1BT+bBFd9wFhG6V4PwmwfPdfAvNqy\\/2NweQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905326,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:46'),
(4624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:46'),
(4625, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACD372BA5E06AEE27D580733EA6E86E4\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Fica tranquilo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GZEVKujp1BT+bBFd9wFhG6V4PwmwfPdfAvNqy\\/2NweQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905326,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:46'),
(4626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:46'),
(4627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:47'),
(4628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:47'),
(4629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:46.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:47'),
(4630, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:49'),
(4631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC4F8E650A91798A0EEBB18BD2BC97E1\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Eu te aviso\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ADFtRa+bQ9eDDBbvlpOgYMeiCq\\/WTDutrJFfua3MHs0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905328,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:49'),
(4632, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:49'),
(4633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:49'),
(4634, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC4F8E650A91798A0EEBB18BD2BC97E1\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Eu te aviso\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ADFtRa+bQ9eDDBbvlpOgYMeiCq\\/WTDutrJFfua3MHs0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905328,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:49'),
(4635, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:50'),
(4636, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC8DC88625CAA6553770A4DB9D9B6227\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Valew\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MNBDI4GmcvCU6sp2\\/VSFSOM7LqNQwkq9S4gHf5lIbFM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905330,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:50'),
(4637, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:50'),
(4638, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:50'),
(4639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"AC8DC88625CAA6553770A4DB9D9B6227\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Valew\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MNBDI4GmcvCU6sp2\\/VSFSOM7LqNQwkq9S4gHf5lIbFM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905330,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:50'),
(4640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:51'),
(4641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:51'),
(4642, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:08:51'),
(4643, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:51'),
(4644, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:49.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:51'),
(4645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:08:50.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:08:52'),
(4646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:35.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:09:35'),
(4647, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:34.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:09:35'),
(4648, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905375393,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:35.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:09:35'),
(4649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:35.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:09:35'),
(4650, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:34.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:09:35'),
(4651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628782892_1586508235969595_5602335854986538765_n.enc?ccb=11-4&oh=01_Q5Aa3wEK4YkOCXm5hRZw8AyhQsiVvh3m_WZSEK7juXawXCqYyQ&oe=69B53601&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"rWnhxqIdcUjurse5P3iimZrll1d0oEkxv+rk7n37p5g=\",\"fileLength\":\"19942\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"UZT9zF3NagziG92Wnmfjg7x9rV0tFSh0KTSO9mXFTos=\",\"fileEncSha256\":\"EWFycyHt1FXpNgkjWvTqExT3m571s0wrP6PoVdHJXJA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628782892_1586508235969595_5602335854986538765_n.enc?ccb=11-4&oh=01_Q5Aa3wEK4YkOCXm5hRZw8AyhQsiVvh3m_WZSEK7juXawXCqYyQ&oe=69B53601&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905367\",\"waveform\":\"AAA3MUBZPlZbP1FAT1RHOU01TRpJS1cYUj1NSxguIUxLWBtQUzZISyM+HAAAADs8RRgrL0MuTipPTQAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:34.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:09:36'),
(4652, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905375393,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:35.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:09:36'),
(4653, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628782892_1586508235969595_5602335854986538765_n.enc?ccb=11-4&oh=01_Q5Aa3wEK4YkOCXm5hRZw8AyhQsiVvh3m_WZSEK7juXawXCqYyQ&oe=69B53601&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"rWnhxqIdcUjurse5P3iimZrll1d0oEkxv+rk7n37p5g=\",\"fileLength\":\"19942\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"UZT9zF3NagziG92Wnmfjg7x9rV0tFSh0KTSO9mXFTos=\",\"fileEncSha256\":\"EWFycyHt1FXpNgkjWvTqExT3m571s0wrP6PoVdHJXJA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628782892_1586508235969595_5602335854986538765_n.enc?ccb=11-4&oh=01_Q5Aa3wEK4YkOCXm5hRZw8AyhQsiVvh3m_WZSEK7juXawXCqYyQ&oe=69B53601&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905367\",\"waveform\":\"AAA3MUBZPlZbP1FAT1RHOU01TRpJS1cYUj1NSxguIUxLWBtQUzZISyM+HAAAADs8RRgrL0MuTipPTQAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:34.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:09:36'),
(4654, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905399040,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:59.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:09:59'),
(4655, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905399040,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:09:59.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:09:59'),
(4656, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905400352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:00.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:00'),
(4657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5E6C485C2E91CA0A6B51D7DFA1A4151\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905400352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:00.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:00'),
(4658, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:06'),
(4659, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:06'),
(4660, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACE76E6FA0237134BE35BCB0BC1701CD\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hptOmFLCaeRZ97fTkH2YNqcTq5chUvYzlJuWpaU5ipg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905405,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:06'),
(4661, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:06'),
(4662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:06'),
(4663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:07'),
(4664, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACE76E6FA0237134BE35BCB0BC1701CD\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hptOmFLCaeRZ97fTkH2YNqcTq5chUvYzlJuWpaU5ipg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905405,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:07'),
(4665, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:06.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:07');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:18.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:18'),
(4667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:18.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:19'),
(4668, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5FF42D3F95D95C992653F125BAD632A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635011533_2473446529789087_8755519438631947823_n.enc?ccb=11-4&oh=01_Q5Aa3wFFZi-c-u9Mj-odlVtaWZMl9n37ELVRo8I9mChVfg_17g&oe=69B550E8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uGJa34kspegdsqpoMn6MXx2ukyaavfff9vdW5AjHk3o=\",\"fileLength\":\"47449\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"SXQzgliK4sCzq3J\\/eXrczpBu65v6hMyEIgUSvZs7Ibs=\",\"fileEncSha256\":\"7sCIT921vbwLBpxGLNlx7JL4zBTou2NMizEpEbu2SlY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635011533_2473446529789087_8755519438631947823_n.enc?ccb=11-4&oh=01_Q5Aa3wFFZi-c-u9Mj-odlVtaWZMl9n37ELVRo8I9mChVfg_17g&oe=69B550E8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905399\",\"waveform\":\"AB1JSkNLWFVEVlJhKy5SSU1QP1Y+VhxXWUtSTlhDT0xVREwAPVVIAVRRTRIMUFJQHygMTlY7WAItV1tWEShGAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905418,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:18.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:19'),
(4669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:19.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:19'),
(4670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5FF42D3F95D95C992653F125BAD632A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905419161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:19.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:19'),
(4671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:19.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:19'),
(4672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5FF42D3F95D95C992653F125BAD632A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905419161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:19.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:20'),
(4673, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A5FF42D3F95D95C992653F125BAD632A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635011533_2473446529789087_8755519438631947823_n.enc?ccb=11-4&oh=01_Q5Aa3wFFZi-c-u9Mj-odlVtaWZMl9n37ELVRo8I9mChVfg_17g&oe=69B550E8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uGJa34kspegdsqpoMn6MXx2ukyaavfff9vdW5AjHk3o=\",\"fileLength\":\"47449\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"SXQzgliK4sCzq3J\\/eXrczpBu65v6hMyEIgUSvZs7Ibs=\",\"fileEncSha256\":\"7sCIT921vbwLBpxGLNlx7JL4zBTou2NMizEpEbu2SlY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635011533_2473446529789087_8755519438631947823_n.enc?ccb=11-4&oh=01_Q5Aa3wFFZi-c-u9Mj-odlVtaWZMl9n37ELVRo8I9mChVfg_17g&oe=69B550E8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905399\",\"waveform\":\"AB1JSkNLWFVEVlJhKy5SSU1QP1Y+VhxXWUtSTlhDT0xVREwAPVVIAVRRTRIMUFJQHygMTlY7WAItV1tWEShGAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905418,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:18.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:21'),
(4674, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5FF42D3F95D95C992653F125BAD632A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905428060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:28.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:28'),
(4675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A5FF42D3F95D95C992653F125BAD632A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905428060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:28.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:28'),
(4676, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:40'),
(4677, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:40'),
(4678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:40'),
(4679, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD701F953B92DA8E85E\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"E cpf??\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902908\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oVPL6TiXhcSSnppfKk7CfDpMxn6UPyRI\\/YSThaeSqCA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905440,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:40'),
(4680, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:40'),
(4681, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD701F953B92DA8E85E\"},\"pushName\":\"Lima\",\"message\":{\"conversation\":\"E cpf??\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902908\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oVPL6TiXhcSSnppfKk7CfDpMxn6UPyRI\\/YSThaeSqCA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905440,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:41'),
(4682, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:41'),
(4683, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:40.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:41'),
(4684, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:42'),
(4685, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A16CDAAB0CE2B730CD1\"},\"pushName\":\"Lima\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/634427574_1398229278260685_1253529388774643847_n.enc?ccb=11-4&oh=01_Q5Aa3wHiruXpmGR0tFVCKQASgP7XF8Nez0tLQxwc3RfnPHk84w&oe=69B547D7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"sicredi_1770905424\",\"fileSha256\":\"E8mVwh1pIUQPIr6joxGhDYKd9CtFalALr5bHs76UT3E=\",\"fileLength\":\"62479\",\"pageCount\":1,\"mediaKey\":\"pV3JhTSJJPwhkkeACQVuu\\/ZK6A5Ar0vheLibWrWknt0=\",\"fileName\":\"sicredi_1770905424.pdf\",\"fileEncSha256\":\"1ikgGOyY0HEHvQ2r5k\\/cxY7yrQgqjjPPnD1VS5FXZDo=\",\"directPath\":\"\\/v\\/t62.7119-24\\/634427574_1398229278260685_1253529388774643847_n.enc?ccb=11-4&oh=01_Q5Aa3wHiruXpmGR0tFVCKQASgP7XF8Nez0tLQxwc3RfnPHk84w&oe=69B547D7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905435\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIADMDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0mZhdTRk2AIipKqbNABGbJVc6K2KNAAAAAAAAB\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AJ\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQMBAT8AJ\\/\\/EACMQAAEDAgYDAQAAAAAAAAAAAAEAAhExQQMQEiAhYRMiUUD\\/2gAIAQEAAT8AM2he\\/SGq+Tpj1qgMS5GWJUIGDKaZG155UlNM8SgCDXZiVyDgLIGROx5grUfgXPSHcbHtLqFeI\\/UMM3ctHa0doCPz\\/wD\\/\\/gADAP\\/Z\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902908\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S5y3U9BvMTTzrfnF+Z3Hvgzimq0ouGnPDb6YIAp+38I=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770905441,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:42'),
(4686, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:42'),
(4687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:42'),
(4688, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A16CDAAB0CE2B730CD1\"},\"pushName\":\"Lima\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/634427574_1398229278260685_1253529388774643847_n.enc?ccb=11-4&oh=01_Q5Aa3wHiruXpmGR0tFVCKQASgP7XF8Nez0tLQxwc3RfnPHk84w&oe=69B547D7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"sicredi_1770905424\",\"fileSha256\":\"E8mVwh1pIUQPIr6joxGhDYKd9CtFalALr5bHs76UT3E=\",\"fileLength\":\"62479\",\"pageCount\":1,\"mediaKey\":\"pV3JhTSJJPwhkkeACQVuu\\/ZK6A5Ar0vheLibWrWknt0=\",\"fileName\":\"sicredi_1770905424.pdf\",\"fileEncSha256\":\"1ikgGOyY0HEHvQ2r5k\\/cxY7yrQgqjjPPnD1VS5FXZDo=\",\"directPath\":\"\\/v\\/t62.7119-24\\/634427574_1398229278260685_1253529388774643847_n.enc?ccb=11-4&oh=01_Q5Aa3wHiruXpmGR0tFVCKQASgP7XF8Nez0tLQxwc3RfnPHk84w&oe=69B547D7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905435\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIADMDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0mZhdTRk2AIipKqbNABGbJVc6K2KNAAAAAAAAB\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AJ\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQMBAT8AJ\\/\\/EACMQAAEDAgYDAQAAAAAAAAAAAAEAAhExQQMQEiAhYRMiUUD\\/2gAIAQEAAT8AM2he\\/SGq+Tpj1qgMS5GWJUIGDKaZG155UlNM8SgCDXZiVyDgLIGROx5grUfgXPSHcbHtLqFeI\\/UMM3ctHa0doCPz\\/wD\\/\\/gADAP\\/Z\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770902908\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S5y3U9BvMTTzrfnF+Z3Hvgzimq0ouGnPDb6YIAp+38I=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770905441,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:42'),
(4689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:10:43'),
(4690, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996618993@s.whatsapp.net\",\"pushName\":\"Leandro 8993 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:43'),
(4691, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996618993@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:10:42.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:10:43'),
(4692, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:26'),
(4693, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACE6B4EAB6BC4C86A8E364155076D27A\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Positivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X3b6e3xUJagkspe1p71j0+oRSvXVME7AkVVSGa2YZnM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905546,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:26'),
(4694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:26'),
(4695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:26'),
(4696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:27'),
(4697, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACE6B4EAB6BC4C86A8E364155076D27A\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Positivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X3b6e3xUJagkspe1p71j0+oRSvXVME7AkVVSGa2YZnM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905546,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:27'),
(4698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:27'),
(4699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:26.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:27'),
(4700, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:54.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:54'),
(4701, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:54.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:54'),
(4702, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A595EEC15F8D87687414931D58CB69BB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia dona Stelia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770905573,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:54.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:54'),
(4703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:54.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:54'),
(4704, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A595EEC15F8D87687414931D58CB69BB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia dona Stelia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770905573,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:54.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:54'),
(4705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:54.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:54'),
(4706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:55.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:55'),
(4707, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A51D1C818B651E30ACF4528BCC10FC29\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770905574604\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770905575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:55.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:55'),
(4708, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:55.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:55'),
(4709, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A51D1C818B651E30ACF4528BCC10FC29\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770905574604\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770905575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:55.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:55'),
(4710, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:55.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:55'),
(4711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A595EEC15F8D87687414931D58CB69BB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905576113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:56.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:56'),
(4712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR87_w539v53gNlmiOWxPbLyjA1kgOPq0a-_4xzXV-QA&oe=699ADE5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:55.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:56'),
(4713, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A595EEC15F8D87687414931D58CB69BB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905576113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:56.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:56'),
(4714, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A51D1C818B651E30ACF4528BCC10FC29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905576258,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:56.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:12:56'),
(4715, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A51D1C818B651E30ACF4528BCC10FC29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905576258,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:12:56.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:12:56'),
(4716, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:01.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:01'),
(4717, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5274ABAC2E57F2BA35E18C9EC0B3D20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770905580662\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770905581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:01.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:01'),
(4718, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5274ABAC2E57F2BA35E18C9EC0B3D20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770905580662\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770905581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:01.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:01'),
(4719, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:01.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:01'),
(4720, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:01.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:01'),
(4721, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:01.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:02'),
(4722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5274ABAC2E57F2BA35E18C9EC0B3D20\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905582532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:02.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:02'),
(4723, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5274ABAC2E57F2BA35E18C9EC0B3D20\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905582532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:02.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:02'),
(4724, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:08.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:08'),
(4725, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5210C6DE5137BDEB6C724317AF46642\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFvYAXJ9JSblS1Pl3QgdbpwRTZFs3ZpXCEHWratsnPEfA&oe=69B55FE3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFvYAXJ9JSblS1Pl3QgdbpwRTZFs3ZpXCEHWratsnPEfA&oe=69B55FE3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1770905587394\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770905588,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:08.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:08'),
(4726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:08.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:08'),
(4727, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:08.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:08');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4728, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5210C6DE5137BDEB6C724317AF46642\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFvYAXJ9JSblS1Pl3QgdbpwRTZFs3ZpXCEHWratsnPEfA&oe=69B55FE3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFvYAXJ9JSblS1Pl3QgdbpwRTZFs3ZpXCEHWratsnPEfA&oe=69B55FE3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1770905587394\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770905588,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:08.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:08'),
(4729, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:08.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:08'),
(4730, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5210C6DE5137BDEB6C724317AF46642\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905589387,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:09.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:13:09'),
(4731, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5210C6DE5137BDEB6C724317AF46642\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905589387,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:13:09.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:13:09'),
(4732, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5A44A8E896C4E1AA1952A219DF8EFC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"📆 DATA ALTERADA !\\n\\nUSUARIO: leo9920\\nEXPIRA EM: 08-03-2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770905661,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:21.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:22'),
(4733, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:21.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:22'),
(4734, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:21.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:22'),
(4735, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5A44A8E896C4E1AA1952A219DF8EFC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"📆 DATA ALTERADA !\\n\\nUSUARIO: leo9920\\nEXPIRA EM: 08-03-2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770905661,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:21.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:22'),
(4736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:22.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:22'),
(4737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:22.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:23'),
(4738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5A44A8E896C4E1AA1952A219DF8EFC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905663374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:23.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:23'),
(4739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5A44A8E896C4E1AA1952A219DF8EFC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905663374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:23.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:23'),
(4740, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A53BAADACB522140491D26D295E03139\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587231750_2052891902227163_3787716425550459517_n.enc?ccb=11-4&oh=01_Q5Aa3wGJ3hbed3Kq7W7ZWGi6_xRrASbovZT8D4ZbvSwYylmFtQ&oe=69B55543&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IimE4pqtiVnYGYEwWSxTH2VN4hpaG2MG0e+8Wth1RJE=\",\"fileLength\":\"38776\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"VW2ee+0314ECY4u6jqVQBc+aeS4wJX0DLpugr2o+HKM=\",\"fileEncSha256\":\"lN6CAIqgCZcJitOUSyBJqvYlzknrvs3dUvr6kyEYyoI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587231750_2052891902227163_3787716425550459517_n.enc?ccb=11-4&oh=01_Q5Aa3wGJ3hbed3Kq7W7ZWGi6_xRrASbovZT8D4ZbvSwYylmFtQ&oe=69B55543&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905667\",\"waveform\":\"AFtiY0haSEs4PEUzYF5DO0AuMFIeClIeTmAjWCNDEQlMRFRYTixWYlMSDUkUV0hPV01MVlQUIShDWjhSU0tQWA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905683,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:43.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:43'),
(4741, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":true,\"id\":\"A53BAADACB522140491D26D295E03139\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587231750_2052891902227163_3787716425550459517_n.enc?ccb=11-4&oh=01_Q5Aa3wGJ3hbed3Kq7W7ZWGi6_xRrASbovZT8D4ZbvSwYylmFtQ&oe=69B55543&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IimE4pqtiVnYGYEwWSxTH2VN4hpaG2MG0e+8Wth1RJE=\",\"fileLength\":\"38776\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"VW2ee+0314ECY4u6jqVQBc+aeS4wJX0DLpugr2o+HKM=\",\"fileEncSha256\":\"lN6CAIqgCZcJitOUSyBJqvYlzknrvs3dUvr6kyEYyoI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587231750_2052891902227163_3787716425550459517_n.enc?ccb=11-4&oh=01_Q5Aa3wGJ3hbed3Kq7W7ZWGi6_xRrASbovZT8D4ZbvSwYylmFtQ&oe=69B55543&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770905667\",\"waveform\":\"AFtiY0haSEs4PEUzYF5DO0AuMFIeClIeTmAjWCNDEQlMRFRYTixWYlMSDUkUV0hPV01MVlQUIShDWjhSU0tQWA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770905683,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:43.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:43'),
(4742, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:43.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:43'),
(4743, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:43.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:43'),
(4744, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:43.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:43'),
(4745, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:43.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:44'),
(4746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A53BAADACB522140491D26D295E03139\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905684064,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:44.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:44'),
(4747, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A53BAADACB522140491D26D295E03139\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770905684064,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:44.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:44'),
(4748, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A53BAADACB522140491D26D295E03139\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905692789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:52.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:53'),
(4749, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A53BAADACB522140491D26D295E03139\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905692789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:52.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:53'),
(4750, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A53BAADACB522140491D26D295E03139\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905693704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:53.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:53'),
(4751, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193045978976340@lid\",\"id\":\"A53BAADACB522140491D26D295E03139\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770905693704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:53.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:53'),
(4752, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:59'),
(4753, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACE78198100A647565FF67C651581642\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"06Caq\\/QoAa4jhVoCxCgiv+GBrkQKgU+HuxxkfiFE+pQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905698,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:59'),
(4754, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:59'),
(4755, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:14:59'),
(4756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193045978976340@lid\",\"fromMe\":false,\"id\":\"ACE78198100A647565FF67C651581642\"},\"pushName\":\"Bruno Marcel\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"06Caq\\/QoAa4jhVoCxCgiv+GBrkQKgU+HuxxkfiFE+pQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770905698,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:14:59'),
(4757, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:15:00'),
(4758, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:15:00'),
(4759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193045978976340@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505192710_1227220159152735_2265564879899678883_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBm3g_FSTn61ejp97z3NWrK5iN2XyxTjEUkWye3h2WTw&oe=699AEF15&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:14:59.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:15:00'),
(4760, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A595EEC15F8D87687414931D58CB69BB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905998049,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:19:58.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:19:58'),
(4761, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A51D1C818B651E30ACF4528BCC10FC29\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905998039,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:19:58.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:19:58'),
(4762, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A595EEC15F8D87687414931D58CB69BB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905998049,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:19:58.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:19:58'),
(4763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A51D1C818B651E30ACF4528BCC10FC29\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770905998039,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:19:58.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:19:58'),
(4764, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5E65B01C58D8C77E68B8738940559F2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770906398634,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:38.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:26:39'),
(4765, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5E65B01C58D8C77E68B8738940559F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770906398622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:38.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:26:39'),
(4766, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5E65B01C58D8C77E68B8738940559F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770906398622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:38.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:26:39'),
(4767, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5E65B01C58D8C77E68B8738940559F2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770906398634,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:38.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:26:39'),
(4768, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A496F54724EFE64B188\"},\"pushName\":\"Clovis Faria\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585045932_2089606898543597_5188241721364031412_n.enc?ccb=11-4&oh=01_Q5Aa3wHrg54NCg-Vu_JDOur2OH6XTrZcO3dFUctyDysKV_elIw&oe=69B544A3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ync1t4eDtCDNFvF+zekt2qzuGytWPVzETzv0vJ8AlEw=\",\"fileLength\":\"17928\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"lNZlF6GxU62ZrNGGT8qmw7mCDacBpE8TiRI8mIO8NBE=\",\"fileEncSha256\":\"wkwpYw7URBxHWhAw+YLhseDU76X8qwqmI4EY+gXd3rY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585045932_2089606898543597_5188241721364031412_n.enc?ccb=11-4&oh=01_Q5Aa3wHrg54NCg-Vu_JDOur2OH6XTrZcO3dFUctyDysKV_elIw&oe=69B544A3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770906399\",\"streamingSidecar\":\"9Z08VxXHuNrodw==\",\"waveform\":\"ADNXZGRkZGRkZGRkY1tiZGRWMhoQCxcwTmRkXF9kZGRkQiobJ1ZHXksxHxUUERI+ZGJaVzkoN009YWRdRSsiHw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770896514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+a8ICf\\/jTv+yU01oMrGGW0NJwS7Ajl5KwBGeSm8FCpI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770906400,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:26:40'),
(4769, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:26:40'),
(4770, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:26:40'),
(4771, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A496F54724EFE64B188\"},\"pushName\":\"Clovis Faria\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585045932_2089606898543597_5188241721364031412_n.enc?ccb=11-4&oh=01_Q5Aa3wHrg54NCg-Vu_JDOur2OH6XTrZcO3dFUctyDysKV_elIw&oe=69B544A3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ync1t4eDtCDNFvF+zekt2qzuGytWPVzETzv0vJ8AlEw=\",\"fileLength\":\"17928\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"lNZlF6GxU62ZrNGGT8qmw7mCDacBpE8TiRI8mIO8NBE=\",\"fileEncSha256\":\"wkwpYw7URBxHWhAw+YLhseDU76X8qwqmI4EY+gXd3rY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585045932_2089606898543597_5188241721364031412_n.enc?ccb=11-4&oh=01_Q5Aa3wHrg54NCg-Vu_JDOur2OH6XTrZcO3dFUctyDysKV_elIw&oe=69B544A3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770906399\",\"streamingSidecar\":\"9Z08VxXHuNrodw==\",\"waveform\":\"ADNXZGRkZGRkZGRkY1tiZGRWMhoQCxcwTmRkXF9kZGRkQiobJ1ZHXksxHxUUERI+ZGJaVzkoN009YWRdRSsiHw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770896514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+a8ICf\\/jTv+yU01oMrGGW0NJwS7Ajl5KwBGeSm8FCpI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770906400,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:26:40'),
(4772, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:26:40'),
(4773, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:26:41'),
(4774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997393627@s.whatsapp.net\",\"pushName\":\"Clovis Faria $35 Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:26:41'),
(4775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997393627@s.whatsapp.net\",\"pushName\":\"Clovis Faria $35 Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:26:40.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:26:42'),
(4776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A558818B32326E3DF46B2267D5BE524E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55959336_2092219784952848_4648036172003422279_n.enc?ccb=11-4&oh=01_Q5Aa3wEv2AncaF5z7QD5sh9z4scMoVfVSp_IgkYiRGmBESnYHw&oe=69B55CEF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"z8qlNesBmOJTvbTSbZ8LjYF8v\\/PU8b0cyOpiBSMJBJs=\",\"fileLength\":\"17717\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"QqhAis4jDXyEa11rau+ipU9tcfWHgdy7oKaUS87WrUk=\",\"fileEncSha256\":\"nehtj7I4MxgVHk4GU2Fen7VT4tpth3WWjn+yIzDV0VI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55959336_2092219784952848_4648036172003422279_n.enc?ccb=11-4&oh=01_Q5Aa3wEv2AncaF5z7QD5sh9z4scMoVfVSp_IgkYiRGmBESnYHw&oe=69B55CEF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770906487\",\"waveform\":\"ABVUPGM+T1M5NkZGQFIcFw4KDTk2SDpRTU5HSS5TUFNNT1JQSVdSPhAKExYLCjc0I1VWUR5HMEg5UkUXKAsJGA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770906494,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:14.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:14'),
(4777, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:14.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:14'),
(4778, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:14.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:14'),
(4779, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A558818B32326E3DF46B2267D5BE524E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55959336_2092219784952848_4648036172003422279_n.enc?ccb=11-4&oh=01_Q5Aa3wEv2AncaF5z7QD5sh9z4scMoVfVSp_IgkYiRGmBESnYHw&oe=69B55CEF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"z8qlNesBmOJTvbTSbZ8LjYF8v\\/PU8b0cyOpiBSMJBJs=\",\"fileLength\":\"17717\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"QqhAis4jDXyEa11rau+ipU9tcfWHgdy7oKaUS87WrUk=\",\"fileEncSha256\":\"nehtj7I4MxgVHk4GU2Fen7VT4tpth3WWjn+yIzDV0VI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55959336_2092219784952848_4648036172003422279_n.enc?ccb=11-4&oh=01_Q5Aa3wEv2AncaF5z7QD5sh9z4scMoVfVSp_IgkYiRGmBESnYHw&oe=69B55CEF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770906487\",\"waveform\":\"ABVUPGM+T1M5NkZGQFIcFw4KDTk2SDpRTU5HSS5TUFNNT1JQSVdSPhAKExYLCjc0I1VWUR5HMEg5UkUXKAsJGA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770906494,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:14.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:14'),
(4780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:14.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:14'),
(4781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:14.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:15'),
(4782, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906495237,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:15.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:15'),
(4783, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906495237,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:15.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:15'),
(4784, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770906500085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:20.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:20'),
(4785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770906500085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:20.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:20'),
(4786, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770906501296,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:21.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:21'),
(4787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770906501296,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:21.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:21'),
(4788, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BFB52C327C4B48CA9A4D372E967C0B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906526827,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:46.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:47'),
(4789, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BE63421361A8E17060630F4A91D17B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906526837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:46.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:28:47'),
(4790, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BE63421361A8E17060630F4A91D17B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906526837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:46.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:47'),
(4791, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BFB52C327C4B48CA9A4D372E967C0B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906526827,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:28:46.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:28:47'),
(4792, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:14.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:30:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4793, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5CB7DF3030987FFEA65F27D480894FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"😂\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"3A462A2249D0C0B556C0\",\"participant\":\"5515996618993@s.whatsapp.net\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"5ohbUxwX376DaDL3ag45fAuYZ4Rx5lmGEGbzj6UCUkY=\",\"fileLength\":\"5470537\",\"seconds\":14,\"mediaKey\":\"ZqM2Lv8A1eOT5ZHALO7LxaJYnBUX8AQGZaQEjKsVsxQ=\",\"caption\":\"Depois de benzida agora vai 😂😂😂\",\"height\":1280,\"width\":720,\"fileEncSha256\":\"wMED+Smk9y7u3VlBektBSS4K0W1dsjGAaqz1uFd0aXg=\",\"directPath\":\"\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770842735\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAASABIAAD\\/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAFqgAwAEAAAAAQAAAKAAAAAA\\/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv\\/AABEIAKAAWgMBIgACEQEDEQH\\/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8\\/T19vf4+fr\\/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8\\/T19vf4+fr\\/2wBDAAICAgICAgQCAgQFBAQEBQcFBQUFBwkHBwcHBwkLCQkJCQkJCwsLCwsLCwsNDQ0NDQ0PDw8PDxERERERERERERH\\/2wBDAQMDAwQEBAcEBAcSDAoMEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhL\\/3QAEAAb\\/2gAMAwEAAhEDEQA\\/APBHZTcuyEEOMMPRh7duK4a\\/tLS5hWO7RXG3nPtX6dD9lbxbrK58WSaZ5mOJUL+cP+BKvP4kj2rhtX\\/Yb1GRythr1ukfYSQOTjuCQcfjj8K51CfVG7q09rn5mR2F0qm4sGBwcKsvIwDx83X6da0Ydblt2EV8jQnoN\\/zIfo46fjX3ZdfsReL7OTZY6vYSR7gMssikL64wecds16ZZ\\/sdfDnT7b\\/ieXepakwA3iMxW6H14IY4\\/GlJNXuh+0i9Ln5u\\/b1CiVWAz09Pz+tZc9808m5\\/u5wMdSfQV+remfsvfBfTifs\\/hmSXdjIuL2Qqcf7Ibb+Qqn8S\\/2ffDV18PNQ0rwT4RsIdQaPNrJDNtnR1IIZHZeTxypYbhxmpUlfVCautGfmppEckLLdOdsn8OOgHpXW25gI\\/cYibuh4Q\\/7v8Ad+nT6VwtrfKgxKNrKSrZ4+YHBHsc9jSXutsU8q1Gc8Z\\/oKmUru7LSsrI6vUNaSBjbR4V8c7uKwrDSr3WHFzNuSInknqee3tUuk6FJcD7XfE4\\/hXPI+td1vFtAAWXYAPmHH5jtUjvYns7KzsYVhhQbB1X61d+zWh583HsQP8AGuKv\\/E6KTbacPMk6cdBWQbfxe\\/zDIzz3p83YLs\\/\\/0P1O8ca9deFfDF74itbG41OSziMotLX\\/AFsgHUIMHJA5xjNGiahb+I9DtNcgimgW7gSYRXClJU3gHa6now6EetddLhWyKoyyRDksB9TWsrHMYE9jGeoP51iz2Sj1rqJ7m27yJ+YrNlmtWHMi\\/nUOKZSbOSWJ7SUZb9yeMHqn4+n8q6GBCWweoqrJ9mbgMpz71asw6nyT1Tjnrt7fl0qHTLUz8Qv2nfhxP4H+NmsafpgaCHUnGpWxj+6yXPzOpH3SFkDivGdOS70ZwL+Mso58yMFgv1H3h+Ga\\/VD9uHwb52haN8RbZfmsJ2sLph18m4+aMn\\/dkXH\\/AAKvzHurueaTyLFWdskl8YPWsai6HXTd0dLH4k0+K2ExkVsj5Npzn6YqrC2r68+QTFD\\/AD+tczB4ajz9tEhEzHdnjGR6jpV9PG50tjY3EayyBcqYT8p+ufu\\/Q8e9YuJdz1LRtF0\\/So8soJ6lj2rTOt6Sp2mePjj7wrz2x07W\\/FOJ9YuRbWx6Qwnkj3btmuqHgfweBgwocdy5z+PNWoLqxXP\\/0fOfH\\/7UXx4uNW\\/4SK61C5tNKn3SWdsES3d4ByhkMYzlgc8HpXV\\/Aj4ja\\/8AHjQdT8QXGra7ZNp0qwPGLzCMzJvOwKAQB23MTVz9qTR9G1TRRrGhsklv8txBsxxBL0BA6YPH4V8q\\/sySeKxpvjHwR4b1EaUxmt7hLhVEkgLh0I2sD8u0DkY571686EIvRHm06zmrs5P41ftE\\/EzwD43uPDthrGqSRoqupa9lGM5BGM+1cB4R\\/ad+KfiHWhYz63qULlS8bLeSnLLyRgnHSvKf2gvA\\/iDwn4n+069qcmrTTEpJcSJsO4cgAZbgjOOe1eM+G9SbStetL8HiOZS3+6Thv0JrmnKN7WOqMNLpn6QWXxu+L9vdR3aeI9SZonVwHnZlypyMgnBHHIr94fh94z034pfD7RviPZqqjUYAZ0H\\/ACznX5Jk+iuDj2r+ci3kJOK\\/ez9kvTG0n9l\\/w2Jxg3sl3dgH+687gfmADWE0rCTPRvi34NtPGvwq17w28Ss89hK0XGcSxDzIyPfcor8HXu7SxC2+lF2uMDESDcD\\/ALwPT9K\\/oet7hHULJyHGGH6H+tfhTrmgalofinU9A0mzjjNpfXED3EhwuY5GXOByTge1c9SKtc6aMnsefnSdV1F1\\/tUNBDJjKw8kMfUjnn8qsXFnb6FcPo1laSSTHbldhU\\/Rmb1rok0ywubkJqVxNqk4P\\/HvbAsoPuqcD\\/gRr0ey0nxJPCkl7Db2FjHgn7bIHYAegBAQ++7Ncz0OlaniMPhXxMsT3YmWyt1IDQRtgE98P0HvgYzUgk8DqNssTlhwx84nnvzv5r2J\\/Dmk6hdiSwt7nWzvBVU3tbIB25Cx4\\/Fj704eGrvH\\/IAlX288rj2wsZA+gOKExn\\/\\/0vLtZhkubQKjF7K8iZUHOAJV3qfbmvmT4Xa8fA\\/x2soJzsg1y3k02UHgech3xE+5ICj61946ZovhF\\/gZY2jKjeINLvTFKuXWSa3bc0TY3FSE+7wuQep5FfEHjLwK\\/ijxfbwWMv2c2OoRyy3aYItzG2Xy3Tcvp6jvXrRm+X3jzIJcz5Sr+1t4de9tZr+IfcjE\\/wCMbYb\\/AMdJr89dN0y+1S5js9PieeaRgqRRKXdiegVRkk1+0Hgv9nTX\\/wBqBrvxD4x1G40rRIJvJFpaRF57kHkhZX2xqnTLAEk9q++vhd8HPgf+ztpqXXhzSrDRnysR1K9ZXupHbgDz5eQWP8MYGfSuKck53OyHuxsfAn7O\\/wCxP8SfiHZ2msfEoS+F9NEUbSfaY83k3HzCKE4K\\/wC8+BzwDX7NWumaRoGhaf4X8PRGDTtKtUtLWMnJCRgAFj3J6k+ted2vxh8B3XjX\\/hXRvHi1ku0S288Uke+REErIrsApfyyHCkhivzAEV5L8UPFnxA1D4v2nw28I6n\\/Y9lY6O2u6ldRRwT3UwMjJHDDFOcFfkO9lUkZGeKiTvqJI+kt20cHox\\/Xn+ea\\/Fj9r7X\\/DPwx+MOr\\/ANqxX08+oyrewQwsq27LIisxfccElyc\\/Ka\\/YbStUvrrQrW61jy1upYFaUR5C7lOCQDyuc8jseO1fj3\\/wVL8PebBoXjS3BDLm2kZfTnAP6Vz+1hKoqbOinCUY8x832\\/7RHjC9ghtdBjsdLhZfm8mMeavuS3yge4Fd14E8fa7ca9He6pJb3zbQd1yBMQx7AHO059MGvznsNTvtOEd5YrsKBchvmD5J5I+tfSPgbxkusQ\\/Z7mDY2Cd8JIP4A5H0raVFW0QnNp7n6LL8RJrmyZtWF68oyFt7EpDGR\\/vYMn5GuZfxmFcqdDuDg4ybyUn89\\/NYnw++I3w78QvbWt7OLe7WJftEc4ML7xwTh+MEjPBNfVcVr4NaNWV1IIBHzH\\/Cp+rRetw+sSW6P\\/\\/T+3LT9n\\/wr8Ovh9PDcW8d5q11CRcz8kBmHKRsQGEY7dCep9BN8DbXwTqSat4VTw9ZWli8iXMcEqRyrJKgEcr7SDjkKRnk9cA19MeJ7VLrTpUk6FT\\/ACr4B0kXvh34yadq1pNLDbrcSWt2ucKYLtfL3BTkZWQIc46ZrSrP3oyexnSheMoo7H4x\\/tFXfgnUrvwR4S06LSb6zEypLqsJKTskJmt0tYIWy32nZJHGzEYK\\/cORXjmlfDn4o\\/FBJ18RtMt6uoXO26lCzu1jdLLDhA0hjgPl+WysoXBX\\/V55b7T8O\\/A74f8AhmzS2to7q5mDo0t3e3D3FzMIwyojyvk7FDthV2gZPqa9ViitbG3FvaosUadFQYA\\/KtHFbszTXQ+AfGOn\\/Df4EaxH8S\\/jnftrXibUNXOp6Zb2MbRJE0EAtoljTccpBCTl5GwWYnBOK+ifiFoC+LrKG60S7XTr3YBHqMdtFPN5D4YopkHAYgHrwe1eRftV6r8BfDE+leOvjErXt3aw3EOk6SrE\\/aWOGdiigkgYAyTt56E1+Ifxg\\/be+Pnxrlk0bw676Fo6\\/LFp+j71fy+iiWVfnbA9Nq+1clScprlpnTCmlrUP6ALS3GhafbaQtzNN5MbKZrhvMkfgkszHqS34elfnt\\/wUTk026+DVrEf9c18oUk8nA3f0r4x\\/Zt\\/aW+MvhnR9S8HARahFBC8kQ1B5WmhkBBOCWLFfVSMZwc8GvnTx\\/wDEbxh8SvFH2rx\\/f3N1Ly0cKOskSK3oinanGOgrkw+HksRzTex11asfY2itzyDRopLuWWxJyTCxUH\\/ZIbj8Aa+lPh14aYtE8GQWwD+NYnwr+H\\/hbxj4t\\/srRJLs3UG4skhVQAPlY52gYycAda+qPFnge0+CvgKfxjGtzcG2aKNUaRRuMjhOqqSOuelepKql7qOJU2\\/ePP8ARtGuzq908\\/lyrHEY8NgghyQQ3OB+Veiw2nhpIVRtNtiQoB5A7V81x+OvGGr22paXNp7WE13MPm8mbcpBBx0wDgYJP5VupoHjXYP3UnTv5lRzsp0z\\/9T7xutb8XeNvAHhrxXaXl9\\/ZL2EsmoHT0c31xdriOFWWJfMEe4MZAm05wCQM18pftQ2Hinw98PF8TabJc299bQJPKZyqSlV5fzNmV3Ackeo9a+3v2foLvTfBF14YvHLvpeo3EC7yN4RsOquBwGUsVI9q5X9o3\\/hENL8HXN74pZH3RskVscM0pIxtCdW+nT1q5RUlYiEuWdzu\\/hF40t\\/iX8MNC8fWzApqdhDO5\\/6aFcSD8HBrt7qTf8Aubfvxk9a\\/CH4DftP+O\\/2e9d03wZrQe48IG4ud+nhYlliEvz74mYghlIyELYbnAya0fiT+2L8Z\\/jxcy6H4UtpvC3h55TC0Vuxe+uI+STLMmNikD7qYHP3jVTUpLlRMVytyOd+Nvi3xL8Rf2mtZ8eadOstjpCSaHpcT8xpFH8jye7NJucY\\/GvnHS\\/Cnwo+HeonW\\/EOpJbXQzuCyFpNx6\\/u4923J7cD0Ar2fxXo1p4f0XTvB2lSslzfDz7iVMgpCB8+D1ychQfr9a0NA8KaO+nfZotKP2F1K+e6jy3IJUj8x1K496TUYe7FGkeaesjwn4geALHW7S28c+ApYUt79mSWdWkieUnqrbuAT745rsvhb+yPbfEdUisLq1tbkqDJA7vNId3+0fLT8RkV21rp1rp9hr3g5QRbiwa9tUHRXTjK+hBx+QrqP2cda8UahcReMza3Wj2tqDbrJMh3Th8fNHnHAPPGc1MpJL3jWKbfumjpv7KvhzwnrD\\/2lM8l5bqyuHIVHIODkJgkgjBBJHQ1d8R6H4V0fwxdXENrFIsUyQpHKGePfjeSYyxBwORx1q98TPj74J0fxVc2MmofbbwyyRuluPMfdv537flTnrkiuc0DV5fFGmWN\\/JbPEP7Sad9zBhtQcAgDqcD1HNclFVJyVzoquEYuxP4f8Ca41vLeXsiWv2hCIY0j8powwx8yrgZHUcZ55qM\\/ByNjubUJSTyT+8\\/+Kr3BPFCMwF3EnJOMHbXqdj4bub6yhvYpLVVmjWRQzgEBgCAefevTdBLc832zZ\\/\\/V+y9Z174jXyXPxB+C9vIttrRgn1mwePfdWd0g8tmjVgMxtkFiFJP3hjkDp9A8SanotnEfHWha9cagjCVtli8wd8dA6n7uecZx615LoXxGXwH4zt9Z0nWYQqjy5rMZm89CeVYoSF9QQMg8+1foL4Z8X+D\\/ABFb\\/wBpafMsFy6ESQSvtdd2CflJwRkdR+lY0at7Js2xFJJ+7HSx+Bv7X\\/gDxXFrp+MmpeH5tG0a41aMqNT8uPLsGcholcsqkBsZx2FfP3hv4ga14m1O30bS7horZ5AHS0jWCLYDyMgBmGPc5r9u\\/wBtDwj4X+J\\/wX1fwPqGp2VpcTGKa2eaZFKywyBuOc5K7h071+UunaB4A+Gdu1h4fhk1W7VSv2mNCF3dN2+XHH0U1sqlOCUURapUk5M4DxdcG78e300hYw29tbxKE4ZUwSwBPevo2\\/vLf7al6SRpkVqWSRXUwSBl2hCIw4ODj5nUkKehWvMNK8Kalrt3ca4LFluLnarQRksHVejAkABgc5BwCDx0rs7L4aeKru0W1tbNbOMcB7kKuAPRF+Y\\/oPepm09S4O3Q+cpPE9tbeJ76CeTDjRp0AJy4aU5QYUcnjqAB9BWh8JND8YRa3a+K\\/HU1xqYhgaK3WeQqkLSgLvSP7mQpIAwOvUV9b+Gfglo3h2OSZ4Bf3cx3TTTgAuT1xwcADoP1reudGuvDlyL2PT4NQsYjultpicFDwyqF+bjqD27Vz161otrc9PKsLTrYujRrfDKST1S0b11ei9Xoj5b07wl4W1u\\/n8RW1ktr9oc+ZGTufzV+WQlsdWYEnrya+kvhHqXh3XLy4+HR0yPUJbWH7QqZMZA3YIV9rKWy3Qj8RXnmhaBrviW9vdetNPTR9NeZja2se4jGeWBfJbLZr7B+Cng\\/w0sr3sd8bDVrbLNKyNMrwOF2qsSgHf5g5JccHpSVVqCdzepBYbMKsMMk0nJJSs7pPbqm\\/Tfoeaa\\/4CsLfUfJXS72yhOMSYb5W5yCQWT6dM+gqA\\/D7Qe17dfkv+Fff9n4y8X6H5GleMtJTU3vmbyU090nnAAPzSQYJXco6lzj61hSeKvhusjLLpV5GwJDI1q2VPcH5Ooop4+tC6cOb5\\/8AxzLDxryhJ0403b7Ksnrvvby00P\\/1vq7wV4TSeyfWIYre1iuJpZbcwRBXMLH5DkjcAeoB7EVvyWGmQWrQMWm5OTLyx+g7e1dlrba7FbrFBBCoc\\/MpkIZFPTAAOT7ZArLR51ty12oZ8YJXoAPXvXlNnp2ueIax4Btb\\/dLDEMnOB3INeTeJfgZPrdiq2d4+nyxsHWSPlTjs4GCR9DX1g9tNC2Rk+bkjPTmsm6WKzhD3hVSeTnkA1UJMTjqeR6H4MudF02CJpVndFw8qrsDMOpCc4zW62nS581uOn3q6+JrfU7f7ZaASREcOO49u1YuqzSW1mRZxNKVHIQkkZ9+abmPkKksEiw77ddxHY4UVnyae1wfKZGGT8zNgcEHpg5zXQWGm3EkKG5jXcUwS2SQOoHX86u3EJeQydWxyaXMPlZwtrYSwyMiljEg6kYySeo9fetHTfE8\\/hO\\/NzpLvbz7cF0j3KVPOGPQ+tbrBVTZJtLYzgcZ\\/CmskM9rDDJMsdu7+YxEZdo2BwCSBuIPHAJGOtejlmHo4ms6VaSSs9zzM2xNbC0FVoRbd1ol0\\/rqdHZ\\/HGOaxuYp7VomnTyprqzd4d3H8Y4\\/9CJ9MVej+KXwURFS40yN5AAHZ7SZmZu5Y9yT1PeuH103OjxJFpd7FJFcBizWyPGWGMEOrKoPXtn618gap4\\/1TT9TubCGaJUgmeJR5fQIxAHX2r063DCSUoy0fb\\/gnBhONcTT5qdOTTW+rX5f8E\\/\\/1\\/v2O9MMgtmffMUJUs+8hc8mqLXO6bBOQGyc8ZFc9Jd63okLpq8CLGgKpdRDMRHbzEzuT68j3qZLTxD\\/AGGi6W0XnycvP8uxAem3I\\/ofrXk2Z6unQ6Cd1uIGl+VFGVAwQQfauUuLeEb45m3DggMu7iq7W2oTJHYanO9zLGp3OuRuJPXAGMjH1reTfbwJIh8wd1VcYz2I\\/rU36FWOc\\/eXC4QokS\\/xoeS3bjGKw47e9spHkeVZIm7BcHOepOcfpXbix\\/c+cseUduV6nOf\\/AK9WE8PapqttIuk2+4xkK3IAGe+PTFGvQNjiftHkMXkOVxnAPJz6VjXV\\/exrcS2ds7EY2q\\/Q\\/T+tbM2mSafd\\/Y7pNs3QgZ6+3pSXIm3ohCYJxs7\\/AFpOYzCtG+2KLm8wjIuAAe\\/pVKLSrTTkcWCmISOXO12K5PX5SSB+FWHkSW5kgjcJJGCRk4Bx256k9qpx3UkUgFyMFj+dPmJauTxCRB5hyGB4ZSQfzrJl8P6JcStPcW0TyOxZ2ZFJZjySSRySa6B5FYZBxx071U3yf3a0jUa0TI9mm9Uf\\/9D9AbRr+S8MV15XlMCAmCxb654rlbvSLrwFbHU7ZzNpDktcwEbxbEt\\/rEz1j5+Yfw9R8ucbVv4phi1+Pw7DGZJp4y4KjlQo53f3ewHHOa7mecadh51R4jFtWNgSWduDnPG0DPqTXjxfc9R9zhvPtpw91abCn\\/TLGOR261iTXn2NWntWO1cmQg5J46DHuK4y4t5fAl8tuw\\/4k17Li3YHJtZmJ\\/dH\\/Yb\\/AJZnsfl9M9XdxxQWaOgJy2RnnAPrSehadzRgvi82QW+VRkAcAt9auJr1\\/oRa\\/s35\\/wBWxADAfUdDXN\\/bZbhWhs8K7jJkH3h26HrUrJ9kh8qJ3JAyc88+p7Uua2wNX3MvVtSvr15NQlbzJnIfLjrjsa56yvDej7dDuDMSGR+2O3+FXP8ATb+Z1xtGRkH7oz6VoDSltYlVJCq4zwOcjqKl2A4Scs1wZljw2Ap45wD\\/ACqVTNaTJeRIrYyArqGU7hg8H07V1luI7W4ZZUB4++ecg+tRyMJbkQKAgyCp9KnqM5mKzkQkvyDyPbNO2yev6VduJZ7Z2hl4OSR7iqP2xP7h\\/KqUrbgf\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"7opDc+2rIf3XpRsCKb7v+fYyOwUzxdt9n4rhoZMw0DDklQi1mbhVvyUzg\\/soWVhgLkSov97p5usLLDB\\/3O9ZP5D2AFzqJT+lGCz+ambiEnfZTOPG6hFPedWBLkWvqawS9UL8KfhcBbghCi6fl14wEP1hOlCs\\/ExDGzAe8wx7yRrgig1OM6G91lY9ZixMg7SNjtjt\\/fIDZpRM2Z2UlpEZ1dgOwjauwK7uSfjhp5ZfB2JwQe4PVEufx7QWnKrh0K8pDDb1+PBWdpXxEG54tOvz1zLOunB64lF1t73FphXVUuvgvKQAt2uFnuIGrc3C94W\\/ek9Nna6dnfVmbl8vFS7Vmw3NLc2pOCOf+caiSsmFyaLRdBwNoTj2y40ix2q9npl5uQIiXaQyhIpnFTAZgPWlOw2sWbK6cNhgt\\/S9lQpsK5v4\\/4ZGr3QvO5lAeTZ9eEkoHyBOiJ2O+jxyIM6HUVZpwS\\/sNEbJ2YKfjLAYgcmB9yxe7y8r4lnJ\\/6WSeb6WlNzWFNoUS8CHSIWkLyNhS3Gi8x+2oVuHVQWvWk\\/7l3taDljL8jiBCF8p61pw54YULmsRBQ+sz07jaQBjNnF1VNZ3yJtRtSsWQQ5dhlltJiCsK1BGc6rUk3a3Z6VYpvJRF4MsxH1kZbSXkCxofFfLTVxxYHorjYKuSMRgt8xY27Eubqw5z4TK15NP1\\/DIJyweNGpib7AwlXQlek8RGd0ooZNOzNiwLX7ppFOv3AmhfG6uEUPNL4439FRbexq2lced1cgN2aDbPSnD\\/7cUEc\\/6opXinwI5Q+MyiTG5ikMnN2ARwuI+V4Jng3A0Ni0kTANkpJG9bcM1TdcCABC1QcJFjiMfAaqG3uOrhwoixY6rhTszaUDCPBQeJRusTyMhuY+q7q3rX0CubRUEibCRzXGQQE6KIMPThqTql2Al0qg\\/7rXUunNWSkzWWZNtGpT1L94YZ7X+\\/y9ayXEe6NSrot\\/PsfQuEo+rVtA04d44z0bYuPjK9PKNiBkxpSn62TFbolWSlRfYvgCO9yKAco7tFsksuSrMI8wC+V+lOG53ML9BnfgGzFwNVPsj3LrhRIfrs\\/LWFDp2haSeFPRD9HoWWCg2n049d7Q+jIShT8CJ\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/633891512_2375482732900037_585940841150456303_n.enc?ccb=11-4&oh=01_Q5Aa3wE2hianURvLQrR5Gw-6n7V_UnnvOU0bx2oV8Yoiid2W7A&oe=69B4653E&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Is\\/h5krx9uf0R3uqbDLSr3v8a204VcyogKUG74Tg9vw=\",\"thumbnailEncSha256\":\"hGiwQfyN+8FuAm37EX0ZbfgSmJXUriP4IlB7uoatT+I=\"}},\"remoteJid\":\"status@broadcast\"},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"3A462A2249D0C0B556C0\",\"participant\":\"5515996618993@s.whatsapp.net\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"5ohbUxwX376DaDL3ag45fAuYZ4Rx5lmGEGbzj6UCUkY=\",\"fileLength\":\"5470537\",\"seconds\":14,\"mediaKey\":\"ZqM2Lv8A1eOT5ZHALO7LxaJYnBUX8AQGZaQEjKsVsxQ=\",\"caption\":\"Depois de benzida agora vai 😂😂😂\",\"height\":1280,\"width\":720,\"fileEncSha256\":\"wMED+Smk9y7u3VlBektBSS4K0W1dsjGAaqz1uFd0aXg=\",\"directPath\":\"\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770842735\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAASABIAAD\\/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAFqgAwAEAAAAAQAAAKAAAAAA\\/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv\\/AABEIAKAAWgMBIgACEQEDEQH\\/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8\\/T19vf4+fr\\/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8\\/T19vf4+fr\\/2wBDAAICAgICAgQCAgQFBAQEBQcFBQUFBwkHBwcHBwkLCQkJCQkJCwsLCwsLCwsNDQ0NDQ0PDw8PDxERERERERERERH\\/2wBDAQMDAwQEBAcEBAcSDAoMEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhL\\/3QAEAAb\\/2gAMAwEAAhEDEQA\\/APBHZTcuyEEOMMPRh7duK4a\\/tLS5hWO7RXG3nPtX6dD9lbxbrK58WSaZ5mOJUL+cP+BKvP4kj2rhtX\\/Yb1GRythr1ukfYSQOTjuCQcfjj8K51CfVG7q09rn5mR2F0qm4sGBwcKsvIwDx83X6da0Ydblt2EV8jQnoN\\/zIfo46fjX3ZdfsReL7OTZY6vYSR7gMssikL64wecds16ZZ\\/sdfDnT7b\\/ieXepakwA3iMxW6H14IY4\\/GlJNXuh+0i9Ln5u\\/b1CiVWAz09Pz+tZc9808m5\\/u5wMdSfQV+remfsvfBfTifs\\/hmSXdjIuL2Qqcf7Ibb+Qqn8S\\/2ffDV18PNQ0rwT4RsIdQaPNrJDNtnR1IIZHZeTxypYbhxmpUlfVCautGfmppEckLLdOdsn8OOgHpXW25gI\\/cYibuh4Q\\/7v8Ad+nT6VwtrfKgxKNrKSrZ4+YHBHsc9jSXutsU8q1Gc8Z\\/oKmUru7LSsrI6vUNaSBjbR4V8c7uKwrDSr3WHFzNuSInknqee3tUuk6FJcD7XfE4\\/hXPI+td1vFtAAWXYAPmHH5jtUjvYns7KzsYVhhQbB1X61d+zWh583HsQP8AGuKv\\/E6KTbacPMk6cdBWQbfxe\\/zDIzz3p83YLs\\/\\/0P1O8ca9deFfDF74itbG41OSziMotLX\\/AFsgHUIMHJA5xjNGiahb+I9DtNcgimgW7gSYRXClJU3gHa6now6EetddLhWyKoyyRDksB9TWsrHMYE9jGeoP51iz2Sj1rqJ7m27yJ+YrNlmtWHMi\\/nUOKZSbOSWJ7SUZb9yeMHqn4+n8q6GBCWweoqrJ9mbgMpz71asw6nyT1Tjnrt7fl0qHTLUz8Qv2nfhxP4H+NmsafpgaCHUnGpWxj+6yXPzOpH3SFkDivGdOS70ZwL+Mso58yMFgv1H3h+Ga\\/VD9uHwb52haN8RbZfmsJ2sLph18m4+aMn\\/dkXH\\/AAKvzHurueaTyLFWdskl8YPWsai6HXTd0dLH4k0+K2ExkVsj5Npzn6YqrC2r68+QTFD\\/AD+tczB4ajz9tEhEzHdnjGR6jpV9PG50tjY3EayyBcqYT8p+ufu\\/Q8e9YuJdz1LRtF0\\/So8soJ6lj2rTOt6Sp2mePjj7wrz2x07W\\/FOJ9YuRbWx6Qwnkj3btmuqHgfweBgwocdy5z+PNWoLqxXP\\/0fOfH\\/7UXx4uNW\\/4SK61C5tNKn3SWdsES3d4ByhkMYzlgc8HpXV\\/Aj4ja\\/8AHjQdT8QXGra7ZNp0qwPGLzCMzJvOwKAQB23MTVz9qTR9G1TRRrGhsklv8txBsxxBL0BA6YPH4V8q\\/sySeKxpvjHwR4b1EaUxmt7hLhVEkgLh0I2sD8u0DkY571686EIvRHm06zmrs5P41ftE\\/EzwD43uPDthrGqSRoqupa9lGM5BGM+1cB4R\\/ad+KfiHWhYz63qULlS8bLeSnLLyRgnHSvKf2gvA\\/iDwn4n+069qcmrTTEpJcSJsO4cgAZbgjOOe1eM+G9SbStetL8HiOZS3+6Thv0JrmnKN7WOqMNLpn6QWXxu+L9vdR3aeI9SZonVwHnZlypyMgnBHHIr94fh94z034pfD7RviPZqqjUYAZ0H\\/ACznX5Jk+iuDj2r+ci3kJOK\\/ez9kvTG0n9l\\/w2Jxg3sl3dgH+687gfmADWE0rCTPRvi34NtPGvwq17w28Ss89hK0XGcSxDzIyPfcor8HXu7SxC2+lF2uMDESDcD\\/ALwPT9K\\/oet7hHULJyHGGH6H+tfhTrmgalofinU9A0mzjjNpfXED3EhwuY5GXOByTge1c9SKtc6aMnsefnSdV1F1\\/tUNBDJjKw8kMfUjnn8qsXFnb6FcPo1laSSTHbldhU\\/Rmb1rok0ywubkJqVxNqk4P\\/HvbAsoPuqcD\\/gRr0ey0nxJPCkl7Db2FjHgn7bIHYAegBAQ++7Ncz0OlaniMPhXxMsT3YmWyt1IDQRtgE98P0HvgYzUgk8DqNssTlhwx84nnvzv5r2J\\/Dmk6hdiSwt7nWzvBVU3tbIB25Cx4\\/Fj704eGrvH\\/IAlX288rj2wsZA+gOKExn\\/\\/0vLtZhkubQKjF7K8iZUHOAJV3qfbmvmT4Xa8fA\\/x2soJzsg1y3k02UHgech3xE+5ICj61946ZovhF\\/gZY2jKjeINLvTFKuXWSa3bc0TY3FSE+7wuQep5FfEHjLwK\\/ijxfbwWMv2c2OoRyy3aYItzG2Xy3Tcvp6jvXrRm+X3jzIJcz5Sr+1t4de9tZr+IfcjE\\/wCMbYb\\/AMdJr89dN0y+1S5js9PieeaRgqRRKXdiegVRkk1+0Hgv9nTX\\/wBqBrvxD4x1G40rRIJvJFpaRF57kHkhZX2xqnTLAEk9q++vhd8HPgf+ztpqXXhzSrDRnysR1K9ZXupHbgDz5eQWP8MYGfSuKck53OyHuxsfAn7O\\/wCxP8SfiHZ2msfEoS+F9NEUbSfaY83k3HzCKE4K\\/wC8+BzwDX7NWumaRoGhaf4X8PRGDTtKtUtLWMnJCRgAFj3J6k+ted2vxh8B3XjX\\/hXRvHi1ku0S288Uke+REErIrsApfyyHCkhivzAEV5L8UPFnxA1D4v2nw28I6n\\/Y9lY6O2u6ldRRwT3UwMjJHDDFOcFfkO9lUkZGeKiTvqJI+kt20cHox\\/Xn+ea\\/Fj9r7X\\/DPwx+MOr\\/ANqxX08+oyrewQwsq27LIisxfccElyc\\/Ka\\/YbStUvrrQrW61jy1upYFaUR5C7lOCQDyuc8jseO1fj3\\/wVL8PebBoXjS3BDLm2kZfTnAP6Vz+1hKoqbOinCUY8x832\\/7RHjC9ghtdBjsdLhZfm8mMeavuS3yge4Fd14E8fa7ca9He6pJb3zbQd1yBMQx7AHO059MGvznsNTvtOEd5YrsKBchvmD5J5I+tfSPgbxkusQ\\/Z7mDY2Cd8JIP4A5H0raVFW0QnNp7n6LL8RJrmyZtWF68oyFt7EpDGR\\/vYMn5GuZfxmFcqdDuDg4ybyUn89\\/NYnw++I3w78QvbWt7OLe7WJftEc4ML7xwTh+MEjPBNfVcVr4NaNWV1IIBHzH\\/Cp+rRetw+sSW6P\\/\\/T+3LT9n\\/wr8Ovh9PDcW8d5q11CRcz8kBmHKRsQGEY7dCep9BN8DbXwTqSat4VTw9ZWli8iXMcEqRyrJKgEcr7SDjkKRnk9cA19MeJ7VLrTpUk6FT\\/ACr4B0kXvh34yadq1pNLDbrcSWt2ucKYLtfL3BTkZWQIc46ZrSrP3oyexnSheMoo7H4x\\/tFXfgnUrvwR4S06LSb6zEypLqsJKTskJmt0tYIWy32nZJHGzEYK\\/cORXjmlfDn4o\\/FBJ18RtMt6uoXO26lCzu1jdLLDhA0hjgPl+WysoXBX\\/V55b7T8O\\/A74f8AhmzS2to7q5mDo0t3e3D3FzMIwyojyvk7FDthV2gZPqa9ViitbG3FvaosUadFQYA\\/KtHFbszTXQ+AfGOn\\/Df4EaxH8S\\/jnftrXibUNXOp6Zb2MbRJE0EAtoljTccpBCTl5GwWYnBOK+ifiFoC+LrKG60S7XTr3YBHqMdtFPN5D4YopkHAYgHrwe1eRftV6r8BfDE+leOvjErXt3aw3EOk6SrE\\/aWOGdiigkgYAyTt56E1+Ifxg\\/be+Pnxrlk0bw676Fo6\\/LFp+j71fy+iiWVfnbA9Nq+1clScprlpnTCmlrUP6ALS3GhafbaQtzNN5MbKZrhvMkfgkszHqS34elfnt\\/wUTk026+DVrEf9c18oUk8nA3f0r4x\\/Zt\\/aW+MvhnR9S8HARahFBC8kQ1B5WmhkBBOCWLFfVSMZwc8GvnTx\\/wDEbxh8SvFH2rx\\/f3N1Ly0cKOskSK3oinanGOgrkw+HksRzTex11asfY2itzyDRopLuWWxJyTCxUH\\/ZIbj8Aa+lPh14aYtE8GQWwD+NYnwr+H\\/hbxj4t\\/srRJLs3UG4skhVQAPlY52gYycAda+qPFnge0+CvgKfxjGtzcG2aKNUaRRuMjhOqqSOuelepKql7qOJU2\\/ePP8ARtGuzq908\\/lyrHEY8NgghyQQ3OB+Veiw2nhpIVRtNtiQoB5A7V81x+OvGGr22paXNp7WE13MPm8mbcpBBx0wDgYJP5VupoHjXYP3UnTv5lRzsp0z\\/9T7xutb8XeNvAHhrxXaXl9\\/ZL2EsmoHT0c31xdriOFWWJfMEe4MZAm05wCQM18pftQ2Hinw98PF8TabJc299bQJPKZyqSlV5fzNmV3Ackeo9a+3v2foLvTfBF14YvHLvpeo3EC7yN4RsOquBwGUsVI9q5X9o3\\/hENL8HXN74pZH3RskVscM0pIxtCdW+nT1q5RUlYiEuWdzu\\/hF40t\\/iX8MNC8fWzApqdhDO5\\/6aFcSD8HBrt7qTf8Aubfvxk9a\\/CH4DftP+O\\/2e9d03wZrQe48IG4ud+nhYlliEvz74mYghlIyELYbnAya0fiT+2L8Z\\/jxcy6H4UtpvC3h55TC0Vuxe+uI+STLMmNikD7qYHP3jVTUpLlRMVytyOd+Nvi3xL8Rf2mtZ8eadOstjpCSaHpcT8xpFH8jye7NJucY\\/GvnHS\\/Cnwo+HeonW\\/EOpJbXQzuCyFpNx6\\/u4923J7cD0Ar2fxXo1p4f0XTvB2lSslzfDz7iVMgpCB8+D1ychQfr9a0NA8KaO+nfZotKP2F1K+e6jy3IJUj8x1K496TUYe7FGkeaesjwn4geALHW7S28c+ApYUt79mSWdWkieUnqrbuAT745rsvhb+yPbfEdUisLq1tbkqDJA7vNId3+0fLT8RkV21rp1rp9hr3g5QRbiwa9tUHRXTjK+hBx+QrqP2cda8UahcReMza3Wj2tqDbrJMh3Th8fNHnHAPPGc1MpJL3jWKbfumjpv7KvhzwnrD\\/2lM8l5bqyuHIVHIODkJgkgjBBJHQ1d8R6H4V0fwxdXENrFIsUyQpHKGePfjeSYyxBwORx1q98TPj74J0fxVc2MmofbbwyyRuluPMfdv537flTnrkiuc0DV5fFGmWN\\/JbPEP7Sad9zBhtQcAgDqcD1HNclFVJyVzoquEYuxP4f8Ca41vLeXsiWv2hCIY0j8powwx8yrgZHUcZ55qM\\/ByNjubUJSTyT+8\\/+Kr3BPFCMwF3EnJOMHbXqdj4bub6yhvYpLVVmjWRQzgEBgCAefevTdBLc832zZ\\/\\/V+y9Z174jXyXPxB+C9vIttrRgn1mwePfdWd0g8tmjVgMxtkFiFJP3hjkDp9A8SanotnEfHWha9cagjCVtli8wd8dA6n7uecZx615LoXxGXwH4zt9Z0nWYQqjy5rMZm89CeVYoSF9QQMg8+1foL4Z8X+D\\/ABFb\\/wBpafMsFy6ESQSvtdd2CflJwRkdR+lY0at7Js2xFJJ+7HSx+Bv7X\\/gDxXFrp+MmpeH5tG0a41aMqNT8uPLsGcholcsqkBsZx2FfP3hv4ga14m1O30bS7horZ5AHS0jWCLYDyMgBmGPc5r9u\\/wBtDwj4X+J\\/wX1fwPqGp2VpcTGKa2eaZFKywyBuOc5K7h071+UunaB4A+Gdu1h4fhk1W7VSv2mNCF3dN2+XHH0U1sqlOCUURapUk5M4DxdcG78e300hYw29tbxKE4ZUwSwBPevo2\\/vLf7al6SRpkVqWSRXUwSBl2hCIw4ODj5nUkKehWvMNK8Kalrt3ca4LFluLnarQRksHVejAkABgc5BwCDx0rs7L4aeKru0W1tbNbOMcB7kKuAPRF+Y\\/oPepm09S4O3Q+cpPE9tbeJ76CeTDjRp0AJy4aU5QYUcnjqAB9BWh8JND8YRa3a+K\\/HU1xqYhgaK3WeQqkLSgLvSP7mQpIAwOvUV9b+Gfglo3h2OSZ4Bf3cx3TTTgAuT1xwcADoP1reudGuvDlyL2PT4NQsYjultpicFDwyqF+bjqD27Vz161otrc9PKsLTrYujRrfDKST1S0b11ei9Xoj5b07wl4W1u\\/n8RW1ktr9oc+ZGTufzV+WQlsdWYEnrya+kvhHqXh3XLy4+HR0yPUJbWH7QqZMZA3YIV9rKWy3Qj8RXnmhaBrviW9vdetNPTR9NeZja2se4jGeWBfJbLZr7B+Cng\\/w0sr3sd8bDVrbLNKyNMrwOF2qsSgHf5g5JccHpSVVqCdzepBYbMKsMMk0nJJSs7pPbqm\\/Tfoeaa\\/4CsLfUfJXS72yhOMSYb5W5yCQWT6dM+gqA\\/D7Qe17dfkv+Fff9n4y8X6H5GleMtJTU3vmbyU090nnAAPzSQYJXco6lzj61hSeKvhusjLLpV5GwJDI1q2VPcH5Ooop4+tC6cOb5\\/8AxzLDxryhJ0403b7Ksnrvvby00P\\/1vq7wV4TSeyfWIYre1iuJpZbcwRBXMLH5DkjcAeoB7EVvyWGmQWrQMWm5OTLyx+g7e1dlrba7FbrFBBCoc\\/MpkIZFPTAAOT7ZArLR51ty12oZ8YJXoAPXvXlNnp2ueIax4Btb\\/dLDEMnOB3INeTeJfgZPrdiq2d4+nyxsHWSPlTjs4GCR9DX1g9tNC2Rk+bkjPTmsm6WKzhD3hVSeTnkA1UJMTjqeR6H4MudF02CJpVndFw8qrsDMOpCc4zW62nS581uOn3q6+JrfU7f7ZaASREcOO49u1YuqzSW1mRZxNKVHIQkkZ9+abmPkKksEiw77ddxHY4UVnyae1wfKZGGT8zNgcEHpg5zXQWGm3EkKG5jXcUwS2SQOoHX86u3EJeQydWxyaXMPlZwtrYSwyMiljEg6kYySeo9fetHTfE8\\/hO\\/NzpLvbz7cF0j3KVPOGPQ+tbrBVTZJtLYzgcZ\\/CmskM9rDDJMsdu7+YxEZdo2BwCSBuIPHAJGOtejlmHo4ms6VaSSs9zzM2xNbC0FVoRbd1ol0\\/rqdHZ\\/HGOaxuYp7VomnTyprqzd4d3H8Y4\\/9CJ9MVej+KXwURFS40yN5AAHZ7SZmZu5Y9yT1PeuH103OjxJFpd7FJFcBizWyPGWGMEOrKoPXtn618gap4\\/1TT9TubCGaJUgmeJR5fQIxAHX2r063DCSUoy0fb\\/gnBhONcTT5qdOTTW+rX5f8E\\/\\/1\\/v2O9MMgtmffMUJUs+8hc8mqLXO6bBOQGyc8ZFc9Jd63okLpq8CLGgKpdRDMRHbzEzuT68j3qZLTxD\\/AGGi6W0XnycvP8uxAem3I\\/ofrXk2Z6unQ6Cd1uIGl+VFGVAwQQfauUuLeEb45m3DggMu7iq7W2oTJHYanO9zLGp3OuRuJPXAGMjH1reTfbwJIh8wd1VcYz2I\\/rU36FWOc\\/eXC4QokS\\/xoeS3bjGKw47e9spHkeVZIm7BcHOepOcfpXbix\\/c+cseUduV6nOf\\/AK9WE8PapqttIuk2+4xkK3IAGe+PTFGvQNjiftHkMXkOVxnAPJz6VjXV\\/exrcS2ds7EY2q\\/Q\\/T+tbM2mSafd\\/Y7pNs3QgZ6+3pSXIm3ohCYJxs7\\/AFpOYzCtG+2KLm8wjIuAAe\\/pVKLSrTTkcWCmISOXO12K5PX5SSB+FWHkSW5kgjcJJGCRk4Bx256k9qpx3UkUgFyMFj+dPmJauTxCRB5hyGB4ZSQfzrJl8P6JcStPcW0TyOxZ2ZFJZjySSRySa6B5FYZBxx071U3yf3a0jUa0TI9mm9Uf\\/9D9AbRr+S8MV15XlMCAmCxb654rlbvSLrwFbHU7ZzNpDktcwEbxbEt\\/rEz1j5+Yfw9R8ucbVv4phi1+Pw7DGZJp4y4KjlQo53f3ewHHOa7mecadh51R4jFtWNgSWduDnPG0DPqTXjxfc9R9zhvPtpw91abCn\\/TLGOR261iTXn2NWntWO1cmQg5J46DHuK4y4t5fAl8tuw\\/4k17Li3YHJtZmJ\\/dH\\/Yb\\/AJZnsfl9M9XdxxQWaOgJy2RnnAPrSehadzRgvi82QW+VRkAcAt9auJr1\\/oRa\\/s35\\/wBWxADAfUdDXN\\/bZbhWhs8K7jJkH3h26HrUrJ9kh8qJ3JAyc88+p7Uua2wNX3MvVtSvr15NQlbzJnIfLjrjsa56yvDej7dDuDMSGR+2O3+FXP8ATb+Z1xtGRkH7oz6VoDSltYlVJCq4zwOcjqKl2A4Scs1wZljw2Ap45wD\\/ACqVTNaTJeRIrYyArqGU7hg8H07V1luI7W4ZZUB4++ecg+tRyMJbkQKAgyCp9KnqM5mKzkQkvyDyPbNO2yev6VduJZ7Z2hl4OSR7iqP2xP7h\\/KqUrbgf\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"7opDc+2rIf3XpRsCKb7v+fYyOwUzxdt9n4rhoZMw0DDklQi1mbhVvyUzg\\/soWVhgLkSov97p5usLLDB\\/3O9ZP5D2AFzqJT+lGCz+ambiEnfZTOPG6hFPedWBLkWvqawS9UL8KfhcBbghCi6fl14wEP1hOlCs\\/ExDGzAe8wx7yRrgig1OM6G91lY9ZixMg7SNjtjt\\/fIDZpRM2Z2UlpEZ1dgOwjauwK7uSfjhp5ZfB2JwQe4PVEufx7QWnKrh0K8pDDb1+PBWdpXxEG54tOvz1zLOunB64lF1t73FphXVUuvgvKQAt2uFnuIGrc3C94W\\/ek9Nna6dnfVmbl8vFS7Vmw3NLc2pOCOf+caiSsmFyaLRdBwNoTj2y40ix2q9npl5uQIiXaQyhIpnFTAZgPWlOw2sWbK6cNhgt\\/S9lQpsK5v4\\/4ZGr3QvO5lAeTZ9eEkoHyBOiJ2O+jxyIM6HUVZpwS\\/sNEbJ2YKfjLAYgcmB9yxe7y8r4lnJ\\/6WSeb6WlNzWFNoUS8CHSIWkLyNhS3Gi8x+2oVuHVQWvWk\\/7l3taDljL8jiBCF8p61pw54YULmsRBQ+sz07jaQBjNnF1VNZ3yJtRtSsWQQ5dhlltJiCsK1BGc6rUk3a3Z6VYpvJRF4MsxH1kZbSXkCxofFfLTVxxYHorjYKuSMRgt8xY27Eubqw5z4TK15NP1\\/DIJyweNGpib7AwlXQlek8RGd0ooZNOzNiwLX7ppFOv3AmhfG6uEUPNL4439FRbexq2lced1cgN2aDbPSnD\\/7cUEc\\/6opXinwI5Q+MyiTG5ikMnN2ARwuI+V4Jng3A0Ni0kTANkpJG9bcM1TdcCABC1QcJFjiMfAaqG3uOrhwoixY6rhTszaUDCPBQeJRusTyMhuY+q7q3rX0CubRUEibCRzXGQQE6KIMPThqTql2Al0qg\\/7rXUunNWSkzWWZNtGpT1L94YZ7X+\\/y9ayXEe6NSrot\\/PsfQuEo+rVtA04d44z0bYuPjK9PKNiBkxpSn62TFbolWSlRfYvgCO9yKAco7tFsksuSrMI8wC+V+lOG53ML9BnfgGzFwNVPsj3LrhRIfrs\\/LWFDp2haSeFPRD9HoWWCg2n049d7Q+jIShT8CJ\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/633891512_2375482732900037_585940841150456303_n.enc?ccb=11-4&oh=01_Q5Aa3wE2hianURvLQrR5Gw-6n7V_UnnvOU0bx2oV8Yoiid2W7A&oe=69B4653E&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Is\\/h5krx9uf0R3uqbDLSr3v8a204VcyogKUG74Tg9vw=\",\"thumbnailEncSha256\":\"hGiwQfyN+8FuAm37EX0ZbfgSmJXUriP4IlB7uoatT+I=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770906614,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:14.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:30:14'),
(4794, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208404849111077@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:14.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:30:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4795, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"A5CB7DF3030987FFEA65F27D480894FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"😂\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"3A462A2249D0C0B556C0\",\"participant\":\"5515996618993@s.whatsapp.net\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"5ohbUxwX376DaDL3ag45fAuYZ4Rx5lmGEGbzj6UCUkY=\",\"fileLength\":\"5470537\",\"seconds\":14,\"mediaKey\":\"ZqM2Lv8A1eOT5ZHALO7LxaJYnBUX8AQGZaQEjKsVsxQ=\",\"caption\":\"Depois de benzida agora vai 😂😂😂\",\"height\":1280,\"width\":720,\"fileEncSha256\":\"wMED+Smk9y7u3VlBektBSS4K0W1dsjGAaqz1uFd0aXg=\",\"directPath\":\"\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770842735\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAASABIAAD\\/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAFqgAwAEAAAAAQAAAKAAAAAA\\/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv\\/AABEIAKAAWgMBIgACEQEDEQH\\/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8\\/T19vf4+fr\\/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8\\/T19vf4+fr\\/2wBDAAICAgICAgQCAgQFBAQEBQcFBQUFBwkHBwcHBwkLCQkJCQkJCwsLCwsLCwsNDQ0NDQ0PDw8PDxERERERERERERH\\/2wBDAQMDAwQEBAcEBAcSDAoMEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhL\\/3QAEAAb\\/2gAMAwEAAhEDEQA\\/APBHZTcuyEEOMMPRh7duK4a\\/tLS5hWO7RXG3nPtX6dD9lbxbrK58WSaZ5mOJUL+cP+BKvP4kj2rhtX\\/Yb1GRythr1ukfYSQOTjuCQcfjj8K51CfVG7q09rn5mR2F0qm4sGBwcKsvIwDx83X6da0Ydblt2EV8jQnoN\\/zIfo46fjX3ZdfsReL7OTZY6vYSR7gMssikL64wecds16ZZ\\/sdfDnT7b\\/ieXepakwA3iMxW6H14IY4\\/GlJNXuh+0i9Ln5u\\/b1CiVWAz09Pz+tZc9808m5\\/u5wMdSfQV+remfsvfBfTifs\\/hmSXdjIuL2Qqcf7Ibb+Qqn8S\\/2ffDV18PNQ0rwT4RsIdQaPNrJDNtnR1IIZHZeTxypYbhxmpUlfVCautGfmppEckLLdOdsn8OOgHpXW25gI\\/cYibuh4Q\\/7v8Ad+nT6VwtrfKgxKNrKSrZ4+YHBHsc9jSXutsU8q1Gc8Z\\/oKmUru7LSsrI6vUNaSBjbR4V8c7uKwrDSr3WHFzNuSInknqee3tUuk6FJcD7XfE4\\/hXPI+td1vFtAAWXYAPmHH5jtUjvYns7KzsYVhhQbB1X61d+zWh583HsQP8AGuKv\\/E6KTbacPMk6cdBWQbfxe\\/zDIzz3p83YLs\\/\\/0P1O8ca9deFfDF74itbG41OSziMotLX\\/AFsgHUIMHJA5xjNGiahb+I9DtNcgimgW7gSYRXClJU3gHa6now6EetddLhWyKoyyRDksB9TWsrHMYE9jGeoP51iz2Sj1rqJ7m27yJ+YrNlmtWHMi\\/nUOKZSbOSWJ7SUZb9yeMHqn4+n8q6GBCWweoqrJ9mbgMpz71asw6nyT1Tjnrt7fl0qHTLUz8Qv2nfhxP4H+NmsafpgaCHUnGpWxj+6yXPzOpH3SFkDivGdOS70ZwL+Mso58yMFgv1H3h+Ga\\/VD9uHwb52haN8RbZfmsJ2sLph18m4+aMn\\/dkXH\\/AAKvzHurueaTyLFWdskl8YPWsai6HXTd0dLH4k0+K2ExkVsj5Npzn6YqrC2r68+QTFD\\/AD+tczB4ajz9tEhEzHdnjGR6jpV9PG50tjY3EayyBcqYT8p+ufu\\/Q8e9YuJdz1LRtF0\\/So8soJ6lj2rTOt6Sp2mePjj7wrz2x07W\\/FOJ9YuRbWx6Qwnkj3btmuqHgfweBgwocdy5z+PNWoLqxXP\\/0fOfH\\/7UXx4uNW\\/4SK61C5tNKn3SWdsES3d4ByhkMYzlgc8HpXV\\/Aj4ja\\/8AHjQdT8QXGra7ZNp0qwPGLzCMzJvOwKAQB23MTVz9qTR9G1TRRrGhsklv8txBsxxBL0BA6YPH4V8q\\/sySeKxpvjHwR4b1EaUxmt7hLhVEkgLh0I2sD8u0DkY571686EIvRHm06zmrs5P41ftE\\/EzwD43uPDthrGqSRoqupa9lGM5BGM+1cB4R\\/ad+KfiHWhYz63qULlS8bLeSnLLyRgnHSvKf2gvA\\/iDwn4n+069qcmrTTEpJcSJsO4cgAZbgjOOe1eM+G9SbStetL8HiOZS3+6Thv0JrmnKN7WOqMNLpn6QWXxu+L9vdR3aeI9SZonVwHnZlypyMgnBHHIr94fh94z034pfD7RviPZqqjUYAZ0H\\/ACznX5Jk+iuDj2r+ci3kJOK\\/ez9kvTG0n9l\\/w2Jxg3sl3dgH+687gfmADWE0rCTPRvi34NtPGvwq17w28Ss89hK0XGcSxDzIyPfcor8HXu7SxC2+lF2uMDESDcD\\/ALwPT9K\\/oet7hHULJyHGGH6H+tfhTrmgalofinU9A0mzjjNpfXED3EhwuY5GXOByTge1c9SKtc6aMnsefnSdV1F1\\/tUNBDJjKw8kMfUjnn8qsXFnb6FcPo1laSSTHbldhU\\/Rmb1rok0ywubkJqVxNqk4P\\/HvbAsoPuqcD\\/gRr0ey0nxJPCkl7Db2FjHgn7bIHYAegBAQ++7Ncz0OlaniMPhXxMsT3YmWyt1IDQRtgE98P0HvgYzUgk8DqNssTlhwx84nnvzv5r2J\\/Dmk6hdiSwt7nWzvBVU3tbIB25Cx4\\/Fj704eGrvH\\/IAlX288rj2wsZA+gOKExn\\/\\/0vLtZhkubQKjF7K8iZUHOAJV3qfbmvmT4Xa8fA\\/x2soJzsg1y3k02UHgech3xE+5ICj61946ZovhF\\/gZY2jKjeINLvTFKuXWSa3bc0TY3FSE+7wuQep5FfEHjLwK\\/ijxfbwWMv2c2OoRyy3aYItzG2Xy3Tcvp6jvXrRm+X3jzIJcz5Sr+1t4de9tZr+IfcjE\\/wCMbYb\\/AMdJr89dN0y+1S5js9PieeaRgqRRKXdiegVRkk1+0Hgv9nTX\\/wBqBrvxD4x1G40rRIJvJFpaRF57kHkhZX2xqnTLAEk9q++vhd8HPgf+ztpqXXhzSrDRnysR1K9ZXupHbgDz5eQWP8MYGfSuKck53OyHuxsfAn7O\\/wCxP8SfiHZ2msfEoS+F9NEUbSfaY83k3HzCKE4K\\/wC8+BzwDX7NWumaRoGhaf4X8PRGDTtKtUtLWMnJCRgAFj3J6k+ted2vxh8B3XjX\\/hXRvHi1ku0S288Uke+REErIrsApfyyHCkhivzAEV5L8UPFnxA1D4v2nw28I6n\\/Y9lY6O2u6ldRRwT3UwMjJHDDFOcFfkO9lUkZGeKiTvqJI+kt20cHox\\/Xn+ea\\/Fj9r7X\\/DPwx+MOr\\/ANqxX08+oyrewQwsq27LIisxfccElyc\\/Ka\\/YbStUvrrQrW61jy1upYFaUR5C7lOCQDyuc8jseO1fj3\\/wVL8PebBoXjS3BDLm2kZfTnAP6Vz+1hKoqbOinCUY8x832\\/7RHjC9ghtdBjsdLhZfm8mMeavuS3yge4Fd14E8fa7ca9He6pJb3zbQd1yBMQx7AHO059MGvznsNTvtOEd5YrsKBchvmD5J5I+tfSPgbxkusQ\\/Z7mDY2Cd8JIP4A5H0raVFW0QnNp7n6LL8RJrmyZtWF68oyFt7EpDGR\\/vYMn5GuZfxmFcqdDuDg4ybyUn89\\/NYnw++I3w78QvbWt7OLe7WJftEc4ML7xwTh+MEjPBNfVcVr4NaNWV1IIBHzH\\/Cp+rRetw+sSW6P\\/\\/T+3LT9n\\/wr8Ovh9PDcW8d5q11CRcz8kBmHKRsQGEY7dCep9BN8DbXwTqSat4VTw9ZWli8iXMcEqRyrJKgEcr7SDjkKRnk9cA19MeJ7VLrTpUk6FT\\/ACr4B0kXvh34yadq1pNLDbrcSWt2ucKYLtfL3BTkZWQIc46ZrSrP3oyexnSheMoo7H4x\\/tFXfgnUrvwR4S06LSb6zEypLqsJKTskJmt0tYIWy32nZJHGzEYK\\/cORXjmlfDn4o\\/FBJ18RtMt6uoXO26lCzu1jdLLDhA0hjgPl+WysoXBX\\/V55b7T8O\\/A74f8AhmzS2to7q5mDo0t3e3D3FzMIwyojyvk7FDthV2gZPqa9ViitbG3FvaosUadFQYA\\/KtHFbszTXQ+AfGOn\\/Df4EaxH8S\\/jnftrXibUNXOp6Zb2MbRJE0EAtoljTccpBCTl5GwWYnBOK+ifiFoC+LrKG60S7XTr3YBHqMdtFPN5D4YopkHAYgHrwe1eRftV6r8BfDE+leOvjErXt3aw3EOk6SrE\\/aWOGdiigkgYAyTt56E1+Ifxg\\/be+Pnxrlk0bw676Fo6\\/LFp+j71fy+iiWVfnbA9Nq+1clScprlpnTCmlrUP6ALS3GhafbaQtzNN5MbKZrhvMkfgkszHqS34elfnt\\/wUTk026+DVrEf9c18oUk8nA3f0r4x\\/Zt\\/aW+MvhnR9S8HARahFBC8kQ1B5WmhkBBOCWLFfVSMZwc8GvnTx\\/wDEbxh8SvFH2rx\\/f3N1Ly0cKOskSK3oinanGOgrkw+HksRzTex11asfY2itzyDRopLuWWxJyTCxUH\\/ZIbj8Aa+lPh14aYtE8GQWwD+NYnwr+H\\/hbxj4t\\/srRJLs3UG4skhVQAPlY52gYycAda+qPFnge0+CvgKfxjGtzcG2aKNUaRRuMjhOqqSOuelepKql7qOJU2\\/ePP8ARtGuzq908\\/lyrHEY8NgghyQQ3OB+Veiw2nhpIVRtNtiQoB5A7V81x+OvGGr22paXNp7WE13MPm8mbcpBBx0wDgYJP5VupoHjXYP3UnTv5lRzsp0z\\/9T7xutb8XeNvAHhrxXaXl9\\/ZL2EsmoHT0c31xdriOFWWJfMEe4MZAm05wCQM18pftQ2Hinw98PF8TabJc299bQJPKZyqSlV5fzNmV3Ackeo9a+3v2foLvTfBF14YvHLvpeo3EC7yN4RsOquBwGUsVI9q5X9o3\\/hENL8HXN74pZH3RskVscM0pIxtCdW+nT1q5RUlYiEuWdzu\\/hF40t\\/iX8MNC8fWzApqdhDO5\\/6aFcSD8HBrt7qTf8Aubfvxk9a\\/CH4DftP+O\\/2e9d03wZrQe48IG4ud+nhYlliEvz74mYghlIyELYbnAya0fiT+2L8Z\\/jxcy6H4UtpvC3h55TC0Vuxe+uI+STLMmNikD7qYHP3jVTUpLlRMVytyOd+Nvi3xL8Rf2mtZ8eadOstjpCSaHpcT8xpFH8jye7NJucY\\/GvnHS\\/Cnwo+HeonW\\/EOpJbXQzuCyFpNx6\\/u4923J7cD0Ar2fxXo1p4f0XTvB2lSslzfDz7iVMgpCB8+D1ychQfr9a0NA8KaO+nfZotKP2F1K+e6jy3IJUj8x1K496TUYe7FGkeaesjwn4geALHW7S28c+ApYUt79mSWdWkieUnqrbuAT745rsvhb+yPbfEdUisLq1tbkqDJA7vNId3+0fLT8RkV21rp1rp9hr3g5QRbiwa9tUHRXTjK+hBx+QrqP2cda8UahcReMza3Wj2tqDbrJMh3Th8fNHnHAPPGc1MpJL3jWKbfumjpv7KvhzwnrD\\/2lM8l5bqyuHIVHIODkJgkgjBBJHQ1d8R6H4V0fwxdXENrFIsUyQpHKGePfjeSYyxBwORx1q98TPj74J0fxVc2MmofbbwyyRuluPMfdv537flTnrkiuc0DV5fFGmWN\\/JbPEP7Sad9zBhtQcAgDqcD1HNclFVJyVzoquEYuxP4f8Ca41vLeXsiWv2hCIY0j8powwx8yrgZHUcZ55qM\\/ByNjubUJSTyT+8\\/+Kr3BPFCMwF3EnJOMHbXqdj4bub6yhvYpLVVmjWRQzgEBgCAefevTdBLc832zZ\\/\\/V+y9Z174jXyXPxB+C9vIttrRgn1mwePfdWd0g8tmjVgMxtkFiFJP3hjkDp9A8SanotnEfHWha9cagjCVtli8wd8dA6n7uecZx615LoXxGXwH4zt9Z0nWYQqjy5rMZm89CeVYoSF9QQMg8+1foL4Z8X+D\\/ABFb\\/wBpafMsFy6ESQSvtdd2CflJwRkdR+lY0at7Js2xFJJ+7HSx+Bv7X\\/gDxXFrp+MmpeH5tG0a41aMqNT8uPLsGcholcsqkBsZx2FfP3hv4ga14m1O30bS7horZ5AHS0jWCLYDyMgBmGPc5r9u\\/wBtDwj4X+J\\/wX1fwPqGp2VpcTGKa2eaZFKywyBuOc5K7h071+UunaB4A+Gdu1h4fhk1W7VSv2mNCF3dN2+XHH0U1sqlOCUURapUk5M4DxdcG78e300hYw29tbxKE4ZUwSwBPevo2\\/vLf7al6SRpkVqWSRXUwSBl2hCIw4ODj5nUkKehWvMNK8Kalrt3ca4LFluLnarQRksHVejAkABgc5BwCDx0rs7L4aeKru0W1tbNbOMcB7kKuAPRF+Y\\/oPepm09S4O3Q+cpPE9tbeJ76CeTDjRp0AJy4aU5QYUcnjqAB9BWh8JND8YRa3a+K\\/HU1xqYhgaK3WeQqkLSgLvSP7mQpIAwOvUV9b+Gfglo3h2OSZ4Bf3cx3TTTgAuT1xwcADoP1reudGuvDlyL2PT4NQsYjultpicFDwyqF+bjqD27Vz161otrc9PKsLTrYujRrfDKST1S0b11ei9Xoj5b07wl4W1u\\/n8RW1ktr9oc+ZGTufzV+WQlsdWYEnrya+kvhHqXh3XLy4+HR0yPUJbWH7QqZMZA3YIV9rKWy3Qj8RXnmhaBrviW9vdetNPTR9NeZja2se4jGeWBfJbLZr7B+Cng\\/w0sr3sd8bDVrbLNKyNMrwOF2qsSgHf5g5JccHpSVVqCdzepBYbMKsMMk0nJJSs7pPbqm\\/Tfoeaa\\/4CsLfUfJXS72yhOMSYb5W5yCQWT6dM+gqA\\/D7Qe17dfkv+Fff9n4y8X6H5GleMtJTU3vmbyU090nnAAPzSQYJXco6lzj61hSeKvhusjLLpV5GwJDI1q2VPcH5Ooop4+tC6cOb5\\/8AxzLDxryhJ0403b7Ksnrvvby00P\\/1vq7wV4TSeyfWIYre1iuJpZbcwRBXMLH5DkjcAeoB7EVvyWGmQWrQMWm5OTLyx+g7e1dlrba7FbrFBBCoc\\/MpkIZFPTAAOT7ZArLR51ty12oZ8YJXoAPXvXlNnp2ueIax4Btb\\/dLDEMnOB3INeTeJfgZPrdiq2d4+nyxsHWSPlTjs4GCR9DX1g9tNC2Rk+bkjPTmsm6WKzhD3hVSeTnkA1UJMTjqeR6H4MudF02CJpVndFw8qrsDMOpCc4zW62nS581uOn3q6+JrfU7f7ZaASREcOO49u1YuqzSW1mRZxNKVHIQkkZ9+abmPkKksEiw77ddxHY4UVnyae1wfKZGGT8zNgcEHpg5zXQWGm3EkKG5jXcUwS2SQOoHX86u3EJeQydWxyaXMPlZwtrYSwyMiljEg6kYySeo9fetHTfE8\\/hO\\/NzpLvbz7cF0j3KVPOGPQ+tbrBVTZJtLYzgcZ\\/CmskM9rDDJMsdu7+YxEZdo2BwCSBuIPHAJGOtejlmHo4ms6VaSSs9zzM2xNbC0FVoRbd1ol0\\/rqdHZ\\/HGOaxuYp7VomnTyprqzd4d3H8Y4\\/9CJ9MVej+KXwURFS40yN5AAHZ7SZmZu5Y9yT1PeuH103OjxJFpd7FJFcBizWyPGWGMEOrKoPXtn618gap4\\/1TT9TubCGaJUgmeJR5fQIxAHX2r063DCSUoy0fb\\/gnBhONcTT5qdOTTW+rX5f8E\\/\\/1\\/v2O9MMgtmffMUJUs+8hc8mqLXO6bBOQGyc8ZFc9Jd63okLpq8CLGgKpdRDMRHbzEzuT68j3qZLTxD\\/AGGi6W0XnycvP8uxAem3I\\/ofrXk2Z6unQ6Cd1uIGl+VFGVAwQQfauUuLeEb45m3DggMu7iq7W2oTJHYanO9zLGp3OuRuJPXAGMjH1reTfbwJIh8wd1VcYz2I\\/rU36FWOc\\/eXC4QokS\\/xoeS3bjGKw47e9spHkeVZIm7BcHOepOcfpXbix\\/c+cseUduV6nOf\\/AK9WE8PapqttIuk2+4xkK3IAGe+PTFGvQNjiftHkMXkOVxnAPJz6VjXV\\/exrcS2ds7EY2q\\/Q\\/T+tbM2mSafd\\/Y7pNs3QgZ6+3pSXIm3ohCYJxs7\\/AFpOYzCtG+2KLm8wjIuAAe\\/pVKLSrTTkcWCmISOXO12K5PX5SSB+FWHkSW5kgjcJJGCRk4Bx256k9qpx3UkUgFyMFj+dPmJauTxCRB5hyGB4ZSQfzrJl8P6JcStPcW0TyOxZ2ZFJZjySSRySa6B5FYZBxx071U3yf3a0jUa0TI9mm9Uf\\/9D9AbRr+S8MV15XlMCAmCxb654rlbvSLrwFbHU7ZzNpDktcwEbxbEt\\/rEz1j5+Yfw9R8ucbVv4phi1+Pw7DGZJp4y4KjlQo53f3ewHHOa7mecadh51R4jFtWNgSWduDnPG0DPqTXjxfc9R9zhvPtpw91abCn\\/TLGOR261iTXn2NWntWO1cmQg5J46DHuK4y4t5fAl8tuw\\/4k17Li3YHJtZmJ\\/dH\\/Yb\\/AJZnsfl9M9XdxxQWaOgJy2RnnAPrSehadzRgvi82QW+VRkAcAt9auJr1\\/oRa\\/s35\\/wBWxADAfUdDXN\\/bZbhWhs8K7jJkH3h26HrUrJ9kh8qJ3JAyc88+p7Uua2wNX3MvVtSvr15NQlbzJnIfLjrjsa56yvDej7dDuDMSGR+2O3+FXP8ATb+Z1xtGRkH7oz6VoDSltYlVJCq4zwOcjqKl2A4Scs1wZljw2Ap45wD\\/ACqVTNaTJeRIrYyArqGU7hg8H07V1luI7W4ZZUB4++ecg+tRyMJbkQKAgyCp9KnqM5mKzkQkvyDyPbNO2yev6VduJZ7Z2hl4OSR7iqP2xP7h\\/KqUrbgf\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"7opDc+2rIf3XpRsCKb7v+fYyOwUzxdt9n4rhoZMw0DDklQi1mbhVvyUzg\\/soWVhgLkSov97p5usLLDB\\/3O9ZP5D2AFzqJT+lGCz+ambiEnfZTOPG6hFPedWBLkWvqawS9UL8KfhcBbghCi6fl14wEP1hOlCs\\/ExDGzAe8wx7yRrgig1OM6G91lY9ZixMg7SNjtjt\\/fIDZpRM2Z2UlpEZ1dgOwjauwK7uSfjhp5ZfB2JwQe4PVEufx7QWnKrh0K8pDDb1+PBWdpXxEG54tOvz1zLOunB64lF1t73FphXVUuvgvKQAt2uFnuIGrc3C94W\\/ek9Nna6dnfVmbl8vFS7Vmw3NLc2pOCOf+caiSsmFyaLRdBwNoTj2y40ix2q9npl5uQIiXaQyhIpnFTAZgPWlOw2sWbK6cNhgt\\/S9lQpsK5v4\\/4ZGr3QvO5lAeTZ9eEkoHyBOiJ2O+jxyIM6HUVZpwS\\/sNEbJ2YKfjLAYgcmB9yxe7y8r4lnJ\\/6WSeb6WlNzWFNoUS8CHSIWkLyNhS3Gi8x+2oVuHVQWvWk\\/7l3taDljL8jiBCF8p61pw54YULmsRBQ+sz07jaQBjNnF1VNZ3yJtRtSsWQQ5dhlltJiCsK1BGc6rUk3a3Z6VYpvJRF4MsxH1kZbSXkCxofFfLTVxxYHorjYKuSMRgt8xY27Eubqw5z4TK15NP1\\/DIJyweNGpib7AwlXQlek8RGd0ooZNOzNiwLX7ppFOv3AmhfG6uEUPNL4439FRbexq2lced1cgN2aDbPSnD\\/7cUEc\\/6opXinwI5Q+MyiTG5ikMnN2ARwuI+V4Jng3A0Ni0kTANkpJG9bcM1TdcCABC1QcJFjiMfAaqG3uOrhwoixY6rhTszaUDCPBQeJRusTyMhuY+q7q3rX0CubRUEibCRzXGQQE6KIMPThqTql2Al0qg\\/7rXUunNWSkzWWZNtGpT1L94YZ7X+\\/y9ayXEe6NSrot\\/PsfQuEo+rVtA04d44z0bYuPjK9PKNiBkxpSn62TFbolWSlRfYvgCO9yKAco7tFsksuSrMI8wC+V+lOG53ML9BnfgGzFwNVPsj3LrhRIfrs\\/LWFDp2haSeFPRD9HoWWCg2n049d7Q+jIShT8CJ\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/633891512_2375482732900037_585940841150456303_n.enc?ccb=11-4&oh=01_Q5Aa3wE2hianURvLQrR5Gw-6n7V_UnnvOU0bx2oV8Yoiid2W7A&oe=69B4653E&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Is\\/h5krx9uf0R3uqbDLSr3v8a204VcyogKUG74Tg9vw=\",\"thumbnailEncSha256\":\"hGiwQfyN+8FuAm37EX0ZbfgSmJXUriP4IlB7uoatT+I=\"}},\"remoteJid\":\"status@broadcast\"},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"3A462A2249D0C0B556C0\",\"participant\":\"5515996618993@s.whatsapp.net\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"5ohbUxwX376DaDL3ag45fAuYZ4Rx5lmGEGbzj6UCUkY=\",\"fileLength\":\"5470537\",\"seconds\":14,\"mediaKey\":\"ZqM2Lv8A1eOT5ZHALO7LxaJYnBUX8AQGZaQEjKsVsxQ=\",\"caption\":\"Depois de benzida agora vai 😂😂😂\",\"height\":1280,\"width\":720,\"fileEncSha256\":\"wMED+Smk9y7u3VlBektBSS4K0W1dsjGAaqz1uFd0aXg=\",\"directPath\":\"\\/v\\/t62.7161-24\\/585493758_1846936309356683_7384858586289799111_n.enc?ccb=11-4&oh=01_Q5Aa3wF4NmsrTVojWJLOEAlTt7ldYs8Q7pPneralzK7pfEqGlw&oe=69B4570E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770842735\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAASABIAAD\\/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAABIAAAAAQAAAEgAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAFqgAwAEAAAAAQAAAKAAAAAA\\/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv\\/AABEIAKAAWgMBIgACEQEDEQH\\/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8\\/T19vf4+fr\\/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv\\/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8\\/T19vf4+fr\\/2wBDAAICAgICAgQCAgQFBAQEBQcFBQUFBwkHBwcHBwkLCQkJCQkJCwsLCwsLCwsNDQ0NDQ0PDw8PDxERERERERERERH\\/2wBDAQMDAwQEBAcEBAcSDAoMEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhL\\/3QAEAAb\\/2gAMAwEAAhEDEQA\\/APBHZTcuyEEOMMPRh7duK4a\\/tLS5hWO7RXG3nPtX6dD9lbxbrK58WSaZ5mOJUL+cP+BKvP4kj2rhtX\\/Yb1GRythr1ukfYSQOTjuCQcfjj8K51CfVG7q09rn5mR2F0qm4sGBwcKsvIwDx83X6da0Ydblt2EV8jQnoN\\/zIfo46fjX3ZdfsReL7OTZY6vYSR7gMssikL64wecds16ZZ\\/sdfDnT7b\\/ieXepakwA3iMxW6H14IY4\\/GlJNXuh+0i9Ln5u\\/b1CiVWAz09Pz+tZc9808m5\\/u5wMdSfQV+remfsvfBfTifs\\/hmSXdjIuL2Qqcf7Ibb+Qqn8S\\/2ffDV18PNQ0rwT4RsIdQaPNrJDNtnR1IIZHZeTxypYbhxmpUlfVCautGfmppEckLLdOdsn8OOgHpXW25gI\\/cYibuh4Q\\/7v8Ad+nT6VwtrfKgxKNrKSrZ4+YHBHsc9jSXutsU8q1Gc8Z\\/oKmUru7LSsrI6vUNaSBjbR4V8c7uKwrDSr3WHFzNuSInknqee3tUuk6FJcD7XfE4\\/hXPI+td1vFtAAWXYAPmHH5jtUjvYns7KzsYVhhQbB1X61d+zWh583HsQP8AGuKv\\/E6KTbacPMk6cdBWQbfxe\\/zDIzz3p83YLs\\/\\/0P1O8ca9deFfDF74itbG41OSziMotLX\\/AFsgHUIMHJA5xjNGiahb+I9DtNcgimgW7gSYRXClJU3gHa6now6EetddLhWyKoyyRDksB9TWsrHMYE9jGeoP51iz2Sj1rqJ7m27yJ+YrNlmtWHMi\\/nUOKZSbOSWJ7SUZb9yeMHqn4+n8q6GBCWweoqrJ9mbgMpz71asw6nyT1Tjnrt7fl0qHTLUz8Qv2nfhxP4H+NmsafpgaCHUnGpWxj+6yXPzOpH3SFkDivGdOS70ZwL+Mso58yMFgv1H3h+Ga\\/VD9uHwb52haN8RbZfmsJ2sLph18m4+aMn\\/dkXH\\/AAKvzHurueaTyLFWdskl8YPWsai6HXTd0dLH4k0+K2ExkVsj5Npzn6YqrC2r68+QTFD\\/AD+tczB4ajz9tEhEzHdnjGR6jpV9PG50tjY3EayyBcqYT8p+ufu\\/Q8e9YuJdz1LRtF0\\/So8soJ6lj2rTOt6Sp2mePjj7wrz2x07W\\/FOJ9YuRbWx6Qwnkj3btmuqHgfweBgwocdy5z+PNWoLqxXP\\/0fOfH\\/7UXx4uNW\\/4SK61C5tNKn3SWdsES3d4ByhkMYzlgc8HpXV\\/Aj4ja\\/8AHjQdT8QXGra7ZNp0qwPGLzCMzJvOwKAQB23MTVz9qTR9G1TRRrGhsklv8txBsxxBL0BA6YPH4V8q\\/sySeKxpvjHwR4b1EaUxmt7hLhVEkgLh0I2sD8u0DkY571686EIvRHm06zmrs5P41ftE\\/EzwD43uPDthrGqSRoqupa9lGM5BGM+1cB4R\\/ad+KfiHWhYz63qULlS8bLeSnLLyRgnHSvKf2gvA\\/iDwn4n+069qcmrTTEpJcSJsO4cgAZbgjOOe1eM+G9SbStetL8HiOZS3+6Thv0JrmnKN7WOqMNLpn6QWXxu+L9vdR3aeI9SZonVwHnZlypyMgnBHHIr94fh94z034pfD7RviPZqqjUYAZ0H\\/ACznX5Jk+iuDj2r+ci3kJOK\\/ez9kvTG0n9l\\/w2Jxg3sl3dgH+687gfmADWE0rCTPRvi34NtPGvwq17w28Ss89hK0XGcSxDzIyPfcor8HXu7SxC2+lF2uMDESDcD\\/ALwPT9K\\/oet7hHULJyHGGH6H+tfhTrmgalofinU9A0mzjjNpfXED3EhwuY5GXOByTge1c9SKtc6aMnsefnSdV1F1\\/tUNBDJjKw8kMfUjnn8qsXFnb6FcPo1laSSTHbldhU\\/Rmb1rok0ywubkJqVxNqk4P\\/HvbAsoPuqcD\\/gRr0ey0nxJPCkl7Db2FjHgn7bIHYAegBAQ++7Ncz0OlaniMPhXxMsT3YmWyt1IDQRtgE98P0HvgYzUgk8DqNssTlhwx84nnvzv5r2J\\/Dmk6hdiSwt7nWzvBVU3tbIB25Cx4\\/Fj704eGrvH\\/IAlX288rj2wsZA+gOKExn\\/\\/0vLtZhkubQKjF7K8iZUHOAJV3qfbmvmT4Xa8fA\\/x2soJzsg1y3k02UHgech3xE+5ICj61946ZovhF\\/gZY2jKjeINLvTFKuXWSa3bc0TY3FSE+7wuQep5FfEHjLwK\\/ijxfbwWMv2c2OoRyy3aYItzG2Xy3Tcvp6jvXrRm+X3jzIJcz5Sr+1t4de9tZr+IfcjE\\/wCMbYb\\/AMdJr89dN0y+1S5js9PieeaRgqRRKXdiegVRkk1+0Hgv9nTX\\/wBqBrvxD4x1G40rRIJvJFpaRF57kHkhZX2xqnTLAEk9q++vhd8HPgf+ztpqXXhzSrDRnysR1K9ZXupHbgDz5eQWP8MYGfSuKck53OyHuxsfAn7O\\/wCxP8SfiHZ2msfEoS+F9NEUbSfaY83k3HzCKE4K\\/wC8+BzwDX7NWumaRoGhaf4X8PRGDTtKtUtLWMnJCRgAFj3J6k+ted2vxh8B3XjX\\/hXRvHi1ku0S288Uke+REErIrsApfyyHCkhivzAEV5L8UPFnxA1D4v2nw28I6n\\/Y9lY6O2u6ldRRwT3UwMjJHDDFOcFfkO9lUkZGeKiTvqJI+kt20cHox\\/Xn+ea\\/Fj9r7X\\/DPwx+MOr\\/ANqxX08+oyrewQwsq27LIisxfccElyc\\/Ka\\/YbStUvrrQrW61jy1upYFaUR5C7lOCQDyuc8jseO1fj3\\/wVL8PebBoXjS3BDLm2kZfTnAP6Vz+1hKoqbOinCUY8x832\\/7RHjC9ghtdBjsdLhZfm8mMeavuS3yge4Fd14E8fa7ca9He6pJb3zbQd1yBMQx7AHO059MGvznsNTvtOEd5YrsKBchvmD5J5I+tfSPgbxkusQ\\/Z7mDY2Cd8JIP4A5H0raVFW0QnNp7n6LL8RJrmyZtWF68oyFt7EpDGR\\/vYMn5GuZfxmFcqdDuDg4ybyUn89\\/NYnw++I3w78QvbWt7OLe7WJftEc4ML7xwTh+MEjPBNfVcVr4NaNWV1IIBHzH\\/Cp+rRetw+sSW6P\\/\\/T+3LT9n\\/wr8Ovh9PDcW8d5q11CRcz8kBmHKRsQGEY7dCep9BN8DbXwTqSat4VTw9ZWli8iXMcEqRyrJKgEcr7SDjkKRnk9cA19MeJ7VLrTpUk6FT\\/ACr4B0kXvh34yadq1pNLDbrcSWt2ucKYLtfL3BTkZWQIc46ZrSrP3oyexnSheMoo7H4x\\/tFXfgnUrvwR4S06LSb6zEypLqsJKTskJmt0tYIWy32nZJHGzEYK\\/cORXjmlfDn4o\\/FBJ18RtMt6uoXO26lCzu1jdLLDhA0hjgPl+WysoXBX\\/V55b7T8O\\/A74f8AhmzS2to7q5mDo0t3e3D3FzMIwyojyvk7FDthV2gZPqa9ViitbG3FvaosUadFQYA\\/KtHFbszTXQ+AfGOn\\/Df4EaxH8S\\/jnftrXibUNXOp6Zb2MbRJE0EAtoljTccpBCTl5GwWYnBOK+ifiFoC+LrKG60S7XTr3YBHqMdtFPN5D4YopkHAYgHrwe1eRftV6r8BfDE+leOvjErXt3aw3EOk6SrE\\/aWOGdiigkgYAyTt56E1+Ifxg\\/be+Pnxrlk0bw676Fo6\\/LFp+j71fy+iiWVfnbA9Nq+1clScprlpnTCmlrUP6ALS3GhafbaQtzNN5MbKZrhvMkfgkszHqS34elfnt\\/wUTk026+DVrEf9c18oUk8nA3f0r4x\\/Zt\\/aW+MvhnR9S8HARahFBC8kQ1B5WmhkBBOCWLFfVSMZwc8GvnTx\\/wDEbxh8SvFH2rx\\/f3N1Ly0cKOskSK3oinanGOgrkw+HksRzTex11asfY2itzyDRopLuWWxJyTCxUH\\/ZIbj8Aa+lPh14aYtE8GQWwD+NYnwr+H\\/hbxj4t\\/srRJLs3UG4skhVQAPlY52gYycAda+qPFnge0+CvgKfxjGtzcG2aKNUaRRuMjhOqqSOuelepKql7qOJU2\\/ePP8ARtGuzq908\\/lyrHEY8NgghyQQ3OB+Veiw2nhpIVRtNtiQoB5A7V81x+OvGGr22paXNp7WE13MPm8mbcpBBx0wDgYJP5VupoHjXYP3UnTv5lRzsp0z\\/9T7xutb8XeNvAHhrxXaXl9\\/ZL2EsmoHT0c31xdriOFWWJfMEe4MZAm05wCQM18pftQ2Hinw98PF8TabJc299bQJPKZyqSlV5fzNmV3Ackeo9a+3v2foLvTfBF14YvHLvpeo3EC7yN4RsOquBwGUsVI9q5X9o3\\/hENL8HXN74pZH3RskVscM0pIxtCdW+nT1q5RUlYiEuWdzu\\/hF40t\\/iX8MNC8fWzApqdhDO5\\/6aFcSD8HBrt7qTf8Aubfvxk9a\\/CH4DftP+O\\/2e9d03wZrQe48IG4ud+nhYlliEvz74mYghlIyELYbnAya0fiT+2L8Z\\/jxcy6H4UtpvC3h55TC0Vuxe+uI+STLMmNikD7qYHP3jVTUpLlRMVytyOd+Nvi3xL8Rf2mtZ8eadOstjpCSaHpcT8xpFH8jye7NJucY\\/GvnHS\\/Cnwo+HeonW\\/EOpJbXQzuCyFpNx6\\/u4923J7cD0Ar2fxXo1p4f0XTvB2lSslzfDz7iVMgpCB8+D1ychQfr9a0NA8KaO+nfZotKP2F1K+e6jy3IJUj8x1K496TUYe7FGkeaesjwn4geALHW7S28c+ApYUt79mSWdWkieUnqrbuAT745rsvhb+yPbfEdUisLq1tbkqDJA7vNId3+0fLT8RkV21rp1rp9hr3g5QRbiwa9tUHRXTjK+hBx+QrqP2cda8UahcReMza3Wj2tqDbrJMh3Th8fNHnHAPPGc1MpJL3jWKbfumjpv7KvhzwnrD\\/2lM8l5bqyuHIVHIODkJgkgjBBJHQ1d8R6H4V0fwxdXENrFIsUyQpHKGePfjeSYyxBwORx1q98TPj74J0fxVc2MmofbbwyyRuluPMfdv537flTnrkiuc0DV5fFGmWN\\/JbPEP7Sad9zBhtQcAgDqcD1HNclFVJyVzoquEYuxP4f8Ca41vLeXsiWv2hCIY0j8powwx8yrgZHUcZ55qM\\/ByNjubUJSTyT+8\\/+Kr3BPFCMwF3EnJOMHbXqdj4bub6yhvYpLVVmjWRQzgEBgCAefevTdBLc832zZ\\/\\/V+y9Z174jXyXPxB+C9vIttrRgn1mwePfdWd0g8tmjVgMxtkFiFJP3hjkDp9A8SanotnEfHWha9cagjCVtli8wd8dA6n7uecZx615LoXxGXwH4zt9Z0nWYQqjy5rMZm89CeVYoSF9QQMg8+1foL4Z8X+D\\/ABFb\\/wBpafMsFy6ESQSvtdd2CflJwRkdR+lY0at7Js2xFJJ+7HSx+Bv7X\\/gDxXFrp+MmpeH5tG0a41aMqNT8uPLsGcholcsqkBsZx2FfP3hv4ga14m1O30bS7horZ5AHS0jWCLYDyMgBmGPc5r9u\\/wBtDwj4X+J\\/wX1fwPqGp2VpcTGKa2eaZFKywyBuOc5K7h071+UunaB4A+Gdu1h4fhk1W7VSv2mNCF3dN2+XHH0U1sqlOCUURapUk5M4DxdcG78e300hYw29tbxKE4ZUwSwBPevo2\\/vLf7al6SRpkVqWSRXUwSBl2hCIw4ODj5nUkKehWvMNK8Kalrt3ca4LFluLnarQRksHVejAkABgc5BwCDx0rs7L4aeKru0W1tbNbOMcB7kKuAPRF+Y\\/oPepm09S4O3Q+cpPE9tbeJ76CeTDjRp0AJy4aU5QYUcnjqAB9BWh8JND8YRa3a+K\\/HU1xqYhgaK3WeQqkLSgLvSP7mQpIAwOvUV9b+Gfglo3h2OSZ4Bf3cx3TTTgAuT1xwcADoP1reudGuvDlyL2PT4NQsYjultpicFDwyqF+bjqD27Vz161otrc9PKsLTrYujRrfDKST1S0b11ei9Xoj5b07wl4W1u\\/n8RW1ktr9oc+ZGTufzV+WQlsdWYEnrya+kvhHqXh3XLy4+HR0yPUJbWH7QqZMZA3YIV9rKWy3Qj8RXnmhaBrviW9vdetNPTR9NeZja2se4jGeWBfJbLZr7B+Cng\\/w0sr3sd8bDVrbLNKyNMrwOF2qsSgHf5g5JccHpSVVqCdzepBYbMKsMMk0nJJSs7pPbqm\\/Tfoeaa\\/4CsLfUfJXS72yhOMSYb5W5yCQWT6dM+gqA\\/D7Qe17dfkv+Fff9n4y8X6H5GleMtJTU3vmbyU090nnAAPzSQYJXco6lzj61hSeKvhusjLLpV5GwJDI1q2VPcH5Ooop4+tC6cOb5\\/8AxzLDxryhJ0403b7Ksnrvvby00P\\/1vq7wV4TSeyfWIYre1iuJpZbcwRBXMLH5DkjcAeoB7EVvyWGmQWrQMWm5OTLyx+g7e1dlrba7FbrFBBCoc\\/MpkIZFPTAAOT7ZArLR51ty12oZ8YJXoAPXvXlNnp2ueIax4Btb\\/dLDEMnOB3INeTeJfgZPrdiq2d4+nyxsHWSPlTjs4GCR9DX1g9tNC2Rk+bkjPTmsm6WKzhD3hVSeTnkA1UJMTjqeR6H4MudF02CJpVndFw8qrsDMOpCc4zW62nS581uOn3q6+JrfU7f7ZaASREcOO49u1YuqzSW1mRZxNKVHIQkkZ9+abmPkKksEiw77ddxHY4UVnyae1wfKZGGT8zNgcEHpg5zXQWGm3EkKG5jXcUwS2SQOoHX86u3EJeQydWxyaXMPlZwtrYSwyMiljEg6kYySeo9fetHTfE8\\/hO\\/NzpLvbz7cF0j3KVPOGPQ+tbrBVTZJtLYzgcZ\\/CmskM9rDDJMsdu7+YxEZdo2BwCSBuIPHAJGOtejlmHo4ms6VaSSs9zzM2xNbC0FVoRbd1ol0\\/rqdHZ\\/HGOaxuYp7VomnTyprqzd4d3H8Y4\\/9CJ9MVej+KXwURFS40yN5AAHZ7SZmZu5Y9yT1PeuH103OjxJFpd7FJFcBizWyPGWGMEOrKoPXtn618gap4\\/1TT9TubCGaJUgmeJR5fQIxAHX2r063DCSUoy0fb\\/gnBhONcTT5qdOTTW+rX5f8E\\/\\/1\\/v2O9MMgtmffMUJUs+8hc8mqLXO6bBOQGyc8ZFc9Jd63okLpq8CLGgKpdRDMRHbzEzuT68j3qZLTxD\\/AGGi6W0XnycvP8uxAem3I\\/ofrXk2Z6unQ6Cd1uIGl+VFGVAwQQfauUuLeEb45m3DggMu7iq7W2oTJHYanO9zLGp3OuRuJPXAGMjH1reTfbwJIh8wd1VcYz2I\\/rU36FWOc\\/eXC4QokS\\/xoeS3bjGKw47e9spHkeVZIm7BcHOepOcfpXbix\\/c+cseUduV6nOf\\/AK9WE8PapqttIuk2+4xkK3IAGe+PTFGvQNjiftHkMXkOVxnAPJz6VjXV\\/exrcS2ds7EY2q\\/Q\\/T+tbM2mSafd\\/Y7pNs3QgZ6+3pSXIm3ohCYJxs7\\/AFpOYzCtG+2KLm8wjIuAAe\\/pVKLSrTTkcWCmISOXO12K5PX5SSB+FWHkSW5kgjcJJGCRk4Bx256k9qpx3UkUgFyMFj+dPmJauTxCRB5hyGB4ZSQfzrJl8P6JcStPcW0TyOxZ2ZFJZjySSRySa6B5FYZBxx071U3yf3a0jUa0TI9mm9Uf\\/9D9AbRr+S8MV15XlMCAmCxb654rlbvSLrwFbHU7ZzNpDktcwEbxbEt\\/rEz1j5+Yfw9R8ucbVv4phi1+Pw7DGZJp4y4KjlQo53f3ewHHOa7mecadh51R4jFtWNgSWduDnPG0DPqTXjxfc9R9zhvPtpw91abCn\\/TLGOR261iTXn2NWntWO1cmQg5J46DHuK4y4t5fAl8tuw\\/4k17Li3YHJtZmJ\\/dH\\/Yb\\/AJZnsfl9M9XdxxQWaOgJy2RnnAPrSehadzRgvi82QW+VRkAcAt9auJr1\\/oRa\\/s35\\/wBWxADAfUdDXN\\/bZbhWhs8K7jJkH3h26HrUrJ9kh8qJ3JAyc88+p7Uua2wNX3MvVtSvr15NQlbzJnIfLjrjsa56yvDej7dDuDMSGR+2O3+FXP8ATb+Z1xtGRkH7oz6VoDSltYlVJCq4zwOcjqKl2A4Scs1wZljw2Ap45wD\\/ACqVTNaTJeRIrYyArqGU7hg8H07V1luI7W4ZZUB4++ecg+tRyMJbkQKAgyCp9KnqM5mKzkQkvyDyPbNO2yev6VduJZ7Z2hl4OSR7iqP2xP7h\\/KqUrbgf\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"7opDc+2rIf3XpRsCKb7v+fYyOwUzxdt9n4rhoZMw0DDklQi1mbhVvyUzg\\/soWVhgLkSov97p5usLLDB\\/3O9ZP5D2AFzqJT+lGCz+ambiEnfZTOPG6hFPedWBLkWvqawS9UL8KfhcBbghCi6fl14wEP1hOlCs\\/ExDGzAe8wx7yRrgig1OM6G91lY9ZixMg7SNjtjt\\/fIDZpRM2Z2UlpEZ1dgOwjauwK7uSfjhp5ZfB2JwQe4PVEufx7QWnKrh0K8pDDb1+PBWdpXxEG54tOvz1zLOunB64lF1t73FphXVUuvgvKQAt2uFnuIGrc3C94W\\/ek9Nna6dnfVmbl8vFS7Vmw3NLc2pOCOf+caiSsmFyaLRdBwNoTj2y40ix2q9npl5uQIiXaQyhIpnFTAZgPWlOw2sWbK6cNhgt\\/S9lQpsK5v4\\/4ZGr3QvO5lAeTZ9eEkoHyBOiJ2O+jxyIM6HUVZpwS\\/sNEbJ2YKfjLAYgcmB9yxe7y8r4lnJ\\/6WSeb6WlNzWFNoUS8CHSIWkLyNhS3Gi8x+2oVuHVQWvWk\\/7l3taDljL8jiBCF8p61pw54YULmsRBQ+sz07jaQBjNnF1VNZ3yJtRtSsWQQ5dhlltJiCsK1BGc6rUk3a3Z6VYpvJRF4MsxH1kZbSXkCxofFfLTVxxYHorjYKuSMRgt8xY27Eubqw5z4TK15NP1\\/DIJyweNGpib7AwlXQlek8RGd0ooZNOzNiwLX7ppFOv3AmhfG6uEUPNL4439FRbexq2lced1cgN2aDbPSnD\\/7cUEc\\/6opXinwI5Q+MyiTG5ikMnN2ARwuI+V4Jng3A0Ni0kTANkpJG9bcM1TdcCABC1QcJFjiMfAaqG3uOrhwoixY6rhTszaUDCPBQeJRusTyMhuY+q7q3rX0CubRUEibCRzXGQQE6KIMPThqTql2Al0qg\\/7rXUunNWSkzWWZNtGpT1L94YZ7X+\\/y9ayXEe6NSrot\\/PsfQuEo+rVtA04d44z0bYuPjK9PKNiBkxpSn62TFbolWSlRfYvgCO9yKAco7tFsksuSrMI8wC+V+lOG53ML9BnfgGzFwNVPsj3LrhRIfrs\\/LWFDp2haSeFPRD9HoWWCg2n049d7Q+jIShT8CJ\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/633891512_2375482732900037_585940841150456303_n.enc?ccb=11-4&oh=01_Q5Aa3wE2hianURvLQrR5Gw-6n7V_UnnvOU0bx2oV8Yoiid2W7A&oe=69B4653E&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Is\\/h5krx9uf0R3uqbDLSr3v8a204VcyogKUG74Tg9vw=\",\"thumbnailEncSha256\":\"hGiwQfyN+8FuAm37EX0ZbfgSmJXUriP4IlB7uoatT+I=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770906614,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:14.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:30:15'),
(4796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:14.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:30:15'),
(4797, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/441351991_1956489928103223_8782409580870361372_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtZSM0I4Ah0Hzq9I9deQXzpVKHmNA_tVsHvMusylA4-Q&oe=699AE2F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:14.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:30:15'),
(4798, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5CB7DF3030987FFEA65F27D480894FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906615708,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:15.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:30:15'),
(4799, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5CB7DF3030987FFEA65F27D480894FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906615708,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:30:15.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:30:15'),
(4800, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5515997415726@s.whatsapp.net\",\"pushName\":\"Emanuel 5726 $40 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554796316561@s.whatsapp.net\",\"pushName\":\"Benedito Javaporco\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T11:30:18.157Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:30:18'),
(4801, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5515997415726@s.whatsapp.net\",\"pushName\":\"Emanuel 5726 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609467397_655985154209521_4482697053202613908_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEvzhOydYmWqyD1qzEM6eNsx0GPtjF4J5RAs9ujCOj6w&oe=699AF8C9&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554796316561@s.whatsapp.net\",\"pushName\":\"Benedito Javaporco\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401770_1272052867188129_8017786269010893694_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4FE1CAc5-TUpc4vJOURRX7-lSDeDX3IlG9uiNNvgSYg&oe=699B097E&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T11:30:18.476Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:30:18'),
(4802, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:17.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 11:32:23'),
(4803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JuSQ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:23'),
(4804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"UDcb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:23'),
(4805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:23'),
(4806, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:24'),
(4807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:24'),
(4808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:24'),
(4809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:24'),
(4810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:25'),
(4811, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:25'),
(4812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:25'),
(4813, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:25'),
(4814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:25'),
(4815, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:26'),
(4816, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:17.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 11:32:26'),
(4817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8+y3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:26'),
(4818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pZOW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:26'),
(4819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:26'),
(4820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"UDcb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:27');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4821, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkeiEgnJGUEL-pcMb3HlkSRsD9yAO03AOeZxKoBdqtYQ&oe=699B0A1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKxHnZajvvtrL5Dv4dzWVEQ0ToMquH-APewctm6hXSvA&oe=699B0FDB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wETLkGAnlW0zkeK6Iwfyb3zDvJRnnDdSEW05jJ83f_r7g&oe=699AF7A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_g0M093cAGZQeeIN1MlsPoCWd7VRSlWhtjgIDZD3I3g&oe=699AFC37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt4vRGfkaRtnx1qo2XIAaXzyCVBu9HmfVr32muIyy2MQ&oe=699B1068&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFtgEhE0yZn4O9KYIW_KCHC4-97cX8Larx2LiFFRZXig&oe=699AFA43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wG57I8pNRZs7zIEilb6asN2ZTVxjM8x22FUSY66xYVsaA&oe=699B0A38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWAZNwcVCKqBcPavg2zNbw9b4guVB_x9R7-ZXwWySW6w&oe=699B04CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDLAGv7yIOQDghSAOQZ80arU-VoXOe3UyDKC35W8QCKw&oe=699AF99A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJJXlqns2PLXNhuQFqzjYu-C7pWZf3RXYWKSPk7eV9hA&oe=699AFD36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjMBGG8_qq4XEVhPJN_4NA_wiABRKa2un7e9Iu3oBJsQ&oe=699B0E6F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2e68wMASsf1nRqPOOi-r77hPtA9L00HFLw_UEK1_xug&oe=699B0BCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbgeHfVt7hUYzbT3Dt1cWTuDvCrGYlGKTWvoW1RjaTMw&oe=699B10FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHchMKet1FhHrcWfZPUlfKBeihW6wKC9R5zwmTlmr_OOw&oe=699B0F95&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEYc7QP3n4oYXP3QZIyecFlCgoOEs8RImLDzeCaDDNqA&oe=699AF69A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmuybnz5LWPHqAoYliDDqE5KnS_q0ZEO2EyXr03aXI6Q&oe=699B0510&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOQVKLcZZal2SliwTZBznL6NkpAO85Gv452Yj5ASZhmQ&oe=699B0D7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJVkmak5SDTj1XtV7gZcFKr5IQqY4t7d-kxxbIaAnleA&oe=699B0945&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyJI66cHwSjyinJkkmEe11uo7ouoOfP6dxw9yg70eVfA&oe=699AF752&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHxMfhd4hb2-bKzBwJ25S32c-HFOLAfef_Iynk39GzUg&oe=699B0D15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2No9VNUQ17wi0j8eNzeWWspyDIs3gr2t2caTwMfJxuw&oe=699AF6F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wEadPou840NLnON1qbXwjp5PdlfXE0D09scTM7b8q3h6Q&oe=699B0AB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfnmu73Vjc7kcYrfxx838W_QCldL5BKrAbM-d53rCR8A&oe=699B01AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHpCBWeGaEltwC86913tYVuLcmqjlvx76FkpLS6myFPA&oe=699B00AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoymY92kycJnw_Mg2x9eQKdLvbsSaK4upbCfJ5VEnRWQ&oe=699B1215&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfJsCAvuXfJ-HNY4dQ8nQs-0sAacaj6URnJ7qK3sbxZg&oe=699B076E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wENYB2S1fRt7eQF_rUgFGcwYP_syNkEJ1fbignjpbQwlw&oe=699AFA18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8rvsnGEZZ6IjB5eE811hbCfH25apyNM-xTJ6JrbMnTQ&oe=699B0F13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkNj_tg6Ryki8Hby3SUx4pX0DdEHoop_O0ZaCuJ-zLUQ&oe=699AF939&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyponiRaL5GCTnp9bR-gHmkSVVSBvm0yTLOH-Ytozw1Q&oe=699AF961&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wH37CUdQ6sypdzYmqzRMxzZPZjKt-6EI4CkjgYgdo6MTw&oe=699B1138&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6GzU3c3cGOPadGl9Vm4saEJrHfWeXGsZyjE3jHBT6g&oe=699AF5F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wE094p6pooPkgXImOTeVZ_0TynvoirfDuzpAlQF8W1b3A&oe=699B04C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrDzXTPEWp_zNujgRWxGZoKCcWyyjVsHu7-kKyNmLjuQ&oe=699B0DCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZm7cN5INewG4NxK9YLE7P8TEE8I_n1DekBF5tZgaMXw&oe=699AFA52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNiE56pqs1sxepn3RRJG7MyqUITT3IypjYOKtreRjlgQ&oe=699B0BFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBTpJRmPlpcBUjq_krS1CaVg_I5suEmO3q5OvP0Zmy6w&oe=699B10D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8ru_P_sqbihk98LdNedO0n9xk0xmrAMEupl6tNP6OIg&oe=699AF484&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_p9STg6_hon2Nfs2eLRAGPTL-urXNVPGgERcPEWAwCw&oe=699AFBBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz7uraLyKKm3T-hsaz2rDBtakAqWaaeySUkzkbJatokA&oe=699AF6CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwqH18RN7UweXvssus6O3gsAUUlHaU6QUR_AmqehE_Kw&oe=699B0C35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIWVMQhRIixvkyvo6XZSxh0hnFPJUV9uj4itfHnbgx_A&oe=699B08FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBQxEXBO9lExE7z0xtfEw9X_YOG3C7e3xIAxAh4JRXZQ&oe=699B1007&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsAHV-MckU5Ci5h8ussRb7PMyLcxRzPNOACAgSSqlQhg&oe=699AFD67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9XkumUXnWvdGjL0d5MmZ6vTTElcNlgxYdUnTGiSVgnw&oe=699B001D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHph-mv6Ym6PvmkgntgCum4PiqOXN86ycSxg8D59AcDUw&oe=699B0807&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtYcTZRsK1L2av7_anoUYP9aits6Lge8srCx1wC81Ybw&oe=699B03A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOFfqtub_BjiLCfisOslUW_yTEf2JI1SR1V0eJIa51eA&oe=699B1051&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6TakgoY438fh4xa09NRvYf7cEbAImSBrMaVlCazyDLQ&oe=699B03F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvu2lhEAAAiLxZaULGrABht71nQNaUEJLfZqAe_oyT6A&oe=699B0B17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH5fat9ruEX8WIzyc3OUB7EZEspe_AYtwQmPoEM_gSQ&oe=699AFA7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4NP2rtjfTvq-iQCt8yGDW8V2U80K3TgFMCk4gReqN3A&oe=699B026E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDkOODS4zN1AV2P5I_ZEVXfupimRnsJEI_ZdZGfVVlmw&oe=699B0747&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz2ZkYSTsI9Dpu9BwnnuhKuHwoBC-fOU2j7kVwtIbLcQ&oe=699B0420&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdFmepBkK6sGlN7Fy1on4U1JZIWTdTQZSqI-FMQ7DoAg&oe=699AF94B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wERK1LjGGF4DaL3b-D-xtzRzMSnKoiprOInSR_K1VGwAg&oe=699B07E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUnqVsgVmpwKi1I9onDeTgDdiVMdgvmGlqVHJuEGA37Q&oe=699B1063&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFya49uSglntsUbDoY_K7XfeG3XeUPyoPjGZxN-94T-xw&oe=699AEBB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 1, '2026-02-12 11:32:27');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"UDcb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:27'),
(4823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:27'),
(4824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:27'),
(4825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:27'),
(4826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pZOW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:27'),
(4827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"UDcb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:28'),
(4828, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:28'),
(4829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:28'),
(4830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:28'),
(4831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:28'),
(4832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"XAc\\/\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:29'),
(4833, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7Quj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:29'),
(4834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:29'),
(4835, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"zfgY\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:29'),
(4836, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:29'),
(4837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Ym2A\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:30'),
(4838, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eJmw\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:30'),
(4839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pkhS\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:30'),
(4840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8yr2\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:30'),
(4841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"L4gY\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:30'),
(4842, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:31'),
(4843, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:31'),
(4844, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:31'),
(4845, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JuSQ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:31'),
(4846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:31'),
(4847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:32'),
(4848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:32'),
(4849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:32'),
(4850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:32'),
(4851, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:32'),
(4852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8yr2\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:33'),
(4853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8+y3\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:33'),
(4854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Ym2A\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:33'),
(4855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:33'),
(4856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:33'),
(4857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:34'),
(4858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eJmw\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:34'),
(4859, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:34'),
(4860, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:34'),
(4861, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:34'),
(4862, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:35'),
(4863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:35'),
(4864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:35'),
(4865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:35'),
(4866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:35'),
(4867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:36'),
(4868, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"GLFh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:36'),
(4869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:36'),
(4870, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:25.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 11:32:36'),
(4871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:36'),
(4872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:37'),
(4873, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:37'),
(4874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:37'),
(4875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4876, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkeiEgnJGUEL-pcMb3HlkSRsD9yAO03AOeZxKoBdqtYQ&oe=699B0A1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKxHnZajvvtrL5Dv4dzWVEQ0ToMquH-APewctm6hXSvA&oe=699B0FDB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wETLkGAnlW0zkeK6Iwfyb3zDvJRnnDdSEW05jJ83f_r7g&oe=699AF7A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0xzsDsObgj0vPp2VneOM62kNG0D7q9Nl7m104R0IMtg&oe=699AF1D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_g0M093cAGZQeeIN1MlsPoCWd7VRSlWhtjgIDZD3I3g&oe=699AFC37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt4vRGfkaRtnx1qo2XIAaXzyCVBu9HmfVr32muIyy2MQ&oe=699B1068&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wExZOqICAt9OBqbYv0UQ1Yi4R4xCbG-PGe6xyaUtVWuaw&oe=699AE0C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFtgEhE0yZn4O9KYIW_KCHC4-97cX8Larx2LiFFRZXig&oe=699AFA43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8yphcDoQ1d0K-AXTIG1CTxrhsPoIscTI05ZfW2fXU9A&oe=699AE11C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDSu6XsnhR7pdorKkc34Zb9bcqRca_W1rT-WY_7znXzw&oe=699AF155&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5ikY9bpJq3BmcnfjIAtG7QI8f6m5cGbSB3sevcj6T2w&oe=699ADF55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa2bx2RQILL5s9b6Tlvl0NQar6EeK1mD3e6jQxwg2v5w&oe=699AECD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9_aUSDMZ84Kt2N3dOhXoJsWuRdVJvtwoqR79jaJnKNw&oe=699AE78B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPdI0Vy8q1SYavASQm-SGowRtEYnY9YKwVKTjWadh7Rg&oe=699AEA86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDVhJ7zhY1AzZoUsfG5TrkLaJepjLAJCphdSsEtnjwDA&oe=699AE822&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSe4Y1jBhdJviACro5vjcunRpuwGqpNhl5Ad5poJ0pNA&oe=699AEC8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWFnmjOmjyoTvQvoVDQHuguswts2819scAj1f050BSig&oe=699AE53B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF-A_ojYFV36gxZmjFMRC3ls_eOmcnGTLfaFyw9SVvw&oe=699AE6DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wG57I8pNRZs7zIEilb6asN2ZTVxjM8x22FUSY66xYVsaA&oe=699B0A38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT-o5kljGcUYoiPL11uLALM44bGK7ANtXsvtP8lPQ-4Q&oe=699AE649&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWAZNwcVCKqBcPavg2zNbw9b4guVB_x9R7-ZXwWySW6w&oe=699B04CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI0SxubA73vu7NmIsAaI6OPwz_VOj0oVAyR5v8kYVakg&oe=699AE658&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdPnYzwk2f3mi_Ydgd53ujc9qhx_I5JvoH9ZXn3pjofw&oe=699ADAD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDLAGv7yIOQDghSAOQZ80arU-VoXOe3UyDKC35W8QCKw&oe=699AF99A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJJXlqns2PLXNhuQFqzjYu-C7pWZf3RXYWKSPk7eV9hA&oe=699AFD36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjMBGG8_qq4XEVhPJN_4NA_wiABRKa2un7e9Iu3oBJsQ&oe=699B0E6F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe2XwjGXa732b7-OW0jKQGUryKlelNervmvnIDmEa1TA&oe=699ADCAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2e68wMASsf1nRqPOOi-r77hPtA9L00HFLw_UEK1_xug&oe=699B0BCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wES3TC51hsMlRQl0LVxLOqF7nlUaWWQtcLnDRCWtOS-Hw&oe=699AE9A3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbgeHfVt7hUYzbT3Dt1cWTuDvCrGYlGKTWvoW1RjaTMw&oe=699B10FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlvV3-DNlB0qE09xJtGRBsji6M0M8uBtvjvjzzPhZ9cQ&oe=699AF202&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHchMKet1FhHrcWfZPUlfKBeihW6wKC9R5zwmTlmr_OOw&oe=699B0F95&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIxigiHEieWL24BDWoZfT-0InXdIqztV1Bdl0iBboLAQ&oe=699ADF0C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEYc7QP3n4oYXP3QZIyecFlCgoOEs8RImLDzeCaDDNqA&oe=699AF69A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHdJJo9yNkW-OKNjv-u1QO_ORzBRI_tsbPVD6himiuGg&oe=699AE86F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXDtB8hHOGf45MHSOi3ECKkOHxxs8XjgR3D4Hz5GeGhQ&oe=699AECA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmuybnz5LWPHqAoYliDDqE5KnS_q0ZEO2EyXr03aXI6Q&oe=699B0510&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbvl5-VoTNBooHJj5sMuc3E-tR0UbB_QM1QCKK0TxRA&oe=699ADAEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOQVKLcZZal2SliwTZBznL6NkpAO85Gv452Yj5ASZhmQ&oe=699B0D7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wF24zwsdcv5jRWVHZvNhlIixjX8kaWq4WOghTKtRV6UfQ&oe=699ADEA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wECmxyDJaoK4JcaMJtAYK5nEj89io4MDFSvXTDFrs4PHg&oe=699AE22B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrLUd9U6D6Owadet0ACXDzBkHSjVN2JmzNpsa4f66hlA&oe=699AEB64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJVkmak5SDTj1XtV7gZcFKr5IQqY4t7d-kxxbIaAnleA&oe=699B0945&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw51iuym8f-PIml4oo7Rp39Eip-tc5ss7V9dPVN6QahQ&oe=699ADEED&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyJI66cHwSjyinJkkmEe11uo7ouoOfP6dxw9yg70eVfA&oe=699AF752&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHxMfhd4hb2-bKzBwJ25S32c-HFOLAfef_Iynk39GzUg&oe=699B0D15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5i_zCveWQjVhLKVQH8XV7aTi3CM5U5HG24z3bb_poAA&oe=699AF0D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2No9VNUQ17wi0j8eNzeWWspyDIs3gr2t2caTwMfJxuw&oe=699AF6F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wEadPou840NLnON1qbXwjp5PdlfXE0D09scTM7b8q3h6Q&oe=699B0AB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH49WoyAZ3bqKIGQP-zp7WZN4o1cUA5u7RTNuyBAzFVgQ&oe=699AEAC2&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGteCcDUQmz11DZZLUsGMmEqddrao7opKiSgB8mNh6pRA&oe=699ADAE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ1ZG4-fjDZomiBTi6dv8al3urY2uOv59cTl9N1Xgwkg&oe=699AE04A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeFzKosaSTHWFvvuqk2Qph-WVM63NPZ1UOr-aSsZU4ng&oe=699AE0BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfnmu73Vjc7kcYrfxx838W_QCldL5BKrAbM-d53rCR8A&oe=699B01AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHpCBWeGaEltwC86913tYVuLcmqjlvx76FkpLS6myFPA&oe=699B00AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoymY92kycJnw_Mg2x9eQKdLvbsSaK4upbCfJ5VEnRWQ&oe=699B1215&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfJsCAvuXfJ-HNY4dQ8nQs-0sAacaj6URnJ7qK3sbxZg&oe=699B076E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wENYB2S1fRt7eQF_rUgFGcwYP_syNkEJ1fbignjpbQwlw&oe=699AFA18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8rvsnGEZZ6IjB5eE811hbCfH25apyNM-xTJ6JrbMnTQ&oe=699B0F13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkNj_tg6Ryki8Hby3SUx4pX0DdEHoop_O0ZaCuJ-zLUQ&oe=699AF939&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu5LtnB_AgaTMGIy1YHl9CpluWPCzuq3l1nLq_aOouAg&oe=699AEBC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyponiRaL5GCTnp9bR-gHmkSVVSBvm0yTLOH-Ytozw1Q&oe=699AF961&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wH37CUdQ6sypdzYmqzRMxzZPZjKt-6EI4CkjgYgdo6MTw&oe=699B1138&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6GzU3c3cGOPadGl9Vm4saEJrHfWeXGsZyjE3jHBT6g&oe=699AF5F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wE094p6pooPkgXImOTeVZ_0TynvoirfDuzpAlQF8W1b3A&oe=699B04C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1y0umxyiRZZPwtFjKqwKw_-spoxnvrc4vB2M14Jm3XA&oe=699AF18F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDSHsL39RK6dAqlqniRjXv2i9z7a8VXp3SR6Vk_DFXug&oe=699AE4BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbbmwrzemvCvH6ERo4o83axjLga8A7SFZyH0rMNjdyWA&oe=699AE842&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrDzXTPEWp_zNujgRWxGZoKCcWyyjVsHu7-kKyNmLjuQ&oe=699B0DCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLUV3ND3vsgdK-EFukXaIt8r5oKDfC_QEPqyAxLRE1HA&oe=699ADC74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZm7cN5INewG4NxK9YLE7P8TEE8I_n1DekBF5tZgaMXw&oe=699AFA52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEl24lT2YfQR33CoOW-eDi4GDeHEynxgKv6_Y3wUG8bQ&oe=699AED90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3_wfv83HEoK9nOUqq4h6jaHBqZ4S_YPedTPhS8ZnLMw&oe=699AE17C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUAvtwAArnw0mpA-RNQ71S2yCwfAWAa7GOKPXKcmajww&oe=699AE4B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFweKoIG51g0L-LGvXSG2cw0TS8gdU60aMXh8nbhRb9eA&oe=699ADF2F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNiE56pqs1sxepn3RRJG7MyqUITT3IypjYOKtreRjlgQ&oe=699B0BFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5QnEVyGjthaPX3uR4DBX6CiCGHzgzYFA9uaUnjmOUsw&oe=699AED5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBTpJRmPlpcBUjq_krS1CaVg_I5suEmO3q5OvP0Zmy6w&oe=699B10D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8ru_P_sqbihk98LdNedO0n9xk0xmrAMEupl6tNP6OIg&oe=699AF484&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUPtcUFKvgLfa2yJafKwMeD-6sJa6QH3zU0kNIbLlhXw&oe=699ADFAE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_p9STg6_hon2Nfs2eLRAGPTL-urXNVPGgERcPEWAwCw&oe=699AFBBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDJStpu_L1FsRFyl7wofL687u-Qa4dp2ceCkuSEGZmNw&oe=699AE9D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz7uraLyKKm3T-hsaz2rDBtakAqWaaeySUkzkbJatokA&oe=699AF6CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwqH18RN7UweXvssus6O3gsAUUlHaU6QUR_AmqehE_Kw&oe=699B0C35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDlM_n76hOC0r-C5PIwfPpK2A6sAs1EGxkGVxc7SdPYw&oe=699AE184&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4okbfoo4Rgec3X0EB2o4WO_WzVSShFa7uCZn11E9emw&oe=699AED3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDjwficMA_NMgwwaO2TMSc6XrA3GnzfHxhZ3JBzBUg3w&oe=699AF165&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIWVMQhRIixvkyvo6XZSxh0hnFPJUV9uj4itfHnbgx_A&oe=699B08FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDilkVtzWQNWMeTw7DO2kBwPuq1yQUIdbQrdGhWut3fw&oe=699AEE02&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhtO0FD0XqvCzZo5rRZRz8n1fyBNjmRvnraxwZtJTBDA&oe=699ADCA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBQxEXBO9lExE7z0xtfEw9X_YOG3C7e3xIAxAh4JRXZQ&oe=699B1007&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsAHV-MckU5Ci5h8ussRb7PMyLcxRzPNOACAgSSqlQhg&oe=699AFD67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wFj7WW01OIvyqQzDsYQPbijjlTkogLVxgmkwPD-ScvfSQ&oe=699AE880&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9XkumUXnWvdGjL0d5MmZ6vTTElcNlgxYdUnTGiSVgnw&oe=699B001D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHph-mv6Ym6PvmkgntgCum4PiqOXN86ycSxg8D59AcDUw&oe=699B0807&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtYcTZRsK1L2av7_anoUYP9aits6Lge8srCx1wC81Ybw&oe=699B03A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJTz3ncN_77ILqY6Xe9I68cRJ3owFUi13pCbYxGi3c3A&oe=699ADBC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOFfqtub_BjiLCfisOslUW_yTEf2JI1SR1V0eJIa51eA&oe=699B1051&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnxMqclqY3dTrEnwnrDayMp0sGUuGn1GsMBCdI7o5Azg&oe=699AE9DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6TakgoY438fh4xa09NRvYf7cEbAImSBrMaVlCazyDLQ&oe=699B03F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIcmb4bTzW2rmRe8-B3bm3SwuRmPk6Gr-mP_hXlwRopA&oe=699AE814&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvu2lhEAAAiLxZaULGrABht71nQNaUEJLfZqAe_oyT6A&oe=699B0B17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH5fat9ruEX8WIzyc3OUB7EZEspe_AYtwQmPoEM_gSQ&oe=699AFA7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4NP2rtjfTvq-iQCt8yGDW8V2U80K3TgFMCk4gReqN3A&oe=699B026E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWzCX2baOZWLVrO2Nk5CX2dAoS1bgvbT0thbPbN7MI8Q&oe=699AE59A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF_WFc1RnyYc4ddDqVNqAag6pQNGkrC3XKf_SnJJnJmw&oe=699AE276&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRQbKeA4uI5MS48DkFVvgwdtM1ZViAGlZ9__tn9dwThQ&oe=699AEA9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDkOODS4zN1AV2P5I_ZEVXfupimRnsJEI_ZdZGfVVlmw&oe=699B0747&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGr-hd-iHvkgwmzz0hfXkwZFMDAmLY6EX99kzMf_opR9g&oe=699AE44E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-YHhoZHsSsqYydlvByAP7KolxM7mfPb4yw2E1r9EgnA&oe=699AE8F7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz2ZkYSTsI9Dpu9BwnnuhKuHwoBC-fOU2j7kVwtIbLcQ&oe=699B0420&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdFmepBkK6sGlN7Fy1on4U1JZIWTdTQZSqI-FMQ7DoAg&oe=699AF94B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wERK1LjGGF4DaL3b-D-xtzRzMSnKoiprOInSR_K1VGwAg&oe=699B07E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHZyC3iD_jfAVewP1ZmltzixezaGWkvmzCR-jmDRQbNw&oe=699ADC52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI5aYUSt-mllEnvoeI8hWyegPD8C28EaNTBxNstQQ-Ig&oe=699ADC65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQrCW1uovpoL-rczpptba6bl2PpBCeTmPEdSz87LF7Ew&oe=699AEB45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUnqVsgVmpwKi1I9onDeTgDdiVMdgvmGlqVHJuEGA37Q&oe=699B1063&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFya49uSglntsUbDoY_K7XfeG3XeUPyoPjGZxN-94T-xw&oe=699AEBB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 1, '2026-02-12 11:32:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4877, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pkhS\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:38'),
(4878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:38'),
(4879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JFav\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:38'),
(4880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:38'),
(4881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:38'),
(4882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JFav\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:39'),
(4883, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"DXcJ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:39'),
(4884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:39'),
(4885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:39'),
(4886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"L4gY\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:39'),
(4887, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:25.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 11:32:40'),
(4888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:40'),
(4889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"DXcJ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:40'),
(4890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:40'),
(4891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7Quj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:40'),
(4892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:41'),
(4893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:41'),
(4894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:41'),
(4895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:41'),
(4896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:41'),
(4897, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:42'),
(4898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"zfgY\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:42'),
(4899, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:42'),
(4900, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"GLFh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:42'),
(4901, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:42'),
(4902, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:43'),
(4903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:43'),
(4904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:43'),
(4905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"XAc\\/\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:18.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:43'),
(4906, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:23.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 11:32:43'),
(4907, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:23.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:44'),
(4908, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906778323,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:58.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:32:58'),
(4909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A558818B32326E3DF46B2267D5BE524E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770906778323,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:32:58.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:32:58'),
(4910, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACBCB3BD76AA146B233A8CC2FDB978F5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770906823789,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:33:43.790Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:33:43'),
(4911, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACEF52FF15E9290DFB58B7B72F69E329\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770906823804,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:33:43.805Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:33:43'),
(4912, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACEF52FF15E9290DFB58B7B72F69E329\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770906823795,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:33:43.796Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:33:44'),
(4913, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"ACBCB3BD76AA146B233A8CC2FDB978F5\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770906833056,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:33:53.056Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:33:53'),
(4914, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T11:34:16.674Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:34:16'),
(4915, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"273426342236368@lid\",\"fromMe\":false,\"id\":\"A5F08594565474A50A55DC5C6C71C379\"},\"pushName\":\"Filipi Pinotti\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634189903_935551802143061_8174185737570174681_n.enc?ccb=11-4&oh=01_Q5Aa3wFFraHz273JTEqtqJ9MwrYer6Kg6qCyN2srZ3IFsTS_UQ&oe=69B57027&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lZnOOa52dwKFbIvs7lvCBjUU+yTHvVTFnF53AOacOCU=\",\"fileLength\":\"5718\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"9uq8ynJMtHMuChD5RBUiWLnLjOMdXt6Zg3s1lmdimCw=\",\"fileEncSha256\":\"T3icXCD\\/6QaESHvuPCNxCnl5IeBcrWvsvvNU9u7qygs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634189903_935551802143061_8174185737570174681_n.enc?ccb=11-4&oh=01_Q5Aa3wFFraHz273JTEqtqJ9MwrYer6Kg6qCyN2srZ3IFsTS_UQ&oe=69B57027&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770906854\",\"waveform\":\"Ex4vRltjY2NjYmJiYmFdXGFhX1xcWVhfXlpUVVVNWGBjWlpiYllRXGBfX1lYX2FhX19ZUFpeX2BbVVhOSlNbYA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"21K4BueWCtBMGk7F3ZevDPi\\/PltOTFn5vJxkc1PcbKQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770906856,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T11:34:16.675Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:34:16'),
(4916, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"273426342236368@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wELsuyCUnsodBvzXK9xUokIg1-Wc8YOw2OVdpxtagANlg&oe=699AF3AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T11:34:16.980Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:34:17'),
(4917, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"273426342236368@lid\",\"pushName\":\"Filipi Pinotti\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594559816_922104210358376_9064948034236797227_n.jpg?ccb=11-4&oh=01_Q5Aa3wELsuyCUnsodBvzXK9xUokIg1-Wc8YOw2OVdpxtagANlg&oe=699AF3AF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T11:34:16.830Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:34:17'),
(4918, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:40:59.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:41:00'),
(4919, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:40:59.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:41:00'),
(4920, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:58.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:41:58'),
(4921, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A05FA67EBA680052D43\"},\"pushName\":\"Clovis Faria\",\"message\":{\"conversation\":\"Blz 👍🏾\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770896514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vo9ZRdV4NjW94oTFbapIUlZcPr9XHuA0qFbvp9Ie0so=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770907318,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:58.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:41:58'),
(4922, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:58.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:41:59'),
(4923, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A05FA67EBA680052D43\"},\"pushName\":\"Clovis Faria\",\"message\":{\"conversation\":\"Blz 👍🏾\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770896514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vo9ZRdV4NjW94oTFbapIUlZcPr9XHuA0qFbvp9Ie0so=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770907318,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:58.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:41:59'),
(4924, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:58.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:41:59'),
(4925, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:58.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:41:59'),
(4926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997393627@s.whatsapp.net\",\"pushName\":\"Clovis Faria $35 Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:59.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 11:41:59'),
(4927, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997393627@s.whatsapp.net\",\"pushName\":\"Clovis Faria $35 Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAcIisk2XgbTwVI0byZ4It-sNy7tWtzL12kCIzLr264Q&oe=699ADDBC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T11:41:59.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 11:41:59'),
(4928, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770909418648,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:16:58.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:16:59'),
(4929, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770909418634,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:16:58.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:16:59'),
(4930, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770909418643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:16:58.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:16:59'),
(4931, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770909418643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:16:58.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:16:59'),
(4932, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770909418634,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:16:58.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:16:59'),
(4933, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770909418648,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:16:58.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:16:59'),
(4934, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"273426342236368@lid\",\"id\":\"A5F08594565474A50A55DC5C6C71C379\",\"fromMe\":false,\"status\":\"PLAYED\",\"datetime\":1770909480290,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T12:18:00.290Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:18:00'),
(4935, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"ACB9FFF45997271315308E8F684905BE\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635036700_898851923076675_2295796154462413091_n.enc?ccb=11-4&oh=01_Q5Aa3wHC4pQcMl0rooxH-Oh0zaFg3ejfwl7Xy2AQ42dnBtkOew&oe=69B57164&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"K\\/WvM3UkZz0JGf6iAlagBnMHZAqFR0YhkhRsv52HZ6A=\",\"fileLength\":\"77483\",\"seconds\":36,\"ptt\":true,\"mediaKey\":\"iIz1O2AtgSnvCv+PMl5+AGkB\\/BlVTHKXVB0O+4VcBgI=\",\"fileEncSha256\":\"PINoxfOEPQcZakPnFn04+k\\/aUB8DKaMNLmBrdOg+9Bs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635036700_898851923076675_2295796154462413091_n.enc?ccb=11-4&oh=01_Q5Aa3wHC4pQcMl0rooxH-Oh0zaFg3ejfwl7Xy2AQ42dnBtkOew&oe=69B57164&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770909926\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":38},\"waveform\":\"AFljX1RGOFMyPSIAAE5EQVMnODtgAABGUQAAQEsAAABXYWIAJGBFGE4AGFNaOz1ROkxLOkVXNSIAAEs1TVBLIQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dnbx9RO7hBNIslot+qtk7PHXgtj0Wzj1OI47uSnW1c4=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":38},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770909961,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:01.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:26:02'),
(4936, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:01.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:26:02'),
(4937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:01.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:26:02'),
(4938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"ACB9FFF45997271315308E8F684905BE\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635036700_898851923076675_2295796154462413091_n.enc?ccb=11-4&oh=01_Q5Aa3wHC4pQcMl0rooxH-Oh0zaFg3ejfwl7Xy2AQ42dnBtkOew&oe=69B57164&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"K\\/WvM3UkZz0JGf6iAlagBnMHZAqFR0YhkhRsv52HZ6A=\",\"fileLength\":\"77483\",\"seconds\":36,\"ptt\":true,\"mediaKey\":\"iIz1O2AtgSnvCv+PMl5+AGkB\\/BlVTHKXVB0O+4VcBgI=\",\"fileEncSha256\":\"PINoxfOEPQcZakPnFn04+k\\/aUB8DKaMNLmBrdOg+9Bs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635036700_898851923076675_2295796154462413091_n.enc?ccb=11-4&oh=01_Q5Aa3wHC4pQcMl0rooxH-Oh0zaFg3ejfwl7Xy2AQ42dnBtkOew&oe=69B57164&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770909926\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":38},\"waveform\":\"AFljX1RGOFMyPSIAAE5EQVMnODtgAABGUQAAQEsAAABXYWIAJGBFGE4AGFNaOz1ROkxLOkVXNSIAAEs1TVBLIQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dnbx9RO7hBNIslot+qtk7PHXgtj0Wzj1OI47uSnW1c4=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":38},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770909961,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:01.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:26:02'),
(4939, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"pushName\":\"Rodrigo Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wGezhJs3gWoz1fwfnmMOm2ljY-eeq7GuyM4PrASUg9A9g&oe=699AF108&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:02.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:26:02'),
(4940, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"pushName\":\"Rodrigo Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wGezhJs3gWoz1fwfnmMOm2ljY-eeq7GuyM4PrASUg9A9g&oe=699AF108&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:02.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:26:02'),
(4941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wGezhJs3gWoz1fwfnmMOm2ljY-eeq7GuyM4PrASUg9A9g&oe=699AF108&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:02.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:26:02'),
(4942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wGezhJs3gWoz1fwfnmMOm2ljY-eeq7GuyM4PrASUg9A9g&oe=699AF108&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:26:02.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:26:02'),
(4943, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB039158518CBDC1044A5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Lembrete de Pagamento*\\n\\nOlá carol!\\n\\nSeu pagamento de *R$ 100,00* vence em *26\\/01\\/2026*.\\n\\n📱 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela preferência!_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770910221,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:30:21.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:30:22'),
(4944, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB039158518CBDC1044A5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Lembrete de Pagamento*\\n\\nOlá carol!\\n\\nSeu pagamento de *R$ 100,00* vence em *26\\/01\\/2026*.\\n\\n📱 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela preferência!_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770910221,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:30:21.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:30:22'),
(4945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB039158518CBDC1044A5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910222505,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:30:22.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:30:22'),
(4946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB039158518CBDC1044A5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910222505,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:30:22.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:30:22'),
(4947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB039158518CBDC1044A5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770910276400,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:16.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:31:16'),
(4948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB039158518CBDC1044A5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770910276400,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:16.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:31:16'),
(4949, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:53.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:31:54'),
(4950, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FB1D0F57DBF34596F7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770910313,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:53.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:31:54'),
(4951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:53.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:31:54'),
(4952, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FB1D0F57DBF34596F7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770910313,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:53.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:31:54'),
(4953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0FB1D0F57DBF34596F7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910314024,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:54.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:31:54'),
(4954, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:54.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:31:54'),
(4955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0FB1D0F57DBF34596F7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910314024,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:54.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:31:55'),
(4956, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:31:54.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:31:55'),
(4957, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0FB1D0F57DBF34596F7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770910367191,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:32:47.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:32:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(4958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0FB1D0F57DBF34596F7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770910367191,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:32:47.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:32:47'),
(4959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:16.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:16'),
(4960, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:16.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:16'),
(4961, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:16.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:16'),
(4962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:16.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:16'),
(4963, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:16.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:17'),
(4964, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:18'),
(4965, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:18'),
(4966, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:16.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:18'),
(4967, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:18'),
(4968, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A52EF238915D5137F79C6E47777B4013\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":62352},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V10gjo5fLeIGymgVFhUxN7vP3tPMLDb980E69udDVig=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":62352},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770910397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:18'),
(4969, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A52EF238915D5137F79C6E47777B4013\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":62352},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V10gjo5fLeIGymgVFhUxN7vP3tPMLDb980E69udDVig=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":62352},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770910397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:19'),
(4970, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:19'),
(4971, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:33:19'),
(4972, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVKH93QamIJ4dIEbnM41RjVUKWcmQmjw5dmxqNyMF4YQ&oe=699AEF32&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:33:17.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:33:19'),
(4973, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:40:33.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:40:34'),
(4974, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:40:33.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:34'),
(4975, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D62E46A958E5CC6777\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Lembrete de Pagamento*\\n\\nOlá jou!\\n\\nSeu pagamento de *R$ 40,00* vence em *26\\/01\\/2026*.\\n\\n📱 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela preferência!_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770910834,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:40:34.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:40:34'),
(4976, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D62E46A958E5CC6777\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Lembrete de Pagamento*\\n\\nOlá jou!\\n\\nSeu pagamento de *R$ 40,00* vence em *26\\/01\\/2026*.\\n\\n📱 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela preferência!_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770910834,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:40:34.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:35'),
(4977, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T12:40:35.226Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:35'),
(4978, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T12:40:35.112Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:35'),
(4979, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwXkqYi2vzplaX8tTQ6ht4rd1Vx5xtMhdAPeU6kU08tw&oe=699B0DD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T12:40:35.388Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:35'),
(4980, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB0D62E46A958E5CC6777\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Lembrete de Pagamento*\\n\\nOlá jou!\\n\\nSeu pagamento de *R$ 40,00* vence em *26\\/01\\/2026*.\\n\\n📱 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela preferência!_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770910834,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T12:40:35.227Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:35'),
(4981, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwXkqYi2vzplaX8tTQ6ht4rd1Vx5xtMhdAPeU6kU08tw&oe=699B0DD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T12:40:35.381Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:35'),
(4982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0D62E46A958E5CC6777\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910836436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:40:36.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:40:36'),
(4983, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0D62E46A958E5CC6777\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910836436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:40:36.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:40:36'),
(4984, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T12:42:28.362Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:28'),
(4985, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T12:42:28.819Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:28'),
(4986, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwXkqYi2vzplaX8tTQ6ht4rd1Vx5xtMhdAPeU6kU08tw&oe=699B0DD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T12:42:28.983Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:29'),
(4987, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB0111D7FD3CC9AF2A1F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Kcx0tqOBZ0OJo5Xm2naTxNzJoYvBUyLR0JjicjDDXSg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770910948,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T12:42:28.825Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:29'),
(4988, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwXkqYi2vzplaX8tTQ6ht4rd1Vx5xtMhdAPeU6kU08tw&oe=699B0DD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T12:42:29.132Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:29'),
(4989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:28.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:42:29'),
(4990, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0111D7FD3CC9AF2A1F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770910948,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:28.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:42:29'),
(4991, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:28.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:29'),
(4992, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0111D7FD3CC9AF2A1F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770910948,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:28.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:29'),
(4993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791063914@s.whatsapp.net\",\"pushName\":\"Jou Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYV7-f1tg327rkorn5TgOEuan0Khg93bYRmYICGrZAlw&oe=699B23C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:29.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:42:29'),
(4994, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0111D7FD3CC9AF2A1F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910949625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:29.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:42:30'),
(4995, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791063914@s.whatsapp.net\",\"pushName\":\"Jou Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYV7-f1tg327rkorn5TgOEuan0Khg93bYRmYICGrZAlw&oe=699B23C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:29.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:30'),
(4996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0111D7FD3CC9AF2A1F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770910949625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:42:29.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:42:30'),
(4997, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BFB52C327C4B48CA9A4D372E967C0B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770911464792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:51:04.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:51:05'),
(4998, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BE63421361A8E17060630F4A91D17B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770911464802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:51:04.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 12:51:05'),
(4999, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BE63421361A8E17060630F4A91D17B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770911464802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:51:04.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:51:05'),
(5000, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A5BFB52C327C4B48CA9A4D372E967C0B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770911464792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T12:51:04.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 12:51:05'),
(5001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129476117712909@lid\",\"fromMe\":false,\"id\":\"AC5D0C9EA355B2FE1147CC9C7630C9D2\"},\"pushName\":\"Marcos\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP5my25UkNtDQVH7eDglyacrLNaTFO7FnccqT64410McwczffeaQl488p8Qm_6J_EdPZ0EA_8jkPSJBt61HJepZEFDpk2WFQIvjCNyKpA?ccb=9-4&oh=01_Q5Aa3wG-6fNAi1e-19nrxxgHuCPbNuubadL479ddD1F3qYXhrA&oe=69B56583&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"WLMGRMOPT91cWDAhZHDWFQGl\\/0OQMc8\\/8mzqBfP\\/PvI=\",\"fileLength\":\"35558\",\"height\":1280,\"width\":299,\"mediaKey\":\"1mh59ovJeodNA+lzKl767pITqWvwvoFDCfbFbF0cRWg=\",\"fileEncSha256\":\"C1VWBZtJ7zSVi9JgWkI93603Enj9I9xl18uOEszR\\/WQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP5my25UkNtDQVH7eDglyacrLNaTFO7FnccqT64410McwczffeaQl488p8Qm_6J_EdPZ0EA_8jkPSJBt61HJepZEFDpk2WFQIvjCNyKpA?ccb=9-4&oh=01_Q5Aa3wG-6fNAi1e-19nrxxgHuCPbNuubadL479ddD1F3qYXhrA&oe=69B56583&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770912078\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAEAMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQbAKaZlbDN82wqA\\/\\/EAB4QAAICAgMBAQAAAAAAAAAAAAERAAISIQMQMTJB\\/9oACAEBAAE\\/AKclWRuCaPVTUtew6KylFuanGLbcX4J50GGoDY\\/SmdmsCozCUQMYDP\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQIBAT8AP\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQMBAT8AP\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"yaCDjzfceb3c3GTKbqaao9sFpF8KRr2pITgv\\/AzvWdPQqLZLojGy8Q==\",\"scanLengths\":[2480,15042,8357,9679],\"midQualityFileSha256\":\"yil1C8dt5CGSmaIY4+No6qsoaFq6DPqK29wL14smBkc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4xvvgLRfp0ta1LiNJ8FPXLcZI+Vt5fSi+kEQdFs+d4o=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770912091,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:01:31'),
(5002, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:01:31'),
(5003, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:01:31'),
(5004, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129476117712909@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:01:31'),
(5005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129476117712909@lid\",\"fromMe\":false,\"id\":\"AC5D0C9EA355B2FE1147CC9C7630C9D2\"},\"pushName\":\"Marcos\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP5my25UkNtDQVH7eDglyacrLNaTFO7FnccqT64410McwczffeaQl488p8Qm_6J_EdPZ0EA_8jkPSJBt61HJepZEFDpk2WFQIvjCNyKpA?ccb=9-4&oh=01_Q5Aa3wG-6fNAi1e-19nrxxgHuCPbNuubadL479ddD1F3qYXhrA&oe=69B56583&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"WLMGRMOPT91cWDAhZHDWFQGl\\/0OQMc8\\/8mzqBfP\\/PvI=\",\"fileLength\":\"35558\",\"height\":1280,\"width\":299,\"mediaKey\":\"1mh59ovJeodNA+lzKl767pITqWvwvoFDCfbFbF0cRWg=\",\"fileEncSha256\":\"C1VWBZtJ7zSVi9JgWkI93603Enj9I9xl18uOEszR\\/WQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP5my25UkNtDQVH7eDglyacrLNaTFO7FnccqT64410McwczffeaQl488p8Qm_6J_EdPZ0EA_8jkPSJBt61HJepZEFDpk2WFQIvjCNyKpA?ccb=9-4&oh=01_Q5Aa3wG-6fNAi1e-19nrxxgHuCPbNuubadL479ddD1F3qYXhrA&oe=69B56583&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770912078\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAEAMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQbAKaZlbDN82wqA\\/\\/EAB4QAAICAgMBAQAAAAAAAAAAAAERAAISIQMQMTJB\\/9oACAEBAAE\\/AKclWRuCaPVTUtew6KylFuanGLbcX4J50GGoDY\\/SmdmsCozCUQMYDP\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQIBAT8AP\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQMBAT8AP\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"yaCDjzfceb3c3GTKbqaao9sFpF8KRr2pITgv\\/AzvWdPQqLZLojGy8Q==\",\"scanLengths\":[2480,15042,8357,9679],\"midQualityFileSha256\":\"yil1C8dt5CGSmaIY4+No6qsoaFq6DPqK29wL14smBkc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4xvvgLRfp0ta1LiNJ8FPXLcZI+Vt5fSi+kEQdFs+d4o=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770912091,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:01:31'),
(5006, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:01:31'),
(5007, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:01:32'),
(5008, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129476117712909@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:01:32'),
(5009, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:01:32'),
(5010, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:01:31.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:01:32'),
(5011, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770912541652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:01.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:02'),
(5012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586632019_882773101188930_1243170352736288870_n.enc?ccb=11-4&oh=01_Q5Aa3wFgp6u94aLF3xym2Ke2E2kFe7VYUjbNqh3kpWVGrlxHiw&oe=69B58684&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IckKWtfoQt1OMbk+8BIX4tKl+AyPaCy7Yk0ekz0SgDo=\",\"fileLength\":\"112518\",\"seconds\":48,\"ptt\":true,\"mediaKey\":\"d1SO2cIgyFljkAMkTVCD39JLgbPP0irprzJB6XgQDEg=\",\"fileEncSha256\":\"42Mg+E4YnzKy8iDza1MrPOa4wHcxg16Do79hKbWSPC8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586632019_882773101188930_1243170352736288870_n.enc?ccb=11-4&oh=01_Q5Aa3wFgp6u94aLF3xym2Ke2E2kFe7VYUjbNqh3kpWVGrlxHiw&oe=69B58684&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770912493\",\"waveform\":\"AD5ORVhFOlpfJS0oRT9dWVhETj1DIUJdVi8vMidcKEY7UUs2TUVQVEhUM1VPP0E+PFEhXl0xLkxaQ1ckPkdFQg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770912541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:02.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:02'),
(5013, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770912541652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:01.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:02'),
(5014, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:02.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:02'),
(5015, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:02.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:02'),
(5016, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586632019_882773101188930_1243170352736288870_n.enc?ccb=11-4&oh=01_Q5Aa3wFgp6u94aLF3xym2Ke2E2kFe7VYUjbNqh3kpWVGrlxHiw&oe=69B58684&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IckKWtfoQt1OMbk+8BIX4tKl+AyPaCy7Yk0ekz0SgDo=\",\"fileLength\":\"112518\",\"seconds\":48,\"ptt\":true,\"mediaKey\":\"d1SO2cIgyFljkAMkTVCD39JLgbPP0irprzJB6XgQDEg=\",\"fileEncSha256\":\"42Mg+E4YnzKy8iDza1MrPOa4wHcxg16Do79hKbWSPC8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586632019_882773101188930_1243170352736288870_n.enc?ccb=11-4&oh=01_Q5Aa3wFgp6u94aLF3xym2Ke2E2kFe7VYUjbNqh3kpWVGrlxHiw&oe=69B58684&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770912493\",\"waveform\":\"AD5ORVhFOlpfJS0oRT9dWVhETj1DIUJdVi8vMidcKEY7UUs2TUVQVEhUM1VPP0E+PFEhXl0xLkxaQ1ckPkdFQg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770912541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:02.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:02'),
(5017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8rr56HZaTO2PzmqbSn3jqqC-Lcqr3P42cxNX_O4Wt5Q&oe=699B2948&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:02.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:03'),
(5018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8rr56HZaTO2PzmqbSn3jqqC-Lcqr3P42cxNX_O4Wt5Q&oe=699B2948&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:02.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:03'),
(5019, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AFD776BCFE28DBB3901\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN-aOOG-2AaCSAiMxPehwYObdsj0e91EyjDIMelfUCj1wjOvddYu8KVC8DVrZA7ruANGRSZG3ZVGOOoFfhNc-XDE4cAml2P6BrlGbxC3w?ccb=9-4&oh=01_Q5Aa3wE4Opr5cUlrcwkDrtUPAldPqFEKWHGKeA_8SFnXN_6RHQ&oe=69B5807E&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"liObgbIg\\/OinrUSzt2ETr1d0ERP6YwNDwvKViI\\/wAKk=\",\"fileLength\":\"68164\",\"height\":1600,\"width\":739,\"mediaKey\":\"FmOD35D9JO4YWUbjoWpvV44SHVcfoazbV7D1agjM4VA=\",\"fileEncSha256\":\"EUyQJFF5Ej8YmaamhYFDjndvogpW5pgwPuAYn+jPl+g=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN-aOOG-2AaCSAiMxPehwYObdsj0e91EyjDIMelfUCj1wjOvddYu8KVC8DVrZA7ruANGRSZG3ZVGOOoFfhNc-XDE4cAml2P6BrlGbxC3w?ccb=9-4&oh=01_Q5Aa3wE4Opr5cUlrcwkDrtUPAldPqFEKWHGKeA_8SFnXN_6RHQ&oe=69B5807E&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770912582\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"1UKYMpw0OvdlhA==\",\"firstScanLength\":6651,\"scansSidecar\":\"1UKYMpw0OvdlhI2T\\/QedXRx2rl7YXWW4X41sU2zT\\/no2aV\\/gX0NNag==\",\"scanLengths\":[6651,31905,11689,17917],\"midQualityFileSha256\":\"zffNKm8moDDve4CoZL\\/C5ssowwAvSBuIGyJ6ZDC3Jis=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770912217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"At3ULWKoU0FBDoojPJBv8C0+77VWf3mK5TW0Gr8jNIg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770912584,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5020, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AFD776BCFE28DBB3901\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN-aOOG-2AaCSAiMxPehwYObdsj0e91EyjDIMelfUCj1wjOvddYu8KVC8DVrZA7ruANGRSZG3ZVGOOoFfhNc-XDE4cAml2P6BrlGbxC3w?ccb=9-4&oh=01_Q5Aa3wE4Opr5cUlrcwkDrtUPAldPqFEKWHGKeA_8SFnXN_6RHQ&oe=69B5807E&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"liObgbIg\\/OinrUSzt2ETr1d0ERP6YwNDwvKViI\\/wAKk=\",\"fileLength\":\"68164\",\"height\":1600,\"width\":739,\"mediaKey\":\"FmOD35D9JO4YWUbjoWpvV44SHVcfoazbV7D1agjM4VA=\",\"fileEncSha256\":\"EUyQJFF5Ej8YmaamhYFDjndvogpW5pgwPuAYn+jPl+g=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN-aOOG-2AaCSAiMxPehwYObdsj0e91EyjDIMelfUCj1wjOvddYu8KVC8DVrZA7ruANGRSZG3ZVGOOoFfhNc-XDE4cAml2P6BrlGbxC3w?ccb=9-4&oh=01_Q5Aa3wE4Opr5cUlrcwkDrtUPAldPqFEKWHGKeA_8SFnXN_6RHQ&oe=69B5807E&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770912582\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"1UKYMpw0OvdlhA==\",\"firstScanLength\":6651,\"scansSidecar\":\"1UKYMpw0OvdlhI2T\\/QedXRx2rl7YXWW4X41sU2zT\\/no2aV\\/gX0NNag==\",\"scanLengths\":[6651,31905,11689,17917],\"midQualityFileSha256\":\"zffNKm8moDDve4CoZL\\/C5ssowwAvSBuIGyJ6ZDC3Jis=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770912217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"At3ULWKoU0FBDoojPJBv8C0+77VWf3mK5TW0Gr8jNIg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770912584,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:44'),
(5021, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:44'),
(5022, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4DE445C1E731A2E14F\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32196323_879335838192061_1410683729566111965_n.enc?ccb=11-4&oh=01_Q5Aa3wF8BzZpVclUSRCQi3UoYBH4hyAkqmgZy9m1w7Qo2GQscg&oe=69B5797B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gnEXl0DoSIw99SZyDiBaQkjwj8Zy4PaOF2n\\/xC+HiZY=\",\"fileLength\":\"19102\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"5x0Xgz0POlbtPnpJWZ2xOczH\\/VI0XWfIFlUaSd8iDdM=\",\"fileEncSha256\":\"O9F3Bla+R\\/2aP4CZFLV0uqPPPqb2xmguUlTsKEp50Nc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32196323_879335838192061_1410683729566111965_n.enc?ccb=11-4&oh=01_Q5Aa3wF8BzZpVclUSRCQi3UoYBH4hyAkqmgZy9m1w7Qo2GQscg&oe=69B5797B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770912545\",\"streamingSidecar\":\"YmwFn9frWllKtQ==\",\"waveform\":\"AAMEBQUFBgUFBShkYVtaQlViRVxXU0I8S1liZGRfRzlKNlxNOTU+TUoyHA8JBwcGBgcICQ4yPEJENDEuICMcEg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770912217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7+2Dn7geLqSfjrGt1SIUmYT1SYyaNozGS2Rhw4\\/znqQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770912584,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:44'),
(5023, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:44'),
(5024, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4DE445C1E731A2E14F\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32196323_879335838192061_1410683729566111965_n.enc?ccb=11-4&oh=01_Q5Aa3wF8BzZpVclUSRCQi3UoYBH4hyAkqmgZy9m1w7Qo2GQscg&oe=69B5797B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gnEXl0DoSIw99SZyDiBaQkjwj8Zy4PaOF2n\\/xC+HiZY=\",\"fileLength\":\"19102\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"5x0Xgz0POlbtPnpJWZ2xOczH\\/VI0XWfIFlUaSd8iDdM=\",\"fileEncSha256\":\"O9F3Bla+R\\/2aP4CZFLV0uqPPPqb2xmguUlTsKEp50Nc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32196323_879335838192061_1410683729566111965_n.enc?ccb=11-4&oh=01_Q5Aa3wF8BzZpVclUSRCQi3UoYBH4hyAkqmgZy9m1w7Qo2GQscg&oe=69B5797B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770912545\",\"streamingSidecar\":\"YmwFn9frWllKtQ==\",\"waveform\":\"AAMEBQUFBgUFBShkYVtaQlViRVxXU0I8S1liZGRfRzlKNlxNOTU+TUoyHA8JBwcGBgcICQ4yPEJENDEuICMcEg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770912217\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7+2Dn7geLqSfjrGt1SIUmYT1SYyaNozGS2Rhw4\\/znqQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770912584,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:44'),
(5025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:44'),
(5026, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:45.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:45'),
(5027, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:45.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:45'),
(5028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:45.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:45'),
(5029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:45'),
(5030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:45.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:45'),
(5031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:46'),
(5032, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:46'),
(5033, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:09:46'),
(5034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:09:44.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:09:46'),
(5035, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:04.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:23:04'),
(5036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11895744_1267485478579723_3360839259150775547_n.enc?ccb=11-4&oh=01_Q5Aa3wE_2gzBCl3VR-4tt4R1auZyxL965DanAtRAQWH_r_0zPw&oe=69B56C3C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CzdyoWhMtDZdUbLNd2EPd\\/vcAAaBNVPMrx3g+akj\\/+A=\",\"fileLength\":\"8147\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"\\/6vGOUgiRlkbymXe8byPKr54mLnVrf4KkCh3pescs1Q=\",\"fileEncSha256\":\"+fgnXu41mcMbnRzcpelRZHrZwmuivNi5IycF6jV0qfw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11895744_1267485478579723_3360839259150775547_n.enc?ccb=11-4&oh=01_Q5Aa3wE_2gzBCl3VR-4tt4R1auZyxL965DanAtRAQWH_r_0zPw&oe=69B56C3C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770913382\",\"waveform\":\"ACJKY2JYY2JhY2BWY2FYS1dTV1hZSTE9Sj02UlVUWEZGW1laS1FdWVZYWVlUWiVKXVhXTjc7VF9bW05PRFxiYw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770913384,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:04.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:23:04'),
(5037, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:04.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:23:05'),
(5038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:05.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:23:05'),
(5039, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11895744_1267485478579723_3360839259150775547_n.enc?ccb=11-4&oh=01_Q5Aa3wE_2gzBCl3VR-4tt4R1auZyxL965DanAtRAQWH_r_0zPw&oe=69B56C3C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CzdyoWhMtDZdUbLNd2EPd\\/vcAAaBNVPMrx3g+akj\\/+A=\",\"fileLength\":\"8147\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"\\/6vGOUgiRlkbymXe8byPKr54mLnVrf4KkCh3pescs1Q=\",\"fileEncSha256\":\"+fgnXu41mcMbnRzcpelRZHrZwmuivNi5IycF6jV0qfw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11895744_1267485478579723_3360839259150775547_n.enc?ccb=11-4&oh=01_Q5Aa3wE_2gzBCl3VR-4tt4R1auZyxL965DanAtRAQWH_r_0zPw&oe=69B56C3C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770913382\",\"waveform\":\"ACJKY2JYY2JhY2BWY2FYS1dTV1hZSTE9Sj02UlVUWEZGW1laS1FdWVZYWVlUWiVKXVhXTjc7VF9bW05PRFxiYw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770913384,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:04.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:23:05'),
(5040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:05.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:23:05'),
(5041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:09.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:23:09'),
(5042, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634999885_1869900273681965_9157459632665681471_n.enc?ccb=11-4&oh=01_Q5Aa3wEqNHfNEKelPuiGdwUgEddLsxNqwaOg3hPpcDDJ99AVCQ&oe=69B57DF8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SwQWQhTj7jKynu2ZkD+pmM5FEGZmLPDqV8O6ijgL+HI=\",\"fileLength\":\"7045\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"ar+KIeci7bgjsvydrzr4vMHhZi7QJe5CCZEgN36zTnQ=\",\"fileEncSha256\":\"86DKI0nTLHVLeBDGxmmfpQvriQ06wgVA0aXQ4f01Y+0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634999885_1869900273681965_9157459632665681471_n.enc?ccb=11-4&oh=01_Q5Aa3wEqNHfNEKelPuiGdwUgEddLsxNqwaOg3hPpcDDJ99AVCQ&oe=69B57DF8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770913387\",\"waveform\":\"AA0MDwwIDhIOGkVYU0pITEpRYV9fYldeYUJGWF1jWjMqCU1dX11WQzJUTD80Uk5MRERUWFxfXyNLVlJTRCo6QQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770913389,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:09.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:23:09'),
(5043, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:09.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:23:10'),
(5044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634999885_1869900273681965_9157459632665681471_n.enc?ccb=11-4&oh=01_Q5Aa3wEqNHfNEKelPuiGdwUgEddLsxNqwaOg3hPpcDDJ99AVCQ&oe=69B57DF8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SwQWQhTj7jKynu2ZkD+pmM5FEGZmLPDqV8O6ijgL+HI=\",\"fileLength\":\"7045\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"ar+KIeci7bgjsvydrzr4vMHhZi7QJe5CCZEgN36zTnQ=\",\"fileEncSha256\":\"86DKI0nTLHVLeBDGxmmfpQvriQ06wgVA0aXQ4f01Y+0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634999885_1869900273681965_9157459632665681471_n.enc?ccb=11-4&oh=01_Q5Aa3wEqNHfNEKelPuiGdwUgEddLsxNqwaOg3hPpcDDJ99AVCQ&oe=69B57DF8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770913387\",\"waveform\":\"AA0MDwwIDhIOGkVYU0pITEpRYV9fYldeYUJGWF1jWjMqCU1dX11WQzJUTD80Uk5MRERUWFxfXyNLVlJTRCo6QQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770913389,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:09.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:23:10'),
(5045, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:10.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:23:10'),
(5046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHN1WA5K0VgG6AeJ-gPL7eAlZGzItUqU7727wj6tnRapA&oe=699AF661&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:23:10.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:23:10'),
(5047, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:19.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:19'),
(5048, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129476117712909@lid\",\"fromMe\":true,\"id\":\"A5ED97345D498D6EA57A1EDBC172CE40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770914479,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:19.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:19'),
(5049, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5ED97345D498D6EA57A1EDBC172CE40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770914479823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:19.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:20'),
(5050, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:19.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:20'),
(5051, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129476117712909@lid\",\"fromMe\":true,\"id\":\"A5ED97345D498D6EA57A1EDBC172CE40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa irmao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770914479,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:19.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:20'),
(5052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129476117712909@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:20.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:20'),
(5053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5ED97345D498D6EA57A1EDBC172CE40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770914479823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:19.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:20'),
(5054, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129476117712909@lid\",\"fromMe\":true,\"id\":\"A5A7CAA72012C15092888281BB37549E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770914480464\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770914481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:21.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:21'),
(5055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:21.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:21'),
(5056, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129476117712909@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:20.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:21'),
(5057, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129476117712909@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:21.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:21'),
(5058, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129476117712909@lid\",\"fromMe\":true,\"id\":\"A5A7CAA72012C15092888281BB37549E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770914480464\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770914481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:21.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:21'),
(5059, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129476117712909@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:22.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:22'),
(5060, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129476117712909@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:22.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:22'),
(5061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5A7CAA72012C15092888281BB37549E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770914481781,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:21.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:22'),
(5062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5A7CAA72012C15092888281BB37549E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770914481781,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:21.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:22'),
(5063, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5A7CAA72012C15092888281BB37549E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770914496362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:36.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:36'),
(5064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5A7CAA72012C15092888281BB37549E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770914496362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:36.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:36'),
(5065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5ED97345D498D6EA57A1EDBC172CE40\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770914496367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:36.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:41:36'),
(5066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129476117712909@lid\",\"id\":\"A5ED97345D498D6EA57A1EDBC172CE40\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770914496367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:41:36.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:36'),
(5067, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"Marcos 2117 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554799493137@s.whatsapp.net\",\"pushName\":\"Bruna Salgados Pra Festas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T13:41:38.488Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:38'),
(5068, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"Marcos 2117 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"554799493137@s.whatsapp.net\",\"pushName\":\"Bruna Salgados Pra Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473399207_602909739324411_2791993237467143830_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqe9-9hMXCiuXRPuIkRWf8hsEZNqQDdwYi1UObmHSlYQ&oe=699B2D4D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T13:41:38.837Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:38'),
(5069, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"556592701236@s.whatsapp.net\",\"pushName\":\"Ediliane Do Lacerda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T13:41:39.033Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:39'),
(5070, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"Marcos 2117 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"},{\"id\":\"556592701236@s.whatsapp.net\",\"pushName\":\"Ediliane Do Lacerda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T13:41:39.387Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:41:39'),
(5071, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915411626,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:56:51.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:56:52'),
(5072, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915411626,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:56:51.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:56:52'),
(5073, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915434071,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:57:14.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:57:14'),
(5074, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915434079,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:57:14.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:57:14'),
(5075, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915434079,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:57:14.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:57:14'),
(5076, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915434071,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:57:14.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:57:14'),
(5077, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915462455,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:57:42.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:57:42'),
(5078, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915462455,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:57:42.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:57:42'),
(5079, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"AC618C0CFC8C02A3371D2D05B0C0C966\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915475017,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T13:57:55.017Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:57:55'),
(5080, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915573024,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:59:33.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:59:33'),
(5081, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915573014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:59:33.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 13:59:33'),
(5082, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915573014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:59:33.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:59:33'),
(5083, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915573024,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T13:59:33.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 13:59:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5084, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915665331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:01:05.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:01:05'),
(5085, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915665322,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:01:05.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:01:05'),
(5086, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"AC618C0CFC8C02A3371D2D05B0C0C966\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915665596,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:01:05.596Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:01:05'),
(5087, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5445DED124E3DEA8212BEDF60DE29F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915665331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:01:05.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:01:08'),
(5088, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"A5F882B54B78726AC0C4BD07955597C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915665322,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:01:05.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:01:08'),
(5089, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"ACCEA4FA805163B566AF2288390A0C80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915769674,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:02:49.674Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:02:50'),
(5090, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"AC744DC71E92AFBD93EB36017E3FCC49\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915769686,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:02:49.686Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:02:50'),
(5091, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"AC524C7C7D9983235097C29949DC47B1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915769668,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:02:49.668Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:02:50'),
(5092, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"AC002E76600D49E335C6186C056EB64B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915769679,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:02:49.679Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:02:50'),
(5093, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"21981793632295:78@lid\",\"id\":\"ACB933B2C796C32A051233C312D913DF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770915769660,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:02:49.661Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:02:50');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5094, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkeiEgnJGUEL-pcMb3HlkSRsD9yAO03AOeZxKoBdqtYQ&oe=699B0A1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKxHnZajvvtrL5Dv4dzWVEQ0ToMquH-APewctm6hXSvA&oe=699B0FDB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjZds3U1oznvs9qMhmuDLFTyp6zRuE6et8d8fiZ3HP1w&oe=699B2FE6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wErMU5YR0g6H5j_UTGsDWcwBb3e784Wh_9Ci4T0iRpe7w&oe=699B2A19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_g0M093cAGZQeeIN1MlsPoCWd7VRSlWhtjgIDZD3I3g&oe=699AFC37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt4vRGfkaRtnx1qo2XIAaXzyCVBu9HmfVr32muIyy2MQ&oe=699B1068&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrs0j7_uj7yr48Ld7GTONtN7OsqbxYP1Y7tip3XRyoFw&oe=699B1900&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFtgEhE0yZn4O9KYIW_KCHC4-97cX8Larx2LiFFRZXig&oe=699AFA43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbnMb6VLAuKG9mpqSnh-vw1HKTLY76ZvF82JEbkyYJNg&oe=699B195C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuhIQOc6Ah3GcJnaMVb94YcJtYYvJcP6bb_gkHT78jkA&oe=699B2995&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhYsjITcnab_vohoipaqdt38dRR_PTzMwsLrXuywlNUg&oe=699B1795&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdsCHUetucBEWwKVcO7KFbGpW-RQu--4yFMnpgigfW0A&oe=699B2516&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAyiNWd2bQCMKuGGc1cPfIKsn8w3Bg_cBCXBKrA-DUeg&oe=699B1FCB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUs5y-pJn_hKmLH0e8RrdODsNtB6sxxgfBQQAfBSLlQA&oe=699B22C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSQK2VsVjeKS03QUp0iLLQrKK8NtvRF7x60dY4kCrj9g&oe=699B2062&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpKYy5R42IBUN5LW4YKtDEd9R8Y1Cv-lQLE03vF6YxzA&oe=699B24CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wFk-gQf-UgcXoCe63FIjdwj8I9unmPC2-5ARtVMpXcXUA&oe=699B1D7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7S5uyATxCcgXZID-X5_PGH7AQI1JDe5V1qmntr-H3IQ&oe=699B1F1C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wG57I8pNRZs7zIEilb6asN2ZTVxjM8x22FUSY66xYVsaA&oe=699B0A38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuIncNJ4eIZfu9aqi9BozsYhswNvnjMQWjcrriOnA-Sg&oe=699B1E89&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWAZNwcVCKqBcPavg2zNbw9b4guVB_x9R7-ZXwWySW6w&oe=699B04CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGMtdZGn1zh5r9-wWPR5tyh4D55eX5R2lG-x0N4J1I8g&oe=699B1E98&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEN5UWobCz0v-BWyO3HiqEBH0Mj0RWMHoLyqtl-PD_Ftw&oe=699B1316&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDLAGv7yIOQDghSAOQZ80arU-VoXOe3UyDKC35W8QCKw&oe=699AF99A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJJXlqns2PLXNhuQFqzjYu-C7pWZf3RXYWKSPk7eV9hA&oe=699AFD36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjMBGG8_qq4XEVhPJN_4NA_wiABRKa2un7e9Iu3oBJsQ&oe=699B0E6F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHwbw5jKL5nbgHRp3T08eqnS1DF0ZnLuNoBHU7gQtX1Q&oe=699B14EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2e68wMASsf1nRqPOOi-r77hPtA9L00HFLw_UEK1_xug&oe=699B0BCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbgeHfVt7hUYzbT3Dt1cWTuDvCrGYlGKTWvoW1RjaTMw&oe=699B10FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZhUPlkL8SNzGZTSZ__-OwjqObYvvUHjBkE-_pVwI17A&oe=699B2A42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHchMKet1FhHrcWfZPUlfKBeihW6wKC9R5zwmTlmr_OOw&oe=699B0F95&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvmIobgLua5sREterNo1nh31GH83d_h6t3LdldhteT0Q&oe=699B174C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVGwB6T2J4UBTMEQk2yiKehh-pEkeJuytXHx_ytasTDA&oe=699B2EDA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHm-mBGH-CUHzyMR-Pllb2_oPqr01CiO5XbCFsrai36qQ&oe=699B20AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3ax4NzC6GW3igf2uybAVYXdVvfW8i2ACpAELshRw2EA&oe=699B24E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmuybnz5LWPHqAoYliDDqE5KnS_q0ZEO2EyXr03aXI6Q&oe=699B0510&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpAmNh7LBiBW5GJljjOXdrtjrF4jyBFcaMX_xKrDFkpA&oe=699B132A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOQVKLcZZal2SliwTZBznL6NkpAO85Gv452Yj5ASZhmQ&oe=699B0D7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV1Ip1OfcQlO9OTCxcMAP3vifVpCskL95Hg5QyoUSEUg&oe=699B16E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwbOAUU-rEsXNIfEOyaUaH4A2w2HaXMH4r43YORl_iew&oe=699B1A6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6lebRMWcKTVs8ETq_oEIzkJPn7AhCDFIpC1QNdm-8HQ&oe=699B23A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJVkmak5SDTj1XtV7gZcFKr5IQqY4t7d-kxxbIaAnleA&oe=699B0945&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdzxgFfU472KjtEDOge_jc0NKevXzgAmDcd3HkbLYKKg&oe=699B172D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJhDA4iX46j4WN1UhsCwXAUmKWr32rkBTJMMGvsHQGAw&oe=699B2F92&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHxMfhd4hb2-bKzBwJ25S32c-HFOLAfef_Iynk39GzUg&oe=699B0D15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXvDBurKGplXrMqsBh0kbwq4Bzv0r8QnxNoJoH4JPC1Q&oe=699B2911&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKQx1a1EHPkre8BjNNZNl8_JT8USSZULM7JNmpFHg-_Q&oe=699B2F39&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wEadPou840NLnON1qbXwjp5PdlfXE0D09scTM7b8q3h6Q&oe=699B0AB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELmLgL3tnL-okGrxTlzixKOS2xhUoZ7F7tWXhKoahNtw&oe=699B2302&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMdRnZQv8SYkBGyUJcLrCBDKoDI8EDtPNWK0kZq--jqA&oe=699B1325&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTNpSoZ7JnKcMk18loc0fEy6ys11EkUJnoOuXBhpdnig&oe=699B188A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWHc0nVKzRLgAWqqnixxbEed0RDDRlYrGw5H-xudOUHg&oe=699B18FA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfnmu73Vjc7kcYrfxx838W_QCldL5BKrAbM-d53rCR8A&oe=699B01AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHpCBWeGaEltwC86913tYVuLcmqjlvx76FkpLS6myFPA&oe=699B00AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoymY92kycJnw_Mg2x9eQKdLvbsSaK4upbCfJ5VEnRWQ&oe=699B1215&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfJsCAvuXfJ-HNY4dQ8nQs-0sAacaj6URnJ7qK3sbxZg&oe=699B076E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wENYB2S1fRt7eQF_rUgFGcwYP_syNkEJ1fbignjpbQwlw&oe=699AFA18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8rvsnGEZZ6IjB5eE811hbCfH25apyNM-xTJ6JrbMnTQ&oe=699B0F13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA73LUOOBrfiGWyAlJ7p-ZgRduUvAUqUNe_J2B2nUJgQ&oe=699B3179&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuWiMmPXoHGX1-LVDYohkpqzqVdD1uGl_Wt9l4RAk_1w&oe=699B2406&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wE84eW82mbZsOT3StRPa4dSYAzRWXvsGTyD9xTlDlL4yw&oe=699B31A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wH37CUdQ6sypdzYmqzRMxzZPZjKt-6EI4CkjgYgdo6MTw&oe=699B1138&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFt_IDJifXphnyaNyXXrnP50HVqX2sO2znFypClByKm7A&oe=699B2E38&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wE094p6pooPkgXImOTeVZ_0TynvoirfDuzpAlQF8W1b3A&oe=699B04C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwdhIWv9YLfPzSIDBGKCTQj1jWZ-f3c9k05FMnauF5Qw&oe=699B29CF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVMSV3_mJ5E9bibhnM0Sm2rd4X54aPIFzjMmMmzJUa_Q&oe=699B1CFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9khZABFSry1gxCx4KB1lGUkxVxuX3YCEgny47FCujVg&oe=699B2082&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrDzXTPEWp_zNujgRWxGZoKCcWyyjVsHu7-kKyNmLjuQ&oe=699B0DCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoip4ZmACQalZlpYsZy9f7rhy7F-EjV_T1b6r9AoLMUg&oe=699B14B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZm7cN5INewG4NxK9YLE7P8TEE8I_n1DekBF5tZgaMXw&oe=699AFA52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdEOvU-Hps48ric3DDsH37bi6BuVBbhfR-MY3cWljeBQ&oe=699B25D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqF3MGNTKibNiNLrYeI-JA6L4W-aFipUMexxH-WDU5_A&oe=699B19BC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIu5qSXSJESgZIWo3X4I7HKT0JUz8_H9isWoxQWKQ0VA&oe=699B1CF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfUmOToxwRYoPHgpzCDC2nBvZcI_t2SfL1xPUerrWdRA&oe=699B176F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNiE56pqs1sxepn3RRJG7MyqUITT3IypjYOKtreRjlgQ&oe=699B0BFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHU9rtFhQemUBgOAEeFPa1PQBOd2f3dUz_lGmseC3NSqw&oe=699B259A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBTpJRmPlpcBUjq_krS1CaVg_I5suEmO3q5OvP0Zmy6w&oe=699B10D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHttSRSAS9utkdsz-6czd0NDn6NM2TediNYEHqO2eSD8Q&oe=699B2CC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHaQxTGA_dsWfg-QlL12uSqhHdTM-wMstKgBN5KK5ID2A&oe=699B17EE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_p9STg6_hon2Nfs2eLRAGPTL-urXNVPGgERcPEWAwCw&oe=699AFBBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzuNyVnOMT7LZVDMnB0DeEr4QNdsOMuVNBhsE0G67nQ&oe=699B2215&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbjtbS7m0mLVPX5Hg6p5WgdPZlFs-ADVGvd-ube2zhWg&oe=699B2F0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwqH18RN7UweXvssus6O3gsAUUlHaU6QUR_AmqehE_Kw&oe=699B0C35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHTYc3neQxAYRy4SN97xHhQeQfWwmnLK92MsMQL_1Gqw&oe=699B19C4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiVBcb1jcYc0k6cswQBKImRyc8mATqWgk1zOrYp-sS_w&oe=699B257D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ9gck6LuDkF8sqKoIvCmVxP9ISHlBkVdp130QTEoRpQ&oe=699B29A5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIWVMQhRIixvkyvo6XZSxh0hnFPJUV9uj4itfHnbgx_A&oe=699B08FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwe3LnBMSx0BO4aQba4r49lbo5147JzVreeaJbHa4IKw&oe=699B2642&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZaKqDiOTU9fgHZ6LtXzzeGThUXW9kInh3JEANGmt9cw&oe=699B14E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBQxEXBO9lExE7z0xtfEw9X_YOG3C7e3xIAxAh4JRXZQ&oe=699B1007&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsAHV-MckU5Ci5h8ussRb7PMyLcxRzPNOACAgSSqlQhg&oe=699AFD67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_nFbtYXECenfmC4Z1bjgy2i1Z5VSNVg6WNNBzAz-YOA&oe=699B20C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9XkumUXnWvdGjL0d5MmZ6vTTElcNlgxYdUnTGiSVgnw&oe=699B001D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHph-mv6Ym6PvmkgntgCum4PiqOXN86ycSxg8D59AcDUw&oe=699B0807&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtYcTZRsK1L2av7_anoUYP9aits6Lge8srCx1wC81Ybw&oe=699B03A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMevrmJIvpbTxNMVZQ2UOHZg0bQu5F8mRVH5C5123l8g&oe=699B1408&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOFfqtub_BjiLCfisOslUW_yTEf2JI1SR1V0eJIa51eA&oe=699B1051&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRcC7mIqYvej9f14I_HoAvMMw4Ihmz8c1EzvMhQmmIrg&oe=699B221C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6TakgoY438fh4xa09NRvYf7cEbAImSBrMaVlCazyDLQ&oe=699B03F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfKk5fjg72bAGkUqvbzs6nOSAZWjEf2d2axn8Wk1_lg&oe=699B2054&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvu2lhEAAAiLxZaULGrABht71nQNaUEJLfZqAe_oyT6A&oe=699B0B17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH5fat9ruEX8WIzyc3OUB7EZEspe_AYtwQmPoEM_gSQ&oe=699AFA7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4NP2rtjfTvq-iQCt8yGDW8V2U80K3TgFMCk4gReqN3A&oe=699B026E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdugFr59ZCl-HvxsIRduKQbSXse2Tq_KDKRL5sl12a1g&oe=699B1DDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyrX4MJuHhs9tPZdjeUfNKKJH76S3eXNz36EWcTKgKBg&oe=699B1AB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4Nfp3xoVLsKcC4uhD1tZLqweCjUmmXzV1RzMqWPblWw&oe=699B22DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDkOODS4zN1AV2P5I_ZEVXfupimRnsJEI_ZdZGfVVlmw&oe=699B0747&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9sERj_T4Tlz7LF2REj0G-zrRs_2y4KvwbCmKMS-Vq6A&oe=699B1C8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhp3-_vVd9CAe9RWTVaHtoP0f-Z0p6nbgNivUz5t2gA&oe=699B2137&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz2ZkYSTsI9Dpu9BwnnuhKuHwoBC-fOU2j7kVwtIbLcQ&oe=699B0420&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wESaUYTMXXicBNBpR8IBbkD7mrZfZUFkxFIZqEY69_USw&oe=699B318B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wERK1LjGGF4DaL3b-D-xtzRzMSnKoiprOInSR_K1VGwAg&oe=699B07E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wG68oxoWc2g8xc6o_dGtuGTl0KQoR-jU7m6A0Pk7ow0Mw&oe=699B1492&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxuxiqsBFth0a5Xwd5Z9bWUrvzOOBj7rqCysNOH-fATQ&oe=699B14A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wFih9kpxmk4ZIiMhlMmhOiR0a7oTw93DeQ-xPBcPc9U2g&oe=699B2385&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUnqVsgVmpwKi1I9onDeTgDdiVMdgvmGlqVHJuEGA37Q&oe=699B1063&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFTx1VXlgQElFpQZpfg4bGgQcpzpmrFWyBfijrsScwwQ&oe=699B23F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 1, '2026-02-12 14:09:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5095, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkeiEgnJGUEL-pcMb3HlkSRsD9yAO03AOeZxKoBdqtYQ&oe=699B0A1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKxHnZajvvtrL5Dv4dzWVEQ0ToMquH-APewctm6hXSvA&oe=699B0FDB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjZds3U1oznvs9qMhmuDLFTyp6zRuE6et8d8fiZ3HP1w&oe=699B2FE6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wErMU5YR0g6H5j_UTGsDWcwBb3e784Wh_9Ci4T0iRpe7w&oe=699B2A19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_g0M093cAGZQeeIN1MlsPoCWd7VRSlWhtjgIDZD3I3g&oe=699AFC37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt4vRGfkaRtnx1qo2XIAaXzyCVBu9HmfVr32muIyy2MQ&oe=699B1068&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrs0j7_uj7yr48Ld7GTONtN7OsqbxYP1Y7tip3XRyoFw&oe=699B1900&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFtgEhE0yZn4O9KYIW_KCHC4-97cX8Larx2LiFFRZXig&oe=699AFA43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbnMb6VLAuKG9mpqSnh-vw1HKTLY76ZvF82JEbkyYJNg&oe=699B195C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuhIQOc6Ah3GcJnaMVb94YcJtYYvJcP6bb_gkHT78jkA&oe=699B2995&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhYsjITcnab_vohoipaqdt38dRR_PTzMwsLrXuywlNUg&oe=699B1795&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdsCHUetucBEWwKVcO7KFbGpW-RQu--4yFMnpgigfW0A&oe=699B2516&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAyiNWd2bQCMKuGGc1cPfIKsn8w3Bg_cBCXBKrA-DUeg&oe=699B1FCB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUs5y-pJn_hKmLH0e8RrdODsNtB6sxxgfBQQAfBSLlQA&oe=699B22C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSQK2VsVjeKS03QUp0iLLQrKK8NtvRF7x60dY4kCrj9g&oe=699B2062&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpKYy5R42IBUN5LW4YKtDEd9R8Y1Cv-lQLE03vF6YxzA&oe=699B24CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wFk-gQf-UgcXoCe63FIjdwj8I9unmPC2-5ARtVMpXcXUA&oe=699B1D7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7S5uyATxCcgXZID-X5_PGH7AQI1JDe5V1qmntr-H3IQ&oe=699B1F1C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wG57I8pNRZs7zIEilb6asN2ZTVxjM8x22FUSY66xYVsaA&oe=699B0A38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuIncNJ4eIZfu9aqi9BozsYhswNvnjMQWjcrriOnA-Sg&oe=699B1E89&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWAZNwcVCKqBcPavg2zNbw9b4guVB_x9R7-ZXwWySW6w&oe=699B04CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGMtdZGn1zh5r9-wWPR5tyh4D55eX5R2lG-x0N4J1I8g&oe=699B1E98&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEN5UWobCz0v-BWyO3HiqEBH0Mj0RWMHoLyqtl-PD_Ftw&oe=699B1316&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDLAGv7yIOQDghSAOQZ80arU-VoXOe3UyDKC35W8QCKw&oe=699AF99A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJJXlqns2PLXNhuQFqzjYu-C7pWZf3RXYWKSPk7eV9hA&oe=699AFD36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjMBGG8_qq4XEVhPJN_4NA_wiABRKa2un7e9Iu3oBJsQ&oe=699B0E6F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHwbw5jKL5nbgHRp3T08eqnS1DF0ZnLuNoBHU7gQtX1Q&oe=699B14EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2e68wMASsf1nRqPOOi-r77hPtA9L00HFLw_UEK1_xug&oe=699B0BCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2G41SdKvzQAyPnh_SRaJAwrFD07PFhaAixUQgBQJjfQ&oe=699B21E3&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbgeHfVt7hUYzbT3Dt1cWTuDvCrGYlGKTWvoW1RjaTMw&oe=699B10FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZhUPlkL8SNzGZTSZ__-OwjqObYvvUHjBkE-_pVwI17A&oe=699B2A42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHchMKet1FhHrcWfZPUlfKBeihW6wKC9R5zwmTlmr_OOw&oe=699B0F95&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvmIobgLua5sREterNo1nh31GH83d_h6t3LdldhteT0Q&oe=699B174C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVGwB6T2J4UBTMEQk2yiKehh-pEkeJuytXHx_ytasTDA&oe=699B2EDA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHm-mBGH-CUHzyMR-Pllb2_oPqr01CiO5XbCFsrai36qQ&oe=699B20AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3ax4NzC6GW3igf2uybAVYXdVvfW8i2ACpAELshRw2EA&oe=699B24E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmuybnz5LWPHqAoYliDDqE5KnS_q0ZEO2EyXr03aXI6Q&oe=699B0510&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpAmNh7LBiBW5GJljjOXdrtjrF4jyBFcaMX_xKrDFkpA&oe=699B132A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOQVKLcZZal2SliwTZBznL6NkpAO85Gv452Yj5ASZhmQ&oe=699B0D7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV1Ip1OfcQlO9OTCxcMAP3vifVpCskL95Hg5QyoUSEUg&oe=699B16E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwbOAUU-rEsXNIfEOyaUaH4A2w2HaXMH4r43YORl_iew&oe=699B1A6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wG6lebRMWcKTVs8ETq_oEIzkJPn7AhCDFIpC1QNdm-8HQ&oe=699B23A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJVkmak5SDTj1XtV7gZcFKr5IQqY4t7d-kxxbIaAnleA&oe=699B0945&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdzxgFfU472KjtEDOge_jc0NKevXzgAmDcd3HkbLYKKg&oe=699B172D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJhDA4iX46j4WN1UhsCwXAUmKWr32rkBTJMMGvsHQGAw&oe=699B2F92&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHxMfhd4hb2-bKzBwJ25S32c-HFOLAfef_Iynk39GzUg&oe=699B0D15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXvDBurKGplXrMqsBh0kbwq4Bzv0r8QnxNoJoH4JPC1Q&oe=699B2911&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKQx1a1EHPkre8BjNNZNl8_JT8USSZULM7JNmpFHg-_Q&oe=699B2F39&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wEadPou840NLnON1qbXwjp5PdlfXE0D09scTM7b8q3h6Q&oe=699B0AB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELmLgL3tnL-okGrxTlzixKOS2xhUoZ7F7tWXhKoahNtw&oe=699B2302&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMdRnZQv8SYkBGyUJcLrCBDKoDI8EDtPNWK0kZq--jqA&oe=699B1325&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTNpSoZ7JnKcMk18loc0fEy6ys11EkUJnoOuXBhpdnig&oe=699B188A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWHc0nVKzRLgAWqqnixxbEed0RDDRlYrGw5H-xudOUHg&oe=699B18FA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfnmu73Vjc7kcYrfxx838W_QCldL5BKrAbM-d53rCR8A&oe=699B01AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHpCBWeGaEltwC86913tYVuLcmqjlvx76FkpLS6myFPA&oe=699B00AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoymY92kycJnw_Mg2x9eQKdLvbsSaK4upbCfJ5VEnRWQ&oe=699B1215&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfJsCAvuXfJ-HNY4dQ8nQs-0sAacaj6URnJ7qK3sbxZg&oe=699B076E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wENYB2S1fRt7eQF_rUgFGcwYP_syNkEJ1fbignjpbQwlw&oe=699AFA18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8rvsnGEZZ6IjB5eE811hbCfH25apyNM-xTJ6JrbMnTQ&oe=699B0F13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA73LUOOBrfiGWyAlJ7p-ZgRduUvAUqUNe_J2B2nUJgQ&oe=699B3179&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuWiMmPXoHGX1-LVDYohkpqzqVdD1uGl_Wt9l4RAk_1w&oe=699B2406&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wE84eW82mbZsOT3StRPa4dSYAzRWXvsGTyD9xTlDlL4yw&oe=699B31A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wH37CUdQ6sypdzYmqzRMxzZPZjKt-6EI4CkjgYgdo6MTw&oe=699B1138&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFt_IDJifXphnyaNyXXrnP50HVqX2sO2znFypClByKm7A&oe=699B2E38&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wE094p6pooPkgXImOTeVZ_0TynvoirfDuzpAlQF8W1b3A&oe=699B04C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwdhIWv9YLfPzSIDBGKCTQj1jWZ-f3c9k05FMnauF5Qw&oe=699B29CF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVMSV3_mJ5E9bibhnM0Sm2rd4X54aPIFzjMmMmzJUa_Q&oe=699B1CFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9khZABFSry1gxCx4KB1lGUkxVxuX3YCEgny47FCujVg&oe=699B2082&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrDzXTPEWp_zNujgRWxGZoKCcWyyjVsHu7-kKyNmLjuQ&oe=699B0DCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoip4ZmACQalZlpYsZy9f7rhy7F-EjV_T1b6r9AoLMUg&oe=699B14B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZm7cN5INewG4NxK9YLE7P8TEE8I_n1DekBF5tZgaMXw&oe=699AFA52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdEOvU-Hps48ric3DDsH37bi6BuVBbhfR-MY3cWljeBQ&oe=699B25D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqF3MGNTKibNiNLrYeI-JA6L4W-aFipUMexxH-WDU5_A&oe=699B19BC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIu5qSXSJESgZIWo3X4I7HKT0JUz8_H9isWoxQWKQ0VA&oe=699B1CF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfUmOToxwRYoPHgpzCDC2nBvZcI_t2SfL1xPUerrWdRA&oe=699B176F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNiE56pqs1sxepn3RRJG7MyqUITT3IypjYOKtreRjlgQ&oe=699B0BFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHU9rtFhQemUBgOAEeFPa1PQBOd2f3dUz_lGmseC3NSqw&oe=699B259A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBTpJRmPlpcBUjq_krS1CaVg_I5suEmO3q5OvP0Zmy6w&oe=699B10D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHttSRSAS9utkdsz-6czd0NDn6NM2TediNYEHqO2eSD8Q&oe=699B2CC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHaQxTGA_dsWfg-QlL12uSqhHdTM-wMstKgBN5KK5ID2A&oe=699B17EE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_p9STg6_hon2Nfs2eLRAGPTL-urXNVPGgERcPEWAwCw&oe=699AFBBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAzuNyVnOMT7LZVDMnB0DeEr4QNdsOMuVNBhsE0G67nQ&oe=699B2215&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbjtbS7m0mLVPX5Hg6p5WgdPZlFs-ADVGvd-ube2zhWg&oe=699B2F0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwqH18RN7UweXvssus6O3gsAUUlHaU6QUR_AmqehE_Kw&oe=699B0C35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHTYc3neQxAYRy4SN97xHhQeQfWwmnLK92MsMQL_1Gqw&oe=699B19C4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiVBcb1jcYc0k6cswQBKImRyc8mATqWgk1zOrYp-sS_w&oe=699B257D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ9gck6LuDkF8sqKoIvCmVxP9ISHlBkVdp130QTEoRpQ&oe=699B29A5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIWVMQhRIixvkyvo6XZSxh0hnFPJUV9uj4itfHnbgx_A&oe=699B08FF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwe3LnBMSx0BO4aQba4r49lbo5147JzVreeaJbHa4IKw&oe=699B2642&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZaKqDiOTU9fgHZ6LtXzzeGThUXW9kInh3JEANGmt9cw&oe=699B14E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBQxEXBO9lExE7z0xtfEw9X_YOG3C7e3xIAxAh4JRXZQ&oe=699B1007&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsAHV-MckU5Ci5h8ussRb7PMyLcxRzPNOACAgSSqlQhg&oe=699AFD67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_nFbtYXECenfmC4Z1bjgy2i1Z5VSNVg6WNNBzAz-YOA&oe=699B20C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9XkumUXnWvdGjL0d5MmZ6vTTElcNlgxYdUnTGiSVgnw&oe=699B001D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHph-mv6Ym6PvmkgntgCum4PiqOXN86ycSxg8D59AcDUw&oe=699B0807&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtYcTZRsK1L2av7_anoUYP9aits6Lge8srCx1wC81Ybw&oe=699B03A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMevrmJIvpbTxNMVZQ2UOHZg0bQu5F8mRVH5C5123l8g&oe=699B1408&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOFfqtub_BjiLCfisOslUW_yTEf2JI1SR1V0eJIa51eA&oe=699B1051&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRcC7mIqYvej9f14I_HoAvMMw4Ihmz8c1EzvMhQmmIrg&oe=699B221C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6TakgoY438fh4xa09NRvYf7cEbAImSBrMaVlCazyDLQ&oe=699B03F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfKk5fjg72bAGkUqvbzs6nOSAZWjEf2d2axn8Wk1_lg&oe=699B2054&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvu2lhEAAAiLxZaULGrABht71nQNaUEJLfZqAe_oyT6A&oe=699B0B17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwH5fat9ruEX8WIzyc3OUB7EZEspe_AYtwQmPoEM_gSQ&oe=699AFA7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4NP2rtjfTvq-iQCt8yGDW8V2U80K3TgFMCk4gReqN3A&oe=699B026E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdugFr59ZCl-HvxsIRduKQbSXse2Tq_KDKRL5sl12a1g&oe=699B1DDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyrX4MJuHhs9tPZdjeUfNKKJH76S3eXNz36EWcTKgKBg&oe=699B1AB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4Nfp3xoVLsKcC4uhD1tZLqweCjUmmXzV1RzMqWPblWw&oe=699B22DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDkOODS4zN1AV2P5I_ZEVXfupimRnsJEI_ZdZGfVVlmw&oe=699B0747&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9sERj_T4Tlz7LF2REj0G-zrRs_2y4KvwbCmKMS-Vq6A&oe=699B1C8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEhp3-_vVd9CAe9RWTVaHtoP0f-Z0p6nbgNivUz5t2gA&oe=699B2137&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz2ZkYSTsI9Dpu9BwnnuhKuHwoBC-fOU2j7kVwtIbLcQ&oe=699B0420&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wESaUYTMXXicBNBpR8IBbkD7mrZfZUFkxFIZqEY69_USw&oe=699B318B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wERK1LjGGF4DaL3b-D-xtzRzMSnKoiprOInSR_K1VGwAg&oe=699B07E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wG68oxoWc2g8xc6o_dGtuGTl0KQoR-jU7m6A0Pk7ow0Mw&oe=699B1492&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxuxiqsBFth0a5Xwd5Z9bWUrvzOOBj7rqCysNOH-fATQ&oe=699B14A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wFih9kpxmk4ZIiMhlMmhOiR0a7oTw93DeQ-xPBcPc9U2g&oe=699B2385&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUnqVsgVmpwKi1I9onDeTgDdiVMdgvmGlqVHJuEGA37Q&oe=699B1063&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFTx1VXlgQElFpQZpfg4bGgQcpzpmrFWyBfijrsScwwQ&oe=699B23F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 1, '2026-02-12 14:09:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5096, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"275724367827004@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T14:22:42.574Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:22:42'),
(5097, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"275724367827004@lid\",\"fromMe\":true,\"id\":\"ACC4203EC1819D1793A8E40C40B8CD5E\"},\"pushName\":\"~Johnny\",\"message\":{\"extendedTextMessage\":{\"text\":\"Veja este vídeo sobre \\\"porte de arma em 2026\\\" https:\\/\\/share.google\\/uASjkHmemoTZoBci7\",\"matchedText\":\"https:\\/\\/share.google\\/uASjkHmemoTZoBci7\",\"description\":\"Clique no link abaixo e faça parte do nosso grupo de WhatsApp 👇🏻https:\\/\\/chat.whatsapp.com\\/Ik0RaLQdm8hDz0M0bZApRrMeu Instagram: @juliocriminalista 👇🏻 https:\\/\\/instagram.com\\/juliocriminalistaGrupo do Telegram 👇🏻https:\\/\\/t.me\\/juliocriminalistaSite do meu escritório https:\\/\\/juliocriminalista.com.br❌ Não vendo armas de fogo!✅ Este canal trata de informações jurídicas pertinentes à legislação de armamentista!Julio CriminalistaAdvogado\",\"title\":\"Porte de Arma 2026\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABoAGgDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABAADBQYHAgEI\\/8QAPBAAAgEDAwIDBgMFBgcAAAAAAQIDAAQRBRIhBjETQVEHFCIyYXEjgZEVUpKxwTOCodHh8BYkNEJTVPH\\/xAAbAQACAwEBAQAAAAAAAAAAAAACAwEEBQAGB\\/\\/EADYRAAIBAgQDBAgEBwAAAAAAAAECAAMRBBIhMQVBUQciYZEGExQyM3GBsUJSwfAjgqHS4eLx\\/9oADAMBAAIRAxEAPwDJLeLKhWdsY4ZhR0dszGMxS8E4KkU\\/BF4rEsvOPMVP6fY8gJHnPfiq5ZDoRLy4ZiNDIL3CQQs5AZR3K+VCPBjkj8qudxpBDAqPtnmgtQgjQrHdRESEf2g4zSXwyOO6bSGWpS94XEqTxgeQpl4x6VJ3cPgPtY7vQgUMyc1nOGpnKY1bMLiBMg9K4EJkbagyaLdamLGxs4o0OoXy2wbnAjLk\\/kKjMeU0eG4FMTUJrNlQbn9PrK61jj5yR9QOK4fTyR+G4P0IxV+\\/Y1lJb+Jp2sWV2PONsxv+h\\/rUbc6OyNgKUfGdp7EeoNCatRd57OhwPhWJT+Fr431\\/f0mZ9SQNDagOpU7hVcMTiPxNp2Zxu8s1q+paelxC1veRZX0PBH1FQeqaPEmgva24JMeZFJ7k\\/wDzir2Hxy5Qp3vMDiPofWpF6lJroASOtxy\\/zKBSr1u9KtSeIm16WFmkdlJyD51e+mdpVVlA3cEHNZ7ocgM2Dlctzk960npkx7Y0bCtuzk+dUd5t0zaWX9nB1yB3qJ1jRo7iFopFK+jDyNXDbuiz8Pb7VH3pBjKsPi9fKjPd1nK2fQzFNYspLOdoZRnYeG9RUYwrQetIEMay7M44xVAkA3HByPKs\\/FC5DdYjKKbFYM9cXMhmkLN3OKcemGpAk5zlyjaNMSOQSCO2Kk9M1q8iZYOZ0J4jIzz9P9Ki27U5YXr6fdrcRKpde2aO15ZwOKfDVQyvlHPn\\/SalaaRHqtiq3lu0LntyNyfYiql1P01faL+JIhltGOFmUcfY+hoqD2rQ6TbBr\\/RRcc7d8c20j8sf1ou09umjyI8N7oztA42srkYI9CMHNMGFLLmnrk9JKebKrAjodPK8wXXLX3TUpowPgzuX7GlWha1o1j7QuprO29n9pdGeXPiwS\\/2dun7xk8lGfMfrkClWvRJKDNvPn\\/EEppiXFI929x9dbadNo5os13dmJbGMBu+5uATVkh6mutGf3XqK2ZFdt0c6rjH2I7ioTSOjb19Mi1C11GQWmQGKgjafQ4yQPrXE+j9TNDMsjve6fk7YvG8YBfXknHH2pFgJZuwm69O9RWeo6ZE0dwkxxyexNGER3O8h9pHcGsS9lFvdQ6osckoSHJ2q+as\\/VXVkukdRTWdta3Ezx4BCRlt2RkEfrQlrm0atgMxkv1oFjg2ADOD\\/ACrMmqX1LqG7v2Ed3ZzWsr+Uq7SBiop1xVPFsBZYhzmYmCyUw3nRMgodhiqywYw1a\\/7LrXpXW+njZ3elW0moRcTPIMu2ezBu4H0HashcYFHdJ6hcaf1JYyWjlXaQRkZ+YHjBpybxtFgri8nPbR7OBpWlyaloXiPZxMGmgY7jEv7wPcj\\/ABFZz7P+g9S611a0s7CSGJJnIeVyT4SgZLEDn7epxX0Pr2qzPp9zAyr4c0bI4POQRUt7A7y2s\\/ZLYpZRql1GZGmkKgH4nJzn7cc+lauD7wyiI4iio2ZdpaOlundD9mugrpmiQB7twDPO4zJK2Pmc\\/wAlHA\\/mqpvU3XWnaNZe8alHP73MSYLXxF8WbJ+YkE7F88nBPIHqFV4BZmEsYPo2kwWgMmmSC2DD8SFviR\\/XjyrvqWRbHR5naOKGN\\/haRRt\\/IetMdIXo918SbJwM1QfbBfate30TwxlrKJeEU8K31H2rK30nonAXWD6ffM2tRw26uNnxb24q0dZ6Ms1s2ourpePDtiJ+Tdjgk9weax7ROpr201CH3mNWRTjGPL61umn9Sr1RbxJaCJVt0AdtmVH0z60TKFgIwqqRM005tWe2SHW5DJJbkqjNyxH1PmKekHpUvrLmTUJyWDndjIGO3FRkgrHrPnqExJFtIE4xmhnHNGyChpBXKYJEDl+WpX2d2Qv+udLjc\\/BHIZm\\/uAt\\/MCoq4+U0d0Bfe49caVJnCvL4R+oYFf61bpC4MEWzC82bq7SZrbS728hULOiF4spv5HYY+vb86q\\/skuL2+n1S3169Frp0tu2+RAsaIQdoHpjJ7ef2rYcRvYsgIYMuDnmsT9oa3sLx2UDGK2VixKD5j5foP61bo1Ag2jcTRNTW8r3tR1rUF1O7s7eKBNK3Bnu9PJMVwxA5ZvXyCntjjNKlotxPYXcbSN48Dnw5YZviV0PDAg0qs+035SgcPbnJaTWX0pEt8qmR8TMcfkB+dEftXT7zUo4Zp1cuw3KpBGOAST9ueO1VnqzS7jVb+Wfw3SJCMx5IHpS6W6e0q8V2uLWXxVHdJmUH\\/fNLsF0lkM9XcyzXXRGgXtwtz4M0e5WdUjfAYDtx+X+NTMNknTy30KRiKFuUQdu3+lUnqCyvummstQ0u\\/nuLJ28PwZ3LFPsR3FWXVtQubyGKWdNjtCGfjj\\/f+VRUF1vDpOaT28JATPudmJ5JzQ0h5p4xyuMrG7D1Ck008E\\/\\/AIZf4TWDYk3gmqgOrCCyHvQ0lFtbz+UEv8BoeS2uP\\/Xl\\/gNNUQDWpn8Q85G3LcUxoJ3dVaON4T\\/nIviJwB8Yom7tbnnFvMf7hp3ovpy91vrDTbYwyQwLMss0rqVCopyeT58YH1rSwy2BJiWrJmHeHnPptJ41corgntiq71ZYx3UeWTn1qNujqVhfsGZJIA2A6Hn8+9TVrH7+A0rgZ8icClLe01TVpPpmHnM+h0RpJXYIdo4FKtRmtbWGIBCmAO+aVFeEBSt7w85ncmoW0mj4QBhLlMBc5x\\/vNQejye5qQqDk7uSfr2\\/Sq30prQkt\\/CmdAihsbjjaD\\/Tip62uVf8A6Ulo0JUse+SM96vPoM0pYOkcRVXDjdjaWBra0udPjD3sHzK6pIc4IOTx5VHdTTBpkjtGEilQzunI3egqwWvSsFzplpKt9OL25spb1YzbDwVWMuCGk3ZBPhn\\/ALccigP+FtV8OFvCiLSNEhjEyl4\\/Fx4e9c5UHI7+ozVSq7umW289fT9HOHFiDXII01sPDmOsPl\\/akDziyj8SNQogUhPD24XyyG3Z3dyBiuZJtfUylba0YfFsCjkfEAO7jPw5Pl\\/QtP03fQaZqFw95bB7KSOJoI7lXYlt3HB7jbjHnz6Gg9W0nUtKjEl2y7fEML+HOr+HIBko2CcN9D9fQ0NyB7s+fp2VLUfKuMpk350zc6A\\/n10sdOsl7iTV47pmhhimhfYFXgbDxuOcgkct+g4700Zdd8Ngbe3MgUEbQArHfyCS5I+H6H7jtXEPTd+NJvby5m8N4rWO4jhSZWkO+RFUMoOVyr5HHp60Bq2k6lpUYe7dSviGFjFOsmyQd0baThh6f5GuJIFyIFLspV29WuMpkg2+GdbAH8+um8PkuOoBDI0dnas+07FPBJ3DGfjxjbnjPfzoq6n1ONr1oraNo0hZocDJZ8DA+bnncMYHYc88R76LOvSq6v74\\/ilgxtsHIhLFBJnP76lcY9K6bprV0mkikltkeKITyhrxB4SEqAW5+HO9eDzU3PSQeylCdcXTFiR8MjUWv+Pl+sfE+u7QTa2pJfG3sdvw8n4zju3bOMAc5zXj3GvBGKWduxEYI3YUlt3IxvOOM+Z+\\/lQ1907rFjt94aFczi2bF2hEbkEgMd2FBAJBPGBQeoaff2N1bwSP4rXKh4GglEiygsVG0g88gj7ioLEbrGU+ydahGTF0z\\/If75OW02rteqtxawpbeIwLKedmDtPzcHOPI+fbzVAP01rHjrCDDIWEoLJdIyIY13OrNnAIHPNKuOY8oh+yOlVIJx6L8k\\/3mPda9K3XRuvz6bezK6qolhnTgSxns2PLsQR6inOg9TubrWJYCWeExs2M9iOc4+wNKlV6ooswm7wyu1LF0HXfMPvaanedQX9xpNnpouJorO3hMRijlYJJl2fLLnBPxY\\/IVIjq+dWSZLK2W7Z7driYFszCEqUBGcLkqpOO+PKlSrNzt1n19sBh2FinU+Zufnrr9B0kfb65LDBqcXgxsL2VJ92SDFIhYqR6\\/OeDT\\/UvU1zryqLhXQmQzOPeJXUsf3VZiFHfAA8\\/SlSrs5taT7FQ9YKuXvD59APsBHn6sma1mVbK3S8mt4beS7BbcwiZChwTtB\\/DUHjnFMdS9S3GvBfHR0\\/EaVgbiWRSx\\/dVmIUd8ADz70qVcXYi0FOH4em4dV1Hifl18BpsOUebq6\\/a2ksykX7PazFmLbHwqAoAYHvu3Dd96FueoJ7ifVZWhjB1C3S3cDPwhWjII+v4Y\\/U0qVcXY85KYDDobqgH\\/QfO4GvhDV6vuReSXBtLdzJdx3ZVs4ykbxgDn0cnPcEChNZ6jutS1DT7wr4c1iipEzSNIx2yM4LMxJJy3+FKlXF2Ol5CcPwyMHVNQLc9rW+0Ovusru7uWmMJ+KKeNle4llGZUKEqGYhQATgD880qVKuLk7wqWCoURamtvP8AfOf\\/2Q==\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/593310300_1270928851553692_2187452074129280676_n.enc?ccb=11-4&oh=01_Q5Aa3wHe6bqFgcnngVTqjRrhXfKqW9WbuoQLH58nawzblFm7eQ&oe=69B577F1&_nc_sid=5e03e0\",\"thumbnailSha256\":\"KzB3gbDwn5ffstj4eNzv18Rnwa+9nlvNglfslSw0wrE=\",\"thumbnailEncSha256\":\"TM2kMv7h\\/yV06ckK4wV6raxfObmnmfH2g6bvhn9mBHg=\",\"mediaKey\":\"SYwPcq5zRYoUbvSeIr1IgvDCU+BtmSN0XWo2jm7xo\\/Q=\",\"mediaKeyTimestamp\":\"1770916961\",\"thumbnailHeight\":415,\"thumbnailWidth\":739,\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770916962,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T14:22:42.576Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:22:42'),
(5098, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"275724367827004@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/615873262_2057551808134690_6321914705462593634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEGBX9W-Q-hH3slHSpTmnYIPdm-6xdOkXfVXV_-oDHyg&oe=699B0E99&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:22:42.778Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:22:43'),
(5099, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"275724367827004@lid\",\"id\":\"ACC4203EC1819D1793A8E40C40B8CD5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770916964514,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T14:22:44.515Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:22:44'),
(5100, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515302579FF237CDFD4BB8E44760F2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770917648412,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:08.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:08'),
(5101, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A52175622850F1DE27D4440F95336909\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770917648420,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:08.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:08'),
(5102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A52175622850F1DE27D4440F95336909\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770917648420,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:08.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:09'),
(5103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515302579FF237CDFD4BB8E44760F2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770917648412,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:08.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:09'),
(5104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515302579FF237CDFD4BB8E44760F2F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770917648923,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:08.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:09'),
(5105, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515302579FF237CDFD4BB8E44760F2F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770917648923,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:08.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:09'),
(5106, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A52175622850F1DE27D4440F95336909\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770917656376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:16.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:16'),
(5107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A52175622850F1DE27D4440F95336909\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770917656376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:16.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:16'),
(5108, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:40.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:40'),
(5109, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:40.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:40'),
(5110, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:42.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:42'),
(5111, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:42.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:42'),
(5112, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:43.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:43'),
(5113, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:43.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:44'),
(5114, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:53.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:34:54'),
(5115, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:34:53.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:34:54'),
(5116, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:03.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:04'),
(5117, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:03.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:04'),
(5118, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:14.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:14'),
(5119, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:14.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:14'),
(5120, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:20.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:20'),
(5121, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:20.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:20'),
(5122, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"presences\":{\"79229429538831@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:20.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:21'),
(5123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:20.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:21'),
(5124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":false,\"id\":\"3A4584B3372EE1290278\"},\"pushName\":\"Jeferson Henrique\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634793694_1697813821595732_891300060002731870_n.enc?ccb=11-4&oh=01_Q5Aa3wHGjmj8Sbo397x6QC4ff9grfSeswttXZwhUZnQl6ja9iw&oe=69B56A29&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"LkMEQkv5SWqE+18PXNdRRo\\/DU5olHe2fwWzB5BPc8uM=\",\"fileLength\":\"74412\",\"seconds\":36,\"ptt\":true,\"mediaKey\":\"2iHHjufVp2MXejWkkANeRXw3riF7OFKnlF9LJzCTJEg=\",\"fileEncSha256\":\"dmFtIZJ8Nzhs9W4DPxJX1yQ4\\/S4OGGy5+Y0b+pL8yUE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634793694_1697813821595732_891300060002731870_n.enc?ccb=11-4&oh=01_Q5Aa3wHGjmj8Sbo397x6QC4ff9grfSeswttXZwhUZnQl6ja9iw&oe=69B56A29&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770917720\",\"streamingSidecar\":\"585zHzH15UUO9BZvrZJ\\/ppwBfMQ=\",\"waveform\":\"EF1JCUtCBwEAOEtGVgsSGzUGQCI4OAUCRmRHWWNkRA5iWlVhXVEPBgAGFgRDShsmICNOMQUBF1xRVFFGQxACAQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770892281\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H7DeK7k4BfwYY54fHYCyccsFL\\/\\/mce66FxSHGx5VI0s=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770917721,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:21.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:21'),
(5125, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:21.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:21'),
(5126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:21.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:21'),
(5127, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":false,\"id\":\"3A4584B3372EE1290278\"},\"pushName\":\"Jeferson Henrique\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634793694_1697813821595732_891300060002731870_n.enc?ccb=11-4&oh=01_Q5Aa3wHGjmj8Sbo397x6QC4ff9grfSeswttXZwhUZnQl6ja9iw&oe=69B56A29&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"LkMEQkv5SWqE+18PXNdRRo\\/DU5olHe2fwWzB5BPc8uM=\",\"fileLength\":\"74412\",\"seconds\":36,\"ptt\":true,\"mediaKey\":\"2iHHjufVp2MXejWkkANeRXw3riF7OFKnlF9LJzCTJEg=\",\"fileEncSha256\":\"dmFtIZJ8Nzhs9W4DPxJX1yQ4\\/S4OGGy5+Y0b+pL8yUE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634793694_1697813821595732_891300060002731870_n.enc?ccb=11-4&oh=01_Q5Aa3wHGjmj8Sbo397x6QC4ff9grfSeswttXZwhUZnQl6ja9iw&oe=69B56A29&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770917720\",\"streamingSidecar\":\"585zHzH15UUO9BZvrZJ\\/ppwBfMQ=\",\"waveform\":\"EF1JCUtCBwEAOEtGVgsSGzUGQCI4OAUCRmRHWWNkRA5iWlVhXVEPBgAGFgRDShsmICNOMQUBF1xRVFFGQxACAQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770892281\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H7DeK7k4BfwYY54fHYCyccsFL\\/\\/mce66FxSHGx5VI0s=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770917721,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:21.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:21'),
(5128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:21.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:22'),
(5129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:21.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:22'),
(5130, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581619619_1191351396228658_505044026482262118_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWABSh8vCz0E7CvyoTKP5rHPX4_4L098BNvR9pb6mOtA&oe=699B1EA3&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:22.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:35:22'),
(5131, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581619619_1191351396228658_505044026482262118_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWABSh8vCz0E7CvyoTKP5rHPX4_4L098BNvR9pb6mOtA&oe=699B1EA3&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:35:22.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:35:22'),
(5132, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.237Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5133, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.242Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5134, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"pqPp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.234Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5135, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.243Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5136, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.236Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5137, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.232Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5138, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.231Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:17'),
(5139, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.260Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:18'),
(5140, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.247Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:18'),
(5141, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.271Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:18'),
(5142, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.241Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:18'),
(5143, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.257Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:18'),
(5144, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.244Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:19'),
(5145, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.235Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:19'),
(5146, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"qEvO\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.250Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:19'),
(5147, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.255Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:19'),
(5148, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"R5+i\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.238Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:19'),
(5149, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.246Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:20'),
(5150, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.245Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:20'),
(5151, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.240Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:20'),
(5152, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.262Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:20'),
(5153, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.272Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:20'),
(5154, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.258Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:21'),
(5155, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-12T14:46:17.608Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 14:46:21'),
(5156, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.274Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:21'),
(5157, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.276Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:21'),
(5158, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.265Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:21'),
(5159, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\\/GO0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.269Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:22'),
(5160, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.264Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:22'),
(5162, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.228Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:22'),
(5163, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.230Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:22'),
(5164, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\\/GO0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.267Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:23'),
(5165, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"qEvO\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.252Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:23'),
(5166, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-12T14:46:18.922Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 14:46:23'),
(5167, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T14:46:17.253Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:46:23'),
(5168, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"xYts\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5169, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"2NqR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5171, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Iuv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5QDz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5174, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"CK9g\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5175, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5QDz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:21'),
(5179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:22'),
(5180, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:22'),
(5181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:22'),
(5182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:22'),
(5183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5QDz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:23'),
(5185, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Iuv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:23'),
(5186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"2NqR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:23'),
(5187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"xYts\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:23'),
(5188, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:23'),
(5189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:24'),
(5190, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"2NqR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:24'),
(5191, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 14:52:24'),
(5192, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:24'),
(5193, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"CK9g\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:24'),
(5194, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5QDz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:25'),
(5195, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 14:52:25'),
(5196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:25'),
(5197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:25'),
(5198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:25'),
(5199, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:26'),
(5200, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:22.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 14:52:26'),
(5201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"2NqR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:26'),
(5202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:26'),
(5203, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:26'),
(5204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:27'),
(5205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:27'),
(5206, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:22.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 14:52:27'),
(5207, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"96YV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 14:52:27'),
(5208, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 14:52:27'),
(5209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"96YV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T14:52:21.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 14:52:28'),
(5210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770919992777,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:13:12.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:13:13'),
(5211, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770919992789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:13:12.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:13:13'),
(5212, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770919992777,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:13:12.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:13:13'),
(5213, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770919992789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:13:12.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:13:13'),
(5214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:17:32'),
(5215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":false,\"id\":\"3A58FD33D08FE3ACF27E\"},\"pushName\":\"Jeferson Henrique\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591019938_1581177516629990_7000227727350405277_n.enc?ccb=11-4&oh=01_Q5Aa3wFmZYyg6rPu7bpWFLfGWXm2YsQk4mLapuDfSuxHyY7_HA&oe=69B57105&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PhucfHlqNEIIL\\/Vh0j0qmOLKcHJwLE1KReWxB82Ysmw=\",\"fileLength\":\"7768\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"NXozVtk\\/WOeY+swD1a+MBCEnpE8wcCdH7j9wQdRt2rw=\",\"fileEncSha256\":\"DScKnWotcL4zpA64W1PUcSpXYnWBzACbUrd8UsA2770=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591019938_1581177516629990_7000227727350405277_n.enc?ccb=11-4&oh=01_Q5Aa3wFmZYyg6rPu7bpWFLfGWXm2YsQk4mLapuDfSuxHyY7_HA&oe=69B57105&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770920248\",\"streamingSidecar\":\"1PJ1okIOqnLi2w==\",\"waveform\":\"AAECAwMDAgICDCZASkZDQD07QEdNVV1jWlFLTlJWW2FhXFdNQDM+UGJUQzM5QUZBPDcyLTFAT00\\/MCYeFhENCg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770892281\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"heQK7\\/taPbw0LroXem\\/+nYa0gC7dhWVOO5ar212MZug=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770920252,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:17:32'),
(5216, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581619619_1191351396228658_505044026482262118_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWABSh8vCz0E7CvyoTKP5rHPX4_4L098BNvR9pb6mOtA&oe=699B1EA3&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:17:33'),
(5217, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:17:33'),
(5218, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":false,\"id\":\"3A58FD33D08FE3ACF27E\"},\"pushName\":\"Jeferson Henrique\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591019938_1581177516629990_7000227727350405277_n.enc?ccb=11-4&oh=01_Q5Aa3wFmZYyg6rPu7bpWFLfGWXm2YsQk4mLapuDfSuxHyY7_HA&oe=69B57105&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PhucfHlqNEIIL\\/Vh0j0qmOLKcHJwLE1KReWxB82Ysmw=\",\"fileLength\":\"7768\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"NXozVtk\\/WOeY+swD1a+MBCEnpE8wcCdH7j9wQdRt2rw=\",\"fileEncSha256\":\"DScKnWotcL4zpA64W1PUcSpXYnWBzACbUrd8UsA2770=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591019938_1581177516629990_7000227727350405277_n.enc?ccb=11-4&oh=01_Q5Aa3wFmZYyg6rPu7bpWFLfGWXm2YsQk4mLapuDfSuxHyY7_HA&oe=69B57105&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770920248\",\"streamingSidecar\":\"1PJ1okIOqnLi2w==\",\"waveform\":\"AAECAwMDAgICDCZASkZDQD07QEdNVV1jWlFLTlJWW2FhXFdNQDM+UGJUQzM5QUZBPDcyLTFAT00\\/MCYeFhENCg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770892281\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"heQK7\\/taPbw0LroXem\\/+nYa0gC7dhWVOO5ar212MZug=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770920252,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:17:33'),
(5219, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:17:33'),
(5220, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581619619_1191351396228658_505044026482262118_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWABSh8vCz0E7CvyoTKP5rHPX4_4L098BNvR9pb6mOtA&oe=699B1EA3&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:17:33'),
(5221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:17:32.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:17:33'),
(5222, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:44'),
(5223, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784464743@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AADA14521D3E99D8E23\"},\"pushName\":\"Elisi\",\"message\":{\"conversation\":\"Boa tarde está sem sinal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"a2EF6E2YXr\\/\\/lw==\",\"senderTimestamp\":\"1758369793\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SBqasP6JI2H\\/ggjaOLTk0IHIFDGr\\/0fApOPQU4e7feo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770920564,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:44'),
(5224, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784464743@s.whatsapp.net\",\"pushName\":\"Elisi4743 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:45'),
(5225, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:45'),
(5226, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:45'),
(5227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784464743@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AADA14521D3E99D8E23\"},\"pushName\":\"Elisi\",\"message\":{\"conversation\":\"Boa tarde está sem sinal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"a2EF6E2YXr\\/\\/lw==\",\"senderTimestamp\":\"1758369793\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SBqasP6JI2H\\/ggjaOLTk0IHIFDGr\\/0fApOPQU4e7feo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770920564,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:45'),
(5228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784464743@s.whatsapp.net\",\"pushName\":\"Elisi4743 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:45'),
(5229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:44.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:45'),
(5230, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784464743@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A97E80C1023F2552063\"},\"pushName\":\"Elisi\",\"message\":{\"conversation\":\"A tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"a2EF6E2YXr\\/\\/lw==\",\"senderTimestamp\":\"1758369793\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W9UwtTnEt85HN+QrKxlAF1TC6L8H+XLlyPIdixLUQtc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770920569,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:49.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:49'),
(5231, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:49.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:49'),
(5232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784464743@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A97E80C1023F2552063\"},\"pushName\":\"Elisi\",\"message\":{\"conversation\":\"A tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"a2EF6E2YXr\\/\\/lw==\",\"senderTimestamp\":\"1758369793\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W9UwtTnEt85HN+QrKxlAF1TC6L8H+XLlyPIdixLUQtc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770920569,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:49.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:50'),
(5233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:49.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:50'),
(5234, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:49.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:50'),
(5235, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:49.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:50'),
(5236, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784464743@s.whatsapp.net\",\"pushName\":\"Elisi4743 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:50.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:22:50'),
(5237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784464743@s.whatsapp.net\",\"pushName\":\"Elisi4743 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94panKeofWfBMiU6aoqq4YdskpXT-BipZT6rfQXdvvw&oe=699B120C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:22:50.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:22:50'),
(5238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"op+p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:04'),
(5239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"op+p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:04'),
(5240, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76Ha\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:04'),
(5241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:04'),
(5242, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:04'),
(5243, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:04'),
(5244, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 15:44:04'),
(5245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"op+p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:04'),
(5246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"76Ha\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:04'),
(5247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"op+p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:04'),
(5248, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:04.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:05'),
(5249, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:04.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:05'),
(5250, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:05'),
(5251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:05'),
(5252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:44:05'),
(5253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:44:03.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:44:06'),
(5254, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"99763601055809@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:48.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:49'),
(5255, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"99763601055809@lid\",\"fromMe\":true,\"id\":\"A5B116B3A8CEFB2D670D23B60AB0A9D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770922308,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:48.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:49'),
(5256, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"99763601055809@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:49.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:49'),
(5257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"99763601055809@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:48.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:49'),
(5258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"99763601055809@lid\",\"fromMe\":true,\"id\":\"A5B116B3A8CEFB2D670D23B60AB0A9D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770922308,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:48.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:49'),
(5259, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"99763601055809@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:49.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:49'),
(5260, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A5B116B3A8CEFB2D670D23B60AB0A9D4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922310084,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:50.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:50'),
(5261, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A5B116B3A8CEFB2D670D23B60AB0A9D4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922310084,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:50.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:50'),
(5262, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"99763601055809@lid\",\"fromMe\":true,\"id\":\"A566C85D019960386C9744E51FE005A3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual teu app?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770922317,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:57.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:57'),
(5263, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"99763601055809@lid\",\"fromMe\":true,\"id\":\"A566C85D019960386C9744E51FE005A3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual teu app?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770922317,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:57.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:58'),
(5264, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"99763601055809@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:57.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:58'),
(5265, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"99763601055809@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:57.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:58'),
(5266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"99763601055809@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:58.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:58'),
(5267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"99763601055809@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:58.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:58');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5268, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A566C85D019960386C9744E51FE005A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922318785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:58.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:51:58'),
(5269, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A566C85D019960386C9744E51FE005A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922318785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:51:58.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:51:59'),
(5270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A566C85D019960386C9744E51FE005A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770922375961,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:52:55.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:52:56'),
(5271, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A566C85D019960386C9744E51FE005A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770922375961,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:52:55.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:52:56'),
(5272, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A5B116B3A8CEFB2D670D23B60AB0A9D4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770922375953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:52:55.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:52:56'),
(5273, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A5B116B3A8CEFB2D670D23B60AB0A9D4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770922375953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:52:55.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:52:56'),
(5274, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784464743@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAA1C234E37424A368A\"},\"pushName\":\"Elisi\",\"message\":{\"conversation\":\"Voltou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"a2EF6E2YXr\\/\\/lw==\",\"senderTimestamp\":\"1758369793\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eD948XgKnK6ARe4TCBQSNiISHhMB74rAePmNAk5RPBU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770922388,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:08.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:53:08'),
(5275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554784464743@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAA1C234E37424A368A\"},\"pushName\":\"Elisi\",\"message\":{\"conversation\":\"Voltou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"a2EF6E2YXr\\/\\/lw==\",\"senderTimestamp\":\"1758369793\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eD948XgKnK6ARe4TCBQSNiISHhMB74rAePmNAk5RPBU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770922388,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:08.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:09'),
(5276, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:08.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:53:09'),
(5277, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:08.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:09'),
(5278, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:09.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:53:09'),
(5279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784464743@s.whatsapp.net\",\"pushName\":\"Elisi4743 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:09.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:53:09'),
(5280, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554784464743@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:09.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:09'),
(5281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554784464743@s.whatsapp.net\",\"pushName\":\"Elisi4743 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:53:09.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:10'),
(5282, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433:20@lid\",\"id\":\"AC7285EF9C694B362F30CA36314323FE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922408450,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T15:53:28.450Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:28'),
(5283, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433:20@lid\",\"id\":\"ACBF6CC5D58CB70A1C43E597021B58BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922408457,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T15:53:28.458Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:28'),
(5284, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433:20@lid\",\"id\":\"AC91AD54F274C0C55F664F62458BD874\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922408464,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T15:53:28.464Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:28'),
(5285, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"241888380645433:20@lid\",\"id\":\"AC4636AB6FF11907E6E986C04A19D6C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922408473,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T15:53:28.473Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:53:28'),
(5286, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:56:08.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:56:09'),
(5287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:56:08.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:56:09'),
(5288, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"99763601055809@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:04.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:57:04'),
(5289, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"99763601055809@lid\",\"fromMe\":true,\"id\":\"A51FAB02A4695C71734BCAA78D24237A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wHC0C4FVe3kcOTjbeUDGaeprO9_V1s6KpYnexaiEH9iwg&oe=69B59823&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wHC0C4FVe3kcOTjbeUDGaeprO9_V1s6KpYnexaiEH9iwg&oe=69B59823&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1770922623650\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770922624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:04.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:57:04'),
(5290, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"99763601055809@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:04.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:57:05'),
(5291, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"99763601055809@lid\",\"fromMe\":true,\"id\":\"A51FAB02A4695C71734BCAA78D24237A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wHC0C4FVe3kcOTjbeUDGaeprO9_V1s6KpYnexaiEH9iwg&oe=69B59823&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wHC0C4FVe3kcOTjbeUDGaeprO9_V1s6KpYnexaiEH9iwg&oe=69B59823&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1770922623650\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770922624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:04.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:57:05'),
(5292, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"99763601055809@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:05.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:57:05'),
(5293, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"99763601055809@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/437898563_1058201655642257_1104596247753129545_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWxAFCMPmAK9q6MiE1CCMZWWvRkA6QQpXeqbukUYttVg&oe=699B4A4C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:05.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:57:05'),
(5294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A51FAB02A4695C71734BCAA78D24237A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922626700,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:06.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:57:06'),
(5295, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A51FAB02A4695C71734BCAA78D24237A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922626700,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:57:06.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:57:06'),
(5296, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:12.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:59:13'),
(5297, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A515832A68DA2FE2075CBB930EFFF9F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1DLTAtUg-uKPmjAuqR-35,00\",\"matchedText\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1DLTAtUg-uKPmjAuqR-35,00\",\"previewType\":\"NONE\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770922752,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:12.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:59:13'),
(5298, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:12.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:59:13'),
(5299, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A515832A68DA2FE2075CBB930EFFF9F9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1DLTAtUg-uKPmjAuqR-35,00\",\"matchedText\":\"https:\\/\\/link.infinitepay.io\\/jtvplay\\/VC1DLTAtUg-uKPmjAuqR-35,00\",\"previewType\":\"NONE\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770922752,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:12.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:59:13'),
(5300, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:13.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:59:13'),
(5301, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:13.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:59:14'),
(5302, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515832A68DA2FE2075CBB930EFFF9F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922753464,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:13.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:59:14'),
(5303, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515832A68DA2FE2075CBB930EFFF9F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770922753464,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:13.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:59:14'),
(5304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515832A68DA2FE2075CBB930EFFF9F9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770922758386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:18.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 15:59:18'),
(5305, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A515832A68DA2FE2075CBB930EFFF9F9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770922758386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T15:59:18.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 15:59:18'),
(5306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5633B7F77CD1F6CD959306D52BDDE91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770924467534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:27:47.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 16:27:47'),
(5307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5633B7F77CD1F6CD959306D52BDDE91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770924467534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:27:47.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:27:48'),
(5308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554796155646:7@s.whatsapp.net\",\"id\":\"3EB0AEC5B9BF81B262DCFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770924498807,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:28:18.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 16:28:18'),
(5309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554796155646:7@s.whatsapp.net\",\"id\":\"3EB0AEC5B9BF81B262DCFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770924498807,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:28:18.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:28:19'),
(5310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554796155646:7@s.whatsapp.net\",\"id\":\"3EB04FFE70B8434E99F8BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770924498800,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:28:18.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 16:28:19'),
(5311, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554796155646:7@s.whatsapp.net\",\"id\":\"3EB04FFE70B8434E99F8BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770924498800,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:28:18.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:28:19'),
(5312, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A51FAB02A4695C71734BCAA78D24237A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770925068555,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:37:48.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 16:37:49'),
(5313, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"99763601055809@lid\",\"id\":\"A51FAB02A4695C71734BCAA78D24237A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770925068555,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T16:37:48.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:37:49'),
(5314, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799214962@s.whatsapp.net\",\"pushName\":\"Corretora Araújo Imoveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T16:46:22.617Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:46:22'),
(5315, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554799214962@s.whatsapp.net\",\"pushName\":\"Corretora Araújo Imoveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T16:46:22.795Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:46:23'),
(5316, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T16:58:21.034Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:21'),
(5317, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"156208631681161@lid\",\"fromMe\":false,\"id\":\"3EB0312E7D363B1CEE9132\"},\"pushName\":\"loja Área 51\",\"message\":{\"conversation\":\"Boa tarde amigão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"kHBx7P7t3BhUcA==\",\"senderTimestamp\":\"1770409501\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DttsFitqGqB1UV4HKC00edV8yuvbUdTtYKXxDBzTr9s=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770926301,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T16:58:21.199Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:21'),
(5318, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T16:58:21.198Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:21'),
(5319, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T16:58:21.379Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:21'),
(5321, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"156208631681161@lid\",\"fromMe\":false,\"id\":\"3EB04A7CBD406FF81E3FD7\"},\"pushName\":\"loja Área 51\",\"message\":{\"conversation\":\"tudo certo?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"kHBx7P7t3BhUcA==\",\"senderTimestamp\":\"1770409501\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KeaN3rwD1Y3w9QQXj7tOMLSYs+LRMJNHi\\/XOXIiYxwE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770926304,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T16:58:24.585Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:24'),
(5322, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T16:58:24.583Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:24'),
(5323, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T16:58:24.758Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:24'),
(5324, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T16:58:24.928Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:24'),
(5325, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T16:58:30.685Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:30'),
(5326, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T16:58:30.866Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:30'),
(5327, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"156208631681161@lid\",\"fromMe\":false,\"id\":\"3EB0DF8D2BAAD4AA28A6D8\"},\"pushName\":\"loja Área 51\",\"message\":{\"conversation\":\"desculpa a demora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"kHBx7P7t3BhUcA==\",\"senderTimestamp\":\"1770409501\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oJIpRJdO9L3htpIo1RZUNLEEHlkyhOe2QmKywClX3KA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770926310,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T16:58:30.687Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:31'),
(5328, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T16:58:31.038Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:58:31'),
(5329, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T16:59:02.099Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:59:02'),
(5330, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T16:59:02.281Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:59:02'),
(5331, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"156208631681161@lid\",\"fromMe\":false,\"id\":\"3EB0706543041919A2B3B9\"},\"pushName\":\"loja Área 51\",\"message\":{\"conversation\":\"como teve reajuste na virara de mês, demorou para eu receber a tabela atualizada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"kHBx7P7t3BhUcA==\",\"senderTimestamp\":\"1770409501\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fq39YYecrs8hfkofpeBWtazrRN0zZs+3DfZxoPH4MBE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770926341,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T16:59:02.100Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:59:02'),
(5332, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T16:59:02.452Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 16:59:02'),
(5333, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"156208631681161@lid\",\"fromMe\":false,\"id\":\"3EB053402BA0F0CE0A167B\"},\"pushName\":\"loja Área 51\",\"message\":{\"conversation\":\"Pistola GX2 calibre\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"kHBx7P7t3BhUcA==\",\"senderTimestamp\":\"1770409501\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PMlSCDIC2X7WqsdRFKXrLbuMmYXOXj4+mXQFoTMJVmY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770926421,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T17:00:21.170Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:00:21'),
(5334, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T17:00:21.169Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:00:21'),
(5335, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:00:21.351Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:00:21'),
(5336, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T17:00:21.522Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:00:21'),
(5337, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"156208631681161@lid\",\"pushName\":\"loja Área 51\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546521318_1307751204346518_7766774955530514065_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXz0wnUChxtV3ToSaslFu9qfpUldlHP_DaCVZ7eZdqhA&oe=699B47C0&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:00:41.412Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:00:41'),
(5338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5CA967F865CA30AD2C66F30C3C40A4F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770926807541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:06:47.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:06:47'),
(5339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A505F218C14EE28C5DF9FB7D7AD7B87C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770926807532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:06:47.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:06:47'),
(5340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A5CA967F865CA30AD2C66F30C3C40A4F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770926807541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:06:47.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:06:48'),
(5341, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231937008476412@lid\",\"id\":\"A505F218C14EE28C5DF9FB7D7AD7B87C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770926807532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:06:47.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:06:48'),
(5342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:12:29'),
(5343, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC0F41804064F23205719B6D5213D771\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Boa tarde \\nTeria como você bloquear e tirar da grade de canais os canais erótico?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/ICCvIoK0\\/e\\/TeuFawFIr+MzpMHCIS97AcjoueC00qU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770927148,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:12:29'),
(5344, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:12:29'),
(5345, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC0F41804064F23205719B6D5213D771\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Boa tarde \\nTeria como você bloquear e tirar da grade de canais os canais erótico?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/ICCvIoK0\\/e\\/TeuFawFIr+MzpMHCIS97AcjoueC00qU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770927148,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:12:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5346, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:12:29'),
(5347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:12:29'),
(5348, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:29.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:12:29'),
(5349, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:12:29'),
(5350, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:28.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:12:29'),
(5351, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:12:29.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:12:30'),
(5352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC7AA634CFBC92893F0394E75E7D4E5F\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Não queria que eles ficasse nem na grade de pesquisa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lW1rkRNBqsTdXem4Ws0TuKZH8fPTJVcNr4q1IYutFVw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770927185,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:05.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:05'),
(5353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:05.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:05'),
(5354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC7AA634CFBC92893F0394E75E7D4E5F\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Não queria que eles ficasse nem na grade de pesquisa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lW1rkRNBqsTdXem4Ws0TuKZH8fPTJVcNr4q1IYutFVw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770927185,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:05.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:05'),
(5355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:05.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:05'),
(5356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:05.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:06'),
(5357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:05.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:06'),
(5358, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:06.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:06'),
(5359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:06.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:06'),
(5360, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:21.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:21'),
(5361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC084D5BA47F0E250D28842FD18FF604\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Não sei se deu pra entender\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vfKdC9ZqHLO8qLaMN8DyOQIYxPTQNL68tD6RE+bEg5Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770927201,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:21.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:21'),
(5362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:21.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:21'),
(5363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC084D5BA47F0E250D28842FD18FF604\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Não sei se deu pra entender\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vfKdC9ZqHLO8qLaMN8DyOQIYxPTQNL68tD6RE+bEg5Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770927201,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:21.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:21'),
(5364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:21.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:22'),
(5365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:21.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:22'),
(5366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:22.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:13:22'),
(5367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCUc5a4dPysGZ1lxelCk-Znjx_HWgGQdVaN7h5GFwdKw&oe=699B2D1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:13:22.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:13:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5368, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGrQRC1JdijsC4kysZeom0SIdeVU23iRcDR6EFs5Fb1Q&oe=699B425F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsgd-5E7MUoaQfv3Ktz5LXyKlh_gR1RHS8-U7QzAXysg&oe=699B481B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjZds3U1oznvs9qMhmuDLFTyp6zRuE6et8d8fiZ3HP1w&oe=699B2FE6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wErMU5YR0g6H5j_UTGsDWcwBb3e784Wh_9Ci4T0iRpe7w&oe=699B2A19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRhGZdLpTkJVuWzsAm1oMLlPhLsznQhFLGyCGQWmTRrg&oe=699B3477&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWDgGptxbuWBhlenav7-4LZ0iLBTe0qIuZewhDMMPBRg&oe=699B48A8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtf1YTEGCgLOB9b-6SMbnD7OeqA7lhDavmtTLyoYmMEg&oe=699B5140&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEF4u4gVhGWswHXKXlS9yb8qSkNq42jj1WawjbVbzC1HQ&oe=699B3283&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp_6dowaADZ44kQIVzSUsENiX0tLEHwdJzffYwaSQ7ww&oe=699B519C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuhIQOc6Ah3GcJnaMVb94YcJtYYvJcP6bb_gkHT78jkA&oe=699B2995&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAb4yvns9UG5zaih9Axh-iIAvfMgkctPlOfER7UJWktQ&oe=699B4FD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdsCHUetucBEWwKVcO7KFbGpW-RQu--4yFMnpgigfW0A&oe=699B2516&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkOvdCEJHAJHtUxKBIPaBtARuMEkbhrG3op1Wj8DL5vQ&oe=699B580B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlQ9_X0HApuH1xZ4iNwl-KHUaUfEuQj0QpWTYOaPKckA&oe=699B5B06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxgraAmqaYTmDyMZyC_MahD2CSkawmJVm59jUOfwmmKw&oe=699B58A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpKYy5R42IBUN5LW4YKtDEd9R8Y1Cv-lQLE03vF6YxzA&oe=699B24CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wH62XrMQzs16NO689xC7uv8jcCP7oZicR3N_V65BrmmOQ&oe=699B55BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4nNzMDWK92PcGOU5gNGB91QZXcbIb4nGjCgBvXF7xDg&oe=699B575C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFaXf2EoMvDoT8ZKZEJaoVOGyhua4KNeHQSshu4LQsbPw&oe=699B4278&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGobsTrqOKiYzShpJirDACSCev2_A94_G0IU4ckchEw7Q&oe=699B56C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJQeA5_9FvmZ0B8HtowkbUPDvgMsoyCwYxL6Bmu-0zaQ&oe=699B3D0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwiiTTxArXyEPh_CThbLwTEraSdG7ZRVMpjUf5LWC_iA&oe=699B56D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfR_9THoTHoQ4SzWQrnAah0zr-IKFNcJ29rH45HXLa4w&oe=699B4B56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIUOXT28IvqEhOxPg5ipmBX0Tmqo7-eShcTHJfBM9tNw&oe=699B31DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3cI0V9EFcFWeFC7vUtzOVvocwsJb9yk6YxL-X7qNufA&oe=699B3576&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wH70ZhFpDZvtVBn7gM-670s-i92MsyhlpFkUQV0A108Zg&oe=699B46AF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4tcMYQCeJTsZQTsAsDoCaAEwB4rFnEJu5Wk8B-OXElg&oe=699B4D2B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXzym7STYJo5XlLs_4GkRMFMgdIR4d_Pp3vt30C6tmAA&oe=699B440D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg49lfscCvN2u9sbmEO7XgwBUxEajuICw5izSbCoEXcw&oe=699B5A23&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUZcCGI7GB8cMN2fJXgCXbuRQ5N-0XpYebnV8-T6XJsw&oe=699B493B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZhUPlkL8SNzGZTSZ__-OwjqObYvvUHjBkE-_pVwI17A&oe=699B2A42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgd2_oUdG0o4V_jteZ9LR83fMV7qrwOmrAVvqq1N6hTg&oe=699B47D5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8BcyBd_tHb1FFWvYzdBSLyNZCnIRsLPCQdoXaOmF4RA&oe=699B4F8C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVGwB6T2J4UBTMEQk2yiKehh-pEkeJuytXHx_ytasTDA&oe=699B2EDA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5AXqphxJryZupEkqrOCVGn72yMiEKhedpE7uJN4Bj8A&oe=699B58EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3ax4NzC6GW3igf2uybAVYXdVvfW8i2ACpAELshRw2EA&oe=699B24E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnJlQqw7p9no09f8NqgW5fkW4QdR8TcY8bgfAV10owfA&oe=699B3D50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKfAzq_lR5RipC8azzmlSZQScXXG6CHMa-3eZ4ONlryw&oe=699B4B6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsvRszJVjfFi-qf0E9sPDhCoAbrih1-RFhTajh77JWEQ&oe=699B45BB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEonDI9aQDSdxCpDWm7-oUO6wYkE4bTRinnz0kCj4SdFQ&oe=699B4F29&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs_aLE5ao9KvMJO6mbcSY91NgTojDRcWX_ucP13ew1Yw&oe=699B52AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU25KcME7SSxmGCUTUrc-Ek2X5VgWw2rOmYFRb07a4Eg&oe=699B5BE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaEmjfpTDzBrXTpfqSeprnlPxkHJoPu9yJwNykGFW8qA&oe=699B4185&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wEC_SbR-R-a2mA7fZa81z0dtR8yiFAnx1DWVrn4hkoHkg&oe=699B4F6D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJhDA4iX46j4WN1UhsCwXAUmKWr32rkBTJMMGvsHQGAw&oe=699B2F92&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8NJFuqNu8vxpdZ_b5CMYUJUZ5w-GPSB444YQt0_bIkw&oe=699B4555&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXvDBurKGplXrMqsBh0kbwq4Bzv0r8QnxNoJoH4JPC1Q&oe=699B2911&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKQx1a1EHPkre8BjNNZNl8_JT8USSZULM7JNmpFHg-_Q&oe=699B2F39&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4ZhKpKgn_4RuXtPfmfShIX-YQqMmZ2YntbscwkYTPaQ&oe=699B42F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRGg3OGw8ddZ73LRZTHsfR8XVZSjKo4aHUfggKZCAFtQ&oe=699B5B42&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGhFGlsizPWZLDm4ZNiHQaX8qTVyADoRfFVMnZbCgqkw&oe=699B4B65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwLcCxiuCqQFmg0esZUl4iWZ4R0XmCLmOdFpnr7YgHCw&oe=699B50CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3Uq2jHCYTtg_soK04o7KwAiG56JMwje2-4SuLAevAZA&oe=699B513A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLiQqdqPNC6oYhV5XxXHXyhKXNHbB1ftfPdZTHHST-g&oe=699B39EE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6ICxB1R5G1ujK6YauP91XhjefDIdapg4HPfuGCvQ7cw&oe=699B38EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAuGaYJNn6MQeKuIRD1eKvQBjLwTBNMyJ6TY_ZtaGRdQ&oe=699B4A55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAAatVZt0L_lyU7ieCo8SifZnYwSI3LO-v_vSTWmNDhQ&oe=699B3FAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjkT5lrpnwtwCWFyLMU7TCiPt3B6RaStNKvH10F48-gg&oe=699B3258&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiZSf-gIR9_AULcLNPvJZgvS_Hb3Ls6jpW5XiSjlRQeg&oe=699B4753&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA73LUOOBrfiGWyAlJ7p-ZgRduUvAUqUNe_J2B2nUJgQ&oe=699B3179&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxwLGg_LyssZ5-cpzZV3QqrlilYgJXnrA3_DG0lwSLJQ&oe=699B5C46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wE84eW82mbZsOT3StRPa4dSYAzRWXvsGTyD9xTlDlL4yw&oe=699B31A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVbDFQrlNTNrifJ1xORZF4QrdeZOG_0BIIPvOOfxWM8g&oe=699B4978&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFt_IDJifXphnyaNyXXrnP50HVqX2sO2znFypClByKm7A&oe=699B2E38&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_AoVXZlzSiRnWq2erMvUW253Lm-aqUmu_P8w2Ks_smA&oe=699B3D00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwdhIWv9YLfPzSIDBGKCTQj1jWZ-f3c9k05FMnauF5Qw&oe=699B29CF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6KecLxTr6f9oxOIQs2HiN4imVhXqHgff6oKgcvYIpA&oe=699B553E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg8QJ-t0C3ANPPYnI30llBA1J_BT_Zh2eAHowLQNPGgA&oe=699B58C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHx5J2aDfhaRl08DMe_XWooEX2qFMSwlqT8U9FA3y6R3Q&oe=699B460E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmDlL-vMpRZspWgaR1C6JzbbZ_o9x5o0fnruT3HQ6ajA&oe=699B4CF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz4cE5apDXMeAZDGhJcYzof9cS1AXBIKO6X6sWIYbS4A&oe=699B3292&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdEOvU-Hps48ric3DDsH37bi6BuVBbhfR-MY3cWljeBQ&oe=699B25D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzMpmtJYW7Z_SfH3QA_-L7DPhVKLWwoAzt5_PHukOAOQ&oe=699B51FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXee7yS2bXeKlOcIoQLeiAeL4RNoF3fjVE67b7UE3tpQ&oe=699B5532&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP6zrFvD0Thy2CDVF8KsduwCF0PymgYlzU9spzQLCGWw&oe=699B4FAF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2r3GT4P4fC_X3CJyW029u-_EqMDSWJOKBg6U3TUzFRA&oe=699B443C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHU9rtFhQemUBgOAEeFPa1PQBOd2f3dUz_lGmseC3NSqw&oe=699B259A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgIoBBjsxZCWgMVrDHjRMy4QQ0jSwdXZuMogv3Z-7_1w&oe=699B4910&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHttSRSAS9utkdsz-6czd0NDn6NM2TediNYEHqO2eSD8Q&oe=699B2CC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdiWGtYNiDLssydgyeS0YFtpYDbZI62EKi12EUscoDWg&oe=699B502E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xS7aDsVMBb3Opx1tJAy1kSb4jc7pMV90Qc9FkMJeVQ&oe=699B33FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfM7TFjnfPs4kYcztnU1buCSupLj2J4fb_xu0bB-aI1w&oe=699B5A55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbjtbS7m0mLVPX5Hg6p5WgdPZlFs-ADVGvd-ube2zhWg&oe=699B2F0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEC7ruq31gn8ranaTmpassC6fI8TYq-E0Rn8J_64ABoMA&oe=699B4475&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPaWgkkdfu4aQGZG_2ICVDFEBNOzAc7nt1ozcReDJQIA&oe=699B5204&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiVBcb1jcYc0k6cswQBKImRyc8mATqWgk1zOrYp-sS_w&oe=699B257D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ9gck6LuDkF8sqKoIvCmVxP9ISHlBkVdp130QTEoRpQ&oe=699B29A5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqf_joi5-9iAoI3ULE9xkb4haeYh3W3WnmlTDebkiUkw&oe=699B413F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwe3LnBMSx0BO4aQba4r49lbo5147JzVreeaJbHa4IKw&oe=699B2642&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWvUEQhX4KTw4XflQ-t0jdEk-yi17bc2KIEXyCUXZ_gQ&oe=699B4D21&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgdX2CqPfdg-hpjt0IeYeyLnBStKJKfaWQn-48BnqE9g&oe=699B4847&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOwlrQTvSClcCRM-hxEaTiK5gF-kP-2ipw-GR_GSOufw&oe=699B35A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7FZKYEn_K_8xVrLqKmOctN_lWOrDoUOejoZv1ZsIvng&oe=699B5900&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4sdhZ529p1lSeVnL74---1aF7skeVqIaYr_6TNdK8fw&oe=699B385D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTr8viXl9h03fBmJ7udDDZTCZ4TwC-fTDd3r6CgDHaoQ&oe=699B4047&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtT5Upw2PTXWZfcS9PLZKx1T2ooWCsayILObEEaWADkw&oe=699B3BE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHprxM_VBBcodivmPy0Tv6SYGcwxOIS6eGVZaN3odii4w&oe=699B4C48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPSLhEyS4YUjkZeXcTiIgO3Y-nA0haGR_ZQsTaiPie1A&oe=699B4891&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3Y7fs5XHI7xlu3Bs5RWyjnF8Sqv-HJTcbXqkyI4kscg&oe=699B5A5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEck1MEg_wKmwUjvdF5k8Dpv0xPJcTBO-xwiW9Ywsz4wQ&oe=699B3C36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCzcx8qJ6KgrcMj9WQZoHKRcbdp66rf4lcaF7s0D4wjw&oe=699B5894&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwQWe4tjb7dQesKjc9K1FUGFucpWHbR9HiidKq5FY0g&oe=699B4357&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH16DQQWYaVFi9hlaAIAf585apUbYkqyuq67UoWkceYQA&oe=699B32BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD6SvMq_L3Ye8F19VecMAMXrprqcsqyHkvE5w93QjHDw&oe=699B3AAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ8vNdio8zaCLt1HLPBg5rDHjTiO5-ESOXIJcO29SOeA&oe=699B561A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbcAMxvW_2Ae9eeSDvMjJZyllOxbZP_xcllQXFE3GTaA&oe=699B52F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wFego0Tgl9ssw-_LTAEsJh0-VDIsWbzOb860tq2pna0qA&oe=699B5B1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmWFU1DWckELz9dJTe7-VgJ-ePSgOig2C5b2xhqqfsfg&oe=699B3F87&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcYC8D6EZTvHCrddnHTMcWrILKyTAa53eQUvyPp9VOSw&oe=699B54CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5mrYiRzLUhr1wU6VJTFqcmCk6HRhpkdnLQ9CyXUx38Q&oe=699B5977&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmlHQZuiRJWoXviAQARKmsvp6rXYezUzeS28eLfNwVJg&oe=699B3C60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wESaUYTMXXicBNBpR8IBbkD7mrZfZUFkxFIZqEY69_USw&oe=699B318B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhcqW3s4lUvI-0SX2e4lpw9jn7rBO2EKreo3fT_QNfgg&oe=699B4020&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHD36Vlc-H_HRZT5hZSyxyIDnYi5lAD4uKSu78CVOEoRw&oe=699B4CD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRhxD0JN8H1l7YQ-4bmx3K0fHpsNVtxQfGRG-Ei1pY2w&oe=699B4CE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbj7PTpPDXjr2eDlkTq5P4RcKMCih9vB8evz2YeOM1tg&oe=699B5BC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYiKYejS_7XfHV4JTu6b1T8qgkvN3EZA-QFQrPsmBUSg&oe=699B48A3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFas4s4PrPdFoPiT7_wV8wCh3bQuhCaYjgycI7E_NuCOg&oe=699B5C33&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 1, '2026-02-12 17:14:35');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5369, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGrQRC1JdijsC4kysZeom0SIdeVU23iRcDR6EFs5Fb1Q&oe=699B425F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsgd-5E7MUoaQfv3Ktz5LXyKlh_gR1RHS8-U7QzAXysg&oe=699B481B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjZds3U1oznvs9qMhmuDLFTyp6zRuE6et8d8fiZ3HP1w&oe=699B2FE6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wErMU5YR0g6H5j_UTGsDWcwBb3e784Wh_9Ci4T0iRpe7w&oe=699B2A19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRhGZdLpTkJVuWzsAm1oMLlPhLsznQhFLGyCGQWmTRrg&oe=699B3477&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWDgGptxbuWBhlenav7-4LZ0iLBTe0qIuZewhDMMPBRg&oe=699B48A8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtf1YTEGCgLOB9b-6SMbnD7OeqA7lhDavmtTLyoYmMEg&oe=699B5140&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wEF4u4gVhGWswHXKXlS9yb8qSkNq42jj1WawjbVbzC1HQ&oe=699B3283&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp_6dowaADZ44kQIVzSUsENiX0tLEHwdJzffYwaSQ7ww&oe=699B519C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuhIQOc6Ah3GcJnaMVb94YcJtYYvJcP6bb_gkHT78jkA&oe=699B2995&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAb4yvns9UG5zaih9Axh-iIAvfMgkctPlOfER7UJWktQ&oe=699B4FD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdsCHUetucBEWwKVcO7KFbGpW-RQu--4yFMnpgigfW0A&oe=699B2516&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkOvdCEJHAJHtUxKBIPaBtARuMEkbhrG3op1Wj8DL5vQ&oe=699B580B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlQ9_X0HApuH1xZ4iNwl-KHUaUfEuQj0QpWTYOaPKckA&oe=699B5B06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxgraAmqaYTmDyMZyC_MahD2CSkawmJVm59jUOfwmmKw&oe=699B58A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpKYy5R42IBUN5LW4YKtDEd9R8Y1Cv-lQLE03vF6YxzA&oe=699B24CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wH62XrMQzs16NO689xC7uv8jcCP7oZicR3N_V65BrmmOQ&oe=699B55BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4nNzMDWK92PcGOU5gNGB91QZXcbIb4nGjCgBvXF7xDg&oe=699B575C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wFaXf2EoMvDoT8ZKZEJaoVOGyhua4KNeHQSshu4LQsbPw&oe=699B4278&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGobsTrqOKiYzShpJirDACSCev2_A94_G0IU4ckchEw7Q&oe=699B56C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJQeA5_9FvmZ0B8HtowkbUPDvgMsoyCwYxL6Bmu-0zaQ&oe=699B3D0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwiiTTxArXyEPh_CThbLwTEraSdG7ZRVMpjUf5LWC_iA&oe=699B56D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfR_9THoTHoQ4SzWQrnAah0zr-IKFNcJ29rH45HXLa4w&oe=699B4B56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIUOXT28IvqEhOxPg5ipmBX0Tmqo7-eShcTHJfBM9tNw&oe=699B31DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3cI0V9EFcFWeFC7vUtzOVvocwsJb9yk6YxL-X7qNufA&oe=699B3576&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wH70ZhFpDZvtVBn7gM-670s-i92MsyhlpFkUQV0A108Zg&oe=699B46AF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4tcMYQCeJTsZQTsAsDoCaAEwB4rFnEJu5Wk8B-OXElg&oe=699B4D2B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXzym7STYJo5XlLs_4GkRMFMgdIR4d_Pp3vt30C6tmAA&oe=699B440D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg49lfscCvN2u9sbmEO7XgwBUxEajuICw5izSbCoEXcw&oe=699B5A23&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUZcCGI7GB8cMN2fJXgCXbuRQ5N-0XpYebnV8-T6XJsw&oe=699B493B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZhUPlkL8SNzGZTSZ__-OwjqObYvvUHjBkE-_pVwI17A&oe=699B2A42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgd2_oUdG0o4V_jteZ9LR83fMV7qrwOmrAVvqq1N6hTg&oe=699B47D5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8BcyBd_tHb1FFWvYzdBSLyNZCnIRsLPCQdoXaOmF4RA&oe=699B4F8C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVGwB6T2J4UBTMEQk2yiKehh-pEkeJuytXHx_ytasTDA&oe=699B2EDA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5AXqphxJryZupEkqrOCVGn72yMiEKhedpE7uJN4Bj8A&oe=699B58EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3ax4NzC6GW3igf2uybAVYXdVvfW8i2ACpAELshRw2EA&oe=699B24E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnJlQqw7p9no09f8NqgW5fkW4QdR8TcY8bgfAV10owfA&oe=699B3D50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKfAzq_lR5RipC8azzmlSZQScXXG6CHMa-3eZ4ONlryw&oe=699B4B6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsvRszJVjfFi-qf0E9sPDhCoAbrih1-RFhTajh77JWEQ&oe=699B45BB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEonDI9aQDSdxCpDWm7-oUO6wYkE4bTRinnz0kCj4SdFQ&oe=699B4F29&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGs_aLE5ao9KvMJO6mbcSY91NgTojDRcWX_ucP13ew1Yw&oe=699B52AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU25KcME7SSxmGCUTUrc-Ek2X5VgWw2rOmYFRb07a4Eg&oe=699B5BE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaEmjfpTDzBrXTpfqSeprnlPxkHJoPu9yJwNykGFW8qA&oe=699B4185&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wEC_SbR-R-a2mA7fZa81z0dtR8yiFAnx1DWVrn4hkoHkg&oe=699B4F6D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJhDA4iX46j4WN1UhsCwXAUmKWr32rkBTJMMGvsHQGAw&oe=699B2F92&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8NJFuqNu8vxpdZ_b5CMYUJUZ5w-GPSB444YQt0_bIkw&oe=699B4555&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXvDBurKGplXrMqsBh0kbwq4Bzv0r8QnxNoJoH4JPC1Q&oe=699B2911&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKQx1a1EHPkre8BjNNZNl8_JT8USSZULM7JNmpFHg-_Q&oe=699B2F39&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4ZhKpKgn_4RuXtPfmfShIX-YQqMmZ2YntbscwkYTPaQ&oe=699B42F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRGg3OGw8ddZ73LRZTHsfR8XVZSjKo4aHUfggKZCAFtQ&oe=699B5B42&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGhFGlsizPWZLDm4ZNiHQaX8qTVyADoRfFVMnZbCgqkw&oe=699B4B65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwLcCxiuCqQFmg0esZUl4iWZ4R0XmCLmOdFpnr7YgHCw&oe=699B50CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3Uq2jHCYTtg_soK04o7KwAiG56JMwje2-4SuLAevAZA&oe=699B513A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLiQqdqPNC6oYhV5XxXHXyhKXNHbB1ftfPdZTHHST-g&oe=699B39EE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6ICxB1R5G1ujK6YauP91XhjefDIdapg4HPfuGCvQ7cw&oe=699B38EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAuGaYJNn6MQeKuIRD1eKvQBjLwTBNMyJ6TY_ZtaGRdQ&oe=699B4A55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAAatVZt0L_lyU7ieCo8SifZnYwSI3LO-v_vSTWmNDhQ&oe=699B3FAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjkT5lrpnwtwCWFyLMU7TCiPt3B6RaStNKvH10F48-gg&oe=699B3258&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiZSf-gIR9_AULcLNPvJZgvS_Hb3Ls6jpW5XiSjlRQeg&oe=699B4753&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA73LUOOBrfiGWyAlJ7p-ZgRduUvAUqUNe_J2B2nUJgQ&oe=699B3179&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxwLGg_LyssZ5-cpzZV3QqrlilYgJXnrA3_DG0lwSLJQ&oe=699B5C46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wE84eW82mbZsOT3StRPa4dSYAzRWXvsGTyD9xTlDlL4yw&oe=699B31A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVbDFQrlNTNrifJ1xORZF4QrdeZOG_0BIIPvOOfxWM8g&oe=699B4978&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFt_IDJifXphnyaNyXXrnP50HVqX2sO2znFypClByKm7A&oe=699B2E38&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_AoVXZlzSiRnWq2erMvUW253Lm-aqUmu_P8w2Ks_smA&oe=699B3D00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwdhIWv9YLfPzSIDBGKCTQj1jWZ-f3c9k05FMnauF5Qw&oe=699B29CF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6KecLxTr6f9oxOIQs2HiN4imVhXqHgff6oKgcvYIpA&oe=699B553E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg8QJ-t0C3ANPPYnI30llBA1J_BT_Zh2eAHowLQNPGgA&oe=699B58C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHx5J2aDfhaRl08DMe_XWooEX2qFMSwlqT8U9FA3y6R3Q&oe=699B460E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmDlL-vMpRZspWgaR1C6JzbbZ_o9x5o0fnruT3HQ6ajA&oe=699B4CF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFz4cE5apDXMeAZDGhJcYzof9cS1AXBIKO6X6sWIYbS4A&oe=699B3292&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdEOvU-Hps48ric3DDsH37bi6BuVBbhfR-MY3cWljeBQ&oe=699B25D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzMpmtJYW7Z_SfH3QA_-L7DPhVKLWwoAzt5_PHukOAOQ&oe=699B51FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXee7yS2bXeKlOcIoQLeiAeL4RNoF3fjVE67b7UE3tpQ&oe=699B5532&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP6zrFvD0Thy2CDVF8KsduwCF0PymgYlzU9spzQLCGWw&oe=699B4FAF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2r3GT4P4fC_X3CJyW029u-_EqMDSWJOKBg6U3TUzFRA&oe=699B443C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHU9rtFhQemUBgOAEeFPa1PQBOd2f3dUz_lGmseC3NSqw&oe=699B259A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgIoBBjsxZCWgMVrDHjRMy4QQ0jSwdXZuMogv3Z-7_1w&oe=699B4910&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHttSRSAS9utkdsz-6czd0NDn6NM2TediNYEHqO2eSD8Q&oe=699B2CC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdiWGtYNiDLssydgyeS0YFtpYDbZI62EKi12EUscoDWg&oe=699B502E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3xS7aDsVMBb3Opx1tJAy1kSb4jc7pMV90Qc9FkMJeVQ&oe=699B33FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfM7TFjnfPs4kYcztnU1buCSupLj2J4fb_xu0bB-aI1w&oe=699B5A55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbjtbS7m0mLVPX5Hg6p5WgdPZlFs-ADVGvd-ube2zhWg&oe=699B2F0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEC7ruq31gn8ranaTmpassC6fI8TYq-E0Rn8J_64ABoMA&oe=699B4475&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPaWgkkdfu4aQGZG_2ICVDFEBNOzAc7nt1ozcReDJQIA&oe=699B5204&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiVBcb1jcYc0k6cswQBKImRyc8mATqWgk1zOrYp-sS_w&oe=699B257D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ9gck6LuDkF8sqKoIvCmVxP9ISHlBkVdp130QTEoRpQ&oe=699B29A5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqf_joi5-9iAoI3ULE9xkb4haeYh3W3WnmlTDebkiUkw&oe=699B413F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwe3LnBMSx0BO4aQba4r49lbo5147JzVreeaJbHa4IKw&oe=699B2642&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWvUEQhX4KTw4XflQ-t0jdEk-yi17bc2KIEXyCUXZ_gQ&oe=699B4D21&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgdX2CqPfdg-hpjt0IeYeyLnBStKJKfaWQn-48BnqE9g&oe=699B4847&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOwlrQTvSClcCRM-hxEaTiK5gF-kP-2ipw-GR_GSOufw&oe=699B35A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7FZKYEn_K_8xVrLqKmOctN_lWOrDoUOejoZv1ZsIvng&oe=699B5900&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4sdhZ529p1lSeVnL74---1aF7skeVqIaYr_6TNdK8fw&oe=699B385D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTr8viXl9h03fBmJ7udDDZTCZ4TwC-fTDd3r6CgDHaoQ&oe=699B4047&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtT5Upw2PTXWZfcS9PLZKx1T2ooWCsayILObEEaWADkw&oe=699B3BE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHprxM_VBBcodivmPy0Tv6SYGcwxOIS6eGVZaN3odii4w&oe=699B4C48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPSLhEyS4YUjkZeXcTiIgO3Y-nA0haGR_ZQsTaiPie1A&oe=699B4891&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3Y7fs5XHI7xlu3Bs5RWyjnF8Sqv-HJTcbXqkyI4kscg&oe=699B5A5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEck1MEg_wKmwUjvdF5k8Dpv0xPJcTBO-xwiW9Ywsz4wQ&oe=699B3C36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCzcx8qJ6KgrcMj9WQZoHKRcbdp66rf4lcaF7s0D4wjw&oe=699B5894&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwQWe4tjb7dQesKjc9K1FUGFucpWHbR9HiidKq5FY0g&oe=699B4357&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wH16DQQWYaVFi9hlaAIAf585apUbYkqyuq67UoWkceYQA&oe=699B32BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD6SvMq_L3Ye8F19VecMAMXrprqcsqyHkvE5w93QjHDw&oe=699B3AAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ8vNdio8zaCLt1HLPBg5rDHjTiO5-ESOXIJcO29SOeA&oe=699B561A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbcAMxvW_2Ae9eeSDvMjJZyllOxbZP_xcllQXFE3GTaA&oe=699B52F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wFego0Tgl9ssw-_LTAEsJh0-VDIsWbzOb860tq2pna0qA&oe=699B5B1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmWFU1DWckELz9dJTe7-VgJ-ePSgOig2C5b2xhqqfsfg&oe=699B3F87&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcYC8D6EZTvHCrddnHTMcWrILKyTAa53eQUvyPp9VOSw&oe=699B54CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5mrYiRzLUhr1wU6VJTFqcmCk6HRhpkdnLQ9CyXUx38Q&oe=699B5977&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmlHQZuiRJWoXviAQARKmsvp6rXYezUzeS28eLfNwVJg&oe=699B3C60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wESaUYTMXXicBNBpR8IBbkD7mrZfZUFkxFIZqEY69_USw&oe=699B318B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhcqW3s4lUvI-0SX2e4lpw9jn7rBO2EKreo3fT_QNfgg&oe=699B4020&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wHD36Vlc-H_HRZT5hZSyxyIDnYi5lAD4uKSu78CVOEoRw&oe=699B4CD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRhxD0JN8H1l7YQ-4bmx3K0fHpsNVtxQfGRG-Ei1pY2w&oe=699B4CE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbj7PTpPDXjr2eDlkTq5P4RcKMCih9vB8evz2YeOM1tg&oe=699B5BC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYiKYejS_7XfHV4JTu6b1T8qgkvN3EZA-QFQrPsmBUSg&oe=699B48A3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFas4s4PrPdFoPiT7_wV8wCh3bQuhCaYjgycI7E_NuCOg&oe=699B5C33&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owne', 1, '2026-02-12 17:14:35');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:13@lid\",\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770927750833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:22:30.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:22:31'),
(5371, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:13@lid\",\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770927750847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:22:30.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:22:31'),
(5372, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:13@lid\",\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770927750841,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:22:30.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:22:31'),
(5373, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:13@lid\",\"id\":\"A527C0B44B6FAD69E5E633A9C0391FE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770927750833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:22:30.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:22:31'),
(5374, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:13@lid\",\"id\":\"A5E1839EDFC9B6011D9BBB7CD2911AFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770927750847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:22:30.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:22:31'),
(5375, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:13@lid\",\"id\":\"A5928B9B476511F0CD9180745BE0C6A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770927750841,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:22:30.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:22:31'),
(5376, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":true,\"id\":\"A5C01D6158CA58F3E38C379B1E2F124C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770928135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:55.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:28:55'),
(5377, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:55.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:28:55'),
(5378, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:55.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:28:55'),
(5379, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":true,\"id\":\"A5C01D6158CA58F3E38C379B1E2F124C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770928135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:55.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:28:55'),
(5380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:55.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:28:55'),
(5381, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:55.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:28:56'),
(5382, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5C01D6158CA58F3E38C379B1E2F124C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770928136524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:56.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:28:56'),
(5383, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5C01D6158CA58F3E38C379B1E2F124C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770928136524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:28:56.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:28:56'),
(5384, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":true,\"id\":\"A5BF191D55B0C7D572B4B9C2A4106FCD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia seu app e verifica se saiu da grade\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770928391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:11.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:33:12'),
(5385, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:11.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:33:12'),
(5386, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":true,\"id\":\"A5BF191D55B0C7D572B4B9C2A4106FCD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia seu app e verifica se saiu da grade\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770928391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:11.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:33:12'),
(5387, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:11.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:33:12'),
(5388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:12.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:33:12'),
(5389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:12.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:33:12'),
(5390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5BF191D55B0C7D572B4B9C2A4106FCD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770928393217,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:13.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:33:13'),
(5391, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5BF191D55B0C7D572B4B9C2A4106FCD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770928393217,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:33:13.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:33:13'),
(5392, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5C01D6158CA58F3E38C379B1E2F124C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770928772229,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:32.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:39:32'),
(5393, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5BF191D55B0C7D572B4B9C2A4106FCD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770928772220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:32.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:39:32'),
(5394, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5BF191D55B0C7D572B4B9C2A4106FCD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770928772220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:32.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:39:32'),
(5395, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"254541270409406@lid\",\"id\":\"A5C01D6158CA58F3E38C379B1E2F124C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770928772229,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:32.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:39:32'),
(5396, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC71E9303F2B8A8A208E5ECA37562DF7\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AO\\/0elBGRmgMsM1+mE5i9myOqlmyk9c42jvDDYYoBdg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770928781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:41.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:39:42'),
(5397, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"254541270409406@lid\",\"fromMe\":false,\"id\":\"AC71E9303F2B8A8A208E5ECA37562DF7\"},\"pushName\":\"Zoroastro Cintra\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AO\\/0elBGRmgMsM1+mE5i9myOqlmyk9c42jvDDYYoBdg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770928781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:41.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:39:42'),
(5398, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:41.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:39:42'),
(5399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:42.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:39:42'),
(5400, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:41.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:39:42'),
(5401, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"254541270409406@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:42.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:39:42'),
(5402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:42.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 17:39:42'),
(5403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"254541270409406@lid\",\"pushName\":\"Zoroastro Cintra\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605229505_1507151020366078_9199320547742256465_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPet2kvHWi3rzCQEB1Iq0MG38iRADLgLVYCF9YGdQB9A&oe=699B655A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T17:39:42.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:39:43'),
(5404, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.844Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5405, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.845Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5406, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.842Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5407, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.846Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5409, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.838Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5410, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.843Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5411, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.836Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5412, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.835Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5413, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.841Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:12'),
(5414, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.837Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:13'),
(5415, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.847Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:13'),
(5416, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:55:11.841Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:13'),
(5417, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-12T17:55:11.958Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:55:13'),
(5418, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-12T17:55:12.645Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 17:55:13'),
(5419, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":false,\"id\":\"ACAE0980AAB30E2571B8CDC1F1A0188F\"},\"pushName\":\"Livia\",\"message\":{\"conversation\":\"Confira o vídeo de Filó e Discrelda! #TikTok Abra o TikTok para ver a publicação de  @Filó e Discrelda Deixe elas… foram elas que inv... https:\\/\\/www.tiktok.com\\/@filoediscrelda\\/video\\/7593846439210536210?_r=1&u_code=f1kjhi4iai9gj9&preview_pb=0&sharer_language=pt&_d=em08k5a1k37ie5&share_item_id=7593846439210536210&source=h5_m&utm_source=whatsapp&utm_campaign=client_share&share_link_id=4c354d7a-b817-4d12-89f9-c2ea3fba83e1&share_app_id=1340&ugbiz_name=Unknown&user_id=7602335397896815637&sec_user_id=MS4wLjABAAAAc5kheRf6n-CzbN6G2BsWbhe0l5RIxsL26A0Q4T5UIbJ9uWlgqoEP8scAswW4IcWG&enable_checksum=1 Esta publicação é compartilhada via TikTok Lite. Baixe o TikTok Lite para curtir mais publicações: https:\\/\\/www.tiktok.com\\/tiktoklite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VabIARP1VBTd0vkE6D1ZBQIVPhsOfYh5usbmasPwXoI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770929979,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T17:59:39.824Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:59:40'),
(5420, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T17:59:39.823Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:59:40'),
(5421, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEADlmyjz07A6oik32By-de37xGMLMtJnJSE_oCCOqttw&oe=699B445D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T17:59:39.957Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:59:40'),
(5422, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"87484876771482@lid\",\"pushName\":\"Livia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEADlmyjz07A6oik32By-de37xGMLMtJnJSE_oCCOqttw&oe=699B445D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T17:59:39.965Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 17:59:40'),
(5423, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770930191243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:11.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:11'),
(5424, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770930191251,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:11.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:11'),
(5425, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770930191251,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:11.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:11'),
(5426, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770930191243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:11.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:11'),
(5427, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770930191527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:11.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:11'),
(5428, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5DED1C7296001C5D10DF8AC5B85C53F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770930191527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:11.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:11'),
(5429, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770930194403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:14.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:14'),
(5430, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A580095812F6C5A4C9ABC9AFC1C02C40\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770930194403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:14.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:14'),
(5431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A74316B2DE8AABFDB93\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635105962_1862893755113593_8216003334658808183_n.enc?ccb=11-4&oh=01_Q5Aa3wH138J61B_pcHuaWQX8ieLuhI9t-uZDZSI37iY1aXebYw&oe=69B5CD01&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xQ2+8F1UpNaTFve0B+K2aBqFsFQ0WM8RN0m0nnhJq1M=\",\"fileLength\":\"28935\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"z8FxWJCdp\\/DcrXVjcxwb\\/P1uTJcJKKloJJoBz1eNdgk=\",\"fileEncSha256\":\"K+hwVb7owOGRbfJo64DxkdkC9nwpBX5K+4OucoYLaBQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635105962_1862893755113593_8216003334658808183_n.enc?ccb=11-4&oh=01_Q5Aa3wH138J61B_pcHuaWQX8ieLuhI9t-uZDZSI37iY1aXebYw&oe=69B5CD01&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770930204\",\"streamingSidecar\":\"l40k3Ugd5fkSDQ==\",\"waveform\":\"AgYGBQQFBAY2ZGRZZFlJTGRWRRtGJUhkYTZMKA8GCAcFBQUFBgYHBQUKCQkHCjxRPFQ4QlopS0A\\/JVMqQCoQCg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770921784\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XifkXfW3G8yqGczzgucln\\/dxX6BQdwm2EZY4hBwGxG4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770930223,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:43.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:43'),
(5432, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A74316B2DE8AABFDB93\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635105962_1862893755113593_8216003334658808183_n.enc?ccb=11-4&oh=01_Q5Aa3wH138J61B_pcHuaWQX8ieLuhI9t-uZDZSI37iY1aXebYw&oe=69B5CD01&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xQ2+8F1UpNaTFve0B+K2aBqFsFQ0WM8RN0m0nnhJq1M=\",\"fileLength\":\"28935\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"z8FxWJCdp\\/DcrXVjcxwb\\/P1uTJcJKKloJJoBz1eNdgk=\",\"fileEncSha256\":\"K+hwVb7owOGRbfJo64DxkdkC9nwpBX5K+4OucoYLaBQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635105962_1862893755113593_8216003334658808183_n.enc?ccb=11-4&oh=01_Q5Aa3wH138J61B_pcHuaWQX8ieLuhI9t-uZDZSI37iY1aXebYw&oe=69B5CD01&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770930204\",\"streamingSidecar\":\"l40k3Ugd5fkSDQ==\",\"waveform\":\"AgYGBQQFBAY2ZGRZZFlJTGRWRRtGJUhkYTZMKA8GCAcFBQUFBgYHBQUKCQkHCjxRPFQ4QlopS0A\\/JVMqQCoQCg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770921784\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XifkXfW3G8yqGczzgucln\\/dxX6BQdwm2EZY4hBwGxG4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770930223,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:43.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:43'),
(5433, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:43.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:43'),
(5434, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:43.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:43'),
(5435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:43.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:43'),
(5436, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:43.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:43'),
(5437, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:44.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:03:44'),
(5438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:03:44.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:03:44'),
(5439, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770931142527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:19:02.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:19:02'),
(5440, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770931142527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:19:02.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:19:03'),
(5441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770931143313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:19:03.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:19:03'),
(5442, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A563DBAF7BE1F5B4FD0A279AB9EEB839\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770931143313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:19:03.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:19:03'),
(5443, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:17.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:18'),
(5444, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC15522005A684B429CB3191CEBE3AF0\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"conversation\":\"Eu ia passar para o TV box mais ele tá ruim travando até na YouTube. Eu tava pensando em mudar só para o TV box q e arriscado.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lYN3izmn2do2hcnmrTfTcHmChZWk8fCOwf1zM4GEmA0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770931277,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:17.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:18'),
(5445, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:17.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:18'),
(5446, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC15522005A684B429CB3191CEBE3AF0\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"conversation\":\"Eu ia passar para o TV box mais ele tá ruim travando até na YouTube. Eu tava pensando em mudar só para o TV box q e arriscado.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lYN3izmn2do2hcnmrTfTcHmChZWk8fCOwf1zM4GEmA0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770931277,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:17.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:18'),
(5447, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:18.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:18'),
(5448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:18.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:18'),
(5449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:18.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:18');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:18.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:19'),
(5451, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-12T18:21:28.555Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:28'),
(5452, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"date_time\":\"2026-02-12T18:21:29.764Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:29'),
(5453, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:21:29.948Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:30'),
(5454, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F91CACFEB96F26DD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770931289,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:29.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:30'),
(5455, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB068F91CACFEB96F26DD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931289,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T18:21:29.993Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:30'),
(5456, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T18:21:30.120Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:30'),
(5457, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:21:30.123Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:30'),
(5458, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F91CACFEB96F26DD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770931289,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:29.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:30'),
(5459, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:21:29.992Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:31'),
(5460, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB068F91CACFEB96F26DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931290440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:30.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:31'),
(5461, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB068F91CACFEB96F26DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931290440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:30.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:31'),
(5462, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-12T18:21:32.714Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:32'),
(5463, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085B6C0567F715D2A56\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏰ *Lembrete: Seu pagamento vence em breve!*\\n\\nOlá, *teste*! 👋\\n\\nSeu pagamento vence em *3 dias*:\\n📅 Vencimento: *15\\/02\\/2026*\\n💰 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspensão do serviço!\\n\\nApós pagar, confirme enviando *\\/pago* 📱\\n\\n_Estamos à disposição!_ 😊\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770931293,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:33.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:33'),
(5464, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"date_time\":\"2026-02-12T18:21:33.917Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:33'),
(5465, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085B6C0567F715D2A56\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏰ *Lembrete: Seu pagamento vence em breve!*\\n\\nOlá, *teste*! 👋\\n\\nSeu pagamento vence em *3 dias*:\\n📅 Vencimento: *15\\/02\\/2026*\\n💰 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspensão do serviço!\\n\\nApós pagar, confirme enviando *\\/pago* 📱\\n\\n_Estamos à disposição!_ 😊\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770931293,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:33.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:34'),
(5466, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:21:34.094Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:34'),
(5467, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB085B6C0567F715D2A56\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏰ *Lembrete: Seu pagamento vence em breve!*\\n\\nOlá, *teste*! 👋\\n\\nSeu pagamento vence em *3 dias*:\\n📅 Vencimento: *15\\/02\\/2026*\\n💰 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspensão do serviço!\\n\\nApós pagar, confirme enviando *\\/pago* 📱\\n\\n_Estamos à disposição!_ 😊\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931294,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T18:21:34.139Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:34'),
(5468, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:21:34.137Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:34'),
(5469, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T18:21:34.263Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:34'),
(5470, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB085B6C0567F715D2A56\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931294495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:34.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:35'),
(5471, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB085B6C0567F715D2A56\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931294495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:34.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:35'),
(5472, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:21:34.384Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:35'),
(5473, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC9EE452FDAEC32EB6FE005D248DB4C0\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"conversation\":\"Tô assistindo só pelo Chrome cast\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gHMI\\/93Qv2VpuaPbLHhQwiJjv1mpobEyKfGKoe\\/mo7g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770931296,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:36.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:36'),
(5474, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:36.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:36'),
(5475, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:36.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:36'),
(5476, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC9EE452FDAEC32EB6FE005D248DB4C0\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"conversation\":\"Tô assistindo só pelo Chrome cast\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gHMI\\/93Qv2VpuaPbLHhQwiJjv1mpobEyKfGKoe\\/mo7g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770931296,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:36.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:36'),
(5477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:37.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:37'),
(5478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:37.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:37'),
(5479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:37.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:37'),
(5480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:37.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:37'),
(5481, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06552FB3EC31111D4FB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📢 *Lembrete de Renovação*\\n\\nOlá, *carol*!\\n\\nSeu plano vence em *7 dias*:\\n📅 Data: *19\\/02\\/2026*\\n💵 Valor: *R$ 100,00*\\n\\nRenove com antecedência e mantenha seu acesso sem interrupções!\\n\\n✅ Após pagar, envie *\\/pago*\\n\\nDúvidas? Estamos aqui para ajudar! 🤝\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770931297,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:38.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:38'),
(5482, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06552FB3EC31111D4FB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📢 *Lembrete de Renovação*\\n\\nOlá, *carol*!\\n\\nSeu plano vence em *7 dias*:\\n📅 Data: *19\\/02\\/2026*\\n💵 Valor: *R$ 100,00*\\n\\nRenove com antecedência e mantenha seu acesso sem interrupções!\\n\\n✅ Após pagar, envie *\\/pago*\\n\\nDúvidas? Estamos aqui para ajudar! 🤝\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770931297,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:38.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:38'),
(5483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB06552FB3EC31111D4FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931298620,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:38.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:21:38'),
(5484, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB06552FB3EC31111D4FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931298620,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:21:38.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:21:38'),
(5485, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:52.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:23:52'),
(5486, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0154B6A7339F73CA62F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNIFT5rvB6KPeic0nDmLWJTB2iBhHrj1iwaN5Dp2-lIhH8_D4w4fCTOb0KQ62WcmUvKbeC5gkkAaAVMTZ-eaR7q-Rpzf-e0DGuL_NDnFA?ccb=9-4&oh=01_Q5Aa3wF593ZDEKByvDtsTvSpPk2RBxE_ZSwLhjPQsj3jWqV3WA&oe=69B5CA10&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ArBQ7rKla6ynxBesVvpaqF3usJzURkhJEo\\/12XYx7h0=\",\"fileLength\":\"179186\",\"height\":900,\"width\":1600,\"mediaKey\":\"S5LSCdkhJfCydwLzfM\\/pZF52cdkNHfFdD4gaxSSnlMs=\",\"fileEncSha256\":\"cMq3ei5FophH0XrSYS\\/zhLl3zrNbtizVGF7wKjnheJY=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNIFT5rvB6KPeic0nDmLWJTB2iBhHrj1iwaN5Dp2-lIhH8_D4w4fCTOb0KQ62WcmUvKbeC5gkkAaAVMTZ-eaR7q-Rpzf-e0DGuL_NDnFA?ccb=9-4&oh=01_Q5Aa3wF593ZDEKByvDtsTvSpPk2RBxE_ZSwLhjPQsj3jWqV3WA&oe=69B5CA10&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770931427\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHAABAAIDAQEBAAAAAAAAAAAAAAQFAgYHAwgB\\/8QAOhAAAgEDAgMHAgIGCwAAAAAAAQIDAAQRBRIGEyEHFTFBVaHRIlEINxQkQmF2tBYjJTJSY5GTo7Gy\\/8QAGQEBAQEBAQEAAAAAAAAAAAAAAAIBBQME\\/8QAMBEAAQICCAQFBAMAAAAAAAAAAAECAwQFFBUhQVKh0RFRkbESMkJh8BMiMXKB0vH\\/2gAMAwEAAhEDEQA\\/APiKIJr3MmtdNsYXjeFXa41mGDdzGCLgSsu7BI3EdEGS2ACRHazdNWfRTaaf+kRlgXGrQGA4UscTh+Ueg6YbqcAZJxXWuDOHLa54P4UuZOC9Lka9cA3lxfNvu\\/7Rt48mMI2xVDGLzyJWbB24Fbqela3arN3h2caAiJOkc7QzsRHIImYBjHcfQNh3N1A+kE+eei6lZly+a\\/8AVuxykomC25Euwvd\\/Y5o8GzU00g2dkZ5JjbhxqcRhDbymTMG5YXIzvLbduGztINQu8bT03\\/lPxWw39xDcz74NPt7NVUIY4HdlJHi2XZjk\\/uOPsKjVNpzObRux6JRcsn5bq7cqO8rXBHdvj\\/nNTvK29PP+8firelLTms2ibFWZK5dXblUurxq\\/MWzcNnO4TtnOc\\/8AdZjXmGCIJvpxj9ZbpjGP\\/K\\/6D7VZUrLSmcydG7CzJXKvV25VXesR38hlvrOS5dm3lpZ2cls5zk+eeufvRdUsg0bHSeieOJ2Bbrnx8vt0+1WtK205rMnRuwsuVX0r1duZtxlpUbXB07hOOwSeQNsgv7gqqCQuI8MxDLkR\\/wB7J\\/qkOc5J8bziPh67CS\\/0R5VwXdpnS\\/k2yAkEYUglWB3ZOcEbegIJbOla2lJpjUajrk9mr3S8x1FSjnK5W3r7u3u\\/g3vsk7AuIO1vhy64k0vUrC1htr57IpPO6NuWON84ET9MSDrny8Purv34Ovy51n+IJv5W2pUpSUynq0TY1aMlV9Oq7nK+zs8FLwdwfJJrugwa5E8cnJXT1FyJO9bYLzbgyA7uVuZcLgRCTPXqdY1xeCTpGjamL61N0kuyfS7a1uHjigMjbmEhu3BIZHIjBiJWUNnr0mcI8X6TZcI8K6de8dXkJszuks47Fdtmp1C3lOHMTcwssfOz1wYlXrnbWtanxjq8dzt0finX3gEURRpr59yvyxvGBjoHaUD9x8T1J56J9yr8xOhyUob82hvrg2DO1qZX5JePlsY8nbldz7TjHTc2P8R8a8KkX2o3+pzC41K9nupVRYw80hdgo8FyfIfao9UYKUpQClKUApSlAKUpQH1z+Dr8udZ\\/iCb+VtqU\\/B1+XOs\\/xBN\\/K21KA+Zrbsq4g1vS9I17QubZ6dq0EKWy3V8srvKskNtM42qu1Dcy5VSuVRgu6TYznXNQ4W1zS3KX1xOmAhLA70+oZA3KxXOM9M5BBB6giukcEW2nroPC0l1JwYFnljM3Ol5l6EF9AuZo2O0dC2Eyu6Iux8ARTateaQlrBDp0vD0T\\/pDvzLWyuJFeJz0Dm4QnCHIG0EkE5J2rTxcV4cCb0X\\/DRO7rr1KX3+ad3XXqUvv81YMcsTkdT5DAr8oUQO7rr1KX3+ad3XXqUvv81PpQEDu669Sl9\\/mnd116lL7\\/ADU+lAQO7rr1KX3+ad3XXqUvv81PpQEDu669Sl9\\/mnd116lL7\\/NT6UB9a\\/gzjaLsz1iN5TIw4gmyx8T+q21K4X2Z9vHF\\/ZdpF9oGgabo9xb3F814zXkMruHaKJCAUkUYxGPL79aUBZaT2kcV8EcMaJwhJJY3On2CQyJFbX0Miyo1xb34EnKLEPkIh3HcmZYzhldRB1zVtO1fh6y0W+4gsLu5gS3C3bwzyvDAd0ptlkkiDRBHnkVgispZDtZ1IJUr7my8JL\\/CcV8eKq+Zfmhod5bRw3QitnM0TIHEieCEhTsO7aSw3EEhcZRsEjGc7qwjt2UQ3sV0GVGJiVgFLKpKneF6qSVOOmVOCRglSqWBDXApJqMmPY9L7S7e0JEGsWt5iV4wYElGVUKQ\\/wBaL9LbiB+19JyB9JMm+0DTrRbowcW6Xem3lmjjEEV0DcqkiKskfMhXCyB2dd+1gsT7gjFFZSpqrFRL1u1+e3AutxVvKyW3WMIVnSQsMkKCNhyRg5A64APTIwR55A8iMedKV61eGuHcysxefYwLY8BmsWm2\\/s+9KV6JKwlw7lViLzJUGq3zKmnxvEY3dtiy7AiM+0FgXGEztXLZGNo69K97Gw1S7sUvtOgtrpprg2q2sbxyXRYKJNwg6ybMA\\/WF29CpIzgqVdUg5dVLSPEXEi2N3otukh1TTL2eWR94MF8kQVcBcFTE5zlSfEeI6eZUpXpUoGXVTPrxOZ\\/\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770931432,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:52.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:23:52'),
(5487, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931432731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:52.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:23:53'),
(5488, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:52.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:23:53'),
(5489, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0154B6A7339F73CA62F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNIFT5rvB6KPeic0nDmLWJTB2iBhHrj1iwaN5Dp2-lIhH8_D4w4fCTOb0KQ62WcmUvKbeC5gkkAaAVMTZ-eaR7q-Rpzf-e0DGuL_NDnFA?ccb=9-4&oh=01_Q5Aa3wF593ZDEKByvDtsTvSpPk2RBxE_ZSwLhjPQsj3jWqV3WA&oe=69B5CA10&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ArBQ7rKla6ynxBesVvpaqF3usJzURkhJEo\\/12XYx7h0=\",\"fileLength\":\"179186\",\"height\":900,\"width\":1600,\"mediaKey\":\"S5LSCdkhJfCydwLzfM\\/pZF52cdkNHfFdD4gaxSSnlMs=\",\"fileEncSha256\":\"cMq3ei5FophH0XrSYS\\/zhLl3zrNbtizVGF7wKjnheJY=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNIFT5rvB6KPeic0nDmLWJTB2iBhHrj1iwaN5Dp2-lIhH8_D4w4fCTOb0KQ62WcmUvKbeC5gkkAaAVMTZ-eaR7q-Rpzf-e0DGuL_NDnFA?ccb=9-4&oh=01_Q5Aa3wF593ZDEKByvDtsTvSpPk2RBxE_ZSwLhjPQsj3jWqV3WA&oe=69B5CA10&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770931427\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHAABAAIDAQEBAAAAAAAAAAAAAAQFAgYHAwgB\\/8QAOhAAAgEDAgMHAgIGCwAAAAAAAQIDAAQRBRIGEyEHFTFBVaHRIlEINxQkQmF2tBYjJTJSY5GTo7Gy\\/8QAGQEBAQEBAQEAAAAAAAAAAAAAAAIBBQME\\/8QAMBEAAQICCAQFBAMAAAAAAAAAAAECAwQFFBUhQVKh0RFRkbESMkJh8BMiMXKB0vH\\/2gAMAwEAAhEDEQA\\/APiKIJr3MmtdNsYXjeFXa41mGDdzGCLgSsu7BI3EdEGS2ACRHazdNWfRTaaf+kRlgXGrQGA4UscTh+Ueg6YbqcAZJxXWuDOHLa54P4UuZOC9Lka9cA3lxfNvu\\/7Rt48mMI2xVDGLzyJWbB24Fbqela3arN3h2caAiJOkc7QzsRHIImYBjHcfQNh3N1A+kE+eei6lZly+a\\/8AVuxykomC25Euwvd\\/Y5o8GzU00g2dkZ5JjbhxqcRhDbymTMG5YXIzvLbduGztINQu8bT03\\/lPxWw39xDcz74NPt7NVUIY4HdlJHi2XZjk\\/uOPsKjVNpzObRux6JRcsn5bq7cqO8rXBHdvj\\/nNTvK29PP+8firelLTms2ibFWZK5dXblUurxq\\/MWzcNnO4TtnOc\\/8AdZjXmGCIJvpxj9ZbpjGP\\/K\\/6D7VZUrLSmcydG7CzJXKvV25VXesR38hlvrOS5dm3lpZ2cls5zk+eeufvRdUsg0bHSeieOJ2Bbrnx8vt0+1WtK205rMnRuwsuVX0r1duZtxlpUbXB07hOOwSeQNsgv7gqqCQuI8MxDLkR\\/wB7J\\/qkOc5J8bziPh67CS\\/0R5VwXdpnS\\/k2yAkEYUglWB3ZOcEbegIJbOla2lJpjUajrk9mr3S8x1FSjnK5W3r7u3u\\/g3vsk7AuIO1vhy64k0vUrC1htr57IpPO6NuWON84ET9MSDrny8Purv34Ovy51n+IJv5W2pUpSUynq0TY1aMlV9Oq7nK+zs8FLwdwfJJrugwa5E8cnJXT1FyJO9bYLzbgyA7uVuZcLgRCTPXqdY1xeCTpGjamL61N0kuyfS7a1uHjigMjbmEhu3BIZHIjBiJWUNnr0mcI8X6TZcI8K6de8dXkJszuks47Fdtmp1C3lOHMTcwssfOz1wYlXrnbWtanxjq8dzt0finX3gEURRpr59yvyxvGBjoHaUD9x8T1J56J9yr8xOhyUob82hvrg2DO1qZX5JePlsY8nbldz7TjHTc2P8R8a8KkX2o3+pzC41K9nupVRYw80hdgo8FyfIfao9UYKUpQClKUApSlAKUpQH1z+Dr8udZ\\/iCb+VtqU\\/B1+XOs\\/xBN\\/K21KA+Zrbsq4g1vS9I17QubZ6dq0EKWy3V8srvKskNtM42qu1Dcy5VSuVRgu6TYznXNQ4W1zS3KX1xOmAhLA70+oZA3KxXOM9M5BBB6giukcEW2nroPC0l1JwYFnljM3Ol5l6EF9AuZo2O0dC2Eyu6Iux8ARTateaQlrBDp0vD0T\\/pDvzLWyuJFeJz0Dm4QnCHIG0EkE5J2rTxcV4cCb0X\\/DRO7rr1KX3+ad3XXqUvv81YMcsTkdT5DAr8oUQO7rr1KX3+ad3XXqUvv81PpQEDu669Sl9\\/mnd116lL7\\/ADU+lAQO7rr1KX3+ad3XXqUvv81PpQEDu669Sl9\\/mnd116lL7\\/NT6UB9a\\/gzjaLsz1iN5TIw4gmyx8T+q21K4X2Z9vHF\\/ZdpF9oGgabo9xb3F814zXkMruHaKJCAUkUYxGPL79aUBZaT2kcV8EcMaJwhJJY3On2CQyJFbX0Miyo1xb34EnKLEPkIh3HcmZYzhldRB1zVtO1fh6y0W+4gsLu5gS3C3bwzyvDAd0ptlkkiDRBHnkVgispZDtZ1IJUr7my8JL\\/CcV8eKq+Zfmhod5bRw3QitnM0TIHEieCEhTsO7aSw3EEhcZRsEjGc7qwjt2UQ3sV0GVGJiVgFLKpKneF6qSVOOmVOCRglSqWBDXApJqMmPY9L7S7e0JEGsWt5iV4wYElGVUKQ\\/wBaL9LbiB+19JyB9JMm+0DTrRbowcW6Xem3lmjjEEV0DcqkiKskfMhXCyB2dd+1gsT7gjFFZSpqrFRL1u1+e3AutxVvKyW3WMIVnSQsMkKCNhyRg5A64APTIwR55A8iMedKV61eGuHcysxefYwLY8BmsWm2\\/s+9KV6JKwlw7lViLzJUGq3zKmnxvEY3dtiy7AiM+0FgXGEztXLZGNo69K97Gw1S7sUvtOgtrpprg2q2sbxyXRYKJNwg6ybMA\\/WF29CpIzgqVdUg5dVLSPEXEi2N3otukh1TTL2eWR94MF8kQVcBcFTE5zlSfEeI6eZUpXpUoGXVTPrxOZ\\/\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770931432,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:52.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:23:53'),
(5490, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931432731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:52.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:23:53'),
(5491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:53.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:23:53'),
(5492, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931433933,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:53.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:23:54'),
(5493, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:53.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:23:54'),
(5494, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931433933,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:23:53.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:23:54'),
(5495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB080E1C9905FDFC65519\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQN6U_4QfUSw3GHPh_3mcWZa5lJPI8eI2ru-rEmBbVQoqktwfkeXSaSmNmdagYfV_JF9FHVSWKMJFJXWi16ecwjzCNQ1B9uDz32OruZ2Ow?ccb=9-4&oh=01_Q5Aa3wGVRObPOLrbPwD-44kpiJ86hqAvYOKDNFy97rD4hHPM9g&oe=69B5CB25&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"nwXM1tL68ekXMTn7QDF35F25qAyTKzZl3cd+VZH7u84=\",\"fileLength\":\"258400\",\"height\":900,\"width\":1600,\"mediaKey\":\"fBA8F0yMLpSWCkIxdOjXFqsOkDHMzWN8H7JL4Ene9g0=\",\"fileEncSha256\":\"Oc2+CTgpz5RrvvyENKXuwLvwVeX7GYS\\/Kmcz\\/99TIgs=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQN6U_4QfUSw3GHPh_3mcWZa5lJPI8eI2ru-rEmBbVQoqktwfkeXSaSmNmdagYfV_JF9FHVSWKMJFJXWi16ecwjzCNQ1B9uDz32OruZ2Ow?ccb=9-4&oh=01_Q5Aa3wGVRObPOLrbPwD-44kpiJ86hqAvYOKDNFy97rD4hHPM9g&oe=69B5CB25&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770931453\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHAAAAQQDAQAAAAAAAAAAAAAAAAIFBgcBAwQI\\/8QARBAAAgECBQEGAgYGBQ0AAAAAAQIDBBEABQYSITEHCBMiQVEUcRUjMmGB8BYlM5GhsVXR0uHxFyc1QkVSU2Jyc5KVwf\\/EABoBAAIDAQEAAAAAAAAAAAAAAAACAQQFAwb\\/xAAvEQABAgMECQQCAwAAAAAAAAABAAIDBBEFMaHREhQVIUFRUrHwEyJCkSOBYWLx\\/9oADAMBAAIRAxEAPwClpex3u+5rmdNlWW9pfaRV5rV0KZolJR9mj1FQaNkDpM0SZgXVGRkcMQLo6vyrqTHcx0R3WMoqFo827cNdUVQ0MNQIqjs3MbmKWNZYpNrZiDteN0dT0ZWUi4IOKPMsckpmioTJFBS+ZZdsgSwQM\\/RRYsTYdfMBdjyeP6YSx\\/VVBf0+p\\/vxoutObPuLr\\/6tyWY2ypZopo4uzV4rpzujlQW7wGsA1uQOz24v\\/wCxx1R6I7rEuWz51F24a6fL6WeGlnq17NyYYppVkaKNn+kdqu6wzFVJuwici+02oQZwnrlVB0\\/4Pr+\\/B9Li3GV0F\\/8Asf34Xac11YDJNsyV6cXZr0bQdlfdhzGA1EPeC1BDGcsmzdPitI0lMZaeOVomEYlzZTJLvRgsK3le11Rhzhol0x3TIH8Oft+1rG9gdr9ndjYi4NjmPqDf8cUFR0k1WxFNTNMykeUdef8AD+OM1uX1eXVk2XV9FNTVNO7RyxSqVdHB5VlPQjpbrfEbTmuLh9DJGzZXg0\\/bs1faZD3S423p3htaKw5uOz6x63\\/pLCxlPdSFiO8Xrfy2t\\/m\\/6Wtb\\/aX\\/ACr+4e2PPQKbVO0EC978X598ZKD0XkG3PA\\/HnE7SmeofTckbNlunF2a9A1eRd0yvkMtd3h9aVLs28tL2fbyWve9zmXW\\/N\\/fG2XKe6RUGnM\\/b9q9vh41jBXs9sWUEkX\\/WX3249h63OPPG8WsY14HoLHGVjQLvc2tcW6k\\/L8cSLUmhc7AZKDZkqb24uzXp5J+6JRTNPkfbhrTKX8cTxmj0XOphIk8RQhOaE2DLEQTdrwxm9wSdFfpzucQ0tDNN2sa3ozVI88cv6BuI6mHeUDIGzE3s6SoWDEXW1gVa9DaezXKssijary+kqpBOXYS0yy+Wy7R5hbrfj7jx64mdRrHs1qGjdtMUkRC3ZEy+JQCfvAsR0seOv4YsS85HcwflApzDe9KlUpqXhQ3e2A51a3OPPlXd+uClMWlu6PY+P3idbsb8eH2eIoA9ucwP88GKEZtpt4ag+t+cGKotKZHywGSvGzZU\\/HE5p6qY881CqpR1DEZZQs3hsyKi00djIo5UAEs72AJZibhixbHNmGd5hOzQpqHNKqniqJHg+Icqeb\\/WFd7BXIPNiep5OJDpKLKpqHUS5hk1VmMyZQ8tOsTMscZWeEvJLaaM7Vj3svEg8QRgoRchUOQ0OdUy5rE1E8eyljHxmfUcEwDs0KL4ctSH2qYWB48kfhu2xHQmjUXBXgygrTz\\/AFQ\\/MatcwzCqr0pIqVamZ5hBE0jJEGYnYpkZnIF7AszNxySecZoKl6WdpUramlLQTR+JT\\/aIeNlKHzL5XDbG5+yzcN9k9\\/xOmLf6Pqb\\/ADP9vB8Tpn+jqj\\/yP9rAhNYUsg8psoBv09bdfz0wEcNuVtwPJLYVHFM\\/KI7KbX2qbEfhjFnD2a\\/B6c8t7fPAhBZt++6n2t93HryMYuASGa\\/HrzfiwwWVHO27Lfj5df5YwbljuIuevr+7AhdNdWT1Qp1mipgKeBYVENPHESoN7uUALtzyzXYiwJ4ADjozTVXq7UVPpyipqqomqhIY4aaJ5ZXZIneyqisSTst09ebAEhmO6xLG56XPUe+HHT9dR5XmsVdWwyvHCsnERAYsYyq9Ra1yD7kAi9yCA71zjaQhO0L6GivfO+x3s6yWpmoZuyrtSX4VnWSV89jSOQnmJwsmUo6rYE2YAsP93EKynsO1Bn1TLS5HpbU2ZVFNEZpYqWheZ44wRd2VYyQvmXk8cjHF\\/lSpB0y8XNib5dTHoB0444A\\/ifU4dRqfKM+yRs6nz3J6Wo+PeM5b8KKapsyhzMNkYi8K\\/lC77g3sgXnC715yLGtBo0naVP1kqkEm294o2vzyP6sGAzSg+R2Uey8D92DDL06lml46swZ\\/VU+Wz1cdNklS07RVhgNOjvFEJCA6mVd8iKY\\/MCGuVIBw15xklUVGexw5JR0mYTO8FJSZtDKacFh9X4bTPMirvABlNyASSSGOJT2f6UzPUD6ogodPJnDZdpTMM2mCZzFSfCQxJHI1R5pFFQUBuaddzm58hKEDVnmlswOV1maxaT0NR01MYp5JMv1RHUPGpRlESoa6RmLHz7bF7pxZdymKVPJAJO7zzziq\\/wAbFWmNM7NLIJw6BEEYKMlm3Ete4IISw2m925FgGds0z7KswhkjpNFZLljP9mSllrWZOU6eLUOP9RhyD+0f2TazKpY2FuhPJt6YL1Ny30tVVUU8VRR1U0EiMrpJE5RlYHggg8EEcHBJPUVM0k1RJJNPLdy7MSzEkkknqSTzf3xqVltta9rcG\\/I\\/P598LZl2KocWA545v6\\/z\\/hiVCAELFVF9w9Pf7r+nzwgg9A1wvI9R9\\/8A9wtGTcqWG1jZhc8\\/n8+uMObAFSPuI\\/j\\/AIYEJN2uZLsbi24+9uceoJ+72suU6aq8m7OKetrKw0FZVUtTWGA1CVKUiU6ALmLyPHK0oZmEcDKajqqlVj8xqzMwk8QA+\\/P2vf52\\/lj0RTdo+fUfwVHTapzxqOKhio95q6lHpUaNVlWKNanaV4UAEqrCJLqguuCu9Y1sR3QQ0NJFa3GnJRHWmjNP02pqyIaZyTK9vhn4TJc2krqOO8an6uf4iffe9z9a1mLL5bbQy\\/opkHUUFvlK\\/wDXiVNmFAKyWZNPZa0SAgRNJOF6gbh9duJ+4MR1+eNcU6VUsKU2n6aRoxHuSPx28Xbe5bz381xfbboNu3m6BYDpuYJJ9Q\\/ZVORUFfWKZaWhnmW9i0cbMAepHHzwYnmgY5VyidQ78VTfZ\\/6V689cGHXuFx51onMEngmzrP1rC8EfhmKrhqGWM00ZhQlHbaERogUaxUo8R2sjKkmk07oU57S5tLS6W+F8ODxcpo483WlIcK7hpZZmmWVN7RkqWS8d13g7mMGNAQYd5HdZTpmLcHdlG63S+kYqx4qSmzeWGSHfG618RETlYbK5aFSxVvHvZQDdQG8l5dWZ6OyCHMN+W1VTLRNTR7YvF3yJO0C7iZDGgIWYsSoTopUM3EjGDAYEM8O6XWIpvKVLpGiy2Noo84oMxPiSRB4qeVTtG0iTzqvDXZRfnytdR5Seyu0Rk1GKpqfVeTVhp5Zo4xBS1INSqSIqyR+JEtlkDs679rBYn3BGKKxgwuqsIG87sfP4oumtRDvTXLp+ljVNktPJuFyFhI2m5Fje3Nhfi4sR63A1HJ4Bz9V7\\/sh1wYMddXhnh3UaxF59kg5TABbZER1\\/ZDCWy2AcGOIgenhjBgx0ErCPDun1iJzXZB8S6JlsbUpieRtiTRR7Ed9qswL8ISFS7cW2jnjG6h01XVdCldl1PQ1TTVJpRSxiKSqLqok3eBzIUsD5wu3hlJF7EwYfVIPTiUwjPPFL1Jn+ZZ9Dk0K02V5P9EZZHlt8no0ojWCOSQrPVLFZZKja6xtKVDOsUZfc252MGDHTUoHTiUevE5r\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770931455,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5496, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB080E1C9905FDFC65519\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQN6U_4QfUSw3GHPh_3mcWZa5lJPI8eI2ru-rEmBbVQoqktwfkeXSaSmNmdagYfV_JF9FHVSWKMJFJXWi16ecwjzCNQ1B9uDz32OruZ2Ow?ccb=9-4&oh=01_Q5Aa3wGVRObPOLrbPwD-44kpiJ86hqAvYOKDNFy97rD4hHPM9g&oe=69B5CB25&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"nwXM1tL68ekXMTn7QDF35F25qAyTKzZl3cd+VZH7u84=\",\"fileLength\":\"258400\",\"height\":900,\"width\":1600,\"mediaKey\":\"fBA8F0yMLpSWCkIxdOjXFqsOkDHMzWN8H7JL4Ene9g0=\",\"fileEncSha256\":\"Oc2+CTgpz5RrvvyENKXuwLvwVeX7GYS\\/Kmcz\\/99TIgs=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQN6U_4QfUSw3GHPh_3mcWZa5lJPI8eI2ru-rEmBbVQoqktwfkeXSaSmNmdagYfV_JF9FHVSWKMJFJXWi16ecwjzCNQ1B9uDz32OruZ2Ow?ccb=9-4&oh=01_Q5Aa3wGVRObPOLrbPwD-44kpiJ86hqAvYOKDNFy97rD4hHPM9g&oe=69B5CB25&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770931453\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHAAAAQQDAQAAAAAAAAAAAAAAAAIFBgcBAwQI\\/8QARBAAAgECBQEGAgYGBQ0AAAAAAQIDBBEABQYSITEHCBMiQVEUcRUjMmGB8BYlM5GhsVXR0uHxFyc1QkVSU2Jyc5KVwf\\/EABoBAAIDAQEAAAAAAAAAAAAAAAACAQQFAwb\\/xAAvEQABAgMECQQCAwAAAAAAAAABAAIDBBEFMaHREhQVIUFRUrHwEyJCkSOBYWLx\\/9oADAMBAAIRAxEAPwClpex3u+5rmdNlWW9pfaRV5rV0KZolJR9mj1FQaNkDpM0SZgXVGRkcMQLo6vyrqTHcx0R3WMoqFo827cNdUVQ0MNQIqjs3MbmKWNZYpNrZiDteN0dT0ZWUi4IOKPMsckpmioTJFBS+ZZdsgSwQM\\/RRYsTYdfMBdjyeP6YSx\\/VVBf0+p\\/vxoutObPuLr\\/6tyWY2ypZopo4uzV4rpzujlQW7wGsA1uQOz24v\\/wCxx1R6I7rEuWz51F24a6fL6WeGlnq17NyYYppVkaKNn+kdqu6wzFVJuwici+02oQZwnrlVB0\\/4Pr+\\/B9Li3GV0F\\/8Asf34Xac11YDJNsyV6cXZr0bQdlfdhzGA1EPeC1BDGcsmzdPitI0lMZaeOVomEYlzZTJLvRgsK3le11Rhzhol0x3TIH8Oft+1rG9gdr9ndjYi4NjmPqDf8cUFR0k1WxFNTNMykeUdef8AD+OM1uX1eXVk2XV9FNTVNO7RyxSqVdHB5VlPQjpbrfEbTmuLh9DJGzZXg0\\/bs1faZD3S423p3htaKw5uOz6x63\\/pLCxlPdSFiO8Xrfy2t\\/m\\/6Wtb\\/aX\\/ACr+4e2PPQKbVO0EC978X598ZKD0XkG3PA\\/HnE7SmeofTckbNlunF2a9A1eRd0yvkMtd3h9aVLs28tL2fbyWve9zmXW\\/N\\/fG2XKe6RUGnM\\/b9q9vh41jBXs9sWUEkX\\/WX3249h63OPPG8WsY14HoLHGVjQLvc2tcW6k\\/L8cSLUmhc7AZKDZkqb24uzXp5J+6JRTNPkfbhrTKX8cTxmj0XOphIk8RQhOaE2DLEQTdrwxm9wSdFfpzucQ0tDNN2sa3ozVI88cv6BuI6mHeUDIGzE3s6SoWDEXW1gVa9DaezXKssijary+kqpBOXYS0yy+Wy7R5hbrfj7jx64mdRrHs1qGjdtMUkRC3ZEy+JQCfvAsR0seOv4YsS85HcwflApzDe9KlUpqXhQ3e2A51a3OPPlXd+uClMWlu6PY+P3idbsb8eH2eIoA9ucwP88GKEZtpt4ag+t+cGKotKZHywGSvGzZU\\/HE5p6qY881CqpR1DEZZQs3hsyKi00djIo5UAEs72AJZibhixbHNmGd5hOzQpqHNKqniqJHg+Icqeb\\/WFd7BXIPNiep5OJDpKLKpqHUS5hk1VmMyZQ8tOsTMscZWeEvJLaaM7Vj3svEg8QRgoRchUOQ0OdUy5rE1E8eyljHxmfUcEwDs0KL4ctSH2qYWB48kfhu2xHQmjUXBXgygrTz\\/AFQ\\/MatcwzCqr0pIqVamZ5hBE0jJEGYnYpkZnIF7AszNxySecZoKl6WdpUramlLQTR+JT\\/aIeNlKHzL5XDbG5+yzcN9k9\\/xOmLf6Pqb\\/ADP9vB8Tpn+jqj\\/yP9rAhNYUsg8psoBv09bdfz0wEcNuVtwPJLYVHFM\\/KI7KbX2qbEfhjFnD2a\\/B6c8t7fPAhBZt++6n2t93HryMYuASGa\\/HrzfiwwWVHO27Lfj5df5YwbljuIuevr+7AhdNdWT1Qp1mipgKeBYVENPHESoN7uUALtzyzXYiwJ4ADjozTVXq7UVPpyipqqomqhIY4aaJ5ZXZIneyqisSTst09ebAEhmO6xLG56XPUe+HHT9dR5XmsVdWwyvHCsnERAYsYyq9Ra1yD7kAi9yCA71zjaQhO0L6GivfO+x3s6yWpmoZuyrtSX4VnWSV89jSOQnmJwsmUo6rYE2YAsP93EKynsO1Bn1TLS5HpbU2ZVFNEZpYqWheZ44wRd2VYyQvmXk8cjHF\\/lSpB0y8XNib5dTHoB0444A\\/ifU4dRqfKM+yRs6nz3J6Wo+PeM5b8KKapsyhzMNkYi8K\\/lC77g3sgXnC715yLGtBo0naVP1kqkEm294o2vzyP6sGAzSg+R2Uey8D92DDL06lml46swZ\\/VU+Wz1cdNklS07RVhgNOjvFEJCA6mVd8iKY\\/MCGuVIBw15xklUVGexw5JR0mYTO8FJSZtDKacFh9X4bTPMirvABlNyASSSGOJT2f6UzPUD6ogodPJnDZdpTMM2mCZzFSfCQxJHI1R5pFFQUBuaddzm58hKEDVnmlswOV1maxaT0NR01MYp5JMv1RHUPGpRlESoa6RmLHz7bF7pxZdymKVPJAJO7zzziq\\/wAbFWmNM7NLIJw6BEEYKMlm3Ete4IISw2m925FgGds0z7KswhkjpNFZLljP9mSllrWZOU6eLUOP9RhyD+0f2TazKpY2FuhPJt6YL1Ny30tVVUU8VRR1U0EiMrpJE5RlYHggg8EEcHBJPUVM0k1RJJNPLdy7MSzEkkknqSTzf3xqVltta9rcG\\/I\\/P598LZl2KocWA545v6\\/z\\/hiVCAELFVF9w9Pf7r+nzwgg9A1wvI9R9\\/8A9wtGTcqWG1jZhc8\\/n8+uMObAFSPuI\\/j\\/AIYEJN2uZLsbi24+9uceoJ+72suU6aq8m7OKetrKw0FZVUtTWGA1CVKUiU6ALmLyPHK0oZmEcDKajqqlVj8xqzMwk8QA+\\/P2vf52\\/lj0RTdo+fUfwVHTapzxqOKhio95q6lHpUaNVlWKNanaV4UAEqrCJLqguuCu9Y1sR3QQ0NJFa3GnJRHWmjNP02pqyIaZyTK9vhn4TJc2krqOO8an6uf4iffe9z9a1mLL5bbQy\\/opkHUUFvlK\\/wDXiVNmFAKyWZNPZa0SAgRNJOF6gbh9duJ+4MR1+eNcU6VUsKU2n6aRoxHuSPx28Xbe5bz381xfbboNu3m6BYDpuYJJ9Q\\/ZVORUFfWKZaWhnmW9i0cbMAepHHzwYnmgY5VyidQ78VTfZ\\/6V689cGHXuFx51onMEngmzrP1rC8EfhmKrhqGWM00ZhQlHbaERogUaxUo8R2sjKkmk07oU57S5tLS6W+F8ODxcpo483WlIcK7hpZZmmWVN7RkqWS8d13g7mMGNAQYd5HdZTpmLcHdlG63S+kYqx4qSmzeWGSHfG618RETlYbK5aFSxVvHvZQDdQG8l5dWZ6OyCHMN+W1VTLRNTR7YvF3yJO0C7iZDGgIWYsSoTopUM3EjGDAYEM8O6XWIpvKVLpGiy2Noo84oMxPiSRB4qeVTtG0iTzqvDXZRfnytdR5Seyu0Rk1GKpqfVeTVhp5Zo4xBS1INSqSIqyR+JEtlkDs679rBYn3BGKKxgwuqsIG87sfP4oumtRDvTXLp+ljVNktPJuFyFhI2m5Fje3Nhfi4sR63A1HJ4Bz9V7\\/sh1wYMddXhnh3UaxF59kg5TABbZER1\\/ZDCWy2AcGOIgenhjBgx0ErCPDun1iJzXZB8S6JlsbUpieRtiTRR7Ed9qswL8ISFS7cW2jnjG6h01XVdCldl1PQ1TTVJpRSxiKSqLqok3eBzIUsD5wu3hlJF7EwYfVIPTiUwjPPFL1Jn+ZZ9Dk0K02V5P9EZZHlt8no0ojWCOSQrPVLFZZKja6xtKVDOsUZfc252MGDHTUoHTiUevE5r\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770931455,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:15'),
(5497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:15'),
(5498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931455537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:15'),
(5499, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:15'),
(5500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:16'),
(5501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:16'),
(5502, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931455413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:16'),
(5503, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931455413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:16'),
(5504, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931455537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:15.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:16'),
(5505, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:17.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:17'),
(5506, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C1F456ED98531A7F68\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ai mano cobranco sozinho já\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931457,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:17.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:17'),
(5507, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:17.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:18'),
(5508, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C1F456ED98531A7F68\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ai mano cobranco sozinho já\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931457,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:17.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:18'),
(5509, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931458041,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:18'),
(5510, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931458131,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:18'),
(5511, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931458041,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:18'),
(5512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931458131,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:18'),
(5513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:18'),
(5514, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931459123,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:19.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:19'),
(5515, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931459207,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:19.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:19'),
(5516, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931459123,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:19.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:19'),
(5517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:19'),
(5518, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931459207,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:19.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:19'),
(5519, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:20'),
(5520, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B7AE09E658E701A0F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"hehe\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931458,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:20'),
(5521, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B7AE09E658E701A0F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"hehe\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931458,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:20'),
(5522, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:18.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:20'),
(5523, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:19.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:20'),
(5524, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:19.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:21'),
(5525, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B46460CF96C03A7C7F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"fiz um teste da cron agr bombo\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931475,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:35.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:36'),
(5526, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:35.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:36'),
(5527, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B46460CF96C03A7C7F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"fiz um teste da cron agr bombo\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770931475,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:35.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:36'),
(5528, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:35.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:36'),
(5529, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931476126,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:36.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:36'),
(5530, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931476126,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:36.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:37'),
(5531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:36.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:37'),
(5532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:36.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:37'),
(5533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931477841,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:37.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:24:37'),
(5534, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770931477841,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:24:37.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:24:38'),
(5535, 'presence.update', 'JTVPLAY_NOVA', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"date_time\":\"2026-02-12T18:26:35.503Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:35'),
(5536, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:26:40.251Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:40'),
(5537, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:26:40.499Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:40'),
(5538, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB0FF7486756F4EFBA6E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wSX69J10afIeHg==\",\"senderTimestamp\":\"1770763101\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"KLpo\\/utMAcKcUA==\",\"recipientTimestamp\":\"1770729826\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3rFYDe7U9DEWGqHz7RV+TIXkYFEI3we3eJzFtK3P9sI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770931600,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T18:26:40.252Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:40'),
(5539, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:26:40.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:26:40'),
(5540, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FF7486756F4EFBA6E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770931600,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:26:40.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:26:40'),
(5541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791063914@s.whatsapp.net\",\"pushName\":\"Jou Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:26:41.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:26:41'),
(5542, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791063914@s.whatsapp.net\",\"pushName\":\"Jou Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:26:41.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:41'),
(5543, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FF7486756F4EFBA6E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770931600,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:26:40.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:41'),
(5544, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T18:26:40.378Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:41'),
(5545, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:26:40.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:26:41'),
(5546, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"275724367827004:51@lid\",\"id\":\"ACC4203EC1819D1793A8E40C40B8CD5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932084865,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:34:44.866Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:34:45'),
(5547, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BDA5424588E09AD3C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m234\\/AQM95bEwjfvJyELWrF2N3hVbbI53SQTrdz9pwv7IY9_VGVh0xELiv8OE7zkbmgNtp-1O9kCmy397DsEQmQcbxasUwvLnyci7lQXJz2_ykg?ccb=9-4&oh=01_Q5Aa3wHqrNJmDRt804NFZqSpczP_NH23NiFPmDIjzROfhSFqNA&oe=69B5B286&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"BaI7\\/3FwoBowriP9fRa0CJ460e2pwO0yK+l9N6rmVjU=\",\"fileLength\":\"163433\",\"height\":900,\"width\":1600,\"mediaKey\":\"CP9T68CqWAr3e\\/\\/ls+Gdy1uMVmjAfiXH9n2y4\\/APdoI=\",\"fileEncSha256\":\"YO44mqvOyGYVHDx4hm1CwU0rwliipnqQqilGJe15xvc=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m234\\/AQM95bEwjfvJyELWrF2N3hVbbI53SQTrdz9pwv7IY9_VGVh0xELiv8OE7zkbmgNtp-1O9kCmy397DsEQmQcbxasUwvLnyci7lQXJz2_ykg?ccb=9-4&oh=01_Q5Aa3wHqrNJmDRt804NFZqSpczP_NH23NiFPmDIjzROfhSFqNA&oe=69B5B286&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770932458\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHQABAAEFAQEBAAAAAAAAAAAAAAgBAwQFCQIGB\\/\\/EAEIQAAIBAgMEBgcDCAsAAAAAAAECAwQRAAUSBgcJIQgTFBkx1BUiUVZYlJYyQeQWFyMkdoGGtRgoNDc4QmFjZ6bh\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAAIBAwUE\\/8QALhEAAQICBgoCAwEAAAAAAAAAAQACAwQREiFRodEFExQVMTJBUmGxcZEigfDB\\/9oADAMBAAIRAxEAPwCI1Xsrs09Js7mGa7f7E5ZLtDTSVckfpGtrJMtRSyotYtLSy9XI+kFUUswBGsJfEnOjbw6qPpC7nMj3tfnbj2f9MvVp6PbJDU9V1FTJDfrO0pq1dXq+yLXtztcw3q6uFgGhkDvJBHFIDSxxhdKr9nSTzuvNrBm5k82bHTXcHv8A6\\/o69Afd1tnlm79dsKjMc\\/rsoFAc1Wg0B6nMZjL1jRyA27Pp02F9Xjysd2YnpgCs04DJY0HR0sTVq4uzWhThC08bak6QkSmxW42bINiLEf2z2HAcIiFYWp16Q0QidldkGzjaWZQQCR2zmQGax\\/1PtxqMv4rMOyMlTRxdGzMmeKNHmFbvGqK7ShYlSGmpntcy\\/ceY0g8lUDJ75OL4bF+rvwOOLecz3YNyXTuuV7T9uzWfJwiopXEkvSHjdwgjDNs4xOkKFC37Z4BQAB7BbFvug6P4gqf6bPnMYnfJRfDWn1cPI4d8lD8NafVw8jiN5zN+AyRuyW7T9uzWV3QdH8QNN9NnzmMqPhMvFS9jTpEUwh0smn8mR4N4i\\/a741ffJQ\\/DWn1cPI4d8lD8NafVw8jhm6Vm28HYDJKdEyjuZuJzWypuEtLRU9XR0fSREEFfGsNXFHkLqlRGrq6pIBWWdQ6IwBuNSqfEDFyLhPTQ1GX1K9JDTJlYUUjpkcitBpkaQdWe2\\/o7OzMNNuZJ8SSdT3yMPw1J9XDyOKd8jB8NSfVw8jiN5zN4+m5Jt1y3aft2a39Rwnslljqqen3z0NLT1NQtQIYsmnKRadYVQGrjcASEAtqYAePNtVufhK7NSxRCPfJSQyozdYyZPIVdeWmytVkhh61zexGnkCCW0nfIwfDUn1cPI4d8hB8NMf1cPI4G6UmWANDhZ4afYtUHRcq4klpt8uzs\\/So3CLpYCVn6QTTE8wYNmgFA9nOqPP8A8wxOnYXbJd4mwmy+8Fcs9GjafI8vznsYm63s3aaaObq9eldenXbVpW9r2HhhhhpGZo5sBkoOjpanlxOa4OVFfsvV5NIslRWwZkgiEYjomdJQsEaFXkeqOka1Y8oz7RpBEaTGz6rjpOGbuiqJMvoK5Rt5OphrqN6mFgXzgEsiENyBJuOfLlzxBSorJ6uQS1EzyOsaRAu5YhUUKouT4BVAA8AAALAYnFtQ1SOF3usel7SXXbWqb9Xq1p3sDnBNna\\/s+yObeA8cTMWM\\/rldD48aFDiLPKFK6br9mNn5RVxIgMkdUqQtYgsqo4Ia7c+RF0Gke3Bz5VimSlNBR00tNqjeSnjnQ1R1N+lKy8l8LWVUHIere+NvQ+naFM6o4K2shjmpYlniiz+GJZdQspkHhUIA7Aov2dViRzB+czClrqaplSvRutVyjuW1hmB8Q4JDDl4gkH7sZYNK6uvH0sbDDDEpkwwwwITDDDAhMMMMCF3q6PJH9HzdZ+w+Qfy6DDFOj1\\/h93WfsPkH8ugwxaOCrJtXCtMonrciavoqWeSeikJqkSKRjHTmNWSVtMWhVuH9ZpCTceqACzdKdyO6Wk31cPTd1slV7K5rtAIM\\/r64U2W5nSUEqWqcxiMhkqoZUIAmtYKHuysGGk45btKWN7W5AcgB4DHarhxH+p3sOf8AdzX+ZVOO6Z5B8qiFxX4lkPD+2bmz2CPM91O2+XUlfPTw1dW+0+z9StJECFaVYvRvMqpLFVsXI53Jx+j5rws+jVnMqzVm2238bKLAUnoulX96w5eoP7xiXZN8UJxmQ4RZSC4mn4\\/wBac1NQ5irq4LYdAo\\/GuafJrOdb8UDwob9030Xvfzeb89ReSxTum+i77+bzfnqLyWJj3Ax5Jvh6oXLWUOu6c6Lvv7vN+eovJYd070XPf3eb89ReRxMQnHm9sFUKKyh53T3Rc9\\/d5vz1F5HDun+i37\\/bzPnqLyOJgk3x5JwVQisogd0\\/0W\\/f7eb89ReRxTuoOi17\\/bzfnqLyOJfk+3Hkm+CqEVlrNltl8o2G2UyLYfIKmqqMs2cyqjyejlqiDNJDTQJCjSFVUFyEFyFAvewA5YY2VxhhktK4B59sOKeCghK5RTOsEbNLQ1HaGn1wxSAy2ndUazi6gJpcyIwDIypNjo59NzJ+jzuYyDdKNlaLaObKBLL2+PNailjftMzVLIyNRsVaIzNG2nWpaMlWZSDhhjQcdZa61ZRjRBSAfS+0qeK31M6wxbhhOjRq5lj2psqsQpKHVRhrjUQbAj1TYnkTcquKpHTsoh3Hx1QZUYmLahgFLKpKnXRLzUkqbcrqbEixLDCGEw9FImYo6+l7ruKfT0pIg3N0tZaV47wbTSi6qFIf8ASUK+q2ogf5vVNwPVJya\\/ihZdSLVGn3YZXWGnlmjjEG0lUDUqkiKskfWZctlkDs669LBYn1BGKKzDC7O0gWmzH+8UJ9qiG1auXisLGEK7i0kLC5C7UH1DcixvRjnYA8rixH33Asnivf8AAv8A2n8HhhizUwz0UbREvVs8WC3huDv\\/ABT+Dx4bixWP9wd\\/4p\\/B4YYsEvDPRNr4l6srxVY6iqQJuCVZZCiaztf1YPM2DMaQCw1H7RtzN8bCn4oOYZjQR1tDuBjqWkqWplpYNsg1UWEerV1ApesKab+uFKgqbkG2GGLNmhXe04ivPVa9uLGyW1bghz+78q+Y525\\/qfLwwwww+yQbvajXPvX\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770932464,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:04'),
(5548, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:04'),
(5549, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932464625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:04'),
(5550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:04'),
(5551, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932464625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:04'),
(5552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:05'),
(5553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5554, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BDA5424588E09AD3C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m234\\/AQM95bEwjfvJyELWrF2N3hVbbI53SQTrdz9pwv7IY9_VGVh0xELiv8OE7zkbmgNtp-1O9kCmy397DsEQmQcbxasUwvLnyci7lQXJz2_ykg?ccb=9-4&oh=01_Q5Aa3wHqrNJmDRt804NFZqSpczP_NH23NiFPmDIjzROfhSFqNA&oe=69B5B286&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"BaI7\\/3FwoBowriP9fRa0CJ460e2pwO0yK+l9N6rmVjU=\",\"fileLength\":\"163433\",\"height\":900,\"width\":1600,\"mediaKey\":\"CP9T68CqWAr3e\\/\\/ls+Gdy1uMVmjAfiXH9n2y4\\/APdoI=\",\"fileEncSha256\":\"YO44mqvOyGYVHDx4hm1CwU0rwliipnqQqilGJe15xvc=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m234\\/AQM95bEwjfvJyELWrF2N3hVbbI53SQTrdz9pwv7IY9_VGVh0xELiv8OE7zkbmgNtp-1O9kCmy397DsEQmQcbxasUwvLnyci7lQXJz2_ykg?ccb=9-4&oh=01_Q5Aa3wHqrNJmDRt804NFZqSpczP_NH23NiFPmDIjzROfhSFqNA&oe=69B5B286&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770932458\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHQABAAEFAQEBAAAAAAAAAAAAAAgBAwQFCQIGB\\/\\/EAEIQAAIBAgMEBgcDCAsAAAAAAAECAwQRAAUSBgcJIQgTFBkx1BUiUVZYlJYyQeQWFyMkdoGGtRgoNDc4QmFjZ6bh\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAAIBAwUE\\/8QALhEAAQICBgoCAwEAAAAAAAAAAQACAwQREiFRodEFExQVMTJBUmGxcZEigfDB\\/9oADAMBAAIRAxEAPwCI1Xsrs09Js7mGa7f7E5ZLtDTSVckfpGtrJMtRSyotYtLSy9XI+kFUUswBGsJfEnOjbw6qPpC7nMj3tfnbj2f9MvVp6PbJDU9V1FTJDfrO0pq1dXq+yLXtztcw3q6uFgGhkDvJBHFIDSxxhdKr9nSTzuvNrBm5k82bHTXcHv8A6\\/o69Afd1tnlm79dsKjMc\\/rsoFAc1Wg0B6nMZjL1jRyA27Pp02F9Xjysd2YnpgCs04DJY0HR0sTVq4uzWhThC08bak6QkSmxW42bINiLEf2z2HAcIiFYWp16Q0QidldkGzjaWZQQCR2zmQGax\\/1PtxqMv4rMOyMlTRxdGzMmeKNHmFbvGqK7ShYlSGmpntcy\\/ceY0g8lUDJ75OL4bF+rvwOOLecz3YNyXTuuV7T9uzWfJwiopXEkvSHjdwgjDNs4xOkKFC37Z4BQAB7BbFvug6P4gqf6bPnMYnfJRfDWn1cPI4d8lD8NafVw8jiN5zN+AyRuyW7T9uzWV3QdH8QNN9NnzmMqPhMvFS9jTpEUwh0smn8mR4N4i\\/a741ffJQ\\/DWn1cPI4d8lD8NafVw8jhm6Vm28HYDJKdEyjuZuJzWypuEtLRU9XR0fSREEFfGsNXFHkLqlRGrq6pIBWWdQ6IwBuNSqfEDFyLhPTQ1GX1K9JDTJlYUUjpkcitBpkaQdWe2\\/o7OzMNNuZJ8SSdT3yMPw1J9XDyOKd8jB8NSfVw8jiN5zN4+m5Jt1y3aft2a39Rwnslljqqen3z0NLT1NQtQIYsmnKRadYVQGrjcASEAtqYAePNtVufhK7NSxRCPfJSQyozdYyZPIVdeWmytVkhh61zexGnkCCW0nfIwfDUn1cPI4d8hB8NMf1cPI4G6UmWANDhZ4afYtUHRcq4klpt8uzs\\/So3CLpYCVn6QTTE8wYNmgFA9nOqPP8A8wxOnYXbJd4mwmy+8Fcs9GjafI8vznsYm63s3aaaObq9eldenXbVpW9r2HhhhhpGZo5sBkoOjpanlxOa4OVFfsvV5NIslRWwZkgiEYjomdJQsEaFXkeqOka1Y8oz7RpBEaTGz6rjpOGbuiqJMvoK5Rt5OphrqN6mFgXzgEsiENyBJuOfLlzxBSorJ6uQS1EzyOsaRAu5YhUUKouT4BVAA8AAALAYnFtQ1SOF3usel7SXXbWqb9Xq1p3sDnBNna\\/s+yObeA8cTMWM\\/rldD48aFDiLPKFK6br9mNn5RVxIgMkdUqQtYgsqo4Ia7c+RF0Gke3Bz5VimSlNBR00tNqjeSnjnQ1R1N+lKy8l8LWVUHIere+NvQ+naFM6o4K2shjmpYlniiz+GJZdQspkHhUIA7Aov2dViRzB+czClrqaplSvRutVyjuW1hmB8Q4JDDl4gkH7sZYNK6uvH0sbDDDEpkwwwwITDDDAhMMMMCF3q6PJH9HzdZ+w+Qfy6DDFOj1\\/h93WfsPkH8ugwxaOCrJtXCtMonrciavoqWeSeikJqkSKRjHTmNWSVtMWhVuH9ZpCTceqACzdKdyO6Wk31cPTd1slV7K5rtAIM\\/r64U2W5nSUEqWqcxiMhkqoZUIAmtYKHuysGGk45btKWN7W5AcgB4DHarhxH+p3sOf8AdzX+ZVOO6Z5B8qiFxX4lkPD+2bmz2CPM91O2+XUlfPTw1dW+0+z9StJECFaVYvRvMqpLFVsXI53Jx+j5rws+jVnMqzVm2238bKLAUnoulX96w5eoP7xiXZN8UJxmQ4RZSC4mn4\\/wBac1NQ5irq4LYdAo\\/GuafJrOdb8UDwob9030Xvfzeb89ReSxTum+i77+bzfnqLyWJj3Ax5Jvh6oXLWUOu6c6Lvv7vN+eovJYd070XPf3eb89ReRxMQnHm9sFUKKyh53T3Rc9\\/d5vz1F5HDun+i37\\/bzPnqLyOJgk3x5JwVQisogd0\\/0W\\/f7eb89ReRxTuoOi17\\/bzfnqLyOJfk+3Hkm+CqEVlrNltl8o2G2UyLYfIKmqqMs2cyqjyejlqiDNJDTQJCjSFVUFyEFyFAvewA5YY2VxhhktK4B59sOKeCghK5RTOsEbNLQ1HaGn1wxSAy2ndUazi6gJpcyIwDIypNjo59NzJ+jzuYyDdKNlaLaObKBLL2+PNailjftMzVLIyNRsVaIzNG2nWpaMlWZSDhhjQcdZa61ZRjRBSAfS+0qeK31M6wxbhhOjRq5lj2psqsQpKHVRhrjUQbAj1TYnkTcquKpHTsoh3Hx1QZUYmLahgFLKpKnXRLzUkqbcrqbEixLDCGEw9FImYo6+l7ruKfT0pIg3N0tZaV47wbTSi6qFIf8ASUK+q2ogf5vVNwPVJya\\/ihZdSLVGn3YZXWGnlmjjEG0lUDUqkiKskfWZctlkDs669LBYn1BGKKzDC7O0gWmzH+8UJ9qiG1auXisLGEK7i0kLC5C7UH1DcixvRjnYA8rixH33Asnivf8AAv8A2n8HhhizUwz0UbREvVs8WC3huDv\\/ABT+Dx4bixWP9wd\\/4p\\/B4YYsEvDPRNr4l6srxVY6iqQJuCVZZCiaztf1YPM2DMaQCw1H7RtzN8bCn4oOYZjQR1tDuBjqWkqWplpYNsg1UWEerV1ApesKab+uFKgqbkG2GGLNmhXe04ivPVa9uLGyW1bghz+78q+Y525\\/qfLwwwww+yQbvajXPvX\\/2Q==\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770932464,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:04.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:05'),
(5555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932465587,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:05.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:05'),
(5556, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932465587,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:05.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:05'),
(5557, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:08'),
(5558, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:08'),
(5559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932468713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:08'),
(5560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932468794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:08'),
(5561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932468713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:08'),
(5562, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:09.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:09'),
(5563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:09.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:09'),
(5564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932468794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:09'),
(5565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02EAA32C58388F5711B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🥹\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770932468,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:41:09'),
(5566, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02EAA32C58388F5711B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🥹\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770932468,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:41:08.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:41:09'),
(5567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB06552FB3EC31111D4FB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770932632742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:52.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:43:53'),
(5568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB06552FB3EC31111D4FB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770932632742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:52.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:43:53'),
(5569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:59.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:43:59'),
(5570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:59.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:43:59'),
(5571, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:59.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:00'),
(5572, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:59.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:00'),
(5573, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:00'),
(5574, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:59.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:00'),
(5575, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:43:59.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:00'),
(5576, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CA1EEB732276A34129E1FCB9479D6C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"38hbRqSEqt8Q3iTJWBiH0cRICW59ViBLshlprhHgC9E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770932639,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:01'),
(5577, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:01'),
(5578, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:01'),
(5579, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:01'),
(5580, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CA1EEB732276A34129E1FCB9479D6C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"38hbRqSEqt8Q3iTJWBiH0cRICW59ViBLshlprhHgC9E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770932639,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:01'),
(5581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:02'),
(5582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:02'),
(5583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:02'),
(5584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:00.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:03'),
(5585, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:54.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:55'),
(5586, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08E72E12D1B491F18A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"to arrumando os comandos agr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770932694,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:54.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:55'),
(5587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:54.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:55'),
(5588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08E72E12D1B491F18A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"to arrumando os comandos agr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770932694,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:54.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:55'),
(5589, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB08E72E12D1B491F18A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932695221,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:55.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:55'),
(5590, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB08E72E12D1B491F18A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770932695221,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:55.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:56'),
(5591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:55.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:44:56'),
(5592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:44:55.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:44:57'),
(5593, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T18:50:02.204Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:50:02'),
(5594, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"connecting\",\"statusReason\":200},\"date_time\":\"2026-02-12T18:50:02.239Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:50:02'),
(5595, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"close\",\"statusReason\":428},\"date_time\":\"2026-02-12T18:50:02.190Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 18:50:02'),
(5596, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"open\",\"statusReason\":200},\"date_time\":\"2026-02-12T18:50:03.579Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:50:03'),
(5597, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:54:33.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:54:34'),
(5598, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:54:33.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:54:34'),
(5599, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:54:37.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:54:37'),
(5600, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:54:37.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:54:37'),
(5601, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:55:10.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:55:10'),
(5602, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:55:10.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:55:10'),
(5603, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:55:10.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:55:10'),
(5604, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:55:10.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:55:10'),
(5605, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FB49FB5078F86D698C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770933492,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:12.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:58:12'),
(5606, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:58:12.821Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:12'),
(5607, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:58:12.776Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:13'),
(5608, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FB49FB5078F86D698C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770933492,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:12.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:13'),
(5609, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB0FB49FB5078F86D698C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770933492,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T18:58:12.822Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:13'),
(5610, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T18:58:13.151Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:13'),
(5611, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:58:13.486Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:13'),
(5612, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB077B7898C1A513140C7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏰ *Lembrete: Seu pagamento vence em breve!*\\n\\nOlá, *teste*! 👋\\n\\nSeu pagamento vence em *3 dias*:\\n📅 Vencimento: *15\\/02\\/2026*\\n💰 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspensão do serviço!\\n\\nApós pagar, confirme enviando *\\/pago* 📱\\n\\n_Estamos à disposição!_ 😊\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770933496,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:16.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:58:16'),
(5613, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB077B7898C1A513140C7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏰ *Lembrete: Seu pagamento vence em breve!*\\n\\nOlá, *teste*! 👋\\n\\nSeu pagamento vence em *3 dias*:\\n📅 Vencimento: *15\\/02\\/2026*\\n💰 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspensão do serviço!\\n\\nApós pagar, confirme enviando *\\/pago* 📱\\n\\n_Estamos à disposição!_ 😊\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770933496,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:16.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:16'),
(5614, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:58:16.943Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:17'),
(5615, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T18:58:16.987Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:17'),
(5616, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB077B7898C1A513140C7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏰ *Lembrete: Seu pagamento vence em breve!*\\n\\nOlá, *teste*! 👋\\n\\nSeu pagamento vence em *3 dias*:\\n📅 Vencimento: *15\\/02\\/2026*\\n💰 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspensão do serviço!\\n\\nApós pagar, confirme enviando *\\/pago* 📱\\n\\n_Estamos à disposição!_ 😊\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770933496,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"web\"},\"date_time\":\"2026-02-12T18:58:16.988Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:17'),
(5617, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"}],\"date_time\":\"2026-02-12T18:58:17.312Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:17'),
(5618, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHxeamtfZ7wdm7Ye2ay7ARyKwVvE3rCw_mFZ1Biel8g&oe=699B4614&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:58:17.646Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:17'),
(5619, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EE05561E1E1430215F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📢 *Lembrete de Renovação*\\n\\nOlá, *carol*!\\n\\nSeu plano vence em *7 dias*:\\n📅 Data: *19\\/02\\/2026*\\n💵 Valor: *R$ 100,00*\\n\\nRenove com antecedência e mantenha seu acesso sem interrupções!\\n\\n✅ Após pagar, envie *\\/pago*\\n\\nDúvidas? Estamos aqui para ajudar! 🤝\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770933500,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:20.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:58:20'),
(5620, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EE05561E1E1430215F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📢 *Lembrete de Renovação*\\n\\nOlá, *carol*!\\n\\nSeu plano vence em *7 dias*:\\n📅 Data: *19\\/02\\/2026*\\n💵 Valor: *R$ 100,00*\\n\\nRenove com antecedência e mantenha seu acesso sem interrupções!\\n\\n✅ Após pagar, envie *\\/pago*\\n\\nDúvidas? Estamos aqui para ajudar! 🤝\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770933500,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:20.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:21'),
(5621, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0EE05561E1E1430215F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770933501362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:21.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 18:58:21'),
(5622, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0EE05561E1E1430215F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770933501362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T18:58:21.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:58:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5623, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"275724367827004:51@lid\",\"id\":\"ACC4203EC1819D1793A8E40C40B8CD5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770933594727,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T18:59:54.728Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 18:59:55'),
(5624, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:04:55.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:04:55'),
(5625, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:04:55.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:04:55'),
(5626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:05.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:05'),
(5627, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:05.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:06'),
(5628, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:15.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:16'),
(5629, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:15.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:16'),
(5630, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:26.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:26'),
(5631, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:26.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:26'),
(5632, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:36.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:36'),
(5633, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:36.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:36'),
(5634, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:46.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:46'),
(5635, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:46.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:47'),
(5636, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:48.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:48'),
(5637, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:48.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:48'),
(5638, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:49'),
(5639, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:49'),
(5640, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACCFA80B0AC10BCE9D93A5ACB5C84D70\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593557087_1584376829276606_9077893988613039372_n.enc?ccb=11-4&oh=01_Q5Aa3wE6HhpR_K42UAU0zmlM-SPKslpp-oZ47zSm06xfzuprcw&oe=69B5B177&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"33eW7aE88f6c9Yn\\/uGcz7SPk5XgGDNRDxrFjAMkxd10=\",\"fileLength\":\"109311\",\"seconds\":53,\"ptt\":true,\"mediaKey\":\"VralLyn6PKMrEAxj7h5XXr3FLtcMSgsHJLYCQ+Fa6WM=\",\"fileEncSha256\":\"4VmZn8YZ4ZgNiKyj9zBuLnGerHUoZCM9wNiO2P04+RQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593557087_1584376829276606_9077893988613039372_n.enc?ccb=11-4&oh=01_Q5Aa3wE6HhpR_K42UAU0zmlM-SPKslpp-oZ47zSm06xfzuprcw&oe=69B5B177&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770933896\",\"waveform\":\"AAATCwA8IhpHACsVFwAgJgAqGgcWAAA2AA0dAAAALjAgAAAaABEAJxQqGAoAGhEMAAkvDDMAERYVAAAhEQApAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r24xAPIbFXLlqMq9EbO0ZPW4HV09y7Jy3jsK5jU4zRA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770933948,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:49'),
(5641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:49'),
(5642, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACCFA80B0AC10BCE9D93A5ACB5C84D70\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593557087_1584376829276606_9077893988613039372_n.enc?ccb=11-4&oh=01_Q5Aa3wE6HhpR_K42UAU0zmlM-SPKslpp-oZ47zSm06xfzuprcw&oe=69B5B177&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"33eW7aE88f6c9Yn\\/uGcz7SPk5XgGDNRDxrFjAMkxd10=\",\"fileLength\":\"109311\",\"seconds\":53,\"ptt\":true,\"mediaKey\":\"VralLyn6PKMrEAxj7h5XXr3FLtcMSgsHJLYCQ+Fa6WM=\",\"fileEncSha256\":\"4VmZn8YZ4ZgNiKyj9zBuLnGerHUoZCM9wNiO2P04+RQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593557087_1584376829276606_9077893988613039372_n.enc?ccb=11-4&oh=01_Q5Aa3wE6HhpR_K42UAU0zmlM-SPKslpp-oZ47zSm06xfzuprcw&oe=69B5B177&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770933896\",\"waveform\":\"AAATCwA8IhpHACsVFwAgJgAqGgcWAAA2AA0dAAAALjAgAAAaABEAJxQqGAoAGhEMAAkvDDMAERYVAAAhEQApAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r24xAPIbFXLlqMq9EbO0ZPW4HV09y7Jy3jsK5jU4zRA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770933948,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:49'),
(5643, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:49'),
(5644, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:05:49'),
(5645, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:05:49.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:05:49'),
(5646, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:29.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:29'),
(5647, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:29.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:29'),
(5648, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:38.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:38'),
(5649, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:38.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:38'),
(5650, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:46.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:46'),
(5651, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:46.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:46'),
(5652, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:48.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:48'),
(5653, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:48.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:48'),
(5654, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1D17F79872E23133A6\"},\"pushName\":\"Clovis Faria\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/23757292_2182804795591639_2804764733888708590_n.enc?ccb=11-4&oh=01_Q5Aa3wEKuWhuPvXVVLbv-XQKh6mWdQAz2GiglCv_Fi76Pdsa5g&oe=69B5A5A3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"D4t55aNSpzuydBUoU5G\\/1L6UwO7BRj5x5FXrR4pV1vk=\",\"fileLength\":\"36698\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"BwAjWLFIgph4mesnGVoNGaao8TOeNeJL9C7sS+8e7fM=\",\"fileEncSha256\":\"umRhcGdxB8llw55H6TpPQYVWJX9Z57yby1itW5HgtWI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/23757292_2182804795591639_2804764733888708590_n.enc?ccb=11-4&oh=01_Q5Aa3wEKuWhuPvXVVLbv-XQKh6mWdQAz2GiglCv_Fi76Pdsa5g&oe=69B5A5A3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770934113\",\"streamingSidecar\":\"fxhZaPRLCjEVFw==\",\"waveform\":\"HGRkZFVkZDFkZGRkZGRkUBkOVl9kXWNkTEcxZGFkPj81ZFxCGBIjOGRPMBc3K0ZVZEwiExVdZGRgZDAZUEk9Lg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770896514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AndWT28MQZo72MDJLZEcIofHPciDJq2X5xi\\/0ESLQ5s=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770934128,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:48.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:48'),
(5655, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1D17F79872E23133A6\"},\"pushName\":\"Clovis Faria\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/23757292_2182804795591639_2804764733888708590_n.enc?ccb=11-4&oh=01_Q5Aa3wEKuWhuPvXVVLbv-XQKh6mWdQAz2GiglCv_Fi76Pdsa5g&oe=69B5A5A3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"D4t55aNSpzuydBUoU5G\\/1L6UwO7BRj5x5FXrR4pV1vk=\",\"fileLength\":\"36698\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"BwAjWLFIgph4mesnGVoNGaao8TOeNeJL9C7sS+8e7fM=\",\"fileEncSha256\":\"umRhcGdxB8llw55H6TpPQYVWJX9Z57yby1itW5HgtWI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/23757292_2182804795591639_2804764733888708590_n.enc?ccb=11-4&oh=01_Q5Aa3wEKuWhuPvXVVLbv-XQKh6mWdQAz2GiglCv_Fi76Pdsa5g&oe=69B5A5A3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770934113\",\"streamingSidecar\":\"fxhZaPRLCjEVFw==\",\"waveform\":\"HGRkZFVkZDFkZGRkZGRkUBkOVl9kXWNkTEcxZGFkPj81ZFxCGBIjOGRPMBc3K0ZVZEwiExVdZGRgZDAZUEk9Lg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770896514\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AndWT28MQZo72MDJLZEcIofHPciDJq2X5xi\\/0ESLQ5s=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770934128,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:48.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:48'),
(5656, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcdiHHs6OdnlmVSC4O0Z_Ev3p2j1uxVMiYFCZJQQbbhQ&oe=699B4E3C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:48.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:48'),
(5657, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcdiHHs6OdnlmVSC4O0Z_Ev3p2j1uxVMiYFCZJQQbbhQ&oe=699B4E3C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:48.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:49'),
(5658, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997393627@s.whatsapp.net\",\"pushName\":\"Clovis Faria $35 Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcdiHHs6OdnlmVSC4O0Z_Ev3p2j1uxVMiYFCZJQQbbhQ&oe=699B4E3C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:49.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:08:49'),
(5659, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515997393627@s.whatsapp.net\",\"pushName\":\"Clovis Faria $35 Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcdiHHs6OdnlmVSC4O0Z_Ev3p2j1uxVMiYFCZJQQbbhQ&oe=699B4E3C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:08:49.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:08:49'),
(5660, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1D17F79872E23133A6\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:09:05.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:09:05'),
(5661, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A1D17F79872E23133A6\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:09:05.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:09:05'),
(5662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcdiHHs6OdnlmVSC4O0Z_Ev3p2j1uxVMiYFCZJQQbbhQ&oe=699B4E3C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:09:05.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:09:05'),
(5663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997393627@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcdiHHs6OdnlmVSC4O0Z_Ev3p2j1uxVMiYFCZJQQbbhQ&oe=699B4E3C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:09:05.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:09:05'),
(5664, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:02'),
(5665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F2FED077990B9D6875\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770934381,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:02'),
(5666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0F2FED077990B9D6875\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934382268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:02'),
(5667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:02'),
(5668, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0F2FED077990B9D6875\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934382268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:02'),
(5669, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F2FED077990B9D6875\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770934381,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:02'),
(5670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:03'),
(5671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:02.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:03'),
(5672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428580,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5673, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428580,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:48'),
(5674, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428565,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428594,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428586,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5677, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428608,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5678, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428601,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5679, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:13:48'),
(5680, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428594,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:49'),
(5681, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428565,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:49'),
(5682, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428586,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:49'),
(5683, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428608,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:49'),
(5684, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428601,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:49'),
(5685, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770934428612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:13:48.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:13:50'),
(5686, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:49.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:14:49'),
(5687, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:49.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:14:49'),
(5688, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:58.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:14:58'),
(5689, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:58.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:14:58'),
(5690, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:14:59'),
(5691, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:14:59'),
(5692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A50A923BC1DD2DE72375439D095AE3AA\"},\"pushName\":\"Erick\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635073173_2085132048968168_530546334766757499_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHHKA0LS7Y-TmlBkEu6k_qB2ntxx9s-uvkXjDp6ghMg&oe=69B5D6E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MfhgN99bbYYXeRf8MQ7RUtIPSqClf\\/OE8mEfzeV7gAo=\",\"fileLength\":\"20937\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"n4V+liRV+w0tRKYm58LWCN9E3WpwGoNcWjwztnPL0u8=\",\"fileEncSha256\":\"IZhK+ZH5c6wM649hY\\/ur5GlEnX8T8ixRhEG\\/VoolAS4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635073173_2085132048968168_530546334766757499_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHHKA0LS7Y-TmlBkEu6k_qB2ntxx9s-uvkXjDp6ghMg&oe=69B5D6E5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770934490\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ADIuLjg4JSAeLGFUSFNTNCIRFVZVNx5iLlI4XVlPT0lGOg0WIRYUCwkYFiBUL2FPRkpIPGBUOVw3MzgbWhgSGg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZpiMMxfteT20f4w0N8YzSmAn5j47jkv5qL90t4b0iWE=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770934498,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:14:59'),
(5693, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:14:59'),
(5694, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A50A923BC1DD2DE72375439D095AE3AA\"},\"pushName\":\"Erick\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635073173_2085132048968168_530546334766757499_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHHKA0LS7Y-TmlBkEu6k_qB2ntxx9s-uvkXjDp6ghMg&oe=69B5D6E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MfhgN99bbYYXeRf8MQ7RUtIPSqClf\\/OE8mEfzeV7gAo=\",\"fileLength\":\"20937\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"n4V+liRV+w0tRKYm58LWCN9E3WpwGoNcWjwztnPL0u8=\",\"fileEncSha256\":\"IZhK+ZH5c6wM649hY\\/ur5GlEnX8T8ixRhEG\\/VoolAS4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635073173_2085132048968168_530546334766757499_n.enc?ccb=11-4&oh=01_Q5Aa3wFvHHKA0LS7Y-TmlBkEu6k_qB2ntxx9s-uvkXjDp6ghMg&oe=69B5D6E5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770934490\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ADIuLjg4JSAeLGFUSFNTNCIRFVZVNx5iLlI4XVlPT0lGOg0WIRYUCwkYFiBUL2FPRkpIPGBUOVw3MzgbWhgSGg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZpiMMxfteT20f4w0N8YzSmAn5j47jkv5qL90t4b0iWE=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770934498,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:14:59'),
(5695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:15:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5696, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:15:00'),
(5697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:14:59.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:15:00'),
(5698, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0663DE85517D85648C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770934558,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:15:58'),
(5700, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:15:58'),
(5701, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0663DE85517D85648C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770934558,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:15:58'),
(5702, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:15:58'),
(5703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:15:59'),
(5704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:15:59'),
(5705, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0663DE85517D85648C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934558490,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:15:58.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:15:59'),
(5706, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09582B475BFFABB18EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"entao ele vai mandar o comprovante pra mim\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934957,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:37'),
(5707, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:37'),
(5708, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:37'),
(5709, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09582B475BFFABB18EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"entao ele vai mandar o comprovante pra mim\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934957,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:37'),
(5710, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934957685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:38'),
(5711, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:38'),
(5712, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934957685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:38'),
(5713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:37.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:38'),
(5714, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934958172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:38.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:38'),
(5715, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934958172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:38.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:39'),
(5716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB052BA52475BE3722390\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ai eu coloco \\/pago\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934960,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:41'),
(5717, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:41'),
(5718, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB052BA52475BE3722390\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ai eu coloco \\/pago\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934960,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:41'),
(5719, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:41'),
(5720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934961382,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:41'),
(5721, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934961452,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:42'),
(5722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934961382,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:42'),
(5723, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934961452,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:42'),
(5724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:42'),
(5725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:41.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:43'),
(5726, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C6B4C571B077CDF830\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ele atualiza apenas no gestor\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934967,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:47'),
(5727, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:47'),
(5728, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:47'),
(5729, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C6B4C571B077CDF830\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ele atualiza apenas no gestor\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934967,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:47'),
(5730, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934967890,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:47'),
(5731, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934967970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:48'),
(5732, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934967890,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:48'),
(5733, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934967970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:47.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:48'),
(5734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:48.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:22:48'),
(5735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:22:48.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:22:48'),
(5736, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB030B6DF033BB5B0ABB9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"o intuito é apenas pra nao deixar de cobrar o cliente entendeu ai a renovaçao vai ser manual mesmo nos paineis\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934988,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:08.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:08'),
(5737, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB030B6DF033BB5B0ABB9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"o intuito é apenas pra nao deixar de cobrar o cliente entendeu ai a renovaçao vai ser manual mesmo nos paineis\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934988,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:08.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:08'),
(5738, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:08.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:08'),
(5739, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:08.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:08'),
(5740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934988952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:08.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:09'),
(5741, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934988952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:08.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:09'),
(5742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:09.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:09'),
(5743, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934989396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:09.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:09'),
(5744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:09.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:09'),
(5745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934989396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:09.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:09'),
(5746, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB052322C4FE6A251247E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ta ficando mt top negao\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934992,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:12.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:12'),
(5747, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:12.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:12'),
(5748, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:12.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:13'),
(5749, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB052322C4FE6A251247E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"ta ficando mt top negao\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770934992,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:12.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:13'),
(5750, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934993231,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:13.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:13'),
(5751, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934993313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:13.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:13'),
(5752, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934993231,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:13.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:13'),
(5753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:13.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:14'),
(5754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:13.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:14'),
(5755, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770934993313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:13.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:14'),
(5756, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:26'),
(5757, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09D135B47960F9EFDDD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPd28vX3UjEXS7m6QonJD-Y1mA6ODbJKFz7F2WfgHP0_hp1gvqClUS-55jxGJhlzshDrFzFuyvPSi9gUNmB-As0E5lkgqNw-AivN0Ev4A?ccb=9-4&oh=01_Q5Aa3wGkSQ7r2ncd2SIsYVfQEgl90sCwJDlUFBiLsaLrQhetWw&oe=69B5B5D2&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ocKXX4FOZnyCKn1zQwwtGOCEbQxZHEesWvKN0JP5lqA=\",\"fileLength\":\"155533\",\"height\":900,\"width\":1600,\"mediaKey\":\"CunVRGI454oyofkoHJ7WW0FVemIim9AHHgg242YE4ik=\",\"fileEncSha256\":\"kDxVZY6OdM01P4KQE7wc3jGS7I4zfv321lGv\\/gVVwvg=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPd28vX3UjEXS7m6QonJD-Y1mA6ODbJKFz7F2WfgHP0_hp1gvqClUS-55jxGJhlzshDrFzFuyvPSi9gUNmB-As0E5lkgqNw-AivN0Ev4A?ccb=9-4&oh=01_Q5Aa3wGkSQ7r2ncd2SIsYVfQEgl90sCwJDlUFBiLsaLrQhetWw&oe=69B5B5D2&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935002\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAQMFAQEAAAAAAAAAAAAAAAIICQMEBQYHAQr\\/xABIEAACAQIDBQQFAw8NAAAAAAABAgMEEQAFEgYHCRMhCBQiMRUyQVFhFpLhGSMkJUJESFNUZIaWotTkFzM3VVhncYGCpsLR0v\\/EABkBAAIDAQAAAAAAAAAAAAAAAAABAgMEBf\\/EADMRAAEBBAYKAQIHAAAAAAAAAAEAAgMEEQUSEyGh0RQVMkFRUmFxkbExIuFCYmOBkqLw\\/9oADAMBAAIRAxEAPwBo1Vsrs29Js7mGabwNicsl2hpZKuSP0jW1kmWopZUWsWlpZeXI+m6opZgCOYEvhznZt4ddH2hdzmR72v5W49n\\/AEy9Wno9skNTyuRUyQ35neU1auXq9UWvbra5ZvV1cLANDIHeSCOKQGljjC6VX1dJPW69WsGbqT1ZsTDcPWlFf2SdgoQzq0dTmUykVLwg6cznBB0euLMTobwkgA+8d2Ijn7IrhrBnJcZzR0Ns1cWs1w48IKkP4QMH6tH98wfUg6MfhAU9vd8mj++YkHqdmIa2amnqKmqRqRw0YhrJo1a1j41RgJOotZwRa\\/vIxipN1+RyvTSNmu0QNJW9\\/j07Q5ioMutn0uBPaSK7kcprx6Qq6dKqBj1lEc2AyWjVkNy4nNMOThDU0bao+0JCpsRcbNkGxFj9+e7Ck4RqxlTH2ikUpG0S22eYWRrhlH2Z5HU1x7dR9+H8RbN1OzuU02WbNsa0pMLjNc1qJJOUz3kbnyCaR2UMdKt08l1KLWvKOjrp551qBSxwqymFo5i8jRlFN3QqAh18xbBmBCq17sVUNJxE9r+oySFHQ05VT5azUe31IOj\\/ALQNN+rZ\\/fMKfhEU8jM8naFgZnOpidnCST7z9mYkSOUX++P2Ppx56H\\/Of2PpwayiObAZJ6shuU+Tmo9s14Tc2d10mZZt2joqqrlYvJNLs6S7sSSWY98uSSSST1N8UxwkYuXFBJ2h4XhhLFI\\/QDBRq9aw75YXsL287DD9ZabPRV5nTQU+VSGGNDlwNe4edzG5tUKIjyF1rpDKZbi7WBGk5VcnEiK61YIYAghbg\\/4dcM0pEk3tYDJRFFwo+kMny1mmCV3CeyKs1Km+LLqdA5MKpk1QwgQu7ctNdc3hu\\/tufCDe5YtSn4SuzUsUQj3yUkMqM3MZMnkKuvTTZWqyQw8VzexGnoCCWkA9B\\/nX7H04xme5HX08HpHKHpqnMY9EVPBWVslJTSEuLhyiyC9r2+tsTYL0BuEzScSwyGWWhdxA9kKTVFwzRJLJv6nO79lHs3CLpYCVn7QTTE9QYNmgFA93WqPX6MGJAYKapoqWmpKxESoip4llVKh51V9AuBK4DSAHprYBm8yAScGGKRiZbWAySNHQ09nE5qASor9l6vJpFkqK2DMkEQjEdEzpKFgjQq8j1R0jWrHpGfeNIIjSX7hzNEOyLsTJLEsqls1Qo3UG+ZTn\\/jiFyorJ6uQS1EzyOsaRAu5YhUUKouT5BVAA8gAALAYmb4d2X0eb9jrY2gr56qKCU5rqemrJaWQEZnORaWJldfL2MLi48sEVcwr3O0nIJRQJnEuaNLM8EkIiWgZIO7oQb8wWi5mr2dXI6+Xla9MuX\\/1VT\\/NX\\/rFhneS5RNXR1xTPKmSrPc5RRZ7PTxQRMpBlMfeI0FrDxIpkuQQL3I2ET0pF+bEP9Qxz59Fp7LFxSZfT25WWRAqQQSbkEfEi+NG2sG+CpzKqh2Ug2AOUvEkcL5kK1awfW1D6miFgQ2rSVPlp9uOm94pPx0PzhiwiznmJG75RUxF6maBleWnuiIZAsxtKRok0KVAJcc1NapZ9F8O\\/sGq1QNd7wots1h8y7LkeX03aOy+jjpJH3W1zpqJqKmOuMj3JPXQir0vYWA6AYXOO0fLpHc90YCsHFlzJeo99h1HwPQ47P3ij\\/HQ\\/OGKNZX09NTPPDCKt0HSGGSMO\\/X2F2Vfj1IxrFIzMrFjx91XYy\\/EfK0DZeo3srlucDbCDYNK4wj0SMpSrEDS8uUHvPMGopqMXqdbF\\/hjT8xyrtJ1mb0+Z0+fbu6KGBUBoYIJzBLZ9TF9cDSXYeA2cWX1dLeLHbI8zgep5D0rRpZzzmkh0eHTboHLeLUbdPuGvbw6rnvND+UQfPGICNqNFoumDPpcO16dlMAViuONP2i\\/uaPdF\\/nFmP\\/nFnCO0pBLPKE3SyiZw6rImYlYhYDStl8rgt1ubsRewUDs9dmdPSQrLBTmtZpoojHBJEGVXkVWkPMdRpRWLsAdRVG0qzaVNfvVB+U0\\/z1xPWX6LH8fulYfmPlarTSZhLR0j5v3MV\\/doRViiDCnE4jUSCLX4tGq+m\\/W1r4MXeZmJq6VoSpQ2IK2segv5fHBjCTMzU\\/hfPX8mM3qcjNdTZPXtUUkp7zGtLKxSBkVkla0IRVvr8RkJNxZQBqaYjh0pLF2QdiI5o2RxLml1YEEfbGp9mIWWznM2NzmFT5Afzh9gxNHw5ppJux\\/sRLNI0jtLmt2Ykk\\/bGp9uN8XVqCrxVDqda9OVJthOAm+PCcc9aEE\\/DCSbYLgYSTfAhB648J+GAnCb2wIRhJN8BN8JJwJL0m2E4CffhJN8CEE4MeXGDAhQB59sOKeCghK5RTOsEbNLQ1HeGn1wxSAy2ndUazi6gJpcyIwDIyo9js59tzJ+zzuYyDdKNlaLaObKBLL3+PNailjfvMzVLIyNRsVaIzNG2nWpaMlWZSDgwY6DRtL2r1yi+eCYB9LdKnit8mdYYtwwnRo1cyx7U2VWIUlDqow1xqINgR4TYnoTUquKpHTsoh3Hx1QZUYmLahgFLKpKnXRL1UkqbdLqbEixJgxAumDuTES9G\\/0l13FPp6UkQbm6WstK8d4NppRdVCkP9coV8LaiB914TcDwk3NfxQsupFqjT7sMrrDTyzRxiDaSqBqVSRFWSPmZctlkDs669LBYn1BGKKxgxHR2SBebsf8AdJKelPDesXLxWFjCFdxaSFhchdqD4DcixvRjrYA9LixHtuBRPFe\\/uF\\/3T\\/B4MGLLF2dyWkPOKpniwW8twd\\/0p\\/g8IbixWP8AQHf9Kf4PBgxYId2dylbvOKorxVY6iqQJuCVZZCiaztfywepsGY0gFhqPrG3U3xkKfig5hmNBHW0O4GOpaSpamWlg2yDVRYR6tXIFLzCmm\\/jClQVNyDbBgxZozrh7Uw9bO9Y9uLGyW1bgh19nyr6jrbr9h9PLBgwYnojnh7Stm+K\\/\\/9k=\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935005,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:26'),
(5758, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5759, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09D135B47960F9EFDDD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPd28vX3UjEXS7m6QonJD-Y1mA6ODbJKFz7F2WfgHP0_hp1gvqClUS-55jxGJhlzshDrFzFuyvPSi9gUNmB-As0E5lkgqNw-AivN0Ev4A?ccb=9-4&oh=01_Q5Aa3wGkSQ7r2ncd2SIsYVfQEgl90sCwJDlUFBiLsaLrQhetWw&oe=69B5B5D2&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ocKXX4FOZnyCKn1zQwwtGOCEbQxZHEesWvKN0JP5lqA=\",\"fileLength\":\"155533\",\"height\":900,\"width\":1600,\"mediaKey\":\"CunVRGI454oyofkoHJ7WW0FVemIim9AHHgg242YE4ik=\",\"fileEncSha256\":\"kDxVZY6OdM01P4KQE7wc3jGS7I4zfv321lGv\\/gVVwvg=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPd28vX3UjEXS7m6QonJD-Y1mA6ODbJKFz7F2WfgHP0_hp1gvqClUS-55jxGJhlzshDrFzFuyvPSi9gUNmB-As0E5lkgqNw-AivN0Ev4A?ccb=9-4&oh=01_Q5Aa3wGkSQ7r2ncd2SIsYVfQEgl90sCwJDlUFBiLsaLrQhetWw&oe=69B5B5D2&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935002\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAQMFAQEAAAAAAAAAAAAAAAIICQMEBQYHAQr\\/xABIEAACAQIDBQQFAw8NAAAAAAABAgMEEQAFEgYHCRMhCBQiMRUyQVFhFpLhGSMkJUJESFNUZIaWotTkFzM3VVhncYGCpsLR0v\\/EABkBAAIDAQAAAAAAAAAAAAAAAAABAgMEBf\\/EADMRAAEBBAYKAQIHAAAAAAAAAAEAAgMEEQUSEyGh0RQVMkFRUmFxkbExIuFCYmOBkqLw\\/9oADAMBAAIRAxEAPwBo1Vsrs29Js7mGabwNicsl2hpZKuSP0jW1kmWopZUWsWlpZeXI+m6opZgCOYEvhznZt4ddH2hdzmR72v5W49n\\/AEy9Wno9skNTyuRUyQ35neU1auXq9UWvbra5ZvV1cLANDIHeSCOKQGljjC6VX1dJPW69WsGbqT1ZsTDcPWlFf2SdgoQzq0dTmUykVLwg6cznBB0euLMTobwkgA+8d2Ijn7IrhrBnJcZzR0Ns1cWs1w48IKkP4QMH6tH98wfUg6MfhAU9vd8mj++YkHqdmIa2amnqKmqRqRw0YhrJo1a1j41RgJOotZwRa\\/vIxipN1+RyvTSNmu0QNJW9\\/j07Q5ioMutn0uBPaSK7kcprx6Qq6dKqBj1lEc2AyWjVkNy4nNMOThDU0bao+0JCpsRcbNkGxFj9+e7Ck4RqxlTH2ikUpG0S22eYWRrhlH2Z5HU1x7dR9+H8RbN1OzuU02WbNsa0pMLjNc1qJJOUz3kbnyCaR2UMdKt08l1KLWvKOjrp551qBSxwqymFo5i8jRlFN3QqAh18xbBmBCq17sVUNJxE9r+oySFHQ05VT5azUe31IOj\\/ALQNN+rZ\\/fMKfhEU8jM8naFgZnOpidnCST7z9mYkSOUX++P2Ppx56H\\/Of2PpwayiObAZJ6shuU+Tmo9s14Tc2d10mZZt2joqqrlYvJNLs6S7sSSWY98uSSSST1N8UxwkYuXFBJ2h4XhhLFI\\/QDBRq9aw75YXsL287DD9ZabPRV5nTQU+VSGGNDlwNe4edzG5tUKIjyF1rpDKZbi7WBGk5VcnEiK61YIYAghbg\\/4dcM0pEk3tYDJRFFwo+kMny1mmCV3CeyKs1Km+LLqdA5MKpk1QwgQu7ctNdc3hu\\/tufCDe5YtSn4SuzUsUQj3yUkMqM3MZMnkKuvTTZWqyQw8VzexGnoCCWkA9B\\/nX7H04xme5HX08HpHKHpqnMY9EVPBWVslJTSEuLhyiyC9r2+tsTYL0BuEzScSwyGWWhdxA9kKTVFwzRJLJv6nO79lHs3CLpYCVn7QTTE9QYNmgFA93WqPX6MGJAYKapoqWmpKxESoip4llVKh51V9AuBK4DSAHprYBm8yAScGGKRiZbWAySNHQ09nE5qASor9l6vJpFkqK2DMkEQjEdEzpKFgjQq8j1R0jWrHpGfeNIIjSX7hzNEOyLsTJLEsqls1Qo3UG+ZTn\\/jiFyorJ6uQS1EzyOsaRAu5YhUUKouT5BVAA8gAALAYmb4d2X0eb9jrY2gr56qKCU5rqemrJaWQEZnORaWJldfL2MLi48sEVcwr3O0nIJRQJnEuaNLM8EkIiWgZIO7oQb8wWi5mr2dXI6+Xla9MuX\\/1VT\\/NX\\/rFhneS5RNXR1xTPKmSrPc5RRZ7PTxQRMpBlMfeI0FrDxIpkuQQL3I2ET0pF+bEP9Qxz59Fp7LFxSZfT25WWRAqQQSbkEfEi+NG2sG+CpzKqh2Ug2AOUvEkcL5kK1awfW1D6miFgQ2rSVPlp9uOm94pPx0PzhiwiznmJG75RUxF6maBleWnuiIZAsxtKRok0KVAJcc1NapZ9F8O\\/sGq1QNd7wots1h8y7LkeX03aOy+jjpJH3W1zpqJqKmOuMj3JPXQir0vYWA6AYXOO0fLpHc90YCsHFlzJeo99h1HwPQ47P3ij\\/HQ\\/OGKNZX09NTPPDCKt0HSGGSMO\\/X2F2Vfj1IxrFIzMrFjx91XYy\\/EfK0DZeo3srlucDbCDYNK4wj0SMpSrEDS8uUHvPMGopqMXqdbF\\/hjT8xyrtJ1mb0+Z0+fbu6KGBUBoYIJzBLZ9TF9cDSXYeA2cWX1dLeLHbI8zgep5D0rRpZzzmkh0eHTboHLeLUbdPuGvbw6rnvND+UQfPGICNqNFoumDPpcO16dlMAViuONP2i\\/uaPdF\\/nFmP\\/nFnCO0pBLPKE3SyiZw6rImYlYhYDStl8rgt1ubsRewUDs9dmdPSQrLBTmtZpoojHBJEGVXkVWkPMdRpRWLsAdRVG0qzaVNfvVB+U0\\/z1xPWX6LH8fulYfmPlarTSZhLR0j5v3MV\\/doRViiDCnE4jUSCLX4tGq+m\\/W1r4MXeZmJq6VoSpQ2IK2segv5fHBjCTMzU\\/hfPX8mM3qcjNdTZPXtUUkp7zGtLKxSBkVkla0IRVvr8RkJNxZQBqaYjh0pLF2QdiI5o2RxLml1YEEfbGp9mIWWznM2NzmFT5Afzh9gxNHw5ppJux\\/sRLNI0jtLmt2Ykk\\/bGp9uN8XVqCrxVDqda9OVJthOAm+PCcc9aEE\\/DCSbYLgYSTfAhB648J+GAnCb2wIRhJN8BN8JJwJL0m2E4CffhJN8CEE4MeXGDAhQB59sOKeCghK5RTOsEbNLQ1HeGn1wxSAy2ndUazi6gJpcyIwDIyo9js59tzJ+zzuYyDdKNlaLaObKBLL3+PNailjfvMzVLIyNRsVaIzNG2nWpaMlWZSDgwY6DRtL2r1yi+eCYB9LdKnit8mdYYtwwnRo1cyx7U2VWIUlDqow1xqINgR4TYnoTUquKpHTsoh3Hx1QZUYmLahgFLKpKnXRL1UkqbdLqbEixJgxAumDuTES9G\\/0l13FPp6UkQbm6WstK8d4NppRdVCkP9coV8LaiB914TcDwk3NfxQsupFqjT7sMrrDTyzRxiDaSqBqVSRFWSPmZctlkDs669LBYn1BGKKxgxHR2SBebsf8AdJKelPDesXLxWFjCFdxaSFhchdqD4DcixvRjrYA9LixHtuBRPFe\\/uF\\/3T\\/B4MGLLF2dyWkPOKpniwW8twd\\/0p\\/g8IbixWP8AQHf9Kf4PBgxYId2dylbvOKorxVY6iqQJuCVZZCiaztfywepsGY0gFhqPrG3U3xkKfig5hmNBHW0O4GOpaSpamWlg2yDVRYR6tXIFLzCmm\\/jClQVNyDbBgxZozrh7Uw9bO9Y9uLGyW1bgh19nyr6jrbr9h9PLBgwYnojnh7Stm+K\\/\\/9k=\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935005,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:26'),
(5760, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935006389,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:26'),
(5761, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935006578,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:27'),
(5762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:27'),
(5763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935006578,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:27'),
(5764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:27'),
(5765, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935006389,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:26.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:27'),
(5766, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:34.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:35'),
(5767, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D01451FA0989319A2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"to fazendo ate um controle de chave pix pra nao passar d 5 mil\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770935014,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:34.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:35'),
(5768, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935015017,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:35'),
(5769, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:34.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:35'),
(5770, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D01451FA0989319A2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"to fazendo ate um controle de chave pix pra nao passar d 5 mil\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770935014,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:34.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:35'),
(5771, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935015125,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:35'),
(5772, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935016168,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:36.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:36'),
(5773, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935016240,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:36.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:36'),
(5774, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935016168,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:36.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:36'),
(5775, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935016240,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:36.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:36'),
(5776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:36.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:36'),
(5777, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0058521D96E12E85D7F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"por chave\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770935015,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:37'),
(5778, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0058521D96E12E85D7F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"por chave\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770935015,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:37'),
(5779, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:37'),
(5780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935015017,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:37'),
(5781, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935015125,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:37'),
(5782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:38'),
(5783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:36.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:38'),
(5784, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:38'),
(5785, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:35.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:38'),
(5786, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0805FF06361A427903A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"vamo ve se vai rola\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770935021,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:41.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:42'),
(5787, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:41.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:42'),
(5788, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0805FF06361A427903A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"vamo ve se vai rola\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770935021,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:41.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:42'),
(5789, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:41.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:42'),
(5790, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935022336,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:42.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:42'),
(5791, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:72@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935022336,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:42.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:42'),
(5792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:42.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:42'),
(5793, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935022809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:42.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:23:43'),
(5794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhikq0zKwYKFo_8Uh__hpePgqHFXbkCWS0v27-L2wnGA&oe=699B54A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:42.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:43'),
(5795, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935022809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:23:42.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:23:43'),
(5796, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0FF7486756F4EFBA6E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935182375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:22.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:22'),
(5797, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0FF7486756F4EFBA6E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935182375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:22.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:22'),
(5798, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5521996415280@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:28'),
(5799, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5521996415280@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4ACA8757BC3F8CF41451\"},\"pushName\":\"Wania Costa Silva\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOeUtj680JlrRAASZXyix8vDbz5pYmn0ewsDbuL0759ewJ4nksYCZqN0EcTbblL20uyi5ZVhwCrndanRwFsMHcKDj--jtT17JIRos5UoQ?ccb=9-4&oh=01_Q5Aa3wEdmpmR9k0uuIlYNPknZNYCULXeCllP4w0-hCRH8wn6TQ&oe=69B5D168&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"hHMbwfp6QP\\/wIK9LG74kyxxqw4DJf9LinBRaKNmVOnA=\",\"fileLength\":\"40763\",\"height\":1280,\"width\":352,\"mediaKey\":\"Wuk4raWPJWjy\\/QRykYd0G7P9PNMkAH3mqb5JrYABsaE=\",\"fileEncSha256\":\"BD4jInRJIIQZohLONM9awasktjO4qbFukhzZCVHtdcw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOeUtj680JlrRAASZXyix8vDbz5pYmn0ewsDbuL0759ewJ4nksYCZqN0EcTbblL20uyi5ZVhwCrndanRwFsMHcKDj--jtT17JIRos5UoQ?ccb=9-4&oh=01_Q5Aa3wEdmpmR9k0uuIlYNPknZNYCULXeCllP4w0-hCRH8wn6TQ&oe=69B5D168&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935185\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABQDASIAAhEBAxEB\\/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAIDAQb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADo2lhcwIutDTQjSNRwCNYuUMBWA0A\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/8QAIBABAAEEAgIDAAAAAAAAAAAAAQIAERIhEDEDIkFRkf\\/aAAgBAQABPwBJX1KjrfE8hXKxRK7bN\\/Kj13el90qJI6iUdUnuoNRvbfGeM36qMsvjiZ7raozLGnhFm1EsW4mubtoJ62Udbp8Yt98\\/\\/\\/4AAwD\\/2Q==\",\"scansSidecar\":\"fbSM5HzkS5AyWHwamRKjrqQ7xsEIfYFxWq5x9jqUbA3\\/QnBLykiy8Q==\",\"scanLengths\":[2803,17898,8140,11920],\"midQualityFileSha256\":\"tP7SXKxb6P5Gnw1PpfnCzje2MQPmAMemmsvgVmYsfak=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770934997\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c+A0DyBOI0Bn0OwhNtMwMmhF6pOYND23h2cmJYKtoY0=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935188,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:28'),
(5800, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5521996415280@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:28'),
(5801, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5521996415280@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4ACA8757BC3F8CF41451\"},\"pushName\":\"Wania Costa Silva\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOeUtj680JlrRAASZXyix8vDbz5pYmn0ewsDbuL0759ewJ4nksYCZqN0EcTbblL20uyi5ZVhwCrndanRwFsMHcKDj--jtT17JIRos5UoQ?ccb=9-4&oh=01_Q5Aa3wEdmpmR9k0uuIlYNPknZNYCULXeCllP4w0-hCRH8wn6TQ&oe=69B5D168&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"hHMbwfp6QP\\/wIK9LG74kyxxqw4DJf9LinBRaKNmVOnA=\",\"fileLength\":\"40763\",\"height\":1280,\"width\":352,\"mediaKey\":\"Wuk4raWPJWjy\\/QRykYd0G7P9PNMkAH3mqb5JrYABsaE=\",\"fileEncSha256\":\"BD4jInRJIIQZohLONM9awasktjO4qbFukhzZCVHtdcw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOeUtj680JlrRAASZXyix8vDbz5pYmn0ewsDbuL0759ewJ4nksYCZqN0EcTbblL20uyi5ZVhwCrndanRwFsMHcKDj--jtT17JIRos5UoQ?ccb=9-4&oh=01_Q5Aa3wEdmpmR9k0uuIlYNPknZNYCULXeCllP4w0-hCRH8wn6TQ&oe=69B5D168&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935185\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABQDASIAAhEBAxEB\\/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAIDAQb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADo2lhcwIutDTQjSNRwCNYuUMBWA0A\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/8QAIBABAAEEAgIDAAAAAAAAAAAAAQIAERIhEDEDIkFRkf\\/aAAgBAQABPwBJX1KjrfE8hXKxRK7bN\\/Kj13el90qJI6iUdUnuoNRvbfGeM36qMsvjiZ7raozLGnhFm1EsW4mubtoJ62Udbp8Yt98\\/\\/\\/4AAwD\\/2Q==\",\"scansSidecar\":\"fbSM5HzkS5AyWHwamRKjrqQ7xsEIfYFxWq5x9jqUbA3\\/QnBLykiy8Q==\",\"scanLengths\":[2803,17898,8140,11920],\"midQualityFileSha256\":\"tP7SXKxb6P5Gnw1PpfnCzje2MQPmAMemmsvgVmYsfak=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770934997\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c+A0DyBOI0Bn0OwhNtMwMmhF6pOYND23h2cmJYKtoY0=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935188,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:28'),
(5802, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5521996415280@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:28'),
(5803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5521996415280@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:29'),
(5804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:29'),
(5805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:28.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:29'),
(5806, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0FB49FB5078F86D698C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935195500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:35.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:35'),
(5807, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0FB49FB5078F86D698C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935195500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:35.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:35'),
(5808, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB077B7898C1A513140C7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935195832,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:35.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:35'),
(5809, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB077B7898C1A513140C7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935195832,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:35.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:36'),
(5810, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:56.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:26:57'),
(5811, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:26:56.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:26:57'),
(5812, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D25F0CAF28A3D8DD8D59C01AF15C92\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935277310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:57.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:27:57'),
(5813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D25F0CAF28A3D8DD8D59C01AF15C92\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935277310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:57.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:27:57'),
(5814, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:58.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:27:58'),
(5815, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:58.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:27:58'),
(5816, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D25F0CAF28A3D8DD8D59C01AF15C92\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Amor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935277,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:58.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:27:58'),
(5817, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D25F0CAF28A3D8DD8D59C01AF15C92\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Amor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935277,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:58.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:27:58'),
(5818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:58.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:27:58'),
(5819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:27:58.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:27:59'),
(5820, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D25F0CAF28A3D8DD8D59C01AF15C92\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289416,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5821, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D25F0CAF28A3D8DD8D59C01AF15C92\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289416,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:09'),
(5822, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0F2FED077990B9D6875\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:09'),
(5823, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0663DE85517D85648C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289424,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:09'),
(5824, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0EE05561E1E1430215F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:09'),
(5825, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0EE05561E1E1430215F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:10'),
(5826, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0663DE85517D85648C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289424,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:10'),
(5827, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB08E72E12D1B491F18A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289443,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:10'),
(5828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0F2FED077990B9D6875\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:10'),
(5829, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB08E72E12D1B491F18A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935289443,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:09.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:10'),
(5830, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:12.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:12'),
(5831, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:12.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:12'),
(5832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:12.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:13'),
(5833, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:12.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:13'),
(5834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:13.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:13'),
(5835, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:13.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:13'),
(5836, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A51058358B086ECEB06AE3C93D33D50B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GR0XiWDXWT9L49fvbOKbsvaZa1hIfrQnkUK\\/ZnJo988=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935293,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:13.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:13'),
(5837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:13.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:13'),
(5838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A51058358B086ECEB06AE3C93D33D50B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GR0XiWDXWT9L49fvbOKbsvaZa1hIfrQnkUK\\/ZnJo988=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935293,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:13.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:14'),
(5839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:14.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:14'),
(5840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:14.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:14'),
(5841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:14.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:14'),
(5842, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:14.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:14'),
(5843, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:13.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:15'),
(5844, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CA0EDF7A9A773A4A3EDC678D68C023\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935307151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:27.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:27'),
(5845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:26.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:27'),
(5846, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5CA0EDF7A9A773A4A3EDC678D68C023\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Dindinha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:26.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:27'),
(5847, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CA0EDF7A9A773A4A3EDC678D68C023\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935307151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:27.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:27'),
(5848, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:26.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:27'),
(5849, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5CA0EDF7A9A773A4A3EDC678D68C023\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Dindinha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:26.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:28'),
(5850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:27.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:28'),
(5851, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:27.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:28'),
(5852, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:29'),
(5853, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5A8D1A6AFEFF4FC87C4A98DEA1EC677\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ta ai meu deus\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935309,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:29'),
(5854, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:29'),
(5855, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5A8D1A6AFEFF4FC87C4A98DEA1EC677\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ta ai meu deus\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935309,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:29'),
(5857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:30'),
(5858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:30'),
(5859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A8D1A6AFEFF4FC87C4A98DEA1EC677\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935309540,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:29.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:30'),
(5860, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:31.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:31'),
(5861, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5A357AA4CDA2151708814A9CCAB0ED5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ai meu deus\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935311,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:31.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:31'),
(5862, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:31.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:31'),
(5863, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5A357AA4CDA2151708814A9CCAB0ED5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ai meu deus\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935311,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:31.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:31'),
(5864, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A357AA4CDA2151708814A9CCAB0ED5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935311834,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:31.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:31'),
(5865, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A357AA4CDA2151708814A9CCAB0ED5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935311834,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:31.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:32'),
(5866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:32.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:32'),
(5867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:32.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:32'),
(5868, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:32.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:32'),
(5869, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5F60BD43729ABF99CB59406DF120676\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Haha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935312,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:32.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:32'),
(5870, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5F60BD43729ABF99CB59406DF120676\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Haha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935312,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:32.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:33'),
(5871, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:32.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:33'),
(5872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:33.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:33'),
(5873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F60BD43729ABF99CB59406DF120676\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935313220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:33.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:33'),
(5874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:33.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:33'),
(5875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F60BD43729ABF99CB59406DF120676\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935313220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:33.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:34'),
(5876, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A51E964640A35F7D06FF477DDB35D373\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Kd a carol\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935314,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:34.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:34'),
(5877, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:34.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:34'),
(5878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:34.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:34'),
(5879, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A51E964640A35F7D06FF477DDB35D373\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Kd a carol\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935314,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:34.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:34'),
(5880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:35.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:35'),
(5881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:35.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:35'),
(5882, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51E964640A35F7D06FF477DDB35D373\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935316250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:36.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:36'),
(5883, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51E964640A35F7D06FF477DDB35D373\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935316250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:36.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:36'),
(5884, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:38'),
(5885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5F699F6ADEF7AB59B18FF2D20D6887E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Acho q se mijou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935318,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:38'),
(5886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:38'),
(5887, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5F699F6ADEF7AB59B18FF2D20D6887E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Acho q se mijou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935318,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:38'),
(5888, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F699F6ADEF7AB59B18FF2D20D6887E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935318576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:38'),
(5889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:39'),
(5890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:39'),
(5891, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F699F6ADEF7AB59B18FF2D20D6887E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935318576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:38.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:39'),
(5892, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:43'),
(5893, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A54844B45F43FF0BE1EA9E92639D8E68\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Q ir toma banho ela disse\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935323,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:43'),
(5894, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:43'),
(5895, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A54844B45F43FF0BE1EA9E92639D8E68\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Q ir toma banho ela disse\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935323,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:43'),
(5896, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54844B45F43FF0BE1EA9E92639D8E68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935323427,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:43'),
(5897, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:44'),
(5898, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54844B45F43FF0BE1EA9E92639D8E68\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:44'),
(5899, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CA0EDF7A9A773A4A3EDC678D68C023\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324141,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:44'),
(5900, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F699F6ADEF7AB59B18FF2D20D6887E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324108,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:44'),
(5901, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F60BD43729ABF99CB59406DF120676\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324122,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5902, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:45'),
(5903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:45'),
(5904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:45'),
(5905, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A357AA4CDA2151708814A9CCAB0ED5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:45'),
(5906, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:45'),
(5907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:46'),
(5908, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:46'),
(5909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F60BD43729ABF99CB59406DF120676\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324122,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:46'),
(5910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51E964640A35F7D06FF477DDB35D373\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:46'),
(5911, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CF555DB2C5A09D9C59951461725AA2\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Sério\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bMZl4uN29HH5d3lAOtIQLeWSOl7lWcFvOjkPZVQx8js=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:46'),
(5912, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:47'),
(5913, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51E964640A35F7D06FF477DDB35D373\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:47'),
(5914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A357AA4CDA2151708814A9CCAB0ED5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:47'),
(5915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CF555DB2C5A09D9C59951461725AA2\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Sério\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bMZl4uN29HH5d3lAOtIQLeWSOl7lWcFvOjkPZVQx8js=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:47'),
(5916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54844B45F43FF0BE1EA9E92639D8E68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935323427,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:43.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:47'),
(5917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A8D1A6AFEFF4FC87C4A98DEA1EC677\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:48'),
(5918, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5F699F6ADEF7AB59B18FF2D20D6887E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324108,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:48'),
(5919, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54844B45F43FF0BE1EA9E92639D8E68\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:48'),
(5920, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CA0EDF7A9A773A4A3EDC678D68C023\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324141,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:48'),
(5921, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A8D1A6AFEFF4FC87C4A98DEA1EC677\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935324135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:44.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:48'),
(5922, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:51.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:51'),
(5923, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5AD88F9549DF831A4CFDBB375D1085C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Ela ja tomou ontem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e7zQty3nvfNgvmtuSBggukFIwHOdE3WiwUGpeK1D9oE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935331,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:51.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:51'),
(5924, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:51.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:52'),
(5925, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5AD88F9549DF831A4CFDBB375D1085C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Ela ja tomou ontem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e7zQty3nvfNgvmtuSBggukFIwHOdE3WiwUGpeK1D9oE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935331,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:51.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:52'),
(5926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:52.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:52'),
(5927, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:52.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:52'),
(5928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:52.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:52'),
(5929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:52.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:52'),
(5930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A582B600E734372BB47EE2709690A457\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ela flou agr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935338,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:58.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:58'),
(5931, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:58.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:58'),
(5932, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A582B600E734372BB47EE2709690A457\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ela flou agr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935338,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:58.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:59'),
(5933, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:58.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:59'),
(5934, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A582B600E734372BB47EE2709690A457\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935338976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:58.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:59'),
(5935, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A582B600E734372BB47EE2709690A457\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935338976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:58.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:59'),
(5936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:59.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:28:59'),
(5937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:28:59.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:28:59'),
(5938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A51ED970867DB2D755D93A091B27158C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Em toma banho\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935343,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:03.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:03'),
(5939, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:03.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:03'),
(5940, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:03.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:03'),
(5941, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A51ED970867DB2D755D93A091B27158C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Em toma banho\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935343,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:03.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:03'),
(5942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:03.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:03'),
(5943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:03.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:04'),
(5944, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51ED970867DB2D755D93A091B27158C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935344396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:04.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:04'),
(5945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51ED970867DB2D755D93A091B27158C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935344396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:04.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:04'),
(5946, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pq tem q ir deita\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935347,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:07.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:08'),
(5947, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:07.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:08'),
(5948, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:07.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:08'),
(5949, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pq tem q ir deita\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935347,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:07.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:08'),
(5950, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935348187,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:08.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:08'),
(5951, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935348187,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:08.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:08'),
(5952, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:08.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:08'),
(5953, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:08.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:09'),
(5954, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:20.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:20'),
(5955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A586587CDD047A6762E0CB7D54BB6AB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Deve ter passado será\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935360,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:20.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:20'),
(5956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:20.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:20'),
(5957, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A586587CDD047A6762E0CB7D54BB6AB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Deve ter passado será\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935360,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:20.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:20'),
(5958, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:20.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:20'),
(5959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:20.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:21'),
(5960, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51ED970867DB2D755D93A091B27158C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935366714,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:26.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:26'),
(5961, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935366718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:26.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:26'),
(5962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A582B600E734372BB47EE2709690A457\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935366705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:26.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:26'),
(5963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51ED970867DB2D755D93A091B27158C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935366714,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:26.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:26'),
(5964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935366718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:26.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:26'),
(5965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A582B600E734372BB47EE2709690A457\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935366705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:26.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:26'),
(5966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A586587CDD047A6762E0CB7D54BB6AB5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935367033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:27.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:27'),
(5967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A586587CDD047A6762E0CB7D54BB6AB5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935367033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:27.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:27'),
(5968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A582B600E734372BB47EE2709690A457\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:50'),
(5969, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51ED970867DB2D755D93A091B27158C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:50'),
(5970, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A586587CDD047A6762E0CB7D54BB6AB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:50'),
(5971, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A582B600E734372BB47EE2709690A457\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:50'),
(5972, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51ED970867DB2D755D93A091B27158C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:50'),
(5973, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390314,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:29:51'),
(5974, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A586587CDD047A6762E0CB7D54BB6AB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:51'),
(5975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59B3A1606B9591C8CE5F5DEDED680AB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935390314,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:29:50.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:29:51'),
(5976, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:09.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:09'),
(5977, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":true,\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635079355_2095603594607238_6512734547074820777_n.enc?ccb=11-4&oh=01_Q5Aa3wGm4LBhstQHmPfkixQ6KUTEiSH9bInweqcKNTELO15GFg&oe=69B5D7E2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"6win1g8WKh0DdZUornr2QtExmWp30r0aVqP+qLMDqK4=\",\"fileLength\":\"23729\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"2KqoeGndjxlZM+AZLE4egO9dKstcC4+sgYrl4a66Qac=\",\"fileEncSha256\":\"7inl\\/+3\\/7YPmnLR2uF26Sqw\\/SpasFu61jpe8FNwPLfA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635079355_2095603594607238_6512734547074820777_n.enc?ccb=11-4&oh=01_Q5Aa3wGm4LBhstQHmPfkixQ6KUTEiSH9bInweqcKNTELO15GFg&oe=69B5D7E2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935400\",\"waveform\":\"ABwNY1xfR1JdEiIeWFo4XkE8VlhXXVQUGwsUO0tMU1JLPDJiJkxURSJaTkskDCJMYzkfFRMhKEBTU0BYUkNNVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935409,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:09.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:09'),
(5978, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:09.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(5979, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":true,\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635079355_2095603594607238_6512734547074820777_n.enc?ccb=11-4&oh=01_Q5Aa3wGm4LBhstQHmPfkixQ6KUTEiSH9bInweqcKNTELO15GFg&oe=69B5D7E2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"6win1g8WKh0DdZUornr2QtExmWp30r0aVqP+qLMDqK4=\",\"fileLength\":\"23729\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"2KqoeGndjxlZM+AZLE4egO9dKstcC4+sgYrl4a66Qac=\",\"fileEncSha256\":\"7inl\\/+3\\/7YPmnLR2uF26Sqw\\/SpasFu61jpe8FNwPLfA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635079355_2095603594607238_6512734547074820777_n.enc?ccb=11-4&oh=01_Q5Aa3wGm4LBhstQHmPfkixQ6KUTEiSH9bInweqcKNTELO15GFg&oe=69B5D7E2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935400\",\"waveform\":\"ABwNY1xfR1JdEiIeWFo4XkE8VlhXXVQUGwsUO0tMU1JLPDJiJkxURSJaTkskDCJMYzkfFRMhKEBTU0BYUkNNVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935409,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:09.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:09'),
(5980, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:10.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:10'),
(5981, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935410473,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:10.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:10'),
(5982, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:10.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:10'),
(5983, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935410473,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:10.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:10'),
(5984, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:14.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:14'),
(5985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":true,\"id\":\"A5DCBA5D2944453820F5D917250255DD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635053391_922775113629237_1054608441977374246_n.enc?ccb=11-4&oh=01_Q5Aa3wEZZUdH8TgKhD0hM6ZBliuH0H2liZpn8iAfHUOz7oZILg&oe=69B5DACE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xq2bELTduQHvIvi4sNH64x9HNcweLULPqm2sYxp4p9w=\",\"fileLength\":\"8614\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"v\\/kygU\\/fv8XOXNPgyxH8e938yyD+Kq0quaZwz+d3+hE=\",\"fileEncSha256\":\"yGRfcH3ONszmyZQzUrdtkimi+so5bkdsEpUUHg30uEM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635053391_922775113629237_1054608441977374246_n.enc?ccb=11-4&oh=01_Q5Aa3wEZZUdH8TgKhD0hM6ZBliuH0H2liZpn8iAfHUOz7oZILg&oe=69B5DACE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935411\",\"waveform\":\"ACoqHzlTUVJQOTc6S0tMVFZSVF1cTUg1PSdDTlxYLEBQUUtDNj1OQTMxWFlVSUpZWEdEKFFWTUo\\/Ji0+Sk1JUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935414,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:14.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:14'),
(5986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:14.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:14'),
(5987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":true,\"id\":\"A5DCBA5D2944453820F5D917250255DD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635053391_922775113629237_1054608441977374246_n.enc?ccb=11-4&oh=01_Q5Aa3wEZZUdH8TgKhD0hM6ZBliuH0H2liZpn8iAfHUOz7oZILg&oe=69B5DACE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xq2bELTduQHvIvi4sNH64x9HNcweLULPqm2sYxp4p9w=\",\"fileLength\":\"8614\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"v\\/kygU\\/fv8XOXNPgyxH8e938yyD+Kq0quaZwz+d3+hE=\",\"fileEncSha256\":\"yGRfcH3ONszmyZQzUrdtkimi+so5bkdsEpUUHg30uEM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635053391_922775113629237_1054608441977374246_n.enc?ccb=11-4&oh=01_Q5Aa3wEZZUdH8TgKhD0hM6ZBliuH0H2liZpn8iAfHUOz7oZILg&oe=69B5DACE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935411\",\"waveform\":\"ACoqHzlTUVJQOTc6S0tMVFZSVF1cTUg1PSdDTlxYLEBQUUtDNj1OQTMxWFlVSUpZWEdEKFFWTUo\\/Ji0+Sk1JUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935414,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:14.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:14'),
(5988, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A5DCBA5D2944453820F5D917250255DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935414633,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:14.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:14'),
(5989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:15.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:15'),
(5990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:15.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:15'),
(5991, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A5DCBA5D2944453820F5D917250255DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935414633,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:14.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:15'),
(5992, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:54.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:55'),
(5993, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590742328_1393762431920105_7427460578568983131_n.enc?ccb=11-4&oh=01_Q5Aa3wH7saFQJA1mtTtwvlrmAET_NDwg8lupazvGqXXG9GPKKw&oe=69B5C209&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sfXPi9q3QNvJ1nYDXKM3UkeiJUmU0XZhOZnjC9BTZ3I=\",\"fileLength\":\"10939\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"JTXn\\/+bou46RX1SrHcXBto5FJI9lCc0Nfw7\\/5sdd0pM=\",\"fileEncSha256\":\"qzZ1p39nKxqJs+nQTPTXTKv8hUaciDophuBZ4KzwqWI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590742328_1393762431920105_7427460578568983131_n.enc?ccb=11-4&oh=01_Q5Aa3wH7saFQJA1mtTtwvlrmAET_NDwg8lupazvGqXXG9GPKKw&oe=69B5C209&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935451\",\"waveform\":\"AAwMDA0PIS4yR1dVTlctN0RUVlM\\/TExTK0s1U0omF0M3SEpMRENQUlYzDRodPicQCRMQEwwSKz4gVko8SjtRQQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935454,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:54.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:55'),
(5994, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:54.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:55'),
(5995, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590742328_1393762431920105_7427460578568983131_n.enc?ccb=11-4&oh=01_Q5Aa3wH7saFQJA1mtTtwvlrmAET_NDwg8lupazvGqXXG9GPKKw&oe=69B5C209&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sfXPi9q3QNvJ1nYDXKM3UkeiJUmU0XZhOZnjC9BTZ3I=\",\"fileLength\":\"10939\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"JTXn\\/+bou46RX1SrHcXBto5FJI9lCc0Nfw7\\/5sdd0pM=\",\"fileEncSha256\":\"qzZ1p39nKxqJs+nQTPTXTKv8hUaciDophuBZ4KzwqWI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590742328_1393762431920105_7427460578568983131_n.enc?ccb=11-4&oh=01_Q5Aa3wH7saFQJA1mtTtwvlrmAET_NDwg8lupazvGqXXG9GPKKw&oe=69B5C209&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935451\",\"waveform\":\"AAwMDA0PIS4yR1dVTlctN0RUVlM\\/TExTK0s1U0omF0M3SEpMRENQUlYzDRodPicQCRMQEwwSKz4gVko8SjtRQQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935454,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:54.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:55'),
(5996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935455513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:55.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:55'),
(5997, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:55.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:56'),
(5998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:55.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:56'),
(5999, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935455513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:55.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:56'),
(6000, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:57.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:57'),
(6001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"A582DB760601B511BFC41EFFD2E835EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635111932_1721314108841537_4089547272119787222_n.enc?ccb=11-4&oh=01_Q5Aa3wFPpiS2j4lSonuWY_dLk-wIiFu3zFnNgkSch21PLbLOuQ&oe=69B5D2EB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HyvggwICMRChLG9RwDfNOpN5DTdNbwH+UQWfjLH4d1g=\",\"fileLength\":\"2767\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"SUOvq5vDIodd3BSMKXuiLA7dVSYCVkeZErBFZZcZnJM=\",\"fileEncSha256\":\"mUvdWUZiECeNPPfskrCPQDCkt22IMOhcRLJstBSMgno=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635111932_1721314108841537_4089547272119787222_n.enc?ccb=11-4&oh=01_Q5Aa3wFPpiS2j4lSonuWY_dLk-wIiFu3zFnNgkSch21PLbLOuQ&oe=69B5D2EB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935456\",\"waveform\":\"AAQJDQ0NDRMYGxsaITdNWlxeYGBgXVdRU1dbWVdUUlBOTUxMTU5QUVNSTkpKT1VXVlRTU1NSUVBQUFBPTk00UA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:57.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:57'),
(6002, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:57.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:57'),
(6003, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"A582DB760601B511BFC41EFFD2E835EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635111932_1721314108841537_4089547272119787222_n.enc?ccb=11-4&oh=01_Q5Aa3wFPpiS2j4lSonuWY_dLk-wIiFu3zFnNgkSch21PLbLOuQ&oe=69B5D2EB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HyvggwICMRChLG9RwDfNOpN5DTdNbwH+UQWfjLH4d1g=\",\"fileLength\":\"2767\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"SUOvq5vDIodd3BSMKXuiLA7dVSYCVkeZErBFZZcZnJM=\",\"fileEncSha256\":\"mUvdWUZiECeNPPfskrCPQDCkt22IMOhcRLJstBSMgno=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635111932_1721314108841537_4089547272119787222_n.enc?ccb=11-4&oh=01_Q5Aa3wFPpiS2j4lSonuWY_dLk-wIiFu3zFnNgkSch21PLbLOuQ&oe=69B5D2EB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935456\",\"waveform\":\"AAQJDQ0NDRMYGxsaITdNWlxeYGBgXVdRU1dbWVdUUlBOTUxMTU5QUVNSTkpKT1VXVlRTU1NSUVBQUFBPTk00UA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:57.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:57'),
(6004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A582DB760601B511BFC41EFFD2E835EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935458172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:58.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:58'),
(6005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A582DB760601B511BFC41EFFD2E835EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935458172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:58.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:58'),
(6006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:58.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:30:58'),
(6007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:30:58.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:30:58'),
(6008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:47.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:47'),
(6009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:47.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:48'),
(6010, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:49.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:49'),
(6011, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:49.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:49'),
(6012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ABF36FDF5A897F469F5\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Salve irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ju0uZZL0OBRW1QlKYdLAq7RUa6huOIt6QnInFEh0KsY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935509,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:49.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:50'),
(6013, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:50.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:50'),
(6014, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ABF36FDF5A897F469F5\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Salve irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ju0uZZL0OBRW1QlKYdLAq7RUa6huOIt6QnInFEh0KsY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935509,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:49.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:50'),
(6015, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:50.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:50'),
(6016, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:50.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:50'),
(6017, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:51.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:51'),
(6018, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE35653BF9552346A1D\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lq4IynHv97WVTjrU7orRfp7vNrNg27ftfWaSBmpNo6o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935511,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:51.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:51'),
(6019, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:50.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:51'),
(6020, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:51.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:51'),
(6021, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE35653BF9552346A1D\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lq4IynHv97WVTjrU7orRfp7vNrNg27ftfWaSBmpNo6o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935511,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:51.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:51'),
(6022, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:52.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:52'),
(6023, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:52.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:52'),
(6024, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:51.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:52'),
(6025, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:51.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:52'),
(6026, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A52722B0C042D2892335B46EABE6645B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593727028_1577731250101705_3478441918074047904_n.enc?ccb=11-4&oh=01_Q5Aa3wEaLZhbh3CL5moWH2ryBXvuHPMnPS1l9Pbr4mPmEZjt6Q&oe=69B5D5CA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JXpsMxF2RAVhV1S6U3Uh00n8RSw65VP2j0QHcKqMwtQ=\",\"fileLength\":\"10262\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"tI8mp97rymGvBSuqDrBT34qqBMNUsrQDsYTgFNQn8c4=\",\"fileEncSha256\":\"l4psjeMBi2W3xaWMsCUknzmM8MJm7E\\/zXr1gY1RBuPU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593727028_1577731250101705_3478441918074047904_n.enc?ccb=11-4&oh=01_Q5Aa3wEaLZhbh3CL5moWH2ryBXvuHPMnPS1l9Pbr4mPmEZjt6Q&oe=69B5D5CA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935512\",\"waveform\":\"AAoCAgoMDxAUVFpbMFBST09VTVNTUlFKV1hDJ0NRQkFQMTVLQ1ZJNU5GJktLO0UwVVZOQElSUkpFIzZDUjw3Tg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935515,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:55.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:55'),
(6027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:55.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:55'),
(6028, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A52722B0C042D2892335B46EABE6645B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593727028_1577731250101705_3478441918074047904_n.enc?ccb=11-4&oh=01_Q5Aa3wEaLZhbh3CL5moWH2ryBXvuHPMnPS1l9Pbr4mPmEZjt6Q&oe=69B5D5CA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JXpsMxF2RAVhV1S6U3Uh00n8RSw65VP2j0QHcKqMwtQ=\",\"fileLength\":\"10262\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"tI8mp97rymGvBSuqDrBT34qqBMNUsrQDsYTgFNQn8c4=\",\"fileEncSha256\":\"l4psjeMBi2W3xaWMsCUknzmM8MJm7E\\/zXr1gY1RBuPU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593727028_1577731250101705_3478441918074047904_n.enc?ccb=11-4&oh=01_Q5Aa3wEaLZhbh3CL5moWH2ryBXvuHPMnPS1l9Pbr4mPmEZjt6Q&oe=69B5D5CA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935512\",\"waveform\":\"AAoCAgoMDxAUVFpbMFBST09VTVNTUlFKV1hDJ0NRQkFQMTVLQ1ZJNU5GJktLO0UwVVZOQElSUkpFIzZDUjw3Tg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935515,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:55.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:55'),
(6029, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:55.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:55'),
(6030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:55.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:56'),
(6031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:55.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:56'),
(6032, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935516326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:56.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:56'),
(6033, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935516326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:56.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:56'),
(6034, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:58'),
(6035, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:58'),
(6036, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:58'),
(6038, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:58'),
(6039, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8C9BA32DB5CC9EA238\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Deu zika de novo na tv da mãe\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qRFvu6XkKaMYRjKHh9lPVXJLHTMAlQ2DrkUq5PvgLhw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935517,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:59'),
(6040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:59'),
(6041, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:31:59'),
(6042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:31:59'),
(6043, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:31:58.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:00'),
(6044, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:05.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6045, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:05.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:05'),
(6046, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:05.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:06'),
(6047, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:05.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:06'),
(6048, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:10.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:10'),
(6049, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A160C93C62E65C8CE80\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Consegue dar uma atenção, quando puder tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MTz46LoLXxdjoiF1rkSC7d0+jlx6lPdnXcVKaJmVIUE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935530,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:10.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:10'),
(6050, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:10.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:11'),
(6051, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A160C93C62E65C8CE80\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Consegue dar uma atenção, quando puder tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MTz46LoLXxdjoiF1rkSC7d0+jlx6lPdnXcVKaJmVIUE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935530,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:10.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:11'),
(6052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:11.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:11'),
(6053, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:11.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:11'),
(6054, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:11.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:11'),
(6055, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:11.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:12'),
(6056, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:13.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:13'),
(6057, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:13.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:13'),
(6058, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5FB976745748AA28AC2CF528822BF47\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585492460_766480093174766_6846387498827091732_n.enc?ccb=11-4&oh=01_Q5Aa3wHzEL56qjPtqtPPfgqHTfCJ1PGIFv1h0Ojpgkpco0q5cA&oe=69B5D8C5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"d1h\\/R4mGRUoIjgvr4OY0aB1L5o4Cal5dI6Z3HjqtkOQ=\",\"fileLength\":\"18986\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"BCmxrpkVUt1JjWew6Cv0TbbHmQ12h4ECJTd2mUqnDKQ=\",\"fileEncSha256\":\"O1MCEh6ADEIs+4my61P5pRnRL8putjt\\/evdd5W6Ni\\/A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585492460_766480093174766_6846387498827091732_n.enc?ccb=11-4&oh=01_Q5Aa3wHzEL56qjPtqtPPfgqHTfCJ1PGIFv1h0Ojpgkpco0q5cA&oe=69B5D8C5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935526\",\"waveform\":\"AAYANFVOUDhRQlkvHkdHTk1MN1JEUCVAE0Q\\/N0RHFxIVGxQqOk9SN080U0NSOktOLk1LNjwyDwhOO0xGGUccSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935533,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:13.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:13'),
(6059, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:13.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:13'),
(6060, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:13.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:14'),
(6061, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5FB976745748AA28AC2CF528822BF47\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585492460_766480093174766_6846387498827091732_n.enc?ccb=11-4&oh=01_Q5Aa3wHzEL56qjPtqtPPfgqHTfCJ1PGIFv1h0Ojpgkpco0q5cA&oe=69B5D8C5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"d1h\\/R4mGRUoIjgvr4OY0aB1L5o4Cal5dI6Z3HjqtkOQ=\",\"fileLength\":\"18986\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"BCmxrpkVUt1JjWew6Cv0TbbHmQ12h4ECJTd2mUqnDKQ=\",\"fileEncSha256\":\"O1MCEh6ADEIs+4my61P5pRnRL8putjt\\/evdd5W6Ni\\/A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585492460_766480093174766_6846387498827091732_n.enc?ccb=11-4&oh=01_Q5Aa3wHzEL56qjPtqtPPfgqHTfCJ1PGIFv1h0Ojpgkpco0q5cA&oe=69B5D8C5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935526\",\"waveform\":\"AAYANFVOUDhRQlkvHkdHTk1MN1JEUCVAE0Q\\/N0RHFxIVGxQqOk9SN080U0NSOktOLk1LNjwyDwhOO0xGGUccSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935533,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:13.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:14'),
(6062, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:14.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:14'),
(6063, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:14.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:14'),
(6064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935535315,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:15.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:32:15'),
(6065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935535315,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:32:15.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:32:15'),
(6066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935612664,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:32.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:33:32'),
(6067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935612675,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:32.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:33:32'),
(6068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935612664,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:32.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:33:33'),
(6069, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935612675,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:32.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:33:33'),
(6070, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB064CD233A44BE8DAB4B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935616,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:36.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:33:36'),
(6071, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:36.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:33:36'),
(6072, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB064CD233A44BE8DAB4B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935616,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:36.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:33:37'),
(6073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:36.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:33:37'),
(6074, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB064CD233A44BE8DAB4B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935617114,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:37.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:33:37'),
(6075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:37.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:33:37'),
(6076, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB064CD233A44BE8DAB4B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935617114,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:37.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:33:37'),
(6077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:33:37.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:33:37'),
(6078, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:16'),
(6079, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":false,\"id\":\"ACC81439538810CD645324D4117E37DD\"},\"pushName\":\"Maria Firmino\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/635040346_929912406386516_1517317856895365961_n.enc?ccb=11-4&oh=01_Q5Aa3wEiGVxAEjqEfjUAU947MD23ssBjUnbAdwx9XqkfPoks6g&oe=69B5D033&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"0WO4P6PUxtnLHhmu7smcy1CfS1DUZwNMejxY8phS\\/Dw=\",\"fileLength\":\"82690\",\"pageCount\":1,\"mediaKey\":\"u6s0NjL873IRJoI0RksdegCRRQtZSpvb+JEdYdtXG1A=\",\"fileName\":\"comprovante_picpay_PIX_12022026193354.pdf\",\"fileEncSha256\":\"zbnez78DfW\\/FLCmz1Ecc7IBF+gQEWvJ68DjD7bU7Esk=\",\"directPath\":\"\\/v\\/t62.7119-24\\/635040346_929912406386516_1517317856895365961_n.enc?ccb=11-4&oh=01_Q5Aa3wEiGVxAEjqEfjUAU947MD23ssBjUnbAdwx9XqkfPoks6g&oe=69B5D033&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935655\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/635040376_1652906369405627_380982749161386296_n.enc?ccb=11-4&oh=01_Q5Aa3wH-wiRgUU6UBRkHGNwY4jFmjeGWQNirNna4jJtmGcylPw&oe=69B5C712&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Y3CFgbT6dPRwUvSce07m8f\\/5uLZoW2eAXDX7p7AtO7Q=\",\"thumbnailEncSha256\":\"MyaibVlX8f0w\\/NT4m7vmGA1juQEA4R5U8ApMjVQUNfI=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAtAAEBAAMBAQAAAAAAAAAAAAAAAQIDBAUGAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA+6XnTpatqgAAROE9Bw9wAABJfOPQy15lAABMNkKQWUAAAAAAAxtiCrq2aMDqTIA\\/\\/8QAMBAAAgECAwYDBwUAAAAAAAAAAQIDABEEEpETICEiMVMQQeEUIzBCUWFxMkBDkqH\\/2gAIAQEAAT8AdyouFJ+wpcTdgDGwv04fAlVsnKSD9qy4g3vJJ\\/UVHHiHJBnkFh9BvziUx+6\\/VUZxisqmNMuY3a\\/G3wMWHSG6C7XFLiscq2sLDpw9aXE4+5AS48gAKhMhjUyCzHqN6UKVAYgcR1r2O3zL+MopYshBDf4N\\/GI7RAIbG4oJie6dDS4WQRgvO4akTICMxPHz3pcuXmW4qOeOIcsZoOthzCsy\\/UbzKHFjWyi7a6Vso+2ulGGHtpoKAAFgLD9vNLs1BAuLgUGj85BrWaPuDWgVPRgfwaMqKxUk0GjP8g1oNF3F1oFT0a9vBlzC16MAFuY0YAPmNAAVJFIXaynT1rZShr5Tp61EkjNzBQo63WrDw\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8Ad\\/\\/EABcRAQADAAAAAAAAAAAAAAAAABEBMUD\\/2gAIAQMBAT8AJb3f\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uU2XI\\/KbmmL5wK9qmZDywcSjB3Yec4xXuWSfXrwIcds=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770935655,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:16'),
(6080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:16'),
(6081, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":false,\"id\":\"ACC81439538810CD645324D4117E37DD\"},\"pushName\":\"Maria Firmino\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/635040346_929912406386516_1517317856895365961_n.enc?ccb=11-4&oh=01_Q5Aa3wEiGVxAEjqEfjUAU947MD23ssBjUnbAdwx9XqkfPoks6g&oe=69B5D033&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"0WO4P6PUxtnLHhmu7smcy1CfS1DUZwNMejxY8phS\\/Dw=\",\"fileLength\":\"82690\",\"pageCount\":1,\"mediaKey\":\"u6s0NjL873IRJoI0RksdegCRRQtZSpvb+JEdYdtXG1A=\",\"fileName\":\"comprovante_picpay_PIX_12022026193354.pdf\",\"fileEncSha256\":\"zbnez78DfW\\/FLCmz1Ecc7IBF+gQEWvJ68DjD7bU7Esk=\",\"directPath\":\"\\/v\\/t62.7119-24\\/635040346_929912406386516_1517317856895365961_n.enc?ccb=11-4&oh=01_Q5Aa3wEiGVxAEjqEfjUAU947MD23ssBjUnbAdwx9XqkfPoks6g&oe=69B5D033&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935655\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/635040376_1652906369405627_380982749161386296_n.enc?ccb=11-4&oh=01_Q5Aa3wH-wiRgUU6UBRkHGNwY4jFmjeGWQNirNna4jJtmGcylPw&oe=69B5C712&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Y3CFgbT6dPRwUvSce07m8f\\/5uLZoW2eAXDX7p7AtO7Q=\",\"thumbnailEncSha256\":\"MyaibVlX8f0w\\/NT4m7vmGA1juQEA4R5U8ApMjVQUNfI=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAtAAEBAAMBAQAAAAAAAAAAAAAAAQIDBAUGAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA+6XnTpatqgAAROE9Bw9wAABJfOPQy15lAABMNkKQWUAAAAAAAxtiCrq2aMDqTIA\\/\\/8QAMBAAAgECAwYDBwUAAAAAAAAAAQIDABEEEpETICEiMVMQQeEUIzBCUWFxMkBDkqH\\/2gAIAQEAAT8AdyouFJ+wpcTdgDGwv04fAlVsnKSD9qy4g3vJJ\\/UVHHiHJBnkFh9BvziUx+6\\/VUZxisqmNMuY3a\\/G3wMWHSG6C7XFLiscq2sLDpw9aXE4+5AS48gAKhMhjUyCzHqN6UKVAYgcR1r2O3zL+MopYshBDf4N\\/GI7RAIbG4oJie6dDS4WQRgvO4akTICMxPHz3pcuXmW4qOeOIcsZoOthzCsy\\/UbzKHFjWyi7a6Vso+2ulGGHtpoKAAFgLD9vNLs1BAuLgUGj85BrWaPuDWgVPRgfwaMqKxUk0GjP8g1oNF3F1oFT0a9vBlzC16MAFuY0YAPmNAAVJFIXaynT1rZShr5Tp61EkjNzBQo63WrDw\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8Ad\\/\\/EABcRAQADAAAAAAAAAAAAAAAAABEBMUD\\/2gAIAQMBAT8AJb3f\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uU2XI\\/KbmmL5wK9qmZDywcSjB3Yec4xXuWSfXrwIcds=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770935655,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:16'),
(6082, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3U6hj28-qLYssSpVxxNViDvLeSCuX9K0x5cT0Kqw5PA&oe=699B5450&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:16'),
(6083, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3U6hj28-qLYssSpVxxNViDvLeSCuX9K0x5cT0Kqw5PA&oe=699B5450&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:17'),
(6084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3U6hj28-qLYssSpVxxNViDvLeSCuX9K0x5cT0Kqw5PA&oe=699B5450&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:17'),
(6085, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3U6hj28-qLYssSpVxxNViDvLeSCuX9K0x5cT0Kqw5PA&oe=699B5450&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:16.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:18'),
(6086, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB064CD233A44BE8DAB4B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935660451,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:20.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:20'),
(6087, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB064CD233A44BE8DAB4B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935660451,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:20.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:20'),
(6088, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A5DCBA5D2944453820F5D917250255DD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935661177,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:21.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:21'),
(6089, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935661181,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:21.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:21'),
(6090, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A5DCBA5D2944453820F5D917250255DD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935661177,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:21.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:21'),
(6091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935661181,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:21.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:21'),
(6092, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935664472,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:24.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:24'),
(6093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A53EF43185FA92ADB40DCE470503ABA3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935664472,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:24.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:24'),
(6094, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:26.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:26'),
(6095, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:26.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:26'),
(6096, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:30'),
(6097, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A579D4F586F50FECF465A10809B1B187\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Daqui a pouco vou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MRibouOnLX+0BuaMy6C2xck+VVhN1sze8bD3YEnwsqI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935670,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:30'),
(6098, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:30'),
(6099, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A579D4F586F50FECF465A10809B1B187\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Daqui a pouco vou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MRibouOnLX+0BuaMy6C2xck+VVhN1sze8bD3YEnwsqI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935670,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:30'),
(6100, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:30'),
(6101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:31'),
(6102, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:31'),
(6103, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:30.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:32'),
(6104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A5DCBA5D2944453820F5D917250255DD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935675873,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:35.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:35'),
(6105, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"id\":\"A5DCBA5D2944453820F5D917250255DD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935675873,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:35.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:36'),
(6106, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:45.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:45'),
(6107, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:45.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:45'),
(6108, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:55.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:55'),
(6109, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:55.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:55'),
(6110, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:57.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:58'),
(6111, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:57.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:58'),
(6112, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:58.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:34:59'),
(6113, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:34:58.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:34:59'),
(6114, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:09.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6115, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:09.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:09'),
(6116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC0758A6EE7F7E5E9DE1A4DC00E613F8\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"conversation\":\"Beleza depois vejo acabei de chegar do serviço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zkJ3Jh4Pnc1pVliPK4T5SJYV6M34JwYwc\\/UN+jdQsDI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935715,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:15.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:15'),
(6117, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:15.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:15'),
(6118, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:15.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:16'),
(6119, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC0758A6EE7F7E5E9DE1A4DC00E613F8\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"conversation\":\"Beleza depois vejo acabei de chegar do serviço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zkJ3Jh4Pnc1pVliPK4T5SJYV6M34JwYwc\\/UN+jdQsDI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935715,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:15.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:16'),
(6120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:15.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:16'),
(6121, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:15.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:16'),
(6122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:16.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:16'),
(6123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:16.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:17'),
(6124, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:29.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:29'),
(6125, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:29.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:30'),
(6126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935738704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:38.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:38'),
(6127, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935738713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:38.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:38'),
(6128, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935738704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:38.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:38'),
(6129, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935738713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:38.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:38'),
(6130, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935738699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:38.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:39'),
(6131, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A52722B0C042D2892335B46EABE6645B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935738699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:38.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:39'),
(6132, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:40.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:40'),
(6133, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:40.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:40'),
(6134, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935742717,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:42.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:42'),
(6135, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5FB976745748AA28AC2CF528822BF47\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935742717,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:42.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:42'),
(6136, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:44.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:44'),
(6137, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:44.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:44'),
(6138, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:44.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:45'),
(6139, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:44.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:45'),
(6140, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:54.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:54'),
(6141, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:54.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:54'),
(6142, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:55.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:35:55'),
(6143, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:35:55.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:35:55'),
(6144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:01.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:01'),
(6145, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:01.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:02'),
(6146, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:03.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:03'),
(6147, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:03.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:03'),
(6148, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:13.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:13'),
(6149, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:13.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:13'),
(6150, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:15.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:15'),
(6151, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:15.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:15'),
(6152, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:15.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:16'),
(6153, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A65046A82F4F28068C8\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635029860_1924387688158985_1306738547013404617_n.enc?ccb=11-4&oh=01_Q5Aa3wGhGG6LavbSWDrrOAd1JjVpR4BonHlk9mHZxTzCpiREuQ&oe=69B5BA0B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CedFvSBlJ8SV91It+wpVgyWtq2luEXSkF+FSKz8YTzY=\",\"fileLength\":\"26248\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"l9uSPQ0CAMZ55acdCq4wjCdVKEbz7I\\/cb1CB0VF8Hds=\",\"fileEncSha256\":\"zAGuLJrzz7jsFnaTwN6o7syPTSEFPkMvbnHZ8j6nHN8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635029860_1924387688158985_1306738547013404617_n.enc?ccb=11-4&oh=01_Q5Aa3wGhGG6LavbSWDrrOAd1JjVpR4BonHlk9mHZxTzCpiREuQ&oe=69B5BA0B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935763\",\"streamingSidecar\":\"0+23EGQ60geZRg==\",\"waveform\":\"MmRkZGReZGRbZGRMNDhGXzwsOC9kTjhERzgyY2RRQUlYVE9kZGRbZGRkUWRkZGRkZGRkZGRcZGRkXmRkT1ZIZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770935681\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/fWwjHztj1R+Jk1t4RDWa4BUIIfC4lFFEuckBdQ4OSo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935775,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:15.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:16'),
(6154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:15.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:16'),
(6155, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A65046A82F4F28068C8\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635029860_1924387688158985_1306738547013404617_n.enc?ccb=11-4&oh=01_Q5Aa3wGhGG6LavbSWDrrOAd1JjVpR4BonHlk9mHZxTzCpiREuQ&oe=69B5BA0B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CedFvSBlJ8SV91It+wpVgyWtq2luEXSkF+FSKz8YTzY=\",\"fileLength\":\"26248\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"l9uSPQ0CAMZ55acdCq4wjCdVKEbz7I\\/cb1CB0VF8Hds=\",\"fileEncSha256\":\"zAGuLJrzz7jsFnaTwN6o7syPTSEFPkMvbnHZ8j6nHN8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635029860_1924387688158985_1306738547013404617_n.enc?ccb=11-4&oh=01_Q5Aa3wGhGG6LavbSWDrrOAd1JjVpR4BonHlk9mHZxTzCpiREuQ&oe=69B5BA0B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935763\",\"streamingSidecar\":\"0+23EGQ60geZRg==\",\"waveform\":\"MmRkZGReZGRbZGRMNDhGXzwsOC9kTjhERzgyY2RRQUlYVE9kZGRbZGRkUWRkZGRkZGRkZGRcZGRkXmRkT1ZIZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770935681\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/fWwjHztj1R+Jk1t4RDWa4BUIIfC4lFFEuckBdQ4OSo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935775,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:15.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:16'),
(6156, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:16.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:16'),
(6157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:16.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:16'),
(6158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:16.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:16'),
(6159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:16.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:17'),
(6160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB085B6C0567F715D2A56\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799230,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:39'),
(6161, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0FF7486756F4EFBA6E5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:39'),
(6162, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB068F91CACFEB96F26DD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:39'),
(6163, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0FB49FB5078F86D698C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:39'),
(6164, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB085B6C0567F715D2A56\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799230,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:39'),
(6165, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB077B7898C1A513140C7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799213,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:40'),
(6166, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB068F91CACFEB96F26DD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:40'),
(6167, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0D62E46A958E5CC6777\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799247,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:40'),
(6168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0FB49FB5078F86D698C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:40'),
(6169, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0111D7FD3CC9AF2A1F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:40'),
(6170, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB077B7898C1A513140C7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799213,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:41'),
(6171, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0111D7FD3CC9AF2A1F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:41'),
(6172, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0D62E46A958E5CC6777\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799247,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:41'),
(6173, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0FF7486756F4EFBA6E5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935799226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:39.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:41'),
(6174, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:42.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:42'),
(6175, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:42.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:42'),
(6176, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:42.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:42'),
(6177, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:42.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:42'),
(6178, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"AC2E24D1F07BACEEE068DC140799000C\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770935803,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T19:36:44.089Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:44'),
(6179, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T19:36:44.088Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:44'),
(6180, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A582DB760601B511BFC41EFFD2E835EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935804241,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:44.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:44'),
(6181, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935804243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:44.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:44'),
(6182, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:26@lid\",\"id\":\"AC2E24D1F07BACEEE068DC140799000C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935804351,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:36:44.352Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:44'),
(6183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:45'),
(6184, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A582DB760601B511BFC41EFFD2E835EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935804241,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:44.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:45'),
(6185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770935804243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:44.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:45'),
(6186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:44.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:45'),
(6187, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387@lid\",\"id\":\"AC2E24D1F07BACEEE068DC140799000C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935804451,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:36:44.451Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:45'),
(6188, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:46'),
(6189, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:46.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:46'),
(6190, 'contacts.upsert', 'JTVPLAY_NOVA', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIc9rZcCYEYA8fG7HOPyNthdFXgyMu3NbF1Dz4ZyZEOQ&oe=699B7E54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:36:44.416Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:46'),
(6191, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:44.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:46'),
(6192, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC2E24D1F07BACEEE068DC140799000C\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tfT3EiOiVgOTRXpK0TP4AIsquAutddDR1RT44TLxr50=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:46'),
(6193, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:46.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:47'),
(6194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:47'),
(6195, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:46.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:47'),
(6197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:46.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:47'),
(6198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:48'),
(6199, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC2E24D1F07BACEEE068DC140799000C\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tfT3EiOiVgOTRXpK0TP4AIsquAutddDR1RT44TLxr50=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:48'),
(6200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:45.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:48'),
(6201, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:54'),
(6202, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:54'),
(6203, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3C14FB75188C13F42E\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"VP0hgaBrs1vBHkhe5vQtNUvukkwWZ\\/pibqKHKUEKZas=\",\"fileLength\":\"72793\",\"height\":1600,\"width\":739,\"mediaKey\":\"Vj4iSXNIvJ+h2d69a5hdD6jV6RSyXAGOFEkNALnYaOY=\",\"fileEncSha256\":\"2q5mf9djvxYRsc5zLLayKNY1AOtqYl5dnE0M4gVZWng=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935800\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"PfVgs72J1odmTA==\",\"firstScanLength\":6892,\"scansSidecar\":\"PfVgs72J1odmTF8cMGuTqi5ba5QfA1ap05W6hoAz63ixCIyfNO7rgQ==\",\"scanLengths\":[6892,34325,12367,19207],\"midQualityFileSha256\":\"gRZvGpVa\\/z2Nq+J2TtIcyxMwkatvclqd8eXmi5poHUA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770935681\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Nilt3KYqtlly2\\/9Sijjmihm+lMbl9zkkeHGTUEbQKT8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935814,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:54'),
(6204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:54'),
(6205, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:54'),
(6206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:55.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:55'),
(6207, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:55.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:55'),
(6208, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:55'),
(6209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:55'),
(6210, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:55'),
(6211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:56'),
(6212, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:55.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:56'),
(6213, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3C14FB75188C13F42E\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"VP0hgaBrs1vBHkhe5vQtNUvukkwWZ\\/pibqKHKUEKZas=\",\"fileLength\":\"72793\",\"height\":1600,\"width\":739,\"mediaKey\":\"Vj4iSXNIvJ+h2d69a5hdD6jV6RSyXAGOFEkNALnYaOY=\",\"fileEncSha256\":\"2q5mf9djvxYRsc5zLLayKNY1AOtqYl5dnE0M4gVZWng=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935800\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"PfVgs72J1odmTA==\",\"firstScanLength\":6892,\"scansSidecar\":\"PfVgs72J1odmTF8cMGuTqi5ba5QfA1ap05W6hoAz63ixCIyfNO7rgQ==\",\"scanLengths\":[6892,34325,12367,19207],\"midQualityFileSha256\":\"gRZvGpVa\\/z2Nq+J2TtIcyxMwkatvclqd8eXmi5poHUA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770935681\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Nilt3KYqtlly2\\/9Sijjmihm+lMbl9zkkeHGTUEbQKT8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935814,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:56'),
(6214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn51DcwPywG777-j0hABOtpEo8C12iUaHIpFvfGlGdag&oe=699B66E1&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:55.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:56'),
(6215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A306D6C57D9CD83BEA9\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592231658_3224680141026054_7412642903647959773_n.enc?ccb=11-4&oh=01_Q5Aa3wHuyhuwJ1k_Jv7Z7OtHUnnvXTDls24UDqdBlxSLVqgz5g&oe=69B5C38C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"VbQ1WeIbHRtowDoad9pTtANuOAQRjjIKMoEqS9q8hZM=\",\"fileLength\":\"8857\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"\\/V0ngSG8pY6sOHf7faOcwYQ3+0idJyx6sOdaGGuAE5I=\",\"fileEncSha256\":\"UHUnslORi8P52zvDHNLTAswoUF2tLQjoeR1D863mXp4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592231658_3224680141026054_7412642903647959773_n.enc?ccb=11-4&oh=01_Q5Aa3wHuyhuwJ1k_Jv7Z7OtHUnnvXTDls24UDqdBlxSLVqgz5g&oe=69B5C38C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935801\",\"streamingSidecar\":\"o92OragUhVsBmA==\",\"waveform\":\"ACRJYVhOTlhhZGRkZGRkZGRkZGRkZGRkZGRkZGRkZF9aVVRTVFdaXWBjZGRkZGRkZGRkZGRfWldbX15YU1VZXg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770935681\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HeDTTfr8rrhSuI8ZgAdkE75FjQmso5I+sKCM8le4OdQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935814,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:56'),
(6216, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:57.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:57'),
(6217, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACFD4FC69EDF6672F9A2A16D5B53C077\"},\"pushName\":\"~Johnny\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30987988_921598343753769_611485746927600570_n.enc?ccb=11-4&oh=01_Q5Aa3wG7tu3uqKCN1IpHrdTEIt6QvHVNtTlnbFI2YKZOUumr9Q&oe=69B5C545&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tAkgPzE\\/hT2OOPP\\/qJ6iQnlcw74GUPYNE6JyifiN1t4=\",\"fileLength\":\"99407\",\"height\":1600,\"width\":738,\"mediaKey\":\"GmWO8p++IzRyM\\/bM4Jsv2GggLsccFaVG8vgLND98L5w=\",\"fileEncSha256\":\"qRoByXuTiMq\\/axuRfX6EGdJmNGJOFboCcoViELQL1F8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30987988_921598343753769_611485746927600570_n.enc?ccb=11-4&oh=01_Q5Aa3wG7tu3uqKCN1IpHrdTEIt6QvHVNtTlnbFI2YKZOUumr9Q&oe=69B5C545&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935816\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAArAAADAQEAAAAAAAAAAAAAAAAAAQIDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAO3tIaqkZAzVQBplZSaJuApKIqgowBP\\/xAAiEAACAgEEAgMBAAAAAAAAAAAAAQIRIQMSIjETQRAyUYH\\/2gAIAQEAAT8A1nrcdkU7eRbo9JFTfaM4sclbRu2vNidombacmmrY1J9VZCSiqk8khyV0o2zl34jk8+Mz7R28MvassjNSdImcU7vJKDdZwKovESYvs8Gf0al6ZL18fwtpEppVZtqxYR2augtarbR\\/\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAEBEg\\/9oACAECAQE\\/ALZ\\/\\/8QAFxEBAAMAAAAAAAAAAAAAAAAAAQARMP\\/aAAgBAwEBPwDFBKZ\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"yoDz3RYu3Piaz9SQwHQ4ddpLnKkSDG728sj5RP2BqFHm6h0awBPakw==\",\"scanLengths\":[8652,44951,19919,25885],\"midQualityFileSha256\":\"CUlG44+0lqlZz29GNzewOyp4ne0WquDYjvi607n7Y5M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JEtlP\\/elm1gMUMYslIkmg3O7L8EPITtkVpaCrXe29yA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935817,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:57.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:57'),
(6218, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T19:36:57.565Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:57'),
(6219, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"ACFD4FC69EDF6672F9A2A16D5B53C077\"},\"pushName\":\"~Johnny\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30987988_921598343753769_611485746927600570_n.enc?ccb=11-4&oh=01_Q5Aa3wG7tu3uqKCN1IpHrdTEIt6QvHVNtTlnbFI2YKZOUumr9Q&oe=69B5C545&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tAkgPzE\\/hT2OOPP\\/qJ6iQnlcw74GUPYNE6JyifiN1t4=\",\"fileLength\":\"99407\",\"height\":1600,\"width\":738,\"mediaKey\":\"GmWO8p++IzRyM\\/bM4Jsv2GggLsccFaVG8vgLND98L5w=\",\"fileEncSha256\":\"qRoByXuTiMq\\/axuRfX6EGdJmNGJOFboCcoViELQL1F8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30987988_921598343753769_611485746927600570_n.enc?ccb=11-4&oh=01_Q5Aa3wG7tu3uqKCN1IpHrdTEIt6QvHVNtTlnbFI2YKZOUumr9Q&oe=69B5C545&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935816\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAArAAADAQEAAAAAAAAAAAAAAAAAAQIDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAO3tIaqkZAzVQBplZSaJuApKIqgowBP\\/xAAiEAACAgEEAgMBAAAAAAAAAAAAAQIRIQMSIjETQRAyUYH\\/2gAIAQEAAT8A1nrcdkU7eRbo9JFTfaM4sclbRu2vNidombacmmrY1J9VZCSiqk8khyV0o2zl34jk8+Mz7R28MvassjNSdImcU7vJKDdZwKovESYvs8Gf0al6ZL18fwtpEppVZtqxYR2augtarbR\\/\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAEBEg\\/9oACAECAQE\\/ALZ\\/\\/8QAFxEBAAMAAAAAAAAAAAAAAAAAAQARMP\\/aAAgBAwEBPwDFBKZ\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"yoDz3RYu3Piaz9SQwHQ4ddpLnKkSDG728sj5RP2BqFHm6h0awBPakw==\",\"scanLengths\":[8652,44951,19919,25885],\"midQualityFileSha256\":\"CUlG44+0lqlZz29GNzewOyp4ne0WquDYjvi607n7Y5M=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935817,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T19:36:57.566Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:57'),
(6220, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:57.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:57'),
(6221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:58.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:58'),
(6222, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387@lid\",\"id\":\"ACFD4FC69EDF6672F9A2A16D5B53C077\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935817799,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:36:57.799Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:58'),
(6223, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIc9rZcCYEYA8fG7HOPyNthdFXgyMu3NbF1Dz4ZyZEOQ&oe=699B7E54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:36:58.215Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:58'),
(6224, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:57.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:36:58'),
(6225, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:26@lid\",\"id\":\"ACFD4FC69EDF6672F9A2A16D5B53C077\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770935817982,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:36:57.982Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:58'),
(6226, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:57.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:59'),
(6227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACFD4FC69EDF6672F9A2A16D5B53C077\"},\"pushName\":\"~Johnny\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30987988_921598343753769_611485746927600570_n.enc?ccb=11-4&oh=01_Q5Aa3wG7tu3uqKCN1IpHrdTEIt6QvHVNtTlnbFI2YKZOUumr9Q&oe=69B5C545&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tAkgPzE\\/hT2OOPP\\/qJ6iQnlcw74GUPYNE6JyifiN1t4=\",\"fileLength\":\"99407\",\"height\":1600,\"width\":738,\"mediaKey\":\"GmWO8p++IzRyM\\/bM4Jsv2GggLsccFaVG8vgLND98L5w=\",\"fileEncSha256\":\"qRoByXuTiMq\\/axuRfX6EGdJmNGJOFboCcoViELQL1F8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30987988_921598343753769_611485746927600570_n.enc?ccb=11-4&oh=01_Q5Aa3wG7tu3uqKCN1IpHrdTEIt6QvHVNtTlnbFI2YKZOUumr9Q&oe=69B5C545&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935816\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAArAAADAQEAAAAAAAAAAAAAAAAAAQIDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAO3tIaqkZAzVQBplZSaJuApKIqgowBP\\/xAAiEAACAgEEAgMBAAAAAAAAAAAAAQIRIQMSIjETQRAyUYH\\/2gAIAQEAAT8A1nrcdkU7eRbo9JFTfaM4sclbRu2vNidombacmmrY1J9VZCSiqk8khyV0o2zl34jk8+Mz7R28MvassjNSdImcU7vJKDdZwKovESYvs8Gf0al6ZL18fwtpEppVZtqxYR2augtarbR\\/\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAEBEg\\/9oACAECAQE\\/ALZ\\/\\/8QAFxEBAAMAAAAAAAAAAAAAAAAAAQARMP\\/aAAgBAwEBPwDFBKZ\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"yoDz3RYu3Piaz9SQwHQ4ddpLnKkSDG728sj5RP2BqFHm6h0awBPakw==\",\"scanLengths\":[8652,44951,19919,25885],\"midQualityFileSha256\":\"CUlG44+0lqlZz29GNzewOyp4ne0WquDYjvi607n7Y5M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JEtlP\\/elm1gMUMYslIkmg3O7L8EPITtkVpaCrXe29yA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770935817,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:57.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:59'),
(6228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:58.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:59'),
(6229, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A306D6C57D9CD83BEA9\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592231658_3224680141026054_7412642903647959773_n.enc?ccb=11-4&oh=01_Q5Aa3wHuyhuwJ1k_Jv7Z7OtHUnnvXTDls24UDqdBlxSLVqgz5g&oe=69B5C38C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"VbQ1WeIbHRtowDoad9pTtANuOAQRjjIKMoEqS9q8hZM=\",\"fileLength\":\"8857\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"\\/V0ngSG8pY6sOHf7faOcwYQ3+0idJyx6sOdaGGuAE5I=\",\"fileEncSha256\":\"UHUnslORi8P52zvDHNLTAswoUF2tLQjoeR1D863mXp4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592231658_3224680141026054_7412642903647959773_n.enc?ccb=11-4&oh=01_Q5Aa3wHuyhuwJ1k_Jv7Z7OtHUnnvXTDls24UDqdBlxSLVqgz5g&oe=69B5C38C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935801\",\"streamingSidecar\":\"o92OragUhVsBmA==\",\"waveform\":\"ACRJYVhOTlhhZGRkZGRkZGRkZGRkZGRkZGRkZGRkZF9aVVRTVFdaXWBjZGRkZGRkZGRkZGRfWldbX15YU1VZXg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770935681\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HeDTTfr8rrhSuI8ZgAdkE75FjQmso5I+sKCM8le4OdQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935814,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:36:54.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:36:59'),
(6230, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:12.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:12'),
(6231, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:12.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:12'),
(6232, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:14.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:14'),
(6233, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:14.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:14'),
(6234, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:17.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:18'),
(6235, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:17.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:18'),
(6236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACBA695C8B40BE85460EA30F995B8630\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"conversation\":\"Da e mesmo aplicativo void que coloco\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8gpNDJXQwZzhiItbS07nlHSBLre6\\/bMMIQg3GuYU9vU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935837,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:17.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:18'),
(6237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:18.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:18'),
(6238, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACBA695C8B40BE85460EA30F995B8630\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"conversation\":\"Da e mesmo aplicativo void que coloco\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8gpNDJXQwZzhiItbS07nlHSBLre6\\/bMMIQg3GuYU9vU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770935837,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:17.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:18'),
(6239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:18.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:18'),
(6240, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:18.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:19'),
(6241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:18.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:19'),
(6242, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935839650,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:19.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:19'),
(6243, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A577DC1B5CC3F9AB4BA2A523099B13FC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935839650,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:19.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:19'),
(6244, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A582DB760601B511BFC41EFFD2E835EB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935844806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:24.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:37:24'),
(6245, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A582DB760601B511BFC41EFFD2E835EB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770935844806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:37:24.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:37:25'),
(6246, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:33.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:33'),
(6247, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:33.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:33'),
(6248, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:43.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:43'),
(6249, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:43.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:43'),
(6250, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:45.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:45'),
(6251, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:45.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:45'),
(6252, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:46.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:46'),
(6253, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:46.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6254, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC7092BE29EF8876DC44157199A2875B\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32274389_1638041197241362_508187923763735241_n.enc?ccb=11-4&oh=01_Q5Aa3wHZVcgfWBWjwPhFifz7r6mFLsIGzi48L2TCH1DVNz1EGQ&oe=69B5D4BB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9+jJrrVwiC1wYeq8FMmM+AkxqksUWU2z7YeWJegdSa8=\",\"fileLength\":\"25938\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"rwvsvVz4cfwPp5aPJ4JAYYECQzpblxmQWAAuVAlCKJ8=\",\"fileEncSha256\":\"2rFrl3y3iXmSfvBnklJXCCHZGc3IHBtxMn4VSWj3Uog=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32274389_1638041197241362_508187923763735241_n.enc?ccb=11-4&oh=01_Q5Aa3wHZVcgfWBWjwPhFifz7r6mFLsIGzi48L2TCH1DVNz1EGQ&oe=69B5D4BB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935915\",\"waveform\":\"AGBRXE1YV1ZeY1dCQ0dTTE5LXzw8SUZAQz0zIzs8TDcvC0U\\/Q0AsGi9FOj43BUcbAAAAAAAABxkhJzE6RDxBRA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uk3Q1Bi7lKIfMS8qqr4rCx90jKFoA2v79G45glGtD7Y=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:46.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:46'),
(6255, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC7092BE29EF8876DC44157199A2875B\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32274389_1638041197241362_508187923763735241_n.enc?ccb=11-4&oh=01_Q5Aa3wHZVcgfWBWjwPhFifz7r6mFLsIGzi48L2TCH1DVNz1EGQ&oe=69B5D4BB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9+jJrrVwiC1wYeq8FMmM+AkxqksUWU2z7YeWJegdSa8=\",\"fileLength\":\"25938\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"rwvsvVz4cfwPp5aPJ4JAYYECQzpblxmQWAAuVAlCKJ8=\",\"fileEncSha256\":\"2rFrl3y3iXmSfvBnklJXCCHZGc3IHBtxMn4VSWj3Uog=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32274389_1638041197241362_508187923763735241_n.enc?ccb=11-4&oh=01_Q5Aa3wHZVcgfWBWjwPhFifz7r6mFLsIGzi48L2TCH1DVNz1EGQ&oe=69B5D4BB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770935915\",\"waveform\":\"AGBRXE1YV1ZeY1dCQ0dTTE5LXzw8SUZAQz0zIzs8TDcvC0U\\/Q0AsGi9FOj43BUcbAAAAAAAABxkhJzE6RDxBRA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uk3Q1Bi7lKIfMS8qqr4rCx90jKFoA2v79G45glGtD7Y=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770935926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:46.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:46'),
(6256, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:46.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:46'),
(6257, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:47.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:38:47'),
(6258, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:46.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:47'),
(6259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:38:47.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:38:47'),
(6260, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:34'),
(6261, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC897400B7488CD3E0E0C3FD8ACAB1A2\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"extendedTextMessage\":{\"text\":\"http:\\/\\/dnsassist.online\",\"matchedText\":\"http:\\/\\/dnsassist.online\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1ZuDIFbMvuKlEMO6WWplZ3dzG23RFZX41Ex9nyQzyrg=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770936033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:34'),
(6262, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC58950BB88FE843AD609DBE886F6978\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Usuário:* 270982571\\n✅ *Senha:* 424417473\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hLVPBawSFNQdsOiY7L9iDdPAnhkDjV5Eu30pXxE4Toc=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770936034,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:34'),
(6263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:34'),
(6264, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:34'),
(6265, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:34'),
(6266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:34'),
(6267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:34'),
(6268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:34'),
(6269, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:34'),
(6270, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:35'),
(6271, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:35'),
(6272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC897400B7488CD3E0E0C3FD8ACAB1A2\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"extendedTextMessage\":{\"text\":\"http:\\/\\/dnsassist.online\",\"matchedText\":\"http:\\/\\/dnsassist.online\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1ZuDIFbMvuKlEMO6WWplZ3dzG23RFZX41Ex9nyQzyrg=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770936033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:35'),
(6273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:35'),
(6274, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC58950BB88FE843AD609DBE886F6978\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Usuário:* 270982571\\n✅ *Senha:* 424417473\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hLVPBawSFNQdsOiY7L9iDdPAnhkDjV5Eu30pXxE4Toc=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770936034,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:35'),
(6275, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:34.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:36'),
(6276, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:37.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:37'),
(6277, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:37.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:37'),
(6278, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:47.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:47'),
(6279, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:47.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:48'),
(6280, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:58.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:58'),
(6281, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:58.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:58'),
(6282, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:58.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:58'),
(6283, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:58.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:58'),
(6284, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:59'),
(6285, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACA61BCACA718246C7DC4AF4AA97B118\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35773390_2904428863080261_2958900355667935929_n.enc?ccb=11-4&oh=01_Q5Aa3wGW4bG16ZeTfphZyQcCjvpsn0FOPnnf_9kOmcFJmQTwLg&oe=69B5AF90&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sfevfQB08Z6QVHVWnUO+cUiaIcC0oarjCK+F5mUY5ME=\",\"fileLength\":\"43989\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"6s3LmIUyofxaJqKmCs\\/EJf9+FXuF9cG68w5Wb0r73T8=\",\"fileEncSha256\":\"JyjS3GpSKxG7bwKHcdQ8KA7lxqQJP0chvZ7FnNVLgLc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35773390_2904428863080261_2958900355667935929_n.enc?ccb=11-4&oh=01_Q5Aa3wGW4bG16ZeTfphZyQcCjvpsn0FOPnnf_9kOmcFJmQTwLg&oe=69B5AF90&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770936039\",\"waveform\":\"AC4\\/HSwfJCg9OwAiAB4mFwAAAAAAQUAlHw4AGAAlKyMoHwAAAAALOD0ANzw8LS4AAD4xNhkAAAAAHiMzAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AxWMzfWqBVTn+l7dGimM391P5CpBqPqHarKdTt8vNm4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770936058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:59'),
(6286, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:59'),
(6287, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACA61BCACA718246C7DC4AF4AA97B118\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35773390_2904428863080261_2958900355667935929_n.enc?ccb=11-4&oh=01_Q5Aa3wGW4bG16ZeTfphZyQcCjvpsn0FOPnnf_9kOmcFJmQTwLg&oe=69B5AF90&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sfevfQB08Z6QVHVWnUO+cUiaIcC0oarjCK+F5mUY5ME=\",\"fileLength\":\"43989\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"6s3LmIUyofxaJqKmCs\\/EJf9+FXuF9cG68w5Wb0r73T8=\",\"fileEncSha256\":\"JyjS3GpSKxG7bwKHcdQ8KA7lxqQJP0chvZ7FnNVLgLc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35773390_2904428863080261_2958900355667935929_n.enc?ccb=11-4&oh=01_Q5Aa3wGW4bG16ZeTfphZyQcCjvpsn0FOPnnf_9kOmcFJmQTwLg&oe=69B5AF90&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770936039\",\"waveform\":\"AC4\\/HSwfJCg9OwAiAB4mFwAAAAAAQUAlHw4AGAAlKyMoHwAAAAALOD0ANzw8LS4AAD4xNhkAAAAAHiMzAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AxWMzfWqBVTn+l7dGimM391P5CpBqPqHarKdTt8vNm4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770936058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:40:59'),
(6288, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:40:59'),
(6289, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:41:00'),
(6290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:41:00'),
(6291, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:40:59.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:41:00'),
(6292, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:42:04.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:42:04'),
(6293, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:42:04.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:42:04'),
(6294, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:42:06.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:42:06'),
(6295, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:42:06.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:42:07'),
(6296, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"AC2E24D1F07BACEEE068DC140799000C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770936140511,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:42:20.512Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:42:20'),
(6297, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"ACFD4FC69EDF6672F9A2A16D5B53C077\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770936140732,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:42:20.732Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:42:21'),
(6298, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:30.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:43:30'),
(6299, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:30.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:31'),
(6300, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:31.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:43:31'),
(6301, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:31.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:32'),
(6302, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC5AA43779749323F604FEB245D9A2B7\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"re2pk3bpr3PvK9bYCHlrFgZPIErUMD4mn7JUrfgGpuo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770936211,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:31.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:43:32'),
(6303, 'messages.upsert', 'JTVPLAY_NOVA', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"AC5AA43779749323F604FEB245D9A2B7\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770936211,\"owner\":\"JTVPLAY_NOVA\",\"source\":\"android\"},\"date_time\":\"2026-02-12T19:43:31.873Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:32'),
(6304, 'chats.update', 'JTVPLAY_NOVA', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791063914@s.whatsapp.net\"}],\"date_time\":\"2026-02-12T19:43:31.872Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:32'),
(6305, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:26@lid\",\"id\":\"AC5AA43779749323F604FEB245D9A2B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770936212155,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:43:32.156Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:32'),
(6306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC5AA43779749323F604FEB245D9A2B7\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"KLpo\\/utMAcKcUA==\",\"senderTimestamp\":\"1770729826\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"re2pk3bpr3PvK9bYCHlrFgZPIErUMD4mn7JUrfgGpuo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770936211,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:31.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:33'),
(6307, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387@lid\",\"id\":\"AC5AA43779749323F604FEB245D9A2B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770936212160,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:43:32.160Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:33'),
(6308, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:32.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:43:33'),
(6309, 'messages.update', 'JTVPLAY_NOVA', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"remoteJid\":\"180749806342387:24@lid\",\"id\":\"AC5AA43779749323F604FEB245D9A2B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770936212168,\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:43:32.168Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:33'),
(6310, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:32.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:33'),
(6311, 'contacts.update', 'JTVPLAY_NOVA', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"~Johnny\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIc9rZcCYEYA8fG7HOPyNthdFXgyMu3NbF1Dz4ZyZEOQ&oe=699B7E54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY_NOVA\"},\"date_time\":\"2026-02-12T19:43:32.526Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:35'),
(6312, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:32.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:43:35'),
(6313, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM10KURDJPipNeHSq1Ep6tFVskq6-2LVNq99CB9Ih4XQ&oe=699B5C07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:43:32.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:43:35'),
(6314, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:14.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:14'),
(6315, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"presences\":{\"28986935631970@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:14.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:14'),
(6316, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:15'),
(6317, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:15'),
(6318, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC7A1B0B31827C895239A593973084EA\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635016315_2042766813247754_932541174025296557_n.enc?ccb=11-4&oh=01_Q5Aa3wE-01LlSScayKgpVqI3iu5vGkCBshis79vPzlCzXHs1LA&oe=69B5B9E7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"nLLsV8YBrJS8DZy07YAiDtqYGtB\\/OvQk9d2h2l6n0pk=\",\"fileLength\":\"1719\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"Llj1f4QgxRrvjWoKIam72khp80QKY7qJGeDBbZjRdBs=\",\"fileEncSha256\":\"ctp6sIsh0CpjKYT0WAxBe82aoFcRCbo0Earam99lJaY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635016315_2042766813247754_932541174025296557_n.enc?ccb=11-4&oh=01_Q5Aa3wE-01LlSScayKgpVqI3iu5vGkCBshis79vPzlCzXHs1LA&oe=69B5B9E7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770936434\",\"waveform\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qX7qiD96l23LoTbCI3xLQPNUwQZ7A\\/IflbeYF74ta98=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770936435,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:15'),
(6319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC7A1B0B31827C895239A593973084EA\"},\"pushName\":\"adenildogabriel016\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635016315_2042766813247754_932541174025296557_n.enc?ccb=11-4&oh=01_Q5Aa3wE-01LlSScayKgpVqI3iu5vGkCBshis79vPzlCzXHs1LA&oe=69B5B9E7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"nLLsV8YBrJS8DZy07YAiDtqYGtB\\/OvQk9d2h2l6n0pk=\",\"fileLength\":\"1719\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"Llj1f4QgxRrvjWoKIam72khp80QKY7qJGeDBbZjRdBs=\",\"fileEncSha256\":\"ctp6sIsh0CpjKYT0WAxBe82aoFcRCbo0Earam99lJaY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635016315_2042766813247754_932541174025296557_n.enc?ccb=11-4&oh=01_Q5Aa3wE-01LlSScayKgpVqI3iu5vGkCBshis79vPzlCzXHs1LA&oe=69B5B9E7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770936434\",\"waveform\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qX7qiD96l23LoTbCI3xLQPNUwQZ7A\\/IflbeYF74ta98=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770936435,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:15'),
(6320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:15'),
(6322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:16'),
(6323, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"28986935631970@lid\",\"pushName\":\"adenildogabriel016\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:15.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:16'),
(6324, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC7A1B0B31827C895239A593973084EA\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:18.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:18'),
(6325, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC7A1B0B31827C895239A593973084EA\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:18.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:18'),
(6326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:18.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 19:47:18'),
(6327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdVvLyp2ypnoA28HRi0nhvw8wKnG3CkBeUvZ8l5j_3Zg&oe=699B5F90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T19:47:18.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 19:47:18'),
(6328, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5085B9EEC3C2C749BC27DB385072208\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938131153,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:31.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:31'),
(6329, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5085B9EEC3C2C749BC27DB385072208\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938131153,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:31.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:31'),
(6330, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:38.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:38'),
(6331, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:38.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:38'),
(6332, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:43.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:44'),
(6333, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:43.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:44'),
(6334, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AF96EDB9CDD161D2004\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"E tipo um plano de fundo do app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S+\\/IbthiPyrJ4HFkKFK1NCNZrZRVKWPHhsVHCgQAJWA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938143,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:43.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:44'),
(6335, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:44.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:44'),
(6336, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AF96EDB9CDD161D2004\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"E tipo um plano de fundo do app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S+\\/IbthiPyrJ4HFkKFK1NCNZrZRVKWPHhsVHCgQAJWA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938143,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:43.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:44'),
(6337, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:44.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:44'),
(6338, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:44.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:45'),
(6339, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:44.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:45'),
(6340, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:46.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:15:46'),
(6341, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:46.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:15:46'),
(6342, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0E1F7BFEE60FFDDB00\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635041961_852476647836521_4323650657877398487_n.enc?ccb=11-4&oh=01_Q5Aa3wG6VxuMbPu9ICTO0uM7AP_70JxjuJF8x1ihGt3r6Muhkg&oe=69B5DF5D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"UHguvNxGHNg9zE4zGe\\/H7FYS9D5KWIcaaQ9dxw3zfKI=\",\"fileLength\":\"126743\",\"height\":1600,\"width\":900,\"mediaKey\":\"psxhItk2z9Is4fto7\\/1YK8C1ZXGE74lYBuy7hMiRhoM=\",\"fileEncSha256\":\"w8f4VlJ83McPE2u5sAE82fUcZ54XJugja2jQ2UjuZ8A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635041961_852476647836521_4323650657877398487_n.enc?ccb=11-4&oh=01_Q5Aa3wG6VxuMbPu9ICTO0uM7AP_70JxjuJF8x1ihGt3r6Muhkg&oe=69B5DF5D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938158\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAMCBAUBBv\\/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAwGv1N5x26XZc2V6MVZWIVoF8jy\\/oPMams3o8M6Iz4Ji1okYR57Vyb+5ozrWY6hyZU95AsijN8\\/OLNSb19LM6CzSXnhcKpVfoZEgWbAJARAA\\/\\/8QAGhEBAQADAQEAAAAAAAAAAAAAABEBECAhQf\\/aAAgBAgEBPwCbwq8evm8qqqq45r\\/\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAESAB\\/9oACAEDAQE\\/AIRuTtIQr\\/\\/EACgQAAICAQMDAwUBAQAAAAAAAAECABEDEiExBEFRBRMiFCMyQnEVYf\\/aAAgBAQABPwDHibJ+IufSZPEXocjdxB6Y\\/dxP84A17k+gUfsTF6RAwBJ3gwKGoeZj9Jx6AWc2Rc9NQvkpRZh6XqCx+2KMOJsTU3M0nTvK32EN9hFXU0QfdH9g4HyGw8z0ZgvUgk0J7qE\\/mJmxhm1cwJQ4mgVGx1Am8VQDuLuWLHxv\\/mqdAfuGY8gsUIj2tbzc95wfMd96qBls2ZSPjBC8d5ox0CVE6E\\/Nv5MS2tzHsoBMIAM7XMjEcGA2WmN341fGaiBYZqqdEQGazW0TKyrQM6Z1ZQGu4NJO7RnQGtVzIVozYhj4iZQpNqCDNSd6quAYFaK2ReCYnU5VPMX1HIDuLi+pYybZCDD1uFx+VQOpViHELRmMDkRM9ci4uTC3Iqe1ibgiN0\\/gw4mEpl8wZGHcwZn8y5cuAkcGLmdf2g6k\\/sLnvY252mlG4MbFP\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"xSdVlDicB3p04A==\",\"firstScanLength\":10339,\"scansSidecar\":\"xSdVlDicB3p04PdejyDqSgJIAQyHpLK8u7kZvYvNdthARlRrBJjuZA==\",\"scanLengths\":[10339,45369,24265,46768],\"midQualityFileSha256\":\"tfnJmy4lyp\\/9zUnC8GZvlSqaMMqYUPdZVtKR1ynFrhY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2DCUeAseHBMBl1Rk1bxNfebo\\/1RUEbp8x30cymLGRKA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770938159,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:59.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:00'),
(6343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:59.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:00'),
(6344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:00.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:00'),
(6345, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0E1F7BFEE60FFDDB00\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635041961_852476647836521_4323650657877398487_n.enc?ccb=11-4&oh=01_Q5Aa3wG6VxuMbPu9ICTO0uM7AP_70JxjuJF8x1ihGt3r6Muhkg&oe=69B5DF5D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"UHguvNxGHNg9zE4zGe\\/H7FYS9D5KWIcaaQ9dxw3zfKI=\",\"fileLength\":\"126743\",\"height\":1600,\"width\":900,\"mediaKey\":\"psxhItk2z9Is4fto7\\/1YK8C1ZXGE74lYBuy7hMiRhoM=\",\"fileEncSha256\":\"w8f4VlJ83McPE2u5sAE82fUcZ54XJugja2jQ2UjuZ8A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635041961_852476647836521_4323650657877398487_n.enc?ccb=11-4&oh=01_Q5Aa3wG6VxuMbPu9ICTO0uM7AP_70JxjuJF8x1ihGt3r6Muhkg&oe=69B5DF5D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938158\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAMCBAUBBv\\/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAwGv1N5x26XZc2V6MVZWIVoF8jy\\/oPMams3o8M6Iz4Ji1okYR57Vyb+5ozrWY6hyZU95AsijN8\\/OLNSb19LM6CzSXnhcKpVfoZEgWbAJARAA\\/\\/8QAGhEBAQADAQEAAAAAAAAAAAAAABEBECAhQf\\/aAAgBAgEBPwCbwq8evm8qqqq45r\\/\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAESAB\\/9oACAEDAQE\\/AIRuTtIQr\\/\\/EACgQAAICAQMDAwUBAQAAAAAAAAECABEDEiExBEFRBRMiFCMyQnEVYf\\/aAAgBAQABPwDHibJ+IufSZPEXocjdxB6Y\\/dxP84A17k+gUfsTF6RAwBJ3gwKGoeZj9Jx6AWc2Rc9NQvkpRZh6XqCx+2KMOJsTU3M0nTvK32EN9hFXU0QfdH9g4HyGw8z0ZgvUgk0J7qE\\/mJmxhm1cwJQ4mgVGx1Am8VQDuLuWLHxv\\/mqdAfuGY8gsUIj2tbzc95wfMd96qBls2ZSPjBC8d5ox0CVE6E\\/Nv5MS2tzHsoBMIAM7XMjEcGA2WmN341fGaiBYZqqdEQGazW0TKyrQM6Z1ZQGu4NJO7RnQGtVzIVozYhj4iZQpNqCDNSd6quAYFaK2ReCYnU5VPMX1HIDuLi+pYybZCDD1uFx+VQOpViHELRmMDkRM9ci4uTC3Iqe1ibgiN0\\/gw4mEpl8wZGHcwZn8y5cuAkcGLmdf2g6k\\/sLnvY252mlG4MbFP\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"xSdVlDicB3p04A==\",\"firstScanLength\":10339,\"scansSidecar\":\"xSdVlDicB3p04PdejyDqSgJIAQyHpLK8u7kZvYvNdthARlRrBJjuZA==\",\"scanLengths\":[10339,45369,24265,46768],\"midQualityFileSha256\":\"tfnJmy4lyp\\/9zUnC8GZvlSqaMMqYUPdZVtKR1ynFrhY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2DCUeAseHBMBl1Rk1bxNfebo\\/1RUEbp8x30cymLGRKA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770938159,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:59.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:00'),
(6346, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:15:59.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:00'),
(6347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:00.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:01'),
(6348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:00.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:01'),
(6349, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:00.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:01'),
(6350, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:00.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:01'),
(6351, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:00.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:02'),
(6352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA3E6621BF5226E5EAC\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Aí fica assim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ua43lkf\\/RYtiD2ajt2fDYuGkZ9w4Lneg8wiHkWRPJMY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938162,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:02.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:03'),
(6353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:02.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:03'),
(6354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA3E6621BF5226E5EAC\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Aí fica assim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ua43lkf\\/RYtiD2ajt2fDYuGkZ9w4Lneg8wiHkWRPJMY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938162,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:02.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:03'),
(6355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:02.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:03'),
(6356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:03.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:03'),
(6357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:03.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:03'),
(6358, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:03.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:03'),
(6359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:03.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:04'),
(6360, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:07'),
(6361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE95955FD9FAE5ED9A0\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Quando não carrega\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qCEUodotefiDNOTFQQvtD6fwfjg2P8tBEG+3gEEqyOg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938167,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:07'),
(6362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:07'),
(6363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE95955FD9FAE5ED9A0\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Quando não carrega\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qCEUodotefiDNOTFQQvtD6fwfjg2P8tBEG+3gEEqyOg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938167,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:07'),
(6364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:07'),
(6365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:08'),
(6366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:08'),
(6367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:07.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:09'),
(6368, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:09.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:16:09'),
(6369, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:16:09.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:16:09'),
(6370, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:08.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:09'),
(6371, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:08.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:09'),
(6372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:12.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:12'),
(6373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:12.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:12'),
(6374, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F363E157D3A2EA443DB558280DDB6F\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pCSVYppTDpCiw9wmj2Fju2V7\\/cwVAHsPz6X0NR\\/gfWA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938232,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:12.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:13'),
(6375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:13.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:13'),
(6376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:13.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:13'),
(6377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:13.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:13'),
(6378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:13.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:13'),
(6379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:14.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:14'),
(6380, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A536EFF8895F7946D783986FDF5FF783\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938234,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:14.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:14'),
(6381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:14.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:14'),
(6382, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:13.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:14'),
(6384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:15.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:15'),
(6385, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:15.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:15'),
(6386, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01FFFAFC6EEF8EB35A5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938235,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:15.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:15'),
(6387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:15.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:15'),
(6388, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01FFFAFC6EEF8EB35A5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938235,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:15.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6389, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:15.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:16'),
(6390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A536EFF8895F7946D783986FDF5FF783\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938234927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:14.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:16'),
(6392, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:13.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:17'),
(6393, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A536EFF8895F7946D783986FDF5FF783\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938234927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:14.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:17'),
(6394, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:17.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:17'),
(6395, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:17.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:18'),
(6396, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:18.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:18'),
(6397, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:18.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:18'),
(6398, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:19.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:19'),
(6399, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4DEE56B3EAA034106\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938238,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:19.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:19'),
(6400, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4DEE56B3EAA034106\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938238,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:19.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:19'),
(6401, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:19.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:19'),
(6402, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F86BC63CF456DF8F227B32FC59576B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r8IRvJtx2qLPOhUeznpwfUOhNY1QRERmGZmYsfNSnBc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938242,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:22.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:22'),
(6403, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:22.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:22'),
(6404, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:22.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:22'),
(6405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:22.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:22'),
(6406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:22.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:23'),
(6407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:23.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:23'),
(6408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:23.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:23'),
(6409, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:23.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:23'),
(6410, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:23.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:23'),
(6411, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:24.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:24'),
(6412, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AFDC08CE43CC729096\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938244,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:24.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:24'),
(6413, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:24.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:24'),
(6414, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F86BC63CF456DF8F227B32FC59576B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r8IRvJtx2qLPOhUeznpwfUOhNY1QRERmGZmYsfNSnBc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938242,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:22.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:24'),
(6415, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AFDC08CE43CC729096\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938244,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:24.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:24'),
(6416, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:25.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:25'),
(6417, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:25.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:26'),
(6418, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:27.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:27'),
(6419, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06AFE17712FA420C2AD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938246,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:27.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:27'),
(6420, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:27.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:27'),
(6421, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06AFE17712FA420C2AD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938246,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:27.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:27'),
(6422, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:32.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:32'),
(6423, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:32.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:32'),
(6424, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:34.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:17:34'),
(6425, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:17:34.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:17:35'),
(6426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:28.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:29'),
(6427, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:28.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:29'),
(6428, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:36.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:37'),
(6429, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1095317368978@lid\",\"fromMe\":false,\"id\":\"ACF76A32B6E3925B351EC421D193A337\"},\"pushName\":\"Édi Silva\",\"message\":{\"conversation\":\"Na minha lista nao ta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iAIWGDzo2T+L4GfL\\/2A5vNQB+Zni48O+p4gexvCDk1E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:36.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:37'),
(6430, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:36.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:37'),
(6431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1095317368978@lid\",\"fromMe\":false,\"id\":\"ACF76A32B6E3925B351EC421D193A337\"},\"pushName\":\"Édi Silva\",\"message\":{\"conversation\":\"Na minha lista nao ta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iAIWGDzo2T+L4GfL\\/2A5vNQB+Zni48O+p4gexvCDk1E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:36.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:37'),
(6432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:37.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:37'),
(6433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:37.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:37'),
(6434, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:37.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:37'),
(6435, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:37.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:37'),
(6436, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:37.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:37'),
(6437, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:37.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:38'),
(6438, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:48.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:48'),
(6439, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:48.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:48'),
(6440, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A5C216FDF4985CB2420A34CE0D983820\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938335171,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:55'),
(6441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A5C216FDF4985CB2420A34CE0D983820\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938335171,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:55'),
(6442, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:55'),
(6443, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1095317368978@lid\",\"fromMe\":false,\"id\":\"AC5154DA0725150569C23924AF9F8742\"},\"pushName\":\"Édi Silva\",\"message\":{\"conversation\":\"Mas procurei em tudo \\nAchei premier 3\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yZfZ1DCnLWzHYSr7xhOEopeUzrj+wwVCVpEplzNW4pw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938335,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:55'),
(6444, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:55'),
(6445, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:56'),
(6446, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1095317368978@lid\",\"fromMe\":false,\"id\":\"AC5154DA0725150569C23924AF9F8742\"},\"pushName\":\"Édi Silva\",\"message\":{\"conversation\":\"Mas procurei em tudo \\nAchei premier 3\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yZfZ1DCnLWzHYSr7xhOEopeUzrj+wwVCVpEplzNW4pw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938335,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:56'),
(6447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A5C216FDF4985CB2420A34CE0D983820\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770938336078,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:56.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:56'),
(6448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:55.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:56'),
(6449, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A5C216FDF4985CB2420A34CE0D983820\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770938336078,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:56.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:56'),
(6450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:56.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:18:57'),
(6451, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:18:56.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:18:57'),
(6452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:20.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:21'),
(6453, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC8E51F672E586A0F9289B2CC78796D2\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/21434762_1431882941673907_1559740744006499331_n.enc?ccb=11-4&oh=01_Q5Aa3wGqTOajM7OlM2qF5ZgkEi2Z0TfUcmMTqSHxjKU09u-5dw&oe=69B5DE66&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"21WgKsA2YJXxptuvSe7sp3zd9QoKuRgFolcHN6uruAU=\",\"fileLength\":\"50670\",\"height\":1600,\"width\":422,\"mediaKey\":\"wBaJfct+bK7CKhUATO\\/1ZGt5D0cVYMrWwf2Dt\\/vRFro=\",\"fileEncSha256\":\"mJHKDqVU\\/wkHt+9\\/3N\\/UnzHYMBn0fquv1RC06kUqNvQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/21434762_1431882941673907_1559740744006499331_n.enc?ccb=11-4&oh=01_Q5Aa3wGqTOajM7OlM2qF5ZgkEi2Z0TfUcmMTqSHxjKU09u-5dw&oe=69B5DE66&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938419\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AEAMBIgACEQEDEQH\\/xAArAAEAAgMAAAAAAAAAAAAAAAAAAQIEBQYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAOlAABrcm0n\\/xAAhEAACAgIBBAMAAAAAAAAAAAABEQACAxIxBBMhIkFRYf\\/aAAgBAQABPwCoy1vf1GvwYLZH7AAQBli7hUp2gSK8mKITy\\/yVsxxCVNfrxCOIerzMgZKt8THmtbV3DUOOhLNRNKsHUT\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Oor+2O7M7HeEMcgiCe\\/s9Mtud+cmur\\/85HOPzv\\/xqBkShRaGLOnHnQ==\",\"scanLengths\":[3886,23069,11075,12640],\"midQualityFileSha256\":\"cGMYk4Czt0heIfQmL89hD+hD0fk+EGtuTvAQT6yqMVI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1U7oA1z2Qv9Qg7hq2C+xTE1E7Q90Rsb+IC+isl87cbM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770938420,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:20.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:21'),
(6454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:20.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:21'),
(6455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC8E51F672E586A0F9289B2CC78796D2\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/21434762_1431882941673907_1559740744006499331_n.enc?ccb=11-4&oh=01_Q5Aa3wGqTOajM7OlM2qF5ZgkEi2Z0TfUcmMTqSHxjKU09u-5dw&oe=69B5DE66&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"21WgKsA2YJXxptuvSe7sp3zd9QoKuRgFolcHN6uruAU=\",\"fileLength\":\"50670\",\"height\":1600,\"width\":422,\"mediaKey\":\"wBaJfct+bK7CKhUATO\\/1ZGt5D0cVYMrWwf2Dt\\/vRFro=\",\"fileEncSha256\":\"mJHKDqVU\\/wkHt+9\\/3N\\/UnzHYMBn0fquv1RC06kUqNvQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/21434762_1431882941673907_1559740744006499331_n.enc?ccb=11-4&oh=01_Q5Aa3wGqTOajM7OlM2qF5ZgkEi2Z0TfUcmMTqSHxjKU09u-5dw&oe=69B5DE66&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938419\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AEAMBIgACEQEDEQH\\/xAArAAEAAgMAAAAAAAAAAAAAAAAAAQIEBQYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAOlAABrcm0n\\/xAAhEAACAgIBBAMAAAAAAAAAAAABEQACAxIxBBMhIkFRYf\\/aAAgBAQABPwCoy1vf1GvwYLZH7AAQBli7hUp2gSK8mKITy\\/yVsxxCVNfrxCOIerzMgZKt8THmtbV3DUOOhLNRNKsHUT\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Oor+2O7M7HeEMcgiCe\\/s9Mtud+cmur\\/85HOPzv\\/xqBkShRaGLOnHnQ==\",\"scanLengths\":[3886,23069,11075,12640],\"midQualityFileSha256\":\"cGMYk4Czt0heIfQmL89hD+hD0fk+EGtuTvAQT6yqMVI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1U7oA1z2Qv9Qg7hq2C+xTE1E7Q90Rsb+IC+isl87cbM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770938420,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:20.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:21'),
(6456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:21.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:21'),
(6457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:21.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:21'),
(6458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:21.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:21'),
(6459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:21.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:21'),
(6460, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC7A617DE64A519BBE7382CC0CB05814\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no Pix*\\nLima, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 40,00\\n*Data do pagamento:* 12\\/02\\/2026\\n*De:* Rodrigo Cordeiro Lima\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/a6acf6ba-f6e0-4e26-95f4-4ef70bce69ba\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/a6acf6ba-f6e0-4e26-95f4-4ef70bce69ba\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yEXXHA3BRpC4kA\\/iuhTd5ZYoEBLeeBmU2ACkzvVBlLs=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938448,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:48.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6461, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC7A617DE64A519BBE7382CC0CB05814\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no Pix*\\nLima, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 40,00\\n*Data do pagamento:* 12\\/02\\/2026\\n*De:* Rodrigo Cordeiro Lima\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/a6acf6ba-f6e0-4e26-95f4-4ef70bce69ba\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/a6acf6ba-f6e0-4e26-95f4-4ef70bce69ba\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yEXXHA3BRpC4kA\\/iuhTd5ZYoEBLeeBmU2ACkzvVBlLs=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938448,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:48.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:49'),
(6462, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:48.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:49'),
(6463, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:48.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:49'),
(6464, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:49.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:49'),
(6465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:49.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:49'),
(6466, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:50.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:20:50'),
(6467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:20:50.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:20:50'),
(6468, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:06.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:06'),
(6469, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:06.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:07'),
(6470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:16.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:16'),
(6471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:16.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:16'),
(6472, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:16.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:16'),
(6473, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:16.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:16'),
(6474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3ABBA80812F5A0B6F517\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55804647_1289359233019836_7358426385140233524_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-zO7sAkJD4kfP5MQ9Sq6sbsNilsYlOjBwgnJhIy4rA&oe=69B5B882&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XXe\\/vFUWeSkSgvZpQlcaBxjdDdQKoz0\\/gvrSQJP9\\/X4=\",\"fileLength\":\"21742\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"6\\/KxP5xuuX5sg8oblqX+aiouyGQHfr3ghcK0H0baOlk=\",\"fileEncSha256\":\"f30t3naWPR3zSe1CuojfeAYe64MoUliqRtalJfDlvnE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55804647_1289359233019836_7358426385140233524_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-zO7sAkJD4kfP5MQ9Sq6sbsNilsYlOjBwgnJhIy4rA&oe=69B5B882&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938465\",\"streamingSidecar\":\"VdTYHA2xHqfTLA==\",\"waveform\":\"AAICCk1kVlliYlxVWzwhFRdbY0tSX2BGJxQJIGRhUlVjZFtISFpkXVJWZGReR0hUY1FPQ0FXYlRQXmRkY1ovFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770904283\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o8sXRE7Uqg4j8Vb1bV3lKuMFgfxkj88eotcn89atLQk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770938476,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:17'),
(6475, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:17'),
(6476, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:17'),
(6477, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3ABBA80812F5A0B6F517\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55804647_1289359233019836_7358426385140233524_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-zO7sAkJD4kfP5MQ9Sq6sbsNilsYlOjBwgnJhIy4rA&oe=69B5B882&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XXe\\/vFUWeSkSgvZpQlcaBxjdDdQKoz0\\/gvrSQJP9\\/X4=\",\"fileLength\":\"21742\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"6\\/KxP5xuuX5sg8oblqX+aiouyGQHfr3ghcK0H0baOlk=\",\"fileEncSha256\":\"f30t3naWPR3zSe1CuojfeAYe64MoUliqRtalJfDlvnE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55804647_1289359233019836_7358426385140233524_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-zO7sAkJD4kfP5MQ9Sq6sbsNilsYlOjBwgnJhIy4rA&oe=69B5B882&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938465\",\"streamingSidecar\":\"VdTYHA2xHqfTLA==\",\"waveform\":\"AAICCk1kVlliYlxVWzwhFRdbY0tSX2BGJxQJIGRhUlVjZFtISFpkXVJWZGReR0hUY1FPQ0FXYlRQXmRkY1ovFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770904283\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o8sXRE7Uqg4j8Vb1bV3lKuMFgfxkj88eotcn89atLQk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770938476,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:17'),
(6478, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"pushName\":\"Karol Damaceno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:18'),
(6479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:18'),
(6480, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"pushName\":\"Karol Damaceno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:18'),
(6481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:17.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:18'),
(6482, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938479127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:19.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:19'),
(6483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938479143,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:19.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:19'),
(6484, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938479127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:19.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:19'),
(6485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938479143,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:19.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:19'),
(6486, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938479,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:20.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:20'),
(6487, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:20.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:20'),
(6488, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:20.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:20'),
(6489, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938479,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:20.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:20'),
(6490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:20.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:21:20'),
(6491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:21:20.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:21'),
(6492, 'connection.update', 'JTVPLAY_NOVA', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY_NOVA\",\"data\":{\"instance\":\"JTVPLAY_NOVA\",\"state\":\"close\",\"statusReason\":401},\"date_time\":\"2026-02-12T20:21:48.058Z\",\"sender\":\"554791063914@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:21:48'),
(6493, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A5905D0C34940DC3294536A91E5D82FF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/56159343_1644120783409622_2337592936133834330_n.enc?ccb=11-4&oh=01_Q5Aa3wEjwWbRppg8CSA66Vbu0YdFfti1_2y87Lj3no4NJLdeGw&oe=69B5D3DB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1AA6Tlhtgzyq5TZAA\\/JDY1IIM0wiQo+s+eC+ZlXwNV0=\",\"fileLength\":\"3807\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"8WCmu22U1Q+MHGL9bHhQ4oKQDJhFLMrjC7uwkv67DCQ=\",\"fileEncSha256\":\"5JD+Cov18CWXDzn1Z99HHPjUoZak2c80sL5DOLJoYeg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/56159343_1644120783409622_2337592936133834330_n.enc?ccb=11-4&oh=01_Q5Aa3wEjwWbRppg8CSA66Vbu0YdFfti1_2y87Lj3no4NJLdeGw&oe=69B5D3DB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938524\",\"waveform\":\"AAYMERYRDA4SEhAOCwsNDAoOGBwXExMTExYmNkdWWFpbXFdRQzM2PDYrJSAvSVNSUlNST05SVVVTST8wJjpKJA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770938525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:05.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:22:05'),
(6494, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:05.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:22:05'),
(6495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A5905D0C34940DC3294536A91E5D82FF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/56159343_1644120783409622_2337592936133834330_n.enc?ccb=11-4&oh=01_Q5Aa3wEjwWbRppg8CSA66Vbu0YdFfti1_2y87Lj3no4NJLdeGw&oe=69B5D3DB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1AA6Tlhtgzyq5TZAA\\/JDY1IIM0wiQo+s+eC+ZlXwNV0=\",\"fileLength\":\"3807\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"8WCmu22U1Q+MHGL9bHhQ4oKQDJhFLMrjC7uwkv67DCQ=\",\"fileEncSha256\":\"5JD+Cov18CWXDzn1Z99HHPjUoZak2c80sL5DOLJoYeg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/56159343_1644120783409622_2337592936133834330_n.enc?ccb=11-4&oh=01_Q5Aa3wEjwWbRppg8CSA66Vbu0YdFfti1_2y87Lj3no4NJLdeGw&oe=69B5D3DB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770938524\",\"waveform\":\"AAYMERYRDA4SEhAOCwsNDAoOGBwXExMTExYmNkdWWFpbXFdRQzM2PDYrJSAvSVNSUlNST05SVVVTST8wJjpKJA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770938525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:05.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:22:05'),
(6496, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:05.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:22:05'),
(6497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:05.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:22:05'),
(6498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5905D0C34940DC3294536A91E5D82FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938526332,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:06.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:22:06'),
(6499, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5905D0C34940DC3294536A91E5D82FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938526332,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:06.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:22:06'),
(6500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:05.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:22:06'),
(6501, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938532698,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:12.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:22:12'),
(6502, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A1109A547BFBADD3833BFB94E4E6FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938532698,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:22:12.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:22:12'),
(6503, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:04.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:04'),
(6504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:04.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:04'),
(6505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A58CC4D5082CB55A81C651EB82A2A33B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938584,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:04.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:04'),
(6506, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A58CC4D5082CB55A81C651EB82A2A33B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938584,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:04.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:05'),
(6507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:04.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:05'),
(6508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:04.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:05'),
(6509, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A58CC4D5082CB55A81C651EB82A2A33B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938585507,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:05.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:05'),
(6510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A519E1B8A5BCF7A02033355D7B94F730\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"O app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938585,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:05.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:05'),
(6511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:06'),
(6512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:06'),
(6513, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A58CC4D5082CB55A81C651EB82A2A33B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938585507,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:05.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:06'),
(6514, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A519E1B8A5BCF7A02033355D7B94F730\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"O app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938585,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:05.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:06'),
(6515, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:05.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:06'),
(6516, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:07'),
(6517, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A5809EDD612AE2F3E3DD256F25C8E567\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Lra ver\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938586,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:07'),
(6518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:07'),
(6519, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A5809EDD612AE2F3E3DD256F25C8E567\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Lra ver\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938586,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:07'),
(6520, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A519E1B8A5BCF7A02033355D7B94F730\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938586811,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:07'),
(6521, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5809EDD612AE2F3E3DD256F25C8E567\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938588143,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:08.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:08'),
(6522, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A5809EDD612AE2F3E3DD256F25C8E567\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938588143,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:08.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:08'),
(6523, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A519E1B8A5BCF7A02033355D7B94F730\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938586811,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:06.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:08'),
(6524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:05.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:08'),
(6525, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:07.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:08'),
(6526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:07.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:09'),
(6527, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:22.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:22'),
(6528, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:22.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:23'),
(6529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0813E70D377423B53F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGi-D6X41L0-0ErQeRRm8Dpo7CzC5BHA7cPoUqNMlcKSg&oe=69B5D38C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"stickerSentTs\":\"1770938600670\",\"isLottie\":false}},\"contextInfo\":{\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770938602,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:22.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:23'),
(6530, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0813E70D377423B53F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHvBMBV78n2V_yVklOTCjYu2hcrPTbKhaoLtzyT78a62A&oe=69B5630C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGi-D6X41L0-0ErQeRRm8Dpo7CzC5BHA7cPoUqNMlcKSg&oe=69B5D38C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"stickerSentTs\":\"1770938600670\",\"isLottie\":false}},\"contextInfo\":{\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770938602,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:22.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:23'),
(6531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554189045018@s.whatsapp.net\",\"pushName\":\"Lima 5018 $40 VOID E Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:23.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554189045018@s.whatsapp.net\",\"pushName\":\"Lima 5018 $40 VOID E Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:23.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:23'),
(6533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB0813E70D377423B53F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938615406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:35.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:23:35'),
(6534, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB0813E70D377423B53F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938615406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:23:35.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:23:35'),
(6535, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:30.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:31'),
(6536, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:30.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:31'),
(6537, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:33'),
(6538, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:33'),
(6539, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACEAC3B90AE7E6285C3\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Funcionou fml\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TFZKsNv8p94FLJqzmaS5ydnXFSF6KRVx7QI9M8fxhMQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938672,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:33'),
(6540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:33'),
(6541, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACEAC3B90AE7E6285C3\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Funcionou fml\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TFZKsNv8p94FLJqzmaS5ydnXFSF6KRVx7QI9M8fxhMQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938672,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:33'),
(6542, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:34'),
(6543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:34'),
(6544, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:33.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:34'),
(6545, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A31DC8BA52AB3E2F7C4\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SnB51cwJXBrF1LS34RXeNxmE5V8Bclb23eTplo48R88=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938675,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:35'),
(6546, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:35'),
(6547, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554796155646@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A31DC8BA52AB3E2F7C4\"},\"pushName\":\"Luiz Eduardo de Amorim\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"5c2iRebtSzHfbQ==\",\"senderTimestamp\":\"1769787132\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SnB51cwJXBrF1LS34RXeNxmE5V8Bclb23eTplo48R88=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938675,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:35'),
(6548, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:35'),
(6549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:35'),
(6550, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:36'),
(6551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554796155646@s.whatsapp.net\",\"pushName\":\"Eduardo 5646 $65 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:36'),
(6552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796155646@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:35.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:36'),
(6553, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:37.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:24:37'),
(6554, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"presences\":{\"38573185196250@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:24:37.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:24:37'),
(6555, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04259CF48808540204E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"mano faz um favor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938709,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:09.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:10'),
(6556, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04259CF48808540204E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"mano faz um favor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938709,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:09.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:10'),
(6557, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:09.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:10'),
(6558, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:09.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:10'),
(6559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB04259CF48808540204E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938710722,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:10.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:10'),
(6560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB04259CF48808540204E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938710722,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:10.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:11'),
(6561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554189045018@s.whatsapp.net\",\"pushName\":\"Lima 5018 $40 VOID E Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:10.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:11'),
(6562, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554189045018@s.whatsapp.net\",\"pushName\":\"Lima 5018 $40 VOID E Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:10.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:11'),
(6563, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:20.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:20'),
(6564, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:20.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:21'),
(6565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E0BB31D633757177FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"escreve assim aqui na conversa e envia pra mim   \\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938720,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:20.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:21'),
(6566, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E0BB31D633757177FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"escreve assim aqui na conversa e envia pra mim   \\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938720,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:20.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:21'),
(6567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB0E0BB31D633757177FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938721011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:21.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:21'),
(6568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB0E0BB31D633757177FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938721011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:21.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:21'),
(6569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554189045018@s.whatsapp.net\",\"pushName\":\"Lima 5018 $40 VOID E Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:21.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:22'),
(6570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554189045018@s.whatsapp.net\",\"pushName\":\"Lima 5018 $40 VOID E Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:21.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:22'),
(6571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511966653928@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:48.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:48'),
(6572, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511966653928@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:48.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:48'),
(6573, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F134AAF08299878DF1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"atualizou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938748,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:48.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:48'),
(6574, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F134AAF08299878DF1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"atualizou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938748,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:48.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:48'),
(6575, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511966653928@s.whatsapp.net\",\"pushName\":\"Edi 3928 $35 Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:48.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:48'),
(6576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511966653928@s.whatsapp.net\",\"pushName\":\"Edi 3928 $35 Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:48.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:49'),
(6577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"id\":\"3EB0F134AAF08299878DF1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938749705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:49.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:49'),
(6578, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"id\":\"3EB0F134AAF08299878DF1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938749705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:49.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:49'),
(6579, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511966653928@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:52.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:52'),
(6580, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025C12156B43D635203\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"na tela inicial?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938752,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:52.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:52'),
(6581, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511966653928@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:52.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:52'),
(6582, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025C12156B43D635203\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"na tela inicial?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938752,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:52.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:52'),
(6583, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"id\":\"3EB025C12156B43D635203\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938752939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:52.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:53'),
(6584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511966653928@s.whatsapp.net\",\"id\":\"3EB025C12156B43D635203\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938752939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:52.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:53'),
(6585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511966653928@s.whatsapp.net\",\"pushName\":\"Edi 3928 $35 Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:53.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:25:53'),
(6586, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511966653928@s.whatsapp.net\",\"pushName\":\"Edi 3928 $35 Imp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:25:53.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:25:53'),
(6587, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1095317368978@lid\",\"id\":\"3EB0F134AAF08299878DF1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938765021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:05.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:05'),
(6588, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1095317368978@lid\",\"id\":\"3EB025C12156B43D635203\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938765016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:05.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:05'),
(6589, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1095317368978@lid\",\"id\":\"3EB0F134AAF08299878DF1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938765021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:05.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:05'),
(6590, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1095317368978@lid\",\"id\":\"3EB025C12156B43D635203\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938765016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:05.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:05'),
(6591, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:08.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:08'),
(6592, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:08.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:08'),
(6593, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:13.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:14'),
(6594, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1095317368978@lid\",\"fromMe\":false,\"id\":\"AC346B8A98DB4416556AC31A132141C2\"},\"pushName\":\"Édi Silva\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3crZ1OZlU+sM7ZihBKyW6p5oBCSYiBp0I9mAtzNTF00=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:13.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:14'),
(6595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:13.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:14'),
(6596, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:13.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:14'),
(6597, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1095317368978@lid\",\"fromMe\":false,\"id\":\"AC346B8A98DB4416556AC31A132141C2\"},\"pushName\":\"Édi Silva\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3crZ1OZlU+sM7ZihBKyW6p5oBCSYiBp0I9mAtzNTF00=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:13.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:14'),
(6598, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:13.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:14'),
(6599, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:14.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:14'),
(6600, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:14.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:15'),
(6601, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:14.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:15'),
(6602, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/521379394_1142516811271204_6928329353448102315_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKi3i-Th_nxTCTNpR5BiEXiM-T2reV_zwEa6t_ElbMPA&oe=699B7822&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:14.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:15'),
(6603, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:16.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:16'),
(6604, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1095317368978@lid\",\"presences\":{\"1095317368978@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:16.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:17'),
(6605, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A51F20556AB1F3ACF832745467F737EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFwjq1LF1s4q8GvwkzBq23PC8QDgaKqxY7c_hbHOUcLcw&oe=69B5D063&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFwjq1LF1s4q8GvwkzBq23PC8QDgaKqxY7c_hbHOUcLcw&oe=69B5D063&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1770938784372\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770938785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:25.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:25'),
(6606, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"38573185196250@lid\",\"fromMe\":true,\"id\":\"A51F20556AB1F3ACF832745467F737EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFwjq1LF1s4q8GvwkzBq23PC8QDgaKqxY7c_hbHOUcLcw&oe=69B5D063&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wFwjq1LF1s4q8GvwkzBq23PC8QDgaKqxY7c_hbHOUcLcw&oe=69B5D063&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1770938784372\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770938785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:25.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6607, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:25.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:25'),
(6608, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"38573185196250@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:25.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:25'),
(6609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:25.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:26'),
(6610, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"38573185196250@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/361327720_676240861015714_4509806489371616900_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf4rlhtKK6KgabAk1PPB6XDdv5-TCIgNDrteQuvjU2sg&oe=699B6F8B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:25.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:26'),
(6611, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A51F20556AB1F3ACF832745467F737EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938786257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:26.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:26'),
(6612, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250@lid\",\"id\":\"A51F20556AB1F3ACF832745467F737EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938786257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:26.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:26'),
(6613, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:33.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:33'),
(6614, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:33.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:33'),
(6615, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:34.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:34'),
(6616, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5E3681C71A85DAA2436028283D753BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938794,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:34.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:34'),
(6617, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:34.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:34'),
(6618, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5E3681C71A85DAA2436028283D753BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938794,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:34.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:35'),
(6619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:34.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:35'),
(6620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:35.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:35'),
(6621, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5CCB9F06FD7B97DE2F96180DB8E4079\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938795,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:35.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:35'),
(6622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:34.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:35'),
(6623, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:35.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:36'),
(6624, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E3681C71A85DAA2436028283D753BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938796303,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:36.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:36'),
(6625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:36.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:36'),
(6626, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E3681C71A85DAA2436028283D753BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938796303,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:36.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:36'),
(6627, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5CCB9F06FD7B97DE2F96180DB8E4079\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938795,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:35.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:36'),
(6628, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CCB9F06FD7B97DE2F96180DB8E4079\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938796518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:36.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:37'),
(6629, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:37'),
(6630, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:37'),
(6631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC70CD9AA37949D368E64EF9D0784B01\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite blz\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5F481D8F14CF49459D12BA030F9D02F\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Q7hHOUCZGVdlmShyrM0oF0me1ZF0\\/Rbu6v89F2fN08c=\",\"fileLength\":\"179237\",\"height\":1155,\"width\":1074,\"mediaKey\":\"XBPR1PaZrxyNamWOlVVlKHjlIfTQ1em0kBWBDMya6gI=\",\"fileEncSha256\":\"eZyQKKsGVejNs9ml+Ing0r2Dkh0jsqvbIrWIB9GJdQQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770925577\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAJEAhwMBIgACEQEDEQH\\/xAAzAAACAwEBAQAAAAAAAAAAAAAABQIDBAYBBwEBAQEBAQEBAAAAAAAAAAAAAAECAwQFBv\\/aAAwDAQACEAMQAAAAVuOxjnHLe\\/Qc2XFZu3YVxGD6dzhzB01xymfsJnM2da2PnWD6FI+XH2ITiJxt+XN6zfLDNfL2Ls7jJgjtlDqjZKRpoa+cyb3Tp0xDg5kE8tnp9DjOK8a1slNyMfKKJfas5uW7lkB6Z8+L77k81HJhMEV7u28Ek3OjE5w6KS4MfUrsznKujN3nNDyCY4v9nNxWnpJrzp05mcpeht9Hs6GdCflp3q5zej+1CvxWoj86xqy5DYdkcnv5XdZy8tTsREc6lsxS+54N04ZY2e5ZxuzzrIxx2VqhmiOZZq4nLIDMxEi71hLjiiUtOZjNvhoWM6ZFUWPuqtixC262zEWzDV0Fxzzzlt0+vS5ezjnOWy6RqTOcML5a\\/dXD5viX7cTHEVGkq8mYzjtR28\\/vvp1ZOXXZq5xxY2wUqcmM03nTLWxLJOvv5Rhy3ZNf5udIJDlvsvQ\\/QfIAAAAAAJQCgBAAAD\\/\\/xAA+EAABAwMDAQUFBQUHBQAAAAABAgMRAAQhBRIxURMUIkFhBhUjMpFSU2JxkiWBgrHBBxYkNUKh0TRAc5PC\\/9oACAEBAAE\\/ALn2G1JDyw5f6cglyIU8RBOYOK032OdUWrYI024uGyS5FzJUArpspHsoTvBttMKm1IC\\/8QU+JP8ABTfsXeIbSBbaYshMAqeJk55hNf3Outg22mlxvBkvTgkY+Srj2FvHVNKaYsGwhcrAuDCvT5KR7D3KyNlhYOxEntyJ+iKPsdddoAGtMDyAoLBfxKuPDsq59ktrTgeY0xoErhwXG0p3fwUx7DXgQ0gsWDjiYKj23MfwUj2QWFgljTCFJEJNx6T9irv2IuloYWlGntoQRvIfPjmB5Ipr2QduV\\/4W001wCOHp8\\/PwelL9hdTQ0qdP01KinCu1MAx6oo+xdwVZsNO+cnD5T6x8lXnsJqTzO1pvTmYXIX2xnaBEfLSP7MvaJwSh2yI9HTV5qCRdOzpvbkON7iFK6YUBxWjX7Cb902+kqt1dmv4qgqCJ4zQ7AFw91ZlxW5eDk0+4y0WUpsmCHFhBxAAo37SAQdMJlWYbUaJZVE2rPXKaZuixvLTTaCRmBS75N05LuheJ4wVqQodMqI45pN+20iB7PkFQkpDcim9SatnSWtEcSFNhW5LRJJBOCP3V3i3KYToJUAsAhTcGNpzk5iKN\\/bp2gaK5BE4aIIMjHP4RTN+bG5S3aaYlIcKQtxCCABkZ\\/KnL51xOxaEFIPBFP362l7EachzgyE4kzTGouOuELsEtkTlSaRqDyE7UpQB0Aq696G7+DqLTbW\\/5FEFUQMcVY+8xdOd5v2nG9q4bQcgzTjwaTvcfCU9SqBVq3qIBJv0rle75ivwmv2gCJumhOAINM97BV2r6VJ8okGgpcHxn60p1TiHEs3KQ5tMGZg8AxWzWEglWoM+YymImijVFJjvraePElMnn1op1RKEJ7+2VgcqEbsRkU3703pKrtlSZkgAjHpQeBVtD4JzgKzirjvXbSi7CEdD5mki9HN+kyDGOvFbNRj\\/rE\\/SmRdhR7W4CkxiBFala6GnUdlym5W8XB8gSUyUitGtNDc1B5Nn3kOhtcqXEESBTzdjcKeYeDqUNOYWIkFComu46JtADrqgmBjfGBFCz0ZTKSh11bZKsjd6Gm7HRxsdQX4JndCjBBApiztn0FTbyyODIg\\/Q0n2Y09KFIG+CZOc44E03baI4wWougn59hCpkeoo2Hs92ThSm5WlKAVABzjHWKXp+jOBp1xi6C1mQkhQICyc8xmKtdL0F51tpntwogFOFpHX\\/5pr2esWXS6jeFkkzJNX+nWYZ+OHFoUqNqRJnmjaaapZlq5mACYoWNisIMuneaY023KJQpxIng1c3Ov95i3Wjsd3Kj5R+dWVzrpuF96W2Gdqtu1WZrtnwSQ6ZPPiq4ev8AansXyPFnI\\/rSn9aSQG3Gto9a7xcffK\\/VQfuIPxlfqrvFx98r9VXD+r75t3mynZELUeZ5xTlxrpSjY4wFbhulZgiTIo3XtCM7rcwDgLOTVvc6gWgX3AlzzCVyK7xcffK\\/VSrl4KIL5GftUu61UrVsuGtmYlWYpq51TcC7ct7ZzCvKhcvnh8n+Krmy1B253tXxab3TtGcRVpZ3zVytx677RsoIDfQ9aIiMjPrVvY3zc77yTvnJ3Y\\/fXYX05ukfoFMtXCVK7R5Kx5CAIoJMGn2nHGylDhQZT4hzAMmha6nEG\\/R\\/6xQttT871vn7ocfWlWmolzcm+SkbYI2A+ZruurBQi\\/aIJlUtjGPKtpq4tmnFlxTW5QwMxiaTaISVFNp82FeMZH1ruLPAtBzM76YYS0iEICJyUzNagnTu\\/S9fvNL7TCEhQztFacixGoPFu9ddd7NW5CkkCMZrUU2irm1Dq3AoERCQQJUIyeCTSEWqgNl88MJAEgQTxjGTNdpYr2rF29ISBuE5A6\\/WothsHfrqV5TTewtiFEjaIJ86TqNgorAfjaATIKYB45p9qzkrOoPoDijPZqEZ6kDjFbbAqB98PkyRPap88xQRpqwhQ1J6WpAO8AxxH5HbTD1iwVqN+6rwiUumduehzTV5ZvKCG7hClHyBBOKuRbpdly4WjccCYBij3Eb5vXMiD46CWUAp7yvnrmmg0fEh5aqvLYpvoa0Jp8bxLpkHgZmtOtUm9dCtFRbt7FQ6ME5GK7stVy6XNLQsNKIbOQQJHBPWu7snxDSFSPMmKSw242lwaOQScpUYNJtWylCjpIGCCmc8jimLRhSPFaFsjG3cTV5YlpwItdKacbUCpSiY8U9JoWr5YbB0duQuVIKhATHl4uaDCsK\\/u9Cv\\/KiRTbG9oqb0MIVnZuWBwMTSbdYaBXoCZCQFAOJP57asrK3dbDrmnBhc4STJilafZqMqYBgzmafsGEAFqySsnnMU3YWxCt1qEQYGZkV3C0HDI+pq9umTflR1xdvCh8ETxHqqtLu2kXzpVrK7o7FyzHy555NJTtffdTduJK1EiE+s5zmKdvlNpBd1BYlUCGhQ1FGxAd1UdpkyEpA8hETSXlBKJvnSpM+LYMyRyKZvkIQQ46tw9doH8q942\\/4vpVw+x2zhOp3DS3CFoTwlIRjAn1zTF0G+dXWuDOUo4mSKTeoMtp15co8KvA3OKsblLIXvvXX0H5dyRiCZzXvG3\\/F9KOo2\\/wCL6VcavYr8IulNkTMUzrFlwX1LKlYxHNe8bf8AF9KvHWRfkHSlvKCx8QFUTArS1sG8cDelLY8C\\/iKChInit34RTd47cD41gqA5AjcIpSrdapOmOfpj160zclxSgbdaI81CAaUspbcUG9xCZAHJr3iuCe4PkiJhODPSYpd4h6O20p9RynKJxQFrvbSnSYQoKCiUREp6esxSn23WypWhrKtklKkcknikag218FvTrgAAkAN4znrTeoKWtKTY3CNxiSnA\\/PNOL2hZCJIkx1pTs792lkndJ85pLomfd0QmQY6cCt34RVyNRXdFTOoJbZ3fLEmP01Zd\\/RcLXc36HGihUICSIP0pCrwIG6+QVddp\\/wCBW+4KSO+JBnBCTxFb7rZHfUbsZ2Gi5c+V23+g0y6sb+0uEqECIBFXSn3Fs9je9mgHxiCSRTqr0uqU1fNhBTwpBMGld+kFOoo4MgtmKSu+2rC75qScEIVgQaJ1CIGoNjIjwEmKZeKWwHbgKXJkgEDnFP3TSJm4SglUAqmu\\/NeWoNUbxlK1BWoIHp0mkXDZQk9vukcic1caW47cLX3rZLgO0KjgRHNWWluMXK3O9KdJQsFJWKdbU2gqWpCB9pSgBQsrpzaoXQkZlEAQodJNdxuhAVcnMj\\/SJmmrK6QslTu5MQE4oW7sKwOOooNKKtoKCrpuE4oaTcob299dgdVJp3TLlawtN0tCggJ5THMzFDTLoAEXrkTPKaY0tbTqXe9uLGfCXAU5ru7vQfUVcWril5Q0RJgKIruKoPwWJIgccUbFwzNuyZEcim7V5I27EJSOAkir46V31wPpeK+1QDGwiduB1rSFaQb97uiXu17NclRwRNP3VrdLetnGnPhLBCgRykj6c0n3WottjtPJKZK4MCKDmmdnB7UCTzu8zSFaWlQUntZBn\\/WcimH2XkKU3uIGMyP5iri3061Drrjbnx3IUQSSJz5cCg5ooaW1ue2KSAUntOJim0aK4obC8TgRucGVEdfzpteiFvbDqQQQUnfifDU6CoHwuwrxR8SMeYFWtpaMw4yleUYlajg+hq7btnUqS+glG7qf6UW7FSsoXJAEyryqbVXIXJzmZpoNBMoSYPrVwrVe8LDLTJb3iCoJ4jJ5qyVqxuV96aYSztVt2xM0DqiXnZLO0rGzdtEiTgRRVqEiG2OevlQN+ZCgyniCM9JrdqOPBb+uaZNwQvtUtjiNpmrrv0I7qWZnxb\\/MekVOrELGy1ScbTMxTQ1MBJdLCjAkDHKs\\/QUg6wAApFqowJMxJoOauVBJYtgIyoLpsOhtAcKCvaNxERNKncfl59KWNRhWxTPzYmOKbOpb0doGNs+KKz+H\\/ar1vT+9uF26fQvtUSEoP2cCRWnCwF+4Grt1x4NrlKk4gmZq6sWblxpalrBR0A6g\\/wBKZesnJCbm5bg7QD4Y6GB19acNmvi\\/dSraBuB8k5ppm2dJDd4+SBB8ZnFISlKI3KMACTzV63ZpfJcv32VubMBUAgdKjTSqRqtxKuPi1v01MK96PSB9uTzup06YLjeu+fDm0wQryUo4pSdJWEzqLpWlJhfaSoTVmhgNqU1cuOoUrlSt0RiBStu45PNPM2b6wpbq5gCOOJ\\/5phu0ZcUUOqk+R8prw9TVyi8F0st6Shz4qYWW4J8PM1YIve9uBWlJYb2KhwIAJPSrn3kl9hLNsVNn5zs9R9MU0zeIAB05CfM7AIkmgL6FfsvjjjNI7+Cr9mlOeopQuwwpabZRc2g7I+omlnUyf8q3Z5JTgVGolofsgBYAwdsc5FJGoFBJ0kT5cCidRj\\/J5HQqTSvekAp0hMkeIEp60lWoJCEjTVRAJggAE80pt3cfhq5+zQ7\\/ABmxz+eKHfipM2JAnJJrs3vu1fpq8u7c3bhOruMfEQS2NwgBPHzxmtNu2Uag8o6q7cEtqlmDCcjOVGkpSh991N06kuKJEJ6mc5zFO3xbSO1v3cqxDSaTqLZQ2lzVFF2TkJSOgiJpLyglE3r5UmfFsTmSORTN8hCCHHHHD1KQD\\/tWoarZHs2++uW7iVbgR54NC\\/QV7TrLwUBwW0J9fP8AOlXrLjhU3q7iTBBjYRyVcTGAaF\\/akob99PFbZIPy+fXqcedd9QVqbOsOhaAmQEoHNMararaRtcU7CQCsRkxzijqLAPC\\/pSnrdalqF9cAqUSAFYAngZpu4t0rbIvH1bYkFUzH7694sdF\\/Srt4C+Wj3Q66O0Se0BVtJ289K01xtV45t0ldv4FfFUDkA8VI6CrsnYiGQrxeuPpTim+0AVpZV1IEjmpHQUCIOBTzja3ldppe\\/bjeUbuFRj+db7dwJ36MvHALaTFKWy2s7NGkFByEAGTIg0txtxAPuQqIIkLSBgyTFdpbqUFnRXN+MltM\\/wA6s1tytCLEsDn5QkGMDilEScDmtwkTa0FJ3Ztf3xUjoP8Asv\\/EAC4RAAECAwcDAwMFAAAAAAAAAAEAAwIRFAQSE1FSkaExQWEQIbEigZIwMlNiwf\\/aAAgBAgEBPwDHCx4VjwoPwrGCxgseFY8KqIVUN3J+8pdbqFpaA6xbEqpazi\\/Eqrs46xnYqob\\/ALfijaWpEzPn6ULWxP2jOxVU1qOyNsYn+\\/grDgl0h2QagyRagyCwoclhQZQ7ItQHtDsg1BksKDSNgi1BpVVBdnKLp4VW3IC7FwqtvTFwha2iZXYuFVt5HeFVTfSUW8KNtahJF2NVrUp3Y+Ebc1pj2VNBdl48KlhKNlgyVE2e3KpYJSP+KKyQEES+FQtjtyqJqUpHdUTWXKw2dY3CwmdfIWGxr5CwmdfIWGxrG4WGzrG4WExr5CwmNfIWEx\\/JyF2+3qOqn5O6+53Uz6FTEuvbNAiXUKYz5QIzCmM+QpjPkIkKYz5UwqeC73lLwsBskTCNnbEvZQ2Vq8DJU7eXwqZvL4RsjPv7FU7flUjOR\\/S\\/\\/8QAKhEAAQIFAwMEAgMAAAAAAAAAAAECAwQRE1ESFFIVQVMwYmORYaExQkP\\/2gAIAQMBAT8Aq01NKtKtKtKtNTTU0qwtPwWYmCzEwWImC1EwWYmCxEwWYmCxFx+zeu4MOoP8MMSfen+TDqD\\/AAwzfP8AGwSff42HUH+GH9G\\/d4mHUX+GH9Fh2ULD8oWH5Q27soWH5QsOyht35abd+UNs\\/LS9K+4vyXa4JHk++svyfyF+Ur\\/cSPKd9ZuJP5C\\/Ke83Ml8hpZk0s5GlnI0M5GlnI0s5GhnI0s5GiHy\\/foqUWhRSiiIpRcFFKKUXBRcFmHXv\\/IstCp3+xsvDXIsvDTJYh\\/ksQ\\/yJLw1ybeHhTbwvd6X\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"DziEQUT1KPzaXWPDn1cU4XDUE5xygHYpWUwG\\/0IWa4rOD0i\\/GzhYxg==\",\"scanLengths\":[13206,86186,33026,46819],\"midQualityFileSha256\":\"UbaiITUUw1PaVsxN0YgaYawyVdWWOTzM\\/lb3shgeOWE=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vkqh52ypMtTOq3L+WkQuAknyXhGSUWNaXXHWOZdj5YE=\"}},\"contextInfo\":{\"stanzaId\":\"A5F481D8F14CF49459D12BA030F9D02F\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Q7hHOUCZGVdlmShyrM0oF0me1ZF0\\/Rbu6v89F2fN08c=\",\"fileLength\":\"179237\",\"height\":1155,\"width\":1074,\"mediaKey\":\"XBPR1PaZrxyNamWOlVVlKHjlIfTQ1em0kBWBDMya6gI=\",\"fileEncSha256\":\"eZyQKKsGVejNs9ml+Ing0r2Dkh0jsqvbIrWIB9GJdQQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770925577\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAJEAhwMBIgACEQEDEQH\\/xAAzAAACAwEBAQAAAAAAAAAAAAAABQIDBAYBBwEBAQEBAQEBAAAAAAAAAAAAAAECAwQFBv\\/aAAwDAQACEAMQAAAAVuOxjnHLe\\/Qc2XFZu3YVxGD6dzhzB01xymfsJnM2da2PnWD6FI+XH2ITiJxt+XN6zfLDNfL2Ls7jJgjtlDqjZKRpoa+cyb3Tp0xDg5kE8tnp9DjOK8a1slNyMfKKJfas5uW7lkB6Z8+L77k81HJhMEV7u28Ek3OjE5w6KS4MfUrsznKujN3nNDyCY4v9nNxWnpJrzp05mcpeht9Hs6GdCflp3q5zej+1CvxWoj86xqy5DYdkcnv5XdZy8tTsREc6lsxS+54N04ZY2e5ZxuzzrIxx2VqhmiOZZq4nLIDMxEi71hLjiiUtOZjNvhoWM6ZFUWPuqtixC262zEWzDV0Fxzzzlt0+vS5ezjnOWy6RqTOcML5a\\/dXD5viX7cTHEVGkq8mYzjtR28\\/vvp1ZOXXZq5xxY2wUqcmM03nTLWxLJOvv5Rhy3ZNf5udIJDlvsvQ\\/QfIAAAAAAJQCgBAAAD\\/\\/xAA+EAABAwMDAQUFBQUHBQAAAAABAgMRAAQhBRIxURMUIkFhBhUjMpFSU2JxkiWBgrHBBxYkNUKh0TRAc5PC\\/9oACAEBAAE\\/ALn2G1JDyw5f6cglyIU8RBOYOK032OdUWrYI024uGyS5FzJUArpspHsoTvBttMKm1IC\\/8QU+JP8ABTfsXeIbSBbaYshMAqeJk55hNf3Outg22mlxvBkvTgkY+Srj2FvHVNKaYsGwhcrAuDCvT5KR7D3KyNlhYOxEntyJ+iKPsdddoAGtMDyAoLBfxKuPDsq59ktrTgeY0xoErhwXG0p3fwUx7DXgQ0gsWDjiYKj23MfwUj2QWFgljTCFJEJNx6T9irv2IuloYWlGntoQRvIfPjmB5Ipr2QduV\\/4W001wCOHp8\\/PwelL9hdTQ0qdP01KinCu1MAx6oo+xdwVZsNO+cnD5T6x8lXnsJqTzO1pvTmYXIX2xnaBEfLSP7MvaJwSh2yI9HTV5qCRdOzpvbkON7iFK6YUBxWjX7Cb902+kqt1dmv4qgqCJ4zQ7AFw91ZlxW5eDk0+4y0WUpsmCHFhBxAAo37SAQdMJlWYbUaJZVE2rPXKaZuixvLTTaCRmBS75N05LuheJ4wVqQodMqI45pN+20iB7PkFQkpDcim9SatnSWtEcSFNhW5LRJJBOCP3V3i3KYToJUAsAhTcGNpzk5iKN\\/bp2gaK5BE4aIIMjHP4RTN+bG5S3aaYlIcKQtxCCABkZ\\/KnL51xOxaEFIPBFP362l7EachzgyE4kzTGouOuELsEtkTlSaRqDyE7UpQB0Aq696G7+DqLTbW\\/5FEFUQMcVY+8xdOd5v2nG9q4bQcgzTjwaTvcfCU9SqBVq3qIBJv0rle75ivwmv2gCJumhOAINM97BV2r6VJ8okGgpcHxn60p1TiHEs3KQ5tMGZg8AxWzWEglWoM+YymImijVFJjvraePElMnn1op1RKEJ7+2VgcqEbsRkU3703pKrtlSZkgAjHpQeBVtD4JzgKzirjvXbSi7CEdD5mki9HN+kyDGOvFbNRj\\/rE\\/SmRdhR7W4CkxiBFala6GnUdlym5W8XB8gSUyUitGtNDc1B5Nn3kOhtcqXEESBTzdjcKeYeDqUNOYWIkFComu46JtADrqgmBjfGBFCz0ZTKSh11bZKsjd6Gm7HRxsdQX4JndCjBBApiztn0FTbyyODIg\\/Q0n2Y09KFIG+CZOc44E03baI4wWougn59hCpkeoo2Hs92ThSm5WlKAVABzjHWKXp+jOBp1xi6C1mQkhQICyc8xmKtdL0F51tpntwogFOFpHX\\/5pr2esWXS6jeFkkzJNX+nWYZ+OHFoUqNqRJnmjaaapZlq5mACYoWNisIMuneaY023KJQpxIng1c3Ov95i3Wjsd3Kj5R+dWVzrpuF96W2Gdqtu1WZrtnwSQ6ZPPiq4ev8AansXyPFnI\\/rSn9aSQG3Gto9a7xcffK\\/VQfuIPxlfqrvFx98r9VXD+r75t3mynZELUeZ5xTlxrpSjY4wFbhulZgiTIo3XtCM7rcwDgLOTVvc6gWgX3AlzzCVyK7xcffK\\/VSrl4KIL5GftUu61UrVsuGtmYlWYpq51TcC7ct7ZzCvKhcvnh8n+Krmy1B253tXxab3TtGcRVpZ3zVytx677RsoIDfQ9aIiMjPrVvY3zc77yTvnJ3Y\\/fXYX05ukfoFMtXCVK7R5Kx5CAIoJMGn2nHGylDhQZT4hzAMmha6nEG\\/R\\/6xQttT871vn7ocfWlWmolzcm+SkbYI2A+ZruurBQi\\/aIJlUtjGPKtpq4tmnFlxTW5QwMxiaTaISVFNp82FeMZH1ruLPAtBzM76YYS0iEICJyUzNagnTu\\/S9fvNL7TCEhQztFacixGoPFu9ddd7NW5CkkCMZrUU2irm1Dq3AoERCQQJUIyeCTSEWqgNl88MJAEgQTxjGTNdpYr2rF29ISBuE5A6\\/WothsHfrqV5TTewtiFEjaIJ86TqNgorAfjaATIKYB45p9qzkrOoPoDijPZqEZ6kDjFbbAqB98PkyRPap88xQRpqwhQ1J6WpAO8AxxH5HbTD1iwVqN+6rwiUumduehzTV5ZvKCG7hClHyBBOKuRbpdly4WjccCYBij3Eb5vXMiD46CWUAp7yvnrmmg0fEh5aqvLYpvoa0Jp8bxLpkHgZmtOtUm9dCtFRbt7FQ6ME5GK7stVy6XNLQsNKIbOQQJHBPWu7snxDSFSPMmKSw242lwaOQScpUYNJtWylCjpIGCCmc8jimLRhSPFaFsjG3cTV5YlpwItdKacbUCpSiY8U9JoWr5YbB0duQuVIKhATHl4uaDCsK\\/u9Cv\\/KiRTbG9oqb0MIVnZuWBwMTSbdYaBXoCZCQFAOJP57asrK3dbDrmnBhc4STJilafZqMqYBgzmafsGEAFqySsnnMU3YWxCt1qEQYGZkV3C0HDI+pq9umTflR1xdvCh8ETxHqqtLu2kXzpVrK7o7FyzHy555NJTtffdTduJK1EiE+s5zmKdvlNpBd1BYlUCGhQ1FGxAd1UdpkyEpA8hETSXlBKJvnSpM+LYMyRyKZvkIQQ46tw9doH8q942\\/4vpVw+x2zhOp3DS3CFoTwlIRjAn1zTF0G+dXWuDOUo4mSKTeoMtp15co8KvA3OKsblLIXvvXX0H5dyRiCZzXvG3\\/F9KOo2\\/wCL6VcavYr8IulNkTMUzrFlwX1LKlYxHNe8bf8AF9KvHWRfkHSlvKCx8QFUTArS1sG8cDelLY8C\\/iKChInit34RTd47cD41gqA5AjcIpSrdapOmOfpj160zclxSgbdaI81CAaUspbcUG9xCZAHJr3iuCe4PkiJhODPSYpd4h6O20p9RynKJxQFrvbSnSYQoKCiUREp6esxSn23WypWhrKtklKkcknikag218FvTrgAAkAN4znrTeoKWtKTY3CNxiSnA\\/PNOL2hZCJIkx1pTs792lkndJ85pLomfd0QmQY6cCt34RVyNRXdFTOoJbZ3fLEmP01Zd\\/RcLXc36HGihUICSIP0pCrwIG6+QVddp\\/wCBW+4KSO+JBnBCTxFb7rZHfUbsZ2Gi5c+V23+g0y6sb+0uEqECIBFXSn3Fs9je9mgHxiCSRTqr0uqU1fNhBTwpBMGld+kFOoo4MgtmKSu+2rC75qScEIVgQaJ1CIGoNjIjwEmKZeKWwHbgKXJkgEDnFP3TSJm4SglUAqmu\\/NeWoNUbxlK1BWoIHp0mkXDZQk9vukcic1caW47cLX3rZLgO0KjgRHNWWluMXK3O9KdJQsFJWKdbU2gqWpCB9pSgBQsrpzaoXQkZlEAQodJNdxuhAVcnMj\\/SJmmrK6QslTu5MQE4oW7sKwOOooNKKtoKCrpuE4oaTcob299dgdVJp3TLlawtN0tCggJ5THMzFDTLoAEXrkTPKaY0tbTqXe9uLGfCXAU5ru7vQfUVcWril5Q0RJgKIruKoPwWJIgccUbFwzNuyZEcim7V5I27EJSOAkir46V31wPpeK+1QDGwiduB1rSFaQb97uiXu17NclRwRNP3VrdLetnGnPhLBCgRykj6c0n3WottjtPJKZK4MCKDmmdnB7UCTzu8zSFaWlQUntZBn\\/WcimH2XkKU3uIGMyP5iri3061Drrjbnx3IUQSSJz5cCg5ooaW1ue2KSAUntOJim0aK4obC8TgRucGVEdfzpteiFvbDqQQQUnfifDU6CoHwuwrxR8SMeYFWtpaMw4yleUYlajg+hq7btnUqS+glG7qf6UW7FSsoXJAEyryqbVXIXJzmZpoNBMoSYPrVwrVe8LDLTJb3iCoJ4jJ5qyVqxuV96aYSztVt2xM0DqiXnZLO0rGzdtEiTgRRVqEiG2OevlQN+ZCgyniCM9JrdqOPBb+uaZNwQvtUtjiNpmrrv0I7qWZnxb\\/MekVOrELGy1ScbTMxTQ1MBJdLCjAkDHKs\\/QUg6wAApFqowJMxJoOauVBJYtgIyoLpsOhtAcKCvaNxERNKncfl59KWNRhWxTPzYmOKbOpb0doGNs+KKz+H\\/ar1vT+9uF26fQvtUSEoP2cCRWnCwF+4Grt1x4NrlKk4gmZq6sWblxpalrBR0A6g\\/wBKZesnJCbm5bg7QD4Y6GB19acNmvi\\/dSraBuB8k5ppm2dJDd4+SBB8ZnFISlKI3KMACTzV63ZpfJcv32VubMBUAgdKjTSqRqtxKuPi1v01MK96PSB9uTzup06YLjeu+fDm0wQryUo4pSdJWEzqLpWlJhfaSoTVmhgNqU1cuOoUrlSt0RiBStu45PNPM2b6wpbq5gCOOJ\\/5phu0ZcUUOqk+R8prw9TVyi8F0st6Shz4qYWW4J8PM1YIve9uBWlJYb2KhwIAJPSrn3kl9hLNsVNn5zs9R9MU0zeIAB05CfM7AIkmgL6FfsvjjjNI7+Cr9mlOeopQuwwpabZRc2g7I+omlnUyf8q3Z5JTgVGolofsgBYAwdsc5FJGoFBJ0kT5cCidRj\\/J5HQqTSvekAp0hMkeIEp60lWoJCEjTVRAJggAE80pt3cfhq5+zQ7\\/ABmxz+eKHfipM2JAnJJrs3vu1fpq8u7c3bhOruMfEQS2NwgBPHzxmtNu2Uag8o6q7cEtqlmDCcjOVGkpSh991N06kuKJEJ6mc5zFO3xbSO1v3cqxDSaTqLZQ2lzVFF2TkJSOgiJpLyglE3r5UmfFsTmSORTN8hCCHHHHD1KQD\\/tWoarZHs2++uW7iVbgR54NC\\/QV7TrLwUBwW0J9fP8AOlXrLjhU3q7iTBBjYRyVcTGAaF\\/akob99PFbZIPy+fXqcedd9QVqbOsOhaAmQEoHNMararaRtcU7CQCsRkxzijqLAPC\\/pSnrdalqF9cAqUSAFYAngZpu4t0rbIvH1bYkFUzH7694sdF\\/Srt4C+Wj3Q66O0Se0BVtJ289K01xtV45t0ldv4FfFUDkA8VI6CrsnYiGQrxeuPpTim+0AVpZV1IEjmpHQUCIOBTzja3ldppe\\/bjeUbuFRj+db7dwJ36MvHALaTFKWy2s7NGkFByEAGTIg0txtxAPuQqIIkLSBgyTFdpbqUFnRXN+MltM\\/wA6s1tytCLEsDn5QkGMDilEScDmtwkTa0FJ3Ztf3xUjoP8Asv\\/EAC4RAAECAwcDAwMFAAAAAAAAAAEAAwIRFAQSE1FSkaExQWEQIbEigZIwMlNiwf\\/aAAgBAgEBPwDHCx4VjwoPwrGCxgseFY8KqIVUN3J+8pdbqFpaA6xbEqpazi\\/Eqrs46xnYqob\\/ALfijaWpEzPn6ULWxP2jOxVU1qOyNsYn+\\/grDgl0h2QagyRagyCwoclhQZQ7ItQHtDsg1BksKDSNgi1BpVVBdnKLp4VW3IC7FwqtvTFwha2iZXYuFVt5HeFVTfSUW8KNtahJF2NVrUp3Y+Ebc1pj2VNBdl48KlhKNlgyVE2e3KpYJSP+KKyQEES+FQtjtyqJqUpHdUTWXKw2dY3CwmdfIWGxr5CwmdfIWGxrG4WGzrG4WExr5CwmNfIWEx\\/JyF2+3qOqn5O6+53Uz6FTEuvbNAiXUKYz5QIzCmM+QpjPkIkKYz5UwqeC73lLwsBskTCNnbEvZQ2Vq8DJU7eXwqZvL4RsjPv7FU7flUjOR\\/S\\/\\/8QAKhEAAQIFAwMEAgMAAAAAAAAAAAECAwQRE1ESFFIVQVMwYmORYaExQkP\\/2gAIAQMBAT8Aq01NKtKtKtKtNTTU0qwtPwWYmCzEwWImC1EwWYmCxEwWYmCxFx+zeu4MOoP8MMSfen+TDqD\\/AAwzfP8AGwSff42HUH+GH9G\\/d4mHUX+GH9Fh2ULD8oWH5Q27soWH5QsOyht35abd+UNs\\/LS9K+4vyXa4JHk++svyfyF+Ur\\/cSPKd9ZuJP5C\\/Ke83Ml8hpZk0s5GlnI0M5GlnI0s5GhnI0s5GiHy\\/foqUWhRSiiIpRcFFKKUXBRcFmHXv\\/IstCp3+xsvDXIsvDTJYh\\/ksQ\\/yJLw1ybeHhTbwvd6X\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"DziEQUT1KPzaXWPDn1cU4XDUE5xygHYpWUwG\\/0IWa4rOD0i\\/GzhYxg==\",\"scanLengths\":[13206,86186,33026,46819],\"midQualityFileSha256\":\"UbaiITUUw1PaVsxN0YgaYawyVdWWOTzM\\/lb3shgeOWE=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938797,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:37'),
(6632, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CCB9F06FD7B97DE2F96180DB8E4079\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938796518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:36.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:37'),
(6633, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:38'),
(6634, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:38'),
(6635, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:38'),
(6636, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"Marcos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:38'),
(6637, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:38'),
(6638, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A502183B6C59EF746BB58DF611863737\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual a tv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938799,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:39.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:39'),
(6639, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:39.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:39'),
(6640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:39'),
(6641, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A502183B6C59EF746BB58DF611863737\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual a tv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938799,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:39.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:39'),
(6642, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:39.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:39'),
(6643, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:39.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:40'),
(6644, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A502183B6C59EF746BB58DF611863737\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938800158,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:40.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:40'),
(6645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:39.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:40'),
(6646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A502183B6C59EF746BB58DF611863737\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938800158,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:40.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:40'),
(6647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6648, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC70CD9AA37949D368E64EF9D0784B01\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite blz\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5F481D8F14CF49459D12BA030F9D02F\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Q7hHOUCZGVdlmShyrM0oF0me1ZF0\\/Rbu6v89F2fN08c=\",\"fileLength\":\"179237\",\"height\":1155,\"width\":1074,\"mediaKey\":\"XBPR1PaZrxyNamWOlVVlKHjlIfTQ1em0kBWBDMya6gI=\",\"fileEncSha256\":\"eZyQKKsGVejNs9ml+Ing0r2Dkh0jsqvbIrWIB9GJdQQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770925577\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAJEAhwMBIgACEQEDEQH\\/xAAzAAACAwEBAQAAAAAAAAAAAAAABQIDBAYBBwEBAQEBAQEBAAAAAAAAAAAAAAECAwQFBv\\/aAAwDAQACEAMQAAAAVuOxjnHLe\\/Qc2XFZu3YVxGD6dzhzB01xymfsJnM2da2PnWD6FI+XH2ITiJxt+XN6zfLDNfL2Ls7jJgjtlDqjZKRpoa+cyb3Tp0xDg5kE8tnp9DjOK8a1slNyMfKKJfas5uW7lkB6Z8+L77k81HJhMEV7u28Ek3OjE5w6KS4MfUrsznKujN3nNDyCY4v9nNxWnpJrzp05mcpeht9Hs6GdCflp3q5zej+1CvxWoj86xqy5DYdkcnv5XdZy8tTsREc6lsxS+54N04ZY2e5ZxuzzrIxx2VqhmiOZZq4nLIDMxEi71hLjiiUtOZjNvhoWM6ZFUWPuqtixC262zEWzDV0Fxzzzlt0+vS5ezjnOWy6RqTOcML5a\\/dXD5viX7cTHEVGkq8mYzjtR28\\/vvp1ZOXXZq5xxY2wUqcmM03nTLWxLJOvv5Rhy3ZNf5udIJDlvsvQ\\/QfIAAAAAAJQCgBAAAD\\/\\/xAA+EAABAwMDAQUFBQUHBQAAAAABAgMRAAQhBRIxURMUIkFhBhUjMpFSU2JxkiWBgrHBBxYkNUKh0TRAc5PC\\/9oACAEBAAE\\/ALn2G1JDyw5f6cglyIU8RBOYOK032OdUWrYI024uGyS5FzJUArpspHsoTvBttMKm1IC\\/8QU+JP8ABTfsXeIbSBbaYshMAqeJk55hNf3Outg22mlxvBkvTgkY+Srj2FvHVNKaYsGwhcrAuDCvT5KR7D3KyNlhYOxEntyJ+iKPsdddoAGtMDyAoLBfxKuPDsq59ktrTgeY0xoErhwXG0p3fwUx7DXgQ0gsWDjiYKj23MfwUj2QWFgljTCFJEJNx6T9irv2IuloYWlGntoQRvIfPjmB5Ipr2QduV\\/4W001wCOHp8\\/PwelL9hdTQ0qdP01KinCu1MAx6oo+xdwVZsNO+cnD5T6x8lXnsJqTzO1pvTmYXIX2xnaBEfLSP7MvaJwSh2yI9HTV5qCRdOzpvbkON7iFK6YUBxWjX7Cb902+kqt1dmv4qgqCJ4zQ7AFw91ZlxW5eDk0+4y0WUpsmCHFhBxAAo37SAQdMJlWYbUaJZVE2rPXKaZuixvLTTaCRmBS75N05LuheJ4wVqQodMqI45pN+20iB7PkFQkpDcim9SatnSWtEcSFNhW5LRJJBOCP3V3i3KYToJUAsAhTcGNpzk5iKN\\/bp2gaK5BE4aIIMjHP4RTN+bG5S3aaYlIcKQtxCCABkZ\\/KnL51xOxaEFIPBFP362l7EachzgyE4kzTGouOuELsEtkTlSaRqDyE7UpQB0Aq696G7+DqLTbW\\/5FEFUQMcVY+8xdOd5v2nG9q4bQcgzTjwaTvcfCU9SqBVq3qIBJv0rle75ivwmv2gCJumhOAINM97BV2r6VJ8okGgpcHxn60p1TiHEs3KQ5tMGZg8AxWzWEglWoM+YymImijVFJjvraePElMnn1op1RKEJ7+2VgcqEbsRkU3703pKrtlSZkgAjHpQeBVtD4JzgKzirjvXbSi7CEdD5mki9HN+kyDGOvFbNRj\\/rE\\/SmRdhR7W4CkxiBFala6GnUdlym5W8XB8gSUyUitGtNDc1B5Nn3kOhtcqXEESBTzdjcKeYeDqUNOYWIkFComu46JtADrqgmBjfGBFCz0ZTKSh11bZKsjd6Gm7HRxsdQX4JndCjBBApiztn0FTbyyODIg\\/Q0n2Y09KFIG+CZOc44E03baI4wWougn59hCpkeoo2Hs92ThSm5WlKAVABzjHWKXp+jOBp1xi6C1mQkhQICyc8xmKtdL0F51tpntwogFOFpHX\\/5pr2esWXS6jeFkkzJNX+nWYZ+OHFoUqNqRJnmjaaapZlq5mACYoWNisIMuneaY023KJQpxIng1c3Ov95i3Wjsd3Kj5R+dWVzrpuF96W2Gdqtu1WZrtnwSQ6ZPPiq4ev8AansXyPFnI\\/rSn9aSQG3Gto9a7xcffK\\/VQfuIPxlfqrvFx98r9VXD+r75t3mynZELUeZ5xTlxrpSjY4wFbhulZgiTIo3XtCM7rcwDgLOTVvc6gWgX3AlzzCVyK7xcffK\\/VSrl4KIL5GftUu61UrVsuGtmYlWYpq51TcC7ct7ZzCvKhcvnh8n+Krmy1B253tXxab3TtGcRVpZ3zVytx677RsoIDfQ9aIiMjPrVvY3zc77yTvnJ3Y\\/fXYX05ukfoFMtXCVK7R5Kx5CAIoJMGn2nHGylDhQZT4hzAMmha6nEG\\/R\\/6xQttT871vn7ocfWlWmolzcm+SkbYI2A+ZruurBQi\\/aIJlUtjGPKtpq4tmnFlxTW5QwMxiaTaISVFNp82FeMZH1ruLPAtBzM76YYS0iEICJyUzNagnTu\\/S9fvNL7TCEhQztFacixGoPFu9ddd7NW5CkkCMZrUU2irm1Dq3AoERCQQJUIyeCTSEWqgNl88MJAEgQTxjGTNdpYr2rF29ISBuE5A6\\/WothsHfrqV5TTewtiFEjaIJ86TqNgorAfjaATIKYB45p9qzkrOoPoDijPZqEZ6kDjFbbAqB98PkyRPap88xQRpqwhQ1J6WpAO8AxxH5HbTD1iwVqN+6rwiUumduehzTV5ZvKCG7hClHyBBOKuRbpdly4WjccCYBij3Eb5vXMiD46CWUAp7yvnrmmg0fEh5aqvLYpvoa0Jp8bxLpkHgZmtOtUm9dCtFRbt7FQ6ME5GK7stVy6XNLQsNKIbOQQJHBPWu7snxDSFSPMmKSw242lwaOQScpUYNJtWylCjpIGCCmc8jimLRhSPFaFsjG3cTV5YlpwItdKacbUCpSiY8U9JoWr5YbB0duQuVIKhATHl4uaDCsK\\/u9Cv\\/KiRTbG9oqb0MIVnZuWBwMTSbdYaBXoCZCQFAOJP57asrK3dbDrmnBhc4STJilafZqMqYBgzmafsGEAFqySsnnMU3YWxCt1qEQYGZkV3C0HDI+pq9umTflR1xdvCh8ETxHqqtLu2kXzpVrK7o7FyzHy555NJTtffdTduJK1EiE+s5zmKdvlNpBd1BYlUCGhQ1FGxAd1UdpkyEpA8hETSXlBKJvnSpM+LYMyRyKZvkIQQ46tw9doH8q942\\/4vpVw+x2zhOp3DS3CFoTwlIRjAn1zTF0G+dXWuDOUo4mSKTeoMtp15co8KvA3OKsblLIXvvXX0H5dyRiCZzXvG3\\/F9KOo2\\/wCL6VcavYr8IulNkTMUzrFlwX1LKlYxHNe8bf8AF9KvHWRfkHSlvKCx8QFUTArS1sG8cDelLY8C\\/iKChInit34RTd47cD41gqA5AjcIpSrdapOmOfpj160zclxSgbdaI81CAaUspbcUG9xCZAHJr3iuCe4PkiJhODPSYpd4h6O20p9RynKJxQFrvbSnSYQoKCiUREp6esxSn23WypWhrKtklKkcknikag218FvTrgAAkAN4znrTeoKWtKTY3CNxiSnA\\/PNOL2hZCJIkx1pTs792lkndJ85pLomfd0QmQY6cCt34RVyNRXdFTOoJbZ3fLEmP01Zd\\/RcLXc36HGihUICSIP0pCrwIG6+QVddp\\/wCBW+4KSO+JBnBCTxFb7rZHfUbsZ2Gi5c+V23+g0y6sb+0uEqECIBFXSn3Fs9je9mgHxiCSRTqr0uqU1fNhBTwpBMGld+kFOoo4MgtmKSu+2rC75qScEIVgQaJ1CIGoNjIjwEmKZeKWwHbgKXJkgEDnFP3TSJm4SglUAqmu\\/NeWoNUbxlK1BWoIHp0mkXDZQk9vukcic1caW47cLX3rZLgO0KjgRHNWWluMXK3O9KdJQsFJWKdbU2gqWpCB9pSgBQsrpzaoXQkZlEAQodJNdxuhAVcnMj\\/SJmmrK6QslTu5MQE4oW7sKwOOooNKKtoKCrpuE4oaTcob299dgdVJp3TLlawtN0tCggJ5THMzFDTLoAEXrkTPKaY0tbTqXe9uLGfCXAU5ru7vQfUVcWril5Q0RJgKIruKoPwWJIgccUbFwzNuyZEcim7V5I27EJSOAkir46V31wPpeK+1QDGwiduB1rSFaQb97uiXu17NclRwRNP3VrdLetnGnPhLBCgRykj6c0n3WottjtPJKZK4MCKDmmdnB7UCTzu8zSFaWlQUntZBn\\/WcimH2XkKU3uIGMyP5iri3061Drrjbnx3IUQSSJz5cCg5ooaW1ue2KSAUntOJim0aK4obC8TgRucGVEdfzpteiFvbDqQQQUnfifDU6CoHwuwrxR8SMeYFWtpaMw4yleUYlajg+hq7btnUqS+glG7qf6UW7FSsoXJAEyryqbVXIXJzmZpoNBMoSYPrVwrVe8LDLTJb3iCoJ4jJ5qyVqxuV96aYSztVt2xM0DqiXnZLO0rGzdtEiTgRRVqEiG2OevlQN+ZCgyniCM9JrdqOPBb+uaZNwQvtUtjiNpmrrv0I7qWZnxb\\/MekVOrELGy1ScbTMxTQ1MBJdLCjAkDHKs\\/QUg6wAApFqowJMxJoOauVBJYtgIyoLpsOhtAcKCvaNxERNKncfl59KWNRhWxTPzYmOKbOpb0doGNs+KKz+H\\/ar1vT+9uF26fQvtUSEoP2cCRWnCwF+4Grt1x4NrlKk4gmZq6sWblxpalrBR0A6g\\/wBKZesnJCbm5bg7QD4Y6GB19acNmvi\\/dSraBuB8k5ppm2dJDd4+SBB8ZnFISlKI3KMACTzV63ZpfJcv32VubMBUAgdKjTSqRqtxKuPi1v01MK96PSB9uTzup06YLjeu+fDm0wQryUo4pSdJWEzqLpWlJhfaSoTVmhgNqU1cuOoUrlSt0RiBStu45PNPM2b6wpbq5gCOOJ\\/5phu0ZcUUOqk+R8prw9TVyi8F0st6Shz4qYWW4J8PM1YIve9uBWlJYb2KhwIAJPSrn3kl9hLNsVNn5zs9R9MU0zeIAB05CfM7AIkmgL6FfsvjjjNI7+Cr9mlOeopQuwwpabZRc2g7I+omlnUyf8q3Z5JTgVGolofsgBYAwdsc5FJGoFBJ0kT5cCidRj\\/J5HQqTSvekAp0hMkeIEp60lWoJCEjTVRAJggAE80pt3cfhq5+zQ7\\/ABmxz+eKHfipM2JAnJJrs3vu1fpq8u7c3bhOruMfEQS2NwgBPHzxmtNu2Uag8o6q7cEtqlmDCcjOVGkpSh991N06kuKJEJ6mc5zFO3xbSO1v3cqxDSaTqLZQ2lzVFF2TkJSOgiJpLyglE3r5UmfFsTmSORTN8hCCHHHHD1KQD\\/tWoarZHs2++uW7iVbgR54NC\\/QV7TrLwUBwW0J9fP8AOlXrLjhU3q7iTBBjYRyVcTGAaF\\/akob99PFbZIPy+fXqcedd9QVqbOsOhaAmQEoHNMararaRtcU7CQCsRkxzijqLAPC\\/pSnrdalqF9cAqUSAFYAngZpu4t0rbIvH1bYkFUzH7694sdF\\/Srt4C+Wj3Q66O0Se0BVtJ289K01xtV45t0ldv4FfFUDkA8VI6CrsnYiGQrxeuPpTim+0AVpZV1IEjmpHQUCIOBTzja3ldppe\\/bjeUbuFRj+db7dwJ36MvHALaTFKWy2s7NGkFByEAGTIg0txtxAPuQqIIkLSBgyTFdpbqUFnRXN+MltM\\/wA6s1tytCLEsDn5QkGMDilEScDmtwkTa0FJ3Ztf3xUjoP8Asv\\/EAC4RAAECAwcDAwMFAAAAAAAAAAEAAwIRFAQSE1FSkaExQWEQIbEigZIwMlNiwf\\/aAAgBAgEBPwDHCx4VjwoPwrGCxgseFY8KqIVUN3J+8pdbqFpaA6xbEqpazi\\/Eqrs46xnYqob\\/ALfijaWpEzPn6ULWxP2jOxVU1qOyNsYn+\\/grDgl0h2QagyRagyCwoclhQZQ7ItQHtDsg1BksKDSNgi1BpVVBdnKLp4VW3IC7FwqtvTFwha2iZXYuFVt5HeFVTfSUW8KNtahJF2NVrUp3Y+Ebc1pj2VNBdl48KlhKNlgyVE2e3KpYJSP+KKyQEES+FQtjtyqJqUpHdUTWXKw2dY3CwmdfIWGxr5CwmdfIWGxrG4WGzrG4WExr5CwmNfIWEx\\/JyF2+3qOqn5O6+53Uz6FTEuvbNAiXUKYz5QIzCmM+QpjPkIkKYz5UwqeC73lLwsBskTCNnbEvZQ2Vq8DJU7eXwqZvL4RsjPv7FU7flUjOR\\/S\\/\\/8QAKhEAAQIFAwMEAgMAAAAAAAAAAAECAwQRE1ESFFIVQVMwYmORYaExQkP\\/2gAIAQMBAT8Aq01NKtKtKtKtNTTU0qwtPwWYmCzEwWImC1EwWYmCxEwWYmCxFx+zeu4MOoP8MMSfen+TDqD\\/AAwzfP8AGwSff42HUH+GH9G\\/d4mHUX+GH9Fh2ULD8oWH5Q27soWH5QsOyht35abd+UNs\\/LS9K+4vyXa4JHk++svyfyF+Ur\\/cSPKd9ZuJP5C\\/Ke83Ml8hpZk0s5GlnI0M5GlnI0s5GhnI0s5GiHy\\/foqUWhRSiiIpRcFFKKUXBRcFmHXv\\/IstCp3+xsvDXIsvDTJYh\\/ksQ\\/yJLw1ybeHhTbwvd6X\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"DziEQUT1KPzaXWPDn1cU4XDUE5xygHYpWUwG\\/0IWa4rOD0i\\/GzhYxg==\",\"scanLengths\":[13206,86186,33026,46819],\"midQualityFileSha256\":\"UbaiITUUw1PaVsxN0YgaYawyVdWWOTzM\\/lb3shgeOWE=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vkqh52ypMtTOq3L+WkQuAknyXhGSUWNaXXHWOZdj5YE=\"}},\"contextInfo\":{\"stanzaId\":\"A5F481D8F14CF49459D12BA030F9D02F\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Q7hHOUCZGVdlmShyrM0oF0me1ZF0\\/Rbu6v89F2fN08c=\",\"fileLength\":\"179237\",\"height\":1155,\"width\":1074,\"mediaKey\":\"XBPR1PaZrxyNamWOlVVlKHjlIfTQ1em0kBWBDMya6gI=\",\"fileEncSha256\":\"eZyQKKsGVejNs9ml+Ing0r2Dkh0jsqvbIrWIB9GJdQQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQN4RQcaNjk09dfEHX1vGyGkw8DRwmV_nOahUdEXKg-FG7v_dJ78SU90_sPab1oDysarrAIIxlehcTvhmY-EhPCjl7MzzJLPSH1gS8juDg?ccb=9-4&oh=01_Q5Aa3wEINEHyi-_ioE_Vi72CBBwtNa0v_H0SgncfZ3D9p_Veaw&oe=69B59D65&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770925577\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAJEAhwMBIgACEQEDEQH\\/xAAzAAACAwEBAQAAAAAAAAAAAAAABQIDBAYBBwEBAQEBAQEBAAAAAAAAAAAAAAECAwQFBv\\/aAAwDAQACEAMQAAAAVuOxjnHLe\\/Qc2XFZu3YVxGD6dzhzB01xymfsJnM2da2PnWD6FI+XH2ITiJxt+XN6zfLDNfL2Ls7jJgjtlDqjZKRpoa+cyb3Tp0xDg5kE8tnp9DjOK8a1slNyMfKKJfas5uW7lkB6Z8+L77k81HJhMEV7u28Ek3OjE5w6KS4MfUrsznKujN3nNDyCY4v9nNxWnpJrzp05mcpeht9Hs6GdCflp3q5zej+1CvxWoj86xqy5DYdkcnv5XdZy8tTsREc6lsxS+54N04ZY2e5ZxuzzrIxx2VqhmiOZZq4nLIDMxEi71hLjiiUtOZjNvhoWM6ZFUWPuqtixC262zEWzDV0Fxzzzlt0+vS5ezjnOWy6RqTOcML5a\\/dXD5viX7cTHEVGkq8mYzjtR28\\/vvp1ZOXXZq5xxY2wUqcmM03nTLWxLJOvv5Rhy3ZNf5udIJDlvsvQ\\/QfIAAAAAAJQCgBAAAD\\/\\/xAA+EAABAwMDAQUFBQUHBQAAAAABAgMRAAQhBRIxURMUIkFhBhUjMpFSU2JxkiWBgrHBBxYkNUKh0TRAc5PC\\/9oACAEBAAE\\/ALn2G1JDyw5f6cglyIU8RBOYOK032OdUWrYI024uGyS5FzJUArpspHsoTvBttMKm1IC\\/8QU+JP8ABTfsXeIbSBbaYshMAqeJk55hNf3Outg22mlxvBkvTgkY+Srj2FvHVNKaYsGwhcrAuDCvT5KR7D3KyNlhYOxEntyJ+iKPsdddoAGtMDyAoLBfxKuPDsq59ktrTgeY0xoErhwXG0p3fwUx7DXgQ0gsWDjiYKj23MfwUj2QWFgljTCFJEJNx6T9irv2IuloYWlGntoQRvIfPjmB5Ipr2QduV\\/4W001wCOHp8\\/PwelL9hdTQ0qdP01KinCu1MAx6oo+xdwVZsNO+cnD5T6x8lXnsJqTzO1pvTmYXIX2xnaBEfLSP7MvaJwSh2yI9HTV5qCRdOzpvbkON7iFK6YUBxWjX7Cb902+kqt1dmv4qgqCJ4zQ7AFw91ZlxW5eDk0+4y0WUpsmCHFhBxAAo37SAQdMJlWYbUaJZVE2rPXKaZuixvLTTaCRmBS75N05LuheJ4wVqQodMqI45pN+20iB7PkFQkpDcim9SatnSWtEcSFNhW5LRJJBOCP3V3i3KYToJUAsAhTcGNpzk5iKN\\/bp2gaK5BE4aIIMjHP4RTN+bG5S3aaYlIcKQtxCCABkZ\\/KnL51xOxaEFIPBFP362l7EachzgyE4kzTGouOuELsEtkTlSaRqDyE7UpQB0Aq696G7+DqLTbW\\/5FEFUQMcVY+8xdOd5v2nG9q4bQcgzTjwaTvcfCU9SqBVq3qIBJv0rle75ivwmv2gCJumhOAINM97BV2r6VJ8okGgpcHxn60p1TiHEs3KQ5tMGZg8AxWzWEglWoM+YymImijVFJjvraePElMnn1op1RKEJ7+2VgcqEbsRkU3703pKrtlSZkgAjHpQeBVtD4JzgKzirjvXbSi7CEdD5mki9HN+kyDGOvFbNRj\\/rE\\/SmRdhR7W4CkxiBFala6GnUdlym5W8XB8gSUyUitGtNDc1B5Nn3kOhtcqXEESBTzdjcKeYeDqUNOYWIkFComu46JtADrqgmBjfGBFCz0ZTKSh11bZKsjd6Gm7HRxsdQX4JndCjBBApiztn0FTbyyODIg\\/Q0n2Y09KFIG+CZOc44E03baI4wWougn59hCpkeoo2Hs92ThSm5WlKAVABzjHWKXp+jOBp1xi6C1mQkhQICyc8xmKtdL0F51tpntwogFOFpHX\\/5pr2esWXS6jeFkkzJNX+nWYZ+OHFoUqNqRJnmjaaapZlq5mACYoWNisIMuneaY023KJQpxIng1c3Ov95i3Wjsd3Kj5R+dWVzrpuF96W2Gdqtu1WZrtnwSQ6ZPPiq4ev8AansXyPFnI\\/rSn9aSQG3Gto9a7xcffK\\/VQfuIPxlfqrvFx98r9VXD+r75t3mynZELUeZ5xTlxrpSjY4wFbhulZgiTIo3XtCM7rcwDgLOTVvc6gWgX3AlzzCVyK7xcffK\\/VSrl4KIL5GftUu61UrVsuGtmYlWYpq51TcC7ct7ZzCvKhcvnh8n+Krmy1B253tXxab3TtGcRVpZ3zVytx677RsoIDfQ9aIiMjPrVvY3zc77yTvnJ3Y\\/fXYX05ukfoFMtXCVK7R5Kx5CAIoJMGn2nHGylDhQZT4hzAMmha6nEG\\/R\\/6xQttT871vn7ocfWlWmolzcm+SkbYI2A+ZruurBQi\\/aIJlUtjGPKtpq4tmnFlxTW5QwMxiaTaISVFNp82FeMZH1ruLPAtBzM76YYS0iEICJyUzNagnTu\\/S9fvNL7TCEhQztFacixGoPFu9ddd7NW5CkkCMZrUU2irm1Dq3AoERCQQJUIyeCTSEWqgNl88MJAEgQTxjGTNdpYr2rF29ISBuE5A6\\/WothsHfrqV5TTewtiFEjaIJ86TqNgorAfjaATIKYB45p9qzkrOoPoDijPZqEZ6kDjFbbAqB98PkyRPap88xQRpqwhQ1J6WpAO8AxxH5HbTD1iwVqN+6rwiUumduehzTV5ZvKCG7hClHyBBOKuRbpdly4WjccCYBij3Eb5vXMiD46CWUAp7yvnrmmg0fEh5aqvLYpvoa0Jp8bxLpkHgZmtOtUm9dCtFRbt7FQ6ME5GK7stVy6XNLQsNKIbOQQJHBPWu7snxDSFSPMmKSw242lwaOQScpUYNJtWylCjpIGCCmc8jimLRhSPFaFsjG3cTV5YlpwItdKacbUCpSiY8U9JoWr5YbB0duQuVIKhATHl4uaDCsK\\/u9Cv\\/KiRTbG9oqb0MIVnZuWBwMTSbdYaBXoCZCQFAOJP57asrK3dbDrmnBhc4STJilafZqMqYBgzmafsGEAFqySsnnMU3YWxCt1qEQYGZkV3C0HDI+pq9umTflR1xdvCh8ETxHqqtLu2kXzpVrK7o7FyzHy555NJTtffdTduJK1EiE+s5zmKdvlNpBd1BYlUCGhQ1FGxAd1UdpkyEpA8hETSXlBKJvnSpM+LYMyRyKZvkIQQ46tw9doH8q942\\/4vpVw+x2zhOp3DS3CFoTwlIRjAn1zTF0G+dXWuDOUo4mSKTeoMtp15co8KvA3OKsblLIXvvXX0H5dyRiCZzXvG3\\/F9KOo2\\/wCL6VcavYr8IulNkTMUzrFlwX1LKlYxHNe8bf8AF9KvHWRfkHSlvKCx8QFUTArS1sG8cDelLY8C\\/iKChInit34RTd47cD41gqA5AjcIpSrdapOmOfpj160zclxSgbdaI81CAaUspbcUG9xCZAHJr3iuCe4PkiJhODPSYpd4h6O20p9RynKJxQFrvbSnSYQoKCiUREp6esxSn23WypWhrKtklKkcknikag218FvTrgAAkAN4znrTeoKWtKTY3CNxiSnA\\/PNOL2hZCJIkx1pTs792lkndJ85pLomfd0QmQY6cCt34RVyNRXdFTOoJbZ3fLEmP01Zd\\/RcLXc36HGihUICSIP0pCrwIG6+QVddp\\/wCBW+4KSO+JBnBCTxFb7rZHfUbsZ2Gi5c+V23+g0y6sb+0uEqECIBFXSn3Fs9je9mgHxiCSRTqr0uqU1fNhBTwpBMGld+kFOoo4MgtmKSu+2rC75qScEIVgQaJ1CIGoNjIjwEmKZeKWwHbgKXJkgEDnFP3TSJm4SglUAqmu\\/NeWoNUbxlK1BWoIHp0mkXDZQk9vukcic1caW47cLX3rZLgO0KjgRHNWWluMXK3O9KdJQsFJWKdbU2gqWpCB9pSgBQsrpzaoXQkZlEAQodJNdxuhAVcnMj\\/SJmmrK6QslTu5MQE4oW7sKwOOooNKKtoKCrpuE4oaTcob299dgdVJp3TLlawtN0tCggJ5THMzFDTLoAEXrkTPKaY0tbTqXe9uLGfCXAU5ru7vQfUVcWril5Q0RJgKIruKoPwWJIgccUbFwzNuyZEcim7V5I27EJSOAkir46V31wPpeK+1QDGwiduB1rSFaQb97uiXu17NclRwRNP3VrdLetnGnPhLBCgRykj6c0n3WottjtPJKZK4MCKDmmdnB7UCTzu8zSFaWlQUntZBn\\/WcimH2XkKU3uIGMyP5iri3061Drrjbnx3IUQSSJz5cCg5ooaW1ue2KSAUntOJim0aK4obC8TgRucGVEdfzpteiFvbDqQQQUnfifDU6CoHwuwrxR8SMeYFWtpaMw4yleUYlajg+hq7btnUqS+glG7qf6UW7FSsoXJAEyryqbVXIXJzmZpoNBMoSYPrVwrVe8LDLTJb3iCoJ4jJ5qyVqxuV96aYSztVt2xM0DqiXnZLO0rGzdtEiTgRRVqEiG2OevlQN+ZCgyniCM9JrdqOPBb+uaZNwQvtUtjiNpmrrv0I7qWZnxb\\/MekVOrELGy1ScbTMxTQ1MBJdLCjAkDHKs\\/QUg6wAApFqowJMxJoOauVBJYtgIyoLpsOhtAcKCvaNxERNKncfl59KWNRhWxTPzYmOKbOpb0doGNs+KKz+H\\/ar1vT+9uF26fQvtUSEoP2cCRWnCwF+4Grt1x4NrlKk4gmZq6sWblxpalrBR0A6g\\/wBKZesnJCbm5bg7QD4Y6GB19acNmvi\\/dSraBuB8k5ppm2dJDd4+SBB8ZnFISlKI3KMACTzV63ZpfJcv32VubMBUAgdKjTSqRqtxKuPi1v01MK96PSB9uTzup06YLjeu+fDm0wQryUo4pSdJWEzqLpWlJhfaSoTVmhgNqU1cuOoUrlSt0RiBStu45PNPM2b6wpbq5gCOOJ\\/5phu0ZcUUOqk+R8prw9TVyi8F0st6Shz4qYWW4J8PM1YIve9uBWlJYb2KhwIAJPSrn3kl9hLNsVNn5zs9R9MU0zeIAB05CfM7AIkmgL6FfsvjjjNI7+Cr9mlOeopQuwwpabZRc2g7I+omlnUyf8q3Z5JTgVGolofsgBYAwdsc5FJGoFBJ0kT5cCidRj\\/J5HQqTSvekAp0hMkeIEp60lWoJCEjTVRAJggAE80pt3cfhq5+zQ7\\/ABmxz+eKHfipM2JAnJJrs3vu1fpq8u7c3bhOruMfEQS2NwgBPHzxmtNu2Uag8o6q7cEtqlmDCcjOVGkpSh991N06kuKJEJ6mc5zFO3xbSO1v3cqxDSaTqLZQ2lzVFF2TkJSOgiJpLyglE3r5UmfFsTmSORTN8hCCHHHHD1KQD\\/tWoarZHs2++uW7iVbgR54NC\\/QV7TrLwUBwW0J9fP8AOlXrLjhU3q7iTBBjYRyVcTGAaF\\/akob99PFbZIPy+fXqcedd9QVqbOsOhaAmQEoHNMararaRtcU7CQCsRkxzijqLAPC\\/pSnrdalqF9cAqUSAFYAngZpu4t0rbIvH1bYkFUzH7694sdF\\/Srt4C+Wj3Q66O0Se0BVtJ289K01xtV45t0ldv4FfFUDkA8VI6CrsnYiGQrxeuPpTim+0AVpZV1IEjmpHQUCIOBTzja3ldppe\\/bjeUbuFRj+db7dwJ36MvHALaTFKWy2s7NGkFByEAGTIg0txtxAPuQqIIkLSBgyTFdpbqUFnRXN+MltM\\/wA6s1tytCLEsDn5QkGMDilEScDmtwkTa0FJ3Ztf3xUjoP8Asv\\/EAC4RAAECAwcDAwMFAAAAAAAAAAEAAwIRFAQSE1FSkaExQWEQIbEigZIwMlNiwf\\/aAAgBAgEBPwDHCx4VjwoPwrGCxgseFY8KqIVUN3J+8pdbqFpaA6xbEqpazi\\/Eqrs46xnYqob\\/ALfijaWpEzPn6ULWxP2jOxVU1qOyNsYn+\\/grDgl0h2QagyRagyCwoclhQZQ7ItQHtDsg1BksKDSNgi1BpVVBdnKLp4VW3IC7FwqtvTFwha2iZXYuFVt5HeFVTfSUW8KNtahJF2NVrUp3Y+Ebc1pj2VNBdl48KlhKNlgyVE2e3KpYJSP+KKyQEES+FQtjtyqJqUpHdUTWXKw2dY3CwmdfIWGxr5CwmdfIWGxrG4WGzrG4WExr5CwmNfIWEx\\/JyF2+3qOqn5O6+53Uz6FTEuvbNAiXUKYz5QIzCmM+QpjPkIkKYz5UwqeC73lLwsBskTCNnbEvZQ2Vq8DJU7eXwqZvL4RsjPv7FU7flUjOR\\/S\\/\\/8QAKhEAAQIFAwMEAgMAAAAAAAAAAAECAwQRE1ESFFIVQVMwYmORYaExQkP\\/2gAIAQMBAT8Aq01NKtKtKtKtNTTU0qwtPwWYmCzEwWImC1EwWYmCxEwWYmCxFx+zeu4MOoP8MMSfen+TDqD\\/AAwzfP8AGwSff42HUH+GH9G\\/d4mHUX+GH9Fh2ULD8oWH5Q27soWH5QsOyht35abd+UNs\\/LS9K+4vyXa4JHk++svyfyF+Ur\\/cSPKd9ZuJP5C\\/Ke83Ml8hpZk0s5GlnI0M5GlnI0s5GhnI0s5GiHy\\/foqUWhRSiiIpRcFFKKUXBRcFmHXv\\/IstCp3+xsvDXIsvDTJYh\\/ksQ\\/yJLw1ybeHhTbwvd6X\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"DziEQUT1KPzaXWPDn1cU4XDUE5xygHYpWUwG\\/0IWa4rOD0i\\/GzhYxg==\",\"scanLengths\":[13206,86186,33026,46819],\"midQualityFileSha256\":\"UbaiITUUw1PaVsxN0YgaYawyVdWWOTzM\\/lb3shgeOWE=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938797,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:41'),
(6649, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:41'),
(6650, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5D66017BE37717F6519C3FFD62C9A21\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938797,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:41'),
(6651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5D66017BE37717F6519C3FFD62C9A21\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938797,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:41'),
(6652, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:36.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:41'),
(6653, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:42'),
(6654, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5D66017BE37717F6519C3FFD62C9A21\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938797787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:42'),
(6655, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:42'),
(6656, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:42.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:42'),
(6657, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:42'),
(6658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5D66017BE37717F6519C3FFD62C9A21\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770938797787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:43'),
(6659, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:42.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:43'),
(6660, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:37.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:43'),
(6661, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:45.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:46'),
(6662, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:45.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:46'),
(6663, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CCB9F06FD7B97DE2F96180DB8E4079\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938807606,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:47.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:47'),
(6664, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A502183B6C59EF746BB58DF611863737\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938807609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:47.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:47'),
(6665, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E3681C71A85DAA2436028283D753BA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938807602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:47.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:47'),
(6666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A502183B6C59EF746BB58DF611863737\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938807609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:47.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:47'),
(6667, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CCB9F06FD7B97DE2F96180DB8E4079\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938807606,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:47.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:47'),
(6668, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E3681C71A85DAA2436028283D753BA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938807602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:47.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:48'),
(6669, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:49.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:49'),
(6670, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:49.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:50'),
(6671, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:54.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:54'),
(6672, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:54.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:55'),
(6673, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACCB9A91364AF8EEC639019723137D6B\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Manda seu Pix por favor\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UBNSlq8UPsRNMYgK\\/XthbGZLDCBWUPqSiXb934xZAj8=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938814,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:54.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:55'),
(6674, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:55'),
(6675, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACCB9A91364AF8EEC639019723137D6B\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Manda seu Pix por favor\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UBNSlq8UPsRNMYgK\\/XthbGZLDCBWUPqSiXb934xZAj8=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938814,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:54.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:55'),
(6676, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:55'),
(6677, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:56'),
(6678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:56'),
(6679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:56'),
(6680, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:56'),
(6681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:57'),
(6682, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:55.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:26:57'),
(6683, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:59.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:59'),
(6684, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A9E9C28F78C4C62162A\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"LG meu querido\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NSF\\/HgE4bY3Ys3plS3RqCpFB2OJcfjsrrZr8NT\\/BVtM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938819,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:59.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:26:59'),
(6685, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:59.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:00'),
(6686, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A9E9C28F78C4C62162A\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"LG meu querido\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NSF\\/HgE4bY3Ys3plS3RqCpFB2OJcfjsrrZr8NT\\/BVtM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938819,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:26:59.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:00'),
(6687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:00.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:27:00'),
(6688, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:00.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:00'),
(6689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:00.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:27:00'),
(6690, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:00.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:00'),
(6691, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:04.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:27:04'),
(6692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACE36B091D1112219B91617B075081CA\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esqueci de fazer\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iTGbHxQnthHb6\\/+fAMf+rMI3CMZlYKasjJEBvXwxZdY=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938824,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:04.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:27:04'),
(6693, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:04.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:05'),
(6694, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACE36B091D1112219B91617B075081CA\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esqueci de fazer\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iTGbHxQnthHb6\\/+fAMf+rMI3CMZlYKasjJEBvXwxZdY=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770938824,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:04.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:04.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:27:05'),
(6696, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:04.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:05'),
(6697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:05.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:27:05'),
(6698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:27:05.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:27:06'),
(6699, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"presences\":{\"87484876771482@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:09.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:09'),
(6700, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"presences\":{\"87484876771482@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:09.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:09'),
(6701, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:11'),
(6702, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:11'),
(6703, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":false,\"id\":\"AC866F3F41FA29B70987033CE9A2FDF5\"},\"pushName\":\"Livia\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"B+I+jgLrQMvq\\/AirgZA8lTO4TrY6sezFOqXW\\/oA6KSI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:11'),
(6704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfumTekudm_ZapeN0hgSw1usUmRXbDvzwXv1dCXvP4NA&oe=699B7C9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:11'),
(6705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfumTekudm_ZapeN0hgSw1usUmRXbDvzwXv1dCXvP4NA&oe=699B7C9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:12'),
(6706, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"A595551CC12A2A4B06149B4884D95D3D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938892211,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:12.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:12'),
(6707, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:12'),
(6708, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":true,\"id\":\"A595551CC12A2A4B06149B4884D95D3D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:12'),
(6709, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"A595551CC12A2A4B06149B4884D95D3D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938892211,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:12.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:12'),
(6710, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:12'),
(6711, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":true,\"id\":\"A595551CC12A2A4B06149B4884D95D3D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770938891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:12'),
(6712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"pushName\":\"Livia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfumTekudm_ZapeN0hgSw1usUmRXbDvzwXv1dCXvP4NA&oe=699B7C9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:12.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:13'),
(6713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfumTekudm_ZapeN0hgSw1usUmRXbDvzwXv1dCXvP4NA&oe=699B7C9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:12.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:13'),
(6714, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:13.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:13'),
(6715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfumTekudm_ZapeN0hgSw1usUmRXbDvzwXv1dCXvP4NA&oe=699B7C9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:12.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:13'),
(6716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"pushName\":\"Livia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfumTekudm_ZapeN0hgSw1usUmRXbDvzwXv1dCXvP4NA&oe=699B7C9D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:12.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:13'),
(6717, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:13.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:14'),
(6718, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:14.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:14'),
(6719, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0928165432ECEB6B566\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938894,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:14.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:14'),
(6720, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:14.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:14'),
(6721, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":false,\"id\":\"AC866F3F41FA29B70987033CE9A2FDF5\"},\"pushName\":\"Livia\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"B+I+jgLrQMvq\\/AirgZA8lTO4TrY6sezFOqXW\\/oA6KSI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770938891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:11.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:14'),
(6722, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0928165432ECEB6B566\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938894,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:14.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:15'),
(6723, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:15.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:15'),
(6724, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:15.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:15'),
(6725, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:16.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:16'),
(6726, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F0B48E0C0E0A6FCCAF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938896,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:16.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:16'),
(6727, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:16.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:17'),
(6728, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F0B48E0C0E0A6FCCAF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770938896,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:16.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:17'),
(6729, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A3B7A7B7E688D957ED0\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qIuUHwgDXc0sOf0vDqQiMtuNucy5xmGqR42Wd5nLbis=\",\"fileLength\":\"149417\",\"height\":1600,\"width\":900,\"mediaKey\":\"EVp6QoSDbIZz0eYbPLbXryL8gOomrqsdu+fMS1tm96Q=\",\"fileEncSha256\":\"iRwGnvhRjqinnykKwrcBsFMJMbKVVg9rMur8ljNTxck=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770938896\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQGBf\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAwCezJT0qNNtYTfgpDMl6NNXpmmu2spq9jOvj5uqznOHaHHnGvwKOnTtPO56FvY4uajqdbk51W9Mc0RucGwVzN6qhKvrpEq5JCMIoPnRMKQENAAEf\\/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMTEjFBURAUYf\\/aAAgBAgEBPwBQbNbNYsTatDx0XjkxahSxvpHJPpHP8FCiOJpULBXg0NdI+s\\/RzZGYp2OaXkc17LLL+f\\/EABwRAAMBAAIDAAAAAAAAAAAAAAABESECECAwMf\\/aAAgBAwEBPwDzjZGPmk4xPRcnIaRkfS+6OXPR\\/8QALhAAAgIBAwMCBQIHAAAAAAAAAQIAAxEEEiEFEzFBUQYWYXGRFCIVIzAzUoGh\\/9oACAEBAAE\\/AP6IIz5EHJmxs+D+INPYfFbkfaDRXnkUvj7QdM1JwRSf9mW9M1FSFyi4AzjMBc6drhsABxgnmVbrKGsNyIQcYnTtVTpFY3U9zJ8w9b04H8vSKSIPiEtwumQGfMeoztFdYjdf1obG9Y\\/WdbuwL8j6S7X6l8qb3ZT5jH0UnHrGwcbQRKvh28qQxA9uYehXJqUpewDf6z5ZxydQPxNP0JH1FlTWnCjII9Ynw3plUl3ZvtKOm6LuWhkd9p4ETp2jX9w0rfTMor0Fd9q31AFW4j06RQpXToeMjiV6s2f5AGXODqaN1oYhvPtNQ1RTHdVQfXMS01dQxXcrJt5Mt16BlCWoPfMs6lTVbe6FWyB4n8W0r6ZSXAb2lfUdCL7msQHPIzLeuacY2oCoErs1GP7rgSz9SzjcW9hzDXqyMFj+Z27lbG4gn6w1Wk5Lf9nbYMRunaPq07XOMzsj1MFpz4hcsPtDacRyxbjmPvByQQIThszJmYThces5cZOMAxsKPI5gAweY37eRLLWbyciZLHgRkKjJUzJ9pknyJ3WHgzuNO648GG5z5aGxvedxveGxz5Yzc3vNx95\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"dzwr3gB9k9+xbA==\",\"firstScanLength\":11590,\"scansSidecar\":\"dzwr3gB9k9+xbFTYRifixyPP\\/WaHekfbdFRzaJu8jhcjuEO2IsCb5A==\",\"scanLengths\":[11590,55657,21745,60423],\"midQualityFileSha256\":\"ABWHzMlK\\/KOz7CfI4HMz5y1pABshHdzh1zxbFnIjG8M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"34\\/17rBbhDWM1VWQAYJHqGM3XDDRfQkPeZACOfteFts=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770938897,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:18'),
(6730, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:18'),
(6731, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A3B7A7B7E688D957ED0\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qIuUHwgDXc0sOf0vDqQiMtuNucy5xmGqR42Wd5nLbis=\",\"fileLength\":\"149417\",\"height\":1600,\"width\":900,\"mediaKey\":\"EVp6QoSDbIZz0eYbPLbXryL8gOomrqsdu+fMS1tm96Q=\",\"fileEncSha256\":\"iRwGnvhRjqinnykKwrcBsFMJMbKVVg9rMur8ljNTxck=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770938896\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQGBf\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAwCezJT0qNNtYTfgpDMl6NNXpmmu2spq9jOvj5uqznOHaHHnGvwKOnTtPO56FvY4uajqdbk51W9Mc0RucGwVzN6qhKvrpEq5JCMIoPnRMKQENAAEf\\/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMTEjFBURAUYf\\/aAAgBAgEBPwBQbNbNYsTatDx0XjkxahSxvpHJPpHP8FCiOJpULBXg0NdI+s\\/RzZGYp2OaXkc17LLL+f\\/EABwRAAMBAAIDAAAAAAAAAAAAAAABESECECAwMf\\/aAAgBAwEBPwDzjZGPmk4xPRcnIaRkfS+6OXPR\\/8QALhAAAgIBAwMCBQIHAAAAAAAAAQIAAxEEEiEFEzFBUQYWYXGRFCIVIzAzUoGh\\/9oACAEBAAE\\/AP6IIz5EHJmxs+D+INPYfFbkfaDRXnkUvj7QdM1JwRSf9mW9M1FSFyi4AzjMBc6drhsABxgnmVbrKGsNyIQcYnTtVTpFY3U9zJ8w9b04H8vSKSIPiEtwumQGfMeoztFdYjdf1obG9Y\\/WdbuwL8j6S7X6l8qb3ZT5jH0UnHrGwcbQRKvh28qQxA9uYehXJqUpewDf6z5ZxydQPxNP0JH1FlTWnCjII9Ynw3plUl3ZvtKOm6LuWhkd9p4ETp2jX9w0rfTMor0Fd9q31AFW4j06RQpXToeMjiV6s2f5AGXODqaN1oYhvPtNQ1RTHdVQfXMS01dQxXcrJt5Mt16BlCWoPfMs6lTVbe6FWyB4n8W0r6ZSXAb2lfUdCL7msQHPIzLeuacY2oCoErs1GP7rgSz9SzjcW9hzDXqyMFj+Z27lbG4gn6w1Wk5Lf9nbYMRunaPq07XOMzsj1MFpz4hcsPtDacRyxbjmPvByQQIThszJmYThces5cZOMAxsKPI5gAweY37eRLLWbyciZLHgRkKjJUzJ9pknyJ3WHgzuNO648GG5z5aGxvedxveGxz5Yzc3vNx95\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"dzwr3gB9k9+xbA==\",\"firstScanLength\":11590,\"scansSidecar\":\"dzwr3gB9k9+xbFTYRifixyPP\\/WaHekfbdFRzaJu8jhcjuEO2IsCb5A==\",\"scanLengths\":[11590,55657,21745,60423],\"midQualityFileSha256\":\"ABWHzMlK\\/KOz7CfI4HMz5y1pABshHdzh1zxbFnIjG8M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"34\\/17rBbhDWM1VWQAYJHqGM3XDDRfQkPeZACOfteFts=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770938897,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:18'),
(6732, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:18'),
(6733, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:18'),
(6734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:28:19'),
(6735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:19'),
(6736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:28:18.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:28:19'),
(6737, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB0E0BB31D633757177FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938987868,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:29:47.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:29:48'),
(6738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB0813E70D377423B53F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938987881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:29:47.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:29:48'),
(6739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB04259CF48808540204E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938987875,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:29:47.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:29:48'),
(6740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB0E0BB31D633757177FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938987868,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:29:47.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:29:48'),
(6741, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB0813E70D377423B53F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938987881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:29:47.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:29:48'),
(6742, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB04259CF48808540204E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770938987875,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:29:47.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:29:49'),
(6743, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:21.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:22'),
(6744, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:21.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:22'),
(6745, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:27.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:27'),
(6746, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC4118A113BCD1849907D437134B2C0B\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i+29gXM6z\\/fyElf\\/jK3KvhEf8aWSVr7KlAiwb2bdR94=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:27.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:27'),
(6747, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:27.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:27'),
(6748, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:28.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:28'),
(6749, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:28.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:28'),
(6750, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:28.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:28'),
(6751, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:28.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:28'),
(6752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543024587_3783965841736602_2528325941878794453_n.jpg?ccb=11-4&oh=01_Q5Aa3wEi2TGAzdoA1OUx_CM3QvJN-9cu6oR-nAuXfEGlJC5hGw&oe=699B6188&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:28.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:28'),
(6753, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:28.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:29'),
(6754, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:29.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:29'),
(6755, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F6F6D7DD4582CE51ED\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939029,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:29.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:30'),
(6756, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:29.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:30'),
(6757, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F6F6D7DD4582CE51ED\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939029,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:29.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:30'),
(6758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":false,\"id\":\"AC4118A113BCD1849907D437134B2C0B\"},\"pushName\":\"Rodrigo Lima\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1769195199\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i+29gXM6z\\/fyElf\\/jK3KvhEf8aWSVr7KlAiwb2bdR94=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:27.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:30'),
(6759, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:31.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:31'),
(6760, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:31.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:31'),
(6761, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:32.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:32'),
(6762, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0371ED3117711A7DB00\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939032,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:32.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:32'),
(6763, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:32.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6764, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0371ED3117711A7DB00\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939032,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:32.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:32'),
(6765, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5A5EAB3502787E6C49D32ABC3E15D8F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:58.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:58'),
(6766, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:58.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:58'),
(6767, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A5EAB3502787E6C49D32ABC3E15D8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939058225,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:58.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:58'),
(6768, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5A5EAB3502787E6C49D32ABC3E15D8F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:58.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:58'),
(6769, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:58.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:58'),
(6770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:59.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:30:59'),
(6771, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:59.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:59'),
(6772, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A5EAB3502787E6C49D32ABC3E15D8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939058225,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:30:58.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:30:59'),
(6773, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A58F2943FCA91096EF46907209DD6C72\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Iptv smartes player\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939062,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:02'),
(6774, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:02'),
(6775, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:02'),
(6776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A58F2943FCA91096EF46907209DD6C72\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Iptv smartes player\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939062,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:02'),
(6777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:02'),
(6778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:03'),
(6779, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A58F2943FCA91096EF46907209DD6C72\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939062989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:03'),
(6780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A58F2943FCA91096EF46907209DD6C72\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939062989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:02.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:03'),
(6781, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:05'),
(6782, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A574450550B8A815DB1533E1EABF1036\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ver se tem\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:05'),
(6783, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:05'),
(6784, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A574450550B8A815DB1533E1EABF1036\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ver se tem\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:05'),
(6785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A574450550B8A815DB1533E1EABF1036\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939065689,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:05'),
(6786, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A574450550B8A815DB1533E1EABF1036\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939065689,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:06'),
(6787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A58F2943FCA91096EF46907209DD6C72\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939065978,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:06'),
(6788, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A58F2943FCA91096EF46907209DD6C72\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939065978,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:06'),
(6789, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A574450550B8A815DB1533E1EABF1036\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939065983,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:06'),
(6790, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A5EAB3502787E6C49D32ABC3E15D8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939065970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:06'),
(6791, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A574450550B8A815DB1533E1EABF1036\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939065983,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:07'),
(6792, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5A5EAB3502787E6C49D32ABC3E15D8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939065970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:07'),
(6793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:07'),
(6794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:05.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:07'),
(6795, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:15.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:15'),
(6796, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:15.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:15'),
(6797, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:19.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:19'),
(6798, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A9DB531DE7496F4F90F\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"extendedTextMessage\":{\"text\":\"Nessa aba mesmo ?\",\"contextInfo\":{\"stanzaId\":\"3A3B7A7B7E688D957ED0\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qIuUHwgDXc0sOf0vDqQiMtuNucy5xmGqR42Wd5nLbis=\",\"fileLength\":\"149417\",\"height\":1600,\"width\":900,\"mediaKey\":\"EVp6QoSDbIZz0eYbPLbXryL8gOomrqsdu+fMS1tm96Q=\",\"fileEncSha256\":\"iRwGnvhRjqinnykKwrcBsFMJMbKVVg9rMur8ljNTxck=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770938896\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQGBf\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAwCezJT0qNNtYTfgpDMl6NNXpmmu2spq9jOvj5uqznOHaHHnGvwKOnTtPO56FvY4uajqdbk51W9Mc0RucGwVzN6qhKvrpEq5JCMIoPnRMKQENAAEf\\/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMTEjFBURAUYf\\/aAAgBAgEBPwBQbNbNYsTatDx0XjkxahSxvpHJPpHP8FCiOJpULBXg0NdI+s\\/RzZGYp2OaXkc17LLL+f\\/EABwRAAMBAAIDAAAAAAAAAAAAAAABESECECAwMf\\/aAAgBAwEBPwDzjZGPmk4xPRcnIaRkfS+6OXPR\\/8QALhAAAgIBAwMCBQIHAAAAAAAAAQIAAxEEEiEFEzFBUQYWYXGRFCIVIzAzUoGh\\/9oACAEBAAE\\/AP6IIz5EHJmxs+D+INPYfFbkfaDRXnkUvj7QdM1JwRSf9mW9M1FSFyi4AzjMBc6drhsABxgnmVbrKGsNyIQcYnTtVTpFY3U9zJ8w9b04H8vSKSIPiEtwumQGfMeoztFdYjdf1obG9Y\\/WdbuwL8j6S7X6l8qb3ZT5jH0UnHrGwcbQRKvh28qQxA9uYehXJqUpewDf6z5ZxydQPxNP0JH1FlTWnCjII9Ynw3plUl3ZvtKOm6LuWhkd9p4ETp2jX9w0rfTMor0Fd9q31AFW4j06RQpXToeMjiV6s2f5AGXODqaN1oYhvPtNQ1RTHdVQfXMS01dQxXcrJt5Mt16BlCWoPfMs6lTVbe6FWyB4n8W0r6ZSXAb2lfUdCL7msQHPIzLeuacY2oCoErs1GP7rgSz9SzjcW9hzDXqyMFj+Z27lbG4gn6w1Wk5Lf9nbYMRunaPq07XOMzsj1MFpz4hcsPtDacRyxbjmPvByQQIThszJmYThces5cZOMAxsKPI5gAweY37eRLLWbyciZLHgRkKjJUzJ9pknyJ3WHgzuNO648GG5z5aGxvedxveGxz5Yzc3vNx95\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"dzwr3gB9k9+xbA==\",\"firstScanLength\":11590,\"scansSidecar\":\"dzwr3gB9k9+xbFTYRifixyPP\\/WaHekfbdFRzaJu8jhcjuEO2IsCb5A==\",\"scanLengths\":[11590,55657,21745,60423],\"midQualityFileSha256\":\"ABWHzMlK\\/KOz7CfI4HMz5y1pABshHdzh1zxbFnIjG8M=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qSClOrgAfiZ7z8SfGs\\/zl3fO1JZjXjm8ASNESjP0G7c=\"}},\"contextInfo\":{\"stanzaId\":\"3A3B7A7B7E688D957ED0\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qIuUHwgDXc0sOf0vDqQiMtuNucy5xmGqR42Wd5nLbis=\",\"fileLength\":\"149417\",\"height\":1600,\"width\":900,\"mediaKey\":\"EVp6QoSDbIZz0eYbPLbXryL8gOomrqsdu+fMS1tm96Q=\",\"fileEncSha256\":\"iRwGnvhRjqinnykKwrcBsFMJMbKVVg9rMur8ljNTxck=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770938896\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQGBf\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAwCezJT0qNNtYTfgpDMl6NNXpmmu2spq9jOvj5uqznOHaHHnGvwKOnTtPO56FvY4uajqdbk51W9Mc0RucGwVzN6qhKvrpEq5JCMIoPnRMKQENAAEf\\/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMTEjFBURAUYf\\/aAAgBAgEBPwBQbNbNYsTatDx0XjkxahSxvpHJPpHP8FCiOJpULBXg0NdI+s\\/RzZGYp2OaXkc17LLL+f\\/EABwRAAMBAAIDAAAAAAAAAAAAAAABESECECAwMf\\/aAAgBAwEBPwDzjZGPmk4xPRcnIaRkfS+6OXPR\\/8QALhAAAgIBAwMCBQIHAAAAAAAAAQIAAxEEEiEFEzFBUQYWYXGRFCIVIzAzUoGh\\/9oACAEBAAE\\/AP6IIz5EHJmxs+D+INPYfFbkfaDRXnkUvj7QdM1JwRSf9mW9M1FSFyi4AzjMBc6drhsABxgnmVbrKGsNyIQcYnTtVTpFY3U9zJ8w9b04H8vSKSIPiEtwumQGfMeoztFdYjdf1obG9Y\\/WdbuwL8j6S7X6l8qb3ZT5jH0UnHrGwcbQRKvh28qQxA9uYehXJqUpewDf6z5ZxydQPxNP0JH1FlTWnCjII9Ynw3plUl3ZvtKOm6LuWhkd9p4ETp2jX9w0rfTMor0Fd9q31AFW4j06RQpXToeMjiV6s2f5AGXODqaN1oYhvPtNQ1RTHdVQfXMS01dQxXcrJt5Mt16BlCWoPfMs6lTVbe6FWyB4n8W0r6ZSXAb2lfUdCL7msQHPIzLeuacY2oCoErs1GP7rgSz9SzjcW9hzDXqyMFj+Z27lbG4gn6w1Wk5Lf9nbYMRunaPq07XOMzsj1MFpz4hcsPtDacRyxbjmPvByQQIThszJmYThces5cZOMAxsKPI5gAweY37eRLLWbyciZLHgRkKjJUzJ9pknyJ3WHgzuNO648GG5z5aGxvedxveGxz5Yzc3vNx95\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"dzwr3gB9k9+xbA==\",\"firstScanLength\":11590,\"scansSidecar\":\"dzwr3gB9k9+xbFTYRifixyPP\\/WaHekfbdFRzaJu8jhcjuEO2IsCb5A==\",\"scanLengths\":[11590,55657,21745,60423],\"midQualityFileSha256\":\"ABWHzMlK\\/KOz7CfI4HMz5y1pABshHdzh1zxbFnIjG8M=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939079,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:19.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:19'),
(6799, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:19.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:19'),
(6800, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A9DB531DE7496F4F90F\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"extendedTextMessage\":{\"text\":\"Nessa aba mesmo ?\",\"contextInfo\":{\"stanzaId\":\"3A3B7A7B7E688D957ED0\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qIuUHwgDXc0sOf0vDqQiMtuNucy5xmGqR42Wd5nLbis=\",\"fileLength\":\"149417\",\"height\":1600,\"width\":900,\"mediaKey\":\"EVp6QoSDbIZz0eYbPLbXryL8gOomrqsdu+fMS1tm96Q=\",\"fileEncSha256\":\"iRwGnvhRjqinnykKwrcBsFMJMbKVVg9rMur8ljNTxck=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770938896\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQGBf\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAwCezJT0qNNtYTfgpDMl6NNXpmmu2spq9jOvj5uqznOHaHHnGvwKOnTtPO56FvY4uajqdbk51W9Mc0RucGwVzN6qhKvrpEq5JCMIoPnRMKQENAAEf\\/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMTEjFBURAUYf\\/aAAgBAgEBPwBQbNbNYsTatDx0XjkxahSxvpHJPpHP8FCiOJpULBXg0NdI+s\\/RzZGYp2OaXkc17LLL+f\\/EABwRAAMBAAIDAAAAAAAAAAAAAAABESECECAwMf\\/aAAgBAwEBPwDzjZGPmk4xPRcnIaRkfS+6OXPR\\/8QALhAAAgIBAwMCBQIHAAAAAAAAAQIAAxEEEiEFEzFBUQYWYXGRFCIVIzAzUoGh\\/9oACAEBAAE\\/AP6IIz5EHJmxs+D+INPYfFbkfaDRXnkUvj7QdM1JwRSf9mW9M1FSFyi4AzjMBc6drhsABxgnmVbrKGsNyIQcYnTtVTpFY3U9zJ8w9b04H8vSKSIPiEtwumQGfMeoztFdYjdf1obG9Y\\/WdbuwL8j6S7X6l8qb3ZT5jH0UnHrGwcbQRKvh28qQxA9uYehXJqUpewDf6z5ZxydQPxNP0JH1FlTWnCjII9Ynw3plUl3ZvtKOm6LuWhkd9p4ETp2jX9w0rfTMor0Fd9q31AFW4j06RQpXToeMjiV6s2f5AGXODqaN1oYhvPtNQ1RTHdVQfXMS01dQxXcrJt5Mt16BlCWoPfMs6lTVbe6FWyB4n8W0r6ZSXAb2lfUdCL7msQHPIzLeuacY2oCoErs1GP7rgSz9SzjcW9hzDXqyMFj+Z27lbG4gn6w1Wk5Lf9nbYMRunaPq07XOMzsj1MFpz4hcsPtDacRyxbjmPvByQQIThszJmYThces5cZOMAxsKPI5gAweY37eRLLWbyciZLHgRkKjJUzJ9pknyJ3WHgzuNO648GG5z5aGxvedxveGxz5Yzc3vNx95\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"dzwr3gB9k9+xbA==\",\"firstScanLength\":11590,\"scansSidecar\":\"dzwr3gB9k9+xbFTYRifixyPP\\/WaHekfbdFRzaJu8jhcjuEO2IsCb5A==\",\"scanLengths\":[11590,55657,21745,60423],\"midQualityFileSha256\":\"ABWHzMlK\\/KOz7CfI4HMz5y1pABshHdzh1zxbFnIjG8M=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qSClOrgAfiZ7z8SfGs\\/zl3fO1JZjXjm8ASNESjP0G7c=\"}},\"contextInfo\":{\"stanzaId\":\"3A3B7A7B7E688D957ED0\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qIuUHwgDXc0sOf0vDqQiMtuNucy5xmGqR42Wd5nLbis=\",\"fileLength\":\"149417\",\"height\":1600,\"width\":900,\"mediaKey\":\"EVp6QoSDbIZz0eYbPLbXryL8gOomrqsdu+fMS1tm96Q=\",\"fileEncSha256\":\"iRwGnvhRjqinnykKwrcBsFMJMbKVVg9rMur8ljNTxck=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQMMviPRN_QGsqQO4cLk3ullZk2tgQ8-BmrqlPMIgAlDngPnbnDvKcZSlyhtsweCIRsyehziqiDq_DJ5V4sW2LMFPZHBKDgpZTdHqZJIeQ?ccb=9-4&oh=01_Q5Aa3wGljS29DRkCgVcSe0MuP7nzmLZPaOB5QbBZoYeZBEprEQ&oe=69B5CC72&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770938896\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQGBf\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAwCezJT0qNNtYTfgpDMl6NNXpmmu2spq9jOvj5uqznOHaHHnGvwKOnTtPO56FvY4uajqdbk51W9Mc0RucGwVzN6qhKvrpEq5JCMIoPnRMKQENAAEf\\/8QAIBEAAgICAgIDAAAAAAAAAAAAAAECEQMTEjFBURAUYf\\/aAAgBAgEBPwBQbNbNYsTatDx0XjkxahSxvpHJPpHP8FCiOJpULBXg0NdI+s\\/RzZGYp2OaXkc17LLL+f\\/EABwRAAMBAAIDAAAAAAAAAAAAAAABESECECAwMf\\/aAAgBAwEBPwDzjZGPmk4xPRcnIaRkfS+6OXPR\\/8QALhAAAgIBAwMCBQIHAAAAAAAAAQIAAxEEEiEFEzFBUQYWYXGRFCIVIzAzUoGh\\/9oACAEBAAE\\/AP6IIz5EHJmxs+D+INPYfFbkfaDRXnkUvj7QdM1JwRSf9mW9M1FSFyi4AzjMBc6drhsABxgnmVbrKGsNyIQcYnTtVTpFY3U9zJ8w9b04H8vSKSIPiEtwumQGfMeoztFdYjdf1obG9Y\\/WdbuwL8j6S7X6l8qb3ZT5jH0UnHrGwcbQRKvh28qQxA9uYehXJqUpewDf6z5ZxydQPxNP0JH1FlTWnCjII9Ynw3plUl3ZvtKOm6LuWhkd9p4ETp2jX9w0rfTMor0Fd9q31AFW4j06RQpXToeMjiV6s2f5AGXODqaN1oYhvPtNQ1RTHdVQfXMS01dQxXcrJt5Mt16BlCWoPfMs6lTVbe6FWyB4n8W0r6ZSXAb2lfUdCL7msQHPIzLeuacY2oCoErs1GP7rgSz9SzjcW9hzDXqyMFj+Z27lbG4gn6w1Wk5Lf9nbYMRunaPq07XOMzsj1MFpz4hcsPtDacRyxbjmPvByQQIThszJmYThces5cZOMAxsKPI5gAweY37eRLLWbyciZLHgRkKjJUzJ9pknyJ3WHgzuNO648GG5z5aGxvedxveGxz5Yzc3vNx95\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"dzwr3gB9k9+xbA==\",\"firstScanLength\":11590,\"scansSidecar\":\"dzwr3gB9k9+xbFTYRifixyPP\\/WaHekfbdFRzaJu8jhcjuEO2IsCb5A==\",\"scanLengths\":[11590,55657,21745,60423],\"midQualityFileSha256\":\"ABWHzMlK\\/KOz7CfI4HMz5y1pABshHdzh1zxbFnIjG8M=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939079,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:19.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:19'),
(6801, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:19.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:20'),
(6802, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:19.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:20'),
(6803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:20.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:31:20'),
(6804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:31:20.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:31:20'),
(6805, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635111706_1994834014749243_6128831042877221876_n.enc?ccb=11-4&oh=01_Q5Aa3wEQOPxuTebGTCuGLo7GU7N7eEC_68rjyKqUJjiPGfNs1Q&oe=69B5DDC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IzTvbhOt73glQ4KRh3VvlpBYeYx0hA4y7a+e1UTMOFw=\",\"fileLength\":\"16271\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"YaSQqxsaU6RrmaELZzSZKvnw1+8vDTfjdGLLI6hgFL8=\",\"fileEncSha256\":\"lksLbDNSTMKtrKCeXRRmmueGGKPzet8650bvwbmzxxo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635111706_1994834014749243_6128831042877221876_n.enc?ccb=11-4&oh=01_Q5Aa3wEQOPxuTebGTCuGLo7GU7N7eEC_68rjyKqUJjiPGfNs1Q&oe=69B5DDC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939122\",\"waveform\":\"ADInRTA0TUBRTFRdVzxNUU4+NkAHPzw4GSFPQSkKNANAGDZQSEM+NkYPTkYWGFdFTzJUVlhESlBYU1RCIyNNSA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:08'),
(6806, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:08'),
(6807, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635111706_1994834014749243_6128831042877221876_n.enc?ccb=11-4&oh=01_Q5Aa3wEQOPxuTebGTCuGLo7GU7N7eEC_68rjyKqUJjiPGfNs1Q&oe=69B5DDC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IzTvbhOt73glQ4KRh3VvlpBYeYx0hA4y7a+e1UTMOFw=\",\"fileLength\":\"16271\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"YaSQqxsaU6RrmaELZzSZKvnw1+8vDTfjdGLLI6hgFL8=\",\"fileEncSha256\":\"lksLbDNSTMKtrKCeXRRmmueGGKPzet8650bvwbmzxxo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635111706_1994834014749243_6128831042877221876_n.enc?ccb=11-4&oh=01_Q5Aa3wEQOPxuTebGTCuGLo7GU7N7eEC_68rjyKqUJjiPGfNs1Q&oe=69B5DDC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939122\",\"waveform\":\"ADInRTA0TUBRTFRdVzxNUU4+NkAHPzw4GSFPQSkKNANAGDZQSEM+NkYPTkYWGFdFTzJUVlhESlBYU1RCIyNNSA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:09'),
(6808, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:09'),
(6809, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939129159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:09.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:09'),
(6810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:09.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:09'),
(6811, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939129159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:09.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:09'),
(6812, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939129170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:09.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:10'),
(6813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939129170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:09.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:10'),
(6814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:09.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:10'),
(6815, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939132281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:12.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:12'),
(6816, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53323F4457F6FBF48C0CCD1516A500D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939132281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:12.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:12'),
(6817, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:52.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:53'),
(6818, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:52.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:53'),
(6819, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A14B15E73C221ADA5B3\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP1GYFy2wtbx_L5ZVFdxQISqUiotPeoTrOo_LLsOJA5gVjsaaWf9W16Ev-lBo5KAIzSVdtBz-wYTh9FU5vMMzV08xClckSCDLvEk02NQg?ccb=9-4&oh=01_Q5Aa3wF7GHWXfIh0piW-V-q5u-NHPISoxN8qbEBDMxgKd8mxMg&oe=69B5BFE2&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"YZydAJJu6UkvDGXn3azKtFBTVUJosI3zAAUb9sSmgG4=\",\"fileLength\":\"70160\",\"height\":900,\"width\":1600,\"mediaKey\":\"h874qz4V+t452VToxROZRaNhYIwGS2j1BgosFFz6hDw=\",\"fileEncSha256\":\"dHPU7gaKYEfDwiwGkIJ2+ql4j8FA2oXvvaGkAARRBFw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP1GYFy2wtbx_L5ZVFdxQISqUiotPeoTrOo_LLsOJA5gVjsaaWf9W16Ev-lBo5KAIzSVdtBz-wYTh9FU5vMMzV08xClckSCDLvEk02NQg?ccb=9-4&oh=01_Q5Aa3wF7GHWXfIh0piW-V-q5u-NHPISoxN8qbEBDMxgKd8mxMg&oe=69B5BFE2&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939171\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQG\\/8QAGQEBAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADz86z7TFtKcG4wbEYtkC86qLpmiYtKJgCI3nVy5Y13reeeu2e2lRZAh3TnPBleta2TmppasVa3soqxHk1QASAA\\/8QAHREAAgMAAgMAAAAAAAAAAAAAAAECERMSUQMQIP\\/aAAgBAgEBPwDCJhEwiYRMInITv45MTYn6s5CmheRdmkezSPZZZZZZ\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAERIDD\\/2gAIAQMBAT8AhCEIUuKJieVw\\/8QAJBAAAgIBAwQCAwAAAAAAAAAAAAECERMQElEEIDFSAxQwMkH\\/2gAIAQEAAT8AxyMcjHIxyMcjHIxyMcjHL8dFaUV2bVZtSKQ13bVbKX9KRKI0WXrSscU\\/I4rgcSUSSrsabZs8Di+RxfI4vklF8j1zwv8AZH2IeyH1EPYl1EPax9RHkl88WZEZI8mRFlllllll6f\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"nKHxfHzXks37qw==\",\"firstScanLength\":7831,\"scansSidecar\":\"nKHxfHzXks37q9wvupwLiB+vMl6+9\\/jaWA4qO0Y\\/gnqbwq3taPC2Nw==\",\"scanLengths\":[7831,25708,10068,26551],\"midQualityFileSha256\":\"bS6WChpAgGSIl+O3rNsj92ShuyOGXBUFpo0FDALM5AQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u6nxZuJDfcCMkxE+c8hUbH7+aB7dhJKsFBR9QJYjDM4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939172,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:52.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:53'),
(6820, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A14B15E73C221ADA5B3\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP1GYFy2wtbx_L5ZVFdxQISqUiotPeoTrOo_LLsOJA5gVjsaaWf9W16Ev-lBo5KAIzSVdtBz-wYTh9FU5vMMzV08xClckSCDLvEk02NQg?ccb=9-4&oh=01_Q5Aa3wF7GHWXfIh0piW-V-q5u-NHPISoxN8qbEBDMxgKd8mxMg&oe=69B5BFE2&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"YZydAJJu6UkvDGXn3azKtFBTVUJosI3zAAUb9sSmgG4=\",\"fileLength\":\"70160\",\"height\":900,\"width\":1600,\"mediaKey\":\"h874qz4V+t452VToxROZRaNhYIwGS2j1BgosFFz6hDw=\",\"fileEncSha256\":\"dHPU7gaKYEfDwiwGkIJ2+ql4j8FA2oXvvaGkAARRBFw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQP1GYFy2wtbx_L5ZVFdxQISqUiotPeoTrOo_LLsOJA5gVjsaaWf9W16Ev-lBo5KAIzSVdtBz-wYTh9FU5vMMzV08xClckSCDLvEk02NQg?ccb=9-4&oh=01_Q5Aa3wF7GHWXfIh0piW-V-q5u-NHPISoxN8qbEBDMxgKd8mxMg&oe=69B5BFE2&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939171\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQG\\/8QAGQEBAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADz86z7TFtKcG4wbEYtkC86qLpmiYtKJgCI3nVy5Y13reeeu2e2lRZAh3TnPBleta2TmppasVa3soqxHk1QASAA\\/8QAHREAAgMAAgMAAAAAAAAAAAAAAAECERMSUQMQIP\\/aAAgBAgEBPwDCJhEwiYRMInITv45MTYn6s5CmheRdmkezSPZZZZZZ\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAERIDD\\/2gAIAQMBAT8AhCEIUuKJieVw\\/8QAJBAAAgIBAwQCAwAAAAAAAAAAAAECERMQElEEIDFSAxQwMkH\\/2gAIAQEAAT8AxyMcjHIxyMcjHIxyMcjHL8dFaUV2bVZtSKQ13bVbKX9KRKI0WXrSscU\\/I4rgcSUSSrsabZs8Di+RxfI4vklF8j1zwv8AZH2IeyH1EPYl1EPax9RHkl88WZEZI8mRFlllllll6f\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"nKHxfHzXks37qw==\",\"firstScanLength\":7831,\"scansSidecar\":\"nKHxfHzXks37q9wvupwLiB+vMl6+9\\/jaWA4qO0Y\\/gnqbwq3taPC2Nw==\",\"scanLengths\":[7831,25708,10068,26551],\"midQualityFileSha256\":\"bS6WChpAgGSIl+O3rNsj92ShuyOGXBUFpo0FDALM5AQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u6nxZuJDfcCMkxE+c8hUbH7+aB7dhJKsFBR9QJYjDM4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939172,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:52.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:53.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:53'),
(6822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:53.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:53'),
(6823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:53.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:32:54'),
(6824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:32:53.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:32:54'),
(6825, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A59CA5D1293A87FE922AB3D584552264\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634605417_1231781738436321_6944166647892266980_n.enc?ccb=11-4&oh=01_Q5Aa3wGA0tjyVAdmsvlgIkic2-uufErkEbPeUtjSWLJaahxlIA&oe=69B5DBEA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JkI2uwEusDX9NPCbaE0u\\/x0yySZmbrUnEPKgOZn38Dc=\",\"fileLength\":\"6520\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"C6VoN9RN0GhO7tSbMBud3l\\/5BPyAjDXvysZwKwf2o3o=\",\"fileEncSha256\":\"Jj6Cwq73V++5IWcCe0mMa0sayI5t5SjaCFd1xcgu6xM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634605417_1231781738436321_6944166647892266980_n.enc?ccb=11-4&oh=01_Q5Aa3wGA0tjyVAdmsvlgIkic2-uufErkEbPeUtjSWLJaahxlIA&oe=69B5DBEA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939246\",\"waveform\":\"ACgyMSYbQ1VdYWNhVFtbW1xaU05WW1A4TE9MT1laWjsgDQxEQicyUVNJQS4dExI+QkFBQ0JCPy0kMkZHLyEdGQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939248,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:08.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:09'),
(6826, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:08.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:09'),
(6827, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:08.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:09'),
(6828, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A59CA5D1293A87FE922AB3D584552264\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634605417_1231781738436321_6944166647892266980_n.enc?ccb=11-4&oh=01_Q5Aa3wGA0tjyVAdmsvlgIkic2-uufErkEbPeUtjSWLJaahxlIA&oe=69B5DBEA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JkI2uwEusDX9NPCbaE0u\\/x0yySZmbrUnEPKgOZn38Dc=\",\"fileLength\":\"6520\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"C6VoN9RN0GhO7tSbMBud3l\\/5BPyAjDXvysZwKwf2o3o=\",\"fileEncSha256\":\"Jj6Cwq73V++5IWcCe0mMa0sayI5t5SjaCFd1xcgu6xM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634605417_1231781738436321_6944166647892266980_n.enc?ccb=11-4&oh=01_Q5Aa3wGA0tjyVAdmsvlgIkic2-uufErkEbPeUtjSWLJaahxlIA&oe=69B5DBEA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939246\",\"waveform\":\"ACgyMSYbQ1VdYWNhVFtbW1xaU05WW1A4TE9MT1laWjsgDQxEQicyUVNJQS4dExI+QkFBQ0JCPy0kMkZHLyEdGQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939248,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:08.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:09'),
(6829, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59CA5D1293A87FE922AB3D584552264\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939249116,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:09.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:09'),
(6830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:09.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:09'),
(6831, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59CA5D1293A87FE922AB3D584552264\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939249116,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:09.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:09'),
(6832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:09.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:09'),
(6833, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59CA5D1293A87FE922AB3D584552264\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939255324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:15.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:15'),
(6834, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59CA5D1293A87FE922AB3D584552264\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939255324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:15.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:15'),
(6835, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59CA5D1293A87FE922AB3D584552264\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939256269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:16.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:16'),
(6836, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59CA5D1293A87FE922AB3D584552264\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939256269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:16.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:16'),
(6837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:17'),
(6838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635105944_1396617741936565_1702710449503587785_n.enc?ccb=11-4&oh=01_Q5Aa3wFC7epPcavKtGPSd-s0-emRkWDmkQHMJQzS9a6ShmOKWQ&oe=69B5E1AB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bVG2GcArYv4FouZTrgUaXJ9W5Ft3Ze85qH6N9xgfDUw=\",\"fileLength\":\"14192\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"4s1MqGp9xWC7PRvLdzsrwQs8E2be6PRrtFbj5vsgEwc=\",\"fileEncSha256\":\"MlQA4FG5b2qBtzZmjHJQ2htTGQxieOTHzjgyBI34zB4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635105944_1396617741936565_1702710449503587785_n.enc?ccb=11-4&oh=01_Q5Aa3wFC7epPcavKtGPSd-s0-emRkWDmkQHMJQzS9a6ShmOKWQ&oe=69B5E1AB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939252\",\"waveform\":\"AAJDYk5KO1tMV01PWiwOWlg0PzY\\/VkpUVUhfKztSSFNNSDBEPk1XVSpBRFtMSVRTTzRBSEcpTUJJSDIyQEhRKg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939257,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:17'),
(6839, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:17'),
(6840, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635105944_1396617741936565_1702710449503587785_n.enc?ccb=11-4&oh=01_Q5Aa3wFC7epPcavKtGPSd-s0-emRkWDmkQHMJQzS9a6ShmOKWQ&oe=69B5E1AB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bVG2GcArYv4FouZTrgUaXJ9W5Ft3Ze85qH6N9xgfDUw=\",\"fileLength\":\"14192\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"4s1MqGp9xWC7PRvLdzsrwQs8E2be6PRrtFbj5vsgEwc=\",\"fileEncSha256\":\"MlQA4FG5b2qBtzZmjHJQ2htTGQxieOTHzjgyBI34zB4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635105944_1396617741936565_1702710449503587785_n.enc?ccb=11-4&oh=01_Q5Aa3wFC7epPcavKtGPSd-s0-emRkWDmkQHMJQzS9a6ShmOKWQ&oe=69B5E1AB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939252\",\"waveform\":\"AAJDYk5KO1tMV01PWiwOWlg0PzY\\/VkpUVUhfKztSSFNNSDBEPk1XVSpBRFtMSVRTTzRBSEcpTUJJSDIyQEhRKg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939257,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:17'),
(6841, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939257853,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:17'),
(6842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939257853,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:18'),
(6843, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939257864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:18'),
(6844, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:18'),
(6845, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939257864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:18'),
(6846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:17.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:18'),
(6847, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B5B918BF255A69A102DB515DDACCD1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939259772,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:19.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:19'),
(6848, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:19.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:19'),
(6849, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A53832E11662BB390914218301716286\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635148660_2019646708768014_8145081419693325415_n.enc?ccb=11-4&oh=01_Q5Aa3wH1pNG7cEZjKiX-SbiiBXp4dQ53chTlSWxGsaoEGuvL2w&oe=69B5B92C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"abKzrgYP0P\\/p4J2OxhYEdZ\\/C5oLzM8lA5Jaw9D3Z9z8=\",\"fileLength\":\"2569\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"WGQsDcSyqWl401fiR6H5NPGsm3876x\\/x\\/AA6c0CTY7U=\",\"fileEncSha256\":\"iLYsYlqcw8KZ05XXXM7s21MIab96+4jhQOS2not9olE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635148660_2019646708768014_8145081419693325415_n.enc?ccb=11-4&oh=01_Q5Aa3wH1pNG7cEZjKiX-SbiiBXp4dQ53chTlSWxGsaoEGuvL2w&oe=69B5B92C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939259\",\"waveform\":\"AA0aKCsuMTExMS4qJygrLTI3PUVOV1FDNjI0Nz9MWWBgYF1VTk1UW19cWlhVUk1BNiwqJyQcFBAlOkxLSkhLTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939259,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:19.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:19'),
(6851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:19.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:20'),
(6852, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A53832E11662BB390914218301716286\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635148660_2019646708768014_8145081419693325415_n.enc?ccb=11-4&oh=01_Q5Aa3wH1pNG7cEZjKiX-SbiiBXp4dQ53chTlSWxGsaoEGuvL2w&oe=69B5B92C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"abKzrgYP0P\\/p4J2OxhYEdZ\\/C5oLzM8lA5Jaw9D3Z9z8=\",\"fileLength\":\"2569\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"WGQsDcSyqWl401fiR6H5NPGsm3876x\\/x\\/AA6c0CTY7U=\",\"fileEncSha256\":\"iLYsYlqcw8KZ05XXXM7s21MIab96+4jhQOS2not9olE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635148660_2019646708768014_8145081419693325415_n.enc?ccb=11-4&oh=01_Q5Aa3wH1pNG7cEZjKiX-SbiiBXp4dQ53chTlSWxGsaoEGuvL2w&oe=69B5B92C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939259\",\"waveform\":\"AA0aKCsuMTExMS4qJygrLTI3PUVOV1FDNjI0Nz9MWWBgYF1VTk1UW19cWlhVUk1BNiwqJyQcFBAlOkxLSkhLTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939259,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:19.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:20'),
(6853, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53832E11662BB390914218301716286\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939260379,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:20.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:20'),
(6854, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53832E11662BB390914218301716286\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939260393,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:20.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:20'),
(6855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:20.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:20'),
(6856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:20.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:21'),
(6857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53832E11662BB390914218301716286\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939260393,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:20.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:21'),
(6858, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53832E11662BB390914218301716286\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939260379,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:20.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:21'),
(6859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53832E11662BB390914218301716286\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939266483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:26.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:26'),
(6860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A53832E11662BB390914218301716286\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939266483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:26.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:26'),
(6861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:27.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:27'),
(6862, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A50159203F8088B5541A96282B7D611A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939267,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:27.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:27'),
(6863, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:27.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:27'),
(6864, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A50159203F8088B5541A96282B7D611A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939267,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:27.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:27'),
(6865, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A50159203F8088B5541A96282B7D611A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939267835,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:27.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:27'),
(6866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:28.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:28'),
(6867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:28.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:28'),
(6868, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A50159203F8088B5541A96282B7D611A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939267835,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:27.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:28'),
(6869, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:29'),
(6870, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A57AA942681C2D323928AC409D44CB63\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDGEOQTH4T\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770939268,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:29'),
(6871, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:29'),
(6872, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A57AA942681C2D323928AC409D44CB63\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDGEOQTH4T\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770939268,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:29'),
(6873, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:29'),
(6874, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:30'),
(6875, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:30.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:30'),
(6876, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A57AA942681C2D323928AC409D44CB63\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939269297,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:30'),
(6877, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:30'),
(6878, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:30.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:30'),
(6879, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A57AA942681C2D323928AC409D44CB63\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939269297,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:31'),
(6880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:29.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:31'),
(6881, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:31.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:31'),
(6882, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F7FE564AFA6CE4CBF3616B7A5BBA40\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Gb65gns5UPsTywLkPSFYY69TUJcZlqQ+6nM8j2LRwo4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939271,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:31.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:31'),
(6883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:31.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:31'),
(6884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:32.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:32'),
(6885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:32.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:32'),
(6886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:32.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:32'),
(6887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:32.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:32'),
(6888, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:32.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:32'),
(6889, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:32.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:33'),
(6890, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:33.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:33'),
(6891, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB075825472FBC6351D84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939273,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:33.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6892, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:33.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:34'),
(6893, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB075825472FBC6351D84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939273,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:33.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:34'),
(6894, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F7FE564AFA6CE4CBF3616B7A5BBA40\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Gb65gns5UPsTywLkPSFYY69TUJcZlqQ+6nM8j2LRwo4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939271,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:31.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:34'),
(6895, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:34.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:34'),
(6896, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:34.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:34'),
(6897, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:34.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:35'),
(6898, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:34.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:35'),
(6899, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:36.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:36'),
(6900, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0002BC144DC464C114D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939275,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:36.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:36'),
(6901, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:36.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:36'),
(6902, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0002BC144DC464C114D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939275,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:36.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:36'),
(6903, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:36.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:36'),
(6904, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:36.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:37'),
(6905, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:37.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:37'),
(6906, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:37.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:37'),
(6907, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5272403BB6A6AAA363397717588559A\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/parar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PIbTgjQJJ10qpDkehWkLtt0wsBi+FcoWiyaXhz3y\\/r4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:38.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:38'),
(6908, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:38.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:38'),
(6909, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:38.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:38'),
(6910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:38.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:39'),
(6911, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:38.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:39'),
(6912, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:39.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:39'),
(6913, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:39.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:39'),
(6914, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:39.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:39'),
(6915, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:39.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:40'),
(6916, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:40.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:40'),
(6917, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05AD09897996FC65C38\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939280,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:40.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:40'),
(6918, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:40.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:41'),
(6919, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5272403BB6A6AAA363397717588559A\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/parar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PIbTgjQJJ10qpDkehWkLtt0wsBi+FcoWiyaXhz3y\\/r4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:38.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:41'),
(6920, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05AD09897996FC65C38\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939280,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:40.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:41'),
(6921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:41.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:42'),
(6922, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:41.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:42'),
(6923, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:43.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:43'),
(6924, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D8D23A1CD95B837DB8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939282,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:43.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:43'),
(6925, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:43.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:43'),
(6926, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D8D23A1CD95B837DB8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939282,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:43.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:43'),
(6927, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:47'),
(6928, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A577AA28E783AE1B156\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/588683394_1552390479162408_3791690115990193900_n.enc?ccb=11-4&oh=01_Q5Aa3wFF4a4V6sSrGxRaam-BjGEojyWAVKtt0f8pjix6r__KQA&oe=69B5DF44&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"2HAqTo5++\\/AKy8ouUluremp0CKUgX2onB7f4KVRSbi8=\",\"fileLength\":\"1047277\",\"seconds\":6,\"mediaKey\":\"XnJ1N\\/vV8wpEokIb7YgeL1jL\\/HkwbPw\\/M2Ej+4GMf3Y=\",\"height\":848,\"width\":480,\"fileEncSha256\":\"8aQqLfrU0nPtJsooEEQt+2kDfP\\/GdLIc12FmFZjRE5U=\",\"directPath\":\"\\/v\\/t62.7161-24\\/588683394_1552390479162408_3791690115990193900_n.enc?ccb=11-4&oh=01_Q5Aa3wFF4a4V6sSrGxRaam-BjGEojyWAVKtt0f8pjix6r__KQA&oe=69B5DF44&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939285\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAMBAgQF\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAAECAwUE\\/9oADAMBAAIQAxAAAADgw9PUus9b+JUtEd0k8jpc3RgASjtx0tj2dx69HCk1snTeLDpzacACtNnKZdnStyyJ0K4iZqjKM0mYTgbFYsaAolzSR8DQNAdIVsQDJYDTmBF0AH\\/\\/xAAhEQACAgEDBQEAAAAAAAAAAAAAAQIRAxIhMQQQEzJRM\\/\\/aAAgBAgEBPwDUZk5ZHR0+2NGJ1ElOhKjM35HRg\\/NEPVE3uWxpN20KTRrl9NT+lllll9kPkfIj\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARAxAAJA\\/9oACAEDAQE\\/AGAza4Zb4f\\/EACsQAAECBAUCBQUAAAAAAAAAAAEAAgMEEVEQEhMhMSRBBSAiUmEUMlNxkf\\/aAAgBAQABPwAvceSUCpEdOEQmjfCeOWXd84xYTm8tqLhEdwpEdO1Fq4BKzu9q8RedADuTh2U3OQ3wRChDbuUPtUgOnb+kQiEV4m71NbiCq1Xh46ZqIURwG1QEYjRy4KeeHxttwBhQoaPsKrB\\/Gf6oc86G3KwUC+vimyfMOeakhapuEXA9wtrqtVmN1mN1mN1mN1U3VTdVN1U3VTfy1QPk0TdaJutA3Rgm4TWlzsoFSnQ4MPZziXfHZNlieDsjLvRguFceAozSz1VUscsQGvKjsBhlwFFLHNBBVE8U3sv\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"9BdypAlCo9Iio1gZF2y+BdQtmaCQKv4qpB7S1tZ304pmW7VRPWgnLf0FEVt9Us3pX\\/LC4dXnA0Ily+iyvaIRU3Mf6+LbB5ZMWmQ82OKR7iyF1PjNX9Tnxw2UfCXhq7Gqp8nNxU\\/pSdzHUOb\\/7MhrZc3YShgDSb0RBDGSL1BfHb\\/H45rZvqfzxfyleRop+91RltSOy4f7D7w2GaRzbvPFmA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zZ3VwLtJoF7zqkjCJrcrFPJJJQxg9c319cSY2S3OIdU=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1770939287,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:47'),
(6929, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:47'),
(6930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A577AA28E783AE1B156\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/588683394_1552390479162408_3791690115990193900_n.enc?ccb=11-4&oh=01_Q5Aa3wFF4a4V6sSrGxRaam-BjGEojyWAVKtt0f8pjix6r__KQA&oe=69B5DF44&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"2HAqTo5++\\/AKy8ouUluremp0CKUgX2onB7f4KVRSbi8=\",\"fileLength\":\"1047277\",\"seconds\":6,\"mediaKey\":\"XnJ1N\\/vV8wpEokIb7YgeL1jL\\/HkwbPw\\/M2Ej+4GMf3Y=\",\"height\":848,\"width\":480,\"fileEncSha256\":\"8aQqLfrU0nPtJsooEEQt+2kDfP\\/GdLIc12FmFZjRE5U=\",\"directPath\":\"\\/v\\/t62.7161-24\\/588683394_1552390479162408_3791690115990193900_n.enc?ccb=11-4&oh=01_Q5Aa3wFF4a4V6sSrGxRaam-BjGEojyWAVKtt0f8pjix6r__KQA&oe=69B5DF44&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939285\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAMBAgQF\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAAECAwUE\\/9oADAMBAAIQAxAAAADgw9PUus9b+JUtEd0k8jpc3RgASjtx0tj2dx69HCk1snTeLDpzacACtNnKZdnStyyJ0K4iZqjKM0mYTgbFYsaAolzSR8DQNAdIVsQDJYDTmBF0AH\\/\\/xAAhEQACAgEDBQEAAAAAAAAAAAAAAQIRAxIhMQQQEzJRM\\/\\/aAAgBAgEBPwDUZk5ZHR0+2NGJ1ElOhKjM35HRg\\/NEPVE3uWxpN20KTRrl9NT+lllll9kPkfIj\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARAxAAJA\\/9oACAEDAQE\\/AGAza4Zb4f\\/EACsQAAECBAUCBQUAAAAAAAAAAAEAAgMEEVEQEhMhMSRBBSAiUmEUMlNxkf\\/aAAgBAQABPwAvceSUCpEdOEQmjfCeOWXd84xYTm8tqLhEdwpEdO1Fq4BKzu9q8RedADuTh2U3OQ3wRChDbuUPtUgOnb+kQiEV4m71NbiCq1Xh46ZqIURwG1QEYjRy4KeeHxttwBhQoaPsKrB\\/Gf6oc86G3KwUC+vimyfMOeakhapuEXA9wtrqtVmN1mN1mN1mN1U3VTdVN1U3VTfy1QPk0TdaJutA3Rgm4TWlzsoFSnQ4MPZziXfHZNlieDsjLvRguFceAozSz1VUscsQGvKjsBhlwFFLHNBBVE8U3sv\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"9BdypAlCo9Iio1gZF2y+BdQtmaCQKv4qpB7S1tZ304pmW7VRPWgnLf0FEVt9Us3pX\\/LC4dXnA0Ily+iyvaIRU3Mf6+LbB5ZMWmQ82OKR7iyF1PjNX9Tnxw2UfCXhq7Gqp8nNxU\\/pSdzHUOb\\/7MhrZc3YShgDSb0RBDGSL1BfHb\\/H45rZvqfzxfyleRop+91RltSOy4f7D7w2GaRzbvPFmA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zZ3VwLtJoF7zqkjCJrcrFPJJJQxg9c319cSY2S3OIdU=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1770939287,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:47'),
(6931, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:47'),
(6932, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:48'),
(6933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:34:48'),
(6934, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:34:47.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:34:48'),
(6935, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:13.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:14'),
(6936, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:13.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:14'),
(6937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:17.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:17'),
(6938, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:17.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:17'),
(6939, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC722FD937A158EB80B0BB9A06CCA4F1\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual valor ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LSvbQ6DRxmgFWi0oFWWs0UXRnMxLCJkoKEqxpqkQZ4w=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:17.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:17'),
(6940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:17.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:18'),
(6941, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC722FD937A158EB80B0BB9A06CCA4F1\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual valor ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LSvbQ6DRxmgFWi0oFWWs0UXRnMxLCJkoKEqxpqkQZ4w=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:17.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:18'),
(6942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:17.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:18'),
(6943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:18.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:18'),
(6944, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:18.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:18'),
(6945, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:19.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:19'),
(6946, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:19.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:19'),
(6947, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:21.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:21'),
(6948, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:21.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:22'),
(6949, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:22.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:22'),
(6950, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:22.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:22'),
(6951, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:32.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:32'),
(6952, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:32.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:32'),
(6953, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:32.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:32'),
(6954, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC591F7460D1958D49FB3DE941057799\"},\"pushName\":\"Marcos\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XBWGTyfzwMIiSdmT7IKUp\\/UXjAffGIhhSRx4knQHs1M=\",\"fileLength\":\"21919\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"eLoBuTSQ0FSnLSVNUlDdADL1oqS5MTy2HYvI8l5k55s=\",\"fileEncSha256\":\"bxevBMxUSsXP3xfTT7\\/5LhYyatcFvJ3UvpliHpQOIQw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939384\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AABTUkNGQUNLSEwUWFRKSTEAAAAAPlRWVEVATVlFTVRaV1FKPSZXWkVBOk5HWU9KWh0POClYOEJSWUNXNBAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FAGw77C+r3IZBW8GZUMNhuriyBX1\\/tMXdU4PArUjEp8=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939392,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:32.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:32'),
(6955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC591F7460D1958D49FB3DE941057799\"},\"pushName\":\"Marcos\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XBWGTyfzwMIiSdmT7IKUp\\/UXjAffGIhhSRx4knQHs1M=\",\"fileLength\":\"21919\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"eLoBuTSQ0FSnLSVNUlDdADL1oqS5MTy2HYvI8l5k55s=\",\"fileEncSha256\":\"bxevBMxUSsXP3xfTT7\\/5LhYyatcFvJ3UvpliHpQOIQw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939384\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AABTUkNGQUNLSEwUWFRKSTEAAAAAPlRWVEVATVlFTVRaV1FKPSZXWkVBOk5HWU9KWh0POClYOEJSWUNXNBAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FAGw77C+r3IZBW8GZUMNhuriyBX1\\/tMXdU4PArUjEp8=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939392,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:32.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:33'),
(6956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:32.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:33'),
(6957, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:33.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:33'),
(6958, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:33.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(6959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:33.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:36:33'),
(6960, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:36:33.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:36:34'),
(6961, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52AA36A5C546344681694937B659762\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939440058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:20'),
(6962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52AA36A5C546344681694937B659762\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939440070,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:20'),
(6963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52AA36A5C546344681694937B659762\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939440058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:20'),
(6964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52AA36A5C546344681694937B659762\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939440070,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:20'),
(6965, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:21'),
(6966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"554189045018@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:21'),
(6967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A52AA36A5C546344681694937B659762\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635043655_1206933454482671_106118882430586745_n.enc?ccb=11-4&oh=01_Q5Aa3wE2EqbFHB5J6SkYVb4MMb3oTVpNQH_a2qJnL2oXdiYljw&oe=69B5CA7E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"3ghZJsKw6tFI\\/+Y6dxD4qF\\/vaenUq5AX9MVmA8b66vs=\",\"fileLength\":\"31570\",\"height\":800,\"width\":1280,\"mediaKey\":\"Wj2EuzGjPv9PfAbrHE3FG5Ad\\/yEK0+As3sQ7imef0kk=\",\"fileEncSha256\":\"Z7EKqOHndPbS\\/1TuWOykiGcvRSp4lbHrF1G3FB\\/IbhQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635043655_1206933454482671_106118882430586745_n.enc?ccb=11-4&oh=01_Q5Aa3wE2EqbFHB5J6SkYVb4MMb3oTVpNQH_a2qJnL2oXdiYljw&oe=69B5CA7E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939437\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACwASAMBIgACEQEDEQH\\/xAAxAAACAwEBAAAAAAAAAAAAAAAAAQIDBQQGAQEBAQEBAQAAAAAAAAAAAAAAAQIEAwX\\/2gAMAwEAAhADEAAAAPMgE9fI1e6yrnT1M6LXyIF5FAA9HOt996FfKt5pTXLNY4w5QB9HP0jnGS8SaQAP\\/8QAIRAAAQQBBAMBAAAAAAAAAAAAAQACAzEQBBEhMhIgQRP\\/2gAIAQEAAT8AxH3agEU7hO7H1Z3CDgcSHxtGzhkBfE+TfrkWo6CdyRypyCUbxpmA6DUOyF+jkJPv1AklOs4jlDYJGb3kWvEIALYJ1n1FhFDDrOf\\/xAAiEQABAgQHAQAAAAAAAAAAAAABAAIDESExBBASIjAyUXH\\/2gAIAQIBAT8AWE6u+p0jSdUbnOE8Nv6jG3auD\\/\\/EABsRAAICAwEAAAAAAAAAAAAAAAECABIRIDBh\\/9oACAEDAQE\\/AINUetvRC2Vrw\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"5tZyiNdZeizke2zvX9jceY38iIk5Dalg\\/lUnoyh\\/sgXXxbusXsgb0g==\",\"scanLengths\":[5391,17006,3530,5643],\"midQualityFileSha256\":\"vS8VpT17euyKB8gtVDahi27tXv9dJKA4TDOgbBkNp08=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939440,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:21'),
(6968, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A52AA36A5C546344681694937B659762\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635043655_1206933454482671_106118882430586745_n.enc?ccb=11-4&oh=01_Q5Aa3wE2EqbFHB5J6SkYVb4MMb3oTVpNQH_a2qJnL2oXdiYljw&oe=69B5CA7E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"3ghZJsKw6tFI\\/+Y6dxD4qF\\/vaenUq5AX9MVmA8b66vs=\",\"fileLength\":\"31570\",\"height\":800,\"width\":1280,\"mediaKey\":\"Wj2EuzGjPv9PfAbrHE3FG5Ad\\/yEK0+As3sQ7imef0kk=\",\"fileEncSha256\":\"Z7EKqOHndPbS\\/1TuWOykiGcvRSp4lbHrF1G3FB\\/IbhQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635043655_1206933454482671_106118882430586745_n.enc?ccb=11-4&oh=01_Q5Aa3wE2EqbFHB5J6SkYVb4MMb3oTVpNQH_a2qJnL2oXdiYljw&oe=69B5CA7E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939437\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACwASAMBIgACEQEDEQH\\/xAAxAAACAwEBAAAAAAAAAAAAAAAAAQIDBQQGAQEBAQEBAQAAAAAAAAAAAAAAAQIEAwX\\/2gAMAwEAAhADEAAAAPMgE9fI1e6yrnT1M6LXyIF5FAA9HOt996FfKt5pTXLNY4w5QB9HP0jnGS8SaQAP\\/8QAIRAAAQQBBAMBAAAAAAAAAAAAAQACAzEQBBEhMhIgQRP\\/2gAIAQEAAT8AxH3agEU7hO7H1Z3CDgcSHxtGzhkBfE+TfrkWo6CdyRypyCUbxpmA6DUOyF+jkJPv1AklOs4jlDYJGb3kWvEIALYJ1n1FhFDDrOf\\/xAAiEQABAgQHAQAAAAAAAAAAAAABAAIDESExBBASIjAyUXH\\/2gAIAQIBAT8AWE6u+p0jSdUbnOE8Nv6jG3auD\\/\\/EABsRAAICAwEAAAAAAAAAAAAAAAECABIRIDBh\\/9oACAEDAQE\\/AINUetvRC2Vrw\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"5tZyiNdZeizke2zvX9jceY38iIk5Dalg\\/lUnoyh\\/sgXXxbusXsgb0g==\",\"scanLengths\":[5391,17006,3530,5643],\"midQualityFileSha256\":\"vS8VpT17euyKB8gtVDahi27tXv9dJKA4TDOgbBkNp08=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939440,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:20.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:21'),
(6969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:21.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:21'),
(6970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:21.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:21'),
(6971, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB094CD623E4EFB51D3BD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939441807,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:21.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:22'),
(6972, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB094CD623E4EFB51D3BD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939441807,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:21.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:22'),
(6973, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:35.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:36'),
(6974, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:35.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:36'),
(6975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A56323C55915180A141209B1D44C3FE1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939456341,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:36.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:36'),
(6976, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A56323C55915180A141209B1D44C3FE1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939456341,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:36.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:36'),
(6977, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:36.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:36'),
(6978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:36.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:37'),
(6979, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A56323C55915180A141209B1D44C3FE1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Aqui tu clica\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:35.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:37:37'),
(6980, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A56323C55915180A141209B1D44C3FE1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Aqui tu clica\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:37:35.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:37:37'),
(6981, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A56323C55915180A141209B1D44C3FE1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939488271,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:38:08.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:38:08'),
(6982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A56323C55915180A141209B1D44C3FE1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939488271,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:38:08.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:38:08'),
(6983, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A2706C16CF0FD12B7B7\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQMFx_nqalJytIw1wlmDlbNmJD0SgyxLbdPKYw7CgBhaSCBN_vgH-s1DIHn0p_l1tWPCCGzHeuU6wT-uGONMrGWPUXijvjMhlYTcogMZzQ?ccb=9-4&oh=01_Q5Aa3wH3bkyRPhn60hRW1UWuMZRSrLVj3j3TfZgWGPyZ6BIzHg&oe=69B5DD0D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"UtuZRRfa5iGDgAS602j7rZiSYioIy3z9nRM7IOU+czo=\",\"fileLength\":\"146276\",\"height\":900,\"width\":1600,\"mediaKey\":\"s493TwjnESsdL+v9scF1Zf856hBFHVodyYBh0+plX+k=\",\"fileEncSha256\":\"XefG8wXVjcWT1Yndv8UTZe9myQYgP11JOnGMB8DNmeI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQMFx_nqalJytIw1wlmDlbNmJD0SgyxLbdPKYw7CgBhaSCBN_vgH-s1DIHn0p_l1tWPCCGzHeuU6wT-uGONMrGWPUXijvjMhlYTcogMZzQ?ccb=9-4&oh=01_Q5Aa3wH3bkyRPhn60hRW1UWuMZRSrLVj3j3TfZgWGPyZ6BIzHg&oe=69B5DD0D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939563\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAEDBAUCBv\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAApPJs+mXlvqsF77PPnoMQiMg5Lq04\\/Z66XEta8Zo+6k5Wo5VLASnGWKuvD2uTpUt6savr8bzmz6bkwywdtHMB83XXK71OLEa1J+IwQw5QeW89BSYDAGAf\\/8QAHhEAAgICAwEBAAAAAAAAAAAAAAECEQMSEyExURD\\/2gAIAQIBAT8AjjVlx+MuPxlRl1THjR0bI2HIZOl6OLUNoLsUVopS9GuvKFihRuLK0PK36cpzyLLL\\/f\\/EAB0RAAICAgMBAAAAAAAAAAAAAAERAAIDECAiMDH\\/2gAIAQMBAT8A41x4yAzMta1sq\\/NFap2DihKDjJEEZ8v\\/xAAwEAABBAECBAMHBAMAAAAAAAABAAIDEQQSIQUTQVJRYZEUFSIxMkOBBhBicSBCU\\/\\/aAAgBAQABPwDmRf8ARqDoz9xq+E\\/KRq0jub6rT\\/JvqtP8h6qh3D1W3cPVam9w9f2wBEcqPnfRe6EPDKFCOlyuH39MSEXDeojXJ4Z4Rrk8M8I1+oW4bNHs1a+tK\\/NPwJWOLS3cJuDkCnBildkxNt9AJmVN9Da38k+fJZu4V+EcuUgAkbfLZe1zu3G\\/4UhlyHAkWelI48oFlhUudjmV7g\\/YlPzITQE23gs2aJ8YDX6t1zGCVrm2APnamzC7YAGuqJs2sbMbFCY3NBvyUGQ1ja+RUspkIuXZe7g5ocJmAHxU+OYn6dWr+kGErG4Jk5ETZGaaKzeHTYbw2WrPgmwuddC0Md90QR\\/aj4bPLGXtHwjqnwFjtJIUAx5gxgG9briUEcczRGb2TtnELg\\/E44o2xyOoALj2SzIyGlhsALhMbw7ntZqaDRWTxCNzqbDZ6\\/CsbIlySWR7V\\/r4BZhJyX2ACD0Uee9jQA1u3WlNlukNm7TZGEkyAk+S5gvrS5ixeITY0ZZG6gSveUocXCrPkvbpQ\\/WDpd4hOmLrLt3Hqrb2q29q1N7U2UD7YRmafthcxvYFrb2Bax2Bam9gWk+Cop2y5TwLI\\/CpV\\/h\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"UdC5t\\/0dvXrQ1A==\",\"firstScanLength\":11962,\"scansSidecar\":\"UdC5t\\/0dvXrQ1CiZk9b4nc9UOQ4dJyO2SlUWD2nWxLA3yKLc4AdhQQ==\",\"scanLengths\":[11962,59044,20199,55069],\"midQualityFileSha256\":\"l3hso\\/z6Xj5eNgmeXCjHuAZH48TfsyU1iV5YDs\\/\\/BmQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pcRu6NcdE5LvWSfhfXURf2mJZGsFMB1kA9EfGm5o1j0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939565,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:25.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:26'),
(6984, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:25.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:26'),
(6985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A2706C16CF0FD12B7B7\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQMFx_nqalJytIw1wlmDlbNmJD0SgyxLbdPKYw7CgBhaSCBN_vgH-s1DIHn0p_l1tWPCCGzHeuU6wT-uGONMrGWPUXijvjMhlYTcogMZzQ?ccb=9-4&oh=01_Q5Aa3wH3bkyRPhn60hRW1UWuMZRSrLVj3j3TfZgWGPyZ6BIzHg&oe=69B5DD0D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"UtuZRRfa5iGDgAS602j7rZiSYioIy3z9nRM7IOU+czo=\",\"fileLength\":\"146276\",\"height\":900,\"width\":1600,\"mediaKey\":\"s493TwjnESsdL+v9scF1Zf856hBFHVodyYBh0+plX+k=\",\"fileEncSha256\":\"XefG8wXVjcWT1Yndv8UTZe9myQYgP11JOnGMB8DNmeI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQMFx_nqalJytIw1wlmDlbNmJD0SgyxLbdPKYw7CgBhaSCBN_vgH-s1DIHn0p_l1tWPCCGzHeuU6wT-uGONMrGWPUXijvjMhlYTcogMZzQ?ccb=9-4&oh=01_Q5Aa3wH3bkyRPhn60hRW1UWuMZRSrLVj3j3TfZgWGPyZ6BIzHg&oe=69B5DD0D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939563\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAEDBAUCBv\\/EABkBAQEBAQEBAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAApPJs+mXlvqsF77PPnoMQiMg5Lq04\\/Z66XEta8Zo+6k5Wo5VLASnGWKuvD2uTpUt6savr8bzmz6bkwywdtHMB83XXK71OLEa1J+IwQw5QeW89BSYDAGAf\\/8QAHhEAAgICAwEBAAAAAAAAAAAAAAECEQMSEyExURD\\/2gAIAQIBAT8AjjVlx+MuPxlRl1THjR0bI2HIZOl6OLUNoLsUVopS9GuvKFihRuLK0PK36cpzyLLL\\/f\\/EAB0RAAICAgMBAAAAAAAAAAAAAAERAAIDECAiMDH\\/2gAIAQMBAT8A41x4yAzMta1sq\\/NFap2DihKDjJEEZ8v\\/xAAwEAABBAECBAMHBAMAAAAAAAABAAIDEQQSIQUTQVJRYZEUFSIxMkOBBhBicSBCU\\/\\/aAAgBAQABPwDmRf8ARqDoz9xq+E\\/KRq0jub6rT\\/JvqtP8h6qh3D1W3cPVam9w9f2wBEcqPnfRe6EPDKFCOlyuH39MSEXDeojXJ4Z4Rrk8M8I1+oW4bNHs1a+tK\\/NPwJWOLS3cJuDkCnBildkxNt9AJmVN9Da38k+fJZu4V+EcuUgAkbfLZe1zu3G\\/4UhlyHAkWelI48oFlhUudjmV7g\\/YlPzITQE23gs2aJ8YDX6t1zGCVrm2APnamzC7YAGuqJs2sbMbFCY3NBvyUGQ1ja+RUspkIuXZe7g5ocJmAHxU+OYn6dWr+kGErG4Jk5ETZGaaKzeHTYbw2WrPgmwuddC0Md90QR\\/aj4bPLGXtHwjqnwFjtJIUAx5gxgG9briUEcczRGb2TtnELg\\/E44o2xyOoALj2SzIyGlhsALhMbw7ntZqaDRWTxCNzqbDZ6\\/CsbIlySWR7V\\/r4BZhJyX2ACD0Uee9jQA1u3WlNlukNm7TZGEkyAk+S5gvrS5ixeITY0ZZG6gSveUocXCrPkvbpQ\\/WDpd4hOmLrLt3Hqrb2q29q1N7U2UD7YRmafthcxvYFrb2Bax2Bam9gWk+Cop2y5TwLI\\/CpV\\/h\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"UdC5t\\/0dvXrQ1A==\",\"firstScanLength\":11962,\"scansSidecar\":\"UdC5t\\/0dvXrQ1CiZk9b4nc9UOQ4dJyO2SlUWD2nWxLA3yKLc4AdhQQ==\",\"scanLengths\":[11962,59044,20199,55069],\"midQualityFileSha256\":\"l3hso\\/z6Xj5eNgmeXCjHuAZH48TfsyU1iV5YDs\\/\\/BmQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pcRu6NcdE5LvWSfhfXURf2mJZGsFMB1kA9EfGm5o1j0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939565,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:25.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:26'),
(6986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:25.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:26'),
(6987, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:26.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:26'),
(6988, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:26.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:27'),
(6989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:26.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:27'),
(6990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:26.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:27'),
(6991, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29459860_1235527898690097_7426249954028773427_n.enc?ccb=11-4&oh=01_Q5Aa3wG518E2husxVxMCelQutpBuIsJ4HVAX_iYCjBX4XdPV_g&oe=69B5E835&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fn\\/omXW1Lovuo+2hiAFM8224bJ64hdPAZnK6H5YO0E0=\",\"fileLength\":\"16675\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"tMdNhy5OUmqpS5dmgF9kOBczHdSVchZgTJTTE7V4vYM=\",\"fileEncSha256\":\"ok+\\/XvWoZ8j54jIT8wdCvQr7x08Y0QNyHaQSRLydIns=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29459860_1235527898690097_7426249954028773427_n.enc?ccb=11-4&oh=01_Q5Aa3wG518E2husxVxMCelQutpBuIsJ4HVAX_iYCjBX4XdPV_g&oe=69B5E835&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939574\",\"waveform\":\"C0JOT0dRSlRJQzhJUEZVPEk7OD1MSlc3SUs5WEkgLjRTP09UVE48RUM\\/V1NOTk9GQFJMSxk1TjtcMFxDSEBTRA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:41'),
(6992, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:41'),
(6993, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29459860_1235527898690097_7426249954028773427_n.enc?ccb=11-4&oh=01_Q5Aa3wG518E2husxVxMCelQutpBuIsJ4HVAX_iYCjBX4XdPV_g&oe=69B5E835&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fn\\/omXW1Lovuo+2hiAFM8224bJ64hdPAZnK6H5YO0E0=\",\"fileLength\":\"16675\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"tMdNhy5OUmqpS5dmgF9kOBczHdSVchZgTJTTE7V4vYM=\",\"fileEncSha256\":\"ok+\\/XvWoZ8j54jIT8wdCvQr7x08Y0QNyHaQSRLydIns=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29459860_1235527898690097_7426249954028773427_n.enc?ccb=11-4&oh=01_Q5Aa3wG518E2husxVxMCelQutpBuIsJ4HVAX_iYCjBX4XdPV_g&oe=69B5E835&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939574\",\"waveform\":\"C0JOT0dRSlRJQzhJUEZVPEk7OD1MSlc3SUs5WEkgLjRTP09UVE48RUM\\/V1NOTk9GQFJMSxk1TjtcMFxDSEBTRA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:41'),
(6994, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:41'),
(6995, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939581965,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:42'),
(6996, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:42.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:42'),
(6997, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939581965,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:42'),
(6998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:42.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:42'),
(6999, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939581975,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:42'),
(7000, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939582957,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:42.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:43'),
(7001, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939581975,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:41.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:43'),
(7002, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939582957,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:42.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:43'),
(7003, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:51.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:51'),
(7004, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5BE4D00BBBEF1D1A719DEB71709811A\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:51.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:52'),
(7005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A54F590FADB9B4DCA4E242B880A7556F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939592359,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:52.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:52'),
(7006, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A54F590FADB9B4DCA4E242B880A7556F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939592359,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:52.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:52'),
(7007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:52.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:39:52'),
(7008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:39:52.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:39:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7009, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6_-l_4lSRG2EfKQ4phvMgLrqX2Wqx21OxVtKqBktCcw&oe=699B7A9F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFikho4xUWBqD56O8OsYH6QHbvilr992XSuygnt6LlG0g&oe=699B6958&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwek5ntfNZsX0D_qVx4KXvyUdwLXNGCZHv9FbgXznshg&oe=699B805B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkYqpRMeqNEzDwPaqLCQHvLKd-3qclIOsZvibo7GMT3w&oe=699B6826&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLuHxuv7lesIWL2-13USaqYnlpDQt9Xb-nkiGb-TkEoA&oe=699B6259&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG21F4ypgawYX9aQDC0jtHemcqhbb2buAAnaiDiLoW2zQ&oe=699B6CB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGze93Hls6euHo9O12HnHHl36Huz3iwSk9zx3TZ2_zjbg&oe=699B80E8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfwFyXoIc2uKN_THd5sGHaQFr35WAGLpptht7apGq4rQ&oe=699B8980&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3h2APtHmq4tI6Clz1VunTFEroJ95ZD9PfJU0knDxgLw&oe=699B6AC3&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmNKeRz_m8VXl15sEV5BDNC9FDzMrRAavLQdEjABP5Xg&oe=699B89DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdzldCVakAdWpXkNv4Na7NXhD-EAAMXK9M6tIeoasIIQ&oe=699B61D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUSOdbryroEjU7GFWrK5Ue72HyPGDnMcn7lHV0KfsPTg&oe=699B8815&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyNqyVBAW1fb_vXUKcWlA1_YQzM3WPQaTQXhSA9tTnxA&oe=699B5D56&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkOvdCEJHAJHtUxKBIPaBtARuMEkbhrG3op1Wj8DL5vQ&oe=699B580B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlQ9_X0HApuH1xZ4iNwl-KHUaUfEuQj0QpWTYOaPKckA&oe=699B5B06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxgraAmqaYTmDyMZyC_MahD2CSkawmJVm59jUOfwmmKw&oe=699B58A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgz_YxiGzfdaZ_4PARmHci3v5WecvQV3HCTJ8TWI6vaQ&oe=699B5D0C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wH62XrMQzs16NO689xC7uv8jcCP7oZicR3N_V65BrmmOQ&oe=699B55BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4nNzMDWK92PcGOU5gNGB91QZXcbIb4nGjCgBvXF7xDg&oe=699B575C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMpFPEHN34-xaQsX7s9APc1EsfJ2EOc4mB_Ej_LvddXQ&oe=699B7AB8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGobsTrqOKiYzShpJirDACSCev2_A94_G0IU4ckchEw7Q&oe=699B56C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEkyljJWGJJ_SfOQSHRZpZwV-LaT8GWUE5GmVfKXiAtQ&oe=699B754F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwiiTTxArXyEPh_CThbLwTEraSdG7ZRVMpjUf5LWC_iA&oe=699B56D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-McWEGwH4auaogWyqUN2HB8kuIiHwFsrrEaBw3hvWoQ&oe=699B8396&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl-Yx0FTwObQHnbAvYMtkUGh_m0T9xrEthCw3gNPpodQ&oe=699B6A1A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtTkdqybgf8qyapc42cKOtU1IBP8TkpTGJKhpGEqR-YQ&oe=699B6DB6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEucNsgkpbD-GODK7fcu4-sgOr8LxIUTKkpj1ISkL7YEQ&oe=699B7EEF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF3BXAsm6XIEfD0Qg6KvdsMvnIIMcD_Sy4JkQSSoIcBQ&oe=699B856B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg49lfscCvN2u9sbmEO7XgwBUxEajuICw5izSbCoEXcw&oe=699B5A23&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ1EO9En76MrCvCMKytHudTnV1Mob4dHoVlqt6iXtHcQ&oe=699B817B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-OqYEb6PHxCxE0EIWNQGFf48cX_2Ia95jqXMxI9jsQw&oe=699B6282&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXUZS3bhU1DrfuTqqjOHQl21g3UXjkHsKT64NxzCeVkw&oe=699B8015&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt86LEYv8m9woEkAUce8AzSolq_SV5alOWaDz59VfQyw&oe=699B87CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYG7llnSd4xDsU3uGD_yeR_fbGvYxinBWc3S6yNHicfA&oe=699B671A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5AXqphxJryZupEkqrOCVGn72yMiEKhedpE7uJN4Bj8A&oe=699B58EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wECb9G7DT0XQutq-J6B6uuzyZvj2LoXP6XLMOVYxJvhuQ&oe=699B5D25&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNrnBUcvNAMfrjcZrtvNRkiHbJ9M9NUHMowJvTHYaPOQ&oe=699B7590&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRwH67V5NeYGCGB3tQXGdf1pyU_h1R24FQY3Q6A-0BJA&oe=699B83AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOO9DPP_pj2yaYwhvOBhwl3x9U_0rMTjl6QVnkWnzMkQ&oe=699B7DFB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqPaN25tcrZeVxrXrUIrzMB6g6Ib0B56j246oI3v51Xw&oe=699B8769&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQPcdHyAcJuuWe4tPS293S-LxWlfsmSP4Lu9zqME26lA&oe=699B8AEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU25KcME7SSxmGCUTUrc-Ek2X5VgWw2rOmYFRb07a4Eg&oe=699B5BE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8IteoFNM88kwq7TJhlJvQIF4Kjs9zRrmkl80a_PHm9Q&oe=699B79C5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPtHtt4EWAz6Rmd-CQda72L7pxy_Vy5PKYdOEfvrAwxQ&oe=699B87AD&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-AHbp3RzPfLjBFgIGEf2IKEEArwMf2rq41efbCBijLg&oe=699B67D2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEG9htYAyr5JOrMvCVd9JMoTZTPuKIMjDMwBS7EPYFexg&oe=699B7D95&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlZJRHUlJv0aazByNPtIut891zI7fP7zOzxM0DjQCcRA&oe=699B6151&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpn9Y0VjeKL-dY-bwjr0eadfxdLnzFS_99zZabxnsR7Q&oe=699B6779&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnJG_koWllxVuFzqPtqrDoTglrqeM8Q-yfapGOVhGLKg&oe=699B7B37&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRGg3OGw8ddZ73LRZTHsfR8XVZSjKo4aHUfggKZCAFtQ&oe=699B5B42&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEh5aIaTYSQ7QYYDq-w7bLe6LIzLISdWCnN4TOPjEm6Hg&oe=699B83A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp3QIuOpgCBJkV1S_iuUra-9rCJ-UuzpA8lgUDWoTzvg&oe=699B890A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUGCtzpynY5RwRm-CqEvtCWUdM2zwk2hGht5uXrgwfRQ&oe=699B897A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpIe6D7Jz1l3JS1S-dBXV93f2VC8f_zwG9CdUKyslFiA&oe=699B722E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLs8xZqFmfe5eJgxy3lrn4IUerMKH_fa-U2yrROLqeUw&oe=699B712B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDs35i8y369rcuJfEfD7N-rJUYrlG4NjHq6anYL_yNlA&oe=699B8295&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZ7v76E9wYjiOPsY0QMvdF4UBUwA1QMwgWY7fp0FSf-A&oe=699B77EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_GQJCdfEs1wnps9lY1XPVBJT82-jkK-rYWAbr-lRm1g&oe=699B6A98&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVo0Zj5w8N-kCLIuqneYUgd3AWT6T65r4wCOYAZPUUiA&oe=699B7F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8lfcqJq001szEFBst1wGOidJjUnatQH3rT7gfYPIRPA&oe=699B69B9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxwLGg_LyssZ5-cpzZV3QqrlilYgJXnrA3_DG0lwSLJQ&oe=699B5C46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6Xskuyg9hkd1yWR_mO_MhrCRF8ksADROMm6RM1sdR6Q&oe=699B69E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFar04eybgJ_verf0YgqVvDuEyPuKnz7S2HnJex81hE_A&oe=699B81B8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjQwGJ5OrD_VXSf1CY-SNJYpBLIcK7Rx4Vxi1kHii4FQ&oe=699B6678&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wF11W6uGHDixYYRZugjUHcW4T_LUKQqsmV1cFY7o7X8tg&oe=699B7540&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwMqx7TIornzYEDtFPkfy4HmBV62ApJtLqNTwTTN0fvQ&oe=699B620F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6KecLxTr6f9oxOIQs2HiN4imVhXqHgff6oKgcvYIpA&oe=699B553E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg8QJ-t0C3ANPPYnI30llBA1J_BT_Zh2eAHowLQNPGgA&oe=699B58C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUT7Pl41WFu3zinplWQt5GrKTZjB-9vOGaOEFMCcVqLQ&oe=699B7E4E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wF92DNQ49xTrFvILbbdIg-A5uHYJxYF1dGWi5kAaCDm2w&oe=699B8534&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0O_tI27QgCcgkFlpIhZRXJrSHO5x9ZbOizjRsaUQ0Fw&oe=699B6AD2&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcHbG81Mlx7RUh4XwYbhGZd9e2s4KOfaFasMbc_lHq8A&oe=699B5E10&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_15Mlt_a8Ya3NVP35AW5--7Au1zK0tfgElPc7FCbaAg&oe=699B8A3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wER8vMtCP0gTxadqeYpqaYX3qH-QNOV-3FUCu55K8P89Q&oe=699B87EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdab8pVzXoq5_Yhm0BE8M3pBJjToVVoJY0cvy9A6eLxQ&oe=699B7C7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWj4tzSIRGFa-UdVsXUBxwtIBQt1UFk1NQYPIv1AONqA&oe=699B5DDA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQOolAmKrB16ZRxKI9rGK1IvwqeAvQQVsMIi1R7aTR8g&oe=699B8150&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFD4sYmfbDSP-7Nx2DdacPFkMnu3r4WEqTgfkF7aUATw&oe=699B6504&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbqNnzdOcPVoyYGdLF8vOUXjb6yVk01c_i3kH1EBqUFQ&oe=699B886E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcxkeNumxajy1JypdmOxdyvXpJJDf68mxqYLUarGFMig&oe=699B6C3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfM7TFjnfPs4kYcztnU1buCSupLj2J4fb_xu0bB-aI1w&oe=699B5A55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBI85KKWvI0THfwuQTLNn5pEppdzVdiE43A1N5aSdrkg&oe=699B674E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9rdzZ2lPBF6cpOOJxd4YLKW72J8TkpFJ3zETeHQPTpg&oe=699B7CB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7Dt2Y86KEnB7yYnQIjMTOTEoymAQVGWLIHYV-dOY2jg&oe=699B8A44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsSIr3fbUdG30doe1ZDyA29aLucfzQmwa_YYC293oKFA&oe=699B5DBD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wECJfXOhrAWEuumTeOzbgAnmho-OcU0O4iSg8jjhsTQ7A&oe=699B61E5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM_X6lvifzGDOxB3A_MU4upzVfUa37UXTDHszQLhZDaA&oe=699B797F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe_zTGhNYzmg7_JuFOqHjnl_CvJJkfJw1j_41wiEzmiw&oe=699B5E82&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjo9LNztbYvotuEJABl7De9Pe_Nf9NyMk05dMEaItGmA&oe=699B8561&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGl-gjOaoB4t4WZRnIfv059YUOrFlvcdO3xpFAy2KkJVQ&oe=699B8087&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-ytQHRZ8VmhbSVOGH_G3pjxCkPkzoQmLsS7pNId1c5g&oe=699B6DE7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7FZKYEn_K_8xVrLqKmOctN_lWOrDoUOejoZv1ZsIvng&oe=699B5900&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEADLYb0tYrelxtzEi1aYYbqkanpmQcy-UDCoWIQbv1og&oe=699B709D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH3uRE2sTGVYEpn5X6NKZhEU_GRY8ptczxAZv90z3HfzA&oe=699B7887&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHjWs2rI_bjoZobABW8WPCyr8CnKlUEfQk2C-EfYAY2A&oe=699B7423&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgRrZBG_H-_gsGZUuSn6AG1G2Ob7L6b0-N7yRpVOpLdw&oe=699B8488&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_v7xq7Ex_07EHKnfVYWWn3Ae-EQBI0zrNUhCRaWCKw&oe=699B80D1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3Y7fs5XHI7xlu3Bs5RWyjnF8Sqv-HJTcbXqkyI4kscg&oe=699B5A5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhS4QFEU2z4LV2RmR107jDhHyci22yDhVAjHpLCVTOzw&oe=699B7476&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCzcx8qJ6KgrcMj9WQZoHKRcbdp66rf4lcaF7s0D4wjw&oe=699B5894&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPWmCiBAFskS5DZ1CNz3jyn-2RxqGeq20C9US_eKR6_A&oe=699B7B97&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVV28eU1-bzjkPu4EGc8Lb0-REF5Lf04DzGQBggkLX3Q&oe=699B6AFE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuOJei90ZuaB3I4Sv9lhx6mZrgqFsEGLZxjTX8kjIgyg&oe=699B72EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ8vNdio8zaCLt1HLPBg5rDHjTiO5-ESOXIJcO29SOeA&oe=699B561A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7NBdR9R6aOPVluQ2DHSsGgKAqHbD9uE3iWbN6s55F3A&oe=699B8B36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wFego0Tgl9ssw-_LTAEsJh0-VDIsWbzOb860tq2pna0qA&oe=699B5B1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEho_rY9S0ych9NGTtAmzbw3aw-U1vPpgzjRnRNm2nBiw&oe=699B77C7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5mrYiRzLUhr1wU6VJTFqcmCk6HRhpkdnLQ9CyXUx38Q&oe=699B5977&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtduG3W1gwMX33J5p26sp-U0nB4YzcXTXQ09MIjV0HQg&oe=699B74A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Upxt3Q8nOK9U0SzM_EDqQZGPYGPJwiWu22rYBatHdA&oe=699B69CB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wELHLju9FyLA10As-Jc6RzzmkswwJQd6Nv8ZEYJDqsWTA&oe=699B7860&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wGo3aytYBM-rq74KIkN0nCz0h_wLdWWAQx1422mL04c0g&oe=699B8512&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDP1MNs-YqpyvpL9NlLYIfdSzxh12PpZpk2eNPBKLUKg&oe=699B8525&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbj7PTpPDXjr2eDlkTq5P4RcKMCih9vB8evz2YeOM1tg&oe=699B5BC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8UiqHFc4-0tjHR8EB7Vp1g2piISwB7iCHCP2WgJQ4og&oe=699B80E3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&o', 1, '2026-02-12 20:39:58');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7010, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6_-l_4lSRG2EfKQ4phvMgLrqX2Wqx21OxVtKqBktCcw&oe=699B7A9F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFikho4xUWBqD56O8OsYH6QHbvilr992XSuygnt6LlG0g&oe=699B6958&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwek5ntfNZsX0D_qVx4KXvyUdwLXNGCZHv9FbgXznshg&oe=699B805B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkYqpRMeqNEzDwPaqLCQHvLKd-3qclIOsZvibo7GMT3w&oe=699B6826&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLuHxuv7lesIWL2-13USaqYnlpDQt9Xb-nkiGb-TkEoA&oe=699B6259&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG21F4ypgawYX9aQDC0jtHemcqhbb2buAAnaiDiLoW2zQ&oe=699B6CB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGze93Hls6euHo9O12HnHHl36Huz3iwSk9zx3TZ2_zjbg&oe=699B80E8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfwFyXoIc2uKN_THd5sGHaQFr35WAGLpptht7apGq4rQ&oe=699B8980&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3h2APtHmq4tI6Clz1VunTFEroJ95ZD9PfJU0knDxgLw&oe=699B6AC3&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmNKeRz_m8VXl15sEV5BDNC9FDzMrRAavLQdEjABP5Xg&oe=699B89DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdzldCVakAdWpXkNv4Na7NXhD-EAAMXK9M6tIeoasIIQ&oe=699B61D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUSOdbryroEjU7GFWrK5Ue72HyPGDnMcn7lHV0KfsPTg&oe=699B8815&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyNqyVBAW1fb_vXUKcWlA1_YQzM3WPQaTQXhSA9tTnxA&oe=699B5D56&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkOvdCEJHAJHtUxKBIPaBtARuMEkbhrG3op1Wj8DL5vQ&oe=699B580B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlQ9_X0HApuH1xZ4iNwl-KHUaUfEuQj0QpWTYOaPKckA&oe=699B5B06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxgraAmqaYTmDyMZyC_MahD2CSkawmJVm59jUOfwmmKw&oe=699B58A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgz_YxiGzfdaZ_4PARmHci3v5WecvQV3HCTJ8TWI6vaQ&oe=699B5D0C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wH62XrMQzs16NO689xC7uv8jcCP7oZicR3N_V65BrmmOQ&oe=699B55BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4nNzMDWK92PcGOU5gNGB91QZXcbIb4nGjCgBvXF7xDg&oe=699B575C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMpFPEHN34-xaQsX7s9APc1EsfJ2EOc4mB_Ej_LvddXQ&oe=699B7AB8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGobsTrqOKiYzShpJirDACSCev2_A94_G0IU4ckchEw7Q&oe=699B56C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEkyljJWGJJ_SfOQSHRZpZwV-LaT8GWUE5GmVfKXiAtQ&oe=699B754F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwiiTTxArXyEPh_CThbLwTEraSdG7ZRVMpjUf5LWC_iA&oe=699B56D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-McWEGwH4auaogWyqUN2HB8kuIiHwFsrrEaBw3hvWoQ&oe=699B8396&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wHl-Yx0FTwObQHnbAvYMtkUGh_m0T9xrEthCw3gNPpodQ&oe=699B6A1A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtTkdqybgf8qyapc42cKOtU1IBP8TkpTGJKhpGEqR-YQ&oe=699B6DB6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEucNsgkpbD-GODK7fcu4-sgOr8LxIUTKkpj1ISkL7YEQ&oe=699B7EEF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF3BXAsm6XIEfD0Qg6KvdsMvnIIMcD_Sy4JkQSSoIcBQ&oe=699B856B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg49lfscCvN2u9sbmEO7XgwBUxEajuICw5izSbCoEXcw&oe=699B5A23&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ1EO9En76MrCvCMKytHudTnV1Mob4dHoVlqt6iXtHcQ&oe=699B817B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-OqYEb6PHxCxE0EIWNQGFf48cX_2Ia95jqXMxI9jsQw&oe=699B6282&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXUZS3bhU1DrfuTqqjOHQl21g3UXjkHsKT64NxzCeVkw&oe=699B8015&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt86LEYv8m9woEkAUce8AzSolq_SV5alOWaDz59VfQyw&oe=699B87CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYG7llnSd4xDsU3uGD_yeR_fbGvYxinBWc3S6yNHicfA&oe=699B671A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5AXqphxJryZupEkqrOCVGn72yMiEKhedpE7uJN4Bj8A&oe=699B58EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wECb9G7DT0XQutq-J6B6uuzyZvj2LoXP6XLMOVYxJvhuQ&oe=699B5D25&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNrnBUcvNAMfrjcZrtvNRkiHbJ9M9NUHMowJvTHYaPOQ&oe=699B7590&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRwH67V5NeYGCGB3tQXGdf1pyU_h1R24FQY3Q6A-0BJA&oe=699B83AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOO9DPP_pj2yaYwhvOBhwl3x9U_0rMTjl6QVnkWnzMkQ&oe=699B7DFB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqPaN25tcrZeVxrXrUIrzMB6g6Ib0B56j246oI3v51Xw&oe=699B8769&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQPcdHyAcJuuWe4tPS293S-LxWlfsmSP4Lu9zqME26lA&oe=699B8AEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU25KcME7SSxmGCUTUrc-Ek2X5VgWw2rOmYFRb07a4Eg&oe=699B5BE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8IteoFNM88kwq7TJhlJvQIF4Kjs9zRrmkl80a_PHm9Q&oe=699B79C5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558965864_1285832656672743_4578055278914931464_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPtHtt4EWAz6Rmd-CQda72L7pxy_Vy5PKYdOEfvrAwxQ&oe=699B87AD&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-AHbp3RzPfLjBFgIGEf2IKEEArwMf2rq41efbCBijLg&oe=699B67D2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEG9htYAyr5JOrMvCVd9JMoTZTPuKIMjDMwBS7EPYFexg&oe=699B7D95&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlZJRHUlJv0aazByNPtIut891zI7fP7zOzxM0DjQCcRA&oe=699B6151&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpn9Y0VjeKL-dY-bwjr0eadfxdLnzFS_99zZabxnsR7Q&oe=699B6779&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnJG_koWllxVuFzqPtqrDoTglrqeM8Q-yfapGOVhGLKg&oe=699B7B37&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRGg3OGw8ddZ73LRZTHsfR8XVZSjKo4aHUfggKZCAFtQ&oe=699B5B42&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEh5aIaTYSQ7QYYDq-w7bLe6LIzLISdWCnN4TOPjEm6Hg&oe=699B83A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp3QIuOpgCBJkV1S_iuUra-9rCJ-UuzpA8lgUDWoTzvg&oe=699B890A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUGCtzpynY5RwRm-CqEvtCWUdM2zwk2hGht5uXrgwfRQ&oe=699B897A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpIe6D7Jz1l3JS1S-dBXV93f2VC8f_zwG9CdUKyslFiA&oe=699B722E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLs8xZqFmfe5eJgxy3lrn4IUerMKH_fa-U2yrROLqeUw&oe=699B712B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDs35i8y369rcuJfEfD7N-rJUYrlG4NjHq6anYL_yNlA&oe=699B8295&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZ7v76E9wYjiOPsY0QMvdF4UBUwA1QMwgWY7fp0FSf-A&oe=699B77EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_GQJCdfEs1wnps9lY1XPVBJT82-jkK-rYWAbr-lRm1g&oe=699B6A98&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVo0Zj5w8N-kCLIuqneYUgd3AWT6T65r4wCOYAZPUUiA&oe=699B7F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8lfcqJq001szEFBst1wGOidJjUnatQH3rT7gfYPIRPA&oe=699B69B9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxwLGg_LyssZ5-cpzZV3QqrlilYgJXnrA3_DG0lwSLJQ&oe=699B5C46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6Xskuyg9hkd1yWR_mO_MhrCRF8ksADROMm6RM1sdR6Q&oe=699B69E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFar04eybgJ_verf0YgqVvDuEyPuKnz7S2HnJex81hE_A&oe=699B81B8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjQwGJ5OrD_VXSf1CY-SNJYpBLIcK7Rx4Vxi1kHii4FQ&oe=699B6678&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wF11W6uGHDixYYRZugjUHcW4T_LUKQqsmV1cFY7o7X8tg&oe=699B7540&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwMqx7TIornzYEDtFPkfy4HmBV62ApJtLqNTwTTN0fvQ&oe=699B620F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN6KecLxTr6f9oxOIQs2HiN4imVhXqHgff6oKgcvYIpA&oe=699B553E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg8QJ-t0C3ANPPYnI30llBA1J_BT_Zh2eAHowLQNPGgA&oe=699B58C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUT7Pl41WFu3zinplWQt5GrKTZjB-9vOGaOEFMCcVqLQ&oe=699B7E4E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wF92DNQ49xTrFvILbbdIg-A5uHYJxYF1dGWi5kAaCDm2w&oe=699B8534&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0O_tI27QgCcgkFlpIhZRXJrSHO5x9ZbOizjRsaUQ0Fw&oe=699B6AD2&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcHbG81Mlx7RUh4XwYbhGZd9e2s4KOfaFasMbc_lHq8A&oe=699B5E10&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_15Mlt_a8Ya3NVP35AW5--7Au1zK0tfgElPc7FCbaAg&oe=699B8A3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wER8vMtCP0gTxadqeYpqaYX3qH-QNOV-3FUCu55K8P89Q&oe=699B87EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdab8pVzXoq5_Yhm0BE8M3pBJjToVVoJY0cvy9A6eLxQ&oe=699B7C7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWj4tzSIRGFa-UdVsXUBxwtIBQt1UFk1NQYPIv1AONqA&oe=699B5DDA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQOolAmKrB16ZRxKI9rGK1IvwqeAvQQVsMIi1R7aTR8g&oe=699B8150&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFD4sYmfbDSP-7Nx2DdacPFkMnu3r4WEqTgfkF7aUATw&oe=699B6504&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbqNnzdOcPVoyYGdLF8vOUXjb6yVk01c_i3kH1EBqUFQ&oe=699B886E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcxkeNumxajy1JypdmOxdyvXpJJDf68mxqYLUarGFMig&oe=699B6C3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfM7TFjnfPs4kYcztnU1buCSupLj2J4fb_xu0bB-aI1w&oe=699B5A55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBI85KKWvI0THfwuQTLNn5pEppdzVdiE43A1N5aSdrkg&oe=699B674E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9rdzZ2lPBF6cpOOJxd4YLKW72J8TkpFJ3zETeHQPTpg&oe=699B7CB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7Dt2Y86KEnB7yYnQIjMTOTEoymAQVGWLIHYV-dOY2jg&oe=699B8A44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsSIr3fbUdG30doe1ZDyA29aLucfzQmwa_YYC293oKFA&oe=699B5DBD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wECJfXOhrAWEuumTeOzbgAnmho-OcU0O4iSg8jjhsTQ7A&oe=699B61E5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wFM_X6lvifzGDOxB3A_MU4upzVfUa37UXTDHszQLhZDaA&oe=699B797F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe_zTGhNYzmg7_JuFOqHjnl_CvJJkfJw1j_41wiEzmiw&oe=699B5E82&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjo9LNztbYvotuEJABl7De9Pe_Nf9NyMk05dMEaItGmA&oe=699B8561&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGl-gjOaoB4t4WZRnIfv059YUOrFlvcdO3xpFAy2KkJVQ&oe=699B8087&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-ytQHRZ8VmhbSVOGH_G3pjxCkPkzoQmLsS7pNId1c5g&oe=699B6DE7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7FZKYEn_K_8xVrLqKmOctN_lWOrDoUOejoZv1ZsIvng&oe=699B5900&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEADLYb0tYrelxtzEi1aYYbqkanpmQcy-UDCoWIQbv1og&oe=699B709D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH3uRE2sTGVYEpn5X6NKZhEU_GRY8ptczxAZv90z3HfzA&oe=699B7887&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHjWs2rI_bjoZobABW8WPCyr8CnKlUEfQk2C-EfYAY2A&oe=699B7423&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgRrZBG_H-_gsGZUuSn6AG1G2Ob7L6b0-N7yRpVOpLdw&oe=699B8488&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_v7xq7Ex_07EHKnfVYWWn3Ae-EQBI0zrNUhCRaWCKw&oe=699B80D1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3Y7fs5XHI7xlu3Bs5RWyjnF8Sqv-HJTcbXqkyI4kscg&oe=699B5A5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhS4QFEU2z4LV2RmR107jDhHyci22yDhVAjHpLCVTOzw&oe=699B7476&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCzcx8qJ6KgrcMj9WQZoHKRcbdp66rf4lcaF7s0D4wjw&oe=699B5894&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPWmCiBAFskS5DZ1CNz3jyn-2RxqGeq20C9US_eKR6_A&oe=699B7B97&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVV28eU1-bzjkPu4EGc8Lb0-REF5Lf04DzGQBggkLX3Q&oe=699B6AFE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuOJei90ZuaB3I4Sv9lhx6mZrgqFsEGLZxjTX8kjIgyg&oe=699B72EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ8vNdio8zaCLt1HLPBg5rDHjTiO5-ESOXIJcO29SOeA&oe=699B561A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7NBdR9R6aOPVluQ2DHSsGgKAqHbD9uE3iWbN6s55F3A&oe=699B8B36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wFego0Tgl9ssw-_LTAEsJh0-VDIsWbzOb860tq2pna0qA&oe=699B5B1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEho_rY9S0ych9NGTtAmzbw3aw-U1vPpgzjRnRNm2nBiw&oe=699B77C7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5mrYiRzLUhr1wU6VJTFqcmCk6HRhpkdnLQ9CyXUx38Q&oe=699B5977&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtduG3W1gwMX33J5p26sp-U0nB4YzcXTXQ09MIjV0HQg&oe=699B74A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3Upxt3Q8nOK9U0SzM_EDqQZGPYGPJwiWu22rYBatHdA&oe=699B69CB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wELHLju9FyLA10As-Jc6RzzmkswwJQd6Nv8ZEYJDqsWTA&oe=699B7860&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wGo3aytYBM-rq74KIkN0nCz0h_wLdWWAQx1422mL04c0g&oe=699B8512&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDP1MNs-YqpyvpL9NlLYIfdSzxh12PpZpk2eNPBKLUKg&oe=699B8525&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbj7PTpPDXjr2eDlkTq5P4RcKMCih9vB8evz2YeOM1tg&oe=699B5BC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8UiqHFc4-0tjHR8EB7Vp1g2piISwB7iCHCP2WgJQ4og&oe=699B80E3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&o', 1, '2026-02-12 20:39:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7011, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:01'),
(7012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A57FBA8595E1BF7EB5ED00F4657E546B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura o app Xcloud\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939601,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:01'),
(7013, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:01'),
(7014, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:01'),
(7015, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A57FBA8595E1BF7EB5ED00F4657E546B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura o app Xcloud\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939601,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:01'),
(7016, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:01'),
(7017, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A57FBA8595E1BF7EB5ED00F4657E546B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939601820,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:01'),
(7018, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A57FBA8595E1BF7EB5ED00F4657E546B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939601833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:02'),
(7019, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:02'),
(7020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A57FBA8595E1BF7EB5ED00F4657E546B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939601820,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:02'),
(7021, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":false,\"id\":\"A58100FFDB05CA2EBD6AA69490E3958D\"},\"pushName\":\"João Paulo\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635028797_889286694077201_7618320018243818774_n.enc?ccb=11-4&oh=01_Q5Aa3wFGiiULFAkcyORMZ6pdQ-we4XCUgWr0zInXQjJyuVyaTA&oe=69B5E9A8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+dm1VbT26XrpBYhRASAhESzyB20BPW1CJx23g7lehRw=\",\"fileLength\":\"20699\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"cuZNW\\/EW1J+AFgGtWyMu7Gqx7n32LVu4kKtzClFwtFs=\",\"fileEncSha256\":\"niL4kM+zl7ia\\/\\/RZOxA4+DiICPZcntHJn6EHqFHQUzo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635028797_889286694077201_7618320018243818774_n.enc?ccb=11-4&oh=01_Q5Aa3wFGiiULFAkcyORMZ6pdQ-we4XCUgWr0zInXQjJyuVyaTA&oe=69B5E9A8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939594\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"waveform\":\"AABISTw3T0oNDxsWVis\\/LEEqAgAAOStHQiUhTU0fRTVGS0Q5P0EVABEAAAAAAFBSPEMgMUA4KwYAAClGQFBOMA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wTh4aJWVSmO31g==\",\"senderTimestamp\":\"1769964890\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E4jJFz2Hxw1rA\\/yU1y6+wRvMgVM9GnSwuSDDMvpzY68=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939601,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:02'),
(7022, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A57FBA8595E1BF7EB5ED00F4657E546B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939601833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:02'),
(7023, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:03'),
(7024, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:03'),
(7025, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:03'),
(7026, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:03'),
(7027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:03'),
(7028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:04'),
(7029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:04'),
(7030, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939604400,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:04.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:04'),
(7031, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":false,\"id\":\"A58100FFDB05CA2EBD6AA69490E3958D\"},\"pushName\":\"João Paulo\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635028797_889286694077201_7618320018243818774_n.enc?ccb=11-4&oh=01_Q5Aa3wFGiiULFAkcyORMZ6pdQ-we4XCUgWr0zInXQjJyuVyaTA&oe=69B5E9A8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+dm1VbT26XrpBYhRASAhESzyB20BPW1CJx23g7lehRw=\",\"fileLength\":\"20699\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"cuZNW\\/EW1J+AFgGtWyMu7Gqx7n32LVu4kKtzClFwtFs=\",\"fileEncSha256\":\"niL4kM+zl7ia\\/\\/RZOxA4+DiICPZcntHJn6EHqFHQUzo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635028797_889286694077201_7618320018243818774_n.enc?ccb=11-4&oh=01_Q5Aa3wFGiiULFAkcyORMZ6pdQ-we4XCUgWr0zInXQjJyuVyaTA&oe=69B5E9A8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939594\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"waveform\":\"AABISTw3T0oNDxsWVis\\/LEEqAgAAOStHQiUhTU0fRTVGS0Q5P0EVABEAAAAAAFBSPEMgMUA4KwYAAClGQFBOMA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wTh4aJWVSmO31g==\",\"senderTimestamp\":\"1769964890\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E4jJFz2Hxw1rA\\/yU1y6+wRvMgVM9GnSwuSDDMvpzY68=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939601,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:04'),
(7032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:01.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:04'),
(7033, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:02.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:05'),
(7034, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939604400,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:04.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:05'),
(7035, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:05.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:05'),
(7036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939605,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:05.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:05'),
(7037, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:05.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:05'),
(7038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:05.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:06'),
(7039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:05.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:06'),
(7040, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939605,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:05.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:07'),
(7041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:52'),
(7042, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:52'),
(7043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A57CD246D850AD31C3E\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOJ6jdlnHsezK7_xE1xYlcz9vEXiXvndGHzJlA-WudOWjhqKhf-suPve3XWk9grKP2VUEkQLSlf8QyqE-V8IBuSs_8uKXGiGJB_6u0Hsw?ccb=9-4&oh=01_Q5Aa3wHFKKYICKq-WNR95Xhj-yqPuLs7p-6UFCNIiJwf565cRQ&oe=69B5F008&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"2hPeF7C80t5aH7ydj\\/\\/QRBt4xPiBOVMKwcyiKExg8io=\",\"fileLength\":\"114858\",\"height\":900,\"width\":1600,\"mediaKey\":\"tpRc15lw4P5L\\/Iml1bAMOUgGm50AC5\\/qZLojnJG16aE=\",\"fileEncSha256\":\"IKLrPoSv1c5JkVUYtz7EEa\\/JhvHWnUwM4824vveen98=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOJ6jdlnHsezK7_xE1xYlcz9vEXiXvndGHzJlA-WudOWjhqKhf-suPve3XWk9grKP2VUEkQLSlf8QyqE-V8IBuSs_8uKXGiGJB_6u0Hsw?ccb=9-4&oh=01_Q5Aa3wHFKKYICKq-WNR95Xhj-yqPuLs7p-6UFCNIiJwf565cRQ&oe=69B5F008&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939650\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAIBAwUEBv\\/EABkBAQEAAwEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAzrcvS7FptsYU7a4sidTzOLTOA0rUsX0vQ54ihxdJzDDr5VbUtEOYhEbazRalcyVVLRDCEovWmqUPfBUnUVyz0McpsGLJUNVlgslwxrMEaAEf\\/8QAIBEAAgIBAwUAAAAAAAAAAAAAAAECERIQEyEDIkFRYf\\/aAAgBAgEBPwCPTS5SL9xZ2+UxwjLmI4CaHMzJytaZFlsYrRmjNG6kbvw3dGNl6f\\/EABwRAAEEAwEAAAAAAAAAAAAAAAEAAhARAyAxEv\\/aAAgBAwEBPwDS0G4T1ZPIcfPNLVyHEciprb\\/\\/xAAtEAACAQIEAwcEAwAAAAAAAAABAgADEQQFEiExUXEQEzNBUmGRFDJCgoGSof\\/aAAgBAQABPwAZghO9M26yniadVrKjk+0utyGDj9YChJGvfpAV9awW5j5gg7AJkuMp4PEFqq6gRbpBmmDcauHVYmJy6ouqyf1gGVux2p3hweVM17rc+8fKcAbkVNP7Su7U8S6JUJUGwN5TqsUZmq2I4DnDl5NgBYwYLSdzKoai2nUbGd+y\\/YxgrniX36T6qpzEfFOaWjWOsG7QrtxEOY3HnPrEJ3vMVVWo4K8JeXl5eJOMvLwbmAbQLcw0jbaEEHeLFcobjtp7tOEI5TWQLRtxvBG4dqtpN53hhe+8LGFiYAeRjA34GB6AHhXmqgT4X+xa9NRYUV\\/mGsl\\/BWLiANhSWGuT+CfE7w+lfiCs3t8TDU1q0gzAX7GuNxKSvUJsNhCvlFUnygpOfxMFCp6DBh6voMwqslIBhYz\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"LDjDsqm0TKeT0Q==\",\"firstScanLength\":10100,\"scansSidecar\":\"LDjDsqm0TKeT0fX4WyJ7ibXthrh4cEVImnCOMYo4G3x0DlXKg0ilbQ==\",\"scanLengths\":[10100,32179,14751,57826],\"midQualityFileSha256\":\"j\\/\\/xwlO5+bQc0gHVIixhFan054Hk1RQV7DSTbvM1\\/Vg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mpABpwiVPJUhWaEhlPL7nSz7pjChCocv4XPfJsEo2tI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939652,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:52'),
(7044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:52'),
(7045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A57CD246D850AD31C3E\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOJ6jdlnHsezK7_xE1xYlcz9vEXiXvndGHzJlA-WudOWjhqKhf-suPve3XWk9grKP2VUEkQLSlf8QyqE-V8IBuSs_8uKXGiGJB_6u0Hsw?ccb=9-4&oh=01_Q5Aa3wHFKKYICKq-WNR95Xhj-yqPuLs7p-6UFCNIiJwf565cRQ&oe=69B5F008&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"2hPeF7C80t5aH7ydj\\/\\/QRBt4xPiBOVMKwcyiKExg8io=\",\"fileLength\":\"114858\",\"height\":900,\"width\":1600,\"mediaKey\":\"tpRc15lw4P5L\\/Iml1bAMOUgGm50AC5\\/qZLojnJG16aE=\",\"fileEncSha256\":\"IKLrPoSv1c5JkVUYtz7EEa\\/JhvHWnUwM4824vveen98=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOJ6jdlnHsezK7_xE1xYlcz9vEXiXvndGHzJlA-WudOWjhqKhf-suPve3XWk9grKP2VUEkQLSlf8QyqE-V8IBuSs_8uKXGiGJB_6u0Hsw?ccb=9-4&oh=01_Q5Aa3wHFKKYICKq-WNR95Xhj-yqPuLs7p-6UFCNIiJwf565cRQ&oe=69B5F008&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939650\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAIBAwUEBv\\/EABkBAQEAAwEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAzrcvS7FptsYU7a4sidTzOLTOA0rUsX0vQ54ihxdJzDDr5VbUtEOYhEbazRalcyVVLRDCEovWmqUPfBUnUVyz0McpsGLJUNVlgslwxrMEaAEf\\/8QAIBEAAgIBAwUAAAAAAAAAAAAAAAECERIQEyEDIkFRYf\\/aAAgBAgEBPwCPTS5SL9xZ2+UxwjLmI4CaHMzJytaZFlsYrRmjNG6kbvw3dGNl6f\\/EABwRAAEEAwEAAAAAAAAAAAAAAAEAAhARAyAxEv\\/aAAgBAwEBPwDS0G4T1ZPIcfPNLVyHEciprb\\/\\/xAAtEAACAQIEAwcEAwAAAAAAAAABAgADEQQFEiExUXEQEzNBUmGRFDJCgoGSof\\/aAAgBAQABPwAZghO9M26yniadVrKjk+0utyGDj9YChJGvfpAV9awW5j5gg7AJkuMp4PEFqq6gRbpBmmDcauHVYmJy6ouqyf1gGVux2p3hweVM17rc+8fKcAbkVNP7Su7U8S6JUJUGwN5TqsUZmq2I4DnDl5NgBYwYLSdzKoai2nUbGd+y\\/YxgrniX36T6qpzEfFOaWjWOsG7QrtxEOY3HnPrEJ3vMVVWo4K8JeXl5eJOMvLwbmAbQLcw0jbaEEHeLFcobjtp7tOEI5TWQLRtxvBG4dqtpN53hhe+8LGFiYAeRjA34GB6AHhXmqgT4X+xa9NRYUV\\/mGsl\\/BWLiANhSWGuT+CfE7w+lfiCs3t8TDU1q0gzAX7GuNxKSvUJsNhCvlFUnygpOfxMFCp6DBh6voMwqslIBhYz\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"LDjDsqm0TKeT0Q==\",\"firstScanLength\":10100,\"scansSidecar\":\"LDjDsqm0TKeT0fX4WyJ7ibXthrh4cEVImnCOMYo4G3x0DlXKg0ilbQ==\",\"scanLengths\":[10100,32179,14751,57826],\"midQualityFileSha256\":\"j\\/\\/xwlO5+bQc0gHVIixhFan054Hk1RQV7DSTbvM1\\/Vg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mpABpwiVPJUhWaEhlPL7nSz7pjChCocv4XPfJsEo2tI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939652,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:52'),
(7046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:40:53'),
(7047, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:53'),
(7048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:40:52.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:40:53'),
(7049, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:26.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:26'),
(7050, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:26.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:26'),
(7051, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:36.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:36'),
(7052, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:36.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:36'),
(7053, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:37'),
(7054, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5445E41872E07E0E9F51546AEECC86C\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634830569_3781841602112563_652968694348604363_n.enc?ccb=11-4&oh=01_Q5Aa3wGfWAaKR2go3gZh5Y69xj-us47qvIZRJ-PxFXyZIo_vRQ&oe=69B5CDB6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KuhD2g2C\\/z\\/ikYE5\\/ZcM9AYRFNa2x2\\/BKTeRmeDRXbU=\",\"fileLength\":\"23833\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"vieiNWwS7\\/E8dkFDJEAGmnoNOUYHCsYgiV7SI3a3msk=\",\"fileEncSha256\":\"JqVRuz\\/K+71JlUhCuXbmjSrC8h0NAt\\/ufk3+eCPfyiI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634830569_3781841602112563_652968694348604363_n.enc?ccb=11-4&oh=01_Q5Aa3wGfWAaKR2go3gZh5Y69xj-us47qvIZRJ-PxFXyZIo_vRQ&oe=69B5CDB6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939687\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"waveform\":\"Qjk9T1NaTEhLRFBARzFJTi44OThjXEEzMTY9MUZPVExeXU0xSUsvMzA3ODg3P1o9P0JIWT43W0BOS0Y\\/ODsyMQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SuKTfSEJErrcfWs\\/aEhCNp4ib54q\\/UJQA9Q8delKT7k=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:37'),
(7055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:37'),
(7056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5445E41872E07E0E9F51546AEECC86C\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634830569_3781841602112563_652968694348604363_n.enc?ccb=11-4&oh=01_Q5Aa3wGfWAaKR2go3gZh5Y69xj-us47qvIZRJ-PxFXyZIo_vRQ&oe=69B5CDB6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KuhD2g2C\\/z\\/ikYE5\\/ZcM9AYRFNa2x2\\/BKTeRmeDRXbU=\",\"fileLength\":\"23833\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"vieiNWwS7\\/E8dkFDJEAGmnoNOUYHCsYgiV7SI3a3msk=\",\"fileEncSha256\":\"JqVRuz\\/K+71JlUhCuXbmjSrC8h0NAt\\/ufk3+eCPfyiI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634830569_3781841602112563_652968694348604363_n.enc?ccb=11-4&oh=01_Q5Aa3wGfWAaKR2go3gZh5Y69xj-us47qvIZRJ-PxFXyZIo_vRQ&oe=69B5CDB6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939687\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"waveform\":\"Qjk9T1NaTEhLRFBARzFJTi44OThjXEEzMTY9MUZPVExeXU0xSUsvMzA3ODg3P1o9P0JIWT43W0BOS0Y\\/ODsyMQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SuKTfSEJErrcfWs\\/aEhCNp4ib54q\\/UJQA9Q8delKT7k=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:37'),
(7057, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:37'),
(7058, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:38'),
(7059, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:38'),
(7060, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5283AE0A15681209071315E3C109E2C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939698874,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:38.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:38'),
(7061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:37.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:38'),
(7062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5283AE0A15681209071315E3C109E2C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939698874,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:38.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:39'),
(7063, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:40'),
(7064, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5F6EDC9872AB6769FB427FE01B204C7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939699,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:40'),
(7065, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:40'),
(7066, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5F6EDC9872AB6769FB427FE01B204C7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939699,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:40'),
(7067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5F6EDC9872AB6769FB427FE01B204C7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939700329,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:40'),
(7068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5F6EDC9872AB6769FB427FE01B204C7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939700329,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:41'),
(7069, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:41:41'),
(7070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:41:40.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:41:41'),
(7071, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:15.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:15'),
(7072, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:15.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:15'),
(7073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:19.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:19');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7074, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AB890BE396BE4826B7C\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Acho que esse não vai ter\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qShcZeO2sA1fS\\/SrS90iU1t056q1ZEDDHucsUka6p5A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939739,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:19.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:20'),
(7075, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:19.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:20'),
(7076, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AB890BE396BE4826B7C\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Acho que esse não vai ter\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qShcZeO2sA1fS\\/SrS90iU1t056q1ZEDDHucsUka6p5A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939739,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:19.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:20'),
(7077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:20.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:20'),
(7078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:20.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:20'),
(7079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:20.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:20'),
(7080, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:20.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:21'),
(7081, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:44.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:45'),
(7082, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A587D499DACC2271C0DCD8F0136713ED\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Só\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939764,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:44.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:45'),
(7083, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:44.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:45'),
(7084, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A587D499DACC2271C0DCD8F0136713ED\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Só\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939764,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:44.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:45'),
(7085, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A587D499DACC2271C0DCD8F0136713ED\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939765342,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:45.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:45'),
(7086, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A587D499DACC2271C0DCD8F0136713ED\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939765331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:45.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:46'),
(7087, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A587D499DACC2271C0DCD8F0136713ED\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939765331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:45.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:46'),
(7088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:45.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:46'),
(7089, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A587D499DACC2271C0DCD8F0136713ED\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939765342,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:45.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:46'),
(7090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:45.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:47'),
(7091, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:50.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:51'),
(7092, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5B7BB8D56102E19B1E1361620D2167C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Xcloud\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939770,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:50.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:51'),
(7093, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:50.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:51'),
(7094, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5B7BB8D56102E19B1E1361620D2167C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Xcloud\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939770,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:50.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:51'),
(7095, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B7BB8D56102E19B1E1361620D2167C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939771496,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:51.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:51'),
(7096, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B7BB8D56102E19B1E1361620D2167C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939771496,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:51.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:52'),
(7097, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B7BB8D56102E19B1E1361620D2167C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939771507,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:51.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:52'),
(7098, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5B7BB8D56102E19B1E1361620D2167C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939771507,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:51.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:52'),
(7099, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:51.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:42:52'),
(7100, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:42:51.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:42:52'),
(7101, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:02'),
(7102, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5CDE84C015DD3D54E0B28243414A295\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wG5dwfnnvOMKHGK_LwFq_Jj5ICKN1lgyMVNmjp0lCbNtw&oe=69B5E816&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":512,\"width\":512,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wG5dwfnnvOMKHGK_LwFq_Jj5ICKN1lgyMVNmjp0lCbNtw&oe=69B5E816&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1770939781208\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770939782,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:02'),
(7103, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:02'),
(7104, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5CDE84C015DD3D54E0B28243414A295\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wG5dwfnnvOMKHGK_LwFq_Jj5ICKN1lgyMVNmjp0lCbNtw&oe=69B5E816&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":512,\"width\":512,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wG5dwfnnvOMKHGK_LwFq_Jj5ICKN1lgyMVNmjp0lCbNtw&oe=69B5E816&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1770939781208\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770939782,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:02'),
(7105, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:02'),
(7106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:03'),
(7107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CDE84C015DD3D54E0B28243414A295\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939782814,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:03'),
(7108, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CDE84C015DD3D54E0B28243414A295\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939782825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:03'),
(7109, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CDE84C015DD3D54E0B28243414A295\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939782814,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:03'),
(7110, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5CDE84C015DD3D54E0B28243414A295\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939782825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:02.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:04'),
(7111, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:05.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:06'),
(7112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A52A4A83A9BF2D3811A6194FB6AC1BCE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Então deve estar com esse nome\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:05.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:06'),
(7113, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:05.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:06'),
(7114, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A52A4A83A9BF2D3811A6194FB6AC1BCE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Então deve estar com esse nome\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:05.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:06'),
(7115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:06.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:06'),
(7116, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52A4A83A9BF2D3811A6194FB6AC1BCE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939786602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:06.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:06'),
(7117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52A4A83A9BF2D3811A6194FB6AC1BCE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939786596,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:06.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:06'),
(7118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52A4A83A9BF2D3811A6194FB6AC1BCE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939786596,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:06.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:07'),
(7119, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:06.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:07'),
(7120, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A52A4A83A9BF2D3811A6194FB6AC1BCE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939786602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:06.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:07'),
(7121, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:16.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:16'),
(7122, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:16.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:17'),
(7123, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:18.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:19'),
(7124, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:18.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:19'),
(7125, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:28.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:29'),
(7126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:28.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:29'),
(7127, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635148654_1245202883659814_4608306608284730001_n.enc?ccb=11-4&oh=01_Q5Aa3wFEWn5Dbat0O0t5HF_gVV9gWmxK7Lge_t0T4QlVb8I4nQ&oe=69B5D3B8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FmrgY4D4ERMzYExXPcI3e4RfiY3nZpyTm2eD07Sf2I0=\",\"fileLength\":\"10555\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"zPB\\/85mZ64KSZM7KdgjZIN0Rf2HtJQBG5OaaUNucu9w=\",\"fileEncSha256\":\"H0CYkRr0JvigvVWtAC6ssOOeLSKTj1B9zUiFcoDm498=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635148654_1245202883659814_4608306608284730001_n.enc?ccb=11-4&oh=01_Q5Aa3wFEWn5Dbat0O0t5HF_gVV9gWmxK7Lge_t0T4QlVb8I4nQ&oe=69B5D3B8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939805\",\"waveform\":\"AA0GKD1YP05hYklTQkdaMjJAW1tbWFZQSFdUUy1CUVhJR0RMUE4wSTxGVVRAUFMxMlJYV1I8ME0wUkdDRVhRIg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:28.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:29'),
(7128, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635148654_1245202883659814_4608306608284730001_n.enc?ccb=11-4&oh=01_Q5Aa3wFEWn5Dbat0O0t5HF_gVV9gWmxK7Lge_t0T4QlVb8I4nQ&oe=69B5D3B8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FmrgY4D4ERMzYExXPcI3e4RfiY3nZpyTm2eD07Sf2I0=\",\"fileLength\":\"10555\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"zPB\\/85mZ64KSZM7KdgjZIN0Rf2HtJQBG5OaaUNucu9w=\",\"fileEncSha256\":\"H0CYkRr0JvigvVWtAC6ssOOeLSKTj1B9zUiFcoDm498=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635148654_1245202883659814_4608306608284730001_n.enc?ccb=11-4&oh=01_Q5Aa3wFEWn5Dbat0O0t5HF_gVV9gWmxK7Lge_t0T4QlVb8I4nQ&oe=69B5D3B8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939805\",\"waveform\":\"AA0GKD1YP05hYklTQkdaMjJAW1tbWFZQSFdUUy1CUVhJR0RMUE4wSTxGVVRAUFMxMlJYV1I8ME0wUkdDRVhRIg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:28.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:29'),
(7129, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939809166,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:29.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:29'),
(7130, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939809166,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:29.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:30'),
(7131, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:29.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:30'),
(7132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:29.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:30'),
(7133, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:31.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:31'),
(7134, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:31.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:31'),
(7135, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:31.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:32'),
(7136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A585E68676E28A92EE0C4882AA6824C8\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F3t45p6Cos0rPJo8p8j+ArImVlPzR6xwAUK49rykZH0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939811,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:31.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:32'),
(7137, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:31.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:32'),
(7138, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:32.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:32'),
(7139, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:32.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:32'),
(7140, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:32.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:32'),
(7141, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:32.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:33'),
(7142, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:32.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:33'),
(7143, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:32.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:33'),
(7144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:34.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:34'),
(7145, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A04820B16864EC6100\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939813,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:34.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:34'),
(7146, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:34.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:34'),
(7147, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A04820B16864EC6100\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939813,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:34.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:34'),
(7148, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A585E68676E28A92EE0C4882AA6824C8\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F3t45p6Cos0rPJo8p8j+ArImVlPzR6xwAUK49rykZH0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939811,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:31.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:34'),
(7149, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:35.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:35'),
(7150, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:35.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:35'),
(7151, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:36.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7152, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C76AD3A759C3AD0A5E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939816,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:36.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:36'),
(7153, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:36.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:36'),
(7154, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C76AD3A759C3AD0A5E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770939816,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:36.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:36'),
(7155, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939818162,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:38.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:38'),
(7156, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939818162,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:38.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:38'),
(7157, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939818874,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:38.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:38'),
(7158, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A516096868493CD70A2EF0B3F3B3BDEF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939818874,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:38.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:39'),
(7159, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:45.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:45'),
(7160, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:45.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:45'),
(7161, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:50.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:50'),
(7162, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:50.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:50'),
(7163, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:51'),
(7164, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A580A9E78689374BA093C622893F1943\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/574154677_1560949111826453_1232163829113969239_n.enc?ccb=11-4&oh=01_Q5Aa3wHjqs3CQ4BDaS7OUbHkZVCMrf_lS99R4kVFrqeUM9me2Q&oe=69B5BBDE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hl0oBXkNFxVDWFdlJzFz\\/G9MX\\/S\\/REqb8XLjKFpOHiE=\",\"fileLength\":\"10392\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"KwslROyXtqwa4lRoyywbKi1jEp0uqJHC9jNTwCFlonE=\",\"fileEncSha256\":\"gxjVcXv9+8LZuaqH+oxgzJr2AuwFGkkseejV5ZwHOoY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/574154677_1560949111826453_1232163829113969239_n.enc?ccb=11-4&oh=01_Q5Aa3wHjqs3CQ4BDaS7OUbHkZVCMrf_lS99R4kVFrqeUM9me2Q&oe=69B5BBDE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939827\",\"waveform\":\"SUZEOT5BXWNaUjQxLSs3Q1lNSGNgYlBdYU9aYkVEVEtXU0lMS0xSU1BLRVRdWVNOO0NDTU0zLS4qOi45OTU2Nw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NcVt32KH44y+CLdy59I2w16nmvB0uzqluePvbGTQdjY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939831,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:51'),
(7165, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:51'),
(7166, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A580A9E78689374BA093C622893F1943\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/574154677_1560949111826453_1232163829113969239_n.enc?ccb=11-4&oh=01_Q5Aa3wHjqs3CQ4BDaS7OUbHkZVCMrf_lS99R4kVFrqeUM9me2Q&oe=69B5BBDE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hl0oBXkNFxVDWFdlJzFz\\/G9MX\\/S\\/REqb8XLjKFpOHiE=\",\"fileLength\":\"10392\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"KwslROyXtqwa4lRoyywbKi1jEp0uqJHC9jNTwCFlonE=\",\"fileEncSha256\":\"gxjVcXv9+8LZuaqH+oxgzJr2AuwFGkkseejV5ZwHOoY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/574154677_1560949111826453_1232163829113969239_n.enc?ccb=11-4&oh=01_Q5Aa3wHjqs3CQ4BDaS7OUbHkZVCMrf_lS99R4kVFrqeUM9me2Q&oe=69B5BBDE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939827\",\"waveform\":\"SUZEOT5BXWNaUjQxLSs3Q1lNSGNgYlBdYU9aYkVEVEtXU0lMS0xSU1BLRVRdWVNOO0NDTU0zLS4qOi45OTU2Nw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NcVt32KH44y+CLdy59I2w16nmvB0uzqluePvbGTQdjY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939831,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:51'),
(7167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:51'),
(7168, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:52'),
(7169, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:52'),
(7170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:52'),
(7171, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:52'),
(7172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:51.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:52'),
(7173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:56.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:57'),
(7174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A596F96622F996F3B4D2BA898DE07C7D\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635045813_1430480082005604_7303585251544009203_n.enc?ccb=11-4&oh=01_Q5Aa3wEalSLKOYr-tSYO1zOIgBxUGngFFokJmZ2c3zMNPAJ5_A&oe=69B5E133&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MUecolMZ7m9oUTL7YgiQ0WG9vLcIu3gDPf0ioeYxVMU=\",\"fileLength\":\"11300\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"iLvm0K9C4MHQzWcIHlx7JecR\\/PIZtLIqDeJWc3miE6s=\",\"fileEncSha256\":\"dvNte0PIxa\\/kM4YwoO16ml7BGdenmK4MmHhd0CSy\\/Bg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635045813_1430480082005604_7303585251544009203_n.enc?ccb=11-4&oh=01_Q5Aa3wEalSLKOYr-tSYO1zOIgBxUGngFFokJmZ2c3zMNPAJ5_A&oe=69B5E133&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939833\",\"waveform\":\"VlBhV0ExUDNRP1pXYU4zOzkuQSsyRDkxR0lFOjNBU2BTV0NhVkA9ST86R1JKRz5ITU1MOjY\\/PzpCQFJEQEE\\/QQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OIIPwPh5c6sP+HO\\/DRiOwMvxStCDgGx2fO8Agm6qr78=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939837,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:57.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:57'),
(7175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:57.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:57'),
(7176, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:56.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:57'),
(7177, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A596F96622F996F3B4D2BA898DE07C7D\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635045813_1430480082005604_7303585251544009203_n.enc?ccb=11-4&oh=01_Q5Aa3wEalSLKOYr-tSYO1zOIgBxUGngFFokJmZ2c3zMNPAJ5_A&oe=69B5E133&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MUecolMZ7m9oUTL7YgiQ0WG9vLcIu3gDPf0ioeYxVMU=\",\"fileLength\":\"11300\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"iLvm0K9C4MHQzWcIHlx7JecR\\/PIZtLIqDeJWc3miE6s=\",\"fileEncSha256\":\"dvNte0PIxa\\/kM4YwoO16ml7BGdenmK4MmHhd0CSy\\/Bg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635045813_1430480082005604_7303585251544009203_n.enc?ccb=11-4&oh=01_Q5Aa3wEalSLKOYr-tSYO1zOIgBxUGngFFokJmZ2c3zMNPAJ5_A&oe=69B5E133&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939833\",\"waveform\":\"VlBhV0ExUDNRP1pXYU4zOzkuQSsyRDkxR0lFOjNBU2BTV0NhVkA9ST86R1JKRz5ITU1MOjY\\/PzpCQFJEQEE\\/QQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OIIPwPh5c6sP+HO\\/DRiOwMvxStCDgGx2fO8Agm6qr78=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939837,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:57.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:57'),
(7178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:57.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:58'),
(7179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:57.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:58'),
(7180, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:58.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:43:58'),
(7181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:58.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:58'),
(7182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:43:57.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:43:58'),
(7183, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5076AA94AF2B0780EA90BA6E8C396F0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939856993,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:16.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:17'),
(7184, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5076AA94AF2B0780EA90BA6E8C396F0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939856993,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:16.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:17'),
(7185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB094CD623E4EFB51D3BD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939857375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:17.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:17'),
(7186, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"3EB094CD623E4EFB51D3BD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939857375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:17.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:17'),
(7187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:18.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:18'),
(7188, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5076AA94AF2B0780EA90BA6E8C396F0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wHu1OWi389aVnq4j_5wuEwsapkw0-eNM-hzW7NpP622qQ&oe=69B5DB1D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"YHm4CBG\\/1AF67+MGkJQNBjlctbBHY\\/aIwz5L1uLVWrk=\",\"fileEncSha256\":\"EbC\\/tUAd+edhEVPVCejteKEglJEBvHylnEuDkRU55SM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wHu1OWi389aVnq4j_5wuEwsapkw0-eNM-hzW7NpP622qQ&oe=69B5DB1D&_nc_sid=5e03e0&_nc_hot=1770939856\",\"mediaKeyTimestamp\":\"1770817270\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939857,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:18.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:18'),
(7189, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:18.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:18'),
(7190, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5076AA94AF2B0780EA90BA6E8C396F0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wHu1OWi389aVnq4j_5wuEwsapkw0-eNM-hzW7NpP622qQ&oe=69B5DB1D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"YHm4CBG\\/1AF67+MGkJQNBjlctbBHY\\/aIwz5L1uLVWrk=\",\"fileEncSha256\":\"EbC\\/tUAd+edhEVPVCejteKEglJEBvHylnEuDkRU55SM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wHu1OWi389aVnq4j_5wuEwsapkw0-eNM-hzW7NpP622qQ&oe=69B5DB1D&_nc_sid=5e03e0&_nc_hot=1770939856\",\"mediaKeyTimestamp\":\"1770817270\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939857,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:18.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:18'),
(7191, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:18.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:18'),
(7192, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:18.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:19'),
(7193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5FF4672853EEB257F4D54968E94EB9E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939861823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:21.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:21'),
(7194, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5FF4672853EEB257F4D54968E94EB9E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939861823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:21.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:22'),
(7195, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5FF4672853EEB257F4D54968E94EB9E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635080746_1231760345760344_792294375543302922_n.enc?ccb=11-4&oh=01_Q5Aa3wF-iv0PTJhu-PzLPvevWBKdmDn5h-1VgR7c87T4n0pbQw&oe=69B5DBB2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"0W8YIVuuCSMqN+f71TiFSU+yMT3pyP38IpibL7Ln8w0=\",\"fileLength\":\"16354\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"\\/dtrq46BVsvA+1LjMb39a5fLYi+w2aaOjivioBPHWBU=\",\"fileEncSha256\":\"l5cTgYpQPbE0dYMi0yktpRxcMJpQbKPovTgYl5hhRH4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635080746_1231760345760344_792294375543302922_n.enc?ccb=11-4&oh=01_Q5Aa3wF-iv0PTJhu-PzLPvevWBKdmDn5h-1VgR7c87T4n0pbQw&oe=69B5DBB2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939854\",\"waveform\":\"ACdGSzpCSkVTIVtOPFJVVlVcWlAnOVtUWUhMTVM2QFBVUiApLCogLlROUUleXk5TUEpPRzhITENVXlhVN1VPTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:22.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7196, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:22.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:22'),
(7197, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5FF4672853EEB257F4D54968E94EB9E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635080746_1231760345760344_792294375543302922_n.enc?ccb=11-4&oh=01_Q5Aa3wF-iv0PTJhu-PzLPvevWBKdmDn5h-1VgR7c87T4n0pbQw&oe=69B5DBB2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"0W8YIVuuCSMqN+f71TiFSU+yMT3pyP38IpibL7Ln8w0=\",\"fileLength\":\"16354\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"\\/dtrq46BVsvA+1LjMb39a5fLYi+w2aaOjivioBPHWBU=\",\"fileEncSha256\":\"l5cTgYpQPbE0dYMi0yktpRxcMJpQbKPovTgYl5hhRH4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635080746_1231760345760344_792294375543302922_n.enc?ccb=11-4&oh=01_Q5Aa3wF-iv0PTJhu-PzLPvevWBKdmDn5h-1VgR7c87T4n0pbQw&oe=69B5DBB2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939854\",\"waveform\":\"ACdGSzpCSkVTIVtOPFJVVlVcWlAnOVtUWUhMTVM2QFBVUiApLCogLlROUUleXk5TUEpPRzhITENVXlhVN1VPTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:22.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:23'),
(7198, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:22.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:23'),
(7199, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:23.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:23'),
(7200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:23.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:23'),
(7201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5FF4672853EEB257F4D54968E94EB9E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939878472,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:38.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:38'),
(7202, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5FF4672853EEB257F4D54968E94EB9E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939878472,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:38.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:38'),
(7203, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:41'),
(7204, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5F8EA19B981971A31888A85E6EA00F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Conseguiu achar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939881,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:41'),
(7205, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:41'),
(7206, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5F8EA19B981971A31888A85E6EA00F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Conseguiu achar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770939881,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:41'),
(7207, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5F8EA19B981971A31888A85E6EA00F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939881986,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:42'),
(7208, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5F8EA19B981971A31888A85E6EA00F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939881997,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:42'),
(7209, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5F8EA19B981971A31888A85E6EA00F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939881986,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:42'),
(7210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5F8EA19B981971A31888A85E6EA00F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939881997,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:41.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:42'),
(7211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:42.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:42'),
(7212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:42.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:43'),
(7213, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:42.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:43'),
(7214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:42.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:43'),
(7215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:47.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:47'),
(7216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A51ACDDA7D7A080645FFF4553EE99718\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635071562_1406462837741019_2757238631553262721_n.enc?ccb=11-4&oh=01_Q5Aa3wFRv5DPMj8_6ky0SmL281Dv92N6mpiPkFu5it6bsYnxtg&oe=69B5D122&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ANEM6elC7JptXWDsNhonWF7pPJyLjlBR1NhvkC2Unpg=\",\"fileLength\":\"7904\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"dOWH6i9eVeuTp3ydmVGp5ZCZ2d8wCuNy7RyLAuGVLEQ=\",\"fileEncSha256\":\"trD6grvYUWoXmEob9O2ii39L5v0v+1JA4wFzZ4aN6DM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635071562_1406462837741019_2757238631553262721_n.enc?ccb=11-4&oh=01_Q5Aa3wFRv5DPMj8_6ky0SmL281Dv92N6mpiPkFu5it6bsYnxtg&oe=69B5D122&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939885\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACMqLy0aT1RaV0taWltXOSRIQDVMT0pHSkMuIywuLCwxQUNCQDpCRDc8QEE\\/PENKTElERkwiLipKTUxKH0JBPg==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:47.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:47'),
(7217, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:47.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:48'),
(7218, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A51ACDDA7D7A080645FFF4553EE99718\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635071562_1406462837741019_2757238631553262721_n.enc?ccb=11-4&oh=01_Q5Aa3wFRv5DPMj8_6ky0SmL281Dv92N6mpiPkFu5it6bsYnxtg&oe=69B5D122&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ANEM6elC7JptXWDsNhonWF7pPJyLjlBR1NhvkC2Unpg=\",\"fileLength\":\"7904\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"dOWH6i9eVeuTp3ydmVGp5ZCZ2d8wCuNy7RyLAuGVLEQ=\",\"fileEncSha256\":\"trD6grvYUWoXmEob9O2ii39L5v0v+1JA4wFzZ4aN6DM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635071562_1406462837741019_2757238631553262721_n.enc?ccb=11-4&oh=01_Q5Aa3wFRv5DPMj8_6ky0SmL281Dv92N6mpiPkFu5it6bsYnxtg&oe=69B5D122&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939885\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACMqLy0aT1RaV0taWltXOSRIQDVMT0pHSkMuIywuLCwxQUNCQDpCRDc8QEE\\/PENKTElERkwiLipKTUxKH0JBPg==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:47.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:48'),
(7219, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A51ACDDA7D7A080645FFF4553EE99718\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939887998,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:47.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:48'),
(7220, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:48'),
(7221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A51ACDDA7D7A080645FFF4553EE99718\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939887998,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:47.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:48'),
(7222, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:48'),
(7223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:48'),
(7224, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC9E210C3B5AB0401E5F460850D239F7\"},\"pushName\":\"Marcos\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586172422_1444753583728106_1160220206710450626_n.enc?ccb=11-4&oh=01_Q5Aa3wFiQxsz8jVgiiktesKOyCrWn9FQimPaxoZMUtjr40pAaQ&oe=69B5DFC4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OYjh8BA9e8ifjCuf9\\/qP9LdOnF2qiFKJc0+dhM7uJxo=\",\"fileLength\":\"13670\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"B1VudF5zifi4OgsR+4XNbfC2ipyfCEIuqH+kmOu2\\/N0=\",\"fileEncSha256\":\"NjGfpeW0Nks0yqPlmh5QAmyT4vtHm1YWVHtGOMCLQDk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586172422_1444753583728106_1160220206710450626_n.enc?ccb=11-4&oh=01_Q5Aa3wFiQxsz8jVgiiktesKOyCrWn9FQimPaxoZMUtjr40pAaQ&oe=69B5DFC4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939884\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AA8XAEZaWllQU0tZWVdfWVhaU1lEPTUpKCpQS1daWExJNlkVBAgANVpPCzw8W1FPUFhQRzU7QD5RBAAAABUKAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7J\\/pADg3sTjPMz1sJaWkbSEuKwnkjehtXXDDeh9\\/phE=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939888,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:49'),
(7225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:49'),
(7226, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC9E210C3B5AB0401E5F460850D239F7\"},\"pushName\":\"Marcos\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586172422_1444753583728106_1160220206710450626_n.enc?ccb=11-4&oh=01_Q5Aa3wFiQxsz8jVgiiktesKOyCrWn9FQimPaxoZMUtjr40pAaQ&oe=69B5DFC4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OYjh8BA9e8ifjCuf9\\/qP9LdOnF2qiFKJc0+dhM7uJxo=\",\"fileLength\":\"13670\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"B1VudF5zifi4OgsR+4XNbfC2ipyfCEIuqH+kmOu2\\/N0=\",\"fileEncSha256\":\"NjGfpeW0Nks0yqPlmh5QAmyT4vtHm1YWVHtGOMCLQDk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586172422_1444753583728106_1160220206710450626_n.enc?ccb=11-4&oh=01_Q5Aa3wFiQxsz8jVgiiktesKOyCrWn9FQimPaxoZMUtjr40pAaQ&oe=69B5DFC4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939884\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AA8XAEZaWllQU0tZWVdfWVhaU1lEPTUpKCpQS1daWExJNlkVBAgANVpPCzw8W1FPUFhQRzU7QD5RBAAAABUKAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7J\\/pADg3sTjPMz1sJaWkbSEuKwnkjehtXXDDeh9\\/phE=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939888,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:49'),
(7227, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:49'),
(7228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:49.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:49'),
(7229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:49.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:50'),
(7230, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:49.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:50'),
(7231, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:49.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:50'),
(7232, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:48.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:50'),
(7233, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:51.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:51'),
(7234, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:51.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:51'),
(7235, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:52.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:52'),
(7236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5F44543787D9D2AAC3C8D5F46EDCF5A\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"If4KsbIUVfSID74sSRHsQ+pdrgqOCgP1jS0Ka8HZkiM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:52.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:52'),
(7237, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:52.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:52'),
(7238, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5F44543787D9D2AAC3C8D5F46EDCF5A\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"If4KsbIUVfSID74sSRHsQ+pdrgqOCgP1jS0Ka8HZkiM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:52.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:52'),
(7239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:53.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:53'),
(7240, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:53.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:53'),
(7241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:53.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:44:53'),
(7242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXnYUPNm_Hm3Je58Af8m003lmwe-SMprdHczQvNN8Pig&oe=699B7D35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:44:53.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:44:53'),
(7243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:19'),
(7244, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A7C57CA7BBE86E8CA13\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM00F2SQIovagFQFRN_utHDhH7OJyo3eK0W_pg2Wavn5QfjHiV2dx0lt5XqTPYmhc5fbOqOC0dWNbhr-dTO_9o_zZVTUgeGy9GFChP92Q?ccb=9-4&oh=01_Q5Aa3wFxYS8p9FCdXOiiG76XtY2_bikbA_5EWFtmZNXW56arNg&oe=69B5D736&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+YPSjSnrX82JSN40hXyQkQY\\/v+CgX2Z2\\/1LNmUfNvrI=\",\"fileLength\":\"129426\",\"height\":900,\"width\":1600,\"mediaKey\":\"c0Nr86HdGqIRNw9jN4edQaemdXVqfaunwLAsjaBD8xc=\",\"fileEncSha256\":\"q847Xv82Tlu\\/m7DxmeD0Yl\\/UIigPKRcGDZ5KQylzx7g=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM00F2SQIovagFQFRN_utHDhH7OJyo3eK0W_pg2Wavn5QfjHiV2dx0lt5XqTPYmhc5fbOqOC0dWNbhr-dTO_9o_zZVTUgeGy9GFChP92Q?ccb=9-4&oh=01_Q5Aa3wFxYS8p9FCdXOiiG76XtY2_bikbA_5EWFtmZNXW56arNg&oe=69B5D736&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939917\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwUEBv\\/EABgBAQEBAQEAAAAAAAAAAAAAAAEAAgQD\\/9oADAMBAAIQAxAAAACtYdnQa8NSzVjmwqyJasJzjKMQro9B028B6PfDNTaNHKUETmPV+Y9V5byagPUYjVJWMqRmbR4L+g1nLqs1njmWFU5TagsKEHLpMETAhgLAL\\/\\/EAB8RAAICAgMAAwAAAAAAAAAAAAABAhEDEiExUSAjQf\\/aAAgBAgEBPwCOLkvH6Xi9Prf6SxUzpWhNPlouPhul0iTtkJCZYyhviziuzZG8TeJZfw\\/\\/xAAaEQACAgMAAAAAAAAAAAAAAAABAiEwERIg\\/9oACAEDAQE\\/AKtSuZ5Zy0Gr\\/8QALxAAAQMBBAgGAgMAAAAAAAAAAQACAxEEEiFRBRATFDFScZEVIkFCU4EgYTNigv\\/aAAgBAQABPwDj6jurh\\/XdGN2SLHZK67JXTkgDlrvu5j3UTnue0XyKnNQ6DjdE128PJI4grwGP55O68Bj+eReAx\\/PIjoGL1nf3Umg4WscRaHVAzUsj2vc0PJoaI2SUeleiEEo9hwVmtVqhoCXluVUdIWhrqm\\/TqjpV\\/wDcf6R0pLzv7p2kpDSrnH7Utrlfwe4Dqi0uKs+8RybVrHGmOK3yVl9uHmOK32UtAqMFNa5Jo2scRRvCiqqqqJ1SBsLiy6ACKBWgUmf11VVMK6rpKII46pLVEDSsbiBgSrUb1oe7M\\/gE11OKc5pRFCt+ZdpsG9VIbzic1REEJgN7gSi0VxFEVdIFSEcVEWNdV7T2RfZ3OeHROOHlooyI3EmInJTnbQNuQXXA4nNMjnB8oITrNaDi4Vr+1u0tcaD7TrLLT+Rp+0bM8e5vdbZ5yW1fXittJXFyEr+YraP5ig9x9xVTmVjq\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"O9WG5h0aDsbFJw==\",\"firstScanLength\":10902,\"scansSidecar\":\"O9WG5h0aDsbFJ4QgSRTcOspwkLRnCMcodpc8UW0Hg44QkeebGR71og==\",\"scanLengths\":[10902,44791,17384,56347],\"midQualityFileSha256\":\"w\\/HBAcYiQ6GW26xPkEd++Ed6PU3+0o3Z7QW50Kk6BOs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Y351gvVZ+yCHRolb7X1lIXo1is7Cg\\/pzwJIEAlJr5r8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939919,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:19'),
(7245, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:19'),
(7246, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:19'),
(7247, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634997567_1343797310836946_78668354522424843_n.enc?ccb=11-4&oh=01_Q5Aa3wF7qF_tMuLSQQn8cLOUJYuX9f4UrrD1MhFZZC2Lmcoc2Q&oe=69B5DB9F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"s5\\/nEq2XKpxDNgD\\/j+8sGc4uba+EgaxPZKN4np1WeRA=\",\"fileLength\":\"5800\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"L+B3oS8qrtb\\/nl9OpClk7BcIgroIGdAPbfSOhamdGlo=\",\"fileEncSha256\":\"nPO2uhoyW+MYU\\/9dJ+0CNMfbxA8cBtCw+cIZOCkcrpE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634997567_1343797310836946_78668354522424843_n.enc?ccb=11-4&oh=01_Q5Aa3wF7qF_tMuLSQQn8cLOUJYuX9f4UrrD1MhFZZC2Lmcoc2Q&oe=69B5DB9F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939917\",\"waveform\":\"AAUbMCcuNDpAQTETESYwHC5CUldXTkRGUFphWlVQSDdATkxESFJWVUw+Pj5CS0o\\/NTc9OjIvNDg4PEA7LS9CUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:19'),
(7248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:20'),
(7249, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:20'),
(7250, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939920048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:20.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:20'),
(7251, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634997567_1343797310836946_78668354522424843_n.enc?ccb=11-4&oh=01_Q5Aa3wF7qF_tMuLSQQn8cLOUJYuX9f4UrrD1MhFZZC2Lmcoc2Q&oe=69B5DB9F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"s5\\/nEq2XKpxDNgD\\/j+8sGc4uba+EgaxPZKN4np1WeRA=\",\"fileLength\":\"5800\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"L+B3oS8qrtb\\/nl9OpClk7BcIgroIGdAPbfSOhamdGlo=\",\"fileEncSha256\":\"nPO2uhoyW+MYU\\/9dJ+0CNMfbxA8cBtCw+cIZOCkcrpE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634997567_1343797310836946_78668354522424843_n.enc?ccb=11-4&oh=01_Q5Aa3wF7qF_tMuLSQQn8cLOUJYuX9f4UrrD1MhFZZC2Lmcoc2Q&oe=69B5DB9F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939917\",\"waveform\":\"AAUbMCcuNDpAQTETESYwHC5CUldXTkRGUFphWlVQSDdATkxESFJWVUw+Pj5CS0o\\/NTc9OjIvNDg4PEA7LS9CUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:20'),
(7252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:20'),
(7253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:21'),
(7254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:21'),
(7255, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:21'),
(7256, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939920048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:20.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A7C57CA7BBE86E8CA13\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM00F2SQIovagFQFRN_utHDhH7OJyo3eK0W_pg2Wavn5QfjHiV2dx0lt5XqTPYmhc5fbOqOC0dWNbhr-dTO_9o_zZVTUgeGy9GFChP92Q?ccb=9-4&oh=01_Q5Aa3wFxYS8p9FCdXOiiG76XtY2_bikbA_5EWFtmZNXW56arNg&oe=69B5D736&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+YPSjSnrX82JSN40hXyQkQY\\/v+CgX2Z2\\/1LNmUfNvrI=\",\"fileLength\":\"129426\",\"height\":900,\"width\":1600,\"mediaKey\":\"c0Nr86HdGqIRNw9jN4edQaemdXVqfaunwLAsjaBD8xc=\",\"fileEncSha256\":\"q847Xv82Tlu\\/m7DxmeD0Yl\\/UIigPKRcGDZ5KQylzx7g=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM00F2SQIovagFQFRN_utHDhH7OJyo3eK0W_pg2Wavn5QfjHiV2dx0lt5XqTPYmhc5fbOqOC0dWNbhr-dTO_9o_zZVTUgeGy9GFChP92Q?ccb=9-4&oh=01_Q5Aa3wFxYS8p9FCdXOiiG76XtY2_bikbA_5EWFtmZNXW56arNg&oe=69B5D736&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770939917\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwUEBv\\/EABgBAQEBAQEAAAAAAAAAAAAAAAEAAgQD\\/9oADAMBAAIQAxAAAACtYdnQa8NSzVjmwqyJasJzjKMQro9B028B6PfDNTaNHKUETmPV+Y9V5byagPUYjVJWMqRmbR4L+g1nLqs1njmWFU5TagsKEHLpMETAhgLAL\\/\\/EAB8RAAICAgMAAwAAAAAAAAAAAAABAhEDEiExUSAjQf\\/aAAgBAgEBPwCOLkvH6Xi9Prf6SxUzpWhNPlouPhul0iTtkJCZYyhviziuzZG8TeJZfw\\/\\/xAAaEQACAgMAAAAAAAAAAAAAAAABAiEwERIg\\/9oACAEDAQE\\/AKtSuZ5Zy0Gr\\/8QALxAAAQMBBAgGAgMAAAAAAAAAAQACAxEEEiFRBRATFDFScZEVIkFCU4EgYTNigv\\/aAAgBAQABPwDj6jurh\\/XdGN2SLHZK67JXTkgDlrvu5j3UTnue0XyKnNQ6DjdE128PJI4grwGP55O68Bj+eReAx\\/PIjoGL1nf3Umg4WscRaHVAzUsj2vc0PJoaI2SUeleiEEo9hwVmtVqhoCXluVUdIWhrqm\\/TqjpV\\/wDcf6R0pLzv7p2kpDSrnH7Utrlfwe4Dqi0uKs+8RybVrHGmOK3yVl9uHmOK32UtAqMFNa5Jo2scRRvCiqqqqJ1SBsLiy6ACKBWgUmf11VVMK6rpKII46pLVEDSsbiBgSrUb1oe7M\\/gE11OKc5pRFCt+ZdpsG9VIbzic1REEJgN7gSi0VxFEVdIFSEcVEWNdV7T2RfZ3OeHROOHlooyI3EmInJTnbQNuQXXA4nNMjnB8oITrNaDi4Vr+1u0tcaD7TrLLT+Rp+0bM8e5vdbZ5yW1fXittJXFyEr+YraP5ig9x9xVTmVjq\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"O9WG5h0aDsbFJw==\",\"firstScanLength\":10902,\"scansSidecar\":\"O9WG5h0aDsbFJ4QgSRTcOspwkLRnCMcodpc8UW0Hg44QkeebGR71og==\",\"scanLengths\":[10902,44791,17384,56347],\"midQualityFileSha256\":\"w\\/HBAcYiQ6GW26xPkEd++Ed6PU3+0o3Z7QW50Kk6BOs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Y351gvVZ+yCHRolb7X1lIXo1is7Cg\\/pzwJIEAlJr5r8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939919,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:21'),
(7258, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:19.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:22'),
(7259, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AB1A077FF0113337783\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634583827_941495938551434_2500638377299876589_n.enc?ccb=11-4&oh=01_Q5Aa3wEMnL-e2onKlgz-Y_VfGoUPz9GDuI8mRRp5QZK36Y3TgQ&oe=69B5C5E0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"CL6XZyZARE1Vqf2VaMlpbggpDOYAY0bTofKFEOPHq8w=\",\"fileLength\":\"164731\",\"height\":900,\"width\":1600,\"mediaKey\":\"cRXSoq4bw0UdOInEl2GlzCNlJj+YXJXdTzIxeKYIOjY=\",\"fileEncSha256\":\"t8+7z2SyCkvQb0UNPb\\/kVroJvxGWxclAT9F6WMMil+k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634583827_941495938551434_2500638377299876589_n.enc?ccb=11-4&oh=01_Q5Aa3wEMnL-e2onKlgz-Y_VfGoUPz9GDuI8mRRp5QZK36Y3TgQ&oe=69B5C5E0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939937\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQBAwUGAv\\/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA52Se46K7PfA8OeoWbVs2Bzx0Yjna36+j0UV9OiWp6dviMmWa3K48acWWbKOdKQ1ZIkdFmMQ82+rdBpiy0186vHX17om12PL106Kp5KafTnMmiiA8wgBogGEAgAZ\\/\\/8QAIBEAAgIDAAIDAQAAAAAAAAAAAAECEQMSITFBEBNRUv\\/aAAgBAgEBPwCK6P7r4zbL+G8\\/cTd\\/wKTfkyT1XBZWLJb8Cmio+mNdojFSdIjhbVjj8QkrtmJRg20yDT4yFY1SZbLNmbM3Z\\/\\/EAB8RAAICAQQDAAAAAAAAAAAAAAECABEDECAhMQQSUf\\/aAAgBAwEBPwDaEQ91DgxnqNgW6EyeOqr7aHjiWYC0LMRRMLVLHyHSooC7v\\/\\/EACwQAAEDAgUEAQMFAQAAAAAAAAEAAgMEEQUSEyFRIjFBYVIUMpEVIzNxgUL\\/2gAIAQEAAT8AQVDgLJaZkr5SHOF9l+gvB6KogI4LWNPRUgj2nYXiLTs9rk7D8Qaf4mu\\/pOpa1h6qW\\/8ASdHO37qV4VjwgqHHKiCJsNmuA2BKjx17gbws2PKjxi7b6PbvYqPG4nj+J\\/8AiZjVM4kEPBHpDFaUkC7hfkI4lR+ZR+FJhmUXz7Hbsn4Xl\\/7COGOAJDgvpjym08pNmE\\/4VoVLO2cK1Qw3DiCjU1LLEv7drhGplIcC4dXfZfXQv2zt\\/KfIHjKJWZeLosOQkPaRblRPYGkOF7+VTuaJ7j7VNNGWnK7fgp7sxurx68QksWk73VdDTmOR0AYGs83Qik4WSQHsVaQc\\/lfue0HSjcFwWrJ8itaT5FPke+2Y9lmNrXNihSuMLwwi\\/sJ9PLE65N7HdVriZG5G2sPCw4gyOMjQ7wAUyha6El9O4HkLEoY4qjLGLADsh1HbYJsebYblU9HTPaBOXxvPI2VRKY2SMmdYjdpATqwmFnQD7ssQkvNZtxssP7XLgN\\/Kgr6aSPK2QEgWWIAtqZb97rMSdlhUjopHOAbbyXeFWuimpzuwm3SVPWGckyONymysadpXWHYJ0rZMznu6vCjlaGjrA9WUNZph+46hZOmMjup4PtMIAcbi4THZb790Xu+Xb2tP2FpHkLRdyFoO5C0H+LLRfwtF\\/C0njwtN\\/wAV\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"shvtUB2wvFRwPQ==\",\"firstScanLength\":14673,\"scansSidecar\":\"shvtUB2wvFRwPWaIJ2vksMvzLZw5rZMhGQQaVfRGf2r88rVlrkB20g==\",\"scanLengths\":[14673,68320,25643,56093],\"midQualityFileSha256\":\"ZYC\\/QZpfrGdZ2RUK92wJLmKRx4z9b1BXK0G2tzYn0Wg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KYZiJQ+11h5GSeZccB7WLK1enz++izBR4QdUzH0OPcM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939939,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:39.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:39'),
(7260, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:39.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:39'),
(7261, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AB1A077FF0113337783\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634583827_941495938551434_2500638377299876589_n.enc?ccb=11-4&oh=01_Q5Aa3wEMnL-e2onKlgz-Y_VfGoUPz9GDuI8mRRp5QZK36Y3TgQ&oe=69B5C5E0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"CL6XZyZARE1Vqf2VaMlpbggpDOYAY0bTofKFEOPHq8w=\",\"fileLength\":\"164731\",\"height\":900,\"width\":1600,\"mediaKey\":\"cRXSoq4bw0UdOInEl2GlzCNlJj+YXJXdTzIxeKYIOjY=\",\"fileEncSha256\":\"t8+7z2SyCkvQb0UNPb\\/kVroJvxGWxclAT9F6WMMil+k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634583827_941495938551434_2500638377299876589_n.enc?ccb=11-4&oh=01_Q5Aa3wEMnL-e2onKlgz-Y_VfGoUPz9GDuI8mRRp5QZK36Y3TgQ&oe=69B5C5E0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939937\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQBAwUGAv\\/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA52Se46K7PfA8OeoWbVs2Bzx0Yjna36+j0UV9OiWp6dviMmWa3K48acWWbKOdKQ1ZIkdFmMQ82+rdBpiy0186vHX17om12PL106Kp5KafTnMmiiA8wgBogGEAgAZ\\/\\/8QAIBEAAgIDAAIDAQAAAAAAAAAAAAECEQMSITFBEBNRUv\\/aAAgBAgEBPwCK6P7r4zbL+G8\\/cTd\\/wKTfkyT1XBZWLJb8Cmio+mNdojFSdIjhbVjj8QkrtmJRg20yDT4yFY1SZbLNmbM3Z\\/\\/EAB8RAAICAQQDAAAAAAAAAAAAAAECABEDECAhMQQSUf\\/aAAgBAwEBPwDaEQ91DgxnqNgW6EyeOqr7aHjiWYC0LMRRMLVLHyHSooC7v\\/\\/EACwQAAEDAgUEAQMFAQAAAAAAAAEAAgMEEQUSEyFRIjFBYVIUMpEVIzNxgUL\\/2gAIAQEAAT8AQVDgLJaZkr5SHOF9l+gvB6KogI4LWNPRUgj2nYXiLTs9rk7D8Qaf4mu\\/pOpa1h6qW\\/8ASdHO37qV4VjwgqHHKiCJsNmuA2BKjx17gbws2PKjxi7b6PbvYqPG4nj+J\\/8AiZjVM4kEPBHpDFaUkC7hfkI4lR+ZR+FJhmUXz7Hbsn4Xl\\/7COGOAJDgvpjym08pNmE\\/4VoVLO2cK1Qw3DiCjU1LLEv7drhGplIcC4dXfZfXQv2zt\\/KfIHjKJWZeLosOQkPaRblRPYGkOF7+VTuaJ7j7VNNGWnK7fgp7sxurx68QksWk73VdDTmOR0AYGs83Qik4WSQHsVaQc\\/lfue0HSjcFwWrJ8itaT5FPke+2Y9lmNrXNihSuMLwwi\\/sJ9PLE65N7HdVriZG5G2sPCw4gyOMjQ7wAUyha6El9O4HkLEoY4qjLGLADsh1HbYJsebYblU9HTPaBOXxvPI2VRKY2SMmdYjdpATqwmFnQD7ssQkvNZtxssP7XLgN\\/Kgr6aSPK2QEgWWIAtqZb97rMSdlhUjopHOAbbyXeFWuimpzuwm3SVPWGckyONymysadpXWHYJ0rZMznu6vCjlaGjrA9WUNZph+46hZOmMjup4PtMIAcbi4THZb790Xu+Xb2tP2FpHkLRdyFoO5C0H+LLRfwtF\\/C0njwtN\\/wAV\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"shvtUB2wvFRwPQ==\",\"firstScanLength\":14673,\"scansSidecar\":\"shvtUB2wvFRwPWaIJ2vksMvzLZw5rZMhGQQaVfRGf2r88rVlrkB20g==\",\"scanLengths\":[14673,68320,25643,56093],\"midQualityFileSha256\":\"ZYC\\/QZpfrGdZ2RUK92wJLmKRx4z9b1BXK0G2tzYn0Wg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KYZiJQ+11h5GSeZccB7WLK1enz++izBR4QdUzH0OPcM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770939939,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:39.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:39'),
(7262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:39.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:39'),
(7263, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:39.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:40'),
(7264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:39.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:40'),
(7265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:40.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:40'),
(7266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:40.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:40'),
(7267, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:40.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:40'),
(7268, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:40.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:41'),
(7269, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:43.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:43'),
(7270, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:43.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:44'),
(7271, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:45.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:45'),
(7272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5EBB2B7908CA4ABA590F3287422339F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634713571_846553188415355_7085072293373188045_n.enc?ccb=11-4&oh=01_Q5Aa3wHGdMNbm9-mqp7nmUmylquHa8YjBQrv9LYtD7FzBBQdjw&oe=69B5D541&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jgjzS4oz\\/IFbQ1eD\\/SesZ5pjBfywMaKHSNG4imnGZRY=\",\"fileLength\":\"5549\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"rjV62FjdDYwGLik+PcjjAhcwxloHXWZOJM+bmZIJVk4=\",\"fileEncSha256\":\"KOWQBO1cPx+ik54JIKllYg8b1Rc7egX56KfUn+m1kp8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634713571_846553188415355_7085072293373188045_n.enc?ccb=11-4&oh=01_Q5Aa3wHGdMNbm9-mqp7nmUmylquHa8YjBQrv9LYtD7FzBBQdjw&oe=69B5D541&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939944\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABUfJUBPU0pVXFpZVkwpGxokKi4zT1hRPEJKTEpIRk5ST0NNVFJIRklNR0VTUUMtOUJKTEtENTo5NURJSUpLTA==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:45.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:45'),
(7273, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:45.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:45'),
(7274, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5EBB2B7908CA4ABA590F3287422339F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634713571_846553188415355_7085072293373188045_n.enc?ccb=11-4&oh=01_Q5Aa3wHGdMNbm9-mqp7nmUmylquHa8YjBQrv9LYtD7FzBBQdjw&oe=69B5D541&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jgjzS4oz\\/IFbQ1eD\\/SesZ5pjBfywMaKHSNG4imnGZRY=\",\"fileLength\":\"5549\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"rjV62FjdDYwGLik+PcjjAhcwxloHXWZOJM+bmZIJVk4=\",\"fileEncSha256\":\"KOWQBO1cPx+ik54JIKllYg8b1Rc7egX56KfUn+m1kp8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634713571_846553188415355_7085072293373188045_n.enc?ccb=11-4&oh=01_Q5Aa3wHGdMNbm9-mqp7nmUmylquHa8YjBQrv9LYtD7FzBBQdjw&oe=69B5D541&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939944\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABUfJUBPU0pVXFpZVkwpGxokKi4zT1hRPEJKTEpIRk5ST0NNVFJIRklNR0VTUUMtOUJKTEtENTo5NURJSUpLTA==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:45.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:45'),
(7275, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5EBB2B7908CA4ABA590F3287422339F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939945712,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:45.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:45'),
(7276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:46'),
(7277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:46'),
(7278, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:46'),
(7279, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:46'),
(7280, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AE40253376E3248B8EF\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aMK+26Ogo7ol\\/a2xVD8RFWBK7DNqKE5LqtcQBTCqZus=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939946,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:46'),
(7281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:47.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:47'),
(7282, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AE40253376E3248B8EF\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aMK+26Ogo7ol\\/a2xVD8RFWBK7DNqKE5LqtcQBTCqZus=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770939946,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:47'),
(7283, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:47.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:47'),
(7284, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:47'),
(7285, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:47.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:47'),
(7286, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:47.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:48'),
(7287, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:46.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:48'),
(7288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5EBB2B7908CA4ABA590F3287422339F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939945712,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:45.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:48'),
(7289, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A55C476A2AFEB5E2370919B27EE26D85\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635046623_1461225892058147_4106623659062471807_n.enc?ccb=11-4&oh=01_Q5Aa3wFou6EdKevc-bHzf2l0H1eh6iT6UcrHYmJzbxuOifkAsQ&oe=69B5D0E6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"adOForY8QrhvVaoGXLM1+Criz1rTbvj3vWSENcCq9wA=\",\"fileLength\":\"19686\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"RV9mxcfZ294FijSfQwUyhcrBzYtkp\\/xHxnf5k1vUd1A=\",\"fileEncSha256\":\"QZ5wwegebqEr2Pso9jGB+0\\/XtFptJqTsnOIXoh6F+7g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635046623_1461225892058147_4106623659062471807_n.enc?ccb=11-4&oh=01_Q5Aa3wFou6EdKevc-bHzf2l0H1eh6iT6UcrHYmJzbxuOifkAsQ&oe=69B5D0E6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939948\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AFZYSz1QR0FBPEdGTVNBTDNGSElCTTFBRkxKQS44RkFRRjFASD5KQSMtOkVQMERJIyBGUzREQDtCJkE8OkNESQ==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939955,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:55.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:55'),
(7290, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A55C476A2AFEB5E2370919B27EE26D85\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635046623_1461225892058147_4106623659062471807_n.enc?ccb=11-4&oh=01_Q5Aa3wFou6EdKevc-bHzf2l0H1eh6iT6UcrHYmJzbxuOifkAsQ&oe=69B5D0E6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"adOForY8QrhvVaoGXLM1+Criz1rTbvj3vWSENcCq9wA=\",\"fileLength\":\"19686\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"RV9mxcfZ294FijSfQwUyhcrBzYtkp\\/xHxnf5k1vUd1A=\",\"fileEncSha256\":\"QZ5wwegebqEr2Pso9jGB+0\\/XtFptJqTsnOIXoh6F+7g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635046623_1461225892058147_4106623659062471807_n.enc?ccb=11-4&oh=01_Q5Aa3wFou6EdKevc-bHzf2l0H1eh6iT6UcrHYmJzbxuOifkAsQ&oe=69B5D0E6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939948\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AFZYSz1QR0FBPEdGTVNBTDNGSElCTTFBRkxKQS44RkFRRjFASD5KQSMtOkVQMERJIyBGUzREQDtCJkE8OkNESQ==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939955,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:55.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:56'),
(7291, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:55.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:56'),
(7292, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A55C476A2AFEB5E2370919B27EE26D85\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939955774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:55.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:56'),
(7293, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:55.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:56'),
(7294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A55C476A2AFEB5E2370919B27EE26D85\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939955774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:55.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:56'),
(7295, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:56.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:45:56'),
(7296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:45:56.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:45:56'),
(7297, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:03'),
(7298, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5CA999264C40CBEA3AFD9DF6EDCC7D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19969794_1625991261871673_5583342793035409542_n.enc?ccb=11-4&oh=01_Q5Aa3wELKO-S-DE9AD3hpecwM0rRTi3ipkX07ixMBxojgqd4XA&oe=69B5D9F3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gyQLn9k6OQYCZy\\/ZMTpu2EtXRWBhB7ujwjavizfWGZk=\",\"fileLength\":\"15813\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"vpVzRe5zpek6S2oznefe2Y9U2qd6ZPhwO6DSmEaGyys=\",\"fileEncSha256\":\"XWkOsW6vDD7llmKijxSzPMX0Cz3n7qZc4cURbMHkX6o=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19969794_1625991261871673_5583342793035409542_n.enc?ccb=11-4&oh=01_Q5Aa3wELKO-S-DE9AD3hpecwM0rRTi3ipkX07ixMBxojgqd4XA&oe=69B5D9F3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939957\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACUZVl9VR1c9OUA6Q0NCOElLUVBKMUxQRFdHTEBFMT1DJDtPUzw\\/SkVFQkYvUTJCTlM3Q1EzOEtQQzRJN0QXRQ==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:03.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:03'),
(7299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:03'),
(7300, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5CA999264C40CBEA3AFD9DF6EDCC7D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19969794_1625991261871673_5583342793035409542_n.enc?ccb=11-4&oh=01_Q5Aa3wELKO-S-DE9AD3hpecwM0rRTi3ipkX07ixMBxojgqd4XA&oe=69B5D9F3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gyQLn9k6OQYCZy\\/ZMTpu2EtXRWBhB7ujwjavizfWGZk=\",\"fileLength\":\"15813\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"vpVzRe5zpek6S2oznefe2Y9U2qd6ZPhwO6DSmEaGyys=\",\"fileEncSha256\":\"XWkOsW6vDD7llmKijxSzPMX0Cz3n7qZc4cURbMHkX6o=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19969794_1625991261871673_5583342793035409542_n.enc?ccb=11-4&oh=01_Q5Aa3wELKO-S-DE9AD3hpecwM0rRTi3ipkX07ixMBxojgqd4XA&oe=69B5D9F3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939957\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACUZVl9VR1c9OUA6Q0NCOElLUVBKMUxQRFdHTEBFMT1DJDtPUzw\\/SkVFQkYvUTJCTlM3Q1EzOEtQQzRJN0QXRQ==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:03.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:03'),
(7301, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5CA999264C40CBEA3AFD9DF6EDCC7D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939963752,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:03.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:03'),
(7302, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5CA999264C40CBEA3AFD9DF6EDCC7D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939963752,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:03.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:04'),
(7303, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:04.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:04'),
(7304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:04.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:04'),
(7305, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:12'),
(7306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/14734875_912704201154966_7418591174454756712_n.enc?ccb=11-4&oh=01_Q5Aa3wE5SrkxG2VxqFpQ5_Cmq1Ef8MjI_JFlrE-XzAYgFnc3xg&oe=69B5E660&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WM45GdAY8qxp2z\\/qzCfIQjmOHY1VbVaF0umFNk12qrQ=\",\"fileLength\":\"8680\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"sgeRHwpblgyyBv5MWbb+L3zcfMGDkyQxOoBeKEJKR18=\",\"fileEncSha256\":\"yJdyT82F0MvQZN94WU+Blr5qNgnwi2+OgzpGfJWdWI8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/14734875_912704201154966_7418591174454756712_n.enc?ccb=11-4&oh=01_Q5Aa3wE5SrkxG2VxqFpQ5_Cmq1Ef8MjI_JFlrE-XzAYgFnc3xg&oe=69B5E660&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939969\",\"waveform\":\"ADxQWFdXVFAuN0pWTTMwR1FXUE5HT0xKSU1PTUxQMTRKR0pBQ0hEPyssSyRCUzdJTkY+MygtQ0QhIVBSUU1KQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939971,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:12'),
(7307, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:12'),
(7308, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/14734875_912704201154966_7418591174454756712_n.enc?ccb=11-4&oh=01_Q5Aa3wE5SrkxG2VxqFpQ5_Cmq1Ef8MjI_JFlrE-XzAYgFnc3xg&oe=69B5E660&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WM45GdAY8qxp2z\\/qzCfIQjmOHY1VbVaF0umFNk12qrQ=\",\"fileLength\":\"8680\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"sgeRHwpblgyyBv5MWbb+L3zcfMGDkyQxOoBeKEJKR18=\",\"fileEncSha256\":\"yJdyT82F0MvQZN94WU+Blr5qNgnwi2+OgzpGfJWdWI8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/14734875_912704201154966_7418591174454756712_n.enc?ccb=11-4&oh=01_Q5Aa3wE5SrkxG2VxqFpQ5_Cmq1Ef8MjI_JFlrE-XzAYgFnc3xg&oe=69B5E660&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939969\",\"waveform\":\"ADxQWFdXVFAuN0pWTTMwR1FXUE5HT0xKSU1PTUxQMTRKR0pBQ0hEPyssSyRCUzdJTkY+MygtQ0QhIVBSUU1KQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770939971,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:12'),
(7309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939972652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:12'),
(7310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939972668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:13'),
(7311, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770939972652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7312, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939972668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:13'),
(7313, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:13'),
(7314, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:12.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:13'),
(7315, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:14.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:14'),
(7316, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:14.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:14'),
(7317, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939974825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:14.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:14'),
(7318, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A59D38CE1847C4172CB6369B61E74F9F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770939974825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:14.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:15'),
(7319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACF77B0E3A24D354F7B0066D6F326B22\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Não não\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4eqrcEgz9T5f3RBPhsereE9SkE94L8hS+FKHt\\/4Vhow=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:17'),
(7320, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:17'),
(7321, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACF77B0E3A24D354F7B0066D6F326B22\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Não não\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4eqrcEgz9T5f3RBPhsereE9SkE94L8hS+FKHt\\/4Vhow=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:17'),
(7322, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:17'),
(7323, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:17'),
(7324, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:18'),
(7325, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:18'),
(7326, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:17.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:18'),
(7327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:18.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:18'),
(7328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:18.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:18'),
(7329, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:28.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:28'),
(7330, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:28.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:28'),
(7331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:28.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:28'),
(7332, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC0B58D21C3745AF3D059A6953D9BB45\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vou ficar com o plano do celular só mesmo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F53M2caymkzcdH3asf3gG5nnL0YvCIAwap56h1emi0A=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939988,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:28.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:28'),
(7333, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:28.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:28'),
(7334, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:29.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:29'),
(7335, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:29.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:29'),
(7336, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"AC0B58D21C3745AF3D059A6953D9BB45\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vou ficar com o plano do celular só mesmo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F53M2caymkzcdH3asf3gG5nnL0YvCIAwap56h1emi0A=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770939988,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:28.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:29'),
(7337, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:29.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:29'),
(7338, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:29.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:29'),
(7339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A53446648AB5914819EF53478E13A5C9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939990541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:30.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:46:30'),
(7340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A53446648AB5914819EF53478E13A5C9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770939990541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:46:30.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:46:30'),
(7341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A051E0EC0266E210930\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQOhw4qwnJmCDWwUCXAShTFRzcrMv1kE7VrJ5gtXhMU_QJ8oU0MXeqIWtL2ZjYI1Ycz-MqO0BVtAUWgzeV6DDJWOLowBkBp1w8lhQK7EYw?ccb=9-4&oh=01_Q5Aa3wEXofetrWkejOoNhv3T_OBltlD9YeiompqUKLVKfrJ51w&oe=69B5E876&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"mcM8VIiTeCyaBiNpc5wM1fDVB0yjJMz7UsjXzMq9B50=\",\"fileLength\":\"138136\",\"height\":900,\"width\":1600,\"mediaKey\":\"mC4cg5rT9vU4oqqRuenyGjy6vQd4GlwJW8BF\\/vPcTnU=\",\"fileEncSha256\":\"vRPuVSlO2pIPE7Nk9kMwOBPS\\/+I1GOlwEvUlU+XmnX8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQOhw4qwnJmCDWwUCXAShTFRzcrMv1kE7VrJ5gtXhMU_QJ8oU0MXeqIWtL2ZjYI1Ycz-MqO0BVtAUWgzeV6DDJWOLowBkBp1w8lhQK7EYw?ccb=9-4&oh=01_Q5Aa3wEXofetrWkejOoNhv3T_OBltlD9YeiompqUKLVKfrJ51w&oe=69B5E876&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940020\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQBAgMGBf\\/EABkBAAMBAQEAAAAAAAAAAAAAAAECAwAEBf\\/aAAwDAQACEAMQAAAA8iMq9yswvZNvEQ+sVjG5QTBq56Q82PSTAtmzVoqm8PbE1AW9k9+ZG1WMlglXTDqdrNjJAqALtCdedXYRvYP6qYvLsM+Snjt0ZzYcZAHqAmkCgmAJgCW\\/\\/8QAIBEAAwABBAMBAQAAAAAAAAAAAAECEQMEEkEUIVExof\\/aAAgBAgEBPwCtpjsW2b7PDr6eFf0e01C2iFLFXvLOQ6H7X6S2uxe1liayVSyYRPEc5loeg13\\/AAxS7Gzm0TqUO2O2f\\/\\/EAB0RAAICAwADAAAAAAAAAAAAAAABAhEQEiEDMVH\\/2gAIAQMBAT8AssssvDaIzd9LxP0RQopiT2x0kuHjTvppH4alFFZ\\/\\/8QAMBAAAgIBAgMGAwkBAAAAAAAAAQIAAxESMQQhYRMiQVGBkUJTcQUQFBUgMjNDUrH\\/2gAIAQEAAT8AC5+IQr1EFbEeHvNDZxiGpxuJpPkZpYeBmPuIhEyfMxSfMytHszhzy6zLKcajC7H4jAzDxhdvOBGbYEzsHJ\\/aZ2D\\/AOT7QKcytCFPdBlgwdsfoQFV1LZjpOGetQDYNRHWXIx5VsFB6wqUfnz+kRhiFFcnO\\/hG0rtWGmsfJEZS21YEIIsJCgytdZ7yb+Qn4evbBxLOFHPQDnMYNWcMCIHBYZ2gCEbFfSWgLs5jM3+oqszd+4rneU5Bx2xz9J3s4NuABvO9g4vI8uU4rWxGp9R\\/5KldrAEUsfKLVdy1Vt7S6u0n+In0j12fKI9J22G5gchDxYXw545Yi8dgnUMgxeLcv3cY6wkuvPE+yUb8wGhlUgfFCl5\\/tqj03Yz21Us4a2zmbqxDCZmVtgwXALGsIfUpIPSG+35je8TirFJyzN9TH4h22Zh6y1QjFQwbqITCYGmuapmZmR4z\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"ZdY\\/GxbtB9ITfg==\",\"firstScanLength\":12283,\"scansSidecar\":\"ZdY\\/GxbtB9ITftMF6XviEjgg7pMlGp5\\/Afwo2f8GPu96XPREvQwHTg==\",\"scanLengths\":[12283,61211,19476,45164],\"midQualityFileSha256\":\"yteFERMgDmld2Vec6pO02QgVEDzH\\/GuHwbnhKVuJHsc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"much08LSmbq6XVPyH6mgh6KGBNOScq4A3E61BhftVC0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940021,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:47:02'),
(7342, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A051E0EC0266E210930\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQOhw4qwnJmCDWwUCXAShTFRzcrMv1kE7VrJ5gtXhMU_QJ8oU0MXeqIWtL2ZjYI1Ycz-MqO0BVtAUWgzeV6DDJWOLowBkBp1w8lhQK7EYw?ccb=9-4&oh=01_Q5Aa3wEXofetrWkejOoNhv3T_OBltlD9YeiompqUKLVKfrJ51w&oe=69B5E876&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"mcM8VIiTeCyaBiNpc5wM1fDVB0yjJMz7UsjXzMq9B50=\",\"fileLength\":\"138136\",\"height\":900,\"width\":1600,\"mediaKey\":\"mC4cg5rT9vU4oqqRuenyGjy6vQd4GlwJW8BF\\/vPcTnU=\",\"fileEncSha256\":\"vRPuVSlO2pIPE7Nk9kMwOBPS\\/+I1GOlwEvUlU+XmnX8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQOhw4qwnJmCDWwUCXAShTFRzcrMv1kE7VrJ5gtXhMU_QJ8oU0MXeqIWtL2ZjYI1Ycz-MqO0BVtAUWgzeV6DDJWOLowBkBp1w8lhQK7EYw?ccb=9-4&oh=01_Q5Aa3wEXofetrWkejOoNhv3T_OBltlD9YeiompqUKLVKfrJ51w&oe=69B5E876&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940020\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQBAgMGBf\\/EABkBAAMBAQEAAAAAAAAAAAAAAAECAwAEBf\\/aAAwDAQACEAMQAAAA8iMq9yswvZNvEQ+sVjG5QTBq56Q82PSTAtmzVoqm8PbE1AW9k9+ZG1WMlglXTDqdrNjJAqALtCdedXYRvYP6qYvLsM+Snjt0ZzYcZAHqAmkCgmAJgCW\\/\\/8QAIBEAAwABBAMBAQAAAAAAAAAAAAECEQMEEkEUIVExof\\/aAAgBAgEBPwCtpjsW2b7PDr6eFf0e01C2iFLFXvLOQ6H7X6S2uxe1liayVSyYRPEc5loeg13\\/AAxS7Gzm0TqUO2O2f\\/\\/EAB0RAAICAwADAAAAAAAAAAAAAAABAhEQEiEDMVH\\/2gAIAQMBAT8AssssvDaIzd9LxP0RQopiT2x0kuHjTvppH4alFFZ\\/\\/8QAMBAAAgIBAgMGAwkBAAAAAAAAAQIAAxESMQQhYRMiQVGBkUJTcQUQFBUgMjNDUrH\\/2gAIAQEAAT8AC5+IQr1EFbEeHvNDZxiGpxuJpPkZpYeBmPuIhEyfMxSfMytHszhzy6zLKcajC7H4jAzDxhdvOBGbYEzsHJ\\/aZ2D\\/AOT7QKcytCFPdBlgwdsfoQFV1LZjpOGetQDYNRHWXIx5VsFB6wqUfnz+kRhiFFcnO\\/hG0rtWGmsfJEZS21YEIIsJCgytdZ7yb+Qn4evbBxLOFHPQDnMYNWcMCIHBYZ2gCEbFfSWgLs5jM3+oqszd+4rneU5Bx2xz9J3s4NuABvO9g4vI8uU4rWxGp9R\\/5KldrAEUsfKLVdy1Vt7S6u0n+In0j12fKI9J22G5gchDxYXw545Yi8dgnUMgxeLcv3cY6wkuvPE+yUb8wGhlUgfFCl5\\/tqj03Yz21Us4a2zmbqxDCZmVtgwXALGsIfUpIPSG+35je8TirFJyzN9TH4h22Zh6y1QjFQwbqITCYGmuapmZmR4z\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"ZdY\\/GxbtB9ITfg==\",\"firstScanLength\":12283,\"scansSidecar\":\"ZdY\\/GxbtB9ITftMF6XviEjgg7pMlGp5\\/Afwo2f8GPu96XPREvQwHTg==\",\"scanLengths\":[12283,61211,19476,45164],\"midQualityFileSha256\":\"yteFERMgDmld2Vec6pO02QgVEDzH\\/GuHwbnhKVuJHsc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"much08LSmbq6XVPyH6mgh6KGBNOScq4A3E61BhftVC0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940021,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:47:02'),
(7343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:47:02'),
(7344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:47:02'),
(7345, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:47:02'),
(7346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:47:03'),
(7347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:47:03'),
(7348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:47:02.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:47:03'),
(7349, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:19.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:20'),
(7350, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A566D80B8CCCEDC9DD8BC6925ECDB7F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634776851_1105848031621650_117660412287560811_n.enc?ccb=11-4&oh=01_Q5Aa3wEbxMNKtzrHNbY0Mz3DcyQzBHXUedhE0OWovhURzXyNpA&oe=69B5E927&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZKIlngw+RhsaDHDrK+qeRW0eVo6CHnOFPORhWxjz5IQ=\",\"fileLength\":\"106246\",\"seconds\":45,\"ptt\":true,\"mediaKey\":\"2wnaVCba7XIudKwg6gF3aQOKPwE13JRxRL4KRQaK7xU=\",\"fileEncSha256\":\"8rNZvoALJK7ehxFgH\\/xquYwFz1QeNyu7b4mp5BB9X74=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634776851_1105848031621650_117660412287560811_n.enc?ccb=11-4&oh=01_Q5Aa3wEbxMNKtzrHNbY0Mz3DcyQzBHXUedhE0OWovhURzXyNpA&oe=69B5E927&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940055\",\"contextInfo\":{\"stanzaId\":\"AC591F7460D1958D49FB3DE941057799\",\"participant\":\"73972322455652@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XBWGTyfzwMIiSdmT7IKUp\\/UXjAffGIhhSRx4knQHs1M=\",\"fileLength\":\"21919\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"eLoBuTSQ0FSnLSVNUlDdADL1oqS5MTy2HYvI8l5k55s=\",\"fileEncSha256\":\"bxevBMxUSsXP3xfTT7\\/5LhYyatcFvJ3UvpliHpQOIQw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939384\",\"waveform\":\"AABTUkNGQUNLSEwUWFRKSTEAAAAAPlRWVEVATVlFTVRaV1FKPSZXWkVBOk5HWU9KWh0POClYOEJSWUNXNBAAAA==\"}},\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"waveform\":\"AFM\\/Mk87VSpMNEIgVlNGRT1URENALFFfYVIuN0FLUlEuTUo+GyJBXVNFOUtRNkA5PExLMkI5HFo\\/FVU3NhVLDw==\"}},\"contextInfo\":{\"stanzaId\":\"AC591F7460D1958D49FB3DE941057799\",\"participant\":\"73972322455652@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XBWGTyfzwMIiSdmT7IKUp\\/UXjAffGIhhSRx4knQHs1M=\",\"fileLength\":\"21919\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"eLoBuTSQ0FSnLSVNUlDdADL1oqS5MTy2HYvI8l5k55s=\",\"fileEncSha256\":\"bxevBMxUSsXP3xfTT7\\/5LhYyatcFvJ3UvpliHpQOIQw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939384\",\"waveform\":\"AABTUkNGQUNLSEwUWFRKSTEAAAAAPlRWVEVATVlFTVRaV1FKPSZXWkVBOk5HWU9KWh0POClYOEJSWUNXNBAAAA==\"}},\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770940099,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:19.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:20'),
(7351, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A566D80B8CCCEDC9DD8BC6925ECDB7F8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940100085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:20.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:20'),
(7352, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:19.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:20'),
(7353, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A566D80B8CCCEDC9DD8BC6925ECDB7F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634776851_1105848031621650_117660412287560811_n.enc?ccb=11-4&oh=01_Q5Aa3wEbxMNKtzrHNbY0Mz3DcyQzBHXUedhE0OWovhURzXyNpA&oe=69B5E927&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZKIlngw+RhsaDHDrK+qeRW0eVo6CHnOFPORhWxjz5IQ=\",\"fileLength\":\"106246\",\"seconds\":45,\"ptt\":true,\"mediaKey\":\"2wnaVCba7XIudKwg6gF3aQOKPwE13JRxRL4KRQaK7xU=\",\"fileEncSha256\":\"8rNZvoALJK7ehxFgH\\/xquYwFz1QeNyu7b4mp5BB9X74=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634776851_1105848031621650_117660412287560811_n.enc?ccb=11-4&oh=01_Q5Aa3wEbxMNKtzrHNbY0Mz3DcyQzBHXUedhE0OWovhURzXyNpA&oe=69B5E927&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940055\",\"contextInfo\":{\"stanzaId\":\"AC591F7460D1958D49FB3DE941057799\",\"participant\":\"73972322455652@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XBWGTyfzwMIiSdmT7IKUp\\/UXjAffGIhhSRx4knQHs1M=\",\"fileLength\":\"21919\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"eLoBuTSQ0FSnLSVNUlDdADL1oqS5MTy2HYvI8l5k55s=\",\"fileEncSha256\":\"bxevBMxUSsXP3xfTT7\\/5LhYyatcFvJ3UvpliHpQOIQw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939384\",\"waveform\":\"AABTUkNGQUNLSEwUWFRKSTEAAAAAPlRWVEVATVlFTVRaV1FKPSZXWkVBOk5HWU9KWh0POClYOEJSWUNXNBAAAA==\"}},\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"waveform\":\"AFM\\/Mk87VSpMNEIgVlNGRT1URENALFFfYVIuN0FLUlEuTUo+GyJBXVNFOUtRNkA5PExLMkI5HFo\\/FVU3NhVLDw==\"}},\"contextInfo\":{\"stanzaId\":\"AC591F7460D1958D49FB3DE941057799\",\"participant\":\"73972322455652@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XBWGTyfzwMIiSdmT7IKUp\\/UXjAffGIhhSRx4knQHs1M=\",\"fileLength\":\"21919\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"eLoBuTSQ0FSnLSVNUlDdADL1oqS5MTy2HYvI8l5k55s=\",\"fileEncSha256\":\"bxevBMxUSsXP3xfTT7\\/5LhYyatcFvJ3UvpliHpQOIQw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635124695_1205398275103084_7607731251955479980_n.enc?ccb=11-4&oh=01_Q5Aa3wHO_kZXZZNcqIUAf19zjIISLki0GkJ2RyD8mSWiAPTBhg&oe=69B5D9DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770939384\",\"waveform\":\"AABTUkNGQUNLSEwUWFRKSTEAAAAAPlRWVEVATVlFTVRaV1FKPSZXWkVBOk5HWU9KWh0POClYOEJSWUNXNBAAAA==\"}},\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770940099,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:19.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:20'),
(7354, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A566D80B8CCCEDC9DD8BC6925ECDB7F8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940100085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:20.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:20'),
(7355, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:20.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:21'),
(7356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:20.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:21'),
(7357, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:40.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:41'),
(7358, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:40.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:41'),
(7359, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:51.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:51'),
(7360, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"presences\":{\"73972322455652@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:51.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:51'),
(7361, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:57'),
(7362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:57'),
(7363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:57'),
(7364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACFA5AC790CFBFF1D8681326F3C4E95D\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Entendi , mas por enquanto não tenho interesse não\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RZb7C01UDqsFR76cat6ymzD1yHPE+zkLtY5n+PXIgss=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940137,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.188Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:57'),
(7365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:57'),
(7366, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":false,\"id\":\"ACFA5AC790CFBFF1D8681326F3C4E95D\"},\"pushName\":\"Marcos\",\"message\":{\"extendedTextMessage\":{\"text\":\"Entendi , mas por enquanto não tenho interesse não\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RZb7C01UDqsFR76cat6ymzD1yHPE+zkLtY5n+PXIgss=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644881\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940137,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.188Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:57'),
(7367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:48:57'),
(7368, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:48:57.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:48:58');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7369, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A50A5450AE882C2079352482B274FFC4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Provedor: zeus10\\n*Usuário:* epds2esj\\n*Senha:* f6uqgprh\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770940149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:10'),
(7370, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:10'),
(7371, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:10'),
(7372, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A5450AE882C2079352482B274FFC4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940150613,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:10'),
(7373, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A5450AE882C2079352482B274FFC4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940150627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:10'),
(7374, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A5450AE882C2079352482B274FFC4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940150627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:11'),
(7375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:11'),
(7376, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A5450AE882C2079352482B274FFC4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940150613,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:11'),
(7377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A50A5450AE882C2079352482B274FFC4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Provedor: zeus10\\n*Usuário:* epds2esj\\n*Senha:* f6uqgprh\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770940149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:11'),
(7378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:10.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:11'),
(7379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:20.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:20'),
(7380, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5E90E75F83847DA50D980BD4928D839\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635076309_1327013495920742_7559402053856028638_n.enc?ccb=11-4&oh=01_Q5Aa3wH8XK7uYrbWfxiToc2w-9lQbsAM6SA3bHRhLaB4xeHhZQ&oe=69B5DEC4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gH+sZgw4TQbtBQyVzgQGfdxP6xwG9jh2CW4l1JrV5D4=\",\"fileLength\":\"5478\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"DUGPSLyfdxRd9t4IKTxuGdSvvx8cAr\\/H5kFDePts6RM=\",\"fileEncSha256\":\"U9l9pmJ\\/SqIwRyajE1nnwj3kf3GyRjOh2iVKxCwQrRY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635076309_1327013495920742_7559402053856028638_n.enc?ccb=11-4&oh=01_Q5Aa3wH8XK7uYrbWfxiToc2w-9lQbsAM6SA3bHRhLaB4xeHhZQ&oe=69B5DEC4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940158\",\"waveform\":\"AAAIFyMyPkE9P0hZXFEzQUo2SVRWWVpYUUlCQDw5NSYuQlxcVk08NjxWWlRILzFMTlBRTEZCQ0BIVlJEODpOWw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770940160,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:20.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:21'),
(7381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5E90E75F83847DA50D980BD4928D839\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635076309_1327013495920742_7559402053856028638_n.enc?ccb=11-4&oh=01_Q5Aa3wH8XK7uYrbWfxiToc2w-9lQbsAM6SA3bHRhLaB4xeHhZQ&oe=69B5DEC4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gH+sZgw4TQbtBQyVzgQGfdxP6xwG9jh2CW4l1JrV5D4=\",\"fileLength\":\"5478\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"DUGPSLyfdxRd9t4IKTxuGdSvvx8cAr\\/H5kFDePts6RM=\",\"fileEncSha256\":\"U9l9pmJ\\/SqIwRyajE1nnwj3kf3GyRjOh2iVKxCwQrRY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635076309_1327013495920742_7559402053856028638_n.enc?ccb=11-4&oh=01_Q5Aa3wH8XK7uYrbWfxiToc2w-9lQbsAM6SA3bHRhLaB4xeHhZQ&oe=69B5DEC4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940158\",\"waveform\":\"AAAIFyMyPkE9P0hZXFEzQUo2SVRWWVpYUUlCQDw5NSYuQlxcVk08NjxWWlRILzFMTlBRTEZCQ0BIVlJEODpOWw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770940160,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:20.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:21'),
(7382, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:20.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:21'),
(7383, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E90E75F83847DA50D980BD4928D839\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940161261,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:21.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:21'),
(7384, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E90E75F83847DA50D980BD4928D839\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940161269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:21.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:21'),
(7385, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E90E75F83847DA50D980BD4928D839\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940161261,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:21.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:22'),
(7386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E90E75F83847DA50D980BD4928D839\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940161269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:21.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:22'),
(7387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:21.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:22'),
(7388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:21.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:22'),
(7389, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E90E75F83847DA50D980BD4928D839\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770940165401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:25.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:25'),
(7390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5E90E75F83847DA50D980BD4928D839\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770940165401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:25.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:25'),
(7391, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5F10B96FBA11D7AB6AF1B4D4701CAAD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ok\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940166,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:26.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:26'),
(7392, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:26.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:26'),
(7393, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5F10B96FBA11D7AB6AF1B4D4701CAAD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ok\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940166,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:26.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:26'),
(7394, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:26.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:26'),
(7395, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5F10B96FBA11D7AB6AF1B4D4701CAAD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940166637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:26.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:26'),
(7396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:27.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:27'),
(7397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5F10B96FBA11D7AB6AF1B4D4701CAAD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940166637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:26.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:27'),
(7398, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:27.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:27'),
(7399, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5FB6D974279A4B17D3251A9AB8F102C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tranquilo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940169,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:29'),
(7400, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:29'),
(7401, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"73972322455652@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:29'),
(7402, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"73972322455652@lid\",\"fromMe\":true,\"id\":\"A5FB6D974279A4B17D3251A9AB8F102C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tranquilo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1714644\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940169,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:29'),
(7403, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5FB6D974279A4B17D3251A9AB8F102C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940169481,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:29'),
(7404, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"73972322455652@lid\",\"id\":\"A5FB6D974279A4B17D3251A9AB8F102C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940169481,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:30'),
(7405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:49:31'),
(7406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73972322455652@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/524700622_1622681505424298_1095420904639818309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDZIhpMIm2Skax4XM_doKzaest74jE4NIc-doKTtTLjA&oe=699B6E6B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:49:29.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:49:31'),
(7407, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3ADDD51AFA22834D1CD1\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aFyfc8MkW+eEjVPQY1uB5I1zerAC2mTXJOLzYQnLxZA=\",\"fileLength\":\"117015\",\"height\":900,\"width\":1600,\"mediaKey\":\"9ZDDBd9vrqfPEqHQU\\/pKiwiFD5IK1YDTROQQZ6Wby\\/k=\",\"fileEncSha256\":\"8gq3\\/DtUXNu1J4BZ6MIyfE07CHv4nvn3j7yBXL3lEZQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADCfPOw7zgcvvfAg9E86pPQOEzWA9fXeOtuTfz+lI530YAxGE0aqjE0z1olqxuakgZmdijPjnbN525A0Ym5ILEskHC4sGigTYAUAj\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAQIRFAMTUQQgITFB\\/9oACAECAQE\\/AMN8mJLkxJcj6WS+j0WNotCqKodMcfIpikWNjSfs3ULXSMmFGRA3493\\/xAAXEQEBAQEAAAAAAAAAAAAAAAARIAAw\\/9oACAEDAQE\\/AIZMycv\\/xAAsEAACAQIEBQMDBQAAAAAAAAAAAQIDERITITEEEFFSkUFCUwUjYRQgMkNU\\/9oACAEBAAE\\/AGn0Gn0Zhl0Zgn2sVOb9rMqp2My5r2swyW6ZZ9DMqd7M2p3szanyS8iqVW9Jy8jq1o7zkjOrfLLyZ1X5JeSNWq\\/7GZ1W383+zhZqFeMp7Jn1StRq4MpJW6c0+VtRUYfLEfD09fvxIcLGcb50dB8LZNuokkR4em1d14r8C4an\\/oiTSjJpSxJeqEzCYRoi5XtFvUlKWzk3ySuODHdFixKJrF3ROWJ3skWFdDm7WJO4otrZ+CxJEkiW5F2Gy76Du\\/Rn6yphccas\\/wAGevWRnUbauVyU6b2kz7b3ky1PuZan3MSh6TZaL98uTMTvZIWolzQj\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"KXUErh3S+LyNew==\",\"firstScanLength\":9605,\"scansSidecar\":\"KXUErh3S+LyNe9GrVYbbq5qTZUhmCT\\/GNOdRAQtW\\/oXOwoWyduJdZA==\",\"scanLengths\":[9605,31058,14242,62108],\"midQualityFileSha256\":\"8PMixHHJJXQOfKVarsAS0R8Sr6rWyuoXxvo7NpeXFIw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yZRzKzohKwj\\/KH1txtROMJAymaH7X5NzbezJDYfdOTQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940315,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:55.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:51:56'),
(7408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:55.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:51:56'),
(7409, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:55.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:51:56'),
(7410, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3ADDD51AFA22834D1CD1\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aFyfc8MkW+eEjVPQY1uB5I1zerAC2mTXJOLzYQnLxZA=\",\"fileLength\":\"117015\",\"height\":900,\"width\":1600,\"mediaKey\":\"9ZDDBd9vrqfPEqHQU\\/pKiwiFD5IK1YDTROQQZ6Wby\\/k=\",\"fileEncSha256\":\"8gq3\\/DtUXNu1J4BZ6MIyfE07CHv4nvn3j7yBXL3lEZQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADCfPOw7zgcvvfAg9E86pPQOEzWA9fXeOtuTfz+lI530YAxGE0aqjE0z1olqxuakgZmdijPjnbN525A0Ym5ILEskHC4sGigTYAUAj\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAQIRFAMTUQQgITFB\\/9oACAECAQE\\/AMN8mJLkxJcj6WS+j0WNotCqKodMcfIpikWNjSfs3ULXSMmFGRA3493\\/xAAXEQEBAQEAAAAAAAAAAAAAAAARIAAw\\/9oACAEDAQE\\/AIZMycv\\/xAAsEAACAQIEBQMDBQAAAAAAAAAAAQIDERITITEEEFFSkUFCUwUjYRQgMkNU\\/9oACAEBAAE\\/AGn0Gn0Zhl0Zgn2sVOb9rMqp2My5r2swyW6ZZ9DMqd7M2p3szanyS8iqVW9Jy8jq1o7zkjOrfLLyZ1X5JeSNWq\\/7GZ1W383+zhZqFeMp7Jn1StRq4MpJW6c0+VtRUYfLEfD09fvxIcLGcb50dB8LZNuokkR4em1d14r8C4an\\/oiTSjJpSxJeqEzCYRoi5XtFvUlKWzk3ySuODHdFixKJrF3ROWJ3skWFdDm7WJO4otrZ+CxJEkiW5F2Gy76Du\\/Rn6yphccas\\/wAGevWRnUbauVyU6b2kz7b3ky1PuZan3MSh6TZaL98uTMTvZIWolzQj\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"KXUErh3S+LyNew==\",\"firstScanLength\":9605,\"scansSidecar\":\"KXUErh3S+LyNe9GrVYbbq5qTZUhmCT\\/GNOdRAQtW\\/oXOwoWyduJdZA==\",\"scanLengths\":[9605,31058,14242,62108],\"midQualityFileSha256\":\"8PMixHHJJXQOfKVarsAS0R8Sr6rWyuoXxvo7NpeXFIw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770938532\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yZRzKzohKwj\\/KH1txtROMJAymaH7X5NzbezJDYfdOTQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940315,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:55.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:51:56'),
(7411, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:55.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:51:56'),
(7412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:56.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:51:56'),
(7413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:56.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:51:56'),
(7414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:51:55.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:51:57'),
(7415, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"presences\":{\"241274267389962@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:52:28.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:52:28'),
(7416, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"presences\":{\"241274267389962@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:52:28.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:52:28'),
(7417, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:38.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:38'),
(7418, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:38.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:38'),
(7419, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:40'),
(7420, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:40'),
(7421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:41'),
(7422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:41'),
(7423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:41'),
(7424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjXJ5_P6_I_Jwpz318gWWqTDrEq0yk-b-6ufUH89jzsA&oe=699B5FB2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:41'),
(7425, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5A39C95AC5289A861D6C8121E175913\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SoYuOgjfUdWefUuP7vX1FIBIw0Xqp4dIoMCcv0zh4bk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940480,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:41'),
(7426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:42.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:42'),
(7427, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:42.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:42'),
(7428, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:43.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:43'),
(7429, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B68E567B319BC9E004\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770940483,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:43.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:43'),
(7430, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:43.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:44'),
(7431, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B68E567B319BC9E004\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770940483,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:43.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:44'),
(7432, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5A39C95AC5289A861D6C8121E175913\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SoYuOgjfUdWefUuP7vX1FIBIw0Xqp4dIoMCcv0zh4bk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940480,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:40.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:44'),
(7433, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:45.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:45'),
(7434, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:45.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:45'),
(7435, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:46.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:46'),
(7436, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025CAE68C9D09C0BBE1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770940486,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:46.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:54:46'),
(7437, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:46.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7438, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025CAE68C9D09C0BBE1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770940486,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:54:46.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:54:46'),
(7439, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:31.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:32'),
(7440, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:31.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:32'),
(7441, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:37.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:37'),
(7442, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:37.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:37'),
(7443, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5034D797AE15A3F32E922B05F0653A4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940672113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:52'),
(7444, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5034D797AE15A3F32E922B05F0653A4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940672125,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:52'),
(7445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5034D797AE15A3F32E922B05F0653A4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940672113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:52'),
(7446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5034D797AE15A3F32E922B05F0653A4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940672125,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:52'),
(7447, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5034D797AE15A3F32E922B05F0653A4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Entrou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770940672,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:53'),
(7448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:53.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:53'),
(7449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:53.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:54'),
(7450, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5034D797AE15A3F32E922B05F0653A4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Entrou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770940672,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:54'),
(7451, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:54'),
(7452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:52.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:54'),
(7453, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:56.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:57:56'),
(7454, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:57:56.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:57:56'),
(7455, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:03.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:03'),
(7456, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:03.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:03'),
(7457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:03.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:04'),
(7458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:04.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:04'),
(7459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:04.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:04'),
(7460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:03.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:04'),
(7461, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AECE2487F5D45AB2790\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ele entra e depois volta pra essa tela\",\"contextInfo\":{\"stanzaId\":\"3ADDD51AFA22834D1CD1\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aFyfc8MkW+eEjVPQY1uB5I1zerAC2mTXJOLzYQnLxZA=\",\"fileLength\":\"117015\",\"height\":900,\"width\":1600,\"mediaKey\":\"9ZDDBd9vrqfPEqHQU\\/pKiwiFD5IK1YDTROQQZ6Wby\\/k=\",\"fileEncSha256\":\"8gq3\\/DtUXNu1J4BZ6MIyfE07CHv4nvn3j7yBXL3lEZQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADCfPOw7zgcvvfAg9E86pPQOEzWA9fXeOtuTfz+lI530YAxGE0aqjE0z1olqxuakgZmdijPjnbN525A0Ym5ILEskHC4sGigTYAUAj\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAQIRFAMTUQQgITFB\\/9oACAECAQE\\/AMN8mJLkxJcj6WS+j0WNotCqKodMcfIpikWNjSfs3ULXSMmFGRA3493\\/xAAXEQEBAQEAAAAAAAAAAAAAAAARIAAw\\/9oACAEDAQE\\/AIZMycv\\/xAAsEAACAQIEBQMDBQAAAAAAAAAAAQIDERITITEEEFFSkUFCUwUjYRQgMkNU\\/9oACAEBAAE\\/AGn0Gn0Zhl0Zgn2sVOb9rMqp2My5r2swyW6ZZ9DMqd7M2p3szanyS8iqVW9Jy8jq1o7zkjOrfLLyZ1X5JeSNWq\\/7GZ1W383+zhZqFeMp7Jn1StRq4MpJW6c0+VtRUYfLEfD09fvxIcLGcb50dB8LZNuokkR4em1d14r8C4an\\/oiTSjJpSxJeqEzCYRoi5XtFvUlKWzk3ySuODHdFixKJrF3ROWJ3skWFdDm7WJO4otrZ+CxJEkiW5F2Gy76Du\\/Rn6yphccas\\/wAGevWRnUbauVyU6b2kz7b3ky1PuZan3MSh6TZaL98uTMTvZIWolzQj\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"KXUErh3S+LyNew==\",\"firstScanLength\":9605,\"scansSidecar\":\"KXUErh3S+LyNe9GrVYbbq5qTZUhmCT\\/GNOdRAQtW\\/oXOwoWyduJdZA==\",\"scanLengths\":[9605,31058,14242,62108],\"midQualityFileSha256\":\"8PMixHHJJXQOfKVarsAS0R8Sr6rWyuoXxvo7NpeXFIw=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZZgue9jhlSxvxxNpFFaapniNs15jZLErYllgKT88D\\/E=\"}},\"contextInfo\":{\"stanzaId\":\"3ADDD51AFA22834D1CD1\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aFyfc8MkW+eEjVPQY1uB5I1zerAC2mTXJOLzYQnLxZA=\",\"fileLength\":\"117015\",\"height\":900,\"width\":1600,\"mediaKey\":\"9ZDDBd9vrqfPEqHQU\\/pKiwiFD5IK1YDTROQQZ6Wby\\/k=\",\"fileEncSha256\":\"8gq3\\/DtUXNu1J4BZ6MIyfE07CHv4nvn3j7yBXL3lEZQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADCfPOw7zgcvvfAg9E86pPQOEzWA9fXeOtuTfz+lI530YAxGE0aqjE0z1olqxuakgZmdijPjnbN525A0Ym5ILEskHC4sGigTYAUAj\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAQIRFAMTUQQgITFB\\/9oACAECAQE\\/AMN8mJLkxJcj6WS+j0WNotCqKodMcfIpikWNjSfs3ULXSMmFGRA3493\\/xAAXEQEBAQEAAAAAAAAAAAAAAAARIAAw\\/9oACAEDAQE\\/AIZMycv\\/xAAsEAACAQIEBQMDBQAAAAAAAAAAAQIDERITITEEEFFSkUFCUwUjYRQgMkNU\\/9oACAEBAAE\\/AGn0Gn0Zhl0Zgn2sVOb9rMqp2My5r2swyW6ZZ9DMqd7M2p3szanyS8iqVW9Jy8jq1o7zkjOrfLLyZ1X5JeSNWq\\/7GZ1W383+zhZqFeMp7Jn1StRq4MpJW6c0+VtRUYfLEfD09fvxIcLGcb50dB8LZNuokkR4em1d14r8C4an\\/oiTSjJpSxJeqEzCYRoi5XtFvUlKWzk3ySuODHdFixKJrF3ROWJ3skWFdDm7WJO4otrZ+CxJEkiW5F2Gy76Du\\/Rn6yphccas\\/wAGevWRnUbauVyU6b2kz7b3ky1PuZan3MSh6TZaL98uTMTvZIWolzQj\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"KXUErh3S+LyNew==\",\"firstScanLength\":9605,\"scansSidecar\":\"KXUErh3S+LyNe9GrVYbbq5qTZUhmCT\\/GNOdRAQtW\\/oXOwoWyduJdZA==\",\"scanLengths\":[9605,31058,14242,62108],\"midQualityFileSha256\":\"8PMixHHJJXQOfKVarsAS0R8Sr6rWyuoXxvo7NpeXFIw=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940683,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:03.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:05'),
(7462, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3AECE2487F5D45AB2790\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ele entra e depois volta pra essa tela\",\"contextInfo\":{\"stanzaId\":\"3ADDD51AFA22834D1CD1\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aFyfc8MkW+eEjVPQY1uB5I1zerAC2mTXJOLzYQnLxZA=\",\"fileLength\":\"117015\",\"height\":900,\"width\":1600,\"mediaKey\":\"9ZDDBd9vrqfPEqHQU\\/pKiwiFD5IK1YDTROQQZ6Wby\\/k=\",\"fileEncSha256\":\"8gq3\\/DtUXNu1J4BZ6MIyfE07CHv4nvn3j7yBXL3lEZQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADCfPOw7zgcvvfAg9E86pPQOEzWA9fXeOtuTfz+lI530YAxGE0aqjE0z1olqxuakgZmdijPjnbN525A0Ym5ILEskHC4sGigTYAUAj\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAQIRFAMTUQQgITFB\\/9oACAECAQE\\/AMN8mJLkxJcj6WS+j0WNotCqKodMcfIpikWNjSfs3ULXSMmFGRA3493\\/xAAXEQEBAQEAAAAAAAAAAAAAAAARIAAw\\/9oACAEDAQE\\/AIZMycv\\/xAAsEAACAQIEBQMDBQAAAAAAAAAAAQIDERITITEEEFFSkUFCUwUjYRQgMkNU\\/9oACAEBAAE\\/AGn0Gn0Zhl0Zgn2sVOb9rMqp2My5r2swyW6ZZ9DMqd7M2p3szanyS8iqVW9Jy8jq1o7zkjOrfLLyZ1X5JeSNWq\\/7GZ1W383+zhZqFeMp7Jn1StRq4MpJW6c0+VtRUYfLEfD09fvxIcLGcb50dB8LZNuokkR4em1d14r8C4an\\/oiTSjJpSxJeqEzCYRoi5XtFvUlKWzk3ySuODHdFixKJrF3ROWJ3skWFdDm7WJO4otrZ+CxJEkiW5F2Gy76Du\\/Rn6yphccas\\/wAGevWRnUbauVyU6b2kz7b3ky1PuZan3MSh6TZaL98uTMTvZIWolzQj\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"KXUErh3S+LyNew==\",\"firstScanLength\":9605,\"scansSidecar\":\"KXUErh3S+LyNe9GrVYbbq5qTZUhmCT\\/GNOdRAQtW\\/oXOwoWyduJdZA==\",\"scanLengths\":[9605,31058,14242,62108],\"midQualityFileSha256\":\"8PMixHHJJXQOfKVarsAS0R8Sr6rWyuoXxvo7NpeXFIw=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZZgue9jhlSxvxxNpFFaapniNs15jZLErYllgKT88D\\/E=\"}},\"contextInfo\":{\"stanzaId\":\"3ADDD51AFA22834D1CD1\",\"participant\":\"153652606021801@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aFyfc8MkW+eEjVPQY1uB5I1zerAC2mTXJOLzYQnLxZA=\",\"fileLength\":\"117015\",\"height\":900,\"width\":1600,\"mediaKey\":\"9ZDDBd9vrqfPEqHQU\\/pKiwiFD5IK1YDTROQQZ6Wby\\/k=\",\"fileEncSha256\":\"8gq3\\/DtUXNu1J4BZ6MIyfE07CHv4nvn3j7yBXL3lEZQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQP6Ju9IqiacGX7Ar-GUxEJrTzyMfK6axsW2U3P4BO9lrXc5BKPGGFxClI5uchGpKJpljsT_ohK4dKFZnc-vOuM8Fmrb2hUx1aNCMK5THg?ccb=9-4&oh=01_Q5Aa3wHFkz7w_HskJGOu_d4adJlvkPqrICZH2w0IEdyNBji61w&oe=69B5DEF0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADCfPOw7zgcvvfAg9E86pPQOEzWA9fXeOtuTfz+lI530YAxGE0aqjE0z1olqxuakgZmdijPjnbN525A0Ym5ILEskHC4sGigTYAUAj\\/\\/xAAgEQACAgEDBQAAAAAAAAAAAAAAAQIRFAMTUQQgITFB\\/9oACAECAQE\\/AMN8mJLkxJcj6WS+j0WNotCqKodMcfIpikWNjSfs3ULXSMmFGRA3493\\/xAAXEQEBAQEAAAAAAAAAAAAAAAARIAAw\\/9oACAEDAQE\\/AIZMycv\\/xAAsEAACAQIEBQMDBQAAAAAAAAAAAQIDERITITEEEFFSkUFCUwUjYRQgMkNU\\/9oACAEBAAE\\/AGn0Gn0Zhl0Zgn2sVOb9rMqp2My5r2swyW6ZZ9DMqd7M2p3szanyS8iqVW9Jy8jq1o7zkjOrfLLyZ1X5JeSNWq\\/7GZ1W383+zhZqFeMp7Jn1StRq4MpJW6c0+VtRUYfLEfD09fvxIcLGcb50dB8LZNuokkR4em1d14r8C4an\\/oiTSjJpSxJeqEzCYRoi5XtFvUlKWzk3ySuODHdFixKJrF3ROWJ3skWFdDm7WJO4otrZ+CxJEkiW5F2Gy76Du\\/Rn6yphccas\\/wAGevWRnUbauVyU6b2kz7b3ky1PuZan3MSh6TZaL98uTMTvZIWolzQj\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"KXUErh3S+LyNew==\",\"firstScanLength\":9605,\"scansSidecar\":\"KXUErh3S+LyNe9GrVYbbq5qTZUhmCT\\/GNOdRAQtW\\/oXOwoWyduJdZA==\",\"scanLengths\":[9605,31058,14242,62108],\"midQualityFileSha256\":\"8PMixHHJJXQOfKVarsAS0R8Sr6rWyuoXxvo7NpeXFIw=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770940683,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:03.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:05'),
(7463, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A9208A0F53327EACA4C\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/31990591_1840201059981755_2537659255879213990_n.enc?ccb=11-4&oh=01_Q5Aa3wGyd0_yMxwP-Gp7-dFko78jPfaIuJNSHVEDxhvWagjDGg&oe=69B5D128&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Eles entra e já sai daí\",\"fileSha256\":\"ghyUd0mGEpMpyoregh9EA9O0YfEs5eu8kXzyJsRKQKY=\",\"fileLength\":\"151753\",\"height\":900,\"width\":1600,\"mediaKey\":\"Pd4g+5O6mVWPDXNppKfvzWW9Q1KlWG+va6+wB05ZHSY=\",\"fileEncSha256\":\"P\\/8BOYX0E0u4xmrcMvGJe7qmNTBvy269udBZO5F7FrY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/31990591_1840201059981755_2537659255879213990_n.enc?ccb=11-4&oh=01_Q5Aa3wGyd0_yMxwP-Gp7-dFko78jPfaIuJNSHVEDxhvWagjDGg&oe=69B5D128&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940714\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQFBv\\/EABgBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAADKAhNFDQABEJESTIqJdZd0Ob6HQ49myVRihblx6UWHNFT0R6yjTXbbzLdfrHF2dHo4Py51znWC3Knd9ed6LrPjR1W2fNlnOsyGBUBDiBSbCmwIGBJ\\/\\/8QAHxEBAAICAgIDAAAAAAAAAAAAAQARAhIDIRATQWFx\\/9oACAECAQE\\/AIEqIyp6+6qVqhU\\/CcpUSOfcwRbWNDVzPK6QuZdyvucaYtsdL2m4NzJPjwRXz\\/\\/EAB0RAAMBAAEFAAAAAAAAAAAAAAABEQIgAxASIUH\\/2gAIAQMBAT8A4whfZ08p\\/DaS04ZRuJEYtRxDddPNGtLSFqdm7y\\/\\/xAAvEAACAQMDAwEFCQEAAAAAAAABAgMABBEFEiExQVETFDJhcYEGICIwM0JDkaHB\\/9oACAEBAAE\\/APzOawfBrBHWjgdSB9aLoDy60HRvdYH5Ub5uyijeyHoAKW6mkYKMZNPZXapl2IGM0I5mj3hnYZq3snumKKzKQM5Y1JpOEVhcBsnBx2o6dbqq7pjuPakiEFyVHIxRRlGSKjiaTO0ZxVt+GdCR0YVrdxE0EamQocDPyrTry0htmVhvZOhPerm\\/hlBEACsUqWUBEVTjjkfGp1fcuWz\\/AMqYbZ0Gckr1q4lLxbcf50qwlaJiFTcSMV\\/PuIxzmtSf2x1eNcYXBzVvDIpJChuO9GJ5GJwEwOnmisng8UtrfSKrekSMcVJFNFKplBHHGaktYjZq4ky\\/ceK06OMMfUbirpQsx2HK+at9PaaEymQIvYVp1u4kckHAq6tQ3pOmRk4Jq4sWtzgDcpHvV7ZDDaQ732nxX2glSV7coQQe4pId0IUY6dSatbdVByQc+akjVSeaa7liUKrAKp4FaVqKb5GuWUbhitT1G3e3MMLZ5zkUupSrHsL7l+NXeoW8tlEig+op5q6vI51iCqQy9aEyDu1Gdv2txTysT1obMZfk\\/OnC8bcD60UUj9QVsAPDg0AO7D+q2puB39KyfNZPms0Dn7or\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"joiNtASS7CiSjw==\",\"firstScanLength\":12150,\"scansSidecar\":\"joiNtASS7CiSjxq2kd204ms1w\\/pteS6JP3tRSApByNlYcB6MOdHyzw==\",\"scanLengths\":[12150,54980,21653,62968],\"midQualityFileSha256\":\"oDo63ZhqYx7GGMrQgAbY2EeF3YoUgjgLC0ScQeqvztc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3moB5V6lj920WlDqdfCvnwQfFcs8MVqnQ\\/3EwYETT9c=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940720,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:40.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:40'),
(7464, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:40.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:40'),
(7465, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A9208A0F53327EACA4C\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/31990591_1840201059981755_2537659255879213990_n.enc?ccb=11-4&oh=01_Q5Aa3wGyd0_yMxwP-Gp7-dFko78jPfaIuJNSHVEDxhvWagjDGg&oe=69B5D128&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Eles entra e já sai daí\",\"fileSha256\":\"ghyUd0mGEpMpyoregh9EA9O0YfEs5eu8kXzyJsRKQKY=\",\"fileLength\":\"151753\",\"height\":900,\"width\":1600,\"mediaKey\":\"Pd4g+5O6mVWPDXNppKfvzWW9Q1KlWG+va6+wB05ZHSY=\",\"fileEncSha256\":\"P\\/8BOYX0E0u4xmrcMvGJe7qmNTBvy269udBZO5F7FrY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/31990591_1840201059981755_2537659255879213990_n.enc?ccb=11-4&oh=01_Q5Aa3wGyd0_yMxwP-Gp7-dFko78jPfaIuJNSHVEDxhvWagjDGg&oe=69B5D128&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940714\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQFBv\\/EABgBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAADKAhNFDQABEJESTIqJdZd0Ob6HQ49myVRihblx6UWHNFT0R6yjTXbbzLdfrHF2dHo4Py51znWC3Knd9ed6LrPjR1W2fNlnOsyGBUBDiBSbCmwIGBJ\\/\\/8QAHxEBAAICAgIDAAAAAAAAAAAAAQARAhIDIRATQWFx\\/9oACAECAQE\\/AIEqIyp6+6qVqhU\\/CcpUSOfcwRbWNDVzPK6QuZdyvucaYtsdL2m4NzJPjwRXz\\/\\/EAB0RAAMBAAEFAAAAAAAAAAAAAAABEQIgAxASIUH\\/2gAIAQMBAT8A4whfZ08p\\/DaS04ZRuJEYtRxDddPNGtLSFqdm7y\\/\\/xAAvEAACAQMDAwEFCQEAAAAAAAABAgMABBEFEiExQVETFDJhcYEGICIwM0JDkaHB\\/9oACAEBAAE\\/APzOawfBrBHWjgdSB9aLoDy60HRvdYH5Ub5uyijeyHoAKW6mkYKMZNPZXapl2IGM0I5mj3hnYZq3snumKKzKQM5Y1JpOEVhcBsnBx2o6dbqq7pjuPakiEFyVHIxRRlGSKjiaTO0ZxVt+GdCR0YVrdxE0EamQocDPyrTry0htmVhvZOhPerm\\/hlBEACsUqWUBEVTjjkfGp1fcuWz\\/AMqYbZ0Gckr1q4lLxbcf50qwlaJiFTcSMV\\/PuIxzmtSf2x1eNcYXBzVvDIpJChuO9GJ5GJwEwOnmisng8UtrfSKrekSMcVJFNFKplBHHGaktYjZq4ky\\/ceK06OMMfUbirpQsx2HK+at9PaaEymQIvYVp1u4kckHAq6tQ3pOmRk4Jq4sWtzgDcpHvV7ZDDaQ732nxX2glSV7coQQe4pId0IUY6dSatbdVByQc+akjVSeaa7liUKrAKp4FaVqKb5GuWUbhitT1G3e3MMLZ5zkUupSrHsL7l+NXeoW8tlEig+op5q6vI51iCqQy9aEyDu1Gdv2txTysT1obMZfk\\/OnC8bcD60UUj9QVsAPDg0AO7D+q2puB39KyfNZPms0Dn7or\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"joiNtASS7CiSjw==\",\"firstScanLength\":12150,\"scansSidecar\":\"joiNtASS7CiSjxq2kd204ms1w\\/pteS6JP3tRSApByNlYcB6MOdHyzw==\",\"scanLengths\":[12150,54980,21653,62968],\"midQualityFileSha256\":\"oDo63ZhqYx7GGMrQgAbY2EeF3YoUgjgLC0ScQeqvztc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3moB5V6lj920WlDqdfCvnwQfFcs8MVqnQ\\/3EwYETT9c=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940720,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:40.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:40'),
(7466, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:40.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:40'),
(7467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:40.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:41'),
(7468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:40.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:41'),
(7469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:41.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:58:41'),
(7470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:58:41.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:58:41'),
(7471, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940745884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:05.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:05'),
(7472, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940745890,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:05.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:05'),
(7473, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940745890,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:05.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:06'),
(7474, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940745884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:05.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:06'),
(7475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770940746541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:06.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:06'),
(7476, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770940746541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:06.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:06'),
(7477, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:10.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:10'),
(7478, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:10.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:10'),
(7479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:16.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:16'),
(7480, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:16.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:16'),
(7481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5BB0434BF85F3B128268ED096F59944\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635055584_2314661925682879_6749506109467740870_n.enc?ccb=11-4&oh=01_Q5Aa3wHaOFeEsc1WkhLoPm_13i1NnZWE6jZoBtdurW2NVUiFKg&oe=69B5F633&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"25fkDwOB53yO7wX6\\/HlfrRti+f44N1kgRJBR1zcAS\\/s=\",\"fileLength\":\"19005\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"Yg3N6N6Y9unb6eANlvmE1rZvDPkBt5FQI42AKeJNj4k=\",\"fileEncSha256\":\"vSYzHcwyZEp6ELRy7IQH1fUaGFMfp3QgLhOOwwkp2Ng=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635055584_2314661925682879_6749506109467740870_n.enc?ccb=11-4&oh=01_Q5Aa3wHaOFeEsc1WkhLoPm_13i1NnZWE6jZoBtdurW2NVUiFKg&oe=69B5F633&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940748\",\"waveform\":\"AEg3W1hTK1FTXlBeSFxEW0xZSkxUXVc7RkRTU1NIW1JGOURaRUtQOlhcV0wyUlFaRkdNUlhSTk9SMktTS1lLTg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770940756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:16.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:16'),
(7482, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A5BB0434BF85F3B128268ED096F59944\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635055584_2314661925682879_6749506109467740870_n.enc?ccb=11-4&oh=01_Q5Aa3wHaOFeEsc1WkhLoPm_13i1NnZWE6jZoBtdurW2NVUiFKg&oe=69B5F633&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"25fkDwOB53yO7wX6\\/HlfrRti+f44N1kgRJBR1zcAS\\/s=\",\"fileLength\":\"19005\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"Yg3N6N6Y9unb6eANlvmE1rZvDPkBt5FQI42AKeJNj4k=\",\"fileEncSha256\":\"vSYzHcwyZEp6ELRy7IQH1fUaGFMfp3QgLhOOwwkp2Ng=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635055584_2314661925682879_6749506109467740870_n.enc?ccb=11-4&oh=01_Q5Aa3wHaOFeEsc1WkhLoPm_13i1NnZWE6jZoBtdurW2NVUiFKg&oe=69B5F633&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940748\",\"waveform\":\"AEg3W1hTK1FTXlBeSFxEW0xZSkxUXVc7RkRTU1NIW1JGOURaRUtQOlhcV0wyUlFaRkdNUlhSTk9SMktTS1lLTg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770940756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:16.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:17'),
(7483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BB0434BF85F3B128268ED096F59944\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940757014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:17'),
(7484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:17'),
(7485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BB0434BF85F3B128268ED096F59944\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770940757014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:17'),
(7486, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BB0434BF85F3B128268ED096F59944\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940757026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:17'),
(7487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:17'),
(7488, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BB0434BF85F3B128268ED096F59944\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770940757026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:17'),
(7489, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:17'),
(7490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":false,\"id\":\"A50AEEFDB4FF3D184477DC962E55A108\"},\"pushName\":\"João Paulo\",\"message\":{\"conversation\":\"Smartoneplayer\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wTh4aJWVSmO31g==\",\"senderTimestamp\":\"1769964890\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BUGWE1fYBKk0cZmIc6ZszYCkU1DStk2QD7+BCFofD38=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940757,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:17'),
(7491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:18'),
(7492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:18'),
(7493, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":false,\"id\":\"A50AEEFDB4FF3D184477DC962E55A108\"},\"pushName\":\"João Paulo\",\"message\":{\"conversation\":\"Smartoneplayer\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wTh4aJWVSmO31g==\",\"senderTimestamp\":\"1769964890\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BUGWE1fYBKk0cZmIc6ZszYCkU1DStk2QD7+BCFofD38=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940757,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:18'),
(7494, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:17.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:18');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7495, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:18.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:18'),
(7496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:18.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:19'),
(7497, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BB0434BF85F3B128268ED096F59944\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770940761167,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:21.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:21'),
(7498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A5BB0434BF85F3B128268ED096F59944\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770940761167,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:21.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:21'),
(7499, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:58.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:59'),
(7500, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:58.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:59'),
(7501, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A24B2E819120C6FFE0F\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635071151_1659589151872214_3374113682616844765_n.enc?ccb=11-4&oh=01_Q5Aa3wE8h7m_qBJ2vzu8MlBZ7VzG_UlYPJhoY5DSRuTuHF7Ikw&oe=69B5DBD3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rScUsIUxiCniTrZOxU2jfVnc93BidPxqkaXqWI8+si0=\",\"fileLength\":\"90531\",\"height\":900,\"width\":1600,\"mediaKey\":\"HCzESDnBjJqWVLJFk4NamkyBjPl8mjfW\\/B2Nhle4gj8=\",\"fileEncSha256\":\"yCDAaMmDaht9qenKgXlZb1iO0MOSZh6rZd8OUtMWdGo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635071151_1659589151872214_3374113682616844765_n.enc?ccb=11-4&oh=01_Q5Aa3wE8h7m_qBJ2vzu8MlBZ7VzG_UlYPJhoY5DSRuTuHF7Ikw&oe=69B5DBD3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940797\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAUBAgME\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAQIDAAQF\\/9oADAMBAAIQAxAAAABYVs9yNJByjojDEabPFKNwZVIxPp8BvzZ7FTFhqqkybigUd2LbhktONpkSvhjwu9JiS4VBte3i0iW\\/NxYmTW6arBzZJJVqKTG9gl0GYHRUKTAGEAZf\\/8QAHREBAQACAQUAAAAAAAAAAAAAAQAREhACEyAxUf\\/aAAgBAgEBPwDttpaNoHuwfZ6rNmUnFmGHwILFqcEc\\/wD\\/xAAgEQADAAEDBQEAAAAAAAAAAAAAAQIREhNRAxQhMUFh\\/9oACAEDAQE\\/ANijt7O3swYHSn2KjJsxwbMcE1XnUhV9Yrz8NRkqcoXR8YH0VybX6KEhMbHTNRqP\\/8QALBAAAgIBAgQEBQUAAAAAAAAAAQIAAxEEEgUhMVEQE0FSFCAiMmEVI0KRof\\/aAAgBAQABPwDae02t2M2nsZg9jMHt4YmJiDd7jBv9xgawfym+z3f5PMsHb+pvdiBhef4lfD3dwoI5+uI3BLvckPA9R6FDBB4ZmZnBBlfFLKyCEXIn67f7Fi8dt9a1MA5y3h6Jolu8wZ6ymmp6XZ7NrDoO\\/wA6cNtOlawoQwPIQCwv5VjFc+hlGm8vdbcp2p0HcxzucnGMnp4jxXitaVikkscYL\\/mUJv3Xv+4xbCgzUPrkH1KNo9MR6q\\/jELrlWXJAjtpA5U1FRnHPriXlDafLGF9IBmOjIcMMHx0jFqCi\\/cp3ATUX26raiIUUfcxlGpqXUXWt0VdqjvPjNPYqu6Llmwc9QJbZolbKhCVHKeZpXypVByByO8PwthDll+nOQfWW2aVa32oh2jl+TBEdkOVODHvtbq58DD8gYQMIWELCFpum6boWn\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"KzaRJBJrz0PxjA==\",\"firstScanLength\":10414,\"scansSidecar\":\"KzaRJBJrz0PxjH1N5jsfDfd+zzuy9p4F8BT5cQxKSSNs\\/TvOY4Cd6g==\",\"scanLengths\":[10414,32559,9647,37909],\"midQualityFileSha256\":\"HzXbTWUN5B3Qio1wM9L3xzi7ynckiCj2bUQwGYLF9kE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"z3R7wOGTia7Pq83fU1U1TDJNHUUIDOCgMvSa1wY51Ag=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940798,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:58.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:59'),
(7502, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:59.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 20:59:59'),
(7503, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A24B2E819120C6FFE0F\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635071151_1659589151872214_3374113682616844765_n.enc?ccb=11-4&oh=01_Q5Aa3wE8h7m_qBJ2vzu8MlBZ7VzG_UlYPJhoY5DSRuTuHF7Ikw&oe=69B5DBD3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rScUsIUxiCniTrZOxU2jfVnc93BidPxqkaXqWI8+si0=\",\"fileLength\":\"90531\",\"height\":900,\"width\":1600,\"mediaKey\":\"HCzESDnBjJqWVLJFk4NamkyBjPl8mjfW\\/B2Nhle4gj8=\",\"fileEncSha256\":\"yCDAaMmDaht9qenKgXlZb1iO0MOSZh6rZd8OUtMWdGo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635071151_1659589151872214_3374113682616844765_n.enc?ccb=11-4&oh=01_Q5Aa3wE8h7m_qBJ2vzu8MlBZ7VzG_UlYPJhoY5DSRuTuHF7Ikw&oe=69B5DBD3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770940797\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAUBAgME\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAQIDAAQF\\/9oADAMBAAIQAxAAAABYVs9yNJByjojDEabPFKNwZVIxPp8BvzZ7FTFhqqkybigUd2LbhktONpkSvhjwu9JiS4VBte3i0iW\\/NxYmTW6arBzZJJVqKTG9gl0GYHRUKTAGEAZf\\/8QAHREBAQACAQUAAAAAAAAAAAAAAQAREhACEyAxUf\\/aAAgBAgEBPwDttpaNoHuwfZ6rNmUnFmGHwILFqcEc\\/wD\\/xAAgEQADAAEDBQEAAAAAAAAAAAAAAQIREhNRAxQhMUFh\\/9oACAEDAQE\\/ANijt7O3swYHSn2KjJsxwbMcE1XnUhV9Yrz8NRkqcoXR8YH0VybX6KEhMbHTNRqP\\/8QALBAAAgIBAgQEBQUAAAAAAAAAAQIAAxEEEgUhMVEQE0FSFCAiMmEVI0KRof\\/aAAgBAQABPwDae02t2M2nsZg9jMHt4YmJiDd7jBv9xgawfym+z3f5PMsHb+pvdiBhef4lfD3dwoI5+uI3BLvckPA9R6FDBB4ZmZnBBlfFLKyCEXIn67f7Fi8dt9a1MA5y3h6Jolu8wZ6ymmp6XZ7NrDoO\\/wA6cNtOlawoQwPIQCwv5VjFc+hlGm8vdbcp2p0HcxzucnGMnp4jxXitaVikkscYL\\/mUJv3Xv+4xbCgzUPrkH1KNo9MR6q\\/jELrlWXJAjtpA5U1FRnHPriXlDafLGF9IBmOjIcMMHx0jFqCi\\/cp3ATUX26raiIUUfcxlGpqXUXWt0VdqjvPjNPYqu6Llmwc9QJbZolbKhCVHKeZpXypVByByO8PwthDll+nOQfWW2aVa32oh2jl+TBEdkOVODHvtbq58DD8gYQMIWELCFpum6boWn\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"KzaRJBJrz0PxjA==\",\"firstScanLength\":10414,\"scansSidecar\":\"KzaRJBJrz0PxjH1N5jsfDfd+zzuy9p4F8BT5cQxKSSNs\\/TvOY4Cd6g==\",\"scanLengths\":[10414,32559,9647,37909],\"midQualityFileSha256\":\"HzXbTWUN5B3Qio1wM9L3xzi7ynckiCj2bUQwGYLF9kE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"z3R7wOGTia7Pq83fU1U1TDJNHUUIDOCgMvSa1wY51Ag=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940798,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:58.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:59'),
(7504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:59.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 20:59:59'),
(7505, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:00.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:00'),
(7506, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:00.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:00'),
(7507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:59.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:01'),
(7508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T20:59:59.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:01'),
(7509, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:05.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:05'),
(7510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A43CA7488B287C1E430\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Aí ele volta pra essa tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PNdby7iClj2jMdgbvtJbx6u3YLSQqYTERMb2lrM1Hd0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940805,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:05.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:05'),
(7511, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A43CA7488B287C1E430\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Aí ele volta pra essa tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PNdby7iClj2jMdgbvtJbx6u3YLSQqYTERMb2lrM1Hd0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940805,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:05.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:05'),
(7512, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:05.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:05'),
(7513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:05.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:05'),
(7514, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:05.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:06'),
(7515, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:06.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:06'),
(7516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:06.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:06'),
(7517, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:06.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:06'),
(7518, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:06.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:07'),
(7519, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:08.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:08'),
(7520, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:08.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:09'),
(7521, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:17'),
(7522, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A25CBD882F70214E623\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m238\\/AQN9fJAXy9GVw7JIJC9ff5RC-DlHC98VdqBp2jn5mhouC-BIRJXWjm4omPBUscuf3aWTKCl8oLmfWQYMWQJrcwXTCpoPXfCKQVuP2OD24A?ccb=9-4&oh=01_Q5Aa3wGifjMy9HTSMgdvAKCqnC2WxAE_UF-fCTPZlm38t2BVHw&oe=69B5C5F1&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"B2bv83nxJ1y25cbWO2q1AC7AAVF8xmYt1j8IcYru7qw=\",\"fileLength\":\"99714\",\"height\":1600,\"width\":900,\"mediaKey\":\"Uk1yjmv7cK\\/bK2sZxgGkzAMSNjCe0n+Bov2YPrkdLR8=\",\"fileEncSha256\":\"W1rOloNkSbapnE5kd+eGyTf0NL42sdCwIoetp1wREwg=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m238\\/AQN9fJAXy9GVw7JIJC9ff5RC-DlHC98VdqBp2jn5mhouC-BIRJXWjm4omPBUscuf3aWTKCl8oLmfWQYMWQJrcwXTCpoPXfCKQVuP2OD24A?ccb=9-4&oh=01_Q5Aa3wGifjMy9HTSMgdvAKCqnC2WxAE_UF-fCTPZlm38t2BVHw&oe=69B5C5F1&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940815\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/8QAGQEBAQEBAQEAAAAAAAAAAAAAAAECAwUE\\/9oADAMBAAIQAxAAAAD4kPYRVR9Tji+FWkHNbO\\/Vxerkc3qJ5HaLydWWW7xzyz3x1uDO6staRh6Lh8Od4mdpz6zrebWqwI5w82yFmhLoFB\\/\\/xAAeEQACAQQDAQAAAAAAAAAAAAAAAQIDERJREBMgIf\\/aAAgBAgEBPwBQjoxjoussSw0XLtn3XFhSFLlnZEVVEa0djrQ2dsd+v\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAARMCD\\/2gAIAQMBAT8Akx4Uv\\/\\/EACwQAAEDAwIDBwUBAAAAAAAAAAEAAhEDEjEhUQQQFAUTIENSgZEjQUJhcaH\\/2gAIAQEAAT8Avf6ijJySrQrQrVChQoQ8HY9ClUc51WIH2K7WZTZxX0gA0jA8MHZWnYq07FC9uJCte7WHH2VjvSfhFjhkEeyLTEwY5U+JqU2hoDYG4XX1YItZr+l1NSZ0+F1VMsAc0kp\\/HOAIpaA7hN4uq11wIn+KpxFSqZcR8J\\/EVHMLCRBzog1WotUJok4kJ7LTnPMCUAoRCLVq3B5hYQadiojKIRCcEeQMFXJvEub5n+I1g4yXyUauzgrp\\/IK0HzGhPpRh4K7t24XTuib2ru3g4B5nTVB2qyhyk7qTuv\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"HB\\/KHz96xmQWfQ==\",\"firstScanLength\":8654,\"scansSidecar\":\"HB\\/KHz96xmQWfaNqmAPnZo+QrCUrdVkeWVjz6R0HY\\/UNjt5Z8iAF0A==\",\"scanLengths\":[8654,28833,11639,50586],\"midQualityFileSha256\":\"97ihTLKAQMBMBOh0+B8mBDxgOWeyFthmio\\/jy1kDgKE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X40dtzMU7GovSf5+ouhY4MaZoHGJPhq0U4WcZaBAxT0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940817,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:17'),
(7523, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:17'),
(7524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:17'),
(7525, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A25CBD882F70214E623\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m238\\/AQN9fJAXy9GVw7JIJC9ff5RC-DlHC98VdqBp2jn5mhouC-BIRJXWjm4omPBUscuf3aWTKCl8oLmfWQYMWQJrcwXTCpoPXfCKQVuP2OD24A?ccb=9-4&oh=01_Q5Aa3wGifjMy9HTSMgdvAKCqnC2WxAE_UF-fCTPZlm38t2BVHw&oe=69B5C5F1&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"B2bv83nxJ1y25cbWO2q1AC7AAVF8xmYt1j8IcYru7qw=\",\"fileLength\":\"99714\",\"height\":1600,\"width\":900,\"mediaKey\":\"Uk1yjmv7cK\\/bK2sZxgGkzAMSNjCe0n+Bov2YPrkdLR8=\",\"fileEncSha256\":\"W1rOloNkSbapnE5kd+eGyTf0NL42sdCwIoetp1wREwg=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m238\\/AQN9fJAXy9GVw7JIJC9ff5RC-DlHC98VdqBp2jn5mhouC-BIRJXWjm4omPBUscuf3aWTKCl8oLmfWQYMWQJrcwXTCpoPXfCKQVuP2OD24A?ccb=9-4&oh=01_Q5Aa3wGifjMy9HTSMgdvAKCqnC2WxAE_UF-fCTPZlm38t2BVHw&oe=69B5C5F1&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770940815\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/8QAGQEBAQEBAQEAAAAAAAAAAAAAAAECAwUE\\/9oADAMBAAIQAxAAAAD4kPYRVR9Tji+FWkHNbO\\/Vxerkc3qJ5HaLydWWW7xzyz3x1uDO6staRh6Lh8Od4mdpz6zrebWqwI5w82yFmhLoFB\\/\\/xAAeEQACAQQDAQAAAAAAAAAAAAAAAQIDERJREBMgIf\\/aAAgBAgEBPwBQjoxjoussSw0XLtn3XFhSFLlnZEVVEa0djrQ2dsd+v\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAARMCD\\/2gAIAQMBAT8Akx4Uv\\/\\/EACwQAAEDAwIDBwUBAAAAAAAAAAEAAhEDEjEhUQQQFAUTIENSgZEjQUJhcaH\\/2gAIAQEAAT8Avf6ijJySrQrQrVChQoQ8HY9ClUc51WIH2K7WZTZxX0gA0jA8MHZWnYq07FC9uJCte7WHH2VjvSfhFjhkEeyLTEwY5U+JqU2hoDYG4XX1YItZr+l1NSZ0+F1VMsAc0kp\\/HOAIpaA7hN4uq11wIn+KpxFSqZcR8J\\/EVHMLCRBzog1WotUJok4kJ7LTnPMCUAoRCLVq3B5hYQadiojKIRCcEeQMFXJvEub5n+I1g4yXyUauzgrp\\/IK0HzGhPpRh4K7t24XTuib2ru3g4B5nTVB2qyhyk7qTuv\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"HB\\/KHz96xmQWfQ==\",\"firstScanLength\":8654,\"scansSidecar\":\"HB\\/KHz96xmQWfaNqmAPnZo+QrCUrdVkeWVjz6R0HY\\/UNjt5Z8iAF0A==\",\"scanLengths\":[8654,28833,11639,50586],\"midQualityFileSha256\":\"97ihTLKAQMBMBOh0+B8mBDxgOWeyFthmio\\/jy1kDgKE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X40dtzMU7GovSf5+ouhY4MaZoHGJPhq0U4WcZaBAxT0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770940817,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:17'),
(7526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:18'),
(7527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:18'),
(7528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:17.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:18'),
(7529, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:45.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:45'),
(7530, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:45.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:45'),
(7531, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:47.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:47'),
(7532, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A592677E58F247A4CC44089B638EFDBB\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aiJlOT3Auk919PDhGF1di8y+Zwyk6KFDIzFj22Fi3o0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:47.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:47'),
(7533, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:47.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:47'),
(7534, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:47.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:47'),
(7535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:47.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:47'),
(7536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:48.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:00:48'),
(7537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:48.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:48'),
(7538, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A592677E58F247A4CC44089B638EFDBB\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aiJlOT3Auk919PDhGF1di8y+Zwyk6KFDIzFj22Fi3o0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770940847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:00:47.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:00:48'),
(7539, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:05.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:05'),
(7540, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:05.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:05'),
(7541, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:15.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:15'),
(7542, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:15.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:15'),
(7543, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:24.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:24'),
(7544, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:24.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:24'),
(7545, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:24.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:25'),
(7546, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"presences\":{\"153652606021801@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:24.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:25'),
(7547, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:28'),
(7548, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A8E9A9F53046705E8A4\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Ele entra da pra vc mexer um pouco e depois volta a carregar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mGuNMxBVw2wMzjFaY2xhRsV0cNqAECS+saIFn8PKn5o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941008,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:28'),
(7549, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:28'),
(7550, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":false,\"id\":\"3A8E9A9F53046705E8A4\"},\"pushName\":\"Karol Damaceno\",\"message\":{\"conversation\":\"Ele entra da pra vc mexer um pouco e depois volta a carregar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770940489\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mGuNMxBVw2wMzjFaY2xhRsV0cNqAECS+saIFn8PKn5o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941008,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:28'),
(7551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:28'),
(7552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:29'),
(7553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:03:29'),
(7554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:03:28.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:03:30'),
(7555, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:29.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:29'),
(7556, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:29.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:30'),
(7557, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:31.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:31'),
(7558, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:31.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:31'),
(7559, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5C9D216F3AB92B3DB03F55BFEB6869E\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"z6WowoD+ZaCbsZJLiJ1n5whYgbrJbcJT3ntUN\\/v10OY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:31.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:31'),
(7560, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:31.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:31'),
(7561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:31.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:31'),
(7562, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:32.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:32.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:32'),
(7564, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:32.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:32'),
(7565, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:32.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:32'),
(7566, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5C9D216F3AB92B3DB03F55BFEB6869E\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"z6WowoD+ZaCbsZJLiJ1n5whYgbrJbcJT3ntUN\\/v10OY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:31.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:32'),
(7567, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:33'),
(7568, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5238720B224D688FC9FAC21A702952D\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/parar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1HcH3tDl6ZE4RO\\/uFUnui9pJzhEFwgdBimC0Jl+8+no=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:33'),
(7569, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:33'),
(7570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:33'),
(7571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:33'),
(7572, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:34.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:34'),
(7573, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:34.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:34'),
(7575, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:34'),
(7576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:33.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:34'),
(7577, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:36'),
(7578, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CB5E35DF1C46BC9B9D0D3CADA89862\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hW7Zb2vfjzj\\/y8E+KudolGxKWxZGxA7Gwn7TGXY7yhM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941255,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:36'),
(7579, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:36'),
(7580, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:36'),
(7581, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:36'),
(7582, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5CB5E35DF1C46BC9B9D0D3CADA89862\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hW7Zb2vfjzj\\/y8E+KudolGxKWxZGxA7Gwn7TGXY7yhM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941255,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:37'),
(7583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:37'),
(7584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:37'),
(7585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:37'),
(7586, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:36.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:37'),
(7587, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:46.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:47'),
(7588, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:46.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:47'),
(7589, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:50.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:50'),
(7590, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:50.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:50'),
(7591, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:50.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:07:50'),
(7592, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:07:50.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:07:50'),
(7593, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:03.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:03'),
(7594, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:03.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:03'),
(7595, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:04.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:04'),
(7596, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:04.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:04'),
(7597, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0121EC836A9D41B63C\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Boa noite irmão blz , tava tentando assistir jogo aqui no app não ta abrindo nenhum canal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cyimJP1KWWT2lUeHfjP3FUoLJURY\\/3G9TZBpCyKxP4s=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941292,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:12.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:12'),
(7598, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0121EC836A9D41B63C\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Boa noite irmão blz , tava tentando assistir jogo aqui no app não ta abrindo nenhum canal\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cyimJP1KWWT2lUeHfjP3FUoLJURY\\/3G9TZBpCyKxP4s=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770941292,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:12.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:12'),
(7599, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:12.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:12'),
(7600, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:12.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:13'),
(7601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd8JYPVgmqFLKnoQL5VMSOg3OFu2dmx-AOi2PqiaHSqQ&oe=699B821C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:12.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:13'),
(7602, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:13.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:13'),
(7603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd8JYPVgmqFLKnoQL5VMSOg3OFu2dmx-AOi2PqiaHSqQ&oe=699B821C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:12.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:13'),
(7604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:13.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:13'),
(7605, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5240576C04799AF96B5F56B9D814713\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941293712,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:13.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:13'),
(7606, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5240576C04799AF96B5F56B9D814713\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770941293718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:13.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:14'),
(7607, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5240576C04799AF96B5F56B9D814713\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770941293718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:13.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:14'),
(7608, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:14.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:14'),
(7609, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5240576C04799AF96B5F56B9D814713\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770941294,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:14.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:14'),
(7610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5240576C04799AF96B5F56B9D814713\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941293712,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:13.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:14'),
(7611, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:15.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:15'),
(7612, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:15.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:15'),
(7613, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5240576C04799AF96B5F56B9D814713\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770941294,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:14.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:15'),
(7614, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:14.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:08:15'),
(7615, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:14.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:15'),
(7616, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:08:14.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:08:17'),
(7617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":false,\"id\":\"3A47A860A4B453917C26\"},\"pushName\":\"Jeferson Henrique\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634499497_26285864834378925_5207671389099021380_n.enc?ccb=11-4&oh=01_Q5Aa3wEbWBRTbgZNDOFBwEuMSK4jMCBwRnPofE9QATre8eV24g&oe=69B5F8B2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eF9nZeJXmHoalVL0nQBiHdSjv6oNA5dPm3mSCubA2xA=\",\"fileLength\":\"60261\",\"height\":1600,\"width\":328,\"mediaKey\":\"FLV940g+FP6ZNV0iyR7PajukoP78gUjgxuXn6dkM5wo=\",\"fileEncSha256\":\"YmwW\\/\\/nx5Ul2R8K3CdL77tI6KhKMoOJV+E28hDPPyww=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634499497_26285864834378925_5207671389099021380_n.enc?ccb=11-4&oh=01_Q5Aa3wEbWBRTbgZNDOFBwEuMSK4jMCBwRnPofE9QATre8eV24g&oe=69B5F8B2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770941424\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAEDBAIG\\/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9FX3wXzXWaGcaGeDSrHUcUG1j0FjNBqpr6LARVogiyJBBNF0EOhXTbBeBz1yUJFqRIAAAAP\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AE\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAEDAQE\\/AE\\/\\/xAAuEAABBAEBBgUCBwAAAAAAAAABAAIDERITBBQgIUFhMTNRcZFCgQUiIzAyYqH\\/2gAIAQEAAT8AlY5wGLsUI5783kh4c+OedkABkJAJpN2yBzgA\\/meylc9rQWNyKEs\\/WH\\/UZZ6sRLVmrylqzEH9JGaa\\/LHh6qJznD87cSnNa4U4A+6EUY8GN+OKXZ2yuyLiPZRR6YIyJv1W0GYAaIBPW0H7blzYyk1+2F4uNuPVTamI06vujvVcsbV7X6NQ3v8Aqo94yOYFVyUOpidWr7KedkDQ590TXJD8QgN0T8KGZkzS5l0OGXaWROxcDfYKKQSiwD908NIp9V3QjjHINag0N8AB7cGTfUI4HxxKFdKU8DZwA4kV6Juwsa4O1H2O\\/A5uTS09UNjYD\\/J3ytzju8nfKYwMuuq2nWxGhV9bWzCcNOuQT0rgfl9NfdHecuWNI7xkKqk3L6q\\/a\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"JuUWzfKpWdYAgQ==\",\"firstScanLength\":3866,\"scansSidecar\":\"JuUWzfKpWdYAgVoATUEnTVk0+ys0XQC3HuSMH7HHNTlEPgStUrPMhA==\",\"scanLengths\":[3866,26961,11647,17785],\"midQualityFileSha256\":\"xDYNalLNX\\/gCARmoQpbZRDKP9LVxFTnRg8Yu7A0U\\/9k=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770939789\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OZXsQ3fBPZiMtWFt0hu29Iu0fApLPv4qyIOShOkotKw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770941425,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:25.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:25'),
(7618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:25.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:25'),
(7619, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:25.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:26'),
(7620, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":false,\"id\":\"3A47A860A4B453917C26\"},\"pushName\":\"Jeferson Henrique\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634499497_26285864834378925_5207671389099021380_n.enc?ccb=11-4&oh=01_Q5Aa3wEbWBRTbgZNDOFBwEuMSK4jMCBwRnPofE9QATre8eV24g&oe=69B5F8B2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eF9nZeJXmHoalVL0nQBiHdSjv6oNA5dPm3mSCubA2xA=\",\"fileLength\":\"60261\",\"height\":1600,\"width\":328,\"mediaKey\":\"FLV940g+FP6ZNV0iyR7PajukoP78gUjgxuXn6dkM5wo=\",\"fileEncSha256\":\"YmwW\\/\\/nx5Ul2R8K3CdL77tI6KhKMoOJV+E28hDPPyww=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634499497_26285864834378925_5207671389099021380_n.enc?ccb=11-4&oh=01_Q5Aa3wEbWBRTbgZNDOFBwEuMSK4jMCBwRnPofE9QATre8eV24g&oe=69B5F8B2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770941424\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAEDBAIG\\/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9FX3wXzXWaGcaGeDSrHUcUG1j0FjNBqpr6LARVogiyJBBNF0EOhXTbBeBz1yUJFqRIAAAAP\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AE\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAEDAQE\\/AE\\/\\/xAAuEAABBAEBBgUCBwAAAAAAAAABAAIDERITBBQgIUFhMTNRcZFCgQUiIzAyYqH\\/2gAIAQEAAT8AlY5wGLsUI5783kh4c+OedkABkJAJpN2yBzgA\\/meylc9rQWNyKEs\\/WH\\/UZZ6sRLVmrylqzEH9JGaa\\/LHh6qJznD87cSnNa4U4A+6EUY8GN+OKXZ2yuyLiPZRR6YIyJv1W0GYAaIBPW0H7blzYyk1+2F4uNuPVTamI06vujvVcsbV7X6NQ3v8Aqo94yOYFVyUOpidWr7KedkDQ590TXJD8QgN0T8KGZkzS5l0OGXaWROxcDfYKKQSiwD908NIp9V3QjjHINag0N8AB7cGTfUI4HxxKFdKU8DZwA4kV6Juwsa4O1H2O\\/A5uTS09UNjYD\\/J3ytzju8nfKYwMuuq2nWxGhV9bWzCcNOuQT0rgfl9NfdHecuWNI7xkKqk3L6q\\/a\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"JuUWzfKpWdYAgQ==\",\"firstScanLength\":3866,\"scansSidecar\":\"JuUWzfKpWdYAgVoATUEnTVk0+ys0XQC3HuSMH7HHNTlEPgStUrPMhA==\",\"scanLengths\":[3866,26961,11647,17785],\"midQualityFileSha256\":\"xDYNalLNX\\/gCARmoQpbZRDKP9LVxFTnRg8Yu7A0U\\/9k=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770939789\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OZXsQ3fBPZiMtWFt0hu29Iu0fApLPv4qyIOShOkotKw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770941425,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:25.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:26'),
(7621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:25.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:26'),
(7622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:25.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:26'),
(7623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:26'),
(7624, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770941426,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:26'),
(7625, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:26'),
(7626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581619619_1191351396228658_505044026482262118_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRawPjjl276OHsi-mOWY6qYrTzF9Y22grOvc0_oysW2w&oe=699B8F23&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:27'),
(7627, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941427060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:27.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:27'),
(7628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581619619_1191351396228658_505044026482262118_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRawPjjl276OHsi-mOWY6qYrTzF9Y22grOvc0_oysW2w&oe=699B8F23&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:27'),
(7629, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770941427154,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:27.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:27'),
(7630, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941427060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:27.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:27'),
(7631, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770941427154,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:27.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:28'),
(7632, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770941426,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:28'),
(7633, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:28'),
(7634, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:26.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:28');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7635, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5240576C04799AF96B5F56B9D814713\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941440174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:40.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:10:40'),
(7636, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5240576C04799AF96B5F56B9D814713\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941440174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:10:40.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:10:40'),
(7637, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941514609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:11:54.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:11:54'),
(7638, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A57DB05712BD207EA1FD8CD01FBD6076\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770941514609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:11:54.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:11:55'),
(7639, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"213751982747881@lid\",\"presences\":{\"213751982747881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:16:51.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:16:51'),
(7640, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"213751982747881@lid\",\"presences\":{\"213751982747881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:16:51.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:16:51'),
(7641, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127957,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7642, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127924,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7643, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127914,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7644, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127935,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7645, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127947,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7647, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127974,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7648, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127966,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:08'),
(7649, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127924,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:09'),
(7650, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127914,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:09'),
(7651, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:09'),
(7652, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127957,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:09'),
(7653, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127935,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:09'),
(7654, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127966,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:10'),
(7655, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127974,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:10'),
(7656, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127978,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:10'),
(7657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127947,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:10'),
(7658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942127978,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:07.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:10'),
(7659, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5651DE2929234946D6898414ACD8782\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"3EB0D01451FA0989319A2F\"},\"text\":\"😮\",\"senderTimestampMs\":\"1770942142085\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770942142,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:22.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:22'),
(7660, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5651DE2929234946D6898414ACD8782\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"3EB0D01451FA0989319A2F\"},\"text\":\"😮\",\"senderTimestampMs\":\"1770942142085\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770942142,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:22.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:22'),
(7661, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:22.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:23'),
(7662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:22.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:23'),
(7663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:23.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:23'),
(7664, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:23.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:23'),
(7665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5651DE2929234946D6898414ACD8782\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"3EB0D01451FA0989319A2F\"},\"text\":\"😮\",\"senderTimestampMs\":\"1770942142085\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770942146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:27.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 21:22:27'),
(7666, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5651DE2929234946D6898414ACD8782\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"3EB0D01451FA0989319A2F\"},\"text\":\"😮\",\"senderTimestampMs\":\"1770942142085\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770942146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:27.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 21:22:27'),
(7667, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:27.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:27'),
(7668, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:27.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:27'),
(7669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:27.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:22:28'),
(7670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFulRZ3wgxPzOkZ5Vdfz-ETutUVNFBduFdWwmMkRjMZdQ&oe=699B8CE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:22:27.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:22:28'),
(7671, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:13.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:26:14'),
(7672, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"presences\":{\"102069964914905@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:13.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:26:14'),
(7673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:23.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:26:23'),
(7674, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:23.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:26:23'),
(7675, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":false,\"id\":\"A532AD16C4438303DA9E061A8F6D448A\"},\"pushName\":\"João Paulo\",\"message\":{\"conversation\":\"Consegue liberar outra lista?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wTh4aJWVSmO31g==\",\"senderTimestamp\":\"1769964890\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Oo58e43XAwb6dNyS5f8RZhVzACG+o73dUMY5fC86MkM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942383,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:23.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 21:26:23'),
(7676, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":false,\"id\":\"A532AD16C4438303DA9E061A8F6D448A\"},\"pushName\":\"João Paulo\",\"message\":{\"conversation\":\"Consegue liberar outra lista?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"wTh4aJWVSmO31g==\",\"senderTimestamp\":\"1769964890\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Oo58e43XAwb6dNyS5f8RZhVzACG+o73dUMY5fC86MkM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942383,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:23.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 21:26:24'),
(7677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:23.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:26:24'),
(7678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:24.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:26:24'),
(7679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:23.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:26:24'),
(7680, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:26:24.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:26:24'),
(7681, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:02.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:33:03'),
(7682, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:02.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:33:03'),
(7683, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:33:04'),
(7684, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:33:04'),
(7685, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A598EE12C8285A8853B3837A963B2D05\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kedMi4Nt3L88c\\/\\/gIY7Zv55iwCK3cMRkQZ3LQBFlXXA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942784,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 21:33:04'),
(7686, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A598EE12C8285A8853B3837A963B2D05\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kedMi4Nt3L88c\\/\\/gIY7Zv55iwCK3cMRkQZ3LQBFlXXA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942784,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 21:33:04'),
(7687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:33:05'),
(7688, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:33:05'),
(7689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:33:05'),
(7690, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:33:04.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:33:05'),
(7691, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:41.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:41'),
(7692, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:41.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:41'),
(7693, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACD17CAFBBF9880F9096441B87438F08\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Fala irmão, boa noite na paz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OR7eu2uELh9gFe5c6X7BCcR8c5O\\/s8kGeMjWA5k3bRU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942890,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 21:34:51'),
(7694, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:51'),
(7695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:51'),
(7696, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACD17CAFBBF9880F9096441B87438F08\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Fala irmão, boa noite na paz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OR7eu2uELh9gFe5c6X7BCcR8c5O\\/s8kGeMjWA5k3bRU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942890,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 21:34:51'),
(7697, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:51'),
(7698, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5C2D5E7C66C54A8B37F9F27C8DF20BF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942891851,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:52'),
(7699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:52'),
(7700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:52'),
(7701, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:52.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:52'),
(7702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5C2D5E7C66C54A8B37F9F27C8DF20BF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770942891851,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:52'),
(7703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:52.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:53'),
(7704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"pushName\":\"Elder Fraleoni\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:53'),
(7705, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:53'),
(7706, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A5C2D5E7C66C54A8B37F9F27C8DF20BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770942891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:53'),
(7707, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:53'),
(7708, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A5C2D5E7C66C54A8B37F9F27C8DF20BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770942891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:51.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7709, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:58.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:34:58'),
(7710, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:34:58.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:34:58'),
(7711, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:00.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:00'),
(7712, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:00.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:00'),
(7713, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:01.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:01'),
(7714, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:01.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:02'),
(7715, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:02.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:03'),
(7716, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:02.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:03'),
(7717, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:11.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:11'),
(7718, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:11.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:11'),
(7719, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:11.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:12'),
(7720, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:11.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:12'),
(7721, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:12.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:12'),
(7722, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:12.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:12'),
(7723, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:13.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:13'),
(7724, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:13.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:13'),
(7725, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:23.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:23'),
(7726, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:23.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:23'),
(7727, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:30.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:30'),
(7728, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:30.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:31'),
(7729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:31.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:31'),
(7730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:31.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:31'),
(7731, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:41.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:41'),
(7732, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:41.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:41'),
(7733, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:45.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:45'),
(7734, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACD4118FE71CAB33E19342585DC60439\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Minha mae falou que chega esse horário fica impossível dela assistir a globo que é a única coisa que ela assiste\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x+tdS3vNPioiJwFiepDgvvJu2VlBgkyAKQigXOHvJOI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:45.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 21:35:45'),
(7735, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:45.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:45'),
(7736, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACD4118FE71CAB33E19342585DC60439\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Minha mae falou que chega esse horário fica impossível dela assistir a globo que é a única coisa que ela assiste\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x+tdS3vNPioiJwFiepDgvvJu2VlBgkyAKQigXOHvJOI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:45.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 21:35:45'),
(7737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:46.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:46'),
(7738, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:46.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:46'),
(7739, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:46.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:46'),
(7740, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:46.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:46'),
(7741, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:46.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:46'),
(7742, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:46.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:47'),
(7743, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:52.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:52'),
(7744, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:52.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:52'),
(7745, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:52.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:52'),
(7746, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:52.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:52'),
(7747, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:56.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:56'),
(7748, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC16839E31B7D715DB6F4455ED97370B\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Se consegue ajeitar ai?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1qWyIgnHf4aNVneOLhIeGYIjwfIrX7gVFAuzslXwUEA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:56.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-12 21:35:56'),
(7749, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC16839E31B7D715DB6F4455ED97370B\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Se consegue ajeitar ai?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1qWyIgnHf4aNVneOLhIeGYIjwfIrX7gVFAuzslXwUEA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770942956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:56.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-12 21:35:57'),
(7750, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:56.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:57'),
(7751, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:57.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:57'),
(7752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:57.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:57'),
(7753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:57.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:35:57'),
(7754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:35:57.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:35:58'),
(7755, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:11.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:12'),
(7756, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:11.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:12'),
(7757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:14'),
(7758, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:14'),
(7759, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A52ABCA6CDE9704279116FC9884B5ACC\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pFAHIFKfNeaVfmfEAJVEpj3RhTbgRIo2l7n\\/VDCgBQc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770943333,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:14'),
(7760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:14'),
(7761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:14'),
(7762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:14'),
(7763, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:14'),
(7764, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A52ABCA6CDE9704279116FC9884B5ACC\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pFAHIFKfNeaVfmfEAJVEpj3RhTbgRIo2l7n\\/VDCgBQc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770943333,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:14.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:15'),
(7765, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:18.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:18'),
(7766, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:18.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:18'),
(7767, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:22.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:22'),
(7768, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:22.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:22'),
(7769, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5D4496963EF34BF9F67DB363B52A7B0\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/informações\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U8Ef3t5z9+mF4\\/efcXSjQfhtjJvm6kY7T43tOPBMxGg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770943342,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:22.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:23'),
(7770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:22.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:23'),
(7771, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:22.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:23'),
(7772, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:23.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:23'),
(7773, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:23.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:23'),
(7774, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:23.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:24'),
(7775, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:23.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:24'),
(7776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5D4496963EF34BF9F67DB363B52A7B0\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/informações\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U8Ef3t5z9+mF4\\/efcXSjQfhtjJvm6kY7T43tOPBMxGg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770943342,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:22.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:24'),
(7777, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A56D98CFDF19FC47D239FB5AE64C3C1B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/parar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cmb09Xzi19PoNFfn42Qw3HEb5Fri7othypgO02iIQ+k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770943346,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:26.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:26'),
(7778, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:26.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:26'),
(7779, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:26.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:27'),
(7780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:27.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:27'),
(7781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:27.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:27'),
(7782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:27.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:42:27'),
(7783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:27.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:27'),
(7784, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A56D98CFDF19FC47D239FB5AE64C3C1B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/parar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cmb09Xzi19PoNFfn42Qw3HEb5Fri7othypgO02iIQ+k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770943346,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:42:26.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:42:28'),
(7785, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:06.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:58:07'),
(7786, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:06.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:58:07'),
(7787, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:58:09'),
(7788, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:58:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7789, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A544E7D17C440E221CDAC5B9C7381B0C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CNhdSeuvQhB+tAyFsqCjt6nOCDAxNXf9CFuBfqmRXvE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770944288,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:58:09'),
(7790, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:58:09'),
(7791, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A544E7D17C440E221CDAC5B9C7381B0C\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CNhdSeuvQhB+tAyFsqCjt6nOCDAxNXf9CFuBfqmRXvE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770944288,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:58:09'),
(7792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:58:09'),
(7793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 21:58:09'),
(7794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T21:58:09.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 21:58:10'),
(7795, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":503},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:06.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:07'),
(7796, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:06.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:07'),
(7797, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:06.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:07'),
(7798, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":503},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:06.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:07'),
(7799, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:07.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:07'),
(7800, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:07.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:08'),
(7801, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:07.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:08'),
(7802, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:07.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:09'),
(7803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:09.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:09'),
(7804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:09.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:09'),
(7805, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:08.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:09'),
(7806, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:09.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:09'),
(7807, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5DDF29191903ABBE744F74600E3AAC0\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TSv4zhCZDdOEqx2Vsb2sHDK+xCqDg7FQ7ao7iJ\\/qp6c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770944588,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:08.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:03:09'),
(7808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:09.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:09'),
(7809, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:08.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:10'),
(7810, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5DDF29191903ABBE744F74600E3AAC0\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TSv4zhCZDdOEqx2Vsb2sHDK+xCqDg7FQ7ao7iJ\\/qp6c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770944588,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:03:08.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:03:10'),
(7811, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35393134_1829739904403105_5201343569008655381_n.enc?ccb=11-4&oh=01_Q5Aa3wHjX8r4hAELbSqxALji2oqc9_QPLrB0iVhaEv42jpfaAA&oe=69B5F510&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TxcFtrxwxy\\/jGnG+dhdSyujJZTHsepnQMYEIKrRPZZo=\",\"fileLength\":\"68238\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"GXO+yKB0ebD2ZLTqYP\\/kkN4dvodHZ0fbF5IXXp+h\\/Dg=\",\"fileEncSha256\":\"+j9lKqINZv0ELo1OafqPZPoByINxxId47XEO++0tFSo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35393134_1829739904403105_5201343569008655381_n.enc?ccb=11-4&oh=01_Q5Aa3wHjX8r4hAELbSqxALji2oqc9_QPLrB0iVhaEv42jpfaAA&oe=69B5F510&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770945776\",\"waveform\":\"AGNBIFwgQ1Q4VilTSgFJYhZQQQwSWk5HWkhEUFweSk9PV0hPBU5LUE0bUR4MBFRMU1Q9HypPC1VUOlJYMzE4RA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770945805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:25.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:23:25'),
(7812, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:25.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:23:25'),
(7813, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"153652606021801@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:25.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:23:26'),
(7814, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"153652606021801@lid\",\"fromMe\":true,\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35393134_1829739904403105_5201343569008655381_n.enc?ccb=11-4&oh=01_Q5Aa3wHjX8r4hAELbSqxALji2oqc9_QPLrB0iVhaEv42jpfaAA&oe=69B5F510&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TxcFtrxwxy\\/jGnG+dhdSyujJZTHsepnQMYEIKrRPZZo=\",\"fileLength\":\"68238\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"GXO+yKB0ebD2ZLTqYP\\/kkN4dvodHZ0fbF5IXXp+h\\/Dg=\",\"fileEncSha256\":\"+j9lKqINZv0ELo1OafqPZPoByINxxId47XEO++0tFSo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35393134_1829739904403105_5201343569008655381_n.enc?ccb=11-4&oh=01_Q5Aa3wHjX8r4hAELbSqxALji2oqc9_QPLrB0iVhaEv42jpfaAA&oe=69B5F510&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770945776\",\"waveform\":\"AGNBIFwgQ1Q4VilTSgFJYhZQQQwSWk5HWkhEUFweSk9PV0hPBU5LUE0bUR4MBFRMU1Q9HypPC1VUOlJYMzE4RA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770945805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:25.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:23:26'),
(7815, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770945806088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:26.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:23:26'),
(7816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:25.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:23:26'),
(7817, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770945806088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:26.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:23:26'),
(7818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"153652606021801@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:23:25.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:23:26'),
(7819, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:11.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:24:11'),
(7820, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A5D227010FF515BDE7F61F93509B862D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30220612_25790615407269416_6968877694764293904_n.enc?ccb=11-4&oh=01_Q5Aa3wH7b-9gI8dVXptDdtmT2kjSdrO1VNJ63b8IGsnEoxDI1A&oe=69B5F4FA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uTZCbuh3DIfL0IxzEs3AiINaugG42HVgHhgWpgxo1so=\",\"fileLength\":\"69298\",\"seconds\":30,\"ptt\":true,\"mediaKey\":\"FqSKLw9QmNxuqnfxcUk+Q7OgxmW7LbwBD2bmwkpCB4k=\",\"fileEncSha256\":\"nsjGhAZGuBr4DsJzHNlnXmRRD1+53CVf5Rf4N54wC+Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30220612_25790615407269416_6968877694764293904_n.enc?ccb=11-4&oh=01_Q5Aa3wH7b-9gI8dVXptDdtmT2kjSdrO1VNJ63b8IGsnEoxDI1A&oe=69B5F4FA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770945822\",\"waveform\":\"AFtMUS1bFR9PUE1VDj9USBdYXiYyVEZOCEpSW1c2Elk4XUEdWTNYUUVFUlVUXA4NUFkaT0YKQVY9PUBMKFReVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770945851,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:11.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:24:11'),
(7821, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:11.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:24:12'),
(7822, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A5D227010FF515BDE7F61F93509B862D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30220612_25790615407269416_6968877694764293904_n.enc?ccb=11-4&oh=01_Q5Aa3wH7b-9gI8dVXptDdtmT2kjSdrO1VNJ63b8IGsnEoxDI1A&oe=69B5F4FA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uTZCbuh3DIfL0IxzEs3AiINaugG42HVgHhgWpgxo1so=\",\"fileLength\":\"69298\",\"seconds\":30,\"ptt\":true,\"mediaKey\":\"FqSKLw9QmNxuqnfxcUk+Q7OgxmW7LbwBD2bmwkpCB4k=\",\"fileEncSha256\":\"nsjGhAZGuBr4DsJzHNlnXmRRD1+53CVf5Rf4N54wC+Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30220612_25790615407269416_6968877694764293904_n.enc?ccb=11-4&oh=01_Q5Aa3wH7b-9gI8dVXptDdtmT2kjSdrO1VNJ63b8IGsnEoxDI1A&oe=69B5F4FA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770945822\",\"waveform\":\"AFtMUS1bFR9PUE1VDj9USBdYXiYyVEZOCEpSW1c2Elk4XUEdWTNYUUVFUlVUXA4NUFkaT0YKQVY9PUBMKFReVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770945851,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:11.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:24:12'),
(7824, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5D227010FF515BDE7F61F93509B862D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770945851979,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:11.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:24:12'),
(7825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:12.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:24:12'),
(7826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVI_qO6pwt0vnfgpl776HjF260L5GKRyDl5t5NSTS-ig&oe=699B7C33&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:24:12.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:24:13'),
(7827, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/582796246_1225824339641893_1666068412366225508_n.enc?ccb=11-4&oh=01_Q5Aa3wEGqXhSfQkJRL7DE3LHW0w0nabci5hXW7o7t21KO2mN6g&oe=69B5D518&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Pw1SZzea7zhT4m38YyQvtngsJhH4Xve0Z2mENB5rGhg=\",\"fileLength\":\"13208\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"ly6WCEJziBg\\/2C+egg93CEEjP8ddQJByiRHV0Yu+Dm8=\",\"fileEncSha256\":\"8ABgBlLWP+1Ry\\/oAWiMGwMOHLjk83m0JUJZN4smHPk4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/582796246_1225824339641893_1666068412366225508_n.enc?ccb=11-4&oh=01_Q5Aa3wEGqXhSfQkJRL7DE3LHW0w0nabci5hXW7o7t21KO2mN6g&oe=69B5D518&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946000\",\"waveform\":\"ABYYHCBGWEtRV1Q8TElXS1BKUzAtP1NWVVdFVEwgS0taUVBVHVNSSlBARExQRFpTS0haURgdFgwYPjhGSkpNIA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946004,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:44.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:44'),
(7828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:44.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:44'),
(7829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:44.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:45'),
(7830, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:44.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:45'),
(7831, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/582796246_1225824339641893_1666068412366225508_n.enc?ccb=11-4&oh=01_Q5Aa3wEGqXhSfQkJRL7DE3LHW0w0nabci5hXW7o7t21KO2mN6g&oe=69B5D518&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Pw1SZzea7zhT4m38YyQvtngsJhH4Xve0Z2mENB5rGhg=\",\"fileLength\":\"13208\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"ly6WCEJziBg\\/2C+egg93CEEjP8ddQJByiRHV0Yu+Dm8=\",\"fileEncSha256\":\"8ABgBlLWP+1Ry\\/oAWiMGwMOHLjk83m0JUJZN4smHPk4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/582796246_1225824339641893_1666068412366225508_n.enc?ccb=11-4&oh=01_Q5Aa3wEGqXhSfQkJRL7DE3LHW0w0nabci5hXW7o7t21KO2mN6g&oe=69B5D518&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946000\",\"waveform\":\"ABYYHCBGWEtRV1Q8TElXS1BKUzAtP1NWVVdFVEwgS0taUVBVHVNSSlBARExQRFpTS0haURgdFgwYPjhGSkpNIA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946004,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:44.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:45'),
(7832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:44.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:45'),
(7833, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946006731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:46.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:46'),
(7834, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946006731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:46.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:46'),
(7835, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:48'),
(7836, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586013740_829932563407836_1105909800786731042_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCIj5_SrBz7u1LYBz5xJzdtRa84auZr29f-k-Wxym8g&oe=69B6044E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"21827bmsy+7A0mbm1Fdhp2fFfDMRj1Hkh+3uPY5oKZU=\",\"fileLength\":\"6210\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"aiMGbFF3DzzgCFVYpuNwd2gf1C343qOaHKLV296sw90=\",\"fileEncSha256\":\"soX8qXnedzZBtjwlFsSwH7xpAHPIfYkKHoEAfkeecFQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586013740_829932563407836_1105909800786731042_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCIj5_SrBz7u1LYBz5xJzdtRa84auZr29f-k-Wxym8g&oe=69B6044E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946006\",\"waveform\":\"ABESKlVYQDdEXl5aPzxeXj03QU1SWFxIHSlETkxIR1piXlRKSToqLElPT1BWVlBMSkZSVEIlERU\\/VVBKUlJLQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946008,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:48'),
(7837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"102069964914905@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:48'),
(7838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"102069964914905@lid\",\"fromMe\":true,\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586013740_829932563407836_1105909800786731042_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCIj5_SrBz7u1LYBz5xJzdtRa84auZr29f-k-Wxym8g&oe=69B6044E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"21827bmsy+7A0mbm1Fdhp2fFfDMRj1Hkh+3uPY5oKZU=\",\"fileLength\":\"6210\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"aiMGbFF3DzzgCFVYpuNwd2gf1C343qOaHKLV296sw90=\",\"fileEncSha256\":\"soX8qXnedzZBtjwlFsSwH7xpAHPIfYkKHoEAfkeecFQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586013740_829932563407836_1105909800786731042_n.enc?ccb=11-4&oh=01_Q5Aa3wFJCIj5_SrBz7u1LYBz5xJzdtRa84auZr29f-k-Wxym8g&oe=69B6044E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946006\",\"waveform\":\"ABESKlVYQDdEXl5aPzxeXj03QU1SWFxIHSlETkxIR1piXlRKSToqLElPT1BWVlBMSkZSVEIlERU\\/VVBKUlJLQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946008,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:48'),
(7839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:48'),
(7840, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946008650,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:26:49'),
(7841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"102069964914905@lid\",\"pushName\":\"João Paulo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592360440_4179398205539357_1115593507819312044_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgeonpxcvPeThVyJeSrhAXmT8703ynI-TI5K71wbzZIQ&oe=699B7738&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:49'),
(7842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946008650,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:26:48.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:26:49'),
(7843, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595517765_1175457944433517_6321801784728540899_n.enc?ccb=11-4&oh=01_Q5Aa3wEd3yFBhQhSZ-LuTQoZFXlMER2cYKDacxEB_Y1a9ziyPw&oe=69B5DD84&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tCknO+cbBo8jnCCuvOLuMMUwzmsoyvCLLj26rNI61bc=\",\"fileLength\":\"12538\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"IdbIOmJoNeurHXkH3rapg6XmjtteAExyMsHtPndy13U=\",\"fileEncSha256\":\"SW1LTjLlas4rr6j7L1\\/Rd4thyLufe8cYck7XjKdLDfo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595517765_1175457944433517_6321801784728540899_n.enc?ccb=11-4&oh=01_Q5Aa3wEd3yFBhQhSZ-LuTQoZFXlMER2cYKDacxEB_Y1a9ziyPw&oe=69B5DD84&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946028\",\"waveform\":\"ABUSECQZWWJhI2EyTFVZVUQ+T1tXWkY\\/QVNQTTFbUVlWVV5SPEtFWFtNShEREiAZFBYVJlhfWltLPFVXODFFXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:13.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:27:13'),
(7844, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595517765_1175457944433517_6321801784728540899_n.enc?ccb=11-4&oh=01_Q5Aa3wEd3yFBhQhSZ-LuTQoZFXlMER2cYKDacxEB_Y1a9ziyPw&oe=69B5DD84&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tCknO+cbBo8jnCCuvOLuMMUwzmsoyvCLLj26rNI61bc=\",\"fileLength\":\"12538\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"IdbIOmJoNeurHXkH3rapg6XmjtteAExyMsHtPndy13U=\",\"fileEncSha256\":\"SW1LTjLlas4rr6j7L1\\/Rd4thyLufe8cYck7XjKdLDfo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595517765_1175457944433517_6321801784728540899_n.enc?ccb=11-4&oh=01_Q5Aa3wEd3yFBhQhSZ-LuTQoZFXlMER2cYKDacxEB_Y1a9ziyPw&oe=69B5DD84&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946028\",\"waveform\":\"ABUSECQZWWJhI2EyTFVZVUQ+T1tXWkY\\/QVNQTTFbUVlWVV5SPEtFWFtNShEREiAZFBYVJlhfWltLPFVXODFFXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:13.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:27:13'),
(7845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:13.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:27:13'),
(7846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd8JYPVgmqFLKnoQL5VMSOg3OFu2dmx-AOi2PqiaHSqQ&oe=699B821C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:13.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:27:13'),
(7847, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:13.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:27:13'),
(7848, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946034242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:14.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:27:14'),
(7849, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946034242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:14.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:27:14'),
(7850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd8JYPVgmqFLKnoQL5VMSOg3OFu2dmx-AOi2PqiaHSqQ&oe=699B821C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:27:13.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:27:14'),
(7851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:24'),
(7852, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A56EC344E3F81E2A21AF43EF039436DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGi-D6X41L0-0ErQeRRm8Dpo7CzC5BHA7cPoUqNMlcKSg&oe=69B5D38C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGi-D6X41L0-0ErQeRRm8Dpo7CzC5BHA7cPoUqNMlcKSg&oe=69B5D38C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770946163051\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770946164,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:24');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7853, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A5A9F202F87D5938AB5A5CBA5A3457D5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHUGRD3EGQ6BFZDbdQ1vQjp0WrsL2TByEI5NUOr8x8QeQ&oe=69B5E3A8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHUGRD3EGQ6BFZDbdQ1vQjp0WrsL2TByEI5NUOr8x8QeQ&oe=69B5E3A8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770946163651\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770946164,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:24'),
(7854, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:24'),
(7855, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:24'),
(7856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:25'),
(7857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:25'),
(7858, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A56EC344E3F81E2A21AF43EF039436DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGi-D6X41L0-0ErQeRRm8Dpo7CzC5BHA7cPoUqNMlcKSg&oe=69B5D38C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGi-D6X41L0-0ErQeRRm8Dpo7CzC5BHA7cPoUqNMlcKSg&oe=69B5D38C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770946163051\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770946164,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:25'),
(7859, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"79229429538831@lid\",\"fromMe\":true,\"id\":\"A5A9F202F87D5938AB5A5CBA5A3457D5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHUGRD3EGQ6BFZDbdQ1vQjp0WrsL2TByEI5NUOr8x8QeQ&oe=69B5E3A8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHUGRD3EGQ6BFZDbdQ1vQjp0WrsL2TByEI5NUOr8x8QeQ&oe=69B5E3A8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1770946163651\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770946164,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:25'),
(7860, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"79229429538831@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:25'),
(7861, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A56EC344E3F81E2A21AF43EF039436DA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946166011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:26.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:26'),
(7862, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A5A9F202F87D5938AB5A5CBA5A3457D5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946166121,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:26.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:26'),
(7863, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A56EC344E3F81E2A21AF43EF039436DA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946166011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:26.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:26'),
(7864, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A5A9F202F87D5938AB5A5CBA5A3457D5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946166121,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:26.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:26'),
(7865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:26'),
(7866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"79229429538831@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:24.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:27'),
(7867, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:43.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:43'),
(7868, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5F57F379F5C39894B62DD8AA5BDFA90\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:43.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:43'),
(7869, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:43.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:43'),
(7870, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5F57F379F5C39894B62DD8AA5BDFA90\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:43.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:43'),
(7871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:43.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:44'),
(7872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:43.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:44'),
(7873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5F57F379F5C39894B62DD8AA5BDFA90\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946187287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:47.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:47'),
(7874, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5F57F379F5C39894B62DD8AA5BDFA90\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946187287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:47.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:47'),
(7875, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A58A7CD20A09ABE00F5AB252A78176AE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Será q nao foi sua net nao?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:54.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:54'),
(7876, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A58A7CD20A09ABE00F5AB252A78176AE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Será q nao foi sua net nao?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:54.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:54'),
(7877, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:54.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:55'),
(7878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:55.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:55'),
(7879, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:54.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:55'),
(7880, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A58A7CD20A09ABE00F5AB252A78176AE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946195187,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:55.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:29:55'),
(7881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:55.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:55'),
(7882, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A58A7CD20A09ABE00F5AB252A78176AE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946195187,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:29:55.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:29:56'),
(7883, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5DF0B53310947BA8740C5D1D4F6B6AC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Servidor nao tive nem 1 chamado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946207,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:08'),
(7884, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:08'),
(7885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5DF0B53310947BA8740C5D1D4F6B6AC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Servidor nao tive nem 1 chamado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946207,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:08'),
(7886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:08'),
(7887, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5DF0B53310947BA8740C5D1D4F6B6AC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946208367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:08'),
(7888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:09'),
(7889, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5DF0B53310947BA8740C5D1D4F6B6AC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946208367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:09'),
(7890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:08.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:09'),
(7891, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5080105CD885F7E7A9F1F739BC4FB07\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Normalizou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:25.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:25'),
(7892, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:25.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:25'),
(7893, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5080105CD885F7E7A9F1F739BC4FB07\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Normalizou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:25.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:25'),
(7894, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:25.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:25'),
(7895, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5080105CD885F7E7A9F1F739BC4FB07\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946225927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:25.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:26'),
(7896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:26.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:26'),
(7897, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5080105CD885F7E7A9F1F739BC4FB07\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946225927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:25.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:26'),
(7898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:26.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:26'),
(7899, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A56EC344E3F81E2A21AF43EF039436DA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946229088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:29.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:29'),
(7900, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A5A9F202F87D5938AB5A5CBA5A3457D5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946229091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:29.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:30:29'),
(7901, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A56EC344E3F81E2A21AF43EF039436DA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946229088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:29.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:29'),
(7902, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"79229429538831@lid\",\"id\":\"A5A9F202F87D5938AB5A5CBA5A3457D5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946229091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:30:29.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:30:29'),
(7903, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5D40A276D758CE547D1DAB639F3A6B7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35168916_2062361634551111_2709630354116657383_n.enc?ccb=11-4&oh=01_Q5Aa3wFTpNhShf12YoiZTyX8PFYdqphn_1n_IlPEHba9s_XCiA&oe=69B60B75&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eF3kUXGMWIxOmFaxrcvW+aYj5Zrm2IZKFQJU+D4011I=\",\"fileLength\":\"63676\",\"seconds\":28,\"ptt\":true,\"mediaKey\":\"uC0S2JtPmOdRZd281qh4kjWM4fIjInqSBHKvPRUmciI=\",\"fileEncSha256\":\"uyl0UYrI0Dt2p8RTMFUJhG37I4BIDcM2Ox5Qa8igeSA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35168916_2062361634551111_2709630354116657383_n.enc?ccb=11-4&oh=01_Q5Aa3wFTpNhShf12YoiZTyX8PFYdqphn_1n_IlPEHba9s_XCiA&oe=69B60B75&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946274\",\"waveform\":\"AFJEVkFQTgAuHwUcNgg3AABNTVBHRy8DAE1BR0I2Tx4CTjIAPE4ALzRORyFBO0ExODJEAAA5RDAAADtFNz5BRg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:42.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:31:42'),
(7904, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:42.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:31:42'),
(7905, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"29412070314092@lid\",\"fromMe\":true,\"id\":\"A5D40A276D758CE547D1DAB639F3A6B7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35168916_2062361634551111_2709630354116657383_n.enc?ccb=11-4&oh=01_Q5Aa3wFTpNhShf12YoiZTyX8PFYdqphn_1n_IlPEHba9s_XCiA&oe=69B60B75&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eF3kUXGMWIxOmFaxrcvW+aYj5Zrm2IZKFQJU+D4011I=\",\"fileLength\":\"63676\",\"seconds\":28,\"ptt\":true,\"mediaKey\":\"uC0S2JtPmOdRZd281qh4kjWM4fIjInqSBHKvPRUmciI=\",\"fileEncSha256\":\"uyl0UYrI0Dt2p8RTMFUJhG37I4BIDcM2Ox5Qa8igeSA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35168916_2062361634551111_2709630354116657383_n.enc?ccb=11-4&oh=01_Q5Aa3wFTpNhShf12YoiZTyX8PFYdqphn_1n_IlPEHba9s_XCiA&oe=69B60B75&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946274\",\"waveform\":\"AFJEVkFQTgAuHwUcNgg3AABNTVBHRy8DAE1BR0I2Tx4CTjIAPE4ALzRORyFBO0ExODJEAAA5RDAAADtFNz5BRg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:42.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:31:42'),
(7906, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"29412070314092@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:42.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:31:42'),
(7907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:42.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:31:43'),
(7908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"29412070314092@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491877085_2222626718139891_8383267512700679484_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDGXdkvC3BVX2x2utQQ0ojXpycTvxSgMIxZ7lrWQ6rOw&oe=699BABF6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:42.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:31:43'),
(7909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5D40A276D758CE547D1DAB639F3A6B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946303497,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:43.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:31:43'),
(7910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5D40A276D758CE547D1DAB639F3A6B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946303497,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:31:43.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:31:43'),
(7911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946365051,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:32:45.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:32:45'),
(7912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946365051,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:32:45.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:32:45'),
(7913, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770946365498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:32:45.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:32:45'),
(7914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54286C1ECF1A52DAD74AB8080F1AD6E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770946365498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:32:45.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:32:45'),
(7915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A88CE944AD4D9220913\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Ainda não mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Na5dPctZz11scP8ul\\/R8\\/Ha9a5xgQkpqdu4gIXwOOkc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946409,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:29'),
(7916, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A88CE944AD4D9220913\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Ainda não mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Na5dPctZz11scP8ul\\/R8\\/Ha9a5xgQkpqdu4gIXwOOkc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946409,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:29'),
(7917, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:29'),
(7918, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:29'),
(7919, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:29'),
(7920, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:29'),
(7921, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:29'),
(7922, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:29.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:30'),
(7923, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:43.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:43'),
(7924, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Men\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770946422,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:42.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:43'),
(7925, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:42.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:43'),
(7926, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946423229,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:43.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(7927, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:43.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:43'),
(7928, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:42.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:44'),
(7929, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946423229,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:43.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:44'),
(7930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A59CE710C46D197543C762A3778F5FFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946424,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:44'),
(7931, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:44'),
(7932, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:44'),
(7933, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A59CE710C46D197543C762A3778F5FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946424799,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:45'),
(7934, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A59CE710C46D197543C762A3778F5FFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946424,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:45'),
(7935, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A59CE710C46D197543C762A3778F5FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946424799,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:45'),
(7936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:33:45'),
(7937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:44.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:45'),
(7938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Men\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770946422,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:33:42.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:33:47'),
(7939, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:10.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:10'),
(7940, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:10.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:10'),
(7941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:10.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:11'),
(7942, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD54D373505A7FEC5D9\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Quando eu do o refresh pra atualizar os canal ele da um erro e não atualiza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gTd\\/xLJk+hGpBoq6ULDOzvjWWXuBHnqWw02eylOh2tk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946450,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:10.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:11'),
(7943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:10.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:11'),
(7944, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:11.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:11'),
(7945, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD54D373505A7FEC5D9\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Quando eu do o refresh pra atualizar os canal ele da um erro e não atualiza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gTd\\/xLJk+hGpBoq6ULDOzvjWWXuBHnqWw02eylOh2tk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946450,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:10.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:11'),
(7946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:11.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:11'),
(7947, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5A74840D0DABA1B276A0397E3337432\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Men acho q deve ser url deixa eu ver\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:47.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:48'),
(7948, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5A74840D0DABA1B276A0397E3337432\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Men acho q deve ser url deixa eu ver\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:47.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:48'),
(7949, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:47.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:48'),
(7950, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:47.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:48'),
(7951, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:48.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:48'),
(7952, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A74840D0DABA1B276A0397E3337432\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946488975,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:48.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:34:49'),
(7953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A74840D0DABA1B276A0397E3337432\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946488975,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:48.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:49'),
(7954, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:34:48.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:34:49'),
(7955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5B5D126A42409F5F57F66482F7AF0B9\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Fala irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t43q7eXJmp8TJ4H3TpaxfMcNswZ5iiBLIFAdmwQSPls=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:00'),
(7956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:00'),
(7957, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:00'),
(7958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5B5D126A42409F5F57F66482F7AF0B9\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Fala irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t43q7eXJmp8TJ4H3TpaxfMcNswZ5iiBLIFAdmwQSPls=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:00'),
(7959, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:00'),
(7960, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:01'),
(7961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:01'),
(7962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:01'),
(7963, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:01'),
(7964, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:00.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:02'),
(7965, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:08'),
(7966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:08'),
(7967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Na paz,\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946508,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:08'),
(7968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:08'),
(7969, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946508660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:08'),
(7970, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Na paz,\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946508,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:09'),
(7971, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:09'),
(7972, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946508660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:08.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:09'),
(7973, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A59A119B4D0405F4CB2816B102F03E50\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LCkhpi9cL2oIn0G4O8eRXLalyxzoKRK5y7ankwuuS0k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946511,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:12'),
(7974, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:12'),
(7975, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:12'),
(7976, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A59A119B4D0405F4CB2816B102F03E50\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LCkhpi9cL2oIn0G4O8eRXLalyxzoKRK5y7ankwuuS0k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946511,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:12'),
(7977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:12'),
(7978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:13'),
(7979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:13'),
(7980, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:12.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:13'),
(7981, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A50943A197FEAEE3CF272D4E84567CDD\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Na paz e aí\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G37nAht4lOY7IWAN6vaQnK4stgnjAj0ReKuaa5j6Vok=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:17'),
(7982, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:17'),
(7983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:17'),
(7984, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:17'),
(7985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A50943A197FEAEE3CF272D4E84567CDD\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Na paz e aí\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G37nAht4lOY7IWAN6vaQnK4stgnjAj0ReKuaa5j6Vok=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:17'),
(7986, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:18'),
(7987, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:18'),
(7988, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:17.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:18'),
(7989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:28'),
(7990, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A56B010EE746D3F50294C6AD9021106D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sossegado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:28'),
(7991, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:28'),
(7992, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A56B010EE746D3F50294C6AD9021106D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sossegado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:28'),
(7993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:28'),
(7994, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A56B010EE746D3F50294C6AD9021106D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946528618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:29'),
(7995, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:29'),
(7996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A56B010EE746D3F50294C6AD9021106D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946528618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:28.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:29'),
(7997, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A580D3409FD458D934036F1B7AD83233\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Irmao seguinte\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946531,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:31'),
(7998, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:31'),
(7999, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A580D3409FD458D934036F1B7AD83233\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Irmao seguinte\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946531,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:31'),
(8000, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:31'),
(8001, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:31'),
(8002, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8003, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A580D3409FD458D934036F1B7AD83233\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946531767,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:32'),
(8004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A580D3409FD458D934036F1B7AD83233\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946531767,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:31.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:32'),
(8005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5F8E4A58A0DCD2C254991B0FE16FC17\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Que bom\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9fZJlIsSdf0D+qDgFOBQqda0m6EgcpXUxmjrdypZ3d8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:34'),
(8006, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:34'),
(8007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:34'),
(8008, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:34'),
(8009, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5F8E4A58A0DCD2C254991B0FE16FC17\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Que bom\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9fZJlIsSdf0D+qDgFOBQqda0m6EgcpXUxmjrdypZ3d8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:34'),
(8010, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:35'),
(8011, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:35'),
(8012, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:34.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:35'),
(8013, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:38.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:39'),
(8014, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tens ainda aquele servidor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946538,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:38.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:39'),
(8015, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:38.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:39'),
(8016, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tens ainda aquele servidor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946538,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:38.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:39'),
(8017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:39.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:39'),
(8018, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946539294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:39.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:39'),
(8019, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:39.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:39'),
(8020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946539294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:39.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:40'),
(8021, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:41'),
(8022, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A56976E788C3F19793E7139487FA2DAA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Multiz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:41'),
(8023, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:41'),
(8024, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A56976E788C3F19793E7139487FA2DAA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Multiz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:41'),
(8025, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:41'),
(8026, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A56976E788C3F19793E7139487FA2DAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946541926,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:42'),
(8027, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A56976E788C3F19793E7139487FA2DAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946541926,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:42'),
(8028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:41.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:42'),
(8029, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:45'),
(8030, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A55733AA476AE6DFAE7B932B6580B71A\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tenho\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qAL8jrGsmrYKfFLr5AKFH1ydehwGtiS9cX00Rlr3FUo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946545,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:45'),
(8031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:45'),
(8032, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:45'),
(8033, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A55733AA476AE6DFAE7B932B6580B71A\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tenho\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qAL8jrGsmrYKfFLr5AKFH1ydehwGtiS9cX00Rlr3FUo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946545,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:45'),
(8034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:46'),
(8035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:46'),
(8036, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:45.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:46'),
(8037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5293B20DD46877D00451CB9585AC419\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VduTVIlpjWCbXEZy9gGSSAi0fDlcM3eGKa22LbkFiQQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946546,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:46'),
(8038, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:46'),
(8039, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5293B20DD46877D00451CB9585AC419\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VduTVIlpjWCbXEZy9gGSSAi0fDlcM3eGKa22LbkFiQQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946546,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:47'),
(8040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:47'),
(8041, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:47'),
(8042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:47'),
(8043, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:47'),
(8044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:46.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:48'),
(8045, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:55'),
(8046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:55'),
(8047, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode manda áudio agr.\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:55'),
(8048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:55'),
(8049, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946555769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:55'),
(8050, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:56'),
(8051, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:56'),
(8052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:56'),
(8053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946555769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:56'),
(8054, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:56'),
(8055, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:57'),
(8056, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946556577,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:57'),
(8057, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:57'),
(8058, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:57'),
(8059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946556577,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:57'),
(8060, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:58'),
(8061, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5835806C97A0D2272C39437723888AA\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Era\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dP7\\/o3s8Z0MBnWpSMjNR5z5GZQDD2kGgJobOz+cPdxs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946558,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:58'),
(8062, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:58'),
(8063, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:58'),
(8064, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:58'),
(8065, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5835806C97A0D2272C39437723888AA\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Era\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dP7\\/o3s8Z0MBnWpSMjNR5z5GZQDD2kGgJobOz+cPdxs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946558,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:59'),
(8066, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:35:59'),
(8067, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:59'),
(8068, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:59'),
(8069, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5A455FF04760A7F0BA640F3035454D4\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tá mais top q ers\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/NXsoRMyfROfPi1wq8\\/x8pqnKcwqtu\\/XyeDojNH1rjU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:35:59'),
(8070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:00'),
(8071, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:00'),
(8072, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode manda áudio agr.\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:00'),
(8073, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:58.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:00'),
(8074, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5A455FF04760A7F0BA640F3035454D4\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tá mais top q ers\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/NXsoRMyfROfPi1wq8\\/x8pqnKcwqtu\\/XyeDojNH1rjU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:55.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8075, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:01'),
(8076, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:35:56.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:02'),
(8077, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:02'),
(8078, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A57D23AAE7BAEEADE131A5823332292E\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Pode manda aí\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LDaXEXwkRJu6B+Q7l\\/Inz7PEg1kKGHzJziOcHieaYI0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946562,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:02'),
(8079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:02'),
(8080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:02'),
(8081, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:03'),
(8082, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A57D23AAE7BAEEADE131A5823332292E\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Pode manda aí\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LDaXEXwkRJu6B+Q7l\\/Inz7PEg1kKGHzJziOcHieaYI0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946562,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:03'),
(8083, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:03'),
(8084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:02.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:03'),
(8085, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A74840D0DABA1B276A0397E3337432\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946587333,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:27.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:27'),
(8086, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A74840D0DABA1B276A0397E3337432\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770946587333,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:27.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:27'),
(8087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:45'),
(8088, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5A564DA600145DF1E7874B4DBC77142\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591282728_905208011957664_4522081477156510595_n.enc?ccb=11-4&oh=01_Q5Aa3wHjnpBKMQ2iuQCjCpAt6CU_dRtOLFoXbLvKovmIZrDFuQ&oe=69B5E7CF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZIn6PwDVAFKinNj7J5s9qEfiskm3tJoBEV8WhGb\\/lrs=\",\"fileLength\":\"90303\",\"seconds\":40,\"ptt\":true,\"mediaKey\":\"sXIgeLM0hOWzo1JX9AzGKb1mrKWDtKQoLC05AjjJNIo=\",\"fileEncSha256\":\"+T0FqPBc3VbpYsEMWMl3kmUbaqHogA41GdVAXdaOYMs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591282728_905208011957664_4522081477156510595_n.enc?ccb=11-4&oh=01_Q5Aa3wHjnpBKMQ2iuQCjCpAt6CU_dRtOLFoXbLvKovmIZrDFuQ&oe=69B5E7CF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946566\",\"waveform\":\"AF0\\/TSlOQE5GJAA6LS8WHD8fSFpdU0pMUkxaTFInGBlISUFRDFJASyE5TCVEKEdCNA1VQj5KNE5JPCIWVDlPFQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946605,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:45'),
(8089, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:45'),
(8090, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5A564DA600145DF1E7874B4DBC77142\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591282728_905208011957664_4522081477156510595_n.enc?ccb=11-4&oh=01_Q5Aa3wHjnpBKMQ2iuQCjCpAt6CU_dRtOLFoXbLvKovmIZrDFuQ&oe=69B5E7CF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZIn6PwDVAFKinNj7J5s9qEfiskm3tJoBEV8WhGb\\/lrs=\",\"fileLength\":\"90303\",\"seconds\":40,\"ptt\":true,\"mediaKey\":\"sXIgeLM0hOWzo1JX9AzGKb1mrKWDtKQoLC05AjjJNIo=\",\"fileEncSha256\":\"+T0FqPBc3VbpYsEMWMl3kmUbaqHogA41GdVAXdaOYMs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591282728_905208011957664_4522081477156510595_n.enc?ccb=11-4&oh=01_Q5Aa3wHjnpBKMQ2iuQCjCpAt6CU_dRtOLFoXbLvKovmIZrDFuQ&oe=69B5E7CF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770946566\",\"waveform\":\"AF0\\/TSlOQE5GJAA6LS8WHD8fSFpdU0pMUkxaTFInGBlISUFRDFJASyE5TCVEKEdCNA1VQj5KNE5JPCIWVDlPFQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770946605,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:45'),
(8091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:45'),
(8092, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5A564DA600145DF1E7874B4DBC77142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946605740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:36:46'),
(8093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5A564DA600145DF1E7874B4DBC77142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946605740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:46'),
(8094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:36:45.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:36:46'),
(8095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5C57840C87C019FA52DBA218E7F5478\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Se tem franquia dele?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:12'),
(8096, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:12'),
(8097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:12'),
(8098, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5C57840C87C019FA52DBA218E7F5478\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946632375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:12'),
(8099, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5C57840C87C019FA52DBA218E7F5478\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Se tem franquia dele?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:12'),
(8100, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:12'),
(8101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:13'),
(8102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5C57840C87C019FA52DBA218E7F5478\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946632375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:12.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:13'),
(8103, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A55A396B3D4F0F2C83912D66AB965410\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tenho sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/5HcmVRkaf1vpowvJgv6SK52ePyDfym1A+pQBZqamPU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946652,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:32'),
(8104, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A55A396B3D4F0F2C83912D66AB965410\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tenho sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/5HcmVRkaf1vpowvJgv6SK52ePyDfym1A+pQBZqamPU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946652,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:33'),
(8105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:33'),
(8106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:33'),
(8107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:33'),
(8108, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:37:33'),
(8109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:33'),
(8110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:37:32.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:37:33'),
(8111, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:35.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:38:35'),
(8112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual valor=\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946715,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:35.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:38:35'),
(8113, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:35.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:38:35'),
(8114, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual valor=\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770946715,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:35.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:38:35'),
(8115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:35.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:38:35'),
(8116, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:35.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:38:36'),
(8117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946732220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:52.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:38:52'),
(8118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770946732220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:38:52.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:38:52'),
(8119, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACBA695C8B40BE85460EA30F995B8630\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:54.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:41:54'),
(8120, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ3Sa4JzotFmcP5egYnPamY8OS4F7kKelFEDTkCvJH5A&oe=699B97D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:54.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:41:54'),
(8121, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"ACBA695C8B40BE85460EA30F995B8630\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:54.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:41:55'),
(8122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ3Sa4JzotFmcP5egYnPamY8OS4F7kKelFEDTkCvJH5A&oe=699B97D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:54.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:41:55'),
(8123, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC0758A6EE7F7E5E9DE1A4DC00E613F8\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:54.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:41:55'),
(8124, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"28986935631970@lid\",\"fromMe\":false,\"id\":\"AC0758A6EE7F7E5E9DE1A4DC00E613F8\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:54.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:41:55'),
(8125, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ3Sa4JzotFmcP5egYnPamY8OS4F7kKelFEDTkCvJH5A&oe=699B97D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:55.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:41:55'),
(8126, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"28986935631970@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/155363529_361390798922233_7254925201586109760_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ3Sa4JzotFmcP5egYnPamY8OS4F7kKelFEDTkCvJH5A&oe=699B97D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:41:55.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:41:55'),
(8127, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:36'),
(8128, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A53246DD8CDDBE2D54C0497921173D83\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Depende do que precisa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Re+ZS3FAGkZGn\\/Ivda9FL\\/5u47+BGOeDeCZSe1h2hEE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:36'),
(8129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:36'),
(8130, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:36'),
(8131, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A53246DD8CDDBE2D54C0497921173D83\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Depende do que precisa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Re+ZS3FAGkZGn\\/Ivda9FL\\/5u47+BGOeDeCZSe1h2hEE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:36'),
(8132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:36'),
(8133, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:36'),
(8134, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:36.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:37'),
(8135, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5BE8A9E002C087F0495A11AD6B6D138\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Se quiser pode ligar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kZrLSlWxcTGPxMGtfU\\/NG+XYEfROV\\/YJDXteAGrIiOk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946965,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:45.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:45'),
(8136, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:45.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:45'),
(8137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:45.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:46'),
(8138, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5BE8A9E002C087F0495A11AD6B6D138\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Se quiser pode ligar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kZrLSlWxcTGPxMGtfU\\/NG+XYEfROV\\/YJDXteAGrIiOk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770946965,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:45.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:46'),
(8139, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:45.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:46'),
(8140, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:46.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:42:46'),
(8141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:45.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:46'),
(8142, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:42:46.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:42:47'),
(8143, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:53:25.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 22:53:25'),
(8144, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T22:53:25.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 22:53:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8145, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH473iezvMPrTy8uVHuut91ICCw_BFkYP8gYwG3Np2H-g&oe=699BB2DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwek5ntfNZsX0D_qVx4KXvyUdwLXNGCZHv9FbgXznshg&oe=699B805B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlgV0z0tbnTHvgrmcR8jp3l-vWPNx1AghN20LEJ7LNg&oe=699BA066&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94w_hK1oEtpSMytpSiy2XkdXtI3updNVxFDvEuDS1-g&oe=699B9A99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJNapMZq5t5QAP9nSdYvN2ZUnqADbqcaBNmTM14HqlWA&oe=699BA4F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGze93Hls6euHo9O12HnHHl36Huz3iwSk9zx3TZ2_zjbg&oe=699B80E8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfwFyXoIc2uKN_THd5sGHaQFr35WAGLpptht7apGq4rQ&oe=699B8980&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnKxki3kDbbg3cTTR_9M1qbQxPnBv-pspUL7PGaaCBRA&oe=699BA303&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmNKeRz_m8VXl15sEV5BDNC9FDzMrRAavLQdEjABP5Xg&oe=699B89DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPiCotWasqj_qolKoOeBAR7n5gaXIFKjmYtWn13qz38A&oe=699B9A15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUSOdbryroEjU7GFWrK5Ue72HyPGDnMcn7lHV0KfsPTg&oe=699B8815&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRKh_aI2WIfSrLHLm3wBj2OJB7hY8aSkXfPbX4nZ7hA&oe=699B9596&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe688KY_8_GXPOX3PkgFkLYQ1HRWc2rTKsr0mkLx3NMA&oe=699B904B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpH0hJE_vBiyCsVxtP1kdTkuxkkdL_qAqDdA8elAE2sQ&oe=699B9346&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdjU8gMsNmYajpTtz6m5AiJ7b-Vl7YmluI_h8vZjXRmw&oe=699B90E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvF-KA-KvcrpezhkMYSUbFMXAkp3mS1OUfnhmqEH3NgQ&oe=699B954C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEln6zSnZsmsK6Pl-I0cFjnAJCH22l1Tn_22dK7BPSAXg&oe=699B8DFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKrMw85Dq8didZbdjuzB73KsEpIMLIIO71yipn2U3i4w&oe=699B8F9C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcvsCmctdLh5VbER7YKI2hBkDYjRYLRdj6KCcgNWwhNA&oe=699BB2F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZzRwpmMSj4ZiiW-HWr6WgHtKdDqVFyluVe_l8MtJ_uQ&oe=699B8F09&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wERqruu9yoLkSaTLnwIB1KWo5Za4KF055hzeEZLKAW_KA&oe=699BAD8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVWFXzGu2fqtM5QdMSrsZi-mq8lTQmhy0tjJERy-zecw&oe=699B8F18&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-McWEGwH4auaogWyqUN2HB8kuIiHwFsrrEaBw3hvWoQ&oe=699B8396&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUmjJkLAwxncBCB0_r34BwS7RQ_-wQSJDZM-sxTO4wDw&oe=699BA25A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wESu6OW7EjrqvVyF5o9XZMyzF5tG4pm1UQMxbSeEfnoCA&oe=699BA5F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEucNsgkpbD-GODK7fcu4-sgOr8LxIUTKkpj1ISkL7YEQ&oe=699B7EEF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF3BXAsm6XIEfD0Qg6KvdsMvnIIMcD_Sy4JkQSSoIcBQ&oe=699B856B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaUGNxWRT89KSB27rqNS67ZzvVUW2iHYenLm3NaNCTzQ&oe=699B9263&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ1EO9En76MrCvCMKytHudTnV1Mob4dHoVlqt6iXtHcQ&oe=699B817B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ4NX2M7fWBFS5ZyM4KeZeeM_73oIj5yddIZPn_0xXjQ&oe=699B9AC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXUZS3bhU1DrfuTqqjOHQl21g3UXjkHsKT64NxzCeVkw&oe=699B8015&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt86LEYv8m9woEkAUce8AzSolq_SV5alOWaDz59VfQyw&oe=699B87CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkQ58cH8RPV2NCi1PIjn1fboBnsAbe-lJ4q8SWqiAMBg&oe=699B9F5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEagae_awPQprJbpwcSP_dvoIjs5wPdF9iXZY6LA_MiVw&oe=699B912F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6yJpkv483h9Vyh3TdrLOzC_htSYXLF7xCPK6OM1vPSg&oe=699B9565&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSu1RJObPD7NccRj073xMPdArheB7h-8nGVmeNnfE51g&oe=699BADD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRwH67V5NeYGCGB3tQXGdf1pyU_h1R24FQY3Q6A-0BJA&oe=699B83AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOO9DPP_pj2yaYwhvOBhwl3x9U_0rMTjl6QVnkWnzMkQ&oe=699B7DFB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqPaN25tcrZeVxrXrUIrzMB6g6Ib0B56j246oI3v51Xw&oe=699B8769&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQPcdHyAcJuuWe4tPS293S-LxWlfsmSP4Lu9zqME26lA&oe=699B8AEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr2G1bwzLgoU1JpYE_bxGF2TmDPLk35r-urtw3rNqDRw&oe=699B9424&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuczPWcMgqwwM-X1J6MfPyeP5WxCJCO8__qNptKQk0cA&oe=699BB205&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcWgbUXwNRxp2OWEYcb2eWR1xKOxTrXVpdoCzm_wDRTg&oe=699B8170&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIAk0wJynXrqPdmOhfYg3uTd5zkcDbI_gtr-rQUtNl4g&oe=699BA012&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEG9htYAyr5JOrMvCVd9JMoTZTPuKIMjDMwBS7EPYFexg&oe=699B7D95&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN9IhcJxcH5OXJw7EvW7WXuvxbVroSZu7ffJwxC_LWyQ&oe=699B9991&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqdtB47xL5Qs0dZtdz04FnOnxY9wg8DLgbg5m9FKoCmQ&oe=699B9FB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuX_qXpH4cLB8Cbm9SkVsHsIGhAQylsUKDNRe97mdvsw&oe=699BB377&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELrVURPxMRDXbpAeAVboIS488AKcj1BHQHKV-t4UPF4w&oe=699B9382&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEh5aIaTYSQ7QYYDq-w7bLe6LIzLISdWCnN4TOPjEm6Hg&oe=699B83A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp3QIuOpgCBJkV1S_iuUra-9rCJ-UuzpA8lgUDWoTzvg&oe=699B890A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUGCtzpynY5RwRm-CqEvtCWUdM2zwk2hGht5uXrgwfRQ&oe=699B897A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2Ro0r0niJZ6oIqUoR4X87J-CXN1qykV-qHejaPGLTQQ&oe=699BAA6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYgsio78MUytySb9MBnCEuYA0bcbRNntZQoUtUKsnnA&oe=699BA96B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDs35i8y369rcuJfEfD7N-rJUYrlG4NjHq6anYL_yNlA&oe=699B8295&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZN7nGDkiEFfwJ7PKWVtdac3vzCdcbfra4eJ45FX8X-Q&oe=699BB02E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFGYvzD74v7bsmsumJ2KDRyPq3FTUXgeYG3QIAj-BQA&oe=699BA2D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVo0Zj5w8N-kCLIuqneYUgd3AWT6T65r4wCOYAZPUUiA&oe=699B7F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlIKFA2jV8wwr0wBuAUPxq_2ndchcyl1YSMuP23zyVUA&oe=699BA1F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlI6lQ52YirVWI9fRGbvdgBm-6-6oNYKm3TzkzNEK_LA&oe=699B9486&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJXgVlngezSzfRJ9CNHEz6RFThzIMh7f3RchgOttjaNA&oe=699BA221&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFar04eybgJ_verf0YgqVvDuEyPuKnz7S2HnJex81hE_A&oe=699B81B8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvW7T1bV-5RKieJf900g0sZmwoTI0BN4qWba8pGy35hQ&oe=699B9EB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiJZv9xsVLGwca20fPKnM9y2dHb5J6ejmhyctmFXRghw&oe=699BAD80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7OVboGUL8nhlH4PD3qPx_5gwRJkV3HUlszqISLoSAXA&oe=699B9A4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxxWt9QdFMLkHJ1jqLzrLXrWnLwjoyEGTsUdgYP_KPgA&oe=699B8D7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHpz8eDl4XN55VEKPCTPnc_1EyqE5MNu2JRE_5DQ_VA&oe=699B9102&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUT7Pl41WFu3zinplWQt5GrKTZjB-9vOGaOEFMCcVqLQ&oe=699B7E4E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wF92DNQ49xTrFvILbbdIg-A5uHYJxYF1dGWi5kAaCDm2w&oe=699B8534&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5NP3ZXgtSTE-uo0O4oDFjEUxmyfjFywQgTgM1DqDzFw&oe=699BA312&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIUSry4lp0mjKindu4eETTRiHr9dyd9Uq5XAUjW-0T0g&oe=699B9650&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_15Mlt_a8Ya3NVP35AW5--7Au1zK0tfgElPc7FCbaAg&oe=699B8A3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wER8vMtCP0gTxadqeYpqaYX3qH-QNOV-3FUCu55K8P89Q&oe=699B87EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdab8pVzXoq5_Yhm0BE8M3pBJjToVVoJY0cvy9A6eLxQ&oe=699B7C7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM1rBR4b7ZzZry_pgqcZNqnpFw2cEpF-H7mZLzocQeqg&oe=699B961A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQOolAmKrB16ZRxKI9rGK1IvwqeAvQQVsMIi1R7aTR8g&oe=699B8150&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2kxjldTGGY3UgOZ9QLmegdbXQPUSkgSUB_1wODGjqOQ&oe=699B9D44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbqNnzdOcPVoyYGdLF8vOUXjb6yVk01c_i3kH1EBqUFQ&oe=699B886E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Ln5AwyYGh7GRrw4CdtTZ8LbaMDRU3-CQxwlcCeAqag&oe=699BA47A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe6-Fy96AFAnp66ljvBmf9fqsEG5TCZ4cyno0GTozeKQ&oe=699B9295&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbC6OelKyCk6EHscj0IQs0HubY-9TNDzcKEvh34tq4Iw&oe=699B9F8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9rdzZ2lPBF6cpOOJxd4YLKW72J8TkpFJ3zETeHQPTpg&oe=699B7CB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7Dt2Y86KEnB7yYnQIjMTOTEoymAQVGWLIHYV-dOY2jg&oe=699B8A44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDej3neDTNBgTK81KsMOPqaOztHDhuKYe356RDsJBEwA&oe=699B95FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHMhQmgbCDx2ALJf2hwVIRTDOdbzmU3UR82kNjElVtng&oe=699B9A25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJiRHepg8BWerd4eaVjqhD1TKCJ9cvSyM1TMSVfNsimA&oe=699BB1BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wH68cu65n1nZyLHuq86XCMY8IX9WxRrfknDodjYyOTpIg&oe=699B96C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjo9LNztbYvotuEJABl7De9Pe_Nf9NyMk05dMEaItGmA&oe=699B8561&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGl-gjOaoB4t4WZRnIfv059YUOrFlvcdO3xpFAy2KkJVQ&oe=699B8087&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUflZXWZakBD5i7Mdv3U6CDjiFGsuvJSrNhOhcxcsDmg&oe=699BA627&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE13O8RjJW7Hf7Cg7jY1v1KCD0ysaH1cXSs5OzQjRdJIQ&oe=699B9140&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuTE1Rr7_lwHgDTayyxZR0ftpigsrUe0E_IKXf9REkag&oe=699BA8DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_zSsrGbAXmwEJ-qQBbm5Cy0-smVl94-FMKJwIl1YSNw&oe=699BB0C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0YJWtktQci-bwA-cnPLcTaCjPkl9JqL-Wa8Cq5QUhXg&oe=699BAC63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgRrZBG_H-_gsGZUuSn6AG1G2Ob7L6b0-N7yRpVOpLdw&oe=699B8488&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_v7xq7Ex_07EHKnfVYWWn3Ae-EQBI0zrNUhCRaWCKw&oe=699B80D1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYw4i99Ivs0C_ofIqdD87cEe-Oh2UNXU3mJw1Lt8vAog&oe=699B929C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9qwIjbYqnce4Gt70UsyKoYLawIQ3oSPn033owbkxMzQ&oe=699BACB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ6aSNVF4ZPysC-lxY0danMqTwEhfpMcFhqwaoM2ZYOw&oe=699B90D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ZZn0lRkcbdvjs_BqjEDBT5CcSuVO67AstaKkEzsAJQ&oe=699BB3D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkgH2Wi8DL9XtdRij2gZrMZKME53wptzJOPf4UZuGEQg&oe=699BA33E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpw6aghxMpt5dmpN4Kd2FmvZWYvl_RQM-GJFgXZTIoHQ&oe=699BAB2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8Wa_JsmYXWaOELe2-0TgmOOApE0FYguiotXuTz-sfDA&oe=699B8E5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7NBdR9R6aOPVluQ2DHSsGgKAqHbD9uE3iWbN6s55F3A&oe=699B8B36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-p4crAcUewXg30bEZ3wjJ5ZjH9g4yi9Wg6teMpmnSIA&oe=699B935B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE741cQ_DgJEk0XQVbAH7M0Gk9Lywvom2kVXbL6axdjnA&oe=699BB007&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuwOTSFNvTGlKFHgWMOU1evRnuca2AsgD2YoNLP36AxA&oe=699B91B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsGr1YpNwilZhB0Nr0DzPcrnJlk2nliA6OhdwF15g0aw&oe=699BACE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDJq0dJGwDBbLVwDxZqKGzmalebg1pzDWRtNrN5cXLtg&oe=699BA20B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0bgokWJByyUBj2n1Lgk4XuvxrhXT2uAxOQIVBjh-V-A&oe=699BB0A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wGo3aytYBM-rq74KIkN0nCz0h_wLdWWAQx1422mL04c0g&oe=699B8512&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDP1MNs-YqpyvpL9NlLYIfdSzxh12PpZpk2eNPBKLUKg&oe=699B8525&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHzO7QP2xhN1-r1XLg0zqxHVyBIx2vtUsTzaH_hhEcsw&oe=699B9405&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8UiqHFc4-0tjHR8EB7Vp1g2piISwB7iCHCP2WgJQ4og&oe=699B80E3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOmUjZH_Cus7OOOfOvofWjR0cFbad0tX3GNXtiy9LDVw&oe=699B9473&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner', 1, '2026-02-12 23:12:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8146, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH473iezvMPrTy8uVHuut91ICCw_BFkYP8gYwG3Np2H-g&oe=699BB2DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwek5ntfNZsX0D_qVx4KXvyUdwLXNGCZHv9FbgXznshg&oe=699B805B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlgV0z0tbnTHvgrmcR8jp3l-vWPNx1AghN20LEJ7LNg&oe=699BA066&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94w_hK1oEtpSMytpSiy2XkdXtI3updNVxFDvEuDS1-g&oe=699B9A99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJNapMZq5t5QAP9nSdYvN2ZUnqADbqcaBNmTM14HqlWA&oe=699BA4F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGze93Hls6euHo9O12HnHHl36Huz3iwSk9zx3TZ2_zjbg&oe=699B80E8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfwFyXoIc2uKN_THd5sGHaQFr35WAGLpptht7apGq4rQ&oe=699B8980&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnKxki3kDbbg3cTTR_9M1qbQxPnBv-pspUL7PGaaCBRA&oe=699BA303&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmNKeRz_m8VXl15sEV5BDNC9FDzMrRAavLQdEjABP5Xg&oe=699B89DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPiCotWasqj_qolKoOeBAR7n5gaXIFKjmYtWn13qz38A&oe=699B9A15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUSOdbryroEjU7GFWrK5Ue72HyPGDnMcn7lHV0KfsPTg&oe=699B8815&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRKh_aI2WIfSrLHLm3wBj2OJB7hY8aSkXfPbX4nZ7hA&oe=699B9596&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe688KY_8_GXPOX3PkgFkLYQ1HRWc2rTKsr0mkLx3NMA&oe=699B904B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpH0hJE_vBiyCsVxtP1kdTkuxkkdL_qAqDdA8elAE2sQ&oe=699B9346&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdjU8gMsNmYajpTtz6m5AiJ7b-Vl7YmluI_h8vZjXRmw&oe=699B90E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvF-KA-KvcrpezhkMYSUbFMXAkp3mS1OUfnhmqEH3NgQ&oe=699B954C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEln6zSnZsmsK6Pl-I0cFjnAJCH22l1Tn_22dK7BPSAXg&oe=699B8DFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKrMw85Dq8didZbdjuzB73KsEpIMLIIO71yipn2U3i4w&oe=699B8F9C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcvsCmctdLh5VbER7YKI2hBkDYjRYLRdj6KCcgNWwhNA&oe=699BB2F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZzRwpmMSj4ZiiW-HWr6WgHtKdDqVFyluVe_l8MtJ_uQ&oe=699B8F09&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wERqruu9yoLkSaTLnwIB1KWo5Za4KF055hzeEZLKAW_KA&oe=699BAD8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVWFXzGu2fqtM5QdMSrsZi-mq8lTQmhy0tjJERy-zecw&oe=699B8F18&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-McWEGwH4auaogWyqUN2HB8kuIiHwFsrrEaBw3hvWoQ&oe=699B8396&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUmjJkLAwxncBCB0_r34BwS7RQ_-wQSJDZM-sxTO4wDw&oe=699BA25A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wESu6OW7EjrqvVyF5o9XZMyzF5tG4pm1UQMxbSeEfnoCA&oe=699BA5F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEucNsgkpbD-GODK7fcu4-sgOr8LxIUTKkpj1ISkL7YEQ&oe=699B7EEF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF3BXAsm6XIEfD0Qg6KvdsMvnIIMcD_Sy4JkQSSoIcBQ&oe=699B856B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEObpAXinipgt_4sWuL9oetDLQ5UGUMXkHMRvH-mjVR4A&oe=699B7C4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaUGNxWRT89KSB27rqNS67ZzvVUW2iHYenLm3NaNCTzQ&oe=699B9263&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ1EO9En76MrCvCMKytHudTnV1Mob4dHoVlqt6iXtHcQ&oe=699B817B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ4NX2M7fWBFS5ZyM4KeZeeM_73oIj5yddIZPn_0xXjQ&oe=699B9AC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXUZS3bhU1DrfuTqqjOHQl21g3UXjkHsKT64NxzCeVkw&oe=699B8015&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt86LEYv8m9woEkAUce8AzSolq_SV5alOWaDz59VfQyw&oe=699B87CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkQ58cH8RPV2NCi1PIjn1fboBnsAbe-lJ4q8SWqiAMBg&oe=699B9F5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEagae_awPQprJbpwcSP_dvoIjs5wPdF9iXZY6LA_MiVw&oe=699B912F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6yJpkv483h9Vyh3TdrLOzC_htSYXLF7xCPK6OM1vPSg&oe=699B9565&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSu1RJObPD7NccRj073xMPdArheB7h-8nGVmeNnfE51g&oe=699BADD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRwH67V5NeYGCGB3tQXGdf1pyU_h1R24FQY3Q6A-0BJA&oe=699B83AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOO9DPP_pj2yaYwhvOBhwl3x9U_0rMTjl6QVnkWnzMkQ&oe=699B7DFB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqPaN25tcrZeVxrXrUIrzMB6g6Ib0B56j246oI3v51Xw&oe=699B8769&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQPcdHyAcJuuWe4tPS293S-LxWlfsmSP4Lu9zqME26lA&oe=699B8AEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr2G1bwzLgoU1JpYE_bxGF2TmDPLk35r-urtw3rNqDRw&oe=699B9424&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuczPWcMgqwwM-X1J6MfPyeP5WxCJCO8__qNptKQk0cA&oe=699BB205&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcWgbUXwNRxp2OWEYcb2eWR1xKOxTrXVpdoCzm_wDRTg&oe=699B8170&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIAk0wJynXrqPdmOhfYg3uTd5zkcDbI_gtr-rQUtNl4g&oe=699BA012&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEG9htYAyr5JOrMvCVd9JMoTZTPuKIMjDMwBS7EPYFexg&oe=699B7D95&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN9IhcJxcH5OXJw7EvW7WXuvxbVroSZu7ffJwxC_LWyQ&oe=699B9991&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqdtB47xL5Qs0dZtdz04FnOnxY9wg8DLgbg5m9FKoCmQ&oe=699B9FB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuX_qXpH4cLB8Cbm9SkVsHsIGhAQylsUKDNRe97mdvsw&oe=699BB377&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELrVURPxMRDXbpAeAVboIS488AKcj1BHQHKV-t4UPF4w&oe=699B9382&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEh5aIaTYSQ7QYYDq-w7bLe6LIzLISdWCnN4TOPjEm6Hg&oe=699B83A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp3QIuOpgCBJkV1S_iuUra-9rCJ-UuzpA8lgUDWoTzvg&oe=699B890A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUGCtzpynY5RwRm-CqEvtCWUdM2zwk2hGht5uXrgwfRQ&oe=699B897A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2Ro0r0niJZ6oIqUoR4X87J-CXN1qykV-qHejaPGLTQQ&oe=699BAA6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYgsio78MUytySb9MBnCEuYA0bcbRNntZQoUtUKsnnA&oe=699BA96B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDs35i8y369rcuJfEfD7N-rJUYrlG4NjHq6anYL_yNlA&oe=699B8295&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZN7nGDkiEFfwJ7PKWVtdac3vzCdcbfra4eJ45FX8X-Q&oe=699BB02E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFGYvzD74v7bsmsumJ2KDRyPq3FTUXgeYG3QIAj-BQA&oe=699BA2D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVo0Zj5w8N-kCLIuqneYUgd3AWT6T65r4wCOYAZPUUiA&oe=699B7F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlIKFA2jV8wwr0wBuAUPxq_2ndchcyl1YSMuP23zyVUA&oe=699BA1F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlI6lQ52YirVWI9fRGbvdgBm-6-6oNYKm3TzkzNEK_LA&oe=699B9486&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJXgVlngezSzfRJ9CNHEz6RFThzIMh7f3RchgOttjaNA&oe=699BA221&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFar04eybgJ_verf0YgqVvDuEyPuKnz7S2HnJex81hE_A&oe=699B81B8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvW7T1bV-5RKieJf900g0sZmwoTI0BN4qWba8pGy35hQ&oe=699B9EB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiJZv9xsVLGwca20fPKnM9y2dHb5J6ejmhyctmFXRghw&oe=699BAD80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7OVboGUL8nhlH4PD3qPx_5gwRJkV3HUlszqISLoSAXA&oe=699B9A4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxxWt9QdFMLkHJ1jqLzrLXrWnLwjoyEGTsUdgYP_KPgA&oe=699B8D7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHpz8eDl4XN55VEKPCTPnc_1EyqE5MNu2JRE_5DQ_VA&oe=699B9102&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUT7Pl41WFu3zinplWQt5GrKTZjB-9vOGaOEFMCcVqLQ&oe=699B7E4E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wF92DNQ49xTrFvILbbdIg-A5uHYJxYF1dGWi5kAaCDm2w&oe=699B8534&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5NP3ZXgtSTE-uo0O4oDFjEUxmyfjFywQgTgM1DqDzFw&oe=699BA312&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIUSry4lp0mjKindu4eETTRiHr9dyd9Uq5XAUjW-0T0g&oe=699B9650&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_15Mlt_a8Ya3NVP35AW5--7Au1zK0tfgElPc7FCbaAg&oe=699B8A3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wER8vMtCP0gTxadqeYpqaYX3qH-QNOV-3FUCu55K8P89Q&oe=699B87EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdab8pVzXoq5_Yhm0BE8M3pBJjToVVoJY0cvy9A6eLxQ&oe=699B7C7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM1rBR4b7ZzZry_pgqcZNqnpFw2cEpF-H7mZLzocQeqg&oe=699B961A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQOolAmKrB16ZRxKI9rGK1IvwqeAvQQVsMIi1R7aTR8g&oe=699B8150&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2kxjldTGGY3UgOZ9QLmegdbXQPUSkgSUB_1wODGjqOQ&oe=699B9D44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbqNnzdOcPVoyYGdLF8vOUXjb6yVk01c_i3kH1EBqUFQ&oe=699B886E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Ln5AwyYGh7GRrw4CdtTZ8LbaMDRU3-CQxwlcCeAqag&oe=699BA47A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe6-Fy96AFAnp66ljvBmf9fqsEG5TCZ4cyno0GTozeKQ&oe=699B9295&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbC6OelKyCk6EHscj0IQs0HubY-9TNDzcKEvh34tq4Iw&oe=699B9F8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9rdzZ2lPBF6cpOOJxd4YLKW72J8TkpFJ3zETeHQPTpg&oe=699B7CB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7Dt2Y86KEnB7yYnQIjMTOTEoymAQVGWLIHYV-dOY2jg&oe=699B8A44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDej3neDTNBgTK81KsMOPqaOztHDhuKYe356RDsJBEwA&oe=699B95FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHMhQmgbCDx2ALJf2hwVIRTDOdbzmU3UR82kNjElVtng&oe=699B9A25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJiRHepg8BWerd4eaVjqhD1TKCJ9cvSyM1TMSVfNsimA&oe=699BB1BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wH68cu65n1nZyLHuq86XCMY8IX9WxRrfknDodjYyOTpIg&oe=699B96C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjo9LNztbYvotuEJABl7De9Pe_Nf9NyMk05dMEaItGmA&oe=699B8561&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGl-gjOaoB4t4WZRnIfv059YUOrFlvcdO3xpFAy2KkJVQ&oe=699B8087&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUflZXWZakBD5i7Mdv3U6CDjiFGsuvJSrNhOhcxcsDmg&oe=699BA627&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE13O8RjJW7Hf7Cg7jY1v1KCD0ysaH1cXSs5OzQjRdJIQ&oe=699B9140&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuTE1Rr7_lwHgDTayyxZR0ftpigsrUe0E_IKXf9REkag&oe=699BA8DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_zSsrGbAXmwEJ-qQBbm5Cy0-smVl94-FMKJwIl1YSNw&oe=699BB0C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0YJWtktQci-bwA-cnPLcTaCjPkl9JqL-Wa8Cq5QUhXg&oe=699BAC63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgRrZBG_H-_gsGZUuSn6AG1G2Ob7L6b0-N7yRpVOpLdw&oe=699B8488&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHf_v7xq7Ex_07EHKnfVYWWn3Ae-EQBI0zrNUhCRaWCKw&oe=699B80D1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYw4i99Ivs0C_ofIqdD87cEe-Oh2UNXU3mJw1Lt8vAog&oe=699B929C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9qwIjbYqnce4Gt70UsyKoYLawIQ3oSPn033owbkxMzQ&oe=699BACB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ6aSNVF4ZPysC-lxY0danMqTwEhfpMcFhqwaoM2ZYOw&oe=699B90D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ZZn0lRkcbdvjs_BqjEDBT5CcSuVO67AstaKkEzsAJQ&oe=699BB3D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkgH2Wi8DL9XtdRij2gZrMZKME53wptzJOPf4UZuGEQg&oe=699BA33E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpw6aghxMpt5dmpN4Kd2FmvZWYvl_RQM-GJFgXZTIoHQ&oe=699BAB2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8Wa_JsmYXWaOELe2-0TgmOOApE0FYguiotXuTz-sfDA&oe=699B8E5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7NBdR9R6aOPVluQ2DHSsGgKAqHbD9uE3iWbN6s55F3A&oe=699B8B36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-p4crAcUewXg30bEZ3wjJ5ZjH9g4yi9Wg6teMpmnSIA&oe=699B935B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE741cQ_DgJEk0XQVbAH7M0Gk9Lywvom2kVXbL6axdjnA&oe=699BB007&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuwOTSFNvTGlKFHgWMOU1evRnuca2AsgD2YoNLP36AxA&oe=699B91B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsGr1YpNwilZhB0Nr0DzPcrnJlk2nliA6OhdwF15g0aw&oe=699BACE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDJq0dJGwDBbLVwDxZqKGzmalebg1pzDWRtNrN5cXLtg&oe=699BA20B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0bgokWJByyUBj2n1Lgk4XuvxrhXT2uAxOQIVBjh-V-A&oe=699BB0A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wGo3aytYBM-rq74KIkN0nCz0h_wLdWWAQx1422mL04c0g&oe=699B8512&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDP1MNs-YqpyvpL9NlLYIfdSzxh12PpZpk2eNPBKLUKg&oe=699B8525&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHzO7QP2xhN1-r1XLg0zqxHVyBIx2vtUsTzaH_hhEcsw&oe=699B9405&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8UiqHFc4-0tjHR8EB7Vp1g2piISwB7iCHCP2WgJQ4og&oe=699B80E3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOmUjZH_Cus7OOOfOvofWjR0cFbad0tX3GNXtiy9LDVw&oe=699B9473&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner', 1, '2026-02-12 23:12:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8147, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"jtvplay2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770948853,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:14:13'),
(8148, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:14:13'),
(8149, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:14:13'),
(8150, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"jtvplay2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770948853,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:14:14'),
(8151, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:14:14'),
(8152, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:14:14'),
(8153, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770948853959,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:14:14'),
(8154, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770948853959,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:14:13.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:14:14'),
(8155, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5061CC86FE121D8C7DFC27415023BBD\"},\"pushName\":\"MultServers\",\"message\":{\"extendedTextMessage\":{\"text\":\"lNGuVaWdLE0082!\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4M1Eo+89jssclz++c5ropljGXduuyK80CkqQ0proybE=\"}},\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949039,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:19'),
(8156, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:19'),
(8157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:19'),
(8158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:19'),
(8159, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:19'),
(8160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:20'),
(8161, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5061CC86FE121D8C7DFC27415023BBD\"},\"pushName\":\"MultServers\",\"message\":{\"extendedTextMessage\":{\"text\":\"lNGuVaWdLE0082!\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4M1Eo+89jssclz++c5ropljGXduuyK80CkqQ0proybE=\"}},\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949039,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:20'),
(8162, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:19.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:20'),
(8163, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5DB032AFA7F1959BFEAED1288BF5853\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"cms.dominusplay.click\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rNTNWw2c9c94QgMJsxWCEfwAz2059aFnpZnsb9qbkNg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949044,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:24'),
(8164, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:24'),
(8165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:24'),
(8166, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5DB032AFA7F1959BFEAED1288BF5853\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"cms.dominusplay.click\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rNTNWw2c9c94QgMJsxWCEfwAz2059aFnpZnsb9qbkNg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949044,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:24'),
(8167, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:24'),
(8168, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:25'),
(8169, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:25'),
(8170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:24.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:25'),
(8171, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E6DB8A83992A8746D0D9591808F306\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"jtvplay2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770949057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:37'),
(8172, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E6DB8A83992A8746D0D9591808F306\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"jtvplay2026\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770949057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:37'),
(8173, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:38'),
(8174, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:38'),
(8175, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D26FAFD99EC705D6E121CA86D290B6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"lNGuVaWdLE0082!\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:38'),
(8176, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:38'),
(8177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:38'),
(8178, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D26FAFD99EC705D6E121CA86D290B6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"lNGuVaWdLE0082!\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:38'),
(8179, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:38'),
(8180, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D91F616FF703485BD0317DD3D6D6C4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"cms.dominusplay.click\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:38'),
(8181, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:39'),
(8182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:37.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:39'),
(8183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:39'),
(8184, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D91F616FF703485BD0317DD3D6D6C4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"cms.dominusplay.click\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:39'),
(8185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E6DB8A83992A8746D0D9591808F306\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949058342,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:39'),
(8186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:40'),
(8187, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E6DB8A83992A8746D0D9591808F306\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949058342,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:40'),
(8188, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:40'),
(8189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D26FAFD99EC705D6E121CA86D290B6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949058389,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:40'),
(8190, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D91F616FF703485BD0317DD3D6D6C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949058408,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:40'),
(8191, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:17:41'),
(8192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D91F616FF703485BD0317DD3D6D6C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949058408,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:41'),
(8193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D26FAFD99EC705D6E121CA86D290B6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949058389,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:41'),
(8194, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:17:38.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:17:41'),
(8195, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5BAD6F0442E7A1E51C347215B9C3275\"},\"pushName\":\"MultServers\",\"message\":{\"extendedTextMessage\":{\"text\":\"SVooitMmPw0621\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+Ep0LH4NUzsW\\/qN7dVbVnAZy2gxYK6gRcb0nZHqEXHE=\"}},\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949203,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:03'),
(8196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:03'),
(8197, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:03'),
(8198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:03'),
(8199, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:04'),
(8200, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5BAD6F0442E7A1E51C347215B9C3275\"},\"pushName\":\"MultServers\",\"message\":{\"extendedTextMessage\":{\"text\":\"SVooitMmPw0621\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+Ep0LH4NUzsW\\/qN7dVbVnAZy2gxYK6gRcb0nZHqEXHE=\"}},\"contextInfo\":{\"stanzaId\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"jtvplay2026\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770949203,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:04'),
(8201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:04'),
(8202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:03.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:04'),
(8203, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5FC41E6B137F5D07FE9CB1ED923D14D\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"https:\\/\\/multz.sigma.vin\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RewVqSGOhOSwO7PMCDiUCOCsmeFMik0qcMLLKcE\\/75I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949220,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:20'),
(8204, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5FC41E6B137F5D07FE9CB1ED923D14D\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"https:\\/\\/multz.sigma.vin\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770944191\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RewVqSGOhOSwO7PMCDiUCOCsmeFMik0qcMLLKcE\\/75I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949220,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:20'),
(8205, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:21'),
(8206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:21'),
(8207, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:21'),
(8208, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:20:21'),
(8209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:21'),
(8210, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:20:20.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:20:22'),
(8211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:24:46.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:24:46'),
(8212, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"3EB0A0EEF20FB28F40D5B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vlw men vamo se falando\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770949486,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:24:46.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:24:46'),
(8213, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:24:46.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:24:46'),
(8214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:24:46.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:24:46'),
(8215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":true,\"id\":\"3EB0A0EEF20FB28F40D5B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vlw men vamo se falando\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770949486,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:24:46.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:24:46'),
(8216, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEayQo_1zYYqLxGWvuqxtIaLqXeBJ_7399t6OoJWloMng&oe=699B9D76&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:24:46.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:24:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D26FAFD99EC705D6E121CA86D290B6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949529623,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:29.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:29'),
(8218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E6DB8A83992A8746D0D9591808F306\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949529629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:29.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:29'),
(8219, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D26FAFD99EC705D6E121CA86D290B6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949529623,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:29.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:29'),
(8220, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D91F616FF703485BD0317DD3D6D6C4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949529616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:29.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:29'),
(8221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E6DB8A83992A8746D0D9591808F306\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949529629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:29.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:30'),
(8222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D91F616FF703485BD0317DD3D6D6C4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949529616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:29.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:30'),
(8223, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5F6754F5348697E92C391AF1F8556F9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949532015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:32.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:32'),
(8224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5F6754F5348697E92C391AF1F8556F9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949532015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:32.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:32'),
(8225, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:32.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:32'),
(8226, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:32.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:32'),
(8227, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:33.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:33'),
(8228, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:33.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:33'),
(8229, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4BDCE5DC4E72F5E5348D6D55B3D32E\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bTH8cvUl2TKUXaRIb\\/BBzVRBG6wdmWXAWGc+JsqH+nY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949535,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:35'),
(8230, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:35'),
(8231, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:35'),
(8232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F0140480076AD8B968702819DE10D5\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Zv+L+os3xyRnyoBWWIM5AUhplJ4MZFi6cFExQGSteg4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949535,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:35'),
(8233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:35'),
(8234, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4BDCE5DC4E72F5E5348D6D55B3D32E\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bTH8cvUl2TKUXaRIb\\/BBzVRBG6wdmWXAWGc+JsqH+nY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949535,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:36'),
(8235, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:36'),
(8236, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:36'),
(8237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:36'),
(8238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:36'),
(8239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:37'),
(8240, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:37'),
(8241, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:36.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:37'),
(8242, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:37'),
(8243, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:37'),
(8244, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0D71985A96267F1650A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949538041,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:38.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:38'),
(8245, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0D71985A96267F1650A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949538041,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:38.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:38'),
(8246, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D71985A96267F1650A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🤖 *Comandos Disponíveis*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nAqui estão os comandos que você pode usar:\\\\n\\\\n┌─────────────────────\\\\n│ 📅 *\\/vencimento*\\\\n│    Consultar próximo vencimento\\\\n│\\\\n│ ✅ *\\/pago*\\\\n│    Confirmar pagamento realizado\\\\n│    _(Envie o comprovante primeiro)_\\\\n│\\\\n│ ⏸️ *\\/parar*\\\\n│    Pausar serviço temporariamente\\\\n│\\\\n│ ▶️ *\\/renovar*\\\\n│    Reativar serviço pausado\\\\n│\\\\n│ 📊 *\\/plano*\\\\n│    Ver detalhes do seu plano\\\\n│\\\\n│ 💰 *\\/saldo*\\\\n│    Consultar saldo de créditos\\\\n│\\\\n│ 📈 *\\/status*\\\\n│    Ver status geral da conta\\\\n│\\\\n│ ❓ *\\/ajuda*\\\\n│    Ver esta lista de comandos\\\\n└─────────────────────\\\\n\\\\n💡 *Dica:* Todos os comandos começam com \\/\\\\n\\\\n📞 *Precisa de ajuda?*\\\\nEntre em contato com nosso suporte!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949537,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:37.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:38'),
(8247, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:36.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:38'),
(8248, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:38'),
(8249, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D71985A96267F1650A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🤖 *Comandos Disponíveis*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nAqui estão os comandos que você pode usar:\\\\n\\\\n┌─────────────────────\\\\n│ 📅 *\\/vencimento*\\\\n│    Consultar próximo vencimento\\\\n│\\\\n│ ✅ *\\/pago*\\\\n│    Confirmar pagamento realizado\\\\n│    _(Envie o comprovante primeiro)_\\\\n│\\\\n│ ⏸️ *\\/parar*\\\\n│    Pausar serviço temporariamente\\\\n│\\\\n│ ▶️ *\\/renovar*\\\\n│    Reativar serviço pausado\\\\n│\\\\n│ 📊 *\\/plano*\\\\n│    Ver detalhes do seu plano\\\\n│\\\\n│ 💰 *\\/saldo*\\\\n│    Consultar saldo de créditos\\\\n│\\\\n│ 📈 *\\/status*\\\\n│    Ver status geral da conta\\\\n│\\\\n│ ❓ *\\/ajuda*\\\\n│    Ver esta lista de comandos\\\\n└─────────────────────\\\\n\\\\n💡 *Dica:* Todos os comandos começam com \\/\\\\n\\\\n📞 *Precisa de ajuda?*\\\\nEntre em contato com nosso suporte!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949537,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:37.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:39'),
(8250, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:38.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:39'),
(8251, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F0140480076AD8B968702819DE10D5\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Zv+L+os3xyRnyoBWWIM5AUhplJ4MZFi6cFExQGSteg4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949535,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:35.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:39'),
(8252, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CED3212E35983EC199D05EA098D3FB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949538893,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:38.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:39'),
(8253, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:38.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:39'),
(8254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:39.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:40'),
(8255, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:39.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:40'),
(8256, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:39.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:40'),
(8257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:39.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:40'),
(8258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5CED3212E35983EC199D05EA098D3FB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949538893,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:38.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:40'),
(8259, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:41'),
(8260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACF6047A77AF4DB61BFB476C01D1758B\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6nGLephsOIHCmBGidYm2M1ppwvzehjXIUlqxt3o40XI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:41'),
(8261, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:41'),
(8262, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B2ECBE8FE7AD059DE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🤖 *Comandos Disponíveis*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nAqui estão os comandos que você pode usar:\\\\n\\\\n┌─────────────────────\\\\n│ 📅 *\\/vencimento*\\\\n│    Consultar próximo vencimento\\\\n│\\\\n│ ✅ *\\/pago*\\\\n│    Confirmar pagamento realizado\\\\n│    _(Envie o comprovante primeiro)_\\\\n│\\\\n│ ⏸️ *\\/parar*\\\\n│    Pausar serviço temporariamente\\\\n│\\\\n│ ▶️ *\\/renovar*\\\\n│    Reativar serviço pausado\\\\n│\\\\n│ 📊 *\\/plano*\\\\n│    Ver detalhes do seu plano\\\\n│\\\\n│ 💰 *\\/saldo*\\\\n│    Consultar saldo de créditos\\\\n│\\\\n│ 📈 *\\/status*\\\\n│    Ver status geral da conta\\\\n│\\\\n│ ❓ *\\/ajuda*\\\\n│    Ver esta lista de comandos\\\\n└─────────────────────\\\\n\\\\n💡 *Dica:* Todos os comandos começam com \\/\\\\n\\\\n📞 *Precisa de ajuda?*\\\\nEntre em contato com nosso suporte!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949541,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:41'),
(8263, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:41'),
(8264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACF6047A77AF4DB61BFB476C01D1758B\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6nGLephsOIHCmBGidYm2M1ppwvzehjXIUlqxt3o40XI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:42'),
(8265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:42'),
(8266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:42'),
(8267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:42'),
(8268, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB00B2ECBE8FE7AD059DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949541792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:42'),
(8269, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5CED3212E35983EC199D05EA098D3FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770949539,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:39.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:25:43'),
(8270, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B2ECBE8FE7AD059DE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🤖 *Comandos Disponíveis*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nAqui estão os comandos que você pode usar:\\\\n\\\\n┌─────────────────────\\\\n│ 📅 *\\/vencimento*\\\\n│    Consultar próximo vencimento\\\\n│\\\\n│ ✅ *\\/pago*\\\\n│    Confirmar pagamento realizado\\\\n│    _(Envie o comprovante primeiro)_\\\\n│\\\\n│ ⏸️ *\\/parar*\\\\n│    Pausar serviço temporariamente\\\\n│\\\\n│ ▶️ *\\/renovar*\\\\n│    Reativar serviço pausado\\\\n│\\\\n│ 📊 *\\/plano*\\\\n│    Ver detalhes do seu plano\\\\n│\\\\n│ 💰 *\\/saldo*\\\\n│    Consultar saldo de créditos\\\\n│\\\\n│ 📈 *\\/status*\\\\n│    Ver status geral da conta\\\\n│\\\\n│ ❓ *\\/ajuda*\\\\n│    Ver esta lista de comandos\\\\n└─────────────────────\\\\n\\\\n💡 *Dica:* Todos os comandos começam com \\/\\\\n\\\\n📞 *Precisa de ajuda?*\\\\nEntre em contato com nosso suporte!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949541,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:43'),
(8271, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB00B2ECBE8FE7AD059DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949541792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:41.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:43'),
(8272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5CED3212E35983EC199D05EA098D3FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770949539,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:25:39.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:25:43'),
(8273, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:32.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:32'),
(8274, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:32.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:32'),
(8275, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:35.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:35'),
(8276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:35.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:36'),
(8277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:36'),
(8278, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:36'),
(8279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:36'),
(8280, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:36'),
(8281, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:37'),
(8282, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:37'),
(8283, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:37'),
(8284, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:37'),
(8285, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5D7C20D82B7341F5733A7AE3BD6C149\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/renovar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nZaqCeMQl5dIoZk3Qdu00pyENVYkl\\/bNBkhR0YlVdNM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:37'),
(8286, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07C71969BA2076366E8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço Reativado*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nSeu serviço foi reativado com sucesso.\\\\n\\\\nQualquer dúvida, estamos à disposição!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949599,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:39.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8287, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07C71969BA2076366E8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço Reativado*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nSeu serviço foi reativado com sucesso.\\\\n\\\\nQualquer dúvida, estamos à disposição!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949599,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:39.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:39'),
(8288, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5D7C20D82B7341F5733A7AE3BD6C149\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/renovar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nZaqCeMQl5dIoZk3Qdu00pyENVYkl\\/bNBkhR0YlVdNM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:36.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:39'),
(8289, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07C71969BA2076366E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949599909,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:39.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:39'),
(8290, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07C71969BA2076366E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949599909,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:39.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:40'),
(8291, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E7A49E9EF40C443D70\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço Reativado*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nSeu serviço foi reativado com sucesso.\\\\n\\\\nQualquer dúvida, estamos à disposição!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949601,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:41.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:41'),
(8292, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E7A49E9EF40C443D70\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço Reativado*\\\\n\\\\nOlá, *carol*!\\\\n\\\\nSeu serviço foi reativado com sucesso.\\\\n\\\\nQualquer dúvida, estamos à disposição!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949601,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:41.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:41'),
(8293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0E7A49E9EF40C443D70\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949602021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:42.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:26:42'),
(8294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0E7A49E9EF40C443D70\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949602021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:26:42.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:26:42'),
(8295, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"3EB0A0EEF20FB28F40D5B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949621302,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:01.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:01'),
(8296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868@lid\",\"id\":\"3EB0A0EEF20FB28F40D5B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770949621302,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:01.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:01'),
(8297, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:05.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:05'),
(8298, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:05.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:05'),
(8299, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:07'),
(8300, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:07'),
(8301, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:07'),
(8302, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:07'),
(8303, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:07'),
(8304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:08'),
(8305, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:08'),
(8306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A56C6B711344752A75FB19C31166FB5A\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JPzF+6uwROFVi9P76gdiIcvZUGWAR3iZzYBZQrvdB8Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949627,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:08'),
(8307, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:08.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:08'),
(8308, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:08'),
(8309, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:08.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:09'),
(8310, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0508AC4D50B935AED86\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 20\\/05\\/2026\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *20\\/05\\/2026*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949629,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:10.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:10'),
(8311, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A56C6B711344752A75FB19C31166FB5A\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JPzF+6uwROFVi9P76gdiIcvZUGWAR3iZzYBZQrvdB8Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949627,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:07.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:10'),
(8312, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0508AC4D50B935AED86\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 20\\/05\\/2026\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *20\\/05\\/2026*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949629,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:10.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:10'),
(8313, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0508AC4D50B935AED86\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949630440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:10.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:10'),
(8314, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0508AC4D50B935AED86\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949630440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:10.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:10'),
(8315, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CA96D1895036274F60\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 18\\/08\\/2026\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *18\\/08\\/2026*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949632,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:12.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:12'),
(8316, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CA96D1895036274F60\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 18\\/08\\/2026\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *18\\/08\\/2026*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949632,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:12.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:12'),
(8317, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0CA96D1895036274F60\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949632519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:12.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:12'),
(8318, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0CA96D1895036274F60\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949632519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:12.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:12'),
(8319, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:49.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:50'),
(8320, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:49.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:50'),
(8321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:51.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:51'),
(8322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:51.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:51'),
(8323, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:53'),
(8324, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:53'),
(8325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:53'),
(8326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:53'),
(8327, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A57D5A9E8729487640410BD450B55BDF\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dIcuyHN8OGIw41Zmawjm6tIzsOVatLIfO7SYm+596QY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949671,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:53'),
(8328, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:54'),
(8329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:54'),
(8330, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:54'),
(8331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:54'),
(8332, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08DFBCA4C25B9FDFA2C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 16\\/11\\/2026\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *16\\/11\\/2026*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949675,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:55.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:55'),
(8333, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A57D5A9E8729487640410BD450B55BDF\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dIcuyHN8OGIw41Zmawjm6tIzsOVatLIfO7SYm+596QY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949671,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:53.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:55'),
(8334, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08DFBCA4C25B9FDFA2C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 16\\/11\\/2026\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *16\\/11\\/2026*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949675,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:55.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:55'),
(8335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB08DFBCA4C25B9FDFA2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949675837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:55.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:55'),
(8336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB08DFBCA4C25B9FDFA2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949675837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:55.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:56'),
(8337, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC2259A16A637BF96E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 14\\/02\\/2027\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *14\\/02\\/2027*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949677,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:57.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:57'),
(8338, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC2259A16A637BF96E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\\\n\\\\n🌙 Boa noite, *carol*!\\\\n\\\\n🎉 *Recebemos a confirmação do seu pagamento!*\\\\n\\\\n─────────────────────\\\\n📅 *Novo Vencimento:* 14\\/02\\/2027\\\\n💰 *Valor Pago:* R$ 100,00\\\\n⏱️ *Dias Adicionados:* +90 dias\\\\n📊 *Status:* Em dia ✅\\\\n─────────────────────\\\\n\\\\n😊 *Obrigado pela confiança!*\\\\nSeu acesso está garantido até *14\\/02\\/2027*.\\\\n\\\\n💡 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949677,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:57.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:57'),
(8339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0AC2259A16A637BF96E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949677934,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:57.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:27:58'),
(8340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0AC2259A16A637BF96E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949677934,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:27:57.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:27:58'),
(8341, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:05.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:05'),
(8342, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:05.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:05'),
(8343, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:07.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:07'),
(8344, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:07.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:07'),
(8345, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:08.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:08'),
(8346, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:08.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:08'),
(8347, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:11.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:11'),
(8348, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:11.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:11'),
(8349, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:24.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:24'),
(8350, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:24.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:25'),
(8351, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:28.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:28'),
(8352, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:28.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:28'),
(8353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:28.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:28'),
(8354, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:28.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:29'),
(8355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:29'),
(8356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8357, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:29'),
(8358, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A52B490C219563A1332CCC34E9A47C1D\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VlsilhrkakIVjk+2SeykFyMnQtQGEpyFGdtFLN+sVg8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:29'),
(8359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:30'),
(8360, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:30'),
(8361, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:30'),
(8362, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0263A29131E97C08755\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 367 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\\\\n\\\\n💡 *Comandos úteis:*\\\\n• *\\/pago* - Confirmar pagamento\\\\n• *\\/plano* - Ver detalhes do plano\\\\n• *\\/ajuda* - Ver todos os comandos\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949711,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:31.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:31'),
(8363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A52B490C219563A1332CCC34E9A47C1D\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770686716\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VlsilhrkakIVjk+2SeykFyMnQtQGEpyFGdtFLN+sVg8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:29.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:31'),
(8364, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0263A29131E97C08755\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 367 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\\\\n\\\\n💡 *Comandos úteis:*\\\\n• *\\/pago* - Confirmar pagamento\\\\n• *\\/plano* - Ver detalhes do plano\\\\n• *\\/ajuda* - Ver todos os comandos\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949711,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:31.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:31'),
(8365, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0263A29131E97C08755\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949711750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:31.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:31'),
(8366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0263A29131E97C08755\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949711750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:31.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:31'),
(8367, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0444783BD6EEEDD41E7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 367 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\\\\n\\\\n💡 *Comandos úteis:*\\\\n• *\\/pago* - Confirmar pagamento\\\\n• *\\/plano* - Ver detalhes do plano\\\\n• *\\/ajuda* - Ver todos os comandos\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949713,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:33.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:33'),
(8368, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0444783BD6EEEDD41E7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 367 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\\\\n\\\\n💡 *Comandos úteis:*\\\\n• *\\/pago* - Confirmar pagamento\\\\n• *\\/plano* - Ver detalhes do plano\\\\n• *\\/ajuda* - Ver todos os comandos\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770949713,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:33.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:33'),
(8369, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0444783BD6EEEDD41E7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949713819,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:33.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:28:33'),
(8370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0444783BD6EEEDD41E7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770949713819,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:28:33.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:28:34'),
(8371, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:06.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:07'),
(8372, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:06.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:08'),
(8373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:08'),
(8374, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:08'),
(8375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC045D936C2C797E8D58D52BEB09B542\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sgZNxcNE8qdpujiHwWaV27QuihOuR1l4wjlkegxiFWU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:08'),
(8376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:08'),
(8377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:09'),
(8378, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC045D936C2C797E8D58D52BEB09B542\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sgZNxcNE8qdpujiHwWaV27QuihOuR1l4wjlkegxiFWU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:09'),
(8379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:09'),
(8380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:08.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:09'),
(8381, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:09.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:09'),
(8382, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:09.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:10'),
(8383, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:12.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:12'),
(8384, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:12.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:12'),
(8385, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:14.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:14'),
(8386, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:14.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:14'),
(8387, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:15.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:15'),
(8388, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:15.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:16'),
(8389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:16.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:16'),
(8390, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC1E8E0F699E4008DF195D3208A60D41\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QRiOeHMvvqgIL7WSxBpM2A0tPPRmieCpVSWTS+Ea6FA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949815,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:15.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:16'),
(8391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:16.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:16'),
(8392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:16.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:30:16'),
(8393, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUqvfN8_TYoWBuDe61aM-oUa5czHr8wFHozMgsSwPyqg&oe=699B9447&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:16.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:17'),
(8394, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC1E8E0F699E4008DF195D3208A60D41\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QRiOeHMvvqgIL7WSxBpM2A0tPPRmieCpVSWTS+Ea6FA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770949815,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:30:15.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:30:18'),
(8395, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5F57F379F5C39894B62DD8AA5BDFA90\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413258,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:40:13'),
(8396, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A58A7CD20A09ABE00F5AB252A78176AE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413254,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:40:13'),
(8397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A58A7CD20A09ABE00F5AB252A78176AE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413254,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:40:14'),
(8398, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5F57F379F5C39894B62DD8AA5BDFA90\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413258,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:40:14'),
(8399, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5D40A276D758CE547D1DAB639F3A6B7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413234,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:40:23'),
(8400, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5DF0B53310947BA8740C5D1D4F6B6AC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:40:23'),
(8401, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5080105CD885F7E7A9F1F739BC4FB07\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413244,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:40:23'),
(8402, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5D40A276D758CE547D1DAB639F3A6B7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413234,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:40:23'),
(8403, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5DF0B53310947BA8740C5D1D4F6B6AC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:40:23'),
(8404, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"29412070314092@lid\",\"id\":\"A5080105CD885F7E7A9F1F739BC4FB07\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770950413244,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:40:13.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:40:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8405, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH473iezvMPrTy8uVHuut91ICCw_BFkYP8gYwG3Np2H-g&oe=699BB2DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHDxWuEdG3E5iJA-HpYP_C7SfLZtRiyooKWKT2xObaeA&oe=699BB89B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlgV0z0tbnTHvgrmcR8jp3l-vWPNx1AghN20LEJ7LNg&oe=699BA066&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94w_hK1oEtpSMytpSiy2XkdXtI3updNVxFDvEuDS1-g&oe=699B9A99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJNapMZq5t5QAP9nSdYvN2ZUnqADbqcaBNmTM14HqlWA&oe=699BA4F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYvOJlG1HelbtrxPt9_xUp60yFK76UjL-xXxte7r0rWg&oe=699BB928&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfwFyXoIc2uKN_THd5sGHaQFr35WAGLpptht7apGq4rQ&oe=699B8980&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnKxki3kDbbg3cTTR_9M1qbQxPnBv-pspUL7PGaaCBRA&oe=699BA303&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmNKeRz_m8VXl15sEV5BDNC9FDzMrRAavLQdEjABP5Xg&oe=699B89DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPiCotWasqj_qolKoOeBAR7n5gaXIFKjmYtWn13qz38A&oe=699B9A15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUSOdbryroEjU7GFWrK5Ue72HyPGDnMcn7lHV0KfsPTg&oe=699B8815&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRKh_aI2WIfSrLHLm3wBj2OJB7hY8aSkXfPbX4nZ7hA&oe=699B9596&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe688KY_8_GXPOX3PkgFkLYQ1HRWc2rTKsr0mkLx3NMA&oe=699B904B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpH0hJE_vBiyCsVxtP1kdTkuxkkdL_qAqDdA8elAE2sQ&oe=699B9346&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdjU8gMsNmYajpTtz6m5AiJ7b-Vl7YmluI_h8vZjXRmw&oe=699B90E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvF-KA-KvcrpezhkMYSUbFMXAkp3mS1OUfnhmqEH3NgQ&oe=699B954C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEln6zSnZsmsK6Pl-I0cFjnAJCH22l1Tn_22dK7BPSAXg&oe=699B8DFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKrMw85Dq8didZbdjuzB73KsEpIMLIIO71yipn2U3i4w&oe=699B8F9C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcvsCmctdLh5VbER7YKI2hBkDYjRYLRdj6KCcgNWwhNA&oe=699BB2F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZzRwpmMSj4ZiiW-HWr6WgHtKdDqVFyluVe_l8MtJ_uQ&oe=699B8F09&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wERqruu9yoLkSaTLnwIB1KWo5Za4KF055hzeEZLKAW_KA&oe=699BAD8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVWFXzGu2fqtM5QdMSrsZi-mq8lTQmhy0tjJERy-zecw&oe=699B8F18&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHm-hd3P4wFt6kZ5TImK8O-BMcwL3REIG7-ISK8zsPBMw&oe=699BBBD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUmjJkLAwxncBCB0_r34BwS7RQ_-wQSJDZM-sxTO4wDw&oe=699BA25A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wESu6OW7EjrqvVyF5o9XZMyzF5tG4pm1UQMxbSeEfnoCA&oe=699BA5F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwA19gMvTYiyItwIA8tNWnaO1PHVf9JltPUJ6vvqkl7g&oe=699BB72F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF3BXAsm6XIEfD0Qg6KvdsMvnIIMcD_Sy4JkQSSoIcBQ&oe=699B856B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGExF7KgVNv0SfPJUtwz0-EREV-biShGmL3JQl3MsFtCQ&oe=699BB48D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaUGNxWRT89KSB27rqNS67ZzvVUW2iHYenLm3NaNCTzQ&oe=699B9263&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTsj2OQrYB0SibxoH48BLXxlvkzGzUL8mQSp-vYoyNoQ&oe=699BB9BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ4NX2M7fWBFS5ZyM4KeZeeM_73oIj5yddIZPn_0xXjQ&oe=699B9AC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHABVJso5h8q7HDIIWhQKnu5WQGSNKiYPd_NrUdDKSErw&oe=699BB855&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt86LEYv8m9woEkAUce8AzSolq_SV5alOWaDz59VfQyw&oe=699B87CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkQ58cH8RPV2NCi1PIjn1fboBnsAbe-lJ4q8SWqiAMBg&oe=699B9F5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEagae_awPQprJbpwcSP_dvoIjs5wPdF9iXZY6LA_MiVw&oe=699B912F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6yJpkv483h9Vyh3TdrLOzC_htSYXLF7xCPK6OM1vPSg&oe=699B9565&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSu1RJObPD7NccRj073xMPdArheB7h-8nGVmeNnfE51g&oe=699BADD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4VGRERWr3D1v_C8TLnHBSd54VVJgQ9vpvsDo3JLGgJg&oe=699BBBEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1RnZ3gkY4cr8Qvdc17G7Lm-zmZT4qc94ZZkQcmMwClg&oe=699BB63B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqPaN25tcrZeVxrXrUIrzMB6g6Ib0B56j246oI3v51Xw&oe=699B8769&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQPcdHyAcJuuWe4tPS293S-LxWlfsmSP4Lu9zqME26lA&oe=699B8AEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr2G1bwzLgoU1JpYE_bxGF2TmDPLk35r-urtw3rNqDRw&oe=699B9424&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuczPWcMgqwwM-X1J6MfPyeP5WxCJCO8__qNptKQk0cA&oe=699BB205&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSkPO3qKk2vUmRxUuv301i7s6LL_KLpM5sSc6ixAKfkw&oe=699BB9B0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIAk0wJynXrqPdmOhfYg3uTd5zkcDbI_gtr-rQUtNl4g&oe=699BA012&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4HZsf_Z3qo6beoQ-CZXqPi__cXS7yxoy7YewMjoXzAQ&oe=699BB5D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN9IhcJxcH5OXJw7EvW7WXuvxbVroSZu7ffJwxC_LWyQ&oe=699B9991&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqdtB47xL5Qs0dZtdz04FnOnxY9wg8DLgbg5m9FKoCmQ&oe=699B9FB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuX_qXpH4cLB8Cbm9SkVsHsIGhAQylsUKDNRe97mdvsw&oe=699BB377&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELrVURPxMRDXbpAeAVboIS488AKcj1BHQHKV-t4UPF4w&oe=699B9382&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHmEdIRkXJvAdiNNt-2U_pzvrp9Ooc2Sh-GzYiqMpzEg&oe=699BBBE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp3QIuOpgCBJkV1S_iuUra-9rCJ-UuzpA8lgUDWoTzvg&oe=699B890A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUGCtzpynY5RwRm-CqEvtCWUdM2zwk2hGht5uXrgwfRQ&oe=699B897A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2Ro0r0niJZ6oIqUoR4X87J-CXN1qykV-qHejaPGLTQQ&oe=699BAA6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYgsio78MUytySb9MBnCEuYA0bcbRNntZQoUtUKsnnA&oe=699BA96B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtWtENqBau63CmtJhzs9IaRjQ0q7Um6bH6EaT0O1Sjvw&oe=699BBAD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZN7nGDkiEFfwJ7PKWVtdac3vzCdcbfra4eJ45FX8X-Q&oe=699BB02E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFGYvzD74v7bsmsumJ2KDRyPq3FTUXgeYG3QIAj-BQA&oe=699BA2D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxwB4YYhYJz9cpTKGz-zjlNtyc9e0tsYvkbe6gglKQSQ&oe=699BB7D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlIKFA2jV8wwr0wBuAUPxq_2ndchcyl1YSMuP23zyVUA&oe=699BA1F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlI6lQ52YirVWI9fRGbvdgBm-6-6oNYKm3TzkzNEK_LA&oe=699B9486&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJXgVlngezSzfRJ9CNHEz6RFThzIMh7f3RchgOttjaNA&oe=699BA221&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOXyxABXrx3o5ceWvKK_x4nJT5I5_Hw3X2azkCSlKUlw&oe=699BB9F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvW7T1bV-5RKieJf900g0sZmwoTI0BN4qWba8pGy35hQ&oe=699B9EB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiJZv9xsVLGwca20fPKnM9y2dHb5J6ejmhyctmFXRghw&oe=699BAD80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7OVboGUL8nhlH4PD3qPx_5gwRJkV3HUlszqISLoSAXA&oe=699B9A4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxxWt9QdFMLkHJ1jqLzrLXrWnLwjoyEGTsUdgYP_KPgA&oe=699B8D7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHpz8eDl4XN55VEKPCTPnc_1EyqE5MNu2JRE_5DQ_VA&oe=699B9102&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkFBXEuOMio4yDGCLOQov4hVNwluOBIQ1OO88JZmCbjQ&oe=699BB68E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wF92DNQ49xTrFvILbbdIg-A5uHYJxYF1dGWi5kAaCDm2w&oe=699B8534&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5NP3ZXgtSTE-uo0O4oDFjEUxmyfjFywQgTgM1DqDzFw&oe=699BA312&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIUSry4lp0mjKindu4eETTRiHr9dyd9Uq5XAUjW-0T0g&oe=699B9650&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_15Mlt_a8Ya3NVP35AW5--7Au1zK0tfgElPc7FCbaAg&oe=699B8A3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wER8vMtCP0gTxadqeYpqaYX3qH-QNOV-3FUCu55K8P89Q&oe=699B87EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQFTOU9HLNjavp35nhjR7kRWtLQ6cdFSdhq4PKTKhmuQ&oe=699BB4BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM1rBR4b7ZzZry_pgqcZNqnpFw2cEpF-H7mZLzocQeqg&oe=699B961A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHouHTcqiW1-QW4e2lbGvZzM0ISFatDoasiH_iP9Ve4Sw&oe=699BB990&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2kxjldTGGY3UgOZ9QLmegdbXQPUSkgSUB_1wODGjqOQ&oe=699B9D44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbqNnzdOcPVoyYGdLF8vOUXjb6yVk01c_i3kH1EBqUFQ&oe=699B886E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Ln5AwyYGh7GRrw4CdtTZ8LbaMDRU3-CQxwlcCeAqag&oe=699BA47A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe6-Fy96AFAnp66ljvBmf9fqsEG5TCZ4cyno0GTozeKQ&oe=699B9295&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbC6OelKyCk6EHscj0IQs0HubY-9TNDzcKEvh34tq4Iw&oe=699B9F8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEx5ElOIyGBrTmvKxzOaoS8PINevCqfgONHAcJUgpnHQ&oe=699BB4F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7Dt2Y86KEnB7yYnQIjMTOTEoymAQVGWLIHYV-dOY2jg&oe=699B8A44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDej3neDTNBgTK81KsMOPqaOztHDhuKYe356RDsJBEwA&oe=699B95FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHMhQmgbCDx2ALJf2hwVIRTDOdbzmU3UR82kNjElVtng&oe=699B9A25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJiRHepg8BWerd4eaVjqhD1TKCJ9cvSyM1TMSVfNsimA&oe=699BB1BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wH68cu65n1nZyLHuq86XCMY8IX9WxRrfknDodjYyOTpIg&oe=699B96C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjo9LNztbYvotuEJABl7De9Pe_Nf9NyMk05dMEaItGmA&oe=699B8561&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2YyE8sVvN0rGxCwSGEnf4je4eXDSB8uEH2Ohxk_Syjg&oe=699BB8C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUflZXWZakBD5i7Mdv3U6CDjiFGsuvJSrNhOhcxcsDmg&oe=699BA627&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE13O8RjJW7Hf7Cg7jY1v1KCD0ysaH1cXSs5OzQjRdJIQ&oe=699B9140&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuTE1Rr7_lwHgDTayyxZR0ftpigsrUe0E_IKXf9REkag&oe=699BA8DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_zSsrGbAXmwEJ-qQBbm5Cy0-smVl94-FMKJwIl1YSNw&oe=699BB0C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0YJWtktQci-bwA-cnPLcTaCjPkl9JqL-Wa8Cq5QUhXg&oe=699BAC63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTUrGyuk8FZKkZwSCbSwmlAFkk4WUK2NsOdhIPe05P2g&oe=699BBCC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJzRyzzTnEB4Y57AU86psxB5RthLqQ2Fz4mOb2LkqKvg&oe=699BB911&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYw4i99Ivs0C_ofIqdD87cEe-Oh2UNXU3mJw1Lt8vAog&oe=699B929C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9qwIjbYqnce4Gt70UsyKoYLawIQ3oSPn033owbkxMzQ&oe=699BACB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ6aSNVF4ZPysC-lxY0danMqTwEhfpMcFhqwaoM2ZYOw&oe=699B90D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ZZn0lRkcbdvjs_BqjEDBT5CcSuVO67AstaKkEzsAJQ&oe=699BB3D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkgH2Wi8DL9XtdRij2gZrMZKME53wptzJOPf4UZuGEQg&oe=699BA33E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpw6aghxMpt5dmpN4Kd2FmvZWYvl_RQM-GJFgXZTIoHQ&oe=699BAB2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8Wa_JsmYXWaOELe2-0TgmOOApE0FYguiotXuTz-sfDA&oe=699B8E5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7NBdR9R6aOPVluQ2DHSsGgKAqHbD9uE3iWbN6s55F3A&oe=699B8B36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-p4crAcUewXg30bEZ3wjJ5ZjH9g4yi9Wg6teMpmnSIA&oe=699B935B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE741cQ_DgJEk0XQVbAH7M0Gk9Lywvom2kVXbL6axdjnA&oe=699BB007&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuwOTSFNvTGlKFHgWMOU1evRnuca2AsgD2YoNLP36AxA&oe=699B91B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsGr1YpNwilZhB0Nr0DzPcrnJlk2nliA6OhdwF15g0aw&oe=699BACE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDJq0dJGwDBbLVwDxZqKGzmalebg1pzDWRtNrN5cXLtg&oe=699BA20B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0bgokWJByyUBj2n1Lgk4XuvxrhXT2uAxOQIVBjh-V-A&oe=699BB0A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7VSAnUEP-N_HrHr9Kp2OBK9eC0ptm2BlxI3JEdwM8Iw&oe=699BBD52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqKdM9oRKgs0I_sxkJPqmPh7P9iZxW7IhJ3CcGQPuUqw&oe=699BBD65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHzO7QP2xhN1-r1XLg0zqxHVyBIx2vtUsTzaH_hhEcsw&oe=699B9405&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFucssqYM3g8_F-LfBzFSLnd0jmPduYI6xoIMKy7ZesWQ&oe=699BB923&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOmUjZH_Cus7OOOfOvofWjR0cFbad0tX3GNXtiy9LDVw&oe=699B9473&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner', 1, '2026-02-12 23:51:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8406, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH473iezvMPrTy8uVHuut91ICCw_BFkYP8gYwG3Np2H-g&oe=699BB2DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHDxWuEdG3E5iJA-HpYP_C7SfLZtRiyooKWKT2xObaeA&oe=699BB89B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlgV0z0tbnTHvgrmcR8jp3l-vWPNx1AghN20LEJ7LNg&oe=699BA066&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94w_hK1oEtpSMytpSiy2XkdXtI3updNVxFDvEuDS1-g&oe=699B9A99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJNapMZq5t5QAP9nSdYvN2ZUnqADbqcaBNmTM14HqlWA&oe=699BA4F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYvOJlG1HelbtrxPt9_xUp60yFK76UjL-xXxte7r0rWg&oe=699BB928&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfwFyXoIc2uKN_THd5sGHaQFr35WAGLpptht7apGq4rQ&oe=699B8980&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnKxki3kDbbg3cTTR_9M1qbQxPnBv-pspUL7PGaaCBRA&oe=699BA303&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmNKeRz_m8VXl15sEV5BDNC9FDzMrRAavLQdEjABP5Xg&oe=699B89DC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPiCotWasqj_qolKoOeBAR7n5gaXIFKjmYtWn13qz38A&oe=699B9A15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUSOdbryroEjU7GFWrK5Ue72HyPGDnMcn7lHV0KfsPTg&oe=699B8815&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRKh_aI2WIfSrLHLm3wBj2OJB7hY8aSkXfPbX4nZ7hA&oe=699B9596&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe688KY_8_GXPOX3PkgFkLYQ1HRWc2rTKsr0mkLx3NMA&oe=699B904B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpH0hJE_vBiyCsVxtP1kdTkuxkkdL_qAqDdA8elAE2sQ&oe=699B9346&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdjU8gMsNmYajpTtz6m5AiJ7b-Vl7YmluI_h8vZjXRmw&oe=699B90E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvF-KA-KvcrpezhkMYSUbFMXAkp3mS1OUfnhmqEH3NgQ&oe=699B954C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEln6zSnZsmsK6Pl-I0cFjnAJCH22l1Tn_22dK7BPSAXg&oe=699B8DFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKrMw85Dq8didZbdjuzB73KsEpIMLIIO71yipn2U3i4w&oe=699B8F9C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcvsCmctdLh5VbER7YKI2hBkDYjRYLRdj6KCcgNWwhNA&oe=699BB2F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZzRwpmMSj4ZiiW-HWr6WgHtKdDqVFyluVe_l8MtJ_uQ&oe=699B8F09&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wERqruu9yoLkSaTLnwIB1KWo5Za4KF055hzeEZLKAW_KA&oe=699BAD8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVWFXzGu2fqtM5QdMSrsZi-mq8lTQmhy0tjJERy-zecw&oe=699B8F18&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHm-hd3P4wFt6kZ5TImK8O-BMcwL3REIG7-ISK8zsPBMw&oe=699BBBD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUmjJkLAwxncBCB0_r34BwS7RQ_-wQSJDZM-sxTO4wDw&oe=699BA25A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wESu6OW7EjrqvVyF5o9XZMyzF5tG4pm1UQMxbSeEfnoCA&oe=699BA5F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwA19gMvTYiyItwIA8tNWnaO1PHVf9JltPUJ6vvqkl7g&oe=699BB72F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF3BXAsm6XIEfD0Qg6KvdsMvnIIMcD_Sy4JkQSSoIcBQ&oe=699B856B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGExF7KgVNv0SfPJUtwz0-EREV-biShGmL3JQl3MsFtCQ&oe=699BB48D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaUGNxWRT89KSB27rqNS67ZzvVUW2iHYenLm3NaNCTzQ&oe=699B9263&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTsj2OQrYB0SibxoH48BLXxlvkzGzUL8mQSp-vYoyNoQ&oe=699BB9BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ4NX2M7fWBFS5ZyM4KeZeeM_73oIj5yddIZPn_0xXjQ&oe=699B9AC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHABVJso5h8q7HDIIWhQKnu5WQGSNKiYPd_NrUdDKSErw&oe=699BB855&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wGt86LEYv8m9woEkAUce8AzSolq_SV5alOWaDz59VfQyw&oe=699B87CC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkQ58cH8RPV2NCi1PIjn1fboBnsAbe-lJ4q8SWqiAMBg&oe=699B9F5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEagae_awPQprJbpwcSP_dvoIjs5wPdF9iXZY6LA_MiVw&oe=699B912F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6yJpkv483h9Vyh3TdrLOzC_htSYXLF7xCPK6OM1vPSg&oe=699B9565&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSu1RJObPD7NccRj073xMPdArheB7h-8nGVmeNnfE51g&oe=699BADD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4VGRERWr3D1v_C8TLnHBSd54VVJgQ9vpvsDo3JLGgJg&oe=699BBBEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1RnZ3gkY4cr8Qvdc17G7Lm-zmZT4qc94ZZkQcmMwClg&oe=699BB63B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqPaN25tcrZeVxrXrUIrzMB6g6Ib0B56j246oI3v51Xw&oe=699B8769&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQPcdHyAcJuuWe4tPS293S-LxWlfsmSP4Lu9zqME26lA&oe=699B8AEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr2G1bwzLgoU1JpYE_bxGF2TmDPLk35r-urtw3rNqDRw&oe=699B9424&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuczPWcMgqwwM-X1J6MfPyeP5WxCJCO8__qNptKQk0cA&oe=699BB205&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSkPO3qKk2vUmRxUuv301i7s6LL_KLpM5sSc6ixAKfkw&oe=699BB9B0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIAk0wJynXrqPdmOhfYg3uTd5zkcDbI_gtr-rQUtNl4g&oe=699BA012&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4HZsf_Z3qo6beoQ-CZXqPi__cXS7yxoy7YewMjoXzAQ&oe=699BB5D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN9IhcJxcH5OXJw7EvW7WXuvxbVroSZu7ffJwxC_LWyQ&oe=699B9991&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqdtB47xL5Qs0dZtdz04FnOnxY9wg8DLgbg5m9FKoCmQ&oe=699B9FB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuX_qXpH4cLB8Cbm9SkVsHsIGhAQylsUKDNRe97mdvsw&oe=699BB377&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELrVURPxMRDXbpAeAVboIS488AKcj1BHQHKV-t4UPF4w&oe=699B9382&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHmEdIRkXJvAdiNNt-2U_pzvrp9Ooc2Sh-GzYiqMpzEg&oe=699BBBE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp3QIuOpgCBJkV1S_iuUra-9rCJ-UuzpA8lgUDWoTzvg&oe=699B890A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUGCtzpynY5RwRm-CqEvtCWUdM2zwk2hGht5uXrgwfRQ&oe=699B897A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2Ro0r0niJZ6oIqUoR4X87J-CXN1qykV-qHejaPGLTQQ&oe=699BAA6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYgsio78MUytySb9MBnCEuYA0bcbRNntZQoUtUKsnnA&oe=699BA96B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtWtENqBau63CmtJhzs9IaRjQ0q7Um6bH6EaT0O1Sjvw&oe=699BBAD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZN7nGDkiEFfwJ7PKWVtdac3vzCdcbfra4eJ45FX8X-Q&oe=699BB02E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFGYvzD74v7bsmsumJ2KDRyPq3FTUXgeYG3QIAj-BQA&oe=699BA2D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxwB4YYhYJz9cpTKGz-zjlNtyc9e0tsYvkbe6gglKQSQ&oe=699BB7D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlIKFA2jV8wwr0wBuAUPxq_2ndchcyl1YSMuP23zyVUA&oe=699BA1F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlI6lQ52YirVWI9fRGbvdgBm-6-6oNYKm3TzkzNEK_LA&oe=699B9486&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJXgVlngezSzfRJ9CNHEz6RFThzIMh7f3RchgOttjaNA&oe=699BA221&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOXyxABXrx3o5ceWvKK_x4nJT5I5_Hw3X2azkCSlKUlw&oe=699BB9F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvW7T1bV-5RKieJf900g0sZmwoTI0BN4qWba8pGy35hQ&oe=699B9EB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiJZv9xsVLGwca20fPKnM9y2dHb5J6ejmhyctmFXRghw&oe=699BAD80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7OVboGUL8nhlH4PD3qPx_5gwRJkV3HUlszqISLoSAXA&oe=699B9A4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxxWt9QdFMLkHJ1jqLzrLXrWnLwjoyEGTsUdgYP_KPgA&oe=699B8D7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHpz8eDl4XN55VEKPCTPnc_1EyqE5MNu2JRE_5DQ_VA&oe=699B9102&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkFBXEuOMio4yDGCLOQov4hVNwluOBIQ1OO88JZmCbjQ&oe=699BB68E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wF92DNQ49xTrFvILbbdIg-A5uHYJxYF1dGWi5kAaCDm2w&oe=699B8534&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5NP3ZXgtSTE-uo0O4oDFjEUxmyfjFywQgTgM1DqDzFw&oe=699BA312&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIUSry4lp0mjKindu4eETTRiHr9dyd9Uq5XAUjW-0T0g&oe=699B9650&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_15Mlt_a8Ya3NVP35AW5--7Au1zK0tfgElPc7FCbaAg&oe=699B8A3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wER8vMtCP0gTxadqeYpqaYX3qH-QNOV-3FUCu55K8P89Q&oe=699B87EF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQFTOU9HLNjavp35nhjR7kRWtLQ6cdFSdhq4PKTKhmuQ&oe=699BB4BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM1rBR4b7ZzZry_pgqcZNqnpFw2cEpF-H7mZLzocQeqg&oe=699B961A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHouHTcqiW1-QW4e2lbGvZzM0ISFatDoasiH_iP9Ve4Sw&oe=699BB990&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2kxjldTGGY3UgOZ9QLmegdbXQPUSkgSUB_1wODGjqOQ&oe=699B9D44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbqNnzdOcPVoyYGdLF8vOUXjb6yVk01c_i3kH1EBqUFQ&oe=699B886E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Ln5AwyYGh7GRrw4CdtTZ8LbaMDRU3-CQxwlcCeAqag&oe=699BA47A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe6-Fy96AFAnp66ljvBmf9fqsEG5TCZ4cyno0GTozeKQ&oe=699B9295&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbC6OelKyCk6EHscj0IQs0HubY-9TNDzcKEvh34tq4Iw&oe=699B9F8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEx5ElOIyGBrTmvKxzOaoS8PINevCqfgONHAcJUgpnHQ&oe=699BB4F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7Dt2Y86KEnB7yYnQIjMTOTEoymAQVGWLIHYV-dOY2jg&oe=699B8A44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDej3neDTNBgTK81KsMOPqaOztHDhuKYe356RDsJBEwA&oe=699B95FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHMhQmgbCDx2ALJf2hwVIRTDOdbzmU3UR82kNjElVtng&oe=699B9A25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJiRHepg8BWerd4eaVjqhD1TKCJ9cvSyM1TMSVfNsimA&oe=699BB1BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wH68cu65n1nZyLHuq86XCMY8IX9WxRrfknDodjYyOTpIg&oe=699B96C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjo9LNztbYvotuEJABl7De9Pe_Nf9NyMk05dMEaItGmA&oe=699B8561&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2YyE8sVvN0rGxCwSGEnf4je4eXDSB8uEH2Ohxk_Syjg&oe=699BB8C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUflZXWZakBD5i7Mdv3U6CDjiFGsuvJSrNhOhcxcsDmg&oe=699BA627&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE13O8RjJW7Hf7Cg7jY1v1KCD0ysaH1cXSs5OzQjRdJIQ&oe=699B9140&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuTE1Rr7_lwHgDTayyxZR0ftpigsrUe0E_IKXf9REkag&oe=699BA8DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_zSsrGbAXmwEJ-qQBbm5Cy0-smVl94-FMKJwIl1YSNw&oe=699BB0C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0YJWtktQci-bwA-cnPLcTaCjPkl9JqL-Wa8Cq5QUhXg&oe=699BAC63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTUrGyuk8FZKkZwSCbSwmlAFkk4WUK2NsOdhIPe05P2g&oe=699BBCC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJzRyzzTnEB4Y57AU86psxB5RthLqQ2Fz4mOb2LkqKvg&oe=699BB911&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYw4i99Ivs0C_ofIqdD87cEe-Oh2UNXU3mJw1Lt8vAog&oe=699B929C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9qwIjbYqnce4Gt70UsyKoYLawIQ3oSPn033owbkxMzQ&oe=699BACB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ6aSNVF4ZPysC-lxY0danMqTwEhfpMcFhqwaoM2ZYOw&oe=699B90D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ZZn0lRkcbdvjs_BqjEDBT5CcSuVO67AstaKkEzsAJQ&oe=699BB3D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkgH2Wi8DL9XtdRij2gZrMZKME53wptzJOPf4UZuGEQg&oe=699BA33E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpw6aghxMpt5dmpN4Kd2FmvZWYvl_RQM-GJFgXZTIoHQ&oe=699BAB2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8Wa_JsmYXWaOELe2-0TgmOOApE0FYguiotXuTz-sfDA&oe=699B8E5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7NBdR9R6aOPVluQ2DHSsGgKAqHbD9uE3iWbN6s55F3A&oe=699B8B36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-p4crAcUewXg30bEZ3wjJ5ZjH9g4yi9Wg6teMpmnSIA&oe=699B935B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE741cQ_DgJEk0XQVbAH7M0Gk9Lywvom2kVXbL6axdjnA&oe=699BB007&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuwOTSFNvTGlKFHgWMOU1evRnuca2AsgD2YoNLP36AxA&oe=699B91B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsGr1YpNwilZhB0Nr0DzPcrnJlk2nliA6OhdwF15g0aw&oe=699BACE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDJq0dJGwDBbLVwDxZqKGzmalebg1pzDWRtNrN5cXLtg&oe=699BA20B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0bgokWJByyUBj2n1Lgk4XuvxrhXT2uAxOQIVBjh-V-A&oe=699BB0A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7VSAnUEP-N_HrHr9Kp2OBK9eC0ptm2BlxI3JEdwM8Iw&oe=699BBD52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqKdM9oRKgs0I_sxkJPqmPh7P9iZxW7IhJ3CcGQPuUqw&oe=699BBD65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHzO7QP2xhN1-r1XLg0zqxHVyBIx2vtUsTzaH_hhEcsw&oe=699B9405&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFucssqYM3g8_F-LfBzFSLnd0jmPduYI6xoIMKy7ZesWQ&oe=699BB923&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOmUjZH_Cus7OOOfOvofWjR0cFbad0tX3GNXtiy9LDVw&oe=699B9473&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner', 1, '2026-02-12 23:51:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8407, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A67F4DBC880B776082D7569FE52283\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770951266925,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:26.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:54:27'),
(8408, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5A67F4DBC880B776082D7569FE52283\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770951267,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:27.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:54:27'),
(8409, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:27.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:54:27'),
(8410, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A67F4DBC880B776082D7569FE52283\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770951266925,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:26.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:54:27'),
(8411, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5A67F4DBC880B776082D7569FE52283\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770951267,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:27.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:54:27'),
(8412, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:27.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:54:27'),
(8413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:27.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:54:28'),
(8414, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:54:27.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:54:28'),
(8415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:55:24'),
(8416, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:55:24'),
(8417, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54E75B810CEF2A80C19317DE3B08650\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770951324704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:55:24'),
(8418, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A54E75B810CEF2A80C19317DE3B08650\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/plano\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770951324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:55:24'),
(8419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-12 23:55:24'),
(8420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A54E75B810CEF2A80C19317DE3B08650\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/plano\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770951324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:55:25'),
(8421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhRZzO2M2xji2Ak9bQfMfMwienj90aAxIs5oqDzTGF9A&oe=699B97F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:55:25'),
(8422, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54E75B810CEF2A80C19317DE3B08650\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770951324704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-12T23:55:24.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-12 23:55:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8423, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH473iezvMPrTy8uVHuut91ICCw_BFkYP8gYwG3Np2H-g&oe=699BB2DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wE44J1CWfpwWYcQpF9YtswYFRiX2wPnqNSb4Wh9cbT9tw&oe=699BA198&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHDxWuEdG3E5iJA-HpYP_C7SfLZtRiyooKWKT2xObaeA&oe=699BB89B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlgV0z0tbnTHvgrmcR8jp3l-vWPNx1AghN20LEJ7LNg&oe=699BA066&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94w_hK1oEtpSMytpSiy2XkdXtI3updNVxFDvEuDS1-g&oe=699B9A99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJNapMZq5t5QAP9nSdYvN2ZUnqADbqcaBNmTM14HqlWA&oe=699BA4F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYvOJlG1HelbtrxPt9_xUp60yFK76UjL-xXxte7r0rWg&oe=699BB928&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh-HuYLpPj-GpiIasG9EenqOHp8N2iiDhrbho1Mhq-3g&oe=699BC1C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnKxki3kDbbg3cTTR_9M1qbQxPnBv-pspUL7PGaaCBRA&oe=699BA303&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wEd_O5_8n9QgC48KQOvVuMDlOsvKX-BOI04RMp110-xRw&oe=699BC21C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPiCotWasqj_qolKoOeBAR7n5gaXIFKjmYtWn13qz38A&oe=699B9A15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtZkQUZBOPEi5Lc3RyVDmx7qTX-_0EtNzHzaEsnhyaBg&oe=699BC055&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRKh_aI2WIfSrLHLm3wBj2OJB7hY8aSkXfPbX4nZ7hA&oe=699B9596&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe688KY_8_GXPOX3PkgFkLYQ1HRWc2rTKsr0mkLx3NMA&oe=699B904B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpH0hJE_vBiyCsVxtP1kdTkuxkkdL_qAqDdA8elAE2sQ&oe=699B9346&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdjU8gMsNmYajpTtz6m5AiJ7b-Vl7YmluI_h8vZjXRmw&oe=699B90E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvF-KA-KvcrpezhkMYSUbFMXAkp3mS1OUfnhmqEH3NgQ&oe=699B954C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEln6zSnZsmsK6Pl-I0cFjnAJCH22l1Tn_22dK7BPSAXg&oe=699B8DFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKrMw85Dq8didZbdjuzB73KsEpIMLIIO71yipn2U3i4w&oe=699B8F9C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcvsCmctdLh5VbER7YKI2hBkDYjRYLRdj6KCcgNWwhNA&oe=699BB2F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZzRwpmMSj4ZiiW-HWr6WgHtKdDqVFyluVe_l8MtJ_uQ&oe=699B8F09&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wERqruu9yoLkSaTLnwIB1KWo5Za4KF055hzeEZLKAW_KA&oe=699BAD8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVWFXzGu2fqtM5QdMSrsZi-mq8lTQmhy0tjJERy-zecw&oe=699B8F18&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHm-hd3P4wFt6kZ5TImK8O-BMcwL3REIG7-ISK8zsPBMw&oe=699BBBD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUmjJkLAwxncBCB0_r34BwS7RQ_-wQSJDZM-sxTO4wDw&oe=699BA25A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wESu6OW7EjrqvVyF5o9XZMyzF5tG4pm1UQMxbSeEfnoCA&oe=699BA5F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwA19gMvTYiyItwIA8tNWnaO1PHVf9JltPUJ6vvqkl7g&oe=699BB72F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0Fa16fZVx-aDzBC8iNVJb9DNfwFfByWKrhrgwFg0yRQ&oe=699BBDAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGExF7KgVNv0SfPJUtwz0-EREV-biShGmL3JQl3MsFtCQ&oe=699BB48D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaUGNxWRT89KSB27rqNS67ZzvVUW2iHYenLm3NaNCTzQ&oe=699B9263&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTsj2OQrYB0SibxoH48BLXxlvkzGzUL8mQSp-vYoyNoQ&oe=699BB9BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ4NX2M7fWBFS5ZyM4KeZeeM_73oIj5yddIZPn_0xXjQ&oe=699B9AC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHABVJso5h8q7HDIIWhQKnu5WQGSNKiYPd_NrUdDKSErw&oe=699BB855&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdW_r56tkYSdmPHrlLG_SWEZMgzTEuZo4gyCScA8YFg&oe=699BC00C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkQ58cH8RPV2NCi1PIjn1fboBnsAbe-lJ4q8SWqiAMBg&oe=699B9F5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEagae_awPQprJbpwcSP_dvoIjs5wPdF9iXZY6LA_MiVw&oe=699B912F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6yJpkv483h9Vyh3TdrLOzC_htSYXLF7xCPK6OM1vPSg&oe=699B9565&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSu1RJObPD7NccRj073xMPdArheB7h-8nGVmeNnfE51g&oe=699BADD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4VGRERWr3D1v_C8TLnHBSd54VVJgQ9vpvsDo3JLGgJg&oe=699BBBEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1RnZ3gkY4cr8Qvdc17G7Lm-zmZT4qc94ZZkQcmMwClg&oe=699BB63B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7WHlnFs496DSBKKCqjIYekBZszyR4qti2moO4OkK0oQ&oe=699BBFA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmB5i40JHxoQwEEj6H_XVa3z-ffmO98RquDAtP2W6KPA&oe=699BC32B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr2G1bwzLgoU1JpYE_bxGF2TmDPLk35r-urtw3rNqDRw&oe=699B9424&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuczPWcMgqwwM-X1J6MfPyeP5WxCJCO8__qNptKQk0cA&oe=699BB205&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSkPO3qKk2vUmRxUuv301i7s6LL_KLpM5sSc6ixAKfkw&oe=699BB9B0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIAk0wJynXrqPdmOhfYg3uTd5zkcDbI_gtr-rQUtNl4g&oe=699BA012&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4HZsf_Z3qo6beoQ-CZXqPi__cXS7yxoy7YewMjoXzAQ&oe=699BB5D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN9IhcJxcH5OXJw7EvW7WXuvxbVroSZu7ffJwxC_LWyQ&oe=699B9991&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqdtB47xL5Qs0dZtdz04FnOnxY9wg8DLgbg5m9FKoCmQ&oe=699B9FB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuX_qXpH4cLB8Cbm9SkVsHsIGhAQylsUKDNRe97mdvsw&oe=699BB377&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELrVURPxMRDXbpAeAVboIS488AKcj1BHQHKV-t4UPF4w&oe=699B9382&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHmEdIRkXJvAdiNNt-2U_pzvrp9Ooc2Sh-GzYiqMpzEg&oe=699BBBE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLntTD2p12KHJHPasRqPPc8ZdTbB1_IQo4T-bfmWOohw&oe=699BC14A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCqgZ_ARSji9K1Plgejz9cuseCwhlh_Vlk7JuNH66QHQ&oe=699BC1BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2Ro0r0niJZ6oIqUoR4X87J-CXN1qykV-qHejaPGLTQQ&oe=699BAA6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYgsio78MUytySb9MBnCEuYA0bcbRNntZQoUtUKsnnA&oe=699BA96B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtWtENqBau63CmtJhzs9IaRjQ0q7Um6bH6EaT0O1Sjvw&oe=699BBAD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZN7nGDkiEFfwJ7PKWVtdac3vzCdcbfra4eJ45FX8X-Q&oe=699BB02E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFGYvzD74v7bsmsumJ2KDRyPq3FTUXgeYG3QIAj-BQA&oe=699BA2D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxwB4YYhYJz9cpTKGz-zjlNtyc9e0tsYvkbe6gglKQSQ&oe=699BB7D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlIKFA2jV8wwr0wBuAUPxq_2ndchcyl1YSMuP23zyVUA&oe=699BA1F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlI6lQ52YirVWI9fRGbvdgBm-6-6oNYKm3TzkzNEK_LA&oe=699B9486&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJXgVlngezSzfRJ9CNHEz6RFThzIMh7f3RchgOttjaNA&oe=699BA221&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOXyxABXrx3o5ceWvKK_x4nJT5I5_Hw3X2azkCSlKUlw&oe=699BB9F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvW7T1bV-5RKieJf900g0sZmwoTI0BN4qWba8pGy35hQ&oe=699B9EB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiJZv9xsVLGwca20fPKnM9y2dHb5J6ejmhyctmFXRghw&oe=699BAD80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7OVboGUL8nhlH4PD3qPx_5gwRJkV3HUlszqISLoSAXA&oe=699B9A4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxxWt9QdFMLkHJ1jqLzrLXrWnLwjoyEGTsUdgYP_KPgA&oe=699B8D7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHpz8eDl4XN55VEKPCTPnc_1EyqE5MNu2JRE_5DQ_VA&oe=699B9102&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkFBXEuOMio4yDGCLOQov4hVNwluOBIQ1OO88JZmCbjQ&oe=699BB68E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVC_kbH71f1oDIdHXlMGukSbdCfr0u-iaNGfDoVn-5NQ&oe=699BBD74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5NP3ZXgtSTE-uo0O4oDFjEUxmyfjFywQgTgM1DqDzFw&oe=699BA312&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIUSry4lp0mjKindu4eETTRiHr9dyd9Uq5XAUjW-0T0g&oe=699B9650&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHblfKlHXSOR0amNdvqPo16Hk6VprsKliB_6lMwL1XGBQ&oe=699BC27C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP7sf7c6vRbV63nh29ZxSnhabuIT-JWdsenPo4f7lPiA&oe=699BC02F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQFTOU9HLNjavp35nhjR7kRWtLQ6cdFSdhq4PKTKhmuQ&oe=699BB4BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM1rBR4b7ZzZry_pgqcZNqnpFw2cEpF-H7mZLzocQeqg&oe=699B961A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHouHTcqiW1-QW4e2lbGvZzM0ISFatDoasiH_iP9Ve4Sw&oe=699BB990&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2kxjldTGGY3UgOZ9QLmegdbXQPUSkgSUB_1wODGjqOQ&oe=699B9D44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNtGiXHwlGUkJlyry0vX-nMLLmZm3eJerkKSpmtj08hg&oe=699BC0AE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Ln5AwyYGh7GRrw4CdtTZ8LbaMDRU3-CQxwlcCeAqag&oe=699BA47A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe6-Fy96AFAnp66ljvBmf9fqsEG5TCZ4cyno0GTozeKQ&oe=699B9295&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbC6OelKyCk6EHscj0IQs0HubY-9TNDzcKEvh34tq4Iw&oe=699B9F8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEx5ElOIyGBrTmvKxzOaoS8PINevCqfgONHAcJUgpnHQ&oe=699BB4F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7dF1sMgvHSPy6qA0x_RPXPJNfBODVr4ketZe1oQvgqw&oe=699BC284&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDej3neDTNBgTK81KsMOPqaOztHDhuKYe356RDsJBEwA&oe=699B95FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHMhQmgbCDx2ALJf2hwVIRTDOdbzmU3UR82kNjElVtng&oe=699B9A25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJiRHepg8BWerd4eaVjqhD1TKCJ9cvSyM1TMSVfNsimA&oe=699BB1BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wH68cu65n1nZyLHuq86XCMY8IX9WxRrfknDodjYyOTpIg&oe=699B96C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF7ZMsHDGRsff4-bKdXYr5AdQC8JcvIa4JqIsXheM2sw&oe=699BBDA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2YyE8sVvN0rGxCwSGEnf4je4eXDSB8uEH2Ohxk_Syjg&oe=699BB8C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUflZXWZakBD5i7Mdv3U6CDjiFGsuvJSrNhOhcxcsDmg&oe=699BA627&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE13O8RjJW7Hf7Cg7jY1v1KCD0ysaH1cXSs5OzQjRdJIQ&oe=699B9140&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuTE1Rr7_lwHgDTayyxZR0ftpigsrUe0E_IKXf9REkag&oe=699BA8DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_zSsrGbAXmwEJ-qQBbm5Cy0-smVl94-FMKJwIl1YSNw&oe=699BB0C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0YJWtktQci-bwA-cnPLcTaCjPkl9JqL-Wa8Cq5QUhXg&oe=699BAC63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTUrGyuk8FZKkZwSCbSwmlAFkk4WUK2NsOdhIPe05P2g&oe=699BBCC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJzRyzzTnEB4Y57AU86psxB5RthLqQ2Fz4mOb2LkqKvg&oe=699BB911&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYw4i99Ivs0C_ofIqdD87cEe-Oh2UNXU3mJw1Lt8vAog&oe=699B929C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9qwIjbYqnce4Gt70UsyKoYLawIQ3oSPn033owbkxMzQ&oe=699BACB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ6aSNVF4ZPysC-lxY0danMqTwEhfpMcFhqwaoM2ZYOw&oe=699B90D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ZZn0lRkcbdvjs_BqjEDBT5CcSuVO67AstaKkEzsAJQ&oe=699BB3D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkgH2Wi8DL9XtdRij2gZrMZKME53wptzJOPf4UZuGEQg&oe=699BA33E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpw6aghxMpt5dmpN4Kd2FmvZWYvl_RQM-GJFgXZTIoHQ&oe=699BAB2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8Wa_JsmYXWaOELe2-0TgmOOApE0FYguiotXuTz-sfDA&oe=699B8E5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFE_2JxqL0_v4ja5SsxSgqQOQpV_wRbeZUbiV7oGjcHYQ&oe=699BC376&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-p4crAcUewXg30bEZ3wjJ5ZjH9g4yi9Wg6teMpmnSIA&oe=699B935B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE741cQ_DgJEk0XQVbAH7M0Gk9Lywvom2kVXbL6axdjnA&oe=699BB007&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuwOTSFNvTGlKFHgWMOU1evRnuca2AsgD2YoNLP36AxA&oe=699B91B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsGr1YpNwilZhB0Nr0DzPcrnJlk2nliA6OhdwF15g0aw&oe=699BACE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDJq0dJGwDBbLVwDxZqKGzmalebg1pzDWRtNrN5cXLtg&oe=699BA20B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0bgokWJByyUBj2n1Lgk4XuvxrhXT2uAxOQIVBjh-V-A&oe=699BB0A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7VSAnUEP-N_HrHr9Kp2OBK9eC0ptm2BlxI3JEdwM8Iw&oe=699BBD52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqKdM9oRKgs0I_sxkJPqmPh7P9iZxW7IhJ3CcGQPuUqw&oe=699BBD65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHzO7QP2xhN1-r1XLg0zqxHVyBIx2vtUsTzaH_hhEcsw&oe=699B9405&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFucssqYM3g8_F-LfBzFSLnd0jmPduYI6xoIMKy7ZesWQ&oe=699BB923&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh', 1, '2026-02-13 00:22:51');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8424, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wH473iezvMPrTy8uVHuut91ICCw_BFkYP8gYwG3Np2H-g&oe=699BB2DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wE44J1CWfpwWYcQpF9YtswYFRiX2wPnqNSb4Wh9cbT9tw&oe=699BA198&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHDxWuEdG3E5iJA-HpYP_C7SfLZtRiyooKWKT2xObaeA&oe=699BB89B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlgV0z0tbnTHvgrmcR8jp3l-vWPNx1AghN20LEJ7LNg&oe=699BA066&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wH94w_hK1oEtpSMytpSiy2XkdXtI3updNVxFDvEuDS1-g&oe=699B9A99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJNapMZq5t5QAP9nSdYvN2ZUnqADbqcaBNmTM14HqlWA&oe=699BA4F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYvOJlG1HelbtrxPt9_xUp60yFK76UjL-xXxte7r0rWg&oe=699BB928&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh-HuYLpPj-GpiIasG9EenqOHp8N2iiDhrbho1Mhq-3g&oe=699BC1C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnKxki3kDbbg3cTTR_9M1qbQxPnBv-pspUL7PGaaCBRA&oe=699BA303&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wEd_O5_8n9QgC48KQOvVuMDlOsvKX-BOI04RMp110-xRw&oe=699BC21C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPiCotWasqj_qolKoOeBAR7n5gaXIFKjmYtWn13qz38A&oe=699B9A15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtZkQUZBOPEi5Lc3RyVDmx7qTX-_0EtNzHzaEsnhyaBg&oe=699BC055&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRKh_aI2WIfSrLHLm3wBj2OJB7hY8aSkXfPbX4nZ7hA&oe=699B9596&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe688KY_8_GXPOX3PkgFkLYQ1HRWc2rTKsr0mkLx3NMA&oe=699B904B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpH0hJE_vBiyCsVxtP1kdTkuxkkdL_qAqDdA8elAE2sQ&oe=699B9346&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdjU8gMsNmYajpTtz6m5AiJ7b-Vl7YmluI_h8vZjXRmw&oe=699B90E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvF-KA-KvcrpezhkMYSUbFMXAkp3mS1OUfnhmqEH3NgQ&oe=699B954C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEln6zSnZsmsK6Pl-I0cFjnAJCH22l1Tn_22dK7BPSAXg&oe=699B8DFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKrMw85Dq8didZbdjuzB73KsEpIMLIIO71yipn2U3i4w&oe=699B8F9C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcvsCmctdLh5VbER7YKI2hBkDYjRYLRdj6KCcgNWwhNA&oe=699BB2F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZzRwpmMSj4ZiiW-HWr6WgHtKdDqVFyluVe_l8MtJ_uQ&oe=699B8F09&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wERqruu9yoLkSaTLnwIB1KWo5Za4KF055hzeEZLKAW_KA&oe=699BAD8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVWFXzGu2fqtM5QdMSrsZi-mq8lTQmhy0tjJERy-zecw&oe=699B8F18&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHm-hd3P4wFt6kZ5TImK8O-BMcwL3REIG7-ISK8zsPBMw&oe=699BBBD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUmjJkLAwxncBCB0_r34BwS7RQ_-wQSJDZM-sxTO4wDw&oe=699BA25A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wESu6OW7EjrqvVyF5o9XZMyzF5tG4pm1UQMxbSeEfnoCA&oe=699BA5F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwA19gMvTYiyItwIA8tNWnaO1PHVf9JltPUJ6vvqkl7g&oe=699BB72F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998552669@s.whatsapp.net\",\"pushName\":\"Luis2669\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0Fa16fZVx-aDzBC8iNVJb9DNfwFfByWKrhrgwFg0yRQ&oe=699BBDAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGExF7KgVNv0SfPJUtwz0-EREV-biShGmL3JQl3MsFtCQ&oe=699BB48D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511973132117@s.whatsapp.net\",\"pushName\":\"$35 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/394081571_171363306043705_4264549978338308720_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaUGNxWRT89KSB27rqNS67ZzvVUW2iHYenLm3NaNCTzQ&oe=699B9263&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTsj2OQrYB0SibxoH48BLXxlvkzGzUL8mQSp-vYoyNoQ&oe=699BB9BB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ4NX2M7fWBFS5ZyM4KeZeeM_73oIj5yddIZPn_0xXjQ&oe=699B9AC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHABVJso5h8q7HDIIWhQKnu5WQGSNKiYPd_NrUdDKSErw&oe=699BB855&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdW_r56tkYSdmPHrlLG_SWEZMgzTEuZo4gyCScA8YFg&oe=699BC00C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkQ58cH8RPV2NCi1PIjn1fboBnsAbe-lJ4q8SWqiAMBg&oe=699B9F5A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEagae_awPQprJbpwcSP_dvoIjs5wPdF9iXZY6LA_MiVw&oe=699B912F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6yJpkv483h9Vyh3TdrLOzC_htSYXLF7xCPK6OM1vPSg&oe=699B9565&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSu1RJObPD7NccRj073xMPdArheB7h-8nGVmeNnfE51g&oe=699BADD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4VGRERWr3D1v_C8TLnHBSd54VVJgQ9vpvsDo3JLGgJg&oe=699BBBEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1RnZ3gkY4cr8Qvdc17G7Lm-zmZT4qc94ZZkQcmMwClg&oe=699BB63B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7WHlnFs496DSBKKCqjIYekBZszyR4qti2moO4OkK0oQ&oe=699BBFA9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmB5i40JHxoQwEEj6H_XVa3z-ffmO98RquDAtP2W6KPA&oe=699BC32B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr2G1bwzLgoU1JpYE_bxGF2TmDPLk35r-urtw3rNqDRw&oe=699B9424&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuczPWcMgqwwM-X1J6MfPyeP5WxCJCO8__qNptKQk0cA&oe=699BB205&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSkPO3qKk2vUmRxUuv301i7s6LL_KLpM5sSc6ixAKfkw&oe=699BB9B0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIAk0wJynXrqPdmOhfYg3uTd5zkcDbI_gtr-rQUtNl4g&oe=699BA012&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4HZsf_Z3qo6beoQ-CZXqPi__cXS7yxoy7YewMjoXzAQ&oe=699BB5D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN9IhcJxcH5OXJw7EvW7WXuvxbVroSZu7ffJwxC_LWyQ&oe=699B9991&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqdtB47xL5Qs0dZtdz04FnOnxY9wg8DLgbg5m9FKoCmQ&oe=699B9FB9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuX_qXpH4cLB8Cbm9SkVsHsIGhAQylsUKDNRe97mdvsw&oe=699BB377&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wELrVURPxMRDXbpAeAVboIS488AKcj1BHQHKV-t4UPF4w&oe=699B9382&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHmEdIRkXJvAdiNNt-2U_pzvrp9Ooc2Sh-GzYiqMpzEg&oe=699BBBE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518991282317@s.whatsapp.net\",\"pushName\":\"Wilson2317 $70 2 Telas Imp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLntTD2p12KHJHPasRqPPc8ZdTbB1_IQo4T-bfmWOohw&oe=699BC14A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCqgZ_ARSji9K1Plgejz9cuseCwhlh_Vlk7JuNH66QHQ&oe=699BC1BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2Ro0r0niJZ6oIqUoR4X87J-CXN1qykV-qHejaPGLTQQ&oe=699BAA6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYgsio78MUytySb9MBnCEuYA0bcbRNntZQoUtUKsnnA&oe=699BA96B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtWtENqBau63CmtJhzs9IaRjQ0q7Um6bH6EaT0O1Sjvw&oe=699BBAD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHZN7nGDkiEFfwJ7PKWVtdac3vzCdcbfra4eJ45FX8X-Q&oe=699BB02E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFGYvzD74v7bsmsumJ2KDRyPq3FTUXgeYG3QIAj-BQA&oe=699BA2D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxwB4YYhYJz9cpTKGz-zjlNtyc9e0tsYvkbe6gglKQSQ&oe=699BB7D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlIKFA2jV8wwr0wBuAUPxq_2ndchcyl1YSMuP23zyVUA&oe=699BA1F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlI6lQ52YirVWI9fRGbvdgBm-6-6oNYKm3TzkzNEK_LA&oe=699B9486&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJXgVlngezSzfRJ9CNHEz6RFThzIMh7f3RchgOttjaNA&oe=699BA221&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOXyxABXrx3o5ceWvKK_x4nJT5I5_Hw3X2azkCSlKUlw&oe=699BB9F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvW7T1bV-5RKieJf900g0sZmwoTI0BN4qWba8pGy35hQ&oe=699B9EB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiJZv9xsVLGwca20fPKnM9y2dHb5J6ejmhyctmFXRghw&oe=699BAD80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7OVboGUL8nhlH4PD3qPx_5gwRJkV3HUlszqISLoSAXA&oe=699B9A4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxxWt9QdFMLkHJ1jqLzrLXrWnLwjoyEGTsUdgYP_KPgA&oe=699B8D7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHpz8eDl4XN55VEKPCTPnc_1EyqE5MNu2JRE_5DQ_VA&oe=699B9102&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkFBXEuOMio4yDGCLOQov4hVNwluOBIQ1OO88JZmCbjQ&oe=699BB68E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVC_kbH71f1oDIdHXlMGukSbdCfr0u-iaNGfDoVn-5NQ&oe=699BBD74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5NP3ZXgtSTE-uo0O4oDFjEUxmyfjFywQgTgM1DqDzFw&oe=699BA312&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIUSry4lp0mjKindu4eETTRiHr9dyd9Uq5XAUjW-0T0g&oe=699B9650&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHblfKlHXSOR0amNdvqPo16Hk6VprsKliB_6lMwL1XGBQ&oe=699BC27C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP_7dBy7S6rawnT-Tm4AqK-qR-_hLb0lMOnD-dkCllA&oe=699B8D72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP7sf7c6vRbV63nh29ZxSnhabuIT-JWdsenPo4f7lPiA&oe=699BC02F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQFTOU9HLNjavp35nhjR7kRWtLQ6cdFSdhq4PKTKhmuQ&oe=699BB4BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM1rBR4b7ZzZry_pgqcZNqnpFw2cEpF-H7mZLzocQeqg&oe=699B961A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHouHTcqiW1-QW4e2lbGvZzM0ISFatDoasiH_iP9Ve4Sw&oe=699BB990&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2kxjldTGGY3UgOZ9QLmegdbXQPUSkgSUB_1wODGjqOQ&oe=699B9D44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNtGiXHwlGUkJlyry0vX-nMLLmZm3eJerkKSpmtj08hg&oe=699BC0AE&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Ln5AwyYGh7GRrw4CdtTZ8LbaMDRU3-CQxwlcCeAqag&oe=699BA47A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEe6-Fy96AFAnp66ljvBmf9fqsEG5TCZ4cyno0GTozeKQ&oe=699B9295&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbC6OelKyCk6EHscj0IQs0HubY-9TNDzcKEvh34tq4Iw&oe=699B9F8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEx5ElOIyGBrTmvKxzOaoS8PINevCqfgONHAcJUgpnHQ&oe=699BB4F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7dF1sMgvHSPy6qA0x_RPXPJNfBODVr4ketZe1oQvgqw&oe=699BC284&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDej3neDTNBgTK81KsMOPqaOztHDhuKYe356RDsJBEwA&oe=699B95FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHMhQmgbCDx2ALJf2hwVIRTDOdbzmU3UR82kNjElVtng&oe=699B9A25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJiRHepg8BWerd4eaVjqhD1TKCJ9cvSyM1TMSVfNsimA&oe=699BB1BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998034885@s.whatsapp.net\",\"pushName\":\"Ana4885 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wH68cu65n1nZyLHuq86XCMY8IX9WxRrfknDodjYyOTpIg&oe=699B96C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF7ZMsHDGRsff4-bKdXYr5AdQC8JcvIa4JqIsXheM2sw&oe=699BBDA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2YyE8sVvN0rGxCwSGEnf4je4eXDSB8uEH2Ohxk_Syjg&oe=699BB8C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUflZXWZakBD5i7Mdv3U6CDjiFGsuvJSrNhOhcxcsDmg&oe=699BA627&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE13O8RjJW7Hf7Cg7jY1v1KCD0ysaH1cXSs5OzQjRdJIQ&oe=699B9140&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuTE1Rr7_lwHgDTayyxZR0ftpigsrUe0E_IKXf9REkag&oe=699BA8DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792558777@s.whatsapp.net\",\"pushName\":\"Isa Onofre\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_zSsrGbAXmwEJ-qQBbm5Cy0-smVl94-FMKJwIl1YSNw&oe=699BB0C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0YJWtktQci-bwA-cnPLcTaCjPkl9JqL-Wa8Cq5QUhXg&oe=699BAC63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTUrGyuk8FZKkZwSCbSwmlAFkk4WUK2NsOdhIPe05P2g&oe=699BBCC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJzRyzzTnEB4Y57AU86psxB5RthLqQ2Fz4mOb2LkqKvg&oe=699BB911&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYw4i99Ivs0C_ofIqdD87cEe-Oh2UNXU3mJw1Lt8vAog&oe=699B929C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9qwIjbYqnce4Gt70UsyKoYLawIQ3oSPn033owbkxMzQ&oe=699BACB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ6aSNVF4ZPysC-lxY0danMqTwEhfpMcFhqwaoM2ZYOw&oe=699B90D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ZZn0lRkcbdvjs_BqjEDBT5CcSuVO67AstaKkEzsAJQ&oe=699BB3D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkgH2Wi8DL9XtdRij2gZrMZKME53wptzJOPf4UZuGEQg&oe=699BA33E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpw6aghxMpt5dmpN4Kd2FmvZWYvl_RQM-GJFgXZTIoHQ&oe=699BAB2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8Wa_JsmYXWaOELe2-0TgmOOApE0FYguiotXuTz-sfDA&oe=699B8E5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFE_2JxqL0_v4ja5SsxSgqQOQpV_wRbeZUbiV7oGjcHYQ&oe=699BC376&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-p4crAcUewXg30bEZ3wjJ5ZjH9g4yi9Wg6teMpmnSIA&oe=699B935B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wE741cQ_DgJEk0XQVbAH7M0Gk9Lywvom2kVXbL6axdjnA&oe=699BB007&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6WxsxS0WanFmT_b6qOcnnGfkNUrXMEkW7cFASz-NsVA&oe=699B8D0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuwOTSFNvTGlKFHgWMOU1evRnuca2AsgD2YoNLP36AxA&oe=699B91B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsGr1YpNwilZhB0Nr0DzPcrnJlk2nliA6OhdwF15g0aw&oe=699BACE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDJq0dJGwDBbLVwDxZqKGzmalebg1pzDWRtNrN5cXLtg&oe=699BA20B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0bgokWJByyUBj2n1Lgk4XuvxrhXT2uAxOQIVBjh-V-A&oe=699BB0A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7VSAnUEP-N_HrHr9Kp2OBK9eC0ptm2BlxI3JEdwM8Iw&oe=699BBD52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqKdM9oRKgs0I_sxkJPqmPh7P9iZxW7IhJ3CcGQPuUqw&oe=699BBD65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHzO7QP2xhN1-r1XLg0zqxHVyBIx2vtUsTzaH_hhEcsw&oe=699B9405&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFucssqYM3g8_F-LfBzFSLnd0jmPduYI6xoIMKy7ZesWQ&oe=699BB923&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh', 1, '2026-02-13 00:22:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8425, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"249271563624630@lid\",\"presences\":{\"249271563624630@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:06:49.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 01:06:49'),
(8426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"249271563624630@lid\",\"presences\":{\"249271563624630@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:06:49.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 01:06:50'),
(8427, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"presences\":{\"189266978160868@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:17.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 01:26:17'),
(8428, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"presences\":{\"189266978160868@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:17.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 01:26:17'),
(8429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 01:26:18'),
(8430, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 01:26:18'),
(8431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5E2AB16E6EA2773A10428811F2C36AC\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770955343\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9UEU\\/Zy\\/ih\\/VwLL0c7JdWdir0KjXO022TSMfT+M\\/GHA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770956778,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 01:26:18'),
(8432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg_DZwVMpQp6Qaau2OapSYmIdlV5CkHMVGtsuveSQpbw&oe=699BD5B6&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 01:26:19'),
(8433, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"189266978160868@lid\",\"fromMe\":false,\"id\":\"A5E2AB16E6EA2773A10428811F2C36AC\"},\"pushName\":\"MultServers\",\"message\":{\"conversation\":\"Tmj\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"2PllbiIXQF6kFA==\",\"senderTimestamp\":\"1770955343\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9UEU\\/Zy\\/ih\\/VwLL0c7JdWdir0KjXO022TSMfT+M\\/GHA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770956778,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 01:26:19'),
(8434, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg_DZwVMpQp6Qaau2OapSYmIdlV5CkHMVGtsuveSQpbw&oe=699BD5B6&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 01:26:19'),
(8435, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"189266978160868@lid\",\"pushName\":\"MultServers\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg_DZwVMpQp6Qaau2OapSYmIdlV5CkHMVGtsuveSQpbw&oe=699BD5B6&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 01:26:19'),
(8436, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"189266978160868@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620547517_1460635768746727_3758644939547408255_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg_DZwVMpQp6Qaau2OapSYmIdlV5CkHMVGtsuveSQpbw&oe=699BD5B6&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T01:26:18.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 01:26:19'),
(8437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T03:15:16.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 03:15:16'),
(8438, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T03:15:16.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 03:15:16'),
(8439, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770978029472,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T07:20:29.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 07:20:29'),
(8440, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770978029472,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T07:20:29.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 07:20:30'),
(8441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770978039621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T07:20:39.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 07:20:40'),
(8442, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"153652606021801@lid\",\"id\":\"A50A2FDBE10DC44E507ED1756CB5921B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770978039621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T07:20:39.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 07:20:40'),
(8443, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T07:41:15.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 07:41:15'),
(8444, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T07:41:15.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 07:41:15'),
(8445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770982368869,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:48.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:32:49'),
(8446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770982368869,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:48.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:32:49'),
(8447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770982369543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:49.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:32:49'),
(8448, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770982369543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:49.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:32:50'),
(8449, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770982368859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:48.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:32:51'),
(8450, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770982368859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:48.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:32:51'),
(8451, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770982376101,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:56.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:32:56'),
(8452, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770982376101,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:32:56.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:32:56'),
(8453, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:50:57.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:50:58'),
(8454, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:50:57.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:50:58'),
(8455, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:07.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:08'),
(8456, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:07.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:08'),
(8457, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:12.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:12'),
(8458, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:12.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:12'),
(8459, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:15.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:15'),
(8460, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:15.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:15'),
(8461, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:25.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:26'),
(8462, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:25.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:26'),
(8463, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:29.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:29'),
(8464, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:29.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:29'),
(8465, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:29.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:29'),
(8466, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:29.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:29'),
(8467, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:34.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:34'),
(8468, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:34.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:34'),
(8469, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:36.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:36'),
(8470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:36.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:36'),
(8471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:40'),
(8472, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:40'),
(8473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:41'),
(8474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC763B7D61620EFEBE2191855012FFAD\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Oi paguei la acho que tem que renovar.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cDFmn+sBglopAE\\/zB0l0Sz7zY0PSymwM6ATXWH4M\\/g0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770983500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:41'),
(8475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:41'),
(8476, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC763B7D61620EFEBE2191855012FFAD\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Oi paguei la acho que tem que renovar.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cDFmn+sBglopAE\\/zB0l0Sz7zY0PSymwM6ATXWH4M\\/g0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770983500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:41'),
(8477, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 08:51:41'),
(8478, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T08:51:40.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 08:51:41'),
(8479, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:00:08.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:00:08'),
(8480, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:00:08.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:00:08'),
(8481, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB098A81A0EB7377B4864\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *18*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770984009,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:00:09.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:00:09'),
(8482, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB098A81A0EB7377B4864\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *18*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770984009,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:00:09.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:00:09'),
(8483, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:13.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:13'),
(8484, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:13.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:13'),
(8485, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:23.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:23'),
(8486, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:23.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:23'),
(8487, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:28.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:28'),
(8488, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:28.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:28'),
(8489, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:30.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:31'),
(8490, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:30.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:31'),
(8491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:35.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:35'),
(8492, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:35.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:35'),
(8493, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:35.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:35'),
(8494, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:35.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:35'),
(8495, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:45.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:46'),
(8496, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:45.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:46'),
(8497, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:55.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:19:56'),
(8498, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:19:55.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:19:56'),
(8499, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:06.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:06'),
(8500, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:06.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:06'),
(8501, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:16.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:16'),
(8502, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:16.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:16'),
(8503, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:26.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:26'),
(8504, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:26.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:26'),
(8505, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:36.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:36'),
(8506, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:36.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:36'),
(8507, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:39'),
(8508, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:39'),
(8509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC19EB393A4AFCF60AB44FBED3BC07DC\"},\"pushName\":\"Inis Pelho\",\"message\":{\"conversation\":\"Bom dia Deus abençoe minha tv está fora do ar deste ontem perguntei para o Glauco se tinha pago ele disse que sim poderia verificar o que está acontacendo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bnS6J48JB0IGGDO4t4pceoQiI1MUTNw95hD4yphYdHo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770985239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:39'),
(8511, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:39'),
(8512, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC19EB393A4AFCF60AB44FBED3BC07DC\"},\"pushName\":\"Inis Pelho\",\"message\":{\"conversation\":\"Bom dia Deus abençoe minha tv está fora do ar deste ontem perguntei para o Glauco se tinha pago ele disse que sim poderia verificar o que está acontacendo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bnS6J48JB0IGGDO4t4pceoQiI1MUTNw95hD4yphYdHo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770985239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:40'),
(8513, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:40'),
(8514, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:20:40'),
(8515, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:40'),
(8516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:20:39.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:20:40'),
(8517, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"3EB03CF6F362E5B6160F51\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"*NÃO ACEITAMOS LIGAÇÃO!* *Fique atento* nos *Horarios* de *funcionamento!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770985284,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:24'),
(8518, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"3EB03CF6F362E5B6160F51\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"*NÃO ACEITAMOS LIGAÇÃO!* *Fique atento* nos *Horarios* de *funcionamento!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770985284,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:24'),
(8519, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"offer\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:24'),
(8520, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"12612.25382-16837\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770985284751,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:24'),
(8521, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"reject\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:24'),
(8522, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"offer\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:25'),
(8523, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:25'),
(8524, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:25'),
(8525, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"3EB03CF6F362E5B6160F51\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770985284845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:25'),
(8526, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 09:21:25'),
(8527, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"3EB03CF6F362E5B6160F51\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770985284845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:26'),
(8528, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:26'),
(8529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:26'),
(8530, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:26'),
(8531, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 09:21:26'),
(8532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:27'),
(8533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"12612.25382-16837\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770985284751,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:27'),
(8534, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"155181631152358@lid\",\"from\":\"155181631152358@lid\",\"id\":\"AC51734FA65746DE8D805A828FE68E3E\",\"date\":\"2026-02-13T12:21:24.000Z\",\"offline\":false,\"status\":\"reject\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:24.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 09:21:27'),
(8535, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"3EB03CF6F362E5B6160F51\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770985300243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:40.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:40'),
(8536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"3EB03CF6F362E5B6160F51\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770985300243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:40.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:40'),
(8537, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB098A81A0EB7377B4864\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770985314012,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:54.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:54'),
(8538, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB098A81A0EB7377B4864\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770985314012,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:54.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:54'),
(8539, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:57.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:57'),
(8540, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:57.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:57'),
(8541, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:59.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:21:59'),
(8542, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:21:59.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:21:59'),
(8543, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:23:23.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:23:23'),
(8544, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:23:23.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:23:24'),
(8545, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:23:32.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:23:32'),
(8546, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:23:32.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:23:32'),
(8547, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:28:04'),
(8548, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"ACA1877AA7D434C8010F2A2F8B3E62B0\"},\"pushName\":\"Inis Pelho\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633835342_2561243974272359_8539292208992428682_n.enc?ccb=11-4&oh=01_Q5Aa3wG8Pk5BKJJj3S0eWcDaOux_KQwgVOIVHi8Zr5uitJw5jQ&oe=69B6A427&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8aqe4dpFv\\/uvHBjlOe4ZVoMcnnqmSVP\\/v5guK8UMdYo=\",\"fileLength\":\"234125\",\"height\":1600,\"width\":1200,\"mediaKey\":\"d75bFiwc9HI331x6KV5Sr6+tXvSGH28fBPrmg1+SZKs=\",\"fileEncSha256\":\"3F72DPvhVk8J\\/XiKoQ2YCvc6bQNCfX5aHKCEvNv0RLw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633835342_2561243974272359_8539292208992428682_n.enc?ccb=11-4&oh=01_Q5Aa3wG8Pk5BKJJj3S0eWcDaOux_KQwgVOIVHi8Zr5uitJw5jQ&oe=69B6A427&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770985681\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4ALgMBIgACEQEDEQH\\/xAAxAAADAQEBAQAAAAAAAAAAAAACAwUEAQAGAQADAQEBAAAAAAAAAAAAAAAAAQMCBAX\\/2gAMAwEAAhADEAAAAMJc9mrBIQJoVEpHCzely7kOzZTfoopSpG08bz2oS9CgW4WJs9kZCrQXzSGtKAP\\/xAAiEAACAgICAgMBAQAAAAAAAAABAgADERIEIRNBFDFCIiP\\/2gAIAQEAAT8AFc8RECEe4RiBSYKCYVI+nmjn9wBwMZzCrmVJaxwCJRRYy9kRwe4GCgDETxsrFgQZvk4AiMQSJxgfEIxTQsGzCdipERnKn+ZvmwExAhXYQ8p6xgExe\\/1KuPt3uIqrVQVb37liU5GrRLivWYf9OszxgfaStNzivAMsexBpZ3PjElSR0ZbUlOBiCi91BCy16mHucLxq7FjOdq9mVM+S+iKFHUuZrcZnEuUUKGYZExmBTDAIZmf\\/xAAgEQACAQMEAwAAAAAAAAAAAAAAAQMCERMhIjFhUXGB\\/9oACAECAQE\\/AMEhgk8GKpcord9T6SezN0KXoqkbuLaXLs\\/\\/xAAfEQABBAEFAQAAAAAAAAAAAAAAAQIRExAhMUFRYXH\\/2gAIAQMBAT8AsaWs7LGrjbgb8KvRWSIyBdSMf\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"rkq2uHMzOQcAA+8wFK1MzKkSh6Ndfo+s\\/+FzvtbEig2Qs0ax5+Kg4A==\",\"scanLengths\":[19908,86120,46111,81986],\"midQualityFileSha256\":\"MVkWMYlpNXXtI\\/Zb46CoIVpvHVjsY0xgvWYJC5ulWVY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CrL+ClX6rstMODBRItJNgCtJcTG1ny0TbVJGNOUCY7M=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770985684,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:28:04'),
(8549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:28:04'),
(8550, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:28:05'),
(8551, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"ACA1877AA7D434C8010F2A2F8B3E62B0\"},\"pushName\":\"Inis Pelho\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633835342_2561243974272359_8539292208992428682_n.enc?ccb=11-4&oh=01_Q5Aa3wG8Pk5BKJJj3S0eWcDaOux_KQwgVOIVHi8Zr5uitJw5jQ&oe=69B6A427&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8aqe4dpFv\\/uvHBjlOe4ZVoMcnnqmSVP\\/v5guK8UMdYo=\",\"fileLength\":\"234125\",\"height\":1600,\"width\":1200,\"mediaKey\":\"d75bFiwc9HI331x6KV5Sr6+tXvSGH28fBPrmg1+SZKs=\",\"fileEncSha256\":\"3F72DPvhVk8J\\/XiKoQ2YCvc6bQNCfX5aHKCEvNv0RLw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633835342_2561243974272359_8539292208992428682_n.enc?ccb=11-4&oh=01_Q5Aa3wG8Pk5BKJJj3S0eWcDaOux_KQwgVOIVHi8Zr5uitJw5jQ&oe=69B6A427&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770985681\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4ALgMBIgACEQEDEQH\\/xAAxAAADAQEBAQAAAAAAAAAAAAACAwUEAQAGAQADAQEBAAAAAAAAAAAAAAAAAQMCBAX\\/2gAMAwEAAhADEAAAAMJc9mrBIQJoVEpHCzely7kOzZTfoopSpG08bz2oS9CgW4WJs9kZCrQXzSGtKAP\\/xAAiEAACAgICAgMBAQAAAAAAAAABAgADERIEIRNBFDFCIiP\\/2gAIAQEAAT8AFc8RECEe4RiBSYKCYVI+nmjn9wBwMZzCrmVJaxwCJRRYy9kRwe4GCgDETxsrFgQZvk4AiMQSJxgfEIxTQsGzCdipERnKn+ZvmwExAhXYQ8p6xgExe\\/1KuPt3uIqrVQVb37liU5GrRLivWYf9OszxgfaStNzivAMsexBpZ3PjElSR0ZbUlOBiCi91BCy16mHucLxq7FjOdq9mVM+S+iKFHUuZrcZnEuUUKGYZExmBTDAIZmf\\/xAAgEQACAQMEAwAAAAAAAAAAAAAAAQMCERMhIjFhUXGB\\/9oACAECAQE\\/AMEhgk8GKpcord9T6SezN0KXoqkbuLaXLs\\/\\/xAAfEQABBAEFAQAAAAAAAAAAAAAAAQIRExAhMUFRYXH\\/2gAIAQMBAT8AsaWs7LGrjbgb8KvRWSIyBdSMf\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"rkq2uHMzOQcAA+8wFK1MzKkSh6Ndfo+s\\/+FzvtbEig2Qs0ax5+Kg4A==\",\"scanLengths\":[19908,86120,46111,81986],\"midQualityFileSha256\":\"MVkWMYlpNXXtI\\/Zb46CoIVpvHVjsY0xgvWYJC5ulWVY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CrL+ClX6rstMODBRItJNgCtJcTG1ny0TbVJGNOUCY7M=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770985684,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:28:05'),
(8552, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:28:05'),
(8553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:28:05'),
(8554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:28:04.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:28:05'),
(8555, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515988342267@s.whatsapp.net\",\"pushName\":\"Emerson2267 😄\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:29:58.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:29:58'),
(8556, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515988342267@s.whatsapp.net\",\"pushName\":\"Emerson2267 😄\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:29:58.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:29:58'),
(8557, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5B4CBF9ABEC7B8F5F9DA502C7C9521C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179991,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:20'),
(8558, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5486742F5AC3FFD718F737536FFEED8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179944,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:20'),
(8559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5B5A0DDD16DDE8A84A9C52FB9735857\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:20'),
(8560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5C6E4DBC86CB2170C88F29E0F767371\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179983,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:20'),
(8561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5B5A0DDD16DDE8A84A9C52FB9735857\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:20'),
(8562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5B4CBF9ABEC7B8F5F9DA502C7C9521C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179991,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:20'),
(8563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5486742F5AC3FFD718F737536FFEED8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179944,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:21'),
(8564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5C6E4DBC86CB2170C88F29E0F767371\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986179983,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:19.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:21'),
(8565, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A59F5DBAA0F53F7CF8999F1E39E002FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:41'),
(8566, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A59E57EB882E0FC872512172D0F64F9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201415,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:41'),
(8567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A59F5DBAA0F53F7CF8999F1E39E002FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:41'),
(8568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A59E57EB882E0FC872512172D0F64F9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201415,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:41'),
(8569, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5871F7E95DE32910661B1D23DC6B9FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201408,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:41'),
(8570, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5871F7E95DE32910661B1D23DC6B9FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201408,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:42'),
(8571, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53A6A145F8EFD9978AA206A443302FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201421,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:42'),
(8572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A535B49AA43547ED3CAC8FB5432308D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201427,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:36:42'),
(8573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53A6A145F8EFD9978AA206A443302FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201421,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:42'),
(8574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A535B49AA43547ED3CAC8FB5432308D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986201427,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:36:41.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:36:42'),
(8575, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:56.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:41:56'),
(8576, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A501768E8270854D143B43F55180BA33\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986516,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:56.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:41:56'),
(8577, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:56.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:41:57'),
(8578, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:56.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:41:57'),
(8579, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A501768E8270854D143B43F55180BA33\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986516,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:56.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:41:57'),
(8580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:56.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:41:57'),
(8581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A501768E8270854D143B43F55180BA33\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986517845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:57.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:41:57'),
(8582, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A501768E8270854D143B43F55180BA33\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986517845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:41:57.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:41:58'),
(8583, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A501768E8270854D143B43F55180BA33\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986533314,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:13.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:13'),
(8584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A501768E8270854D143B43F55180BA33\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986533314,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:13.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8585, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:28.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:28'),
(8586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:28.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:28'),
(8587, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:38.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:38'),
(8588, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:38.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:38'),
(8589, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:43.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:43'),
(8590, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:43.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:43'),
(8591, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:43.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:43'),
(8592, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:43.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:43'),
(8593, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACBD02A64123A17EBEE3C73E8F13972F\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ontem. Não abria mais os canais dai paguei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XeoniwH+Lz9F\\/HIcpllz8+iuvftBd1+8+qNewTMSbHM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770986567,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:47'),
(8594, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:47'),
(8595, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:47'),
(8596, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACBD02A64123A17EBEE3C73E8F13972F\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ontem. Não abria mais os canais dai paguei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XeoniwH+Lz9F\\/HIcpllz8+iuvftBd1+8+qNewTMSbHM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770986567,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:47'),
(8597, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:48'),
(8598, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:48'),
(8599, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:42:48'),
(8600, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:42:47.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:42:48'),
(8601, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:22.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:23'),
(8602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635160128_26038610599105276_673407197950696674_n.enc?ccb=11-4&oh=01_Q5Aa3wHA9PidtPY9xydxnxvRCgE_trXJ38Dp4CK2XOawAnaEFg&oe=69B6A077&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"F53ijcbgllIUpoch5V9anV06cwvSX10Ipt87l5PYFPg=\",\"fileLength\":\"16852\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"5lMMkmQXNRYEUd\\/yBDMap8HHqNHssXL2T3UbHX0wzg8=\",\"fileEncSha256\":\"U5uIlzL1CDUfVwc0IEFIEW1EmBjRrku4IbcRIEjLNdk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635160128_26038610599105276_673407197950696674_n.enc?ccb=11-4&oh=01_Q5Aa3wHA9PidtPY9xydxnxvRCgE_trXJ38Dp4CK2XOawAnaEFg&oe=69B6A077&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986596\",\"waveform\":\"AAAAAAQ3UjhMVlZPTDw4MEtKAAAAAAAAR01RTTBIIEtVSCdRQklSSE1UNAlKLUIxTkA+SStUQB4rPzwoTCpNSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986602,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:22.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:23'),
(8603, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:22.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:23'),
(8604, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635160128_26038610599105276_673407197950696674_n.enc?ccb=11-4&oh=01_Q5Aa3wHA9PidtPY9xydxnxvRCgE_trXJ38Dp4CK2XOawAnaEFg&oe=69B6A077&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"F53ijcbgllIUpoch5V9anV06cwvSX10Ipt87l5PYFPg=\",\"fileLength\":\"16852\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"5lMMkmQXNRYEUd\\/yBDMap8HHqNHssXL2T3UbHX0wzg8=\",\"fileEncSha256\":\"U5uIlzL1CDUfVwc0IEFIEW1EmBjRrku4IbcRIEjLNdk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635160128_26038610599105276_673407197950696674_n.enc?ccb=11-4&oh=01_Q5Aa3wHA9PidtPY9xydxnxvRCgE_trXJ38Dp4CK2XOawAnaEFg&oe=69B6A077&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986596\",\"waveform\":\"AAAAAAQ3UjhMVlZPTDw4MEtKAAAAAAAAR01RTTBIIEtVSCdRQklSSE1UNAlKLUIxTkA+SStUQB4rPzwoTCpNSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986602,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:22.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:23'),
(8605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:23.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:23'),
(8606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:23.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:23'),
(8607, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986604301,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:24.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:24'),
(8608, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986604301,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:24.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:24'),
(8609, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986611403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:31'),
(8610, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:31'),
(8611, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986611403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:31'),
(8612, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:31'),
(8613, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5ED01E75A420552FEFFA8CD46CFF927\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986611778,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:31'),
(8614, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5ED01E75A420552FEFFA8CD46CFF927\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31257959_1711229719839872_8250060459902425057_n.enc?ccb=11-4&oh=01_Q5Aa3wE2bzZmiPDmfULNgQDVBX_zF2R4aLrWPu6FGBWysM6r3w&oe=69B685FE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XGkSj\\/VyMTaId6HM2FTzD72z6nnj1ar69EooZVZ9h+E=\",\"fileLength\":\"6325\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"653+twlAXhrFuRdxXDO1zu1rnDc0H51UNB+gTFmu5c8=\",\"fileEncSha256\":\"7ynELH227\\/xPyIB0B3Bxn\\/woQMRxMpyMb521OvjTdl0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31257959_1711229719839872_8250060459902425057_n.enc?ccb=11-4&oh=01_Q5Aa3wE2bzZmiPDmfULNgQDVBX_zF2R4aLrWPu6FGBWysM6r3w&oe=69B685FE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986609\",\"waveform\":\"AAAZJzUtR1FROi4qPUZSUUJNTkdJUEswLzhBRTQpO0lLTUxPTz4dAwAAAAAAAAAAAAAAAAAABBkAAAAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:31'),
(8615, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5ED01E75A420552FEFFA8CD46CFF927\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986611778,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:31'),
(8616, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5ED01E75A420552FEFFA8CD46CFF927\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31257959_1711229719839872_8250060459902425057_n.enc?ccb=11-4&oh=01_Q5Aa3wE2bzZmiPDmfULNgQDVBX_zF2R4aLrWPu6FGBWysM6r3w&oe=69B685FE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XGkSj\\/VyMTaId6HM2FTzD72z6nnj1ar69EooZVZ9h+E=\",\"fileLength\":\"6325\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"653+twlAXhrFuRdxXDO1zu1rnDc0H51UNB+gTFmu5c8=\",\"fileEncSha256\":\"7ynELH227\\/xPyIB0B3Bxn\\/woQMRxMpyMb521OvjTdl0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31257959_1711229719839872_8250060459902425057_n.enc?ccb=11-4&oh=01_Q5Aa3wE2bzZmiPDmfULNgQDVBX_zF2R4aLrWPu6FGBWysM6r3w&oe=69B685FE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986609\",\"waveform\":\"AAAZJzUtR1FROi4qPUZSUUJNTkdJUEswLzhBRTQpO0lLTUxPTz4dAwAAAAAAAAAAAAAAAAAABBkAAAAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:32'),
(8617, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:32'),
(8618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:31.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:32'),
(8619, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986613249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:33.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:33'),
(8620, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B4D647BAB12C83431D4BACA5B54046\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986613249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:33.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:33'),
(8621, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5ED01E75A420552FEFFA8CD46CFF927\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986621960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:41.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:42'),
(8622, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5ED01E75A420552FEFFA8CD46CFF927\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986621960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:41.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:42'),
(8623, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:48.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:48'),
(8624, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:48.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:48'),
(8625, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:52.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:52'),
(8626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:52.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:52'),
(8627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:53'),
(8628, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACE29FE0E1E2231EC3724E6EC0A5D6D0\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635076194_1166946588638535_8860972176147908658_n.enc?ccb=11-4&oh=01_Q5Aa3wGSDTEwy5FXIoFRTeOf5i8-0NhRu822NLoy5DF7Z_bv2A&oe=69B68A1E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P+LCbLaIbyiuFePI6RcHtq6JfcvUSbCDtxQ6t9oMi80=\",\"fileLength\":\"9851\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"QL5fkCXFjsu5KxK3ALETC6CEOQpPjCQuZPxUSZ4eSF8=\",\"fileEncSha256\":\"tJFxJV4o2xKNcmuI\\/8FfXpfYUhheodfIp0aeW6k25qw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635076194_1166946588638535_8860972176147908658_n.enc?ccb=11-4&oh=01_Q5Aa3wGSDTEwy5FXIoFRTeOf5i8-0NhRu822NLoy5DF7Z_bv2A&oe=69B68A1E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986629\",\"waveform\":\"LTQyO0NGQT0\\/S0pHR0EuKDMoJSExMDpALRgYLAwvVTIoNEZCOkNJT0Y5RFVHITQ+ODErLiweGh8fKFNKVkkVFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2ITE+BcqIBOfqLxW6d\\/Sc+H3AkI+Y6SvrNvVn+WQV3U=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:53'),
(8629, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:53'),
(8630, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACE29FE0E1E2231EC3724E6EC0A5D6D0\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635076194_1166946588638535_8860972176147908658_n.enc?ccb=11-4&oh=01_Q5Aa3wGSDTEwy5FXIoFRTeOf5i8-0NhRu822NLoy5DF7Z_bv2A&oe=69B68A1E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P+LCbLaIbyiuFePI6RcHtq6JfcvUSbCDtxQ6t9oMi80=\",\"fileLength\":\"9851\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"QL5fkCXFjsu5KxK3ALETC6CEOQpPjCQuZPxUSZ4eSF8=\",\"fileEncSha256\":\"tJFxJV4o2xKNcmuI\\/8FfXpfYUhheodfIp0aeW6k25qw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635076194_1166946588638535_8860972176147908658_n.enc?ccb=11-4&oh=01_Q5Aa3wGSDTEwy5FXIoFRTeOf5i8-0NhRu822NLoy5DF7Z_bv2A&oe=69B68A1E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986629\",\"waveform\":\"LTQyO0NGQT0\\/S0pHR0EuKDMoJSExMDpALRgYLAwvVTIoNEZCOkNJT0Y5RFVHITQ+ODErLiweGh8fKFNKVkkVFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2ITE+BcqIBOfqLxW6d\\/Sc+H3AkI+Y6SvrNvVn+WQV3U=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986632,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:53'),
(8631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:53'),
(8632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:54'),
(8633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:54'),
(8634, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:53.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:54'),
(8635, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:56.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:43:56'),
(8636, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:43:56.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:43:56'),
(8637, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:06.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:06'),
(8638, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:06.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:06'),
(8639, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:12.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:12'),
(8640, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:12.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:12'),
(8641, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:13'),
(8642, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5D1EC4DD912F8A57FA2751D5610316\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35501862_1238804390916521_6798284099397447114_n.enc?ccb=11-4&oh=01_Q5Aa3wGAD2vxPqxcqoDmIjrRco_xP4xkde6r6SqxFv6rAjSfZg&oe=69B69151&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eWnqHm6anXZASvGNRTWBzwSiapAxiiwpT42N3jU\\/5cU=\",\"fileLength\":\"37419\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"y51mO7ITdUxqh1971VlvuOFub9ssOrnIpjUkIcoGiQU=\",\"fileEncSha256\":\"jb\\/4qitGBY\\/bClFjxYJTd5W96DNwc5TNLkNKykW7Kac=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35501862_1238804390916521_6798284099397447114_n.enc?ccb=11-4&oh=01_Q5Aa3wGAD2vxPqxcqoDmIjrRco_xP4xkde6r6SqxFv6rAjSfZg&oe=69B69151&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986637\",\"waveform\":\"ADI8K1stMyxAOBMgFhgVFklKPSVCJkdFQDhAHSJePzUbV047Hh4lHxosOT1GLjI4P0ssISgkJCIjGh5IKlE6OA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pKjyErtrkKG\\/5ApqNdAHFvvOfAPgpX40s09RFy1Ut3g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986653,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:13'),
(8643, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:13'),
(8644, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5D1EC4DD912F8A57FA2751D5610316\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35501862_1238804390916521_6798284099397447114_n.enc?ccb=11-4&oh=01_Q5Aa3wGAD2vxPqxcqoDmIjrRco_xP4xkde6r6SqxFv6rAjSfZg&oe=69B69151&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eWnqHm6anXZASvGNRTWBzwSiapAxiiwpT42N3jU\\/5cU=\",\"fileLength\":\"37419\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"y51mO7ITdUxqh1971VlvuOFub9ssOrnIpjUkIcoGiQU=\",\"fileEncSha256\":\"jb\\/4qitGBY\\/bClFjxYJTd5W96DNwc5TNLkNKykW7Kac=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35501862_1238804390916521_6798284099397447114_n.enc?ccb=11-4&oh=01_Q5Aa3wGAD2vxPqxcqoDmIjrRco_xP4xkde6r6SqxFv6rAjSfZg&oe=69B69151&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986637\",\"waveform\":\"ADI8K1stMyxAOBMgFhgVFklKPSVCJkdFQDhAHSJePzUbV047Hh4lHxosOT1GLjI4P0ssISgkJCIjGh5IKlE6OA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pKjyErtrkKG\\/5ApqNdAHFvvOfAPgpX40s09RFy1Ut3g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986653,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:13'),
(8645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:13'),
(8646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:14'),
(8647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:14'),
(8648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:13.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:14'),
(8649, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:17'),
(8650, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5F90B306F2C25266D514EED2C2B1A78\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30812570_1874434553947504_2661515099957984266_n.enc?ccb=11-4&oh=01_Q5Aa3wG6ELhUHg_9bcg4fGa2euBdQYccIlp7y9B3MeNhs3QewQ&oe=69B69371&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2lCc5WlLqxSEHOZRyozt0qyx5tcy9sI61u5xYPoxBts=\",\"fileLength\":\"12818\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"2jUI1Dj5NuObiK2H71Bt5UQjfNj7SPM4bZQh0eFR0lk=\",\"fileEncSha256\":\"KY0CVJeVVww6R6u\\/q09\\/ZnA0az6N1vhiEGkw22KXgqA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30812570_1874434553947504_2661515099957984266_n.enc?ccb=11-4&oh=01_Q5Aa3wG6ELhUHg_9bcg4fGa2euBdQYccIlp7y9B3MeNhs3QewQ&oe=69B69371&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986652\",\"waveform\":\"AAACAAMhTlhaVi81SD0+RxoAAAAACwAAAAAAAABSVkFKT0suVhVMPS5bNjNUTh1PWElcVlRSRlE3OSJPVUYqUQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:17'),
(8651, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8652, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5F90B306F2C25266D514EED2C2B1A78\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30812570_1874434553947504_2661515099957984266_n.enc?ccb=11-4&oh=01_Q5Aa3wG6ELhUHg_9bcg4fGa2euBdQYccIlp7y9B3MeNhs3QewQ&oe=69B69371&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2lCc5WlLqxSEHOZRyozt0qyx5tcy9sI61u5xYPoxBts=\",\"fileLength\":\"12818\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"2jUI1Dj5NuObiK2H71Bt5UQjfNj7SPM4bZQh0eFR0lk=\",\"fileEncSha256\":\"KY0CVJeVVww6R6u\\/q09\\/ZnA0az6N1vhiEGkw22KXgqA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30812570_1874434553947504_2661515099957984266_n.enc?ccb=11-4&oh=01_Q5Aa3wG6ELhUHg_9bcg4fGa2euBdQYccIlp7y9B3MeNhs3QewQ&oe=69B69371&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986652\",\"waveform\":\"AAACAAMhTlhaVi81SD0+RxoAAAAACwAAAAAAAABSVkFKT0suVhVMPS5bNjNUTh1PWElcVlRSRlE3OSJPVUYqUQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:17'),
(8653, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F90B306F2C25266D514EED2C2B1A78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986657636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:17'),
(8654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:18'),
(8655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:18'),
(8656, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F90B306F2C25266D514EED2C2B1A78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986657636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:17.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:18'),
(8657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F90B306F2C25266D514EED2C2B1A78\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986661267,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:21.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:21'),
(8658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F90B306F2C25266D514EED2C2B1A78\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986661267,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:21.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8659, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqgP4k_pBCMDE6w3Lt-ldwr_T3AUfkkj-URXjRsuC69w&oe=699C291B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHifKFW9s1Zj6peqdL9DCxXSn5afY93XzU6anrc-rQlKg&oe=699C10E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0mj2251dKPV5NS6DNPuyfWxe-KWc3L3qS4307umtpLg&oe=699C4359&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH-_Sls5kgtFOwGjxRF5yWMIKdKMlxYNzDSNA92tYyNA&oe=699C1577&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbdO0yOFAhZ155ib1OwRK2MBie7bb3ZOQpySw0EcM2gw&oe=699C29A8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWcQTzPUZxfoXPKhQsCeCRlyaSJsVeGkBtLPhRCUWlPQ&oe=699C3240&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9BPgE9S7y6iTRNlcXe4A_d1vaHHG2kuNR_NxBL79VyA&oe=699C1383&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVtBJgia4uu_IfQH2QAIU5MIZrqQo7xAu5roFaAOnfaw&oe=699C329C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJPpjjGLoTyysf0Lt8NiPuTL9nQLoOPwwfewTJlEE8tQ&oe=699C42D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCuUK3SjcyEEucHb_Mqn9rAg7Od3UpLo--KLVq6X_XUg&oe=699C30D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLvIKKWd2CbiskbIil8ijL3VNO1kcayWGGYtluaxd0DQ&oe=699C3E56&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_hT2g1vDtQyF1IAgBqNz9l-fvkUzMe9-ytpVBI88LlQ&oe=699C390B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-YRh9y4GAGKPqYuiaC1WJRdCjezNMnUI-YPFr-IDTHg&oe=699C3C06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhV7IJ9m7ELJIfBVTCpCInhABnd1hU0psUuiu0Uaz4pQ&oe=699C39A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMqRAfFkEU4FOH8Vd8DUSYclBc1azDDWyIMuIEyewL6g&oe=699C3E0C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ1WKMxE1vQwvy8onT_IVapJaVq8gAFQ_5GNapGMOldw&oe=699C36BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJOf0D1heHlOZd933J8ktS6mKyOsQO08hFlEQmqXbFEQ&oe=699C385C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvzM-dKTTFhj2O_ejlZhHJwUrp5YK_1CYVIOknDTO-PQ&oe=699C2378&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDbVXRyrIB0sOd0BgGFBWGVNFM7Hf_SGbFaga18BkcrA&oe=699C37C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXHFoSLshFsIChMZbBc78OBxIYY9lF1sLmKvlQEaKzeg&oe=699C1E0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgUFw9_rhH_9DgSP4kIZPhWdSpk0l74U2BiG7g3fiOvQ&oe=699C37D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wH21b8Ar5TFi3e9bz3SJx76yh0rtgYxsfHeEt1SMLkjew&oe=699C2C56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFa4emzgMvRUTdFJsirLNLdDfP4ee-itZBMKQnYZD_WLg&oe=699C12DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLkck3UbkHjb9gvM0Y6lmKtWoIMrI0qIh27W9xIXTDfg&oe=699C1676&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUL2LP9HPoBoRCfC1VyYaxtaM-okd6yyNNHXhz-a-hog&oe=699C27AF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNqdPJoLPgKiketEVZnGn_eLUtwYb_sHSDm3NNmi9W5g&oe=699C2E2B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGraaYGyDKuR7AgCCAj3AjsZghDTvx2nOPbq2vxB5HVA&oe=699C250D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1HKXkUk9XEirHi3eA9z2AvGAOYUYqkkHFDs7kV7hEMg&oe=699C2A3B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyMvUttzPBirEhOpaEa7lgZ1zqsJfpesiOTA1Z8HpwBQ&oe=699C4382&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6scblESHovlFTKXHYEs4MjIUHtnSDfBrXVXXzqb5lw&oe=699C28D5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wESWz59H8Tp1yMJCivsLWhRJK5I8G4eUhoOuClo6CaEaA&oe=699C308C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJgrfb-QZDL_PX54Ct0p6rdwyVSxFWeTRr1yEeWg62-Q&oe=699C481A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7c1tUCA4SdbEAlU_17JfjQSvMkrBb34U0rEeh4l3rMA&oe=699C39EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2ZBp2cBOVFpdyHJa0TIgpWzrjW9cXv9fF9z-WGIJmcg&oe=699C3E25&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZNX9NgvD-BNiiVP679R9oCNu1cz0sqNFOUmxxzt0cuA&oe=699C1E50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXst0OBZ93CE8sNckaT8tkK4kYUGPiQtI2d1-IkQk79Q&oe=699C2C6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDHioXfqO4Z2c1g3ZY2A_-KR9xWJT2wtCytC1kGaUefA&oe=699C26BB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnhFJosPT8Uw6MGVItJS5KIm1byN-OX7taffQZJumQ8Q&oe=699C3029&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOOX1w73gwY6hsqKo36I55KQ71xfMQ3ZLfMDBSMTDPbg&oe=699C33AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYwrxuP2ASCiefe1GokhFxhXo8ziH1zon-kB0I0cTdQ&oe=699C3CE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_iJVAPKFacbckge1eQrv_tJuk2jgTGaSQjmCkOE42mQ&oe=699C2285&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_acQikE6vwKeG_Vaer6T_lZf8SZwXI2GCu1bHTQQX1Q&oe=699C2A30&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2Y9yCJZzeYR1jq1osGBoaWX3Rfyx27rEbbdA4Xo95EA&oe=699C1092&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiPmKnzB36qL2gsSpy4mKl858-PtNqam1PpV8F0gwQTA&oe=699C2655&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqEX5QaEaEgvg5YV7ErIejLHG4egk36u-nL68CT9ruEQ&oe=699C4251&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkPePAQUylLSBcB1CSiMDXwUg9FEAFdbRDtU-cgOw1Ww&oe=699C1039&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsLrecRBS5BLuKGjgjhSyhERnV2JDvqT0_IWJZBSB1AQ&oe=699C23F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw54OMoYzcBvg94Hx7XCUcvLP_-sZEyiekvIaAZz7MQA&oe=699C3C42&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe-6NP8C1hTV3NyDlv9OgqSzI4_zbtDgc-Knl4t9E3uw&oe=699C2C65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Zrts4z1bDeyI8eaGBM3KRITKdTVIPKq6NM2XqvGtiA&oe=699C31CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqr_JY0DvYpWaC8ivPHt5hLHDY3RbdQL7osPJzRm6m4A&oe=699C323A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqUvfMpQLq9R0a-1ut0IS4XXJAS7C9nF7Tc6FNV1QCKQ&oe=699C1AEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbj6_7i3nqFtH6Sm6grAfp6qdS3UKZy7mmcwHcLe85Q&oe=699C19EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoeMJxuGjJtXc6xcTJAlpQ8X7AsHk5MP1D94RIaE2PIQ&oe=699C2B55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJc1rIQLYGMRVMl1jv0bnDNhHKFLFKIcvnir2n8ipqBw&oe=699C20AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE4J0N3Ahrpkgo17-giLI4dy0rR7Z-oO-k-PeEZ2FKYw&oe=699C1358&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhvqKiQmNRP0TMQnGrjIiPnhYQvGq5X0mZWyAfCIFxYw&oe=699C2853&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg0br6crzdHmhyaMKpVgb0JFFknJEEaxKDsvElur4NUQ&oe=699C1279&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0gU2g_sYr8QnVs4lrrNbE4SDBJO4dd_34kLJk0q5BKQ&oe=699C3D46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfHAj34UfFlbzqtRXkiB7F_Iy7DrbP2C9HaaQwp1MVHg&oe=699C12A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8m5hDdvJ6hJ1RwTgXVRfbGekr1kSDBt7GUvrvW70VRQ&oe=699C2A78&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsIrNA1wpk0Dbfx7ssJORAz5hcFsv7LkC4pr_eVGi73Q&oe=699C4778&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWgpeRJA-JXRrYnPqSLcDwGZv9kh9VwjEjEteaCwkfsA&oe=699C1E00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8N94tbxog3OcA-HtQNc6_bbEiGpXRELvDNPJx-VZNNg&oe=699C430F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7yeV_FxOtSTtBXNTzrUm3vNFK6EyJuwF1NEhDWn9TdQ&oe=699C363E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAgdPlauOpyJ_k1WSBF_wOoTEJQ3XAEv8VRIhivFAStA&oe=699C39C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwU74yEal3G1bfmZXHspryH5tiT2aV5n0h5Llj_HiYAA&oe=699C270E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfzLJQEeIVQL_SRzP0nBMa6LEPdQTItUEQ0qIAaQ41vw&oe=699C2DF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRdakVGlxk1ZQV0T6OY4SYvQPCcRKtZ1FGEhKLPReQBg&oe=699C1392&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0M4-2ZoClHJf5vkgSKtNZwGlEn-BSvJBhhbo-5UmbIw&oe=699C3F10&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wE61WzjwtTgCO3gJu8GyDJ3uchVywqhZITMJsEg_DAkkw&oe=699C32FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ1NQBkVgBC8hE5-k6RbkiIs415wzrv0nrJq_SnkXKrA&oe=699C3632&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wENeJ5Dl0_sQPQ1qzhdi5WGx69M3PRzK53UQWl6lXgUmA&oe=699C30AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmYLfZ-u4mJMKQj-w7qP4U9gUsv2BcOjNqnH8GXt2xBw&oe=699C253C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCuxLTeWCWeUNOnAk8CJdBgfVn5U5rQpLNMlsvzCT-rQ&oe=699C3ADF&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUZkmaYUGtLClXdnyUrLQ1o3pyG165Mv6M5h5zwYoQ_w&oe=699C3EDA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFCU4ckDviRISxOsTxjq2LDet2629vq1BAoKyW-kujMA&oe=699C2A10&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJZWlyiG6KO6gWyGrBWnDT6CzQegpUP3G4fVg5LM_FwA&oe=699C4604&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_AEG5naIdBEUTAKdeVmbw2MugpFuWP6jbL7DYQE5Q_w&oe=699C312E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMiayMJ2UxnWJvxmbJnrOI9n4yWuu06G6IvvGe222AIA&oe=699C14FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxOiUrDUUIwrY7hdmRaADIBt-2kbEl_ryX0E3VjskAlw&oe=699C3B55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhud_gHb6PLW4IT4eQmL7os9EiwKfZCK6k6gUP47qSFw&oe=699C484E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ez1KZ2DppLCCKkad78zWG-1_9GQ7Dtv3p7RvJbj9bQ&oe=699C2575&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBDOIk3bUS_CaFPqTAF64S8GwQinPOQcoF5FdExsXTrA&oe=699C3304&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCn4dvKXTDLC6nOV7JLT8MiNoaN4wyiaGqR17vVnQ9Mw&oe=699C3EBD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQBj6hq6Oehbh9V-uLp_DFAt5dKVTh1apdyC-aoqqcjA&oe=699C42E5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu7nAdqIiLYdQvA5TsZFhW3cNPxVujszy285JTKLzwFA&oe=699C223F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMofkpqZmcBV98Fi4n16whdwnwEoQRfU6iplu88Y-d4Q&oe=699C3F82&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmOnkYqbXK_Cb2kOZBKC3qW0cmBNm-fPLJRbA9M8DBmg&oe=699C2E21&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxGpd7byWM2IDuv0FufJ9m-6UUyLzIr9Sl9wGa88LLpA&oe=699C2947&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG997kbQPzkoRyLdv4pubKq8KtOEDXCaeDxD7RbUQKigQ&oe=699C16A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3x_SPXWtwI5Ynro9UXOLUQayGFnOGzYqbWxwxRp67oA&oe=699C3A00&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP5V6w4ilJ7x2T27w2cOR3Ngipg54DFmWPjm7kVaelLw&oe=699C195D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIAStEKtzGHmfDPK4rAXRATkUPSd9NfPDsc6NkQQzaEQ&oe=699C2147&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXfth45nPFXrfMLmc03l7Zxxkp1wb4oqPOCt6QwMyeiw&oe=699C1CE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4ZWkOcGSe30A0SO0VvqMCjdK6solOE5WG17z1iNVa-A&oe=699C2D48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9Y7BNigdcFLOQYRm_xEvbd450jaaPbW8hbqOXArTiCQ&oe=699C2E8A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP4_h7aTmgkDTBjhzpbVb0x8IlswjhAaeYFSDKl4-Elw&oe=699C2991&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiOlKRGXKTJLSc6ZTLx6zbDMt7oQt2GUcxtsD0PEU1kA&oe=699C3B5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wECyBlWUwMKQoKFgQkJ3lUkvpMit7CXmdF5Y3de15-wJQ&oe=699C1D36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-KilcjyHzIBkIVVL-LSEBgAd6xEjOl3UMgV_zp-jZdQ&oe=699C3994&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7kglYrxSf884ZiNAFXNiE_FKsZt19ARl8__69TXWyYA&oe=699C2457&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoaUEJKNUkBOwcQ-Z9F4N29l1PB4i4nkyy5HUj5H0a5w&oe=699C13BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJzE59hWIx_Nsiz6TzGcycP8Zlbe_PhMklFcT-WswiXQ&oe=699C1BAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC8-OMss5xyi0SVetXY_KM1TUC6CMxE_B5T7DwrvmJbA&oe=699C371A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPaZMkzRYwMQt31jy2C7KCdKyaFkeO9mwkWQjZNXu3Tw&oe=699C33F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmPzqrPqUlofMW6Rj3yNmsOkxVY5GpifBkR3J9U_f-vA&oe=699C3C1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_W6lczxUZjkaFJh_wJ4sHOY9XkAYfvrJFvmDYdLDTA&oe=699C2087&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6XTrWg-LsBamSW3JkPzoLSWp3JYLfrhqUJLx0QfLa8A&oe=699C35CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSau8xQ8LLZsZHqrPLYZfBzmix2jEmKFdkIFBOHmYscg&oe=699C3A77&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFYTzy2Ejn2j-fsPjhpKauevp-O1iNySZJ8EfuVo1I91Q&oe=699C1D60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9S3IDV4puOvMAre5ShM8HMIpEjdDMy_bFvJt1cxD5BQ&oe=699C128B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRS-JZBcZDanAZFcElT7uysCMXyUQEUEof5uhkoHrpag&oe=699C2120&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQ8Ux_nQok84aSPGrVjU55wsaMNQw2VFdwDCmmXZBtKQ&oe=699C2DD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNjw95YxDTacpEKZ-AE5M-NapEmBl4R0EqCL0BDgrgDA&oe=699C2DE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYKQbcSsKOo1WFVZ3HG4NEC-djyzIpPVcatiMp7VKmFw&oe=699C3CC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-lbV2mwPWtz7NeIk_qwvcO9ArO4XmQ-2J_h92-9fveQ&oe=699C29A3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmPpf9lwixDqANQeL9s0eD_47-a3qaCh58KLyCnHhf7Q&oe=699C3D33&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 ', 1, '2026-02-13 09:44:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8660, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqgP4k_pBCMDE6w3Lt-ldwr_T3AUfkkj-URXjRsuC69w&oe=699C291B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHifKFW9s1Zj6peqdL9DCxXSn5afY93XzU6anrc-rQlKg&oe=699C10E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0mj2251dKPV5NS6DNPuyfWxe-KWc3L3qS4307umtpLg&oe=699C4359&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH-_Sls5kgtFOwGjxRF5yWMIKdKMlxYNzDSNA92tYyNA&oe=699C1577&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/483637521_1909485066488499_3380471203815789283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbdO0yOFAhZ155ib1OwRK2MBie7bb3ZOQpySw0EcM2gw&oe=699C29A8&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWcQTzPUZxfoXPKhQsCeCRlyaSJsVeGkBtLPhRCUWlPQ&oe=699C3240&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9BPgE9S7y6iTRNlcXe4A_d1vaHHG2kuNR_NxBL79VyA&oe=699C1383&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVtBJgia4uu_IfQH2QAIU5MIZrqQo7xAu5roFaAOnfaw&oe=699C329C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJPpjjGLoTyysf0Lt8NiPuTL9nQLoOPwwfewTJlEE8tQ&oe=699C42D5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCuUK3SjcyEEucHb_Mqn9rAg7Od3UpLo--KLVq6X_XUg&oe=699C30D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLvIKKWd2CbiskbIil8ijL3VNO1kcayWGGYtluaxd0DQ&oe=699C3E56&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_hT2g1vDtQyF1IAgBqNz9l-fvkUzMe9-ytpVBI88LlQ&oe=699C390B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-YRh9y4GAGKPqYuiaC1WJRdCjezNMnUI-YPFr-IDTHg&oe=699C3C06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhV7IJ9m7ELJIfBVTCpCInhABnd1hU0psUuiu0Uaz4pQ&oe=699C39A2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMqRAfFkEU4FOH8Vd8DUSYclBc1azDDWyIMuIEyewL6g&oe=699C3E0C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ1WKMxE1vQwvy8onT_IVapJaVq8gAFQ_5GNapGMOldw&oe=699C36BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJOf0D1heHlOZd933J8ktS6mKyOsQO08hFlEQmqXbFEQ&oe=699C385C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvzM-dKTTFhj2O_ejlZhHJwUrp5YK_1CYVIOknDTO-PQ&oe=699C2378&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDbVXRyrIB0sOd0BgGFBWGVNFM7Hf_SGbFaga18BkcrA&oe=699C37C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXHFoSLshFsIChMZbBc78OBxIYY9lF1sLmKvlQEaKzeg&oe=699C1E0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgUFw9_rhH_9DgSP4kIZPhWdSpk0l74U2BiG7g3fiOvQ&oe=699C37D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wH21b8Ar5TFi3e9bz3SJx76yh0rtgYxsfHeEt1SMLkjew&oe=699C2C56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFa4emzgMvRUTdFJsirLNLdDfP4ee-itZBMKQnYZD_WLg&oe=699C12DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLkck3UbkHjb9gvM0Y6lmKtWoIMrI0qIh27W9xIXTDfg&oe=699C1676&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUL2LP9HPoBoRCfC1VyYaxtaM-okd6yyNNHXhz-a-hog&oe=699C27AF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNqdPJoLPgKiketEVZnGn_eLUtwYb_sHSDm3NNmi9W5g&oe=699C2E2B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGraaYGyDKuR7AgCCAj3AjsZghDTvx2nOPbq2vxB5HVA&oe=699C250D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1HKXkUk9XEirHi3eA9z2AvGAOYUYqkkHFDs7kV7hEMg&oe=699C2A3B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyMvUttzPBirEhOpaEa7lgZ1zqsJfpesiOTA1Z8HpwBQ&oe=699C4382&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6scblESHovlFTKXHYEs4MjIUHtnSDfBrXVXXzqb5lw&oe=699C28D5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wESWz59H8Tp1yMJCivsLWhRJK5I8G4eUhoOuClo6CaEaA&oe=699C308C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJgrfb-QZDL_PX54Ct0p6rdwyVSxFWeTRr1yEeWg62-Q&oe=699C481A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7c1tUCA4SdbEAlU_17JfjQSvMkrBb34U0rEeh4l3rMA&oe=699C39EF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2ZBp2cBOVFpdyHJa0TIgpWzrjW9cXv9fF9z-WGIJmcg&oe=699C3E25&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZNX9NgvD-BNiiVP679R9oCNu1cz0sqNFOUmxxzt0cuA&oe=699C1E50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXst0OBZ93CE8sNckaT8tkK4kYUGPiQtI2d1-IkQk79Q&oe=699C2C6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDHioXfqO4Z2c1g3ZY2A_-KR9xWJT2wtCytC1kGaUefA&oe=699C26BB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnhFJosPT8Uw6MGVItJS5KIm1byN-OX7taffQZJumQ8Q&oe=699C3029&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOOX1w73gwY6hsqKo36I55KQ71xfMQ3ZLfMDBSMTDPbg&oe=699C33AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wETYwrxuP2ASCiefe1GokhFxhXo8ziH1zon-kB0I0cTdQ&oe=699C3CE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_iJVAPKFacbckge1eQrv_tJuk2jgTGaSQjmCkOE42mQ&oe=699C2285&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_acQikE6vwKeG_Vaer6T_lZf8SZwXI2GCu1bHTQQX1Q&oe=699C2A30&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2Y9yCJZzeYR1jq1osGBoaWX3Rfyx27rEbbdA4Xo95EA&oe=699C1092&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiPmKnzB36qL2gsSpy4mKl858-PtNqam1PpV8F0gwQTA&oe=699C2655&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqEX5QaEaEgvg5YV7ErIejLHG4egk36u-nL68CT9ruEQ&oe=699C4251&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkPePAQUylLSBcB1CSiMDXwUg9FEAFdbRDtU-cgOw1Ww&oe=699C1039&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsLrecRBS5BLuKGjgjhSyhERnV2JDvqT0_IWJZBSB1AQ&oe=699C23F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426706_927789553099984_7058650504706434946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw54OMoYzcBvg94Hx7XCUcvLP_-sZEyiekvIaAZz7MQA&oe=699C3C42&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe-6NP8C1hTV3NyDlv9OgqSzI4_zbtDgc-Knl4t9E3uw&oe=699C2C65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7Zrts4z1bDeyI8eaGBM3KRITKdTVIPKq6NM2XqvGtiA&oe=699C31CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqr_JY0DvYpWaC8ivPHt5hLHDY3RbdQL7osPJzRm6m4A&oe=699C323A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqUvfMpQLq9R0a-1ut0IS4XXJAS7C9nF7Tc6FNV1QCKQ&oe=699C1AEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJbj6_7i3nqFtH6Sm6grAfp6qdS3UKZy7mmcwHcLe85Q&oe=699C19EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoeMJxuGjJtXc6xcTJAlpQ8X7AsHk5MP1D94RIaE2PIQ&oe=699C2B55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJc1rIQLYGMRVMl1jv0bnDNhHKFLFKIcvnir2n8ipqBw&oe=699C20AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE4J0N3Ahrpkgo17-giLI4dy0rR7Z-oO-k-PeEZ2FKYw&oe=699C1358&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhvqKiQmNRP0TMQnGrjIiPnhYQvGq5X0mZWyAfCIFxYw&oe=699C2853&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg0br6crzdHmhyaMKpVgb0JFFknJEEaxKDsvElur4NUQ&oe=699C1279&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0gU2g_sYr8QnVs4lrrNbE4SDBJO4dd_34kLJk0q5BKQ&oe=699C3D46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfHAj34UfFlbzqtRXkiB7F_Iy7DrbP2C9HaaQwp1MVHg&oe=699C12A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8m5hDdvJ6hJ1RwTgXVRfbGekr1kSDBt7GUvrvW70VRQ&oe=699C2A78&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsIrNA1wpk0Dbfx7ssJORAz5hcFsv7LkC4pr_eVGi73Q&oe=699C4778&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWgpeRJA-JXRrYnPqSLcDwGZv9kh9VwjEjEteaCwkfsA&oe=699C1E00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8N94tbxog3OcA-HtQNc6_bbEiGpXRELvDNPJx-VZNNg&oe=699C430F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7yeV_FxOtSTtBXNTzrUm3vNFK6EyJuwF1NEhDWn9TdQ&oe=699C363E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wGAgdPlauOpyJ_k1WSBF_wOoTEJQ3XAEv8VRIhivFAStA&oe=699C39C2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwU74yEal3G1bfmZXHspryH5tiT2aV5n0h5Llj_HiYAA&oe=699C270E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfzLJQEeIVQL_SRzP0nBMa6LEPdQTItUEQ0qIAaQ41vw&oe=699C2DF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRdakVGlxk1ZQV0T6OY4SYvQPCcRKtZ1FGEhKLPReQBg&oe=699C1392&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0M4-2ZoClHJf5vkgSKtNZwGlEn-BSvJBhhbo-5UmbIw&oe=699C3F10&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wE61WzjwtTgCO3gJu8GyDJ3uchVywqhZITMJsEg_DAkkw&oe=699C32FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ1NQBkVgBC8hE5-k6RbkiIs415wzrv0nrJq_SnkXKrA&oe=699C3632&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wENeJ5Dl0_sQPQ1qzhdi5WGx69M3PRzK53UQWl6lXgUmA&oe=699C30AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmYLfZ-u4mJMKQj-w7qP4U9gUsv2BcOjNqnH8GXt2xBw&oe=699C253C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCuxLTeWCWeUNOnAk8CJdBgfVn5U5rQpLNMlsvzCT-rQ&oe=699C3ADF&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUZkmaYUGtLClXdnyUrLQ1o3pyG165Mv6M5h5zwYoQ_w&oe=699C3EDA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFCU4ckDviRISxOsTxjq2LDet2629vq1BAoKyW-kujMA&oe=699C2A10&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJZWlyiG6KO6gWyGrBWnDT6CzQegpUP3G4fVg5LM_FwA&oe=699C4604&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605438551_2704415483276177_2817763636423485573_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_AEG5naIdBEUTAKdeVmbw2MugpFuWP6jbL7DYQE5Q_w&oe=699C312E&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMiayMJ2UxnWJvxmbJnrOI9n4yWuu06G6IvvGe222AIA&oe=699C14FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxOiUrDUUIwrY7hdmRaADIBt-2kbEl_ryX0E3VjskAlw&oe=699C3B55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhud_gHb6PLW4IT4eQmL7os9EiwKfZCK6k6gUP47qSFw&oe=699C484E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9ez1KZ2DppLCCKkad78zWG-1_9GQ7Dtv3p7RvJbj9bQ&oe=699C2575&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBDOIk3bUS_CaFPqTAF64S8GwQinPOQcoF5FdExsXTrA&oe=699C3304&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCn4dvKXTDLC6nOV7JLT8MiNoaN4wyiaGqR17vVnQ9Mw&oe=699C3EBD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQBj6hq6Oehbh9V-uLp_DFAt5dKVTh1apdyC-aoqqcjA&oe=699C42E5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu7nAdqIiLYdQvA5TsZFhW3cNPxVujszy285JTKLzwFA&oe=699C223F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMofkpqZmcBV98Fi4n16whdwnwEoQRfU6iplu88Y-d4Q&oe=699C3F82&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmOnkYqbXK_Cb2kOZBKC3qW0cmBNm-fPLJRbA9M8DBmg&oe=699C2E21&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxGpd7byWM2IDuv0FufJ9m-6UUyLzIr9Sl9wGa88LLpA&oe=699C2947&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG997kbQPzkoRyLdv4pubKq8KtOEDXCaeDxD7RbUQKigQ&oe=699C16A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3x_SPXWtwI5Ynro9UXOLUQayGFnOGzYqbWxwxRp67oA&oe=699C3A00&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGP5V6w4ilJ7x2T27w2cOR3Ngipg54DFmWPjm7kVaelLw&oe=699C195D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIAStEKtzGHmfDPK4rAXRATkUPSd9NfPDsc6NkQQzaEQ&oe=699C2147&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXfth45nPFXrfMLmc03l7Zxxkp1wb4oqPOCt6QwMyeiw&oe=699C1CE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4ZWkOcGSe30A0SO0VvqMCjdK6solOE5WG17z1iNVa-A&oe=699C2D48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9Y7BNigdcFLOQYRm_xEvbd450jaaPbW8hbqOXArTiCQ&oe=699C2E8A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP4_h7aTmgkDTBjhzpbVb0x8IlswjhAaeYFSDKl4-Elw&oe=699C2991&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiOlKRGXKTJLSc6ZTLx6zbDMt7oQt2GUcxtsD0PEU1kA&oe=699C3B5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wECyBlWUwMKQoKFgQkJ3lUkvpMit7CXmdF5Y3de15-wJQ&oe=699C1D36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-KilcjyHzIBkIVVL-LSEBgAd6xEjOl3UMgV_zp-jZdQ&oe=699C3994&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7kglYrxSf884ZiNAFXNiE_FKsZt19ARl8__69TXWyYA&oe=699C2457&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoaUEJKNUkBOwcQ-Z9F4N29l1PB4i4nkyy5HUj5H0a5w&oe=699C13BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJzE59hWIx_Nsiz6TzGcycP8Zlbe_PhMklFcT-WswiXQ&oe=699C1BAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC8-OMss5xyi0SVetXY_KM1TUC6CMxE_B5T7DwrvmJbA&oe=699C371A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPaZMkzRYwMQt31jy2C7KCdKyaFkeO9mwkWQjZNXu3Tw&oe=699C33F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmPzqrPqUlofMW6Rj3yNmsOkxVY5GpifBkR3J9U_f-vA&oe=699C3C1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_W6lczxUZjkaFJh_wJ4sHOY9XkAYfvrJFvmDYdLDTA&oe=699C2087&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6XTrWg-LsBamSW3JkPzoLSWp3JYLfrhqUJLx0QfLa8A&oe=699C35CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSau8xQ8LLZsZHqrPLYZfBzmix2jEmKFdkIFBOHmYscg&oe=699C3A77&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFYTzy2Ejn2j-fsPjhpKauevp-O1iNySZJ8EfuVo1I91Q&oe=699C1D60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE9S3IDV4puOvMAre5ShM8HMIpEjdDMy_bFvJt1cxD5BQ&oe=699C128B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRS-JZBcZDanAZFcElT7uysCMXyUQEUEof5uhkoHrpag&oe=699C2120&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQ8Ux_nQok84aSPGrVjU55wsaMNQw2VFdwDCmmXZBtKQ&oe=699C2DD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNjw95YxDTacpEKZ-AE5M-NapEmBl4R0EqCL0BDgrgDA&oe=699C2DE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYKQbcSsKOo1WFVZ3HG4NEC-djyzIpPVcatiMp7VKmFw&oe=699C3CC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-lbV2mwPWtz7NeIk_qwvcO9ArO4XmQ-2J_h92-9fveQ&oe=699C29A3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmPpf9lwixDqANQeL9s0eD_47-a3qaCh58KLyCnHhf7Q&oe=699C3D33&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 ', 1, '2026-02-13 09:44:30');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8661, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:33.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:33'),
(8662, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A51C1E9831490610AC3AB41168C990B7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986673,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:33.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:33'),
(8663, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:33.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:34'),
(8664, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A51C1E9831490610AC3AB41168C990B7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986673,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:33.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:34'),
(8665, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:34.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:34'),
(8666, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:34.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:34'),
(8667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:36.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:36'),
(8668, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A5C95618C4A8EE91456F19F9DC79900D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Verificando\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:36.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:36'),
(8669, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:36.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:36'),
(8670, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A5C95618C4A8EE91456F19F9DC79900D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Verificando\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:36.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:36'),
(8671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:36.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:36'),
(8672, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:36.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:37'),
(8673, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:41.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:41'),
(8674, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:41.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:42'),
(8675, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:44.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:44'),
(8676, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:44.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:44'),
(8677, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:45'),
(8678, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC41D5D942287D79F6BA868F25ED847D\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635593121_1328712825682212_5097168821427140674_n.enc?ccb=11-4&oh=01_Q5Aa3wFWhU6Jf55nIc_UYswfEgKR45ZzjYVWSUfElPeSwaxkoQ&oe=69B67369&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Q\\/bp0DY5C5Q1XFQG2OAPHIvBrxQdUWitbntWGWV\\/xQI=\",\"fileLength\":\"6475\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"Zilcb\\/TPzIneOh7EztdPkke4+z1iYdfvXfXPSh9bKLg=\",\"fileEncSha256\":\"2vh1MU8o+LFFPqiuayWpwdTlnfdN\\/vtY\\/MRjpy6Yytw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635593121_1328712825682212_5097168821427140674_n.enc?ccb=11-4&oh=01_Q5Aa3wFWhU6Jf55nIc_UYswfEgKR45ZzjYVWSUfElPeSwaxkoQ&oe=69B67369&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986683\",\"waveform\":\"AAAJEiJBQzQ9TEk\\/LywzP0pKQUFLU09LSUlMRklGOzE6SFJVUUYxRllgX0lJSjooWF5eVklAHEBXUj0zREdCPg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"keancyY5uIp7HxZ0jmerNsGu3azE08Wf\\/kl4cKUsoJc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:45'),
(8679, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:45'),
(8680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC41D5D942287D79F6BA868F25ED847D\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635593121_1328712825682212_5097168821427140674_n.enc?ccb=11-4&oh=01_Q5Aa3wFWhU6Jf55nIc_UYswfEgKR45ZzjYVWSUfElPeSwaxkoQ&oe=69B67369&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Q\\/bp0DY5C5Q1XFQG2OAPHIvBrxQdUWitbntWGWV\\/xQI=\",\"fileLength\":\"6475\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"Zilcb\\/TPzIneOh7EztdPkke4+z1iYdfvXfXPSh9bKLg=\",\"fileEncSha256\":\"2vh1MU8o+LFFPqiuayWpwdTlnfdN\\/vtY\\/MRjpy6Yytw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635593121_1328712825682212_5097168821427140674_n.enc?ccb=11-4&oh=01_Q5Aa3wFWhU6Jf55nIc_UYswfEgKR45ZzjYVWSUfElPeSwaxkoQ&oe=69B67369&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986683\",\"waveform\":\"AAAJEiJBQzQ9TEk\\/LywzP0pKQUFLU09LSUlMRklGOzE6SFJVUUYxRllgX0lJSjooWF5eVklAHEBXUj0zREdCPg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"keancyY5uIp7HxZ0jmerNsGu3azE08Wf\\/kl4cKUsoJc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:45'),
(8681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:45'),
(8682, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:46'),
(8683, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:46'),
(8684, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:45.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:46'),
(8685, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A51C1E9831490610AC3AB41168C990B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986688172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:48.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:48'),
(8686, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5C95618C4A8EE91456F19F9DC79900D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986688208,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:48.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:44:48'),
(8687, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A51C1E9831490610AC3AB41168C990B7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986688172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:48.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:48'),
(8688, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5C95618C4A8EE91456F19F9DC79900D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986688208,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:44:48.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:44:48'),
(8689, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:24.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:25'),
(8690, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:24.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:25'),
(8691, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:29.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:30'),
(8692, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:29.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:30'),
(8693, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:30.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:31'),
(8694, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:30.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:31'),
(8695, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC641C4B841171A28F4B092D968BE851\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628174772_1525228408548817_3479657916905513951_n.enc?ccb=11-4&oh=01_Q5Aa3wF4K95q1eMJU8tnBqLf2RKXPBBijPoGH_QOK5QQltDr4Q&oe=69B68175&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jRH4do8o2GzVIgbl+6+iFEhUG4f2rlCDS1q5z6O\\/zH0=\",\"fileLength\":\"12470\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"G\\/GlIAdZ\\/q3DOA9yzrUQP3Hcn87jPsYJt4EdGXCOuIQ=\",\"fileEncSha256\":\"F84DlxBmmxzJfWgygquZ2DSvYRMdp99QP0lBIlo17Us=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628174772_1525228408548817_3479657916905513951_n.enc?ccb=11-4&oh=01_Q5Aa3wF4K95q1eMJU8tnBqLf2RKXPBBijPoGH_QOK5QQltDr4Q&oe=69B68175&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986726\",\"waveform\":\"LhUaPz9APUJCPBQmNT5CQUdDQDErNEdLSFA4TkpJSjpFODonHzIsLS00JyYpJkVPVitAQjUwSDc5IS41OikRFg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"esNRTA+5ThaA6fQ+8ZHNrT+wsCCQdopTaYEoucrfjno=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986730,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:30.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:31'),
(8696, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC641C4B841171A28F4B092D968BE851\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628174772_1525228408548817_3479657916905513951_n.enc?ccb=11-4&oh=01_Q5Aa3wF4K95q1eMJU8tnBqLf2RKXPBBijPoGH_QOK5QQltDr4Q&oe=69B68175&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jRH4do8o2GzVIgbl+6+iFEhUG4f2rlCDS1q5z6O\\/zH0=\",\"fileLength\":\"12470\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"G\\/GlIAdZ\\/q3DOA9yzrUQP3Hcn87jPsYJt4EdGXCOuIQ=\",\"fileEncSha256\":\"F84DlxBmmxzJfWgygquZ2DSvYRMdp99QP0lBIlo17Us=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628174772_1525228408548817_3479657916905513951_n.enc?ccb=11-4&oh=01_Q5Aa3wF4K95q1eMJU8tnBqLf2RKXPBBijPoGH_QOK5QQltDr4Q&oe=69B68175&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986726\",\"waveform\":\"LhUaPz9APUJCPBQmNT5CQUdDQDErNEdLSFA4TkpJSjpFODonHzIsLS00JyYpJkVPVitAQjUwSDc5IS41OikRFg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"esNRTA+5ThaA6fQ+8ZHNrT+wsCCQdopTaYEoucrfjno=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986730,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:30.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:31'),
(8697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:31.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:31'),
(8698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:31.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:31'),
(8699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:31.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:31'),
(8700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:31.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:31'),
(8701, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A522B7E553EF9289E24093124FDC7542\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Acessa agora porfavor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986742,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:42.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:42'),
(8702, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A522B7E553EF9289E24093124FDC7542\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Acessa agora porfavor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770986742,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:42.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:43'),
(8703, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:42.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:43'),
(8704, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:42.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:43'),
(8705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:43.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:43'),
(8706, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:43.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:43'),
(8707, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A522B7E553EF9289E24093124FDC7542\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986744174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:44.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:44'),
(8708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A522B7E553EF9289E24093124FDC7542\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986744174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:44.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:44'),
(8709, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A522B7E553EF9289E24093124FDC7542\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986756929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:56.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:57'),
(8710, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5C95618C4A8EE91456F19F9DC79900D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986756933,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:56.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:57'),
(8711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A522B7E553EF9289E24093124FDC7542\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986756929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:56.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:57'),
(8712, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5C95618C4A8EE91456F19F9DC79900D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986756933,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:56.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:57'),
(8713, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A51C1E9831490610AC3AB41168C990B7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986756942,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:56.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:45:57'),
(8714, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A51C1E9831490610AC3AB41168C990B7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986756942,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:45:56.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:45:58'),
(8715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:04.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:04'),
(8716, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:04.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:04'),
(8717, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5F7CDAB856734A5D011277707BA945B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635088663_919772077897366_8629587620716953242_n.enc?ccb=11-4&oh=01_Q5Aa3wGt5xMka2-pAsoFl1i_SMMTZCa39qEliT2UrrZYCqGTNQ&oe=69B6968D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"brtTcLT5J2X68b1umpJvYCqnb5u291GZlXSVSvWexrk=\",\"fileLength\":\"10657\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"KHgEHoaOn\\/16dCo6PggxOZGL3N7sM2ToDJVsqMtn2rk=\",\"fileEncSha256\":\"tcyEkDMtpNHOSJZAdnKboa7IyODWbdvx\\/SQKvZ35vwE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635088663_919772077897366_8629587620716953242_n.enc?ccb=11-4&oh=01_Q5Aa3wGt5xMka2-pAsoFl1i_SMMTZCa39qEliT2UrrZYCqGTNQ&oe=69B6968D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986761\",\"waveform\":\"AAAAAAAEBAAAAAAAAAADQj1KTE9ZUUtRIjhXS0NAS0IyQR88OzFGOBhJQE1RVh0DAAAHFTpJR0dGSEhSNQIAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986764,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:04.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:05'),
(8718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:05.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:05'),
(8719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5F7CDAB856734A5D011277707BA945B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635088663_919772077897366_8629587620716953242_n.enc?ccb=11-4&oh=01_Q5Aa3wGt5xMka2-pAsoFl1i_SMMTZCa39qEliT2UrrZYCqGTNQ&oe=69B6968D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"brtTcLT5J2X68b1umpJvYCqnb5u291GZlXSVSvWexrk=\",\"fileLength\":\"10657\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"KHgEHoaOn\\/16dCo6PggxOZGL3N7sM2ToDJVsqMtn2rk=\",\"fileEncSha256\":\"tcyEkDMtpNHOSJZAdnKboa7IyODWbdvx\\/SQKvZ35vwE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635088663_919772077897366_8629587620716953242_n.enc?ccb=11-4&oh=01_Q5Aa3wGt5xMka2-pAsoFl1i_SMMTZCa39qEliT2UrrZYCqGTNQ&oe=69B6968D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986761\",\"waveform\":\"AAAAAAAEBAAAAAAAAAADQj1KTE9ZUUtRIjhXS0NAS0IyQR88OzFGOBhJQE1RVh0DAAAHFTpJR0dGSEhSNQIAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986764,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:04.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:05'),
(8720, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:05.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:05'),
(8721, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F7CDAB856734A5D011277707BA945B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986765976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:05.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:06'),
(8722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F7CDAB856734A5D011277707BA945B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986765976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:05.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:06'),
(8723, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F7CDAB856734A5D011277707BA945B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986777589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:17.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:17'),
(8724, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F7CDAB856734A5D011277707BA945B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986777589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:17.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:17'),
(8725, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F7CDAB856734A5D011277707BA945B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986778915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:18.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:18'),
(8726, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5F7CDAB856734A5D011277707BA945B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986778915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:18.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:19'),
(8727, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:25.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:25'),
(8728, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:25.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:25'),
(8729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:30.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:30'),
(8730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:30.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:30'),
(8731, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:31'),
(8732, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC9370A2CF8AC8E4ED348E60A7CAB7FC\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633440175_25909611242039721_5213315545795467784_n.enc?ccb=11-4&oh=01_Q5Aa3wEtfKIqclzliO-NpPlS6q3Icuw0YX8ibGQC-VhA42nMqQ&oe=69B6846A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SpDKTbcxUDRVHaeNX7ZiDQXX2RKHRBp38DqtYlpFPsQ=\",\"fileLength\":\"11920\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"NzceMQDNSbjQxJmjc7MhqCtSS9XPOL4y\\/1cduD8NBpk=\",\"fileEncSha256\":\"GySU8gaVj9gMZUMLknXShY0mi05w\\/3I7LiPAFtpv33M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633440175_25909611242039721_5213315545795467784_n.enc?ccb=11-4&oh=01_Q5Aa3wEtfKIqclzliO-NpPlS6q3Icuw0YX8ibGQC-VhA42nMqQ&oe=69B6846A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986786\",\"waveform\":\"BjVIVVksRUpDODwlS0g8TDcrTlMrO05DISYoIxwYPjccPkQ\\/KDxCNTAyLiklJSUgKCIiIyE8Q0U\\/Sz89NC4\\/NQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T1ehgBHmpxhkRoZK13Lzg2T6lHzJDFBeQLzwabAgbjE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986791,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:31'),
(8733, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8734, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC9370A2CF8AC8E4ED348E60A7CAB7FC\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633440175_25909611242039721_5213315545795467784_n.enc?ccb=11-4&oh=01_Q5Aa3wEtfKIqclzliO-NpPlS6q3Icuw0YX8ibGQC-VhA42nMqQ&oe=69B6846A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SpDKTbcxUDRVHaeNX7ZiDQXX2RKHRBp38DqtYlpFPsQ=\",\"fileLength\":\"11920\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"NzceMQDNSbjQxJmjc7MhqCtSS9XPOL4y\\/1cduD8NBpk=\",\"fileEncSha256\":\"GySU8gaVj9gMZUMLknXShY0mi05w\\/3I7LiPAFtpv33M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633440175_25909611242039721_5213315545795467784_n.enc?ccb=11-4&oh=01_Q5Aa3wEtfKIqclzliO-NpPlS6q3Icuw0YX8ibGQC-VhA42nMqQ&oe=69B6846A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986786\",\"waveform\":\"BjVIVVksRUpDODwlS0g8TDcrTlMrO05DISYoIxwYPjccPkQ\\/KDxCNTAyLiklJSUgKCIiIyE8Q0U\\/Sz89NC4\\/NQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T1ehgBHmpxhkRoZK13Lzg2T6lHzJDFBeQLzwabAgbjE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986791,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:31'),
(8735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:31'),
(8736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:32'),
(8737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:32'),
(8738, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:31.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:32'),
(8739, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:33.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:34'),
(8740, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:33.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:34'),
(8741, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:37.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:37'),
(8742, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:37.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:37'),
(8743, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:37.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:38'),
(8744, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5A6D2FD96AEDC16231956D48B24962\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635033724_1688832982089314_9074548539188362440_n.enc?ccb=11-4&oh=01_Q5Aa3wGiSCHM5SpdZeu7SEGM9N7W0Vd4_XwdkhRjnNOy5O3ICg&oe=69B68F08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ikPNXdGEqXk8qiqkwZxtSg9hyQ1aykjFv+gjmXRzvXs=\",\"fileLength\":\"7363\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"+bmrTagD7GDgruGHefaGP3ddqr1Wrg\\/qA1BJpvZtEvg=\",\"fileEncSha256\":\"\\/\\/PEhpW1Coag1tW4DgSPi49hV5QIxqnXIqOUme7xCoQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635033724_1688832982089314_9074548539188362440_n.enc?ccb=11-4&oh=01_Q5Aa3wGiSCHM5SpdZeu7SEGM9N7W0Vd4_XwdkhRjnNOy5O3ICg&oe=69B68F08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986795\",\"waveform\":\"HCAoMzY+R0Q5LzRKVkUjJ2JfXDkvNklUV0wzKz1ALyUnKCMZN0RQXFtLMSk+Qj4iJiY0JDIxMjYsHSc9Ny8qJQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oTcz4TC5Pe\\/TY\\/2aQvvwzwze4UDWV5vWGV8jLcxT0GQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986797,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:37.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:38'),
(8745, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:37.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:38'),
(8746, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5A6D2FD96AEDC16231956D48B24962\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635033724_1688832982089314_9074548539188362440_n.enc?ccb=11-4&oh=01_Q5Aa3wGiSCHM5SpdZeu7SEGM9N7W0Vd4_XwdkhRjnNOy5O3ICg&oe=69B68F08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ikPNXdGEqXk8qiqkwZxtSg9hyQ1aykjFv+gjmXRzvXs=\",\"fileLength\":\"7363\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"+bmrTagD7GDgruGHefaGP3ddqr1Wrg\\/qA1BJpvZtEvg=\",\"fileEncSha256\":\"\\/\\/PEhpW1Coag1tW4DgSPi49hV5QIxqnXIqOUme7xCoQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635033724_1688832982089314_9074548539188362440_n.enc?ccb=11-4&oh=01_Q5Aa3wGiSCHM5SpdZeu7SEGM9N7W0Vd4_XwdkhRjnNOy5O3ICg&oe=69B68F08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986795\",\"waveform\":\"HCAoMzY+R0Q5LzRKVkUjJ2JfXDkvNklUV0wzKz1ALyUnKCMZN0RQXFtLMSk+Qj4iJiY0JDIxMjYsHSc9Ny8qJQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oTcz4TC5Pe\\/TY\\/2aQvvwzwze4UDWV5vWGV8jLcxT0GQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986797,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:37.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:38'),
(8747, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:38.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:38'),
(8748, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:38.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:39'),
(8749, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:38.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:39'),
(8750, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:38.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:40'),
(8751, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:40.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:40'),
(8752, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:40.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:40'),
(8753, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627838624_1245201041044022_7487426378311836830_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhJYwUbligvZpam4LSWVKZXZlZZnhD5UIi4VgqafK6MA&oe=699C31EF&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555591314690@s.whatsapp.net\",\"pushName\":\"Mauricio4690 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:41.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:41'),
(8754, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627838624_1245201041044022_7487426378311836830_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhJYwUbligvZpam4LSWVKZXZlZZnhD5UIi4VgqafK6MA&oe=699C31EF&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555591314690@s.whatsapp.net\",\"pushName\":\"Mauricio4690 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:41.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:41'),
(8755, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:52'),
(8756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACCCA47C96A56695F8F852B19F0C1774\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635035249_748097278078709_2327239487999807128_n.enc?ccb=11-4&oh=01_Q5Aa3wEopwbm-tHgOEcEEKRm4Eu98GGvTlflUe_M_Q53k2kMCA&oe=69B687C6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"MY6iu+cDMCVoDI2M43mBOx3uQVH4zTJ++FZStlOf+uE=\",\"fileLength\":\"55429\",\"height\":900,\"width\":1600,\"mediaKey\":\"LIf6rWxQGxj\\/iBv3J\\/M7A+LjueHSwyU0RbkzLAXyMjY=\",\"fileEncSha256\":\"xxv4Vz\\/0aOrzP7bnwSU92vBk5V36Xc2fPQAeZFrcu28=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635035249_748097278078709_2327239487999807128_n.enc?ccb=11-4&oh=01_Q5Aa3wEopwbm-tHgOEcEEKRm4Eu98GGvTlflUe_M_Q53k2kMCA&oe=69B687C6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986811\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAOXl6l2p5QYApsxZ1L2vE6YJNmwdeZVlKZ1oDmCgwBVrhz1\\/\\/8QAIhAAAQQBBAIDAAAAAAAAAAAAAQACAxEEEBIgMRQiUXKC\\/9oACAEBAAE\\/AIWMiiM8h+rUxkmZOsvJEbPHhd6DvjShb5cu+UUwdBZUrMW44DRPaJvSgelsRjIFqlNmxxxARflOcXEk6AK6W\\/5RdYpUnta82AjGQaRjcODQqpRqTpAmuDEF\\/8QAGREAAgMBAAAAAAAAAAAAAAAAASAAAhEx\\/9oACAECAQE\\/ACU17dn\\/xAAVEQEBAAAAAAAAAAAAAAAAAAAwsf\\/aAAgBAwEBPwCp\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"bW5WxmEuQBQ1LDtS+aSr8JZh6xyxxyShV+66AJOqCXayPSDDOyDBTA==\",\"scanLengths\":[9804,19816,7538,18271],\"midQualityFileSha256\":\"MQkf1iS3hkVgYNoqA4ECnVs4M3Wy+509GIfCakxuTEA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"m182vBR\\/GiSSz1yag7nznOBruonbS1\\/wS6K39EWhC1Q=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770986812,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:52'),
(8757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:52'),
(8758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACCCA47C96A56695F8F852B19F0C1774\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635035249_748097278078709_2327239487999807128_n.enc?ccb=11-4&oh=01_Q5Aa3wEopwbm-tHgOEcEEKRm4Eu98GGvTlflUe_M_Q53k2kMCA&oe=69B687C6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"MY6iu+cDMCVoDI2M43mBOx3uQVH4zTJ++FZStlOf+uE=\",\"fileLength\":\"55429\",\"height\":900,\"width\":1600,\"mediaKey\":\"LIf6rWxQGxj\\/iBv3J\\/M7A+LjueHSwyU0RbkzLAXyMjY=\",\"fileEncSha256\":\"xxv4Vz\\/0aOrzP7bnwSU92vBk5V36Xc2fPQAeZFrcu28=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635035249_748097278078709_2327239487999807128_n.enc?ccb=11-4&oh=01_Q5Aa3wEopwbm-tHgOEcEEKRm4Eu98GGvTlflUe_M_Q53k2kMCA&oe=69B687C6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986811\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAOXl6l2p5QYApsxZ1L2vE6YJNmwdeZVlKZ1oDmCgwBVrhz1\\/\\/8QAIhAAAQQBBAIDAAAAAAAAAAAAAQACAxEEEBIgMRQiUXKC\\/9oACAEBAAE\\/AIWMiiM8h+rUxkmZOsvJEbPHhd6DvjShb5cu+UUwdBZUrMW44DRPaJvSgelsRjIFqlNmxxxARflOcXEk6AK6W\\/5RdYpUnta82AjGQaRjcODQqpRqTpAmuDEF\\/8QAGREAAgMBAAAAAAAAAAAAAAAAASAAAhEx\\/9oACAECAQE\\/ACU17dn\\/xAAVEQEBAAAAAAAAAAAAAAAAAAAwsf\\/aAAgBAwEBPwCp\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"bW5WxmEuQBQ1LDtS+aSr8JZh6xyxxyShV+66AJOqCXayPSDDOyDBTA==\",\"scanLengths\":[9804,19816,7538,18271],\"midQualityFileSha256\":\"MQkf1iS3hkVgYNoqA4ECnVs4M3Wy+509GIfCakxuTEA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"m182vBR\\/GiSSz1yag7nznOBruonbS1\\/wS6K39EWhC1Q=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770986812,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:52'),
(8759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:52'),
(8760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:53'),
(8761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:46:53'),
(8762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:46:52.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:46:53'),
(8763, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:35.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:47:35'),
(8764, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:35.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:47:35'),
(8765, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACB98C7134AA4EBACF7D9C06C32FE8E6\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588655341_2178887766182641_4928917486952096192_n.enc?ccb=11-4&oh=01_Q5Aa3wH4thL4EZMa_oc0gN7Ea97OQMivO4DlNqOIgTFSuJ2CVQ&oe=69B67919&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"J1eERP2jlPM9qvDeqpuabcvmK\\/OonQFaQhoE65l7i1E=\",\"fileLength\":\"82967\",\"height\":900,\"width\":1600,\"mediaKey\":\"3HUR9+wSE36qU1eqyWOTrKExoF1Gt2IwSG20wCk4eZQ=\",\"fileEncSha256\":\"PMRVbvPVzUSZxfa8e3zhaPhfddSQ6MMxGzF5luAryh0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588655341_2178887766182641_4928917486952096192_n.enc?ccb=11-4&oh=01_Q5Aa3wH4thL4EZMa_oc0gN7Ea97OQMivO4DlNqOIgTFSuJ2CVQ&oe=69B67919&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986855\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAvAAEAAwEBAAAAAAAAAAAAAAADAAIFAQQBAAMBAQAAAAAAAAAAAAAAAAECAwQA\\/9oADAMBAAIQAxAAAADD7a89pcuZTfpl3bP6QLiL7zYm1zM08rpxD9AYHO4inJDqIZDG6SChpIIf\\/8QAJRAAAgICAQMDBQAAAAAAAAAAAQIAAwQRIQUQMRITUxQVMkNR\\/9oACAEBAAE\\/ABWIK1hrGvMVCSBvyYOkP6QVvn2nM+RZfi5GKAzsCCZ6u7HiBp9XkfK0XOyR+0y7KuuCq77E3MbHttG1AmRW1TqLAJX0+zIQuhGpYpRiv8MEKwg9qrjyUfQJmQfcYFn2YMi2lCtdvEc7YncXkzgRyNQRWKrwYCW5MZmGxuGV+RG\\/KN47f\\/\\/EABoRAQEAAgMAAAAAAAAAAAAAAAEAAhEQITH\\/2gAIAQIBAT8A2xu6sgnhZmJ9m\\/\\/EAB0RAAMBAAIDAQAAAAAAAAAAAAABAhEDMhIxUoH\\/2gAIAQMBAT8AUR8lzCeYeBU4ydbKb16ccpnKsojsX7ZHX9OXsf\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"ZXoYuTSpqetgEQCrgafv1capzvmxxR0BYRJUe8PpPpodIHiMWZpI4g==\",\"scanLengths\":[12738,33053,10433,26743],\"midQualityFileSha256\":\"Lxe3WRY4+SY5HWTEI8S2zgCIstVYA51ehhpgD6JZE8c=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AWUyA0G56oJPMoPnCjzDxazWAIITNDRkn2iEyThtTHU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770986855,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:35.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:47:36'),
(8766, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACB98C7134AA4EBACF7D9C06C32FE8E6\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588655341_2178887766182641_4928917486952096192_n.enc?ccb=11-4&oh=01_Q5Aa3wH4thL4EZMa_oc0gN7Ea97OQMivO4DlNqOIgTFSuJ2CVQ&oe=69B67919&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"J1eERP2jlPM9qvDeqpuabcvmK\\/OonQFaQhoE65l7i1E=\",\"fileLength\":\"82967\",\"height\":900,\"width\":1600,\"mediaKey\":\"3HUR9+wSE36qU1eqyWOTrKExoF1Gt2IwSG20wCk4eZQ=\",\"fileEncSha256\":\"PMRVbvPVzUSZxfa8e3zhaPhfddSQ6MMxGzF5luAryh0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588655341_2178887766182641_4928917486952096192_n.enc?ccb=11-4&oh=01_Q5Aa3wH4thL4EZMa_oc0gN7Ea97OQMivO4DlNqOIgTFSuJ2CVQ&oe=69B67919&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986855\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAvAAEAAwEBAAAAAAAAAAAAAAADAAIFAQQBAAMBAQAAAAAAAAAAAAAAAAECAwQA\\/9oADAMBAAIQAxAAAADD7a89pcuZTfpl3bP6QLiL7zYm1zM08rpxD9AYHO4inJDqIZDG6SChpIIf\\/8QAJRAAAgICAQMDBQAAAAAAAAAAAQIAAwQRIQUQMRITUxQVMkNR\\/9oACAEBAAE\\/ABWIK1hrGvMVCSBvyYOkP6QVvn2nM+RZfi5GKAzsCCZ6u7HiBp9XkfK0XOyR+0y7KuuCq77E3MbHttG1AmRW1TqLAJX0+zIQuhGpYpRiv8MEKwg9qrjyUfQJmQfcYFn2YMi2lCtdvEc7YncXkzgRyNQRWKrwYCW5MZmGxuGV+RG\\/KN47f\\/\\/EABoRAQEAAgMAAAAAAAAAAAAAAAEAAhEQITH\\/2gAIAQIBAT8A2xu6sgnhZmJ9m\\/\\/EAB0RAAMBAAIDAQAAAAAAAAAAAAABAhEDMhIxUoH\\/2gAIAQMBAT8AUR8lzCeYeBU4ydbKb16ccpnKsojsX7ZHX9OXsf\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"ZXoYuTSpqetgEQCrgafv1capzvmxxR0BYRJUe8PpPpodIHiMWZpI4g==\",\"scanLengths\":[12738,33053,10433,26743],\"midQualityFileSha256\":\"Lxe3WRY4+SY5HWTEI8S2zgCIstVYA51ehhpgD6JZE8c=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AWUyA0G56oJPMoPnCjzDxazWAIITNDRkn2iEyThtTHU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770986855,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:35.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:47:36'),
(8767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:35.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:47:36'),
(8768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:36.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:47:36'),
(8769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:35.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:47:36'),
(8770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:47:36.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:47:37'),
(8771, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:22.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:22'),
(8772, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593298013_1480665236912953_5319752675153457834_n.enc?ccb=11-4&oh=01_Q5Aa3wF2fC52Fow8dBH7yTJPSoFutyCvPLZtzKXtM2PtnYTw9g&oe=69B6A22B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KJRxfxU6kWZ4c+aM+6GlAHKGYJDVXaT7FIb2dpLyrFU=\",\"fileLength\":\"25680\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"IDMMqml7uZHOfqVZs\\/wLi2ZSAZ9\\/M+VWTF6I0kIsojg=\",\"fileEncSha256\":\"tDtUrsHfFe3QZNzsfuypnLXPZ7y4tyhInvfdhKF98c8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593298013_1480665236912953_5319752675153457834_n.enc?ccb=11-4&oh=01_Q5Aa3wF2fC52Fow8dBH7yTJPSoFutyCvPLZtzKXtM2PtnYTw9g&oe=69B6A22B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986892\",\"waveform\":\"AAAAAAAAAAAAAAAbPzs+O0tICAgBQwAAAAApFyVMRTw1NBpGODtIFEc8TDA7OUxTTkgoUEM\\/Oz5HRUE\\/DAABBQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986902,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:22.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:22'),
(8773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:22.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:23'),
(8774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:22.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:23'),
(8775, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593298013_1480665236912953_5319752675153457834_n.enc?ccb=11-4&oh=01_Q5Aa3wF2fC52Fow8dBH7yTJPSoFutyCvPLZtzKXtM2PtnYTw9g&oe=69B6A22B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KJRxfxU6kWZ4c+aM+6GlAHKGYJDVXaT7FIb2dpLyrFU=\",\"fileLength\":\"25680\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"IDMMqml7uZHOfqVZs\\/wLi2ZSAZ9\\/M+VWTF6I0kIsojg=\",\"fileEncSha256\":\"tDtUrsHfFe3QZNzsfuypnLXPZ7y4tyhInvfdhKF98c8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593298013_1480665236912953_5319752675153457834_n.enc?ccb=11-4&oh=01_Q5Aa3wF2fC52Fow8dBH7yTJPSoFutyCvPLZtzKXtM2PtnYTw9g&oe=69B6A22B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986892\",\"waveform\":\"AAAAAAAAAAAAAAAbPzs+O0tICAgBQwAAAAApFyVMRTw1NBpGODtIFEc8TDA7OUxTTkgoUEM\\/Oz5HRUE\\/DAABBQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986902,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:22.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:23'),
(8776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:22.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:23'),
(8777, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986903740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:23.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:23'),
(8778, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770986903740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:23.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:23'),
(8779, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986913919,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:33.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:34'),
(8780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986913919,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:33.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:34'),
(8781, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986915341,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:35.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:35'),
(8782, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A566083968C4FF1D5A2A1F6F6E893439\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986915341,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:35.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:35'),
(8783, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:49.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:49'),
(8784, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:49.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:49'),
(8785, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:50.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:50'),
(8786, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC31EE571C77FA58BF618B54283CA2B9\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ta ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sSDYYTcYoAXyt8KL759kOfAV8ip9IVGY7RIQC29qBEE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770986930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:50.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:50'),
(8787, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:50.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:51'),
(8788, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC31EE571C77FA58BF618B54283CA2B9\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ta ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sSDYYTcYoAXyt8KL759kOfAV8ip9IVGY7RIQC29qBEE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770986930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:50.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:51'),
(8789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:51.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:51'),
(8790, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:51.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:51');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8791, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:51.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:48:51'),
(8792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:48:51.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:48:52'),
(8793, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5C64DBD47D28185112AB0ED0B6A5A99\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635073144_1994798844418104_6462908553091137423_n.enc?ccb=11-4&oh=01_Q5Aa3wETv5Qb8Z-GZB9r4ToJOf5vCrNzYE2LkMFR6dDYakeBtg&oe=69B68BBE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MVTHb8U5rRjgShavg5uFK3xCfFt4WiKw9y\\/G24YKSsw=\",\"fileLength\":\"44108\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"u9DAK3BCAkpt+85meQda5Jy3XqD4DhYkC1AEfc6hNtk=\",\"fileEncSha256\":\"SyuNMpxpxzjD2ZG\\/Ab\\/\\/u2HY9a3STur0rM78HJb4V7Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635073144_1994798844418104_6462908553091137423_n.enc?ccb=11-4&oh=01_Q5Aa3wETv5Qb8Z-GZB9r4ToJOf5vCrNzYE2LkMFR6dDYakeBtg&oe=69B68BBE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986934\",\"waveform\":\"AAEuX0xWTVVKORQAIElJS1ZZUk0IHS48VEgtCwAAGC9WUFFKTioHBDgwW0AqVFRbSks9TUpbVjAfLFdGVEUtVQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986952,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:12'),
(8794, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5C64DBD47D28185112AB0ED0B6A5A99\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635073144_1994798844418104_6462908553091137423_n.enc?ccb=11-4&oh=01_Q5Aa3wETv5Qb8Z-GZB9r4ToJOf5vCrNzYE2LkMFR6dDYakeBtg&oe=69B68BBE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MVTHb8U5rRjgShavg5uFK3xCfFt4WiKw9y\\/G24YKSsw=\",\"fileLength\":\"44108\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"u9DAK3BCAkpt+85meQda5Jy3XqD4DhYkC1AEfc6hNtk=\",\"fileEncSha256\":\"SyuNMpxpxzjD2ZG\\/Ab\\/\\/u2HY9a3STur0rM78HJb4V7Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635073144_1994798844418104_6462908553091137423_n.enc?ccb=11-4&oh=01_Q5Aa3wETv5Qb8Z-GZB9r4ToJOf5vCrNzYE2LkMFR6dDYakeBtg&oe=69B68BBE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986934\",\"waveform\":\"AAEuX0xWTVVKORQAIElJS1ZZUk0IHS48VEgtCwAAGC9WUFFKTioHBDgwW0AqVFRbSks9TUpbVjAfLFdGVEUtVQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986952,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:12'),
(8795, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:12'),
(8796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:13'),
(8797, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:13'),
(8798, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5C64DBD47D28185112AB0ED0B6A5A99\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986952839,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:13'),
(8799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:13'),
(8800, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5C64DBD47D28185112AB0ED0B6A5A99\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986952839,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:12.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:13'),
(8801, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:17'),
(8802, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A551559F03A98D2AAD3F53821DFA0E0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633953511_1725292618447917_8050433592669538490_n.enc?ccb=11-4&oh=01_Q5Aa3wGHzbu3kEH-Q7BJ1A2g8HovyuKPqoyOzqksnFDVlmyN2w&oe=69B69685&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wrHlN1IJE07b08c9monELSG+fd8ZDYVHu4cFTcr+DoQ=\",\"fileLength\":\"6781\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"v5PBmhzbQjdltUped7oobuuNsDdF08xnVUdxT72bfAI=\",\"fileEncSha256\":\"ZSUCkhgoXPXtg8rzcoepXNXha5QFxGIzqZjP3b11m60=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633953511_1725292618447917_8050433592669538490_n.enc?ccb=11-4&oh=01_Q5Aa3wGHzbu3kEH-Q7BJ1A2g8HovyuKPqoyOzqksnFDVlmyN2w&oe=69B69685&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986955\",\"waveform\":\"AAAAAAcTHCAiKSkwRFdcW2JfX15JN0BNTTImLUNRT01MQUZJTDASSkpKSkZFRUJFRTU5RUlGRENTT1dTORYAAg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986957,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:17'),
(8803, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:17'),
(8804, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A551559F03A98D2AAD3F53821DFA0E0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633953511_1725292618447917_8050433592669538490_n.enc?ccb=11-4&oh=01_Q5Aa3wGHzbu3kEH-Q7BJ1A2g8HovyuKPqoyOzqksnFDVlmyN2w&oe=69B69685&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wrHlN1IJE07b08c9monELSG+fd8ZDYVHu4cFTcr+DoQ=\",\"fileLength\":\"6781\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"v5PBmhzbQjdltUped7oobuuNsDdF08xnVUdxT72bfAI=\",\"fileEncSha256\":\"ZSUCkhgoXPXtg8rzcoepXNXha5QFxGIzqZjP3b11m60=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633953511_1725292618447917_8050433592669538490_n.enc?ccb=11-4&oh=01_Q5Aa3wGHzbu3kEH-Q7BJ1A2g8HovyuKPqoyOzqksnFDVlmyN2w&oe=69B69685&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986955\",\"waveform\":\"AAAAAAcTHCAiKSkwRFdcW2JfX15JN0BNTTImLUNRT01MQUZJTDASSkpKSkZFRUJFRTU5RUlGRENTT1dTORYAAg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770986957,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:17'),
(8805, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A551559F03A98D2AAD3F53821DFA0E0B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986957540,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:17'),
(8806, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A551559F03A98D2AAD3F53821DFA0E0B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770986957540,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:18'),
(8807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:18'),
(8808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:17.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:18'),
(8809, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5C64DBD47D28185112AB0ED0B6A5A99\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986965006,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:25.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:25'),
(8810, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5C64DBD47D28185112AB0ED0B6A5A99\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986965006,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:25.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:25'),
(8811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:32.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:32'),
(8812, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:32.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:32'),
(8813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A551559F03A98D2AAD3F53821DFA0E0B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986982673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:42.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:42'),
(8814, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A551559F03A98D2AAD3F53821DFA0E0B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770986982673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:42.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:42'),
(8815, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:42.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:43'),
(8816, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:42.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:43'),
(8817, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:45.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:45'),
(8818, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC2D1297E2B0CFBE391D123A42F1F5C6\"},\"pushName\":\"Inis Pelho\",\"message\":{\"conversation\":\"Continua a mesma coisa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XLa6hpBsyNLwYAEuuEPU5V8ViWGjLKG3Wiw82LHngcA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770986985,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:45.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:45'),
(8819, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:45.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:46'),
(8820, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC2D1297E2B0CFBE391D123A42F1F5C6\"},\"pushName\":\"Inis Pelho\",\"message\":{\"conversation\":\"Continua a mesma coisa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XLa6hpBsyNLwYAEuuEPU5V8ViWGjLKG3Wiw82LHngcA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770986985,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:45.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:46'),
(8821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:46.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:46'),
(8822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:46.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:46'),
(8823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:46.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:46'),
(8824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:46.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:47'),
(8825, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:51.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:49:51'),
(8826, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:49:51.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:49:51'),
(8827, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:01.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:01'),
(8828, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:01.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:01'),
(8829, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:11.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:12'),
(8830, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:11.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:12'),
(8831, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:14.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:14'),
(8832, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:14.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:14'),
(8833, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:15'),
(8834, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:15'),
(8835, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:15'),
(8836, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC6E64F07A88EB06AF36D19D039A7BAC\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635680326_2679883592410734_1332547999508255947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6106icFJzxB7l0aBCdGKURURnmP5h-i_JuZ_s2RlfsA&oe=69B69100&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yEUL7LvUbhlDzc+hxiZs\\/AYZWEQqNpaYYcAMbEK6F6w=\",\"fileLength\":\"52779\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"x+CPCFxjjFXiyDYpuJ+Wcmo7fsoIZNqJOpbjjzyJr9w=\",\"fileEncSha256\":\"+AB0Lcqgx5Uerpzxv8jnqVNgPFRW7P6AqfO\\/VS9G3vE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635680326_2679883592410734_1332547999508255947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6106icFJzxB7l0aBCdGKURURnmP5h-i_JuZ_s2RlfsA&oe=69B69100&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986993\",\"waveform\":\"AClNH0BUQik4HR9PUU8\\/JBsvH0REKhcwIl8NEztMJUsyNj8YQBsoFV5IWyEaURweQUozNzgbUlkWTiMvNC5ROA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kKz6TJ8nJ7hugMOIEJJVAE4a3R\\/h50q7\\/EE1Q3J4M14=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:15'),
(8837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:15'),
(8838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC6E64F07A88EB06AF36D19D039A7BAC\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635680326_2679883592410734_1332547999508255947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6106icFJzxB7l0aBCdGKURURnmP5h-i_JuZ_s2RlfsA&oe=69B69100&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yEUL7LvUbhlDzc+hxiZs\\/AYZWEQqNpaYYcAMbEK6F6w=\",\"fileLength\":\"52779\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"x+CPCFxjjFXiyDYpuJ+Wcmo7fsoIZNqJOpbjjzyJr9w=\",\"fileEncSha256\":\"+AB0Lcqgx5Uerpzxv8jnqVNgPFRW7P6AqfO\\/VS9G3vE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635680326_2679883592410734_1332547999508255947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6106icFJzxB7l0aBCdGKURURnmP5h-i_JuZ_s2RlfsA&oe=69B69100&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770986993\",\"waveform\":\"AClNH0BUQik4HR9PUU8\\/JBsvH0REKhcwIl8NEztMJUsyNj8YQBsoFV5IWyEaURweQUozNzgbUlkWTiMvNC5ROA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kKz6TJ8nJ7hugMOIEJJVAE4a3R\\/h50q7\\/EE1Q3J4M14=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:16'),
(8839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:16'),
(8840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:15.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:17'),
(8841, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A53E2BF27723757363F483C1A16E0AB3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/41105619_1240427188031656_4532819855328582303_n.enc?ccb=11-4&oh=01_Q5Aa3wGoScPVOR-EwWaSGH4-8hKDR9zk0xYjpooAnJKY4c_vjA&oe=69B67B9F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"S08vnwgPqZGoPxhl1AQ7NNqwN48qPzUh7iX6pOP+3tc=\",\"fileLength\":\"4132\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"8HOlG+tURytTW2xyCnhcr57C54FJH3vWm4p8JycmyNY=\",\"fileEncSha256\":\"z5OrrO6EW0X5WHUxrciMjfv\\/aX2HOJu6SSc4gETJWEI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/41105619_1240427188031656_4532819855328582303_n.enc?ccb=11-4&oh=01_Q5Aa3wGoScPVOR-EwWaSGH4-8hKDR9zk0xYjpooAnJKY4c_vjA&oe=69B67B9F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987029\",\"waveform\":\"AAAAAAAAAAAAACJKTVFSUEpNV1lZVVBIQkM+MiomN05RUlJQSUZIR0VHSUxOTEtLTE5NTE9TUlJSUk9LRzsrKQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987030,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:30'),
(8842, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:30'),
(8843, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:30'),
(8844, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A53E2BF27723757363F483C1A16E0AB3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/41105619_1240427188031656_4532819855328582303_n.enc?ccb=11-4&oh=01_Q5Aa3wGoScPVOR-EwWaSGH4-8hKDR9zk0xYjpooAnJKY4c_vjA&oe=69B67B9F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"S08vnwgPqZGoPxhl1AQ7NNqwN48qPzUh7iX6pOP+3tc=\",\"fileLength\":\"4132\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"8HOlG+tURytTW2xyCnhcr57C54FJH3vWm4p8JycmyNY=\",\"fileEncSha256\":\"z5OrrO6EW0X5WHUxrciMjfv\\/aX2HOJu6SSc4gETJWEI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/41105619_1240427188031656_4532819855328582303_n.enc?ccb=11-4&oh=01_Q5Aa3wGoScPVOR-EwWaSGH4-8hKDR9zk0xYjpooAnJKY4c_vjA&oe=69B67B9F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987029\",\"waveform\":\"AAAAAAAAAAAAACJKTVFSUEpNV1lZVVBIQkM+MiomN05RUlJQSUZIR0VHSUxOTEtLTE5NTE9TUlJSUk9LRzsrKQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987030,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:30'),
(8845, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:30'),
(8846, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A53E2BF27723757363F483C1A16E0AB3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770987030568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:31'),
(8847, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A53E2BF27723757363F483C1A16E0AB3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770987030568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:31'),
(8848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:30.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:31'),
(8849, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:40'),
(8850, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A5F30384514D41303C644FD54EBBBD0C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635126069_877504841875818_9067137540863491796_n.enc?ccb=11-4&oh=01_Q5Aa3wFV-lDqEKWm47ZUpCQneGirlaygdxlAlvrmuN6A1U121Q&oe=69B6A186&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YSTkwFNiw115F3eZMSjFuxRznsAWpJlL5znpdMN8Vmc=\",\"fileLength\":\"10150\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"bwthimpqzQmaNxy2J0PgJkQ8DFsTp2bqgbvPmHHgGmQ=\",\"fileEncSha256\":\"y+oonswtz3BydYsUR2AcXbvFgGBnKN5l4mAz0UDkXTg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635126069_877504841875818_9067137540863491796_n.enc?ccb=11-4&oh=01_Q5Aa3wFV-lDqEKWm47ZUpCQneGirlaygdxlAlvrmuN6A1U121Q&oe=69B6A186&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987036\",\"waveform\":\"AAAAHiE0SCg6WFdCH0lTT09OOSVPV0MkOEBMPwkvRDcbQEMvQE49RDxILEJSPiRKPjk6EEQoRk1LTEFBSFFMRg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987040,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:40'),
(8851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:40'),
(8852, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A5F30384514D41303C644FD54EBBBD0C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635126069_877504841875818_9067137540863491796_n.enc?ccb=11-4&oh=01_Q5Aa3wFV-lDqEKWm47ZUpCQneGirlaygdxlAlvrmuN6A1U121Q&oe=69B6A186&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YSTkwFNiw115F3eZMSjFuxRznsAWpJlL5znpdMN8Vmc=\",\"fileLength\":\"10150\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"bwthimpqzQmaNxy2J0PgJkQ8DFsTp2bqgbvPmHHgGmQ=\",\"fileEncSha256\":\"y+oonswtz3BydYsUR2AcXbvFgGBnKN5l4mAz0UDkXTg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635126069_877504841875818_9067137540863491796_n.enc?ccb=11-4&oh=01_Q5Aa3wFV-lDqEKWm47ZUpCQneGirlaygdxlAlvrmuN6A1U121Q&oe=69B6A186&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987036\",\"waveform\":\"AAAAHiE0SCg6WFdCH0lTT09OOSVPV0MkOEBMPwkvRDcbQEMvQE49RDxILEJSPiRKPjk6EEQoRk1LTEFBSFFMRg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987040,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:40'),
(8853, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5F30384514D41303C644FD54EBBBD0C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770987040546,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:40'),
(8854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:41'),
(8855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:41'),
(8856, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5F30384514D41303C644FD54EBBBD0C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770987040546,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:40.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:42'),
(8857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5F30384514D41303C644FD54EBBBD0C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770987048237,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:48.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:48'),
(8858, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A5F30384514D41303C644FD54EBBBD0C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770987048237,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:48.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A53E2BF27723757363F483C1A16E0AB3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770987057597,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:57.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:50:57'),
(8860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A53E2BF27723757363F483C1A16E0AB3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770987057597,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:50:57.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:50:57'),
(8861, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:05.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:05'),
(8862, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:05.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:05'),
(8863, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:06'),
(8864, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5CD94B9A9A4216078B3901658DB142\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x0R6F0jjNag04vxY+Alv8HAx0y1V4J9I7m2v55PWEdw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770987065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:06'),
(8865, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:06'),
(8866, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5CD94B9A9A4216078B3901658DB142\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x0R6F0jjNag04vxY+Alv8HAx0y1V4J9I7m2v55PWEdw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770987065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:06'),
(8867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:06'),
(8868, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:07'),
(8869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:07'),
(8870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:06.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:07'),
(8871, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:37.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:37'),
(8872, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:37.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:37'),
(8873, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:45.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:45'),
(8874, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:45.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:46'),
(8875, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:46.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:46'),
(8876, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:46.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:47'),
(8877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"ACE25CFDDE7A931902D606F2ECA37ACA\"},\"pushName\":\"Inis Pelho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595821554_783817087480700_6180790736398250248_n.enc?ccb=11-4&oh=01_Q5Aa3wFAPj7rNd-AxEyRUrU3DaT5bVZnYUhN9Rc_9lQlBtjgbA&oe=69B676DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"6BxOT10FwBsm45FL5KgQhKL1QXnM1EM1XG53zTtdBjs=\",\"fileLength\":\"18392\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"gCMvUCxCOLaj616zIVhNrtEJteJfmCT48Xrysvcdpt4=\",\"fileEncSha256\":\"xoxGtDaHLJ2kZtyM3MsC3FY96yxbcXCusl3KW5YBIE0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595821554_783817087480700_6180790736398250248_n.enc?ccb=11-4&oh=01_Q5Aa3wFAPj7rNd-AxEyRUrU3DaT5bVZnYUhN9Rc_9lQlBtjgbA&oe=69B676DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987099\",\"waveform\":\"AAAAAAAAAAAAAAAQSkolQk5PLSQjKjw9SiMVO0JABAAAAAA4QSY0MEQySDs5MwYKAAAANEMSQytJMyQvNwUAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Oi5sIqs4BCz4ZbZr2pIqu6WbT8w2xvEf2gGyUB3kwrg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:46.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:47'),
(8878, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"ACE25CFDDE7A931902D606F2ECA37ACA\"},\"pushName\":\"Inis Pelho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595821554_783817087480700_6180790736398250248_n.enc?ccb=11-4&oh=01_Q5Aa3wFAPj7rNd-AxEyRUrU3DaT5bVZnYUhN9Rc_9lQlBtjgbA&oe=69B676DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"6BxOT10FwBsm45FL5KgQhKL1QXnM1EM1XG53zTtdBjs=\",\"fileLength\":\"18392\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"gCMvUCxCOLaj616zIVhNrtEJteJfmCT48Xrysvcdpt4=\",\"fileEncSha256\":\"xoxGtDaHLJ2kZtyM3MsC3FY96yxbcXCusl3KW5YBIE0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595821554_783817087480700_6180790736398250248_n.enc?ccb=11-4&oh=01_Q5Aa3wFAPj7rNd-AxEyRUrU3DaT5bVZnYUhN9Rc_9lQlBtjgbA&oe=69B676DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987099\",\"waveform\":\"AAAAAAAAAAAAAAAQSkolQk5PLSQjKjw9SiMVO0JABAAAAAA4QSY0MEQySDs5MwYKAAAANEMSQytJMyQvNwUAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Oi5sIqs4BCz4ZbZr2pIqu6WbT8w2xvEf2gGyUB3kwrg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:46.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:47'),
(8879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:47.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:47'),
(8880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:47.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:51:47'),
(8881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:47.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:48'),
(8882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:51:47.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:51:48'),
(8883, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:08.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:52:09'),
(8884, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:08.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:52:09'),
(8885, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:14.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:52:14'),
(8886, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:14.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:52:14'),
(8887, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:52:15'),
(8888, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC6D9B355A9553A9187DF90820B4ABD4\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635391060_744104395439723_4216862257899373935_n.enc?ccb=11-4&oh=01_Q5Aa3wHOhSOv-MSCPd3kElUXoF-CXRpGCC2RLDvBrs_Wct12fA&oe=69B674CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lvapVcopajwiEX+gmkiDSxaQBWAspRBt2+gOGBYo+PM=\",\"fileLength\":\"12715\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"I08DDULu1Ki8E0+w44hJAHCJtTBSqHz2xqEUuDhkzGw=\",\"fileEncSha256\":\"j+34SNsRFa3vnfMDKYO2jzxcGqZFBcpnbqmCChDhHoA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635391060_744104395439723_4216862257899373935_n.enc?ccb=11-4&oh=01_Q5Aa3wHOhSOv-MSCPd3kElUXoF-CXRpGCC2RLDvBrs_Wct12fA&oe=69B674CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987130\",\"waveform\":\"ABpCR1BAPx5STic7RU06JFJEQg81KwEJQD8pJSMWIjEwREM6L0VRTkw8PT0\\/JDQZSzw4ISdCQS8nMj8uNhEVFg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Zp2X3e3yvWvoX9ym6TH84knve\\/70gaH0C7nedNUOiu0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:52:15'),
(8889, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:52:15'),
(8890, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC6D9B355A9553A9187DF90820B4ABD4\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635391060_744104395439723_4216862257899373935_n.enc?ccb=11-4&oh=01_Q5Aa3wHOhSOv-MSCPd3kElUXoF-CXRpGCC2RLDvBrs_Wct12fA&oe=69B674CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lvapVcopajwiEX+gmkiDSxaQBWAspRBt2+gOGBYo+PM=\",\"fileLength\":\"12715\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"I08DDULu1Ki8E0+w44hJAHCJtTBSqHz2xqEUuDhkzGw=\",\"fileEncSha256\":\"j+34SNsRFa3vnfMDKYO2jzxcGqZFBcpnbqmCChDhHoA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635391060_744104395439723_4216862257899373935_n.enc?ccb=11-4&oh=01_Q5Aa3wHOhSOv-MSCPd3kElUXoF-CXRpGCC2RLDvBrs_Wct12fA&oe=69B674CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987130\",\"waveform\":\"ABpCR1BAPx5STic7RU06JFJEQg81KwEJQD8pJSMWIjEwREM6L0VRTkw8PT0\\/JDQZSzw4ISdCQS8nMj8uNhEVFg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Zp2X3e3yvWvoX9ym6TH84knve\\/70gaH0C7nedNUOiu0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:52:15'),
(8891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:52:15'),
(8892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:52:16'),
(8893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:52:16'),
(8894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFA7SEwIwf27ivWp5t416hnu_MrPTxf-aiBleCduj0DiA&oe=699C22E0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:52:15.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:52:16'),
(8895, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:57:57.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:57:57'),
(8896, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:57:57.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:57:57'),
(8897, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:06.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:58:06'),
(8898, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:06.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:58:07'),
(8899, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:09.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:58:09'),
(8900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:09.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:58:10'),
(8901, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:10.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:58:10'),
(8902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:10.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:58:10'),
(8903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:10.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:58:10'),
(8904, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC18CF918F9B664D97DCD7D27E3EA61A\"},\"pushName\":\"Inis Pelho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/622775679_2935483949995701_5527350975073269024_n.enc?ccb=11-4&oh=01_Q5Aa3wFuWei5t_SjA_8Y9OobTnMyR24no-DgTHPunBDpX5pi9A&oe=69B6819B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"D\\/okXtGYn4WrMvdMpGmKnhdLhkBmYwXbaF1+ODgm2eU=\",\"fileLength\":\"29561\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"rwE90D+0YcAVKHvEjhR2\\/JRZ7djCro0oNUR7e7M7i6c=\",\"fileEncSha256\":\"AXxK0GBXInqJIUg2VfcKeWPhEj5DT5HJWJIqfExBQ9w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/622775679_2935483949995701_5527350975073269024_n.enc?ccb=11-4&oh=01_Q5Aa3wFuWei5t_SjA_8Y9OobTnMyR24no-DgTHPunBDpX5pi9A&oe=69B6819B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987478\",\"waveform\":\"AAAGAAcLC0xNS1JTSk1JTUZWSTo4SyxJACBIRAkAQUhRUU9DRE1GDQAAAAAAEEBNTUxMUz9FRTsVNzwjJABILg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6voZC2zpxRafwHyp5dL1saLQ3uh\\/fzrryP8ZKONTurM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987490,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:10.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:58:10'),
(8905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379776116_909518230414813_4847501749072981287_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpIadvRurHgKsFvXEtD0vp0q-sTwFKekiTykwaepBOtQ&oe=699C27BA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:10.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:58:11'),
(8906, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC18CF918F9B664D97DCD7D27E3EA61A\"},\"pushName\":\"Inis Pelho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/622775679_2935483949995701_5527350975073269024_n.enc?ccb=11-4&oh=01_Q5Aa3wFuWei5t_SjA_8Y9OobTnMyR24no-DgTHPunBDpX5pi9A&oe=69B6819B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"D\\/okXtGYn4WrMvdMpGmKnhdLhkBmYwXbaF1+ODgm2eU=\",\"fileLength\":\"29561\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"rwE90D+0YcAVKHvEjhR2\\/JRZ7djCro0oNUR7e7M7i6c=\",\"fileEncSha256\":\"AXxK0GBXInqJIUg2VfcKeWPhEj5DT5HJWJIqfExBQ9w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/622775679_2935483949995701_5527350975073269024_n.enc?ccb=11-4&oh=01_Q5Aa3wFuWei5t_SjA_8Y9OobTnMyR24no-DgTHPunBDpX5pi9A&oe=69B6819B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987478\",\"waveform\":\"AAAGAAcLC0xNS1JTSk1JTUZWSTo4SyxJACBIRAkAQUhRUU9DRE1GDQAAAAAAEEBNTUxMUz9FRTsVNzwjJABILg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6voZC2zpxRafwHyp5dL1saLQ3uh\\/fzrryP8ZKONTurM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987490,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:10.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:58:11'),
(8907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:11.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:58:11'),
(8908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:58:11.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:58:11'),
(8909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A54975E2B74D08D395CDDD07C8A41F66\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987563495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:23.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:23'),
(8910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A52A2382B276DA41F9C874C4B1CEB335\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987563488,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:23.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:23'),
(8911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A579B00DBB14CBE66D2D6ABC5790ABD3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987563500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:23.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:23'),
(8912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A54975E2B74D08D395CDDD07C8A41F66\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987563495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:23.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:23'),
(8913, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A52A2382B276DA41F9C874C4B1CEB335\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987563488,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:23.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:23'),
(8914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A579B00DBB14CBE66D2D6ABC5790ABD3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987563500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:23.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:24'),
(8915, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:32'),
(8916, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A55CED8EA1863B9A18675794C54B943D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593509308_26559378270335177_8812135075425570122_n.enc?ccb=11-4&oh=01_Q5Aa3wGcGgeQoFud8hOXN_no8gtKu5eTqTZ7g54v7l57GvkvyQ&oe=69B69ECF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Sen3p6DVw4u4zgNhrt+4\\/+ZpmoSZGeG3OGU1QYjPXyo=\",\"fileLength\":\"4739\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"ffZcpCYl9qw\\/63pUeLoVL2Z5775UQuJT2GnFqVt5BO4=\",\"fileEncSha256\":\"riUxa9Xt7+QG5SEXNhUQJ5vovqf1skYzGzHFuW9ASO8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593509308_26559378270335177_8812135075425570122_n.enc?ccb=11-4&oh=01_Q5Aa3wGcGgeQoFud8hOXN_no8gtKu5eTqTZ7g54v7l57GvkvyQ&oe=69B69ECF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987570\",\"waveform\":\"AAACCg0NDhUsO0VJS01IOzUyP0dKT1RQQB8kNSslKDNDQ0RENyM1Q0EzHS5BR0Y\\/RUxKPik0RkJBRUhKRkI\\/Pg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987572,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:32'),
(8917, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:32'),
(8918, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":true,\"id\":\"A55CED8EA1863B9A18675794C54B943D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593509308_26559378270335177_8812135075425570122_n.enc?ccb=11-4&oh=01_Q5Aa3wGcGgeQoFud8hOXN_no8gtKu5eTqTZ7g54v7l57GvkvyQ&oe=69B69ECF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Sen3p6DVw4u4zgNhrt+4\\/+ZpmoSZGeG3OGU1QYjPXyo=\",\"fileLength\":\"4739\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"ffZcpCYl9qw\\/63pUeLoVL2Z5775UQuJT2GnFqVt5BO4=\",\"fileEncSha256\":\"riUxa9Xt7+QG5SEXNhUQJ5vovqf1skYzGzHFuW9ASO8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593509308_26559378270335177_8812135075425570122_n.enc?ccb=11-4&oh=01_Q5Aa3wGcGgeQoFud8hOXN_no8gtKu5eTqTZ7g54v7l57GvkvyQ&oe=69B69ECF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987570\",\"waveform\":\"AAACCg0NDhUsO0VJS01IOzUyP0dKT1RQQB8kNSslKDNDQ0RENyM1Q0EzHS5BR0Y\\/RUxKPik0RkJBRUhKRkI\\/Pg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987572,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:32'),
(8919, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:32'),
(8920, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:33'),
(8921, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A55CED8EA1863B9A18675794C54B943D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987572518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:33'),
(8922, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A55CED8EA1863B9A18675794C54B943D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987572518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:32.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:33'),
(8923, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A55CED8EA1863B9A18675794C54B943D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770987577535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:37.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:37'),
(8924, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A55CED8EA1863B9A18675794C54B943D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770987577535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:37.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:37'),
(8925, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A55CED8EA1863B9A18675794C54B943D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770987579904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:39.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:39'),
(8926, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"155181631152358@lid\",\"id\":\"A55CED8EA1863B9A18675794C54B943D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770987579904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:39.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:40'),
(8927, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:45.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:45'),
(8928, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:45.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:45'),
(8929, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:48.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:49');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8930, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"presences\":{\"155181631152358@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:48.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:49'),
(8931, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:49.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:49'),
(8932, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC8AA2C49BC7942418F510AF28E057B9\"},\"pushName\":\"Inis Pelho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19434457_1392393552667414_1474252769388225000_n.enc?ccb=11-4&oh=01_Q5Aa3wHmP2uo03avY5tl8VkT507_PkXznDGsOLAyj4EYz3NeMg&oe=69B67626&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"dwhXZ+m4HLeA\\/0e07KoHJeU0l6lITNHi+vmAtERbzt8=\",\"fileLength\":\"8093\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"o\\/f+Akb5OHfIVtY18\\/TeN5cplg9VLKhbmNj7o0MtneQ=\",\"fileEncSha256\":\"8UsW\\/4ijJbxVCQrcKewRnb7Yv79mpIcb9mMZxofwAcw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19434457_1392393552667414_1474252769388225000_n.enc?ccb=11-4&oh=01_Q5Aa3wHmP2uo03avY5tl8VkT507_PkXznDGsOLAyj4EYz3NeMg&oe=69B67626&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987587\",\"waveform\":\"AAAAAAAAChAPIDk1PyQtLCAfISItJgciLTlLSEhJSUVNSzlIPz9TVVNGR0gyTEpFPkpNREVERDY8NjY5OTkuCw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E5KMMaebogoSRnqoPLlEgl2TzlQTDCe1X63lXFyUKhw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:49.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:49'),
(8933, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:49.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:50'),
(8934, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"155181631152358@lid\",\"fromMe\":false,\"id\":\"AC8AA2C49BC7942418F510AF28E057B9\"},\"pushName\":\"Inis Pelho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19434457_1392393552667414_1474252769388225000_n.enc?ccb=11-4&oh=01_Q5Aa3wHmP2uo03avY5tl8VkT507_PkXznDGsOLAyj4EYz3NeMg&oe=69B67626&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"dwhXZ+m4HLeA\\/0e07KoHJeU0l6lITNHi+vmAtERbzt8=\",\"fileLength\":\"8093\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"o\\/f+Akb5OHfIVtY18\\/TeN5cplg9VLKhbmNj7o0MtneQ=\",\"fileEncSha256\":\"8UsW\\/4ijJbxVCQrcKewRnb7Yv79mpIcb9mMZxofwAcw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19434457_1392393552667414_1474252769388225000_n.enc?ccb=11-4&oh=01_Q5Aa3wHmP2uo03avY5tl8VkT507_PkXznDGsOLAyj4EYz3NeMg&oe=69B67626&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770987587\",\"waveform\":\"AAAAAAAAChAPIDk1PyQtLCAfISItJgciLTlLSEhJSUVNSzlIPz9TVVNGR0gyTEpFPkpNREVERDY8NjY5OTkuCw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E5KMMaebogoSRnqoPLlEgl2TzlQTDCe1X63lXFyUKhw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770987589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:49.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:50'),
(8935, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:50.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:50'),
(8936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"155181631152358@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:50.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:50'),
(8937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:50.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 09:59:50'),
(8938, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"155181631152358@lid\",\"pushName\":\"Inis Pelho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T09:59:50.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 09:59:51'),
(8939, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"3EB0F1669096FF337B9E45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987602318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:00:02.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:00:02'),
(8940, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"3EB0F1669096FF337B9E45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987602318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:00:02.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:00:02'),
(8941, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627838624_1245201041044022_7487426378311836830_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhJYwUbligvZpam4LSWVKZXZlZZnhD5UIi4VgqafK6MA&oe=699C31EF&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518996897305@s.whatsapp.net\",\"pushName\":\"Adilson7305\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:03:22.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:03:22'),
(8942, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627838624_1245201041044022_7487426378311836830_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhJYwUbligvZpam4LSWVKZXZlZZnhD5UIi4VgqafK6MA&oe=699C31EF&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518996897305@s.whatsapp.net\",\"pushName\":\"Adilson7305\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:03:22.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:03:22'),
(8943, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987861135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:04:21.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:04:21'),
(8944, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987861135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:04:21.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:04:21'),
(8945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987968127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:06:08.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:06:08'),
(8946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987968137,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:06:08.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:06:08'),
(8947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987968127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:06:08.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:06:08'),
(8948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770987968137,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:06:08.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:06:08'),
(8949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054471,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:34'),
(8950, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054507,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:34'),
(8951, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054475,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:34'),
(8952, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054465,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:34'),
(8953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054514,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:34'),
(8954, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054471,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:35'),
(8955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054507,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:35'),
(8956, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054475,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:35'),
(8957, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054465,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:35'),
(8958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054514,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:35'),
(8959, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054488,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:36'),
(8960, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:36'),
(8961, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:36'),
(8962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054459,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:36'),
(8963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:36'),
(8964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:37'),
(8965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:37'),
(8966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054488,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:37'),
(8967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054459,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:37'),
(8968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054542,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:37'),
(8969, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054521,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:38'),
(8970, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054479,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:38'),
(8971, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:38'),
(8972, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:38'),
(8973, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:38'),
(8974, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:07:39'),
(8975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054479,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:39'),
(8976, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:39'),
(8977, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054521,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:39'),
(8978, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054542,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:39'),
(8979, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:40'),
(8980, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770988054500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:07:34.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:07:40'),
(8981, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:17.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:18'),
(8982, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:18.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:18'),
(8983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:18.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:18'),
(8984, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989058646,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:18.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:18'),
(8985, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989058646,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:18.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:18'),
(8986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:17.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:20'),
(8987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/599456031_945864791207169_3338173010708711134_n.enc?ccb=11-4&oh=01_Q5Aa3wHvVCM_cc69tvlBrakEnsa1zalkG-x3jI7qfUvqIvooSQ&oe=69B69764&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"5XecFohyWt+AV40pNLQJephCU1iQg1Ewu3o22u8VRwg=\",\"fileLength\":\"100982\",\"height\":1600,\"width\":738,\"mediaKey\":\"7ZYz61gaKA0nJfPxNKeCfbOrYTzzlGdxLfYqAdhqBdI=\",\"fileEncSha256\":\"M4z0HGqUjmSs7TAM0LLgqExF6fLili8muJvEl6Tbh2Y=\",\"directPath\":\"\\/v\\/t62.7118-24\\/599456031_945864791207169_3338173010708711134_n.enc?ccb=11-4&oh=01_Q5Aa3wHvVCM_cc69tvlBrakEnsa1zalkG-x3jI7qfUvqIvooSQ&oe=69B69764&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770989056\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAEBAQEBAQAAAAAAAAAAAAACAwAEAQUBAQEBAQAAAAAAAAAAAAAAAAACAQP\\/2gAMAwEAAhADEAAAAPvWmhk7HgU5lIsMLxKMvJnHqO0Kg5NXt06bj2P\\/xAAhEAACAQQCAwEBAAAAAAAAAAAAAQIDERIhMVEEEEEgcf\\/aAAgBAQABPwCbqXjivuyLaJNPaE2+R6f4bS2x1YdiqR7IyUuCfBFU0ZQFb4VLY7NPswgJJE1dDjL4KKa36ragxJpclP8AvppswfSMZp6sSnhKOUkkYK9xaRyeT4kPKtdtWP\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEBEg\\/9oACAECAQE\\/AJpo4+P\\/xAAaEQABBQEAAAAAAAAAAAAAAAABAAIQEjEg\\/9oACAEDAQE\\/AIJVinbDt4\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"D8jej6fzz8PDaPIAnH9HtnXfkEgpoMZoByO8finzpPFPUHoARjWkQA==\",\"scanLengths\":[8811,46374,20140,25657],\"midQualityFileSha256\":\"KxJomRFR3f5M\\/oQVbN8WmjKEumlloXNOhxhTYmp0\\/j4=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770989057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:17.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:20'),
(8988, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989058832,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:18.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:20'),
(8989, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989058832,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:18.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:20'),
(8990, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/599456031_945864791207169_3338173010708711134_n.enc?ccb=11-4&oh=01_Q5Aa3wHvVCM_cc69tvlBrakEnsa1zalkG-x3jI7qfUvqIvooSQ&oe=69B69764&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"5XecFohyWt+AV40pNLQJephCU1iQg1Ewu3o22u8VRwg=\",\"fileLength\":\"100982\",\"height\":1600,\"width\":738,\"mediaKey\":\"7ZYz61gaKA0nJfPxNKeCfbOrYTzzlGdxLfYqAdhqBdI=\",\"fileEncSha256\":\"M4z0HGqUjmSs7TAM0LLgqExF6fLili8muJvEl6Tbh2Y=\",\"directPath\":\"\\/v\\/t62.7118-24\\/599456031_945864791207169_3338173010708711134_n.enc?ccb=11-4&oh=01_Q5Aa3wHvVCM_cc69tvlBrakEnsa1zalkG-x3jI7qfUvqIvooSQ&oe=69B69764&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770989056\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAEBAQEBAQAAAAAAAAAAAAACAwAEAQUBAQEBAQAAAAAAAAAAAAAAAAACAQP\\/2gAMAwEAAhADEAAAAPvWmhk7HgU5lIsMLxKMvJnHqO0Kg5NXt06bj2P\\/xAAhEAACAQQCAwEBAAAAAAAAAAAAAQIDERIhMVEEEEEgcf\\/aAAgBAQABPwCbqXjivuyLaJNPaE2+R6f4bS2x1YdiqR7IyUuCfBFU0ZQFb4VLY7NPswgJJE1dDjL4KKa36ragxJpclP8AvppswfSMZp6sSnhKOUkkYK9xaRyeT4kPKtdtWP\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEBEg\\/9oACAECAQE\\/AJpo4+P\\/xAAaEQABBQEAAAAAAAAAAAAAAAABAAIQEjEg\\/9oACAEDAQE\\/AIJVinbDt4\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"D8jej6fzz8PDaPIAnH9HtnXfkEgpoMZoByO8finzpPFPUHoARjWkQA==\",\"scanLengths\":[8811,46374,20140,25657],\"midQualityFileSha256\":\"KxJomRFR3f5M\\/oQVbN8WmjKEumlloXNOhxhTYmp0\\/j4=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770989057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:17.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:20'),
(8991, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/588630202_952003477307560_5230559582537960801_n.enc?ccb=11-4&oh=01_Q5Aa3wFdq4o6zvFzeeF3bYxgzPHvYFTmCFBgTBnLmtejUsPcWg&oe=69B692DB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"z06hnWqzJn525gmfy+HY3KIfLkZh0s+u8EbhrLBUmN0=\",\"fileLength\":\"44163\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"7j8OBdgQD\\/ExGoINQcuBUEs9Qj8eeW\\/yr88\\/vOLfjaE=\",\"fileEncSha256\":\"iT0VbaRIST9496xT0QhX\\/EgOLSXONLJkVM1hvHkupnc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/588630202_952003477307560_5230559582537960801_n.enc?ccb=11-4&oh=01_Q5Aa3wFdq4o6zvFzeeF3bYxgzPHvYFTmCFBgTBnLmtejUsPcWg&oe=69B692DB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770989059\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAxhVzdcAVo6Tj1NPSZKQwAPRU4JLVM4OQc0R0ZSPE8xBygTWSxQTyxMDE1YUVc2FzcEAQAATkwcTz0uEgZRHg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770989077,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:37.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:37'),
(8992, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:37.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:37'),
(8993, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/588630202_952003477307560_5230559582537960801_n.enc?ccb=11-4&oh=01_Q5Aa3wFdq4o6zvFzeeF3bYxgzPHvYFTmCFBgTBnLmtejUsPcWg&oe=69B692DB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"z06hnWqzJn525gmfy+HY3KIfLkZh0s+u8EbhrLBUmN0=\",\"fileLength\":\"44163\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"7j8OBdgQD\\/ExGoINQcuBUEs9Qj8eeW\\/yr88\\/vOLfjaE=\",\"fileEncSha256\":\"iT0VbaRIST9496xT0QhX\\/EgOLSXONLJkVM1hvHkupnc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/588630202_952003477307560_5230559582537960801_n.enc?ccb=11-4&oh=01_Q5Aa3wFdq4o6zvFzeeF3bYxgzPHvYFTmCFBgTBnLmtejUsPcWg&oe=69B692DB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770989059\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAxhVzdcAVo6Tj1NPSZKQwAPRU4JLVM4OQc0R0ZSPE8xBygTWSxQTyxMDE1YUVc2FzcEAQAATkwcTz0uEgZRHg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770989077,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:37.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:38'),
(8994, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:38.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:38'),
(8995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:37.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:38'),
(8996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989077864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:37.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:38'),
(8997, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:38.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:38'),
(8998, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989078002,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:38.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:24:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(8999, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989078002,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:38.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:39'),
(9000, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989077864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:24:37.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:24:40'),
(9001, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:10'),
(9002, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109857,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:10'),
(9003, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:10'),
(9004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109910,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:10'),
(9005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:10'),
(9006, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:11'),
(9007, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109956,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:11'),
(9008, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A53A6A145F8EFD9978AA206A443302FF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110045,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:11'),
(9009, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109920,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:11'),
(9010, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109956,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:11'),
(9011, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A53A6A145F8EFD9978AA206A443302FF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110045,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:12'),
(9012, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109842,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:12'),
(9013, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A59F5DBAA0F53F7CF8999F1E39E002FF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:12'),
(9014, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A54975E2B74D08D395CDDD07C8A41F66\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:12'),
(9015, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:12'),
(9016, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A59F5DBAA0F53F7CF8999F1E39E002FF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:13'),
(9017, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109842,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:13'),
(9018, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109997,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:13'),
(9019, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5871F7E95DE32910661B1D23DC6B9FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110061,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:13'),
(9020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A59E57EB882E0FC872512172D0F64F9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110053,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:13'),
(9021, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A53342FE5FF8A2AB1EF561999C1B5480\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109997,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:14'),
(9022, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109868,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:14'),
(9023, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:14'),
(9024, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109889,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:14'),
(9025, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109920,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:14'),
(9026, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A54975E2B74D08D395CDDD07C8A41F66\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:15'),
(9027, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:15'),
(9028, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:15'),
(9029, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109963,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:15'),
(9030, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5871F7E95DE32910661B1D23DC6B9FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110061,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:15'),
(9031, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:16'),
(9032, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:16'),
(9033, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:16'),
(9034, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A59E57EB882E0FC872512172D0F64F9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110053,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:16'),
(9035, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:16'),
(9036, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5486742F5AC3FFD718F737536FFEED8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110108,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:17'),
(9037, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB042FE376C90C6CB7250\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:17'),
(9038, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:17'),
(9039, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109889,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:17'),
(9040, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:17'),
(9041, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5C6E4DBC86CB2170C88F29E0F767371\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:18'),
(9042, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5486742F5AC3FFD718F737536FFEED8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110108,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:18'),
(9043, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:18'),
(9044, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109963,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:18'),
(9045, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A535B49AA43547ED3CAC8FB5432308D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110037,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:18'),
(9046, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5C6E4DBC86CB2170C88F29E0F767371\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:19'),
(9047, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A535B49AA43547ED3CAC8FB5432308D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110037,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:19'),
(9048, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109868,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:19'),
(9049, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:19'),
(9050, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:19'),
(9051, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5B4CBF9ABEC7B8F5F9DA502C7C9521C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110081,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:20'),
(9052, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A579B00DBB14CBE66D2D6ABC5790ABD3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:20'),
(9053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109969,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:20'),
(9054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109987,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:20'),
(9055, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:20'),
(9056, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5B5A0DDD16DDE8A84A9C52FB9735857\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:21'),
(9057, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109910,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:21'),
(9058, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109857,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:21'),
(9059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:21'),
(9060, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5B4CBF9ABEC7B8F5F9DA502C7C9521C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110081,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:21'),
(9061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0937273E04D6C41DF78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109987,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:22'),
(9062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5B5A0DDD16DDE8A84A9C52FB9735857\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:22'),
(9063, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989109969,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:09.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:22'),
(9064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A579B00DBB14CBE66D2D6ABC5790ABD3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:22'),
(9065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A52A2382B276DA41F9C874C4B1CEB335\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110031,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:22'),
(9066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0F1669096FF337B9E45\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:25:23'),
(9067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A52A2382B276DA41F9C874C4B1CEB335\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110031,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:23'),
(9068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0F1669096FF337B9E45\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770989110004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:25:10.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:25:24'),
(9069, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770989161274,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:01.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:01'),
(9070, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770989161274,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:01.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:01'),
(9071, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:07.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:07'),
(9072, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:07.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:07'),
(9073, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:07.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:07'),
(9074, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:07.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:07'),
(9075, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:21.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:21'),
(9076, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:21.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:21'),
(9077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:23.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:24'),
(9078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:23.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:24'),
(9079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:24'),
(9080, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:24'),
(9081, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:24'),
(9082, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9083, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:25'),
(9084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:25.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:25'),
(9085, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:25.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:25'),
(9086, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB03A5FD103780B2F6FA9\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"viva a ia kk\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t0QXF8E14eFFReoJBwjX9TrhHT1RjriLk+wapEcMEfA=\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770989184,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:26:25'),
(9087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB03A5FD103780B2F6FA9\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"viva a ia kk\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"senderAccountType\":\"E2EE\",\"receiverAccountType\":\"E2EE\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t0QXF8E14eFFReoJBwjX9TrhHT1RjriLk+wapEcMEfA=\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770989184,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:26'),
(9088, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:26:24.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:26:26'),
(9089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEIqt5lUwsxJMV7oj5nKAh2O8UBf1JSz-JOPW_JiWRHFQ&oe=69B68B2A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"UcW38lF+9oolXuVMKe0LARzG0gPuEUxcoY8LAqMbMGc=\",\"fileEncSha256\":\"9kEOebgApFhQnZtaMojtbFJN4HfURocyRvCgS3UM9m8=\",\"mediaKey\":\"Y1L7IA292mV8J3\\/GVdg40RUcml2yHbyLl+Z+cMwlz5A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEIqt5lUwsxJMV7oj5nKAh2O8UBf1JSz-JOPW_JiWRHFQ&oe=69B68B2A&_nc_sid=5e03e0\",\"fileLength\":\"637660\",\"mediaKeyTimestamp\":\"1770854220\",\"firstFrameLength\":637188,\"firstFrameSidecar\":\"cZLEab361bWKKw==\",\"isAnimated\":true,\"contextInfo\":{\"stanzaId\":\"3EB03A5FD103780B2F6FA9\",\"participant\":\"32465758515228@lid\",\"quotedMessage\":{\"conversation\":\"viva a ia kk\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770989372463\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"stanzaId\":\"3EB03A5FD103780B2F6FA9\",\"participant\":\"32465758515228@lid\",\"quotedMessage\":{\"conversation\":\"viva a ia kk\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770989373,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:29:33'),
(9090, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:29:33'),
(9091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989373621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:29:33'),
(9092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:29:33'),
(9093, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:29:34'),
(9094, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989373621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:29:34'),
(9095, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:29:34'),
(9096, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989374431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:34.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:29:34'),
(9097, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEIqt5lUwsxJMV7oj5nKAh2O8UBf1JSz-JOPW_JiWRHFQ&oe=69B68B2A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"UcW38lF+9oolXuVMKe0LARzG0gPuEUxcoY8LAqMbMGc=\",\"fileEncSha256\":\"9kEOebgApFhQnZtaMojtbFJN4HfURocyRvCgS3UM9m8=\",\"mediaKey\":\"Y1L7IA292mV8J3\\/GVdg40RUcml2yHbyLl+Z+cMwlz5A=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31852556_25987664640900191_8107265869000247194_n.enc?ccb=11-4&oh=01_Q5Aa3wEIqt5lUwsxJMV7oj5nKAh2O8UBf1JSz-JOPW_JiWRHFQ&oe=69B68B2A&_nc_sid=5e03e0\",\"fileLength\":\"637660\",\"mediaKeyTimestamp\":\"1770854220\",\"firstFrameLength\":637188,\"firstFrameSidecar\":\"cZLEab361bWKKw==\",\"isAnimated\":true,\"contextInfo\":{\"stanzaId\":\"3EB03A5FD103780B2F6FA9\",\"participant\":\"32465758515228@lid\",\"quotedMessage\":{\"conversation\":\"viva a ia kk\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770989372463\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"stanzaId\":\"3EB03A5FD103780B2F6FA9\",\"participant\":\"32465758515228@lid\",\"quotedMessage\":{\"conversation\":\"viva a ia kk\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770989373,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:33.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:29:34'),
(9098, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989374431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:29:34.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:29:34'),
(9099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:03.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:03'),
(9100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770989703,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:03.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:03'),
(9101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:03.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:04'),
(9102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989704295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:04.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:04'),
(9103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989704844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:04.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:04'),
(9104, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:03.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:05'),
(9105, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770989703,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:03.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:05'),
(9106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:03.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:05'),
(9107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989704295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:04.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:05'),
(9108, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989704844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:04.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:05'),
(9109, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A52A25609D4DAAC545444FE6CC639C3E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770989721,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:22'),
(9110, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52A25609D4DAAC545444FE6CC639C3E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989722356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:22'),
(9111, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A52A25609D4DAAC545444FE6CC639C3E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770989721,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:22'),
(9112, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52A25609D4DAAC545444FE6CC639C3E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770989722356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:22'),
(9113, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDMc37SV3c2YqWxIb7kJzBkPG0HzHq6pV-08Quag29fg&oe=699C3D07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:22'),
(9114, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:35:23'),
(9115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDMc37SV3c2YqWxIb7kJzBkPG0HzHq6pV-08Quag29fg&oe=699C3D07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:23'),
(9116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:35:22.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:35:23'),
(9117, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:42:30'),
(9118, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:42:30'),
(9119, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:42:30'),
(9120, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990150488,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:42:30'),
(9121, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:42:30'),
(9122, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990150488,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:42:30'),
(9123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:42:31'),
(9124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:30.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:42:31'),
(9125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990151576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:31.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:42:31'),
(9126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990151576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:42:31.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:42:31'),
(9127, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:44:41'),
(9128, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A529C01E85E5F5E2FE059108BD0FAE3B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:44:41'),
(9129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDMc37SV3c2YqWxIb7kJzBkPG0HzHq6pV-08Quag29fg&oe=699C3D07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:44:42'),
(9130, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:44:42'),
(9131, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A529C01E85E5F5E2FE059108BD0FAE3B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990281866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:44:42'),
(9132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDMc37SV3c2YqWxIb7kJzBkPG0HzHq6pV-08Quag29fg&oe=699C3D07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:44:42'),
(9133, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A529C01E85E5F5E2FE059108BD0FAE3B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990281866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:44:42'),
(9134, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A529C01E85E5F5E2FE059108BD0FAE3B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:44:41.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:44:42'),
(9135, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:04'),
(9136, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:04'),
(9137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:04'),
(9138, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:04'),
(9139, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"ACA60DA9BD73766A365AD910B348B800\"},\"pushName\":\"Vanderlei\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no cartão*\\nVANDERLEI, seu pagamento para VANDERLEI - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 13\\/02\\/2026\\n*De:* VANDERLEI\\n*Para:* jtvplay\\n*Cartão final:* **** 8244\\n\\nVocê pode *conferir seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/292f6766-0a03-45a9-a7ef-79f2eb5b28e9\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/292f6766-0a03-45a9-a7ef-79f2eb5b28e9\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zDhDoiXNZ\\/h7MVzQxEZWKlsN0A3xvV2ROBpFZEfd\\/hw=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990424,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:04'),
(9140, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"ACA60DA9BD73766A365AD910B348B800\"},\"pushName\":\"Vanderlei\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no cartão*\\nVANDERLEI, seu pagamento para VANDERLEI - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 13\\/02\\/2026\\n*De:* VANDERLEI\\n*Para:* jtvplay\\n*Cartão final:* **** 8244\\n\\nVocê pode *conferir seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/292f6766-0a03-45a9-a7ef-79f2eb5b28e9\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/292f6766-0a03-45a9-a7ef-79f2eb5b28e9\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zDhDoiXNZ\\/h7MVzQxEZWKlsN0A3xvV2ROBpFZEfd\\/hw=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990424,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:05'),
(9141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:05'),
(9142, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:05'),
(9143, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"ACC977A272C1D14693226786A155BBB7\"},\"pushName\":\"Vanderlei\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5wymgRm9rZsonKSbaLbV7G2M8zvZYlNTHvHpZSgc6CY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770990425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:05'),
(9144, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:05'),
(9145, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:05'),
(9146, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:05'),
(9147, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"ACC977A272C1D14693226786A155BBB7\"},\"pushName\":\"Vanderlei\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5wymgRm9rZsonKSbaLbV7G2M8zvZYlNTHvHpZSgc6CY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770990425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:05'),
(9148, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:05'),
(9150, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:06'),
(9151, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:06'),
(9152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:06'),
(9153, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:05.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:06'),
(9154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:06'),
(9155, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:07'),
(9156, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:04.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:08'),
(9157, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:15.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:15'),
(9158, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:15.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:15'),
(9159, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"AC3E2BEF1AADFCDA63DF6763EA40F826\"},\"pushName\":\"Vanderlei\",\"message\":{\"conversation\":\"Segue confirmação de pagamenti\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XMDXj+t2\\/lqRM4AUd1fCVjdKhCCAI4IMyN6jfy1f7a8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770990444,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:24'),
(9160, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:24'),
(9161, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"AC3E2BEF1AADFCDA63DF6763EA40F826\"},\"pushName\":\"Vanderlei\",\"message\":{\"conversation\":\"Segue confirmação de pagamenti\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XMDXj+t2\\/lqRM4AUd1fCVjdKhCCAI4IMyN6jfy1f7a8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770990444,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:24'),
(9162, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:24'),
(9163, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:24'),
(9164, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:25'),
(9165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:25'),
(9166, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:25.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:25'),
(9167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:24.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:25'),
(9168, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"presences\":{\"146729018064953@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:25.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:25'),
(9169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:30.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:30'),
(9170, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"ACF8CA2E2B60AC351DE764B479EEF9CD\"},\"pushName\":\"Vanderlei\",\"message\":{\"conversation\":\"Abraço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"75WEnc9cG80ZS1HcIPZnZWqCIeu0X2YgzBGuMOgPK08=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770990450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:30.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:30'),
(9171, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:30.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:30'),
(9172, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"ACF8CA2E2B60AC351DE764B479EEF9CD\"},\"pushName\":\"Vanderlei\",\"message\":{\"conversation\":\"Abraço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"75WEnc9cG80ZS1HcIPZnZWqCIeu0X2YgzBGuMOgPK08=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770990450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:30.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:30'),
(9173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:30.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:30'),
(9174, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:30.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:31'),
(9175, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:31.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:47:31'),
(9176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvgj22qfrfJmedrftPaq3IYsQsCyM4gLN1RbstFt30pQ&oe=699C27E0&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:47:31.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:47:31'),
(9177, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5F0B75C5ED4197D3D437522AD2B41BE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:39.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:49:40'),
(9178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:39.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:49:40'),
(9179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDMc37SV3c2YqWxIb7kJzBkPG0HzHq6pV-08Quag29fg&oe=699C3D07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:40.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:49:40'),
(9180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:39.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:49:40'),
(9181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDMc37SV3c2YqWxIb7kJzBkPG0HzHq6pV-08Quag29fg&oe=699C3D07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:40.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:49:40'),
(9182, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5F0B75C5ED4197D3D437522AD2B41BE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990581335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:41.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:49:41'),
(9183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5F0B75C5ED4197D3D437522AD2B41BE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:39.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:49:41'),
(9184, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5F0B75C5ED4197D3D437522AD2B41BE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990581335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:49:41.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:49:41'),
(9185, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:52:59.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:00'),
(9186, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C9BB51FCFBE55E7E3AF7089B47A627\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":17},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":17},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990779,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:52:59.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:00'),
(9187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:52:59.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:00'),
(9188, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:52:59.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:00'),
(9189, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:52:59.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:00'),
(9190, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C9BB51FCFBE55E7E3AF7089B47A627\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":17},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":17},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990779,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:52:59.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:01'),
(9191, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5ACCEFF0DAED22670A5D6C09CB40119\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:29'),
(9192, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:29'),
(9193, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:29'),
(9194, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5ACCEFF0DAED22670A5D6C09CB40119\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990808901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:29'),
(9195, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:29'),
(9196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5ACCEFF0DAED22670A5D6C09CB40119\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990808901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:29'),
(9197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:29'),
(9198, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07759DD16E4945FA865\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990810,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:30.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:30'),
(9199, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5ACCEFF0DAED22670A5D6C09CB40119\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:28.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:31'),
(9200, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07759DD16E4945FA865\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990810,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:30.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:31'),
(9201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07759DD16E4945FA865\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990811390,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:31.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:31'),
(9202, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07759DD16E4945FA865\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990811390,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:31.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:31'),
(9203, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01D95ECAD0109FFD8E4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990812,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:33.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:33'),
(9204, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01D95ECAD0109FFD8E4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990812,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:33.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:33'),
(9205, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB01D95ECAD0109FFD8E4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990813435,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:33.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:33'),
(9206, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB01D95ECAD0109FFD8E4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990813435,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:33.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:33'),
(9207, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D3F7D3FC5C18BD0267930968A270E7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990836138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:56.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:56'),
(9208, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D3F7D3FC5C18BD0267930968A270E7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990836138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:56.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:56'),
(9209, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:56.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:56'),
(9210, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D3F7D3FC5C18BD0267930968A270E7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/venimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990836,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:56.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:56'),
(9211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:56.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:57'),
(9212, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:57.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:57'),
(9213, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:57.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:57'),
(9214, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0872A9D19FDFC6F837D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990838,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:58.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:58'),
(9215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5D3F7D3FC5C18BD0267930968A270E7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/venimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990836,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:56.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:59'),
(9216, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0872A9D19FDFC6F837D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990838,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:58.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:59'),
(9217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0872A9D19FDFC6F837D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990839259,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:59.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:53:59'),
(9218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0872A9D19FDFC6F837D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990839259,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:53:59.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:53:59'),
(9219, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07157B8EFA1CDAE541E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990840,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:00.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:01'),
(9220, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07157B8EFA1CDAE541E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990840,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:00.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:01'),
(9221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07157B8EFA1CDAE541E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990841349,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:01.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:01'),
(9222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07157B8EFA1CDAE541E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990841349,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:01.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:01'),
(9223, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BB9420B3130E945EA1F5A2EFD732A1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990845589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:05.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BB9420B3130E945EA1F5A2EFD732A1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990845589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:05.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:05'),
(9225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:06.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:06'),
(9226, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:06.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:06'),
(9227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5BB9420B3130E945EA1F5A2EFD732A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990846,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:06.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:06'),
(9228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:06.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:06'),
(9229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:06.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:06'),
(9230, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CB21A1573E7295B88C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 366 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990848,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:08.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:08'),
(9231, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CB21A1573E7295B88C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 366 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990848,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:08.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:08'),
(9232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5BB9420B3130E945EA1F5A2EFD732A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990846,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:06.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:09'),
(9233, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0CB21A1573E7295B88C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990848982,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:08.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:09'),
(9234, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0CB21A1573E7295B88C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990848982,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:08.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:09'),
(9235, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB035EDA9F4FA15904DA8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 366 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990850,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:10.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:10'),
(9236, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB035EDA9F4FA15904DA8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Consulta de Vencimento*\\\\n\\\\nOlá, *carol*!\\\\n\\\\n✅ *Status:* 🟢 Em dia\\\\n📆 *Próximo Vencimento:* 14\\/02\\/2027\\\\n⏰ *Faltam:* 366 dias\\\\n💰 *Valor:* R$ 100,00\\\\n\\\\n😊 Você está em dia! Continue assim!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990850,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:10.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:11'),
(9237, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB035EDA9F4FA15904DA8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990851294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:11.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:11'),
(9238, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB035EDA9F4FA15904DA8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990851294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:11.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:11'),
(9239, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990886652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:46.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:46'),
(9240, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990886652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:46.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:47'),
(9241, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:46.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:47'),
(9242, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/19171874_1223988372678504_6881616030113350329_n.enc?ccb=11-4&oh=01_Q5Aa3wEYnx5nhRpOdcd3HcPBsc4L_2hCma-JmNwwJEKu2a0b1Q&oe=69B68768&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"mz0+LFM1av29nlz3cCq+tD2fG5xpmIoMmsTTURLeYPA=\",\"fileLength\":\"148430\",\"height\":1600,\"width\":738,\"mediaKey\":\"v7Tt\\/ZVBioQj4BW+Jl2wDkicPKGeoS9KuXj4og8fA6k=\",\"fileEncSha256\":\"uv0T0avFvHVVC8fJR011zZAKStlZRz9bGEjsdnnYywY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/19171874_1223988372678504_6881616030113350329_n.enc?ccb=11-4&oh=01_Q5Aa3wEYnx5nhRpOdcd3HcPBsc4L_2hCma-JmNwwJEKu2a0b1Q&oe=69B68768&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770990880\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAwQCAQUBAQEBAAAAAAAAAAAAAAAAAAECAP\\/aAAwDAQACEAMQAAAA95q1hTmdgcRRMbbVNJ6l07WmZ2SSWraS8MN0F2Rht\\/\\/EACEQAQACAQMFAQEAAAAAAAAAAAEAAhEDEiEEEzFBUlFh\\/9oACAEBAAE\\/ANRuYQPMrYPZG1PqHLLgnLCtPqBU\\/sqfhNau6iQ09pK0cSgmBmoZqza5zhhVc8SgmCXttrmd9+Z3MotZSxZmoZqkro8cx0uAGUNvl5mq7aLO9b9he+BzKK+ZYUxDSx6jpD6m6mlgUMzaGYcE8zqejp1WM2TE\\/8QAGREBAAIDAAAAAAAAAAAAAAAAAQAQERIg\\/9oACAECAQE\\/AMzaNLTx\\/8QAGREAAgMBAAAAAAAAAAAAAAAAATEAEBIg\\/9oACAEDAQE\\/ADNQui6L4\\/\\/Z\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"EkjZBS9oCRb0u6zPoGkqm3mvjWlB5w1f\\/Zxc7WhPr\\/V5rVFBmKTdHA==\",\"scanLengths\":[10767,73456,29185,35022],\"midQualityFileSha256\":\"f5EUNZH1k6phN5jEKNUCaqFyPmoO0q8l4IBWYlbR7Qg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770990886,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:46.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:47'),
(9243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:46.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:47'),
(9244, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:47.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:47'),
(9245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:47.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:48'),
(9246, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990887251,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:47.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:54:48'),
(9247, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990887251,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:47.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:48'),
(9248, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/19171874_1223988372678504_6881616030113350329_n.enc?ccb=11-4&oh=01_Q5Aa3wEYnx5nhRpOdcd3HcPBsc4L_2hCma-JmNwwJEKu2a0b1Q&oe=69B68768&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"mz0+LFM1av29nlz3cCq+tD2fG5xpmIoMmsTTURLeYPA=\",\"fileLength\":\"148430\",\"height\":1600,\"width\":738,\"mediaKey\":\"v7Tt\\/ZVBioQj4BW+Jl2wDkicPKGeoS9KuXj4og8fA6k=\",\"fileEncSha256\":\"uv0T0avFvHVVC8fJR011zZAKStlZRz9bGEjsdnnYywY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/19171874_1223988372678504_6881616030113350329_n.enc?ccb=11-4&oh=01_Q5Aa3wEYnx5nhRpOdcd3HcPBsc4L_2hCma-JmNwwJEKu2a0b1Q&oe=69B68768&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770990880\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAwQCAQUBAQEBAAAAAAAAAAAAAAAAAAECAP\\/aAAwDAQACEAMQAAAA95q1hTmdgcRRMbbVNJ6l07WmZ2SSWraS8MN0F2Rht\\/\\/EACEQAQACAQMFAQEAAAAAAAAAAAEAAhEDEiEEEzFBUlFh\\/9oACAEBAAE\\/ANRuYQPMrYPZG1PqHLLgnLCtPqBU\\/sqfhNau6iQ09pK0cSgmBmoZqza5zhhVc8SgmCXttrmd9+Z3MotZSxZmoZqkro8cx0uAGUNvl5mq7aLO9b9he+BzKK+ZYUxDSx6jpD6m6mlgUMzaGYcE8zqejp1WM2TE\\/8QAGREBAAIDAAAAAAAAAAAAAAAAAQAQERIg\\/9oACAECAQE\\/AMzaNLTx\\/8QAGREAAgMBAAAAAAAAAAAAAAAAATEAEBIg\\/9oACAEDAQE\\/ADNQui6L4\\/\\/Z\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"EkjZBS9oCRb0u6zPoGkqm3mvjWlB5w1f\\/Zxc7WhPr\\/V5rVFBmKTdHA==\",\"scanLengths\":[10767,73456,29185,35022],\"midQualityFileSha256\":\"f5EUNZH1k6phN5jEKNUCaqFyPmoO0q8l4IBWYlbR7Qg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770990886,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:54:46.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:54:48'),
(9249, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A50B34B124BE33E41679BAE2837E6B99\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":154},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":154},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990916,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:16.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:16'),
(9250, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:16.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:16'),
(9251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:16.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:17'),
(9252, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:16.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:17'),
(9253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:16.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:17'),
(9254, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A50B34B124BE33E41679BAE2837E6B99\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":154},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":154},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990916,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:16.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:17'),
(9255, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51A38F06C854D72A8684F564D9CF0F1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":161},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":161},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:23.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:23'),
(9256, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:23.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:24'),
(9257, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:24.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:24'),
(9258, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:23.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:24'),
(9259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:24.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:24'),
(9260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51A38F06C854D72A8684F564D9CF0F1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":161},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":161},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:23.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:24'),
(9261, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:29.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:29'),
(9262, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C4A795BF24123755E9804637EC5ACA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":167},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":167},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990929,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:29.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:29'),
(9263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:29.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:30'),
(9264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:30.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:30'),
(9265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwRs5LZdomSf-JFoG13P2wa8QAmIYFJuDzPPuqwDTKgw&oe=699C2714&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:30.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:30'),
(9266, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C4A795BF24123755E9804637EC5ACA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":167},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":167},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770990929,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:29.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:30'),
(9267, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:47'),
(9268, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:47'),
(9269, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:47'),
(9270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A52C940675A8CB1217DC0012B6DA57F5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990947522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:47'),
(9271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A52C940675A8CB1217DC0012B6DA57F5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990947,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:47'),
(9272, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:48.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:48'),
(9273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:48'),
(9274, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:48.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:48'),
(9275, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A52C940675A8CB1217DC0012B6DA57F5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990947522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:48'),
(9276, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB012051B370F1EC16B0D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990949,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:49.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:49'),
(9277, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB012051B370F1EC16B0D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990949,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:49.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:49'),
(9278, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A52C940675A8CB1217DC0012B6DA57F5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770990947,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:47.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:49'),
(9279, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB012051B370F1EC16B0D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990950021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:50.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:50'),
(9280, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB012051B370F1EC16B0D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990950021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:50.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:50'),
(9281, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B9B9F49FF72977165B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990951,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:51.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:51'),
(9282, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B9B9F49FF72977165B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770990951,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:51.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:51'),
(9283, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0B9B9F49FF72977165B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990952147,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:52.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:55:52'),
(9284, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0B9B9F49FF72977165B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770990952147,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:55:52.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:55:52'),
(9285, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A575585E2E902582CFF79C222D205F25\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991080381,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:00.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:00'),
(9286, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A575585E2E902582CFF79C222D205F25\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991080381,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:00.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:00'),
(9287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:01.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:01'),
(9288, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A575585E2E902582CFF79C222D205F25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770991081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:01.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:01'),
(9289, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:01.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:01');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:01.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:01'),
(9291, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:01.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:01'),
(9292, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB008F9263F71BED76A75\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991083,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:03.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:03'),
(9293, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A575585E2E902582CFF79C222D205F25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770991081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:01.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:03'),
(9294, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB008F9263F71BED76A75\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991083,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:03.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:03'),
(9295, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB008F9263F71BED76A75\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991083636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:03.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:03'),
(9296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB008F9263F71BED76A75\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991083636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:03.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:03'),
(9297, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02FB51B3F87014FDCD5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991085,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:05.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:05'),
(9298, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02FB51B3F87014FDCD5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991085,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:05.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:05'),
(9299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB02FB51B3F87014FDCD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991085685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:05.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:05'),
(9300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB02FB51B3F87014FDCD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991085685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:05.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:05'),
(9301, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627838624_1245201041044022_7487426378311836830_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhJYwUbligvZpam4LSWVKZXZlZZnhD5UIi4VgqafK6MA&oe=699C31EF&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796252902@s.whatsapp.net\",\"pushName\":\"Izadora Dentista Avantis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:13.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 10:58:14'),
(9302, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627838624_1245201041044022_7487426378311836830_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhJYwUbligvZpam4LSWVKZXZlZZnhD5UIi4VgqafK6MA&oe=699C31EF&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796252902@s.whatsapp.net\",\"pushName\":\"Izadora Dentista Avantis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T10:58:13.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 10:58:14'),
(9303, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:00'),
(9304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200003,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:00'),
(9305, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200036,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:00'),
(9306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:00'),
(9307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:00'),
(9308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200003,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:00'),
(9309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200036,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:00'),
(9310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770991200014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:00.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:00'),
(9311, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5758055A05D0B602E58681F732B6953\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\"},\"text\":\"😂\",\"senderTimestampMs\":\"1770991206707\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770991206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:07.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:07'),
(9312, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5758055A05D0B602E58681F732B6953\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\"},\"text\":\"😂\",\"senderTimestampMs\":\"1770991206707\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770991206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:07.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:07'),
(9313, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:07.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:07'),
(9314, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:07.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:07'),
(9315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:07.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:07'),
(9316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:07.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:08'),
(9317, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A55A74608DC17197690709FE883D8EC6\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\"},\"text\":\"👏🏻\",\"senderTimestampMs\":\"1770991227942\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770991228,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:28.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:28'),
(9318, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A55A74608DC17197690709FE883D8EC6\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\"},\"text\":\"👏🏻\",\"senderTimestampMs\":\"1770991227942\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1770991228,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:28.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:28'),
(9319, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:28.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:28'),
(9320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:28.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:28'),
(9321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:28.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:00:28'),
(9322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-O5O2uI-wLo3jYVpmLjWA0VHX6erCSTVlP2JtVzJPtA&oe=699C35A5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:00:28.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:00:29'),
(9323, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A53C1DB14F6AA5A46AED4021DD157C1E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991363884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:43.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:44'),
(9324, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A53C1DB14F6AA5A46AED4021DD157C1E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991363884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:43.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:44'),
(9325, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:44.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:44'),
(9326, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:44.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:44'),
(9327, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A53C1DB14F6AA5A46AED4021DD157C1E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770991364,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:44.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:45'),
(9328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:44.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:45'),
(9329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:44.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:45'),
(9330, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E7603092A4845997E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991366,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:46.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:47'),
(9331, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A53C1DB14F6AA5A46AED4021DD157C1E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770991364,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:44.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:47'),
(9332, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E7603092A4845997E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991366,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:46.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:47'),
(9333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB04E7603092A4845997E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991367398,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:47.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:47'),
(9334, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB04E7603092A4845997E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991367398,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:47.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:47'),
(9335, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BBE6482B087EBFF2CF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991368,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:49.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:49'),
(9336, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BBE6482B087EBFF2CF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"ℹ️ *Comando disponível*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nDúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770991368,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:49.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:49'),
(9337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0BBE6482B087EBFF2CF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991369446,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:49.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:02:49'),
(9338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0BBE6482B087EBFF2CF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770991369446,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:02:49.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:02:49'),
(9339, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5EA075277DA436F411480C93976BF59\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992301,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:18:21.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 11:18:21'),
(9340, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:18:21.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:18:21'),
(9341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5EA075277DA436F411480C93976BF59\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992301,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:18:21.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 11:18:21'),
(9342, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:18:21.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:18:21'),
(9343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:18:21.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:18:21'),
(9344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:18:21.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:18:21'),
(9345, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:22:44'),
(9346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:22:44'),
(9347, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E8873DACFB15ABA1E03980006312A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992563,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 11:22:44'),
(9348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E8873DACFB15ABA1E03980006312A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992564187,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:22:44'),
(9349, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E8873DACFB15ABA1E03980006312A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992563,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 11:22:44'),
(9350, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:22:44'),
(9351, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:22:44'),
(9352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E8873DACFB15ABA1E03980006312A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992564187,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:44.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:22:44'),
(9353, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E8873DACFB15ABA1E03980006312A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992577985,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:57.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:22:58'),
(9354, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E8873DACFB15ABA1E03980006312A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992577985,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:22:57.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:22:58'),
(9355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:25:51'),
(9356, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5C75D14AFAFB3EFEFBBF5852EB2DC05\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992751,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 11:25:51'),
(9357, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5C75D14AFAFB3EFEFBBF5852EB2DC05\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992751,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 11:25:51'),
(9358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5C75D14AFAFB3EFEFBBF5852EB2DC05\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992751476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:25:51'),
(9359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:25:51'),
(9360, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:25:52'),
(9361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5C75D14AFAFB3EFEFBBF5852EB2DC05\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992751476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:25:52'),
(9362, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:25:51.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:25:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9363, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:03.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:29:03'),
(9364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F7D3A581315953B55F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992943,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:03.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:29:03'),
(9365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:03.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:29:04'),
(9366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0F7D3A581315953B55F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992944169,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:04.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:29:04'),
(9367, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792012997@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:03.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:29:04'),
(9368, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792012997@s.whatsapp.net\",\"pushName\":\"AMOR\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:03.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:29:04'),
(9369, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0F7D3A581315953B55F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770992944169,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:04.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:29:04'),
(9370, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F7D3A581315953B55F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770992943,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:29:03.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:29:05'),
(9371, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:16.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:16'),
(9372, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:16.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:17'),
(9373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:19'),
(9374, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:19'),
(9375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5ECCAEBE2436010DDB655D30E4AB01D\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Salve mano bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"p5DwQZQjtGt\\/zXGs8FBbfukk4fsyjj6m7cU900gFHbw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770993079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:19'),
(9376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:19'),
(9377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5ECCAEBE2436010DDB655D30E4AB01D\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Salve mano bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"p5DwQZQjtGt\\/zXGs8FBbfukk4fsyjj6m7cU900gFHbw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770993079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:19'),
(9378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:20'),
(9379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:20'),
(9380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:19.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:20'),
(9381, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:20.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:20'),
(9382, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:20.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:20'),
(9383, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:30.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:31'),
(9384, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:30.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:31'),
(9385, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:35'),
(9386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:35'),
(9387, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:35'),
(9388, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5F35DDB84CE8ED9C58B9E3880A48044\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Tem como colocar 10 créditos.na p2cine aí pra mim por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fzmSL58cVkKNvaWOZojVcFg86EjbqC8YltS\\/CH+iWRI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770993095,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:35'),
(9389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:35'),
(9390, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5F35DDB84CE8ED9C58B9E3880A48044\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Tem como colocar 10 créditos.na p2cine aí pra mim por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fzmSL58cVkKNvaWOZojVcFg86EjbqC8YltS\\/CH+iWRI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770993095,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:36'),
(9391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:31:36'),
(9392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:31:35.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:31:36'),
(9393, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:35.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:35'),
(9394, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:35.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:36'),
(9395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5CFD31E4CD9FB62B550CB6F4860E786\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770993155,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:35.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:36'),
(9396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:36.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:36'),
(9397, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5CFD31E4CD9FB62B550CB6F4860E786\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770993155,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:35.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:36'),
(9398, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:36.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:36'),
(9399, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5CFD31E4CD9FB62B550CB6F4860E786\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770993156036,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:36.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:37'),
(9400, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5CFD31E4CD9FB62B550CB6F4860E786\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770993156036,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:36.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:37'),
(9401, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A525D59B9F1069669D843CD638887AF1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDNA8ZUVW9\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770993158,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:38'),
(9402, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:38'),
(9403, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A525D59B9F1069669D843CD638887AF1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDNA8ZUVW9\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1770993158,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:38'),
(9404, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:38'),
(9405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A525D59B9F1069669D843CD638887AF1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770993158592,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:38'),
(9406, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A525D59B9F1069669D843CD638887AF1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770993158592,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:39'),
(9407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:39'),
(9408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:38.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:39'),
(9409, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A525D59B9F1069669D843CD638887AF1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770993164360,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:44.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:44'),
(9410, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5CFD31E4CD9FB62B550CB6F4860E786\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770993164365,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:44.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:44'),
(9411, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A525D59B9F1069669D843CD638887AF1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770993164360,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:44.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:44'),
(9412, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5CFD31E4CD9FB62B550CB6F4860E786\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770993164365,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:44.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:44'),
(9413, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:45.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:45'),
(9414, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:45.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:46'),
(9415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:48.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:48'),
(9416, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:49.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:49'),
(9417, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:48.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:49'),
(9418, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A58147923936D4FA3992B7C1677FE2DC\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Tô fazendo aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6N9ayFSdZJMHUD8ZgQuyt770n1NeR6CLm8jmazZqxLE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770993168,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:48.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:49'),
(9419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:49.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:49'),
(9420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A58147923936D4FA3992B7C1677FE2DC\"},\"pushName\":\"dlnet\",\"message\":{\"conversation\":\"Tô fazendo aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6N9ayFSdZJMHUD8ZgQuyt770n1NeR6CLm8jmazZqxLE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770993168,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:48.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:49'),
(9421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:49.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:32:50'),
(9422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:32:49.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:32:50'),
(9423, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:43.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:44'),
(9424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:43.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:44'),
(9425, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5D1019A2CFA9AB291CA6CF176DB41EE\"},\"pushName\":\"dlnet\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/18962389_1800583067270654_1853285905003933795_n.enc?ccb=11-4&oh=01_Q5Aa3wErjMznJ7fHXh6zaaOZnhkbq6PFXxzkW7wLq1zd3yzCXg&oe=69B6A2A8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"AxV1Q+7YOKpli+xp37Rm46ES\\/ZDGDXDh9Q2OXb2K5J0=\",\"fileLength\":\"66760\",\"height\":1600,\"width\":511,\"mediaKey\":\"gxu93ffdjL8Mc88uTOr98s4t36IWP70ms5rSfiH9bJA=\",\"fileEncSha256\":\"Ge0gJvEFXjUgaaZLSoCyv\\/JKPSdjrsTp5meNWLVUV2k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/18962389_1800583067270654_1853285905003933795_n.enc?ccb=11-4&oh=01_Q5Aa3wErjMznJ7fHXh6zaaOZnhkbq6PFXxzkW7wLq1zd3yzCXg&oe=69B6A2A8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770993222\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFgMBIgACEQEDEQH\\/xAAqAAEBAQEBAAAAAAAAAAAAAAAAAwIEBgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9KADntOwBKoAc+83MtCGgqD\\/xAAfEAEAAwACAgMBAAAAAAAAAAABAAIREiEQMTJRYXH\\/2gAIAQEAAT8APF6iZNyczqMve\\/PDMlL3OuJkYFm9sPDLe8KLM3Iz+IQTO0ijLVs29GQo2r8TfrYCdIEs5fMlLUD9ijLVsXbcC0oO7wCM\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[]},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sCeituyy2CTbEGTAQCwml4BALItY+MYQC7+byAYU\\/tY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770993223,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:43.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:44'),
(9426, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:44.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:44'),
(9427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:44.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:44'),
(9428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:44.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:44'),
(9429, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:44.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:45'),
(9430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5D1019A2CFA9AB291CA6CF176DB41EE\"},\"pushName\":\"dlnet\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/18962389_1800583067270654_1853285905003933795_n.enc?ccb=11-4&oh=01_Q5Aa3wErjMznJ7fHXh6zaaOZnhkbq6PFXxzkW7wLq1zd3yzCXg&oe=69B6A2A8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"AxV1Q+7YOKpli+xp37Rm46ES\\/ZDGDXDh9Q2OXb2K5J0=\",\"fileLength\":\"66760\",\"height\":1600,\"width\":511,\"mediaKey\":\"gxu93ffdjL8Mc88uTOr98s4t36IWP70ms5rSfiH9bJA=\",\"fileEncSha256\":\"Ge0gJvEFXjUgaaZLSoCyv\\/JKPSdjrsTp5meNWLVUV2k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/18962389_1800583067270654_1853285905003933795_n.enc?ccb=11-4&oh=01_Q5Aa3wErjMznJ7fHXh6zaaOZnhkbq6PFXxzkW7wLq1zd3yzCXg&oe=69B6A2A8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770993222\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFgMBIgACEQEDEQH\\/xAAqAAEBAQEBAAAAAAAAAAAAAAAAAwIEBgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9KADntOwBKoAc+83MtCGgqD\\/xAAfEAEAAwACAgMBAAAAAAAAAAABAAIREiEQMTJRYXH\\/2gAIAQEAAT8APF6iZNyczqMve\\/PDMlL3OuJkYFm9sPDLe8KLM3Iz+IQTO0ijLVs29GQo2r8TfrYCdIEs5fMlLUD9ijLVsXbcC0oO7wCM\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[]},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sCeituyy2CTbEGTAQCwml4BALItY+MYQC7+byAYU\\/tY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1770993223,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:43.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:45'),
(9431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:44.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:45'),
(9432, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:44.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:45');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9433, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:54.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:54'),
(9434, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:54.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:55'),
(9435, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:58.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:58'),
(9436, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:58.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:58'),
(9437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:59'),
(9438, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:59'),
(9439, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5A8B30C4B91A70BBB6171990548B2EA\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30909281_920969820613381_4766303893618390648_n.enc?ccb=11-4&oh=01_Q5Aa3wGTthS3Z_TmBdkUfeYc6hEE9b4PCNn5wfOuHalT_BTxHw&oe=69B6A725&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"COKsIsR46pzLUrDMCmuLydS3WUu+\\/8pz+bqV1H18jfc=\",\"fileLength\":\"30561\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"XEnNkPHpjLulD4f0dRvKD5f5fW7XMUuTGJIVfQo13ls=\",\"fileEncSha256\":\"ZZ\\/Sf2PIE35igwvTJHZqUnqUi1vjTHmRl7Hp6Y8TNYY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30909281_920969820613381_4766303893618390648_n.enc?ccb=11-4&oh=01_Q5Aa3wGTthS3Z_TmBdkUfeYc6hEE9b4PCNn5wfOuHalT_BTxHw&oe=69B6A725&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770993226\",\"waveform\":\"P1VaVi09LkpbXV9POz0aQU86Skc6KVogHR8THh8tPUw9VVAmSERGLR4cRVZWRjYVFh0VWDgwQi9UGx8dMElMGQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OTw\\/Dpko5jR6TKwoVPbUycLa3mBOs767jEe9ty+CAGs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770993239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:59'),
(9440, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:33:59'),
(9441, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5A8B30C4B91A70BBB6171990548B2EA\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30909281_920969820613381_4766303893618390648_n.enc?ccb=11-4&oh=01_Q5Aa3wGTthS3Z_TmBdkUfeYc6hEE9b4PCNn5wfOuHalT_BTxHw&oe=69B6A725&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"COKsIsR46pzLUrDMCmuLydS3WUu+\\/8pz+bqV1H18jfc=\",\"fileLength\":\"30561\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"XEnNkPHpjLulD4f0dRvKD5f5fW7XMUuTGJIVfQo13ls=\",\"fileEncSha256\":\"ZZ\\/Sf2PIE35igwvTJHZqUnqUi1vjTHmRl7Hp6Y8TNYY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30909281_920969820613381_4766303893618390648_n.enc?ccb=11-4&oh=01_Q5Aa3wGTthS3Z_TmBdkUfeYc6hEE9b4PCNn5wfOuHalT_BTxHw&oe=69B6A725&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770993226\",\"waveform\":\"P1VaVi09LkpbXV9POz0aQU86Skc6KVogHR8THh8tPUw9VVAmSERGLR4cRVZWRjYVFh0VWDgwQi9UGx8dMElMGQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OTw\\/Dpko5jR6TKwoVPbUycLa3mBOs767jEe9ty+CAGs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770993239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:33:59'),
(9442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:34:00'),
(9443, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:34:00'),
(9444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:33:59.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:34:00'),
(9445, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:07.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:44:07'),
(9446, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:07.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:44:07'),
(9447, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:10.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:44:10'),
(9448, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:10.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:44:11'),
(9449, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:11.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:44:11'),
(9450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:11.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:44:12'),
(9451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A52ACE18047C3E9F09E0A8129A508E4D\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/25392490_1564417357945972_3216126707758894603_n.enc?ccb=11-4&oh=01_Q5Aa3wH5fHj9P1HbQqfE5rBa5mTvbAIke6CNcZygi-C60aJ7Jg&oe=69B6A9D4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"N4tWWF2B43JxwqaY9RkUtsmjUHJ8JcbpCeBQH+2uUsQ=\",\"fileLength\":\"8051\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"0gfnybiWY5oZzTyYZj1Wlm2HD4KOJF2e4a6MvBmraYY=\",\"fileEncSha256\":\"HbFuMhMRoYT77yVCjiVMvno1gxzJZ6WA1e3tHqGRANY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/25392490_1564417357945972_3216126707758894603_n.enc?ccb=11-4&oh=01_Q5Aa3wH5fHj9P1HbQqfE5rBa5mTvbAIke6CNcZygi-C60aJ7Jg&oe=69B6A9D4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770993849\",\"waveform\":\"OSEXE0RiX1hdV1RhW1VaUkBiWz8vSltXRD9XRyo2WE4vHzdHMC4pHDZJVFlUTDUgHhYWFRJKPhszHxkeOw5AQA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QEC+aXYV49Z\\/ExLWp0Og\\/U0J4w9QNYhYnDjnfsYSyng=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770993851,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:11.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:44:12'),
(9452, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:12.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:44:12'),
(9453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:11.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:44:12'),
(9454, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A52ACE18047C3E9F09E0A8129A508E4D\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/25392490_1564417357945972_3216126707758894603_n.enc?ccb=11-4&oh=01_Q5Aa3wH5fHj9P1HbQqfE5rBa5mTvbAIke6CNcZygi-C60aJ7Jg&oe=69B6A9D4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"N4tWWF2B43JxwqaY9RkUtsmjUHJ8JcbpCeBQH+2uUsQ=\",\"fileLength\":\"8051\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"0gfnybiWY5oZzTyYZj1Wlm2HD4KOJF2e4a6MvBmraYY=\",\"fileEncSha256\":\"HbFuMhMRoYT77yVCjiVMvno1gxzJZ6WA1e3tHqGRANY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/25392490_1564417357945972_3216126707758894603_n.enc?ccb=11-4&oh=01_Q5Aa3wH5fHj9P1HbQqfE5rBa5mTvbAIke6CNcZygi-C60aJ7Jg&oe=69B6A9D4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770993849\",\"waveform\":\"OSEXE0RiX1hdV1RhW1VaUkBiWz8vSltXRD9XRyo2WE4vHzdHMC4pHDZJVFlUTDUgHhYWFRJKPhszHxkeOw5AQA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QEC+aXYV49Z\\/ExLWp0Og\\/U0J4w9QNYhYnDjnfsYSyng=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770993851,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:11.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:44:12'),
(9455, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:12.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:44:12'),
(9456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:44:11.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:44:13'),
(9457, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:40.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:51:40'),
(9458, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5A17854D39064B7C20E8717E7F4F38D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wHNRODP0-2P6M3-5S09eavm1RiaRYU5Pyy8E62u5jDt6w&oe=69B6B062&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"qVsKcm\\/zbtvMHsOKgYBKCj+OPwlzsWUF\\/Zll57pWJik=\",\"fileEncSha256\":\"eNzyxKRw1wSwqKJ32Xno95N3xlsIAnmmTfpLzSnp7P8=\",\"mediaKey\":\"ZVBWeu0WrNNmlzH+WM+2oVIR3Dv+4fsxjfLQWGZvFcI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wHNRODP0-2P6M3-5S09eavm1RiaRYU5Pyy8E62u5jDt6w&oe=69B6B062&_nc_sid=5e03e0\",\"fileLength\":\"14126\",\"mediaKeyTimestamp\":\"1770994299\",\"isAnimated\":false,\"stickerSentTs\":\"1770994299560\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770994300,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:40.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:51:40'),
(9459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:40.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:51:40'),
(9460, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:40.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:51:40'),
(9461, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5A17854D39064B7C20E8717E7F4F38D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wHNRODP0-2P6M3-5S09eavm1RiaRYU5Pyy8E62u5jDt6w&oe=69B6B062&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"qVsKcm\\/zbtvMHsOKgYBKCj+OPwlzsWUF\\/Zll57pWJik=\",\"fileEncSha256\":\"eNzyxKRw1wSwqKJ32Xno95N3xlsIAnmmTfpLzSnp7P8=\",\"mediaKey\":\"ZVBWeu0WrNNmlzH+WM+2oVIR3Dv+4fsxjfLQWGZvFcI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wHNRODP0-2P6M3-5S09eavm1RiaRYU5Pyy8E62u5jDt6w&oe=69B6B062&_nc_sid=5e03e0\",\"fileLength\":\"14126\",\"mediaKeyTimestamp\":\"1770994299\",\"isAnimated\":false,\"stickerSentTs\":\"1770994299560\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770994300,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:40.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:51:40'),
(9462, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:40.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:51:40'),
(9463, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5A17854D39064B7C20E8717E7F4F38D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770994301429,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:41.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:51:41'),
(9464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5A17854D39064B7C20E8717E7F4F38D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770994301429,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:41.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:51:43'),
(9465, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5A17854D39064B7C20E8717E7F4F38D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770994317088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:57.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:51:57'),
(9466, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5A17854D39064B7C20E8717E7F4F38D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770994317088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:57.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:51:57'),
(9467, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:59.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:51:59'),
(9468, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:51:59.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:52:00'),
(9469, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:06.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:52:06'),
(9470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:06.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:52:06'),
(9471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:52:08'),
(9472, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:52:08'),
(9473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:52:08'),
(9474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5C859AEE0539D6C6744D3C0A1FEDEC7\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32802989_2376620499510104_1783430464991409510_n.enc?ccb=11-4&oh=01_Q5Aa3wF8tqxzgQl4iCSfW1sSzrptnqztkIlmooffGGkfZUhb5g&oe=69B6C0C0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"78SrEMlsgZsSvyKSN5B2wSy0IPAdfNFaj1dyItqRxUQ=\",\"fileLength\":\"15361\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"LJH03sACWZ2waSbAGmHBz9gqnEXdrH4V0kFHWzlIyg0=\",\"fileEncSha256\":\"YHP5qBcW+VWBIdqF3DJ8zHhTb7FEbSySvh8pfbYteJk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32802989_2376620499510104_1783430464991409510_n.enc?ccb=11-4&oh=01_Q5Aa3wF8tqxzgQl4iCSfW1sSzrptnqztkIlmooffGGkfZUhb5g&oe=69B6C0C0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770994321\",\"waveform\":\"WGBCQUA+RGJPWE1VV0dDQFNbTVtbNlZIVVliWVBDQD0+PzczNzs3QFxgW2NGWEc+OlA4SVE+RlVPPUBBQj4\\/Og==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5DZW2d3koxfBi6bjh8wcJduJfYgoFBrBVuyuIlGCXjc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770994328,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:52:08'),
(9475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:52:08'),
(9476, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5C859AEE0539D6C6744D3C0A1FEDEC7\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32802989_2376620499510104_1783430464991409510_n.enc?ccb=11-4&oh=01_Q5Aa3wF8tqxzgQl4iCSfW1sSzrptnqztkIlmooffGGkfZUhb5g&oe=69B6C0C0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"78SrEMlsgZsSvyKSN5B2wSy0IPAdfNFaj1dyItqRxUQ=\",\"fileLength\":\"15361\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"LJH03sACWZ2waSbAGmHBz9gqnEXdrH4V0kFHWzlIyg0=\",\"fileEncSha256\":\"YHP5qBcW+VWBIdqF3DJ8zHhTb7FEbSySvh8pfbYteJk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32802989_2376620499510104_1783430464991409510_n.enc?ccb=11-4&oh=01_Q5Aa3wF8tqxzgQl4iCSfW1sSzrptnqztkIlmooffGGkfZUhb5g&oe=69B6C0C0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770994321\",\"waveform\":\"WGBCQUA+RGJPWE1VV0dDQFNbTVtbNlZIVVliWVBDQD0+PzczNzs3QFxgW2NGWEc+OlA4SVE+RlVPPUBBQj4\\/Og==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5DZW2d3koxfBi6bjh8wcJduJfYgoFBrBVuyuIlGCXjc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1770994328,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:52:09'),
(9477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 11:52:09'),
(9478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T11:52:08.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 11:52:09'),
(9479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:11.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:12'),
(9480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:12.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:12'),
(9481, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E7BB0999721FDDB4260D1A54292AB7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995052113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:12.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:12'),
(9482, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:11.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:12'),
(9483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E7BB0999721FDDB4260D1A54292AB7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995052113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:12.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:12'),
(9484, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E7BB0999721FDDB4260D1A54292AB7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995051,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:11.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:20'),
(9485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:12.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:20'),
(9486, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E7BB0999721FDDB4260D1A54292AB7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995051,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:11.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:21'),
(9487, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:30'),
(9488, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:30'),
(9489, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A58712A32B0DFED70BDC7C9CD7E13275\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/buscar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995069,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:30'),
(9490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:30'),
(9491, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58712A32B0DFED70BDC7C9CD7E13275\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995070373,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:04:30'),
(9492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:30'),
(9493, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58712A32B0DFED70BDC7C9CD7E13275\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995070373,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:30'),
(9494, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A58712A32B0DFED70BDC7C9CD7E13275\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/buscar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995069,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:04:30.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:04:31'),
(9495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A532AB9FC2E2599DDDB39CE327A1DF99\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Feito gay\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995311,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:31.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:08:32'),
(9496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:31.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:08:32'),
(9497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:31.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:08:32'),
(9498, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:31.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:08:32'),
(9499, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A532AB9FC2E2599DDDB39CE327A1DF99\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Feito gay\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995311,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:31.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:08:32'),
(9500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wECuoOKUZSWkNIF8ctneU0rq1aZKz9cx6n8dA1_u-46qg&oe=699C5E35&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:31.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:08:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9501, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A532AB9FC2E2599DDDB39CE327A1DF99\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995312401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:32.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:08:33'),
(9502, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A532AB9FC2E2599DDDB39CE327A1DF99\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995312401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:08:32.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:08:34'),
(9503, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A500C14945BE0FA03041468715E6C28F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995612,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:13:33'),
(9504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:13:33'),
(9505, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A500C14945BE0FA03041468715E6C28F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995612897,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:13:33'),
(9506, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:13:33'),
(9507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:13:33'),
(9508, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A500C14945BE0FA03041468715E6C28F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995612897,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:13:33'),
(9509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWb6pzi__bbHe6Qk9wBez6TSGueiZfPHgxtRN46PUf1g&oe=699C40B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:13:33'),
(9510, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02413D241EBC70B345B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995613,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:33.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:13:33'),
(9511, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A500C14945BE0FA03041468715E6C28F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770995612,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:32.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:13:33'),
(9512, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02413D241EBC70B345B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995613,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:33.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:13:34'),
(9513, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DF4451126F3418DBFF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995614,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:34.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:13:34'),
(9514, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DF4451126F3418DBFF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995614,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:13:34.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:13:34'),
(9515, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:08.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:09'),
(9516, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A54D1DC0125DEC9CB14F1322F5302754\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Carol\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4885},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4885},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995648,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:08.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:09'),
(9517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:08.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:09'),
(9518, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A54D1DC0125DEC9CB14F1322F5302754\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Carol\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4885},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4885},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995648,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:08.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:09'),
(9519, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:09.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:09'),
(9520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:09.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:09'),
(9521, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A59C0287F02500D0830BAE891F369B6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4911},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4911},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995673,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:33.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:34'),
(9522, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:33.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:34'),
(9523, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:33.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:34'),
(9524, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:34.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:34'),
(9525, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FA3885B987BB2E8A30\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995674,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:34.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:34'),
(9526, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FA3885B987BB2E8A30\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995674,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:34.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:35'),
(9527, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A59C0287F02500D0830BAE891F369B6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4911},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4911},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995673,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:33.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:35'),
(9528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:34.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:35'),
(9529, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08F986A5E50E19DCA0B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995675,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:35.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:35'),
(9530, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08F986A5E50E19DCA0B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995675,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:35.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:35'),
(9531, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A5830BF1497EEA88D0FDC453D46A23\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Carol\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4915},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4915},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995679,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:39.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:39'),
(9532, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:39.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:39'),
(9533, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A5830BF1497EEA88D0FDC453D46A23\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Carol\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4915},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4915},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995679,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:39.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:39'),
(9534, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:39.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:39'),
(9535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:39.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:39'),
(9536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:39.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:40'),
(9537, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CF9ABDE36150AECD9B3367B3C82C20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4927},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4927},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995689,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:49.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:50'),
(9538, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:49.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:50'),
(9539, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:49.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:50'),
(9540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:50.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:50'),
(9541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:50.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:50'),
(9542, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB092CD7DA7FDED097363\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995690,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:50.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:50'),
(9543, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB092CD7DA7FDED097363\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995690,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:50.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:50'),
(9544, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CF9ABDE36150AECD9B3367B3C82C20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4927},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4927},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770995689,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:49.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:52'),
(9545, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB090B9C9BE48B71755E7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995692,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:52.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:14:52'),
(9546, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB090B9C9BE48B71755E7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770995692,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:14:52.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:14:52'),
(9547, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995722590,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:22.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:22'),
(9548, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995722590,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:22.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:22'),
(9549, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:23'),
(9550, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/21393373_1933219570602749_3975754424889594379_n.enc?ccb=11-4&oh=01_Q5Aa3wEk3XMuH1ceTLubgtyLEi7xt3MRDawYptWUjKh3RDsS8w&oe=69B6992C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"1COABZ0jvIdu37My280TAaCHeF+bbUytlp9rLYOFYzY=\",\"fileLength\":\"123416\",\"height\":1600,\"width\":738,\"mediaKey\":\"FRA027EHZl6jKER+THBEBqwb2D6xok5XYSzRWpVe8HQ=\",\"fileEncSha256\":\"AslQEMutn6aO5pQByDpIbIvqJYsgNCOHTj9H0C4YRug=\",\"directPath\":\"\\/v\\/t62.7118-24\\/21393373_1933219570602749_3975754424889594379_n.enc?ccb=11-4&oh=01_Q5Aa3wEk3XMuH1ceTLubgtyLEi7xt3MRDawYptWUjKh3RDsS8w&oe=69B6992C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995721\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAEAAwEBAAAAAAAAAAAAAAADAAECBAUBAQEBAAAAAAAAAAAAAAAAAAEAAv\\/aAAwDAQACEAMQAAAA9tYeRdDuMA5hlzQLFRVbJgrn6cOiaqhtSb3OSSv\\/xAAkEAACAgICAQMFAAAAAAAAAAABAgARAyESMQQTIkEyUVJhcf\\/aAAgBAQABPwDMc1pwUHe5bAEAQfdtTRMbQnJ\\/1AQw3UFTL9BmMjdmKUojcSviZACpuKR1qK3YNRT\\/ACo9Vue38DAqtuoFAOo5pZfdGJy+TFEyC1MVVINtE4b3FIuOpYUJ6ZgxmFhjI5EAGcYNTueT4aeTVsRU\\/8QAGREAAwADAAAAAAAAAAAAAAAAAAEQERIg\\/9oACAECAQE\\/AMmw44+P\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgABEDEREiD\\/2gAIAQMBAT8Ad8LZFcFcFfH\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"4SxCaZTxEaK6MdW0uIGi9eD7WqndY68Y4WXp72Dzgivj1JlTdlBVbw==\",\"scanLengths\":[9761,61559,23138,28958],\"midQualityFileSha256\":\"7xvDXbHLz01xA5s7\\/Aoxi+BjpG4pvEly2WP1hLbPFew=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770995723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:23'),
(9551, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:23'),
(9552, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/21393373_1933219570602749_3975754424889594379_n.enc?ccb=11-4&oh=01_Q5Aa3wEk3XMuH1ceTLubgtyLEi7xt3MRDawYptWUjKh3RDsS8w&oe=69B6992C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"1COABZ0jvIdu37My280TAaCHeF+bbUytlp9rLYOFYzY=\",\"fileLength\":\"123416\",\"height\":1600,\"width\":738,\"mediaKey\":\"FRA027EHZl6jKER+THBEBqwb2D6xok5XYSzRWpVe8HQ=\",\"fileEncSha256\":\"AslQEMutn6aO5pQByDpIbIvqJYsgNCOHTj9H0C4YRug=\",\"directPath\":\"\\/v\\/t62.7118-24\\/21393373_1933219570602749_3975754424889594379_n.enc?ccb=11-4&oh=01_Q5Aa3wEk3XMuH1ceTLubgtyLEi7xt3MRDawYptWUjKh3RDsS8w&oe=69B6992C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995721\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAEAAwEBAAAAAAAAAAAAAAADAAECBAUBAQEBAAAAAAAAAAAAAAAAAAEAAv\\/aAAwDAQACEAMQAAAA9tYeRdDuMA5hlzQLFRVbJgrn6cOiaqhtSb3OSSv\\/xAAkEAACAgICAQMFAAAAAAAAAAABAgARAyESMQQTIkEyUVJhcf\\/aAAgBAQABPwDMc1pwUHe5bAEAQfdtTRMbQnJ\\/1AQw3UFTL9BmMjdmKUojcSviZACpuKR1qK3YNRT\\/ACo9Vue38DAqtuoFAOo5pZfdGJy+TFEyC1MVVINtE4b3FIuOpYUJ6ZgxmFhjI5EAGcYNTueT4aeTVsRU\\/8QAGREAAwADAAAAAAAAAAAAAAAAAAEQERIg\\/9oACAECAQE\\/AMmw44+P\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgABEDEREiD\\/2gAIAQMBAT8Ad8LZFcFcFfH\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"4SxCaZTxEaK6MdW0uIGi9eD7WqndY68Y4WXp72Dzgivj1JlTdlBVbw==\",\"scanLengths\":[9761,61559,23138,28958],\"midQualityFileSha256\":\"7xvDXbHLz01xA5s7\\/Aoxi+BjpG4pvEly2WP1hLbPFew=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770995723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:23'),
(9553, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995723426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:23'),
(9554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:24'),
(9555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995723426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:24'),
(9556, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:23.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:24'),
(9557, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"As5t8h7EUdMmYcQbkO4SxgmrO\\/mc\\/Q1ryuM+qxDupZQ=\",\"fileLength\":\"51890\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"bzorW5pLYhYtBq2rIn9Ucq5UmHCsFLSO+kMw8VH9YvI=\",\"fileEncSha256\":\"tP69kOL8ZwDy5il5tTiKuZR+Jx2vvrzHlg03P4eHQwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995724\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABdWRVlYOVlNPg1YOx0KVzUwTEgFGFlNXygMCj5IVCtNTEkJEkY0S1hUEQNeQj1IPjVCSlc9UB5RVyUCAwdUHA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770995746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:46.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:47'),
(9558, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:46.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9559, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"As5t8h7EUdMmYcQbkO4SxgmrO\\/mc\\/Q1ryuM+qxDupZQ=\",\"fileLength\":\"51890\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"bzorW5pLYhYtBq2rIn9Ucq5UmHCsFLSO+kMw8VH9YvI=\",\"fileEncSha256\":\"tP69kOL8ZwDy5il5tTiKuZR+Jx2vvrzHlg03P4eHQwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995724\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABdWRVlYOVlNPg1YOx0KVzUwTEgFGFlNXygMCj5IVCtNTEkJEkY0S1hUEQNeQj1IPjVCSlc9UB5RVyUCAwdUHA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770995746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:46.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:47'),
(9560, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:46.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:47'),
(9561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995747234,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:47.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:47'),
(9562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995747234,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:47.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:48'),
(9563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995747244,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:47.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:48'),
(9564, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:47.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:15:48'),
(9565, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995747244,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:47.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:48'),
(9566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:15:47.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:15:48'),
(9567, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635129531_1928788941344638_4516251083080643022_n.enc?ccb=11-4&oh=01_Q5Aa3wENhuiAZnxNhF3oECcs-1B6dt8jrmeO3MntF5UfH8te-A&oe=69B6BCAE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cQSq2VUi4XS1KnvtYvOzxHLJKRAEP8\\/vNB1LCYwHbj0=\",\"fileLength\":\"123968\",\"seconds\":56,\"ptt\":true,\"mediaKey\":\"pJyeczu3\\/miyNBvk3qO94Ooy+AGs80VmWVS86wlj1pU=\",\"fileEncSha256\":\"l6xP1uzaoXKHq3ZFH+7Y7IG1Pz48f\\/e97I5+eJJR49g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635129531_1928788941344638_4516251083080643022_n.enc?ccb=11-4&oh=01_Q5Aa3wENhuiAZnxNhF3oECcs-1B6dt8jrmeO3MntF5UfH8te-A&oe=69B6BCAE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995780\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABhWGTxCSwBYVVhVC0cxYUgMVjdOVTEUVlBGAEo7TwJfVlM0SglXVQBXP0A7QBRLUE9YS01POlBPAVNaNzAHDg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770995835,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:15'),
(9568, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:15'),
(9569, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635129531_1928788941344638_4516251083080643022_n.enc?ccb=11-4&oh=01_Q5Aa3wENhuiAZnxNhF3oECcs-1B6dt8jrmeO3MntF5UfH8te-A&oe=69B6BCAE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cQSq2VUi4XS1KnvtYvOzxHLJKRAEP8\\/vNB1LCYwHbj0=\",\"fileLength\":\"123968\",\"seconds\":56,\"ptt\":true,\"mediaKey\":\"pJyeczu3\\/miyNBvk3qO94Ooy+AGs80VmWVS86wlj1pU=\",\"fileEncSha256\":\"l6xP1uzaoXKHq3ZFH+7Y7IG1Pz48f\\/e97I5+eJJR49g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635129531_1928788941344638_4516251083080643022_n.enc?ccb=11-4&oh=01_Q5Aa3wENhuiAZnxNhF3oECcs-1B6dt8jrmeO3MntF5UfH8te-A&oe=69B6BCAE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995780\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABhWGTxCSwBYVVhVC0cxYUgMVjdOVTEUVlBGAEo7TwJfVlM0SglXVQBXP0A7QBRLUE9YS01POlBPAVNaNzAHDg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770995835,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:16'),
(9570, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:16'),
(9571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:16'),
(9572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995835950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:16'),
(9573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995835950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:16'),
(9574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:15.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:17'),
(9575, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995836762,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:16.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:17'),
(9576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995836762,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:16.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:17'),
(9577, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:27'),
(9578, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:27'),
(9579, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/13848316_1622851742186865_7072172318054700238_n.enc?ccb=11-4&oh=01_Q5Aa3wH0cHIwtN_J1mEvxoAvElMX8lftagp2iGZk0RDQiD54Sg&oe=69B695A2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3Qw0oinvb6tsDq21d0krJYQE78W5CUI\\/CVcdRdBWj+Y=\",\"fileLength\":\"24487\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"kjePw7WswzmhFBm7lNpi1riKR9mW0wescnFdP+cnMuY=\",\"fileEncSha256\":\"R9Cgdxv77jbCC1BjBg16QMfglz2KDwGY\\/brIeSkw7gc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/13848316_1622851742186865_7072172318054700238_n.enc?ccb=11-4&oh=01_Q5Aa3wH0cHIwtN_J1mEvxoAvElMX8lftagp2iGZk0RDQiD54Sg&oe=69B695A2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995838\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABYaGEdiLUZBWF9TXRZhUFFLRjdCOFhJQTxOVDJVNj1NRRofJShQXiVIWDhAS15VNE5RAAAAMkxOVTlVPkxWQg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770995847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:27'),
(9580, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995847667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:27'),
(9581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995847705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:27'),
(9582, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/13848316_1622851742186865_7072172318054700238_n.enc?ccb=11-4&oh=01_Q5Aa3wH0cHIwtN_J1mEvxoAvElMX8lftagp2iGZk0RDQiD54Sg&oe=69B695A2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3Qw0oinvb6tsDq21d0krJYQE78W5CUI\\/CVcdRdBWj+Y=\",\"fileLength\":\"24487\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"kjePw7WswzmhFBm7lNpi1riKR9mW0wescnFdP+cnMuY=\",\"fileEncSha256\":\"R9Cgdxv77jbCC1BjBg16QMfglz2KDwGY\\/brIeSkw7gc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/13848316_1622851742186865_7072172318054700238_n.enc?ccb=11-4&oh=01_Q5Aa3wH0cHIwtN_J1mEvxoAvElMX8lftagp2iGZk0RDQiD54Sg&oe=69B695A2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995838\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABYaGEdiLUZBWF9TXRZhUFFLRjdCOFhJQTxOVDJVNj1NRRofJShQXiVIWDhAS15VNE5RAAAAMkxOVTlVPkxWQg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770995847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:28'),
(9583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:17:28'),
(9584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995847705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:28'),
(9585, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770995847667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:28'),
(9586, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:17:27.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:17:28'),
(9587, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:31'),
(9588, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:31'),
(9589, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211640,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:31'),
(9590, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211645,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:32'),
(9591, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:32'),
(9592, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:32'),
(9593, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211640,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:32'),
(9594, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770996211645,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:31.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:32'),
(9595, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770996213530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:33.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:33'),
(9596, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770996213530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:33.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:33'),
(9597, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770996235266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:55.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:55'),
(9598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770996235266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:55.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:55'),
(9599, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:59.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:23:59'),
(9600, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:23:59.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:23:59'),
(9601, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:01.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:01'),
(9602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5A48CEE6725669E9642BDCEAA936216\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ai sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"As5t8h7EUdMmYcQbkO4SxgmrO\\/mc\\/Q1ryuM+qxDupZQ=\",\"fileLength\":\"51890\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"bzorW5pLYhYtBq2rIn9Ucq5UmHCsFLSO+kMw8VH9YvI=\",\"fileEncSha256\":\"tP69kOL8ZwDy5il5tTiKuZR+Jx2vvrzHlg03P4eHQwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995724\",\"waveform\":\"ABdWRVlYOVlNPg1YOx0KVzUwTEgFGFlNXygMCj5IVCtNTEkJEkY0S1hUEQNeQj1IPjVCSlc9UB5RVyUCAwdUHA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"veXe90pSvm0ZngVWISt\\/RMSqPqQOQo1uWJ114S14ybk=\"}},\"contextInfo\":{\"stanzaId\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"As5t8h7EUdMmYcQbkO4SxgmrO\\/mc\\/Q1ryuM+qxDupZQ=\",\"fileLength\":\"51890\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"bzorW5pLYhYtBq2rIn9Ucq5UmHCsFLSO+kMw8VH9YvI=\",\"fileEncSha256\":\"tP69kOL8ZwDy5il5tTiKuZR+Jx2vvrzHlg03P4eHQwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995724\",\"waveform\":\"ABdWRVlYOVlNPg1YOx0KVzUwTEgFGFlNXygMCj5IVCtNTEkJEkY0S1hUEQNeQj1IPjVCSlc9UB5RVyUCAwdUHA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770996241,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:01.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:01'),
(9603, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:01.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:02'),
(9604, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5A48CEE6725669E9642BDCEAA936216\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ai sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"As5t8h7EUdMmYcQbkO4SxgmrO\\/mc\\/Q1ryuM+qxDupZQ=\",\"fileLength\":\"51890\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"bzorW5pLYhYtBq2rIn9Ucq5UmHCsFLSO+kMw8VH9YvI=\",\"fileEncSha256\":\"tP69kOL8ZwDy5il5tTiKuZR+Jx2vvrzHlg03P4eHQwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995724\",\"waveform\":\"ABdWRVlYOVlNPg1YOx0KVzUwTEgFGFlNXygMCj5IVCtNTEkJEkY0S1hUEQNeQj1IPjVCSlc9UB5RVyUCAwdUHA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"veXe90pSvm0ZngVWISt\\/RMSqPqQOQo1uWJ114S14ybk=\"}},\"contextInfo\":{\"stanzaId\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"As5t8h7EUdMmYcQbkO4SxgmrO\\/mc\\/Q1ryuM+qxDupZQ=\",\"fileLength\":\"51890\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"bzorW5pLYhYtBq2rIn9Ucq5UmHCsFLSO+kMw8VH9YvI=\",\"fileEncSha256\":\"tP69kOL8ZwDy5il5tTiKuZR+Jx2vvrzHlg03P4eHQwA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635573667_2177560946386225_8839959249038411382_n.enc?ccb=11-4&oh=01_Q5Aa3wFAX0sDs1ladf_-F5sxsH1vADNYCoKiDGTCX_h5IYDoEw&oe=69B6A5E9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770995724\",\"waveform\":\"ABdWRVlYOVlNPg1YOx0KVzUwTEgFGFlNXygMCj5IVCtNTEkJEkY0S1hUEQNeQj1IPjVCSlc9UB5RVyUCAwdUHA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770996241,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:01.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:02'),
(9605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:02.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:02'),
(9606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:02.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:02'),
(9607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:02.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:02'),
(9608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:02.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:02'),
(9609, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770996286676,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:46.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:47'),
(9610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1770996286676,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:46.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:47'),
(9611, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:48.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:48'),
(9612, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:48.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:49'),
(9613, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5D90D01B5C77CEF7E015C6E58952937\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Mas nao renova no painel.ne\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QpCrCfPwhEi0KD6r1EN90KvgTwAYqRb89ZHYSDH+1uA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770996296,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:56.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:56'),
(9614, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:56.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:56'),
(9615, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:56.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:57'),
(9616, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:57.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:57'),
(9617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5D90D01B5C77CEF7E015C6E58952937\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Mas nao renova no painel.ne\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QpCrCfPwhEi0KD6r1EN90KvgTwAYqRb89ZHYSDH+1uA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770996296,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:56.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:57'),
(9618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:57.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:57');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:57.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:24:57'),
(9620, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:24:57.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:24:57'),
(9621, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627778512_1226035296172458_8688751068967163505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcDGUBv5ZQJSSIbtvtKm9KHv1NJR8jB8nY4rczCkHVRQ&oe=699C65C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"555185005078@s.whatsapp.net\",\"pushName\":\"Josué Moto táxi\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419002484_7577696049014649_146220291945263167_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4Q2wZku50t-lIrvOq_7t8nf7um4f8tLDvKzoO2MjqZA&oe=699C3C41&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:25:31.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:25:31'),
(9622, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997316642@s.whatsapp.net\",\"pushName\":\"Leôncio 6642 $25 Vivo J. S.\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627778512_1226035296172458_8688751068967163505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcDGUBv5ZQJSSIbtvtKm9KHv1NJR8jB8nY4rczCkHVRQ&oe=699C65C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"555185005078@s.whatsapp.net\",\"pushName\":\"Josué Moto táxi\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419002484_7577696049014649_146220291945263167_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4Q2wZku50t-lIrvOq_7t8nf7um4f8tLDvKzoO2MjqZA&oe=699C3C41&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:25:31.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:25:32'),
(9623, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:38.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:38'),
(9624, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:38.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:39'),
(9625, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:40.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:40'),
(9626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:40.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:40'),
(9627, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:41.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:41'),
(9628, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:41.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:41'),
(9629, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:42.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:42'),
(9630, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:42.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:43'),
(9631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AD61D542BF312E3F1A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996702,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:42.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:43'),
(9632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:43.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:43'),
(9633, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:42.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:43'),
(9634, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:43.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:43'),
(9635, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:42.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:43'),
(9636, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05617E48065B589A606\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996703,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:43.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:43'),
(9637, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05617E48065B589A606\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996703,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:43.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:43'),
(9638, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AD61D542BF312E3F1A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996702,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:42.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:44'),
(9639, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB004B9CA8294B52E284E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996704,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:44.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:45'),
(9640, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB004B9CA8294B52E284E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996704,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:44.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:45'),
(9641, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:49.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:50'),
(9642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:49.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:50'),
(9643, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:51.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:51'),
(9644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:51.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:51'),
(9645, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05CD5E4E87473DF4D20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"livia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996711,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:51.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:51'),
(9646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:51.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:52'),
(9647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:51.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:52'),
(9648, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09B847A723BCC7EA971\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *livia*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996712,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:52.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:52'),
(9649, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05CD5E4E87473DF4D20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"livia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996711,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:51.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:52'),
(9650, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09B847A723BCC7EA971\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *livia*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996712,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:52.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:52'),
(9651, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005605F6B871E5230DA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996712,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:52.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:53'),
(9652, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005605F6B871E5230DA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996712,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:52.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:53'),
(9653, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:58.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:31:59'),
(9654, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:31:58.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:31:59'),
(9655, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:03.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:03'),
(9656, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01F16907E496393355D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4700000000\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996723,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:03.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:03'),
(9657, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:03.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:03'),
(9658, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:03.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:04'),
(9659, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DF38C5525B9B639778\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 0000-0000*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996723,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:04.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:04'),
(9660, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:03.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:04'),
(9661, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01F16907E496393355D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4700000000\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996723,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:03.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:04'),
(9662, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DF38C5525B9B639778\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 0000-0000*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996723,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:04.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:04'),
(9663, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F261414F2567E821\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 4.700.000.000,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996724,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:04.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:05'),
(9664, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F261414F2567E821\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 4.700.000.000,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996724,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:04.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:06'),
(9665, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:40.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:40'),
(9666, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:40.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:40'),
(9667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:42'),
(9668, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:42'),
(9669, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0161B2D82DF546A374A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"30\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996761,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:42'),
(9670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:42'),
(9671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:42'),
(9672, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB088C7F2DB68E630EC84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996762,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:42'),
(9673, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0161B2D82DF546A374A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"30\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996761,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:43'),
(9674, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E485C71947B936A1D7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996763,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:43.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:43'),
(9675, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E485C71947B936A1D7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996763,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:43.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:43'),
(9676, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB088C7F2DB68E630EC84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770996762,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:42.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:43'),
(9677, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:45.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:45'),
(9678, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:45.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:45'),
(9679, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB099E3822D10855F59B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996768,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:48.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 12:32:48'),
(9680, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:48.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:48'),
(9681, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB099E3822D10855F59B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996768,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:48.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 12:32:48'),
(9682, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:48.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:48'),
(9683, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:48.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:32:48'),
(9684, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:32:48.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:32:49'),
(9685, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:00.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:00'),
(9686, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:00.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:00'),
(9687, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:01.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:01'),
(9688, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:01.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:01'),
(9689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:01.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:01'),
(9690, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D26515CBE0C3E34641\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"2\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996781,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:01.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 12:33:01'),
(9691, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D26515CBE0C3E34641\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"2\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996781,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:01.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 12:33:01'),
(9692, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:01.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:02'),
(9693, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:06.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:06');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9694, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:06.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:06'),
(9695, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:06.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:06'),
(9696, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03DA89DA9E9BBEB3B14\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"3\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996786,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:06.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 12:33:06'),
(9697, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03DA89DA9E9BBEB3B14\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"3\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996786,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:06.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 12:33:07'),
(9698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:06.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:07'),
(9699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:07.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:07'),
(9700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:07.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:07'),
(9701, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:07.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:07'),
(9702, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:08.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:08'),
(9703, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB089C873B2A4B1950049\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996788,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:08.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 12:33:08'),
(9704, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:07.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:08'),
(9705, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB089C873B2A4B1950049\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996788,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:08.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 12:33:08'),
(9706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:08.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:08'),
(9707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:08.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:09'),
(9708, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:08.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:09'),
(9709, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:14.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:15'),
(9710, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:14.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:15'),
(9711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:16.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:16'),
(9712, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C95DDB5055095D838\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1️⃣\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996796,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:16.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 12:33:16'),
(9713, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:16.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:16'),
(9714, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C95DDB5055095D838\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1️⃣\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770996796,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:16.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 12:33:16'),
(9715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:16.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:16'),
(9716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:16.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:17'),
(9717, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996825702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:45.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:45'),
(9718, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996825840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:45.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:45'),
(9719, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996825702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:45.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:45'),
(9720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996825840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:45.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:46'),
(9721, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:46.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:46'),
(9722, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A560235919CBB732D123C257C9D33BB0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593469617_920568670512295_978257146349101758_n.enc?ccb=11-4&oh=01_Q5Aa3wE11SjV-g_nLQ-zjR8AunNkKH_celnDh6ULyu0x-HJXRw&oe=69B6BF42&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hmJ2Eo1OAZLwo8FAsY7SBTeMZ0ikO3DGN35rGfxlJH4=\",\"fileLength\":\"20450\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"WGfulSDdSlwPxEAL1ITeZAPOzIRQbDDsUxY059Ld3To=\",\"fileEncSha256\":\"phEdbggpmM6YK9Icdlwpqz8vfQtQKz1xj5iJ\\/aab05I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593469617_920568670512295_978257146349101758_n.enc?ccb=11-4&oh=01_Q5Aa3wE11SjV-g_nLQ-zjR8AunNkKH_celnDh6ULyu0x-HJXRw&oe=69B6BF42&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770996817\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAEEBi9jTlZYWjxQTk9VP1YvJVYlRyklHVBKFVUxSxgACyE+PlBNRUw\\/S0NESE9ELEYvLC1LSShJRDFIOUExQQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770996826,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:46.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:46'),
(9723, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:46.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:46'),
(9724, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A560235919CBB732D123C257C9D33BB0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593469617_920568670512295_978257146349101758_n.enc?ccb=11-4&oh=01_Q5Aa3wE11SjV-g_nLQ-zjR8AunNkKH_celnDh6ULyu0x-HJXRw&oe=69B6BF42&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hmJ2Eo1OAZLwo8FAsY7SBTeMZ0ikO3DGN35rGfxlJH4=\",\"fileLength\":\"20450\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"WGfulSDdSlwPxEAL1ITeZAPOzIRQbDDsUxY059Ld3To=\",\"fileEncSha256\":\"phEdbggpmM6YK9Icdlwpqz8vfQtQKz1xj5iJ\\/aab05I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593469617_920568670512295_978257146349101758_n.enc?ccb=11-4&oh=01_Q5Aa3wE11SjV-g_nLQ-zjR8AunNkKH_celnDh6ULyu0x-HJXRw&oe=69B6BF42&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770996817\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAEEBi9jTlZYWjxQTk9VP1YvJVYlRyklHVBKFVUxSxgACyE+PlBNRUw\\/S0NESE9ELEYvLC1LSShJRDFIOUExQQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1770996826,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:46.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:46'),
(9725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:47.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:33:47'),
(9726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:33:47.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:33:47'),
(9727, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/587154967_2010565126543799_2647714001876487637_n.enc?ccb=11-4&oh=01_Q5Aa3wG_DYhCPEcSJMUvtKq1jqal-X4Zm2lKJwgLQY9HGtutbw&oe=69B69ADC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"lj8vN2iadEtczs+EgAJ\\/HufLLY+LzE+lO91dR3zOJ8Y=\",\"fileLength\":\"159397\",\"height\":1599,\"width\":899,\"mediaKey\":\"qRzPB2VtdJGkDY243PXl1llP1rnYAsQ6+Fe\\/pR82QMw=\",\"fileEncSha256\":\"zxHKIsq5Qo\\/8Km8cy1T0\\/QvsTX4\\/T71F\\/FdqYdzdCfw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/587154967_2010565126543799_2647714001876487637_n.enc?ccb=11-4&oh=01_Q5Aa3wG_DYhCPEcSJMUvtKq1jqal-X4Zm2lKJwgLQY9HGtutbw&oe=69B69ADC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770996878\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAwQBAgUBAQADAQAAAAAAAAAAAAAAAAEAAgME\\/9oADAMBAAIQAxAAAACRyKQ7S7kwgAt0U1QuK2odPMIjB6cZP2T1JlcuCBY75iuCU4gRwkj\\/AP\\/EACIQAAICAwACAQUAAAAAAAAAAAABAhEDEiEQE1IgIjNBUf\\/aAAgBAQABPwBsxfsk5yVNmVfa\\/MIurRpMzRqL8JR49iDhVbG0eJSZnb1afhMxNWJQ6Zvxll0KXURcGjPLhb\\/g2Y05uk6HkfyMs04rvTdm6FkSFlie3j4eyPxNeJ\\/T\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAABEw\\/9oACAECAQE\\/AJs\\/\\/8QAHREAAgIBBQAAAAAAAAAAAAAAARAAIQIREjEyQf\\/aAAgBAwEBPwDPiei1kKg7B7bBei\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"JscJnbe4jZsuhM0xOeCPTWC+bg14H0XiNJY1JQoTHlJdRZzydtc9Lg==\",\"scanLengths\":[13478,63486,32536,49897],\"midQualityFileSha256\":\"GmnVSBnbsM2FkyIh7Wx+veYF7ZgK0koyhJH1KHHU8Fo=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770996879,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:39'),
(9728, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/587154967_2010565126543799_2647714001876487637_n.enc?ccb=11-4&oh=01_Q5Aa3wG_DYhCPEcSJMUvtKq1jqal-X4Zm2lKJwgLQY9HGtutbw&oe=69B69ADC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"lj8vN2iadEtczs+EgAJ\\/HufLLY+LzE+lO91dR3zOJ8Y=\",\"fileLength\":\"159397\",\"height\":1599,\"width\":899,\"mediaKey\":\"qRzPB2VtdJGkDY243PXl1llP1rnYAsQ6+Fe\\/pR82QMw=\",\"fileEncSha256\":\"zxHKIsq5Qo\\/8Km8cy1T0\\/QvsTX4\\/T71F\\/FdqYdzdCfw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/587154967_2010565126543799_2647714001876487637_n.enc?ccb=11-4&oh=01_Q5Aa3wG_DYhCPEcSJMUvtKq1jqal-X4Zm2lKJwgLQY9HGtutbw&oe=69B69ADC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770996878\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAwQBAgUBAQADAQAAAAAAAAAAAAAAAAEAAgME\\/9oADAMBAAIQAxAAAACRyKQ7S7kwgAt0U1QuK2odPMIjB6cZP2T1JlcuCBY75iuCU4gRwkj\\/AP\\/EACIQAAICAwACAQUAAAAAAAAAAAABAhEDEiEQE1IgIjNBUf\\/aAAgBAQABPwBsxfsk5yVNmVfa\\/MIurRpMzRqL8JR49iDhVbG0eJSZnb1afhMxNWJQ6Zvxll0KXURcGjPLhb\\/g2Y05uk6HkfyMs04rvTdm6FkSFlie3j4eyPxNeJ\\/T\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAABEw\\/9oACAECAQE\\/AJs\\/\\/8QAHREAAgIBBQAAAAAAAAAAAAAAARAAIQIREjEyQf\\/aAAgBAwEBPwDPiei1kKg7B7bBei\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"JscJnbe4jZsuhM0xOeCPTWC+bg14H0XiNJY1JQoTHlJdRZzydtc9Lg==\",\"scanLengths\":[13478,63486,32536,49897],\"midQualityFileSha256\":\"GmnVSBnbsM2FkyIh7Wx+veYF7ZgK0koyhJH1KHHU8Fo=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770996879,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:39'),
(9729, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:39'),
(9730, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996879524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:39'),
(9731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:39'),
(9732, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:40'),
(9733, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996880328,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:40.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:40'),
(9734, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996879524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:40'),
(9735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:39.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:40'),
(9736, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996880328,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:40.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:40'),
(9737, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wEWs-QUBArNTq7rJ1pZ9TiTkrK5WGJ0Cvgf4NlZMD2qqg&oe=69B6BAA6&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8iSCUz+gptsDQkDtVfOyxACXXaqLNZTf4YTXplU3WaQ=\",\"fileEncSha256\":\"hUtOn7mi8W7ne7efCJQufxfm6TEP9PNczEeCpYPWjiQ=\",\"mediaKey\":\"fYc2S\\/QHsgQ9BwLcbBpLUDR12uOjDHvvWT72gH2rtX0=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wEWs-QUBArNTq7rJ1pZ9TiTkrK5WGJ0Cvgf4NlZMD2qqg&oe=69B6BAA6&_nc_sid=5e03e0\",\"fileLength\":\"93402\",\"mediaKeyTimestamp\":\"1770854136\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770996893126\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770996893,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:53.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:54'),
(9738, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wEWs-QUBArNTq7rJ1pZ9TiTkrK5WGJ0Cvgf4NlZMD2qqg&oe=69B6BAA6&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"8iSCUz+gptsDQkDtVfOyxACXXaqLNZTf4YTXplU3WaQ=\",\"fileEncSha256\":\"hUtOn7mi8W7ne7efCJQufxfm6TEP9PNczEeCpYPWjiQ=\",\"mediaKey\":\"fYc2S\\/QHsgQ9BwLcbBpLUDR12uOjDHvvWT72gH2rtX0=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/541540222_1219207796522374_370595698930663701_n.enc?ccb=11-4&oh=01_Q5Aa3wEWs-QUBArNTq7rJ1pZ9TiTkrK5WGJ0Cvgf4NlZMD2qqg&oe=69B6BAA6&_nc_sid=5e03e0\",\"fileLength\":\"93402\",\"mediaKeyTimestamp\":\"1770854136\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770996893126\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770996893,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:53.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:54'),
(9739, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:53.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:54'),
(9740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996894200,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:54.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:54'),
(9741, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:54.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:54'),
(9742, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:53.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:55'),
(9743, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996894200,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:54.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:55'),
(9744, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996894343,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:54.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:34:55'),
(9745, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:54.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:55'),
(9746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770996894343,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:34:54.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:34:55'),
(9747, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:11.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:11'),
(9748, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:11.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:12'),
(9749, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:13'),
(9750, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB075124398311198BF50\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997093,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:13'),
(9751, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:13'),
(9752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:13'),
(9753, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DB8986EAABC70A79AC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997093,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:13'),
(9754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:13'),
(9755, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB075124398311198BF50\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997093,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:13'),
(9756, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DB8986EAABC70A79AC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997093,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:13.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:13'),
(9757, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00CDE6C77A40752BCBB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997094,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:14.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:14'),
(9758, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00CDE6C77A40752BCBB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997094,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:14.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9759, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:17.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:17'),
(9760, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:17.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:17'),
(9761, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:20.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:20'),
(9762, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:20.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:20'),
(9763, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0893CDC79A418B787D2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"lucas teste\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997100,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:20.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:20'),
(9764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:20.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:21'),
(9765, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:20.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:21'),
(9766, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D815CDEEB817447969\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *lucas teste*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:21.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:21'),
(9767, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0893CDC79A418B787D2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"lucas teste\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997100,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:20.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:21'),
(9768, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D815CDEEB817447969\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *lucas teste*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:21.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:21'),
(9769, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04494E0AD20B38FC15A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:21.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:22'),
(9770, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04494E0AD20B38FC15A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:21.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:22'),
(9771, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:23.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:23'),
(9772, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:23.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:23'),
(9773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:27.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:27'),
(9774, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:27.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:27'),
(9775, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D18C39194EAA850100\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"47991063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997107,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:27.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:27'),
(9776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:27.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:28'),
(9777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:27.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:28'),
(9778, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA659FC23ED442319D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 99106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997108,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:28.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:28'),
(9779, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D18C39194EAA850100\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"47991063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997107,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:27.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:28'),
(9780, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA659FC23ED442319D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 99106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997108,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:28.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:28'),
(9781, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0303903A9ECBF5B5AA8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 47.991.063.914,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997108,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:28.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:29'),
(9782, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0303903A9ECBF5B5AA8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 47.991.063.914,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997108,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:28.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:29'),
(9783, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:35.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:35'),
(9784, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:35.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:36'),
(9785, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:38'),
(9786, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A3EAACC5E1E17FD882\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"40\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997117,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:38'),
(9787, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:38'),
(9788, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:38'),
(9789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:38'),
(9790, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A3EAACC5E1E17FD882\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"40\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997117,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:39'),
(9791, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02F3024BB07E61FD8EE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997118,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:39'),
(9792, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02F3024BB07E61FD8EE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997118,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:38.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:39'),
(9793, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05784C824E26126EF74\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997119,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:40.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:40'),
(9794, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05784C824E26126EF74\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770997119,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:40.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:40'),
(9795, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:42'),
(9796, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:42'),
(9797, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:42'),
(9798, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CC7926C5A806872E08\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997122,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 12:38:42'),
(9799, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CC7926C5A806872E08\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1\"},\"messageType\":\"conversation\",\"messageTimestamp\":1770997122,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 12:38:42'),
(9800, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:42'),
(9801, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:38:43'),
(9802, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:38:42.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:38:43'),
(9803, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5514997015432@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A6A0835C316D67F0A55\"},\"pushName\":\"Paula Pimentel\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/41005817_1389634519044647_6257537986755184341_n.enc?ccb=11-4&oh=01_Q5Aa3wHyl9BU7zeno9O7eEsI4HiKKa2xfu09ulcV4mrjtYtBqw&oe=69B6A318&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante_2026-02-13_124254\",\"fileSha256\":\"9OQ27CLX1MUZ11+DO15X1UBf5EDJVtDzahqw+mqsZAU=\",\"fileLength\":\"124265\",\"pageCount\":1,\"mediaKey\":\"oi6HLfKQedngGE+89VRCUZUhY6AUBndB0nLq\\/Zw0zX4=\",\"fileName\":\"Comprovante_2026-02-13_124254.pdf\",\"fileEncSha256\":\"dQXlq7jh5svjjab3od3bscR5ZZXFGVObKILLM8SI7QU=\",\"directPath\":\"\\/v\\/t62.7119-24\\/41005817_1389634519044647_6257537986755184341_n.enc?ccb=11-4&oh=01_Q5Aa3wHyl9BU7zeno9O7eEsI4HiKKa2xfu09ulcV4mrjtYtBqw&oe=69B6A318&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770997393\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABIDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAIDAQQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAP\\/2gAMAwEAAhADEAAAAPTj9ztJ6idMbUUDO4ooGVyNAZdDQH\\/\\/xAAYEQACAwAAAAAAAAAAAAAAAAABERIwMf\\/aAAgBAgEBPwCQWVf\\/xAAYEQACAwAAAAAAAAAAAAAAAAABERIwMf\\/aAAgBAwEBPwCJe1f\\/xAAlEAACAQMDAwUBAAAAAAAAAAABAgAQESEDBBIFIjETIzJRcZH\\/2gAIAQEAAT8A6hvN1pbp102PEfQmj1DeHWQMWsTnEHgRkXke0T01Y5QfyCOPcOYoow7vEH5ahvyxBe2aFrPAwNH+cAA8Uci9iYpF8Xo6MWuIqkU\\/\\/\\/4AAwD\\/2Q==\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770996771\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JNuC9Brcu3XVR0OS1rJzFoNvlM4guKAHq1PoG8QRLwg=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770997395,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:43:15'),
(9804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997015432@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkSlnneu_uSbvWFxPJVasJGvc5YJhppz5l-TKH-tnLPg&oe=699C44B7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:43:15'),
(9805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5514997015432@s.whatsapp.net\",\"pushName\":\"Paula 5432 $40 P2cine E\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkSlnneu_uSbvWFxPJVasJGvc5YJhppz5l-TKH-tnLPg&oe=699C44B7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:43:15'),
(9806, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5514997015432@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A6A0835C316D67F0A55\"},\"pushName\":\"Paula Pimentel\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/41005817_1389634519044647_6257537986755184341_n.enc?ccb=11-4&oh=01_Q5Aa3wHyl9BU7zeno9O7eEsI4HiKKa2xfu09ulcV4mrjtYtBqw&oe=69B6A318&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante_2026-02-13_124254\",\"fileSha256\":\"9OQ27CLX1MUZ11+DO15X1UBf5EDJVtDzahqw+mqsZAU=\",\"fileLength\":\"124265\",\"pageCount\":1,\"mediaKey\":\"oi6HLfKQedngGE+89VRCUZUhY6AUBndB0nLq\\/Zw0zX4=\",\"fileName\":\"Comprovante_2026-02-13_124254.pdf\",\"fileEncSha256\":\"dQXlq7jh5svjjab3od3bscR5ZZXFGVObKILLM8SI7QU=\",\"directPath\":\"\\/v\\/t62.7119-24\\/41005817_1389634519044647_6257537986755184341_n.enc?ccb=11-4&oh=01_Q5Aa3wHyl9BU7zeno9O7eEsI4HiKKa2xfu09ulcV4mrjtYtBqw&oe=69B6A318&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770997393\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABIDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAIDAQQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAP\\/2gAMAwEAAhADEAAAAPTj9ztJ6idMbUUDO4ooGVyNAZdDQH\\/\\/xAAYEQACAwAAAAAAAAAAAAAAAAABERIwMf\\/aAAgBAgEBPwCQWVf\\/xAAYEQACAwAAAAAAAAAAAAAAAAABERIwMf\\/aAAgBAwEBPwCJe1f\\/xAAlEAACAQMDAwUBAAAAAAAAAAABAgAQESEDBBIFIjETIzJRcZH\\/2gAIAQEAAT8A6hvN1pbp102PEfQmj1DeHWQMWsTnEHgRkXke0T01Y5QfyCOPcOYoow7vEH5ahvyxBe2aFrPAwNH+cAA8Uci9iYpF8Xo6MWuIqkU\\/\\/\\/4AAwD\\/2Q==\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770996771\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JNuC9Brcu3XVR0OS1rJzFoNvlM4guKAHq1PoG8QRLwg=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1770997395,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:43:16'),
(9807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997015432@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkSlnneu_uSbvWFxPJVasJGvc5YJhppz5l-TKH-tnLPg&oe=699C44B7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:43:16'),
(9808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5514997015432@s.whatsapp.net\",\"pushName\":\"Paula 5432 $40 P2cine E\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkSlnneu_uSbvWFxPJVasJGvc5YJhppz5l-TKH-tnLPg&oe=699C44B7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:43:16'),
(9809, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997015432@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:43:25'),
(9810, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997015432@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:43:15.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:43:25'),
(9811, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594624,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:46:34'),
(9812, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:46:34'),
(9813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:46:34'),
(9814, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594608,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 12:46:34'),
(9815, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A50EDCFE3507E122B15C73E1C6A6C67F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594624,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:46:35'),
(9816, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A575DB113C6817261AA4FBD85C6BB0BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:46:35'),
(9817, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A5EFA0C9671B704108DF7D39E89F6D93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:46:35'),
(9818, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"102069964914905:26@lid\",\"id\":\"A570AA81427C7C9AB449F0864AEBBE6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770997594608,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T12:46:34.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 12:46:35'),
(9819, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46450121678943@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:36.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:05:37'),
(9820, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46450121678943@lid\",\"fromMe\":true,\"id\":\"A5799A42BB49AB7052534070F5509725\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFYKGrS7SC4RTXWtpM6Lzx1O4gEo4kFySTMDrW4otOUMQ&oe=69B6B48C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFYKGrS7SC4RTXWtpM6Lzx1O4gEo4kFySTMDrW4otOUMQ&oe=69B6B48C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770998734430\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770998736,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:36.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:05:37'),
(9821, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46450121678943@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkSlnneu_uSbvWFxPJVasJGvc5YJhppz5l-TKH-tnLPg&oe=699C44B7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:37.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:05:37'),
(9822, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46450121678943@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:36.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:05:37'),
(9823, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46450121678943@lid\",\"fromMe\":true,\"id\":\"A5799A42BB49AB7052534070F5509725\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFYKGrS7SC4RTXWtpM6Lzx1O4gEo4kFySTMDrW4otOUMQ&oe=69B6B48C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wFYKGrS7SC4RTXWtpM6Lzx1O4gEo4kFySTMDrW4otOUMQ&oe=69B6B48C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1770998734430\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770998736,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:36.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:05:37'),
(9824, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46450121678943@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkSlnneu_uSbvWFxPJVasJGvc5YJhppz5l-TKH-tnLPg&oe=699C44B7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:37.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:05:37'),
(9825, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46450121678943@lid\",\"id\":\"A5799A42BB49AB7052534070F5509725\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770998740774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:40.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:05:40'),
(9826, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46450121678943@lid\",\"id\":\"A5799A42BB49AB7052534070F5509725\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770998740774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:05:40.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:05:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9827, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:50'),
(9828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589798,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:50'),
(9829, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589850,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:50'),
(9830, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:50'),
(9831, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56976E788C3F19793E7139487FA2DAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589819,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:50'),
(9832, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C57840C87C019FA52DBA218E7F5478\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:50'),
(9833, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:51'),
(9834, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56B010EE746D3F50294C6AD9021106D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589804,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:51'),
(9835, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A580D3409FD458D934036F1B7AD83233\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:51'),
(9836, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589830,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:51'),
(9837, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589850,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:51'),
(9838, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A580D3409FD458D934036F1B7AD83233\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:52'),
(9839, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589830,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:52'),
(9840, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C57840C87C019FA52DBA218E7F5478\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:52'),
(9841, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589815,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:52'),
(9842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589798,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:52'),
(9843, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"3EB0A0EEF20FB28F40D5B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:53'),
(9844, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56976E788C3F19793E7139487FA2DAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589819,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:53'),
(9845, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:53'),
(9846, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589855,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:53'),
(9847, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A59CE710C46D197543C762A3778F5FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:55'),
(9848, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589815,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:55'),
(9849, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A564DA600145DF1E7874B4DBC77142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589835,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:19:55'),
(9850, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56B010EE746D3F50294C6AD9021106D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589804,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:55'),
(9851, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"3EB0A0EEF20FB28F40D5B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:55'),
(9852, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589855,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:55'),
(9853, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A59CE710C46D197543C762A3778F5FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:55'),
(9854, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A564DA600145DF1E7874B4DBC77142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999589835,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:19:49.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:19:55'),
(9855, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB098A81A0EB7377B4864\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:44'),
(9856, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52A25609D4DAAC545444FE6CC639C3E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:44'),
(9857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5F0B75C5ED4197D3D437522AD2B41BE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703786,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:44'),
(9858, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A529C01E85E5F5E2FE059108BD0FAE3B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:44'),
(9859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5F0B75C5ED4197D3D437522AD2B41BE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703786,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:44'),
(9860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A52A25609D4DAAC545444FE6CC639C3E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:45'),
(9861, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A529C01E85E5F5E2FE059108BD0FAE3B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:45'),
(9862, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB098A81A0EB7377B4864\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999703801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:43.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:45'),
(9863, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:49.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:49'),
(9864, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:49.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:49'),
(9865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:52.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:52'),
(9866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:52.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:52'),
(9867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:53'),
(9868, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:53'),
(9869, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:53'),
(9870, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:53'),
(9871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:53'),
(9872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:54'),
(9873, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:54'),
(9874, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC1F62ED1BBA871214D4B14CA4BF6DC7\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EbL1pY6VdeY8zNb5Iyh5crV4kiEFuKB2lIi7pl06aEk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770999713,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:21:54'),
(9875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:54'),
(9876, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC1F62ED1BBA871214D4B14CA4BF6DC7\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EbL1pY6VdeY8zNb5Iyh5crV4kiEFuKB2lIi7pl06aEk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1770999713,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:21:53.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:21:55'),
(9877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A50BC0ED5A9FC1396679B24D3D23CBDE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8965},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8965},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770999727,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:07.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:07'),
(9878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:07.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:07'),
(9879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:08.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:08'),
(9880, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:07.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:08'),
(9881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:08.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:08'),
(9882, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02AF6A0F041B1324765\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999728,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:08.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:08'),
(9883, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02AF6A0F041B1324765\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999728,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:08.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:08'),
(9884, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A50BC0ED5A9FC1396679B24D3D23CBDE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8965},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8965},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770999727,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:07.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:09'),
(9885, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0999D4682223B044AF1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999730,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:10.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:10'),
(9886, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0999D4682223B044AF1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999730,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:10.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:10'),
(9887, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:15'),
(9888, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A513F3036D3FC483030E506562626D5E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8971},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8971},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770999735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:15'),
(9889, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:15'),
(9890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:15'),
(9891, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08259C012B0E41A87CF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999735,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:15'),
(9892, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A513F3036D3FC483030E506562626D5E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8971},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8971},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770999735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:16'),
(9893, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08259C012B0E41A87CF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999735,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:16'),
(9894, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025C29FBA3FD5F4E3E6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999736,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:16.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:16'),
(9895, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025C29FBA3FD5F4E3E6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999736,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:16.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:16'),
(9896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:15.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:16'),
(9897, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:26.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:26'),
(9898, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:26.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:26'),
(9899, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A590E68CD98BE847ED4F1AA782240CF3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pendentes\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8982},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8982},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770999746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:26.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9900, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:26.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:26'),
(9901, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:26.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:27'),
(9902, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07A000E8E34AC5B7F91\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *Clientes com Pagamento Pendente*\\n\\n─────────────────────\\n👤 *jou*\\n📱 47991063914\\n📅 Venceu há 18 dias\\n💰 R$ 40,00\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999747,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:27.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:27'),
(9903, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A590E68CD98BE847ED4F1AA782240CF3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pendentes\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8982},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8982},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1770999746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:26.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:27'),
(9904, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07A000E8E34AC5B7F91\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *Clientes com Pagamento Pendente*\\n\\n─────────────────────\\n👤 *jou*\\n📱 47991063914\\n📅 Venceu há 18 dias\\n💰 R$ 40,00\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999747,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:27.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:27'),
(9905, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04141915098C9524CC3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *Clientes com Pagamento Pendente*\\n\\n─────────────────────\\n👤 *jou*\\n📱 47991063914\\n📅 Venceu há 18 dias\\n💰 R$ 40,00\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999747,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:27.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:22:28'),
(9906, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04141915098C9524CC3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *Clientes com Pagamento Pendente*\\n\\n─────────────────────\\n👤 *jou*\\n📱 47991063914\\n📅 Venceu há 18 dias\\n💰 R$ 40,00\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1770999747,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:22:27.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:22:28'),
(9907, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999783775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:03.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:03'),
(9908, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999783775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:03.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:04'),
(9909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999784314,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:04.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:04'),
(9910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999784314,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:04.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:04'),
(9911, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:04.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:04'),
(9912, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633099355_1255843063128817_1290440573351269111_n.enc?ccb=11-4&oh=01_Q5Aa3wH13apWuJikpfNrvcfSOKSTq1vODNTuv6zRsPZpRaLJmg&oe=69B6B165&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"soSjM\\/ijpuyF7u3XbzbDxxcDQ1qDShR3LDwzbYsFa0g=\",\"fileLength\":\"95185\",\"height\":1600,\"width\":738,\"mediaKey\":\"6vfARK\\/yE3\\/mb1oW3Zi7nYJXpv9cQ+rNsCqylc999b4=\",\"fileEncSha256\":\"2Cpxe\\/q751Qtkr43eV\\/uhWvaAmY9Vh2q8xPKrdIxRSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633099355_1255843063128817_1290440573351269111_n.enc?ccb=11-4&oh=01_Q5Aa3wH13apWuJikpfNrvcfSOKSTq1vODNTuv6zRsPZpRaLJmg&oe=69B6B165&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770999776\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAPb0aCzJhWd5mptkk1m1QmS41loconSg6dDkDb\\/\\/xAAiEAEAAwACAQMFAAAAAAAAAAABAAIREiExAwQQEyJRYXL\\/2gAIAQEAAT8A9e3rHDhUe+5zQQhbe2fa23Ygnc41j\\/MA0igQpTyT6dVhQGW8MBevEBPh8Q\\/bDddSD3FwhWjrOFYUqOy3hh+MgZ8OwLzL7G5TOdg1nEIdTzPc+zp7njtkyf\\/EABkRAAMAAwAAAAAAAAAAAAAAAAABEBESIP\\/aAAgBAgEBPwDJsOOPj\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAACEBIg\\/9oACAEDAQE\\/ADQ0aNx\\/\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"n5nesWVPfbW7ORF0jEMZcGQ7qAfItwEwpx5eShVgl5RTQyJ\\/pExMxw==\",\"scanLengths\":[8505,47029,17179,22472],\"midQualityFileSha256\":\"tvJYBTKp4EpwI8ZS\\/AYTFcFxY9+wGEPvh1hoZ3MCAsE=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770999784,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:04.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:04'),
(9913, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:04.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:05'),
(9914, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633099355_1255843063128817_1290440573351269111_n.enc?ccb=11-4&oh=01_Q5Aa3wH13apWuJikpfNrvcfSOKSTq1vODNTuv6zRsPZpRaLJmg&oe=69B6B165&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"soSjM\\/ijpuyF7u3XbzbDxxcDQ1qDShR3LDwzbYsFa0g=\",\"fileLength\":\"95185\",\"height\":1600,\"width\":738,\"mediaKey\":\"6vfARK\\/yE3\\/mb1oW3Zi7nYJXpv9cQ+rNsCqylc999b4=\",\"fileEncSha256\":\"2Cpxe\\/q751Qtkr43eV\\/uhWvaAmY9Vh2q8xPKrdIxRSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633099355_1255843063128817_1290440573351269111_n.enc?ccb=11-4&oh=01_Q5Aa3wH13apWuJikpfNrvcfSOKSTq1vODNTuv6zRsPZpRaLJmg&oe=69B6B165&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1770999776\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAPb0aCzJhWd5mptkk1m1QmS41loconSg6dDkDb\\/\\/xAAiEAEAAwACAQMFAAAAAAAAAAABAAIREiExAwQQEyJRYXL\\/2gAIAQEAAT8A9e3rHDhUe+5zQQhbe2fa23Ygnc41j\\/MA0igQpTyT6dVhQGW8MBevEBPh8Q\\/bDddSD3FwhWjrOFYUqOy3hh+MgZ8OwLzL7G5TOdg1nEIdTzPc+zp7njtkyf\\/EABkRAAMAAwAAAAAAAAAAAAAAAAABEBESIP\\/aAAgBAgEBPwDJsOOPj\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAACEBIg\\/9oACAEDAQE\\/ADQ0aNx\\/\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"n5nesWVPfbW7ORF0jEMZcGQ7qAfItwEwpx5eShVgl5RTQyJ\\/pExMxw==\",\"scanLengths\":[8505,47029,17179,22472],\"midQualityFileSha256\":\"tvJYBTKp4EpwI8ZS\\/AYTFcFxY9+wGEPvh1hoZ3MCAsE=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1770999784,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:04.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:05'),
(9915, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:05.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:05'),
(9916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:05.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:05'),
(9917, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:08'),
(9918, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wEhDmKafeZpoQ9cM2qgah43iRVzOhs_zsMXE_k3iVmjqQ&oe=69B6A670&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"C4t\\/qoLLHk2V44\\/TL3YbYXJoCXhj+sOHPfPyhNaMERM=\",\"mediaKey\":\"lLhY6I3j8LmhS0NsXrrN1RZFVsRh8UoWnhbc9QnV2uE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wEhDmKafeZpoQ9cM2qgah43iRVzOhs_zsMXE_k3iVmjqQ&oe=69B6A670&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1770854189\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"OSUCUmmf7BmRSA==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770999787493\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770999788,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:08'),
(9919, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:08'),
(9920, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wEhDmKafeZpoQ9cM2qgah43iRVzOhs_zsMXE_k3iVmjqQ&oe=69B6A670&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"C4t\\/qoLLHk2V44\\/TL3YbYXJoCXhj+sOHPfPyhNaMERM=\",\"mediaKey\":\"lLhY6I3j8LmhS0NsXrrN1RZFVsRh8UoWnhbc9QnV2uE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/31531902_1988429478747319_6850726473316701778_n.enc?ccb=11-4&oh=01_Q5Aa3wEhDmKafeZpoQ9cM2qgah43iRVzOhs_zsMXE_k3iVmjqQ&oe=69B6A670&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1770854189\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"OSUCUmmf7BmRSA==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1770999787493\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1770999788,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:08'),
(9921, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999788607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:08'),
(9922, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999788607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:09'),
(9923, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999788690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:09'),
(9924, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1770999788690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:09'),
(9925, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:23:09'),
(9926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:23:08.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:23:10'),
(9927, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958052,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:25:58'),
(9928, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:25:58'),
(9929, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:25:58'),
(9930, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:25:58'),
(9931, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:25:58'),
(9932, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:25:58'),
(9933, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:25:59'),
(9934, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958071,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:26:05'),
(9935, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958052,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:26:05'),
(9936, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1770999958071,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:25:58.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:26:05'),
(9937, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252255,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:52'),
(9938, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:52'),
(9939, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A59CE710C46D197543C762A3778F5FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252262,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:52'),
(9940, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56976E788C3F19793E7139487FA2DAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:52'),
(9941, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A564DA600145DF1E7874B4DBC77142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:52'),
(9942, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C3FDBDB6758004E870CE7F1D128C93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:53'),
(9943, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56976E788C3F19793E7139487FA2DAA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:53'),
(9944, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A564DA600145DF1E7874B4DBC77142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:53'),
(9945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252298,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:53'),
(9946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56B010EE746D3F50294C6AD9021106D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252275,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:53'),
(9947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"3EB0A0EEF20FB28F40D5B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252368,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:54'),
(9948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A506679FB2C8D38BC14D0CAE33F71AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252255,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:54'),
(9949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:54'),
(9950, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A59CE710C46D197543C762A3778F5FFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252262,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:54'),
(9951, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252340,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:54'),
(9952, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"3EB0A0EEF20FB28F40D5B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252368,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:55'),
(9953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A580D3409FD458D934036F1B7AD83233\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252282,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:55'),
(9954, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:55'),
(9955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5E5DE770A40AEDAC326F7B3C2B63277\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252340,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:55'),
(9956, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A56B010EE746D3F50294C6AD9021106D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252275,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:55'),
(9957, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A54F4B7AD3FB88060F9A455D9868A758\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252298,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:56'),
(9958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C57840C87C019FA52DBA218E7F5478\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252328,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:56'),
(9959, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5A09D1C84D68F49C50EDB9878F05018\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:56'),
(9960, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:30:56'),
(9961, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A580D3409FD458D934036F1B7AD83233\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252282,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:56'),
(9962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C50BFF65F5CB4B52C87BC60D0F1CB2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:57'),
(9963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5D9653E7ECF389BF07267D4E53CBEA9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:57'),
(9964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"189266978160868:18@lid\",\"id\":\"A5C57840C87C019FA52DBA218E7F5478\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771000252328,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:30:52.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:30:57'),
(9965, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A53127C4E0913AFBF2037C4761D27ACA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10097},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10097},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000859,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:40:59.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:00'),
(9966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:40:59.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:00'),
(9967, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:00.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(9968, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:40:59.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:00'),
(9969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:00.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:00'),
(9970, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09E9818BE224AF8CD6C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000860,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:00.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:00'),
(9971, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A53127C4E0913AFBF2037C4761D27ACA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10097},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10097},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000859,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:40:59.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:01'),
(9972, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09E9818BE224AF8CD6C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000860,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:00.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:01'),
(9973, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08C6A3D9B48AE177C96\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000861,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:01.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:01'),
(9974, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08C6A3D9B48AE177C96\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000861,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:01.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:01'),
(9975, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:18.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:18'),
(9976, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A593F97DDA2882FC665A87AC2CC9AB59\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10115},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10115},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000878,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:18.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:18'),
(9977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:18.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:18'),
(9978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:18.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:18'),
(9979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:18.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:19'),
(9980, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E834F36BF492EC8175\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000879,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:19.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:19'),
(9981, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A593F97DDA2882FC665A87AC2CC9AB59\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10115},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10115},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000878,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:18.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:19'),
(9982, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E834F36BF492EC8175\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000879,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:19.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:19'),
(9983, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB034AA0ED49368CD23A3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000879,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:19.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:19'),
(9984, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB034AA0ED49368CD23A3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000879,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:19.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:20'),
(9985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A558199418C0109C6E572A0853FA2A27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimentos\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10132},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10132},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000896,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:36'),
(9986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:36'),
(9987, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:36'),
(9988, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:36'),
(9989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:36'),
(9990, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06787A51038DC06F99C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000896,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:36'),
(9991, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A558199418C0109C6E572A0853FA2A27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimentos\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10132},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10132},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000896,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:37'),
(9992, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06787A51038DC06F99C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000896,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:36.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:37'),
(9993, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CEEBB29CEF5DCBCABF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000897,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:37.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:37'),
(9994, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CEEBB29CEF5DCBCABF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000897,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:37.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:37'),
(9995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:42.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:42'),
(9996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A53A459BDC8BB35805EBF55EF3854D1F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pausar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10139},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10139},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000902,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:42.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:42'),
(9997, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:42.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:43'),
(9998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:43.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:43'),
(9999, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E1B27885BE0570DEE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pausar TELEFONE\\n\\nExemplo: \\/pausar 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000903,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:43.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:43'),
(10000, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:43.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:43'),
(10001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A53A459BDC8BB35805EBF55EF3854D1F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pausar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10139},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10139},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000902,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:42.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:43'),
(10002, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0980F1540A19BFBB4F5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pausar TELEFONE\\n\\nExemplo: \\/pausar 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000903,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:43.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:44'),
(10003, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E1B27885BE0570DEE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pausar TELEFONE\\n\\nExemplo: \\/pausar 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000903,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:43.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:44'),
(10004, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0980F1540A19BFBB4F5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pausar TELEFONE\\n\\nExemplo: \\/pausar 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000903,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:43.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:44'),
(10005, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:59'),
(10006, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:59'),
(10007, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CA4DFF805A2F69ACDD743D1A96448E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pausar 47991063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10155},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10155},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000918,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:59'),
(10008, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:59'),
(10009, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:41:59'),
(10010, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D2EC64E0AA124E38EC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏸️ *Serviço pausado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000919,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:41:59'),
(10011, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D2EC64E0AA124E38EC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏸️ *Serviço pausado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000919,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:00'),
(10012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CA4DFF805A2F69ACDD743D1A96448E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pausar 47991063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10155},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10155},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000918,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:41:59.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:00'),
(10013, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085091CC36891AB81B9\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏸️ *Serviço pausado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000920,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:00.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:00'),
(10014, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085091CC36891AB81B9\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⏸️ *Serviço pausado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000920,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:00.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:01'),
(10015, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51F8188357B38D8D95654977DB5F828\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reativar 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10194},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10194},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000958,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:38'),
(10016, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:38'),
(10017, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:38'),
(10018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:38'),
(10019, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:38'),
(10020, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06D8E0477183C1149A3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Cliente não encontrado com telefone: *4791063914*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000958,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:39'),
(10021, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51F8188357B38D8D95654977DB5F828\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reativar 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10194},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10194},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000958,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:39'),
(10022, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06D8E0477183C1149A3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Cliente não encontrado com telefone: *4791063914*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000958,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:38.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:39'),
(10023, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04EC3D153A3AE45A58B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Cliente não encontrado com telefone: *4791063914*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000959,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:39.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:39'),
(10024, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04EC3D153A3AE45A58B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Cliente não encontrado com telefone: *4791063914*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000959,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:39.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:39'),
(10025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:50.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:50'),
(10026, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:50.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:51');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10027, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5417898F0E6FF6AAA075D9EF9EFD6E7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reativar 47991063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10207},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10207},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000970,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:50.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:51'),
(10028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:51.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:51'),
(10029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:51.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:51'),
(10030, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F3C253D8155F5842DB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço reativado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000971,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:51.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:51'),
(10031, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5417898F0E6FF6AAA075D9EF9EFD6E7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reativar 47991063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10207},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10207},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771000970,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:50.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:52'),
(10032, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F3C253D8155F5842DB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço reativado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000971,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:51.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:52'),
(10033, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05239E651183D072EFE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço reativado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000972,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:52.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:42:52'),
(10034, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05239E651183D072EFE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"▶️ *Serviço reativado!*\\n\\n👤 *Cliente:* jou\\n📱 *Telefone:* 47991063914\\n\\n✅ Cliente foi notificado!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771000972,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:42:52.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:42:52'),
(10035, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001026937,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:46.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:47'),
(10036, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001026660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:46.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:47'),
(10037, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001026948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:46.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:47'),
(10038, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001026937,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:46.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:47'),
(10039, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001026660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:46.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:47'),
(10040, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001027386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:47.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:48'),
(10041, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\"},\"pushName\":\"J T V P L A Y\",\"message\":[],\"messageTimestamp\":1771001027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:48'),
(10042, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001027386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:47.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:48'),
(10043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\"},\"pushName\":\"J T V P L A Y\",\"message\":[],\"messageTimestamp\":1771001027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:48'),
(10044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A516D70950FB3B6E24336CB330FC13B2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635044398_1406272227656615_8687232382095690498_n.enc?ccb=11-4&oh=01_Q5Aa3wEd-utBrUwZ34bJvRtXbcKZQmIQKXmeM9nAefZT-_gmKQ&oe=69B6B8D9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"KhZapBQwMa\\/hwEcQwfv7K5EMLcdooY+tA7RNePp4Ncg=\",\"fileLength\":\"120460\",\"height\":1600,\"width\":738,\"mediaKey\":\"Fk\\/AErN0R2MxdHf1cgl+3a\\/12gqpPIT\\/q6gDpbknbkI=\",\"fileEncSha256\":\"AnQ920z7rgJT6vvW9TY6fQ8NNPNAKI8fnCH103RrQfM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635044398_1406272227656615_8687232382095690498_n.enc?ccb=11-4&oh=01_Q5Aa3wEd-utBrUwZ34bJvRtXbcKZQmIQKXmeM9nAefZT-_gmKQ&oe=69B6B8D9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771001024\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAADAAIEAQUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAPbvwiXTI5pm11MC94SgsbdbVTRbNpFuKfSEtJfSZJNv\\/8QAIhAAAgICAgICAwAAAAAAAAAAAQIAERIhEDEDBBMiQVFi\\/9oACAEBAAE\\/APO\\/lGOIFXuDy6NRXVvsTNE3PKLQ6gVkGhE+Q3YAgBj9GZMSAVMFqTQMV77HAYGE61A\\/Q4bEGyTBX7MBAIF8EG+5kBotB+OGbdZ1FA7LXz8dmykw\\/mM6pWRAmNQanc9r009nG2Iqf\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAABEBESICH\\/2gAIAQIBAT8AsyHDOj0\\/\\/8QAGxEAAgIDAQAAAAAAAAAAAAAAAAECEBESIUH\\/2gAIAQMBAT8AbwzYaqR6SO3\\/AP\\/Z\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"M+ZCQA2XqqseO\\/fv9V6zAX\\/lwQpUnv8uPNOWuYSOuXuNaKHfetxK6w==\",\"scanLengths\":[9621,59428,22549,28862],\"midQualityFileSha256\":\"X8x4U2hZ9rEFu7DZDZQE4VIi3UdXpETTf0\\/WSv\\/k5eU=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771001028,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:48'),
(10045, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:49'),
(10046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:49'),
(10047, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:49'),
(10048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:49.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:49'),
(10049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:49'),
(10050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A516D70950FB3B6E24336CB330FC13B2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635044398_1406272227656615_8687232382095690498_n.enc?ccb=11-4&oh=01_Q5Aa3wEd-utBrUwZ34bJvRtXbcKZQmIQKXmeM9nAefZT-_gmKQ&oe=69B6B8D9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"KhZapBQwMa\\/hwEcQwfv7K5EMLcdooY+tA7RNePp4Ncg=\",\"fileLength\":\"120460\",\"height\":1600,\"width\":738,\"mediaKey\":\"Fk\\/AErN0R2MxdHf1cgl+3a\\/12gqpPIT\\/q6gDpbknbkI=\",\"fileEncSha256\":\"AnQ920z7rgJT6vvW9TY6fQ8NNPNAKI8fnCH103RrQfM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635044398_1406272227656615_8687232382095690498_n.enc?ccb=11-4&oh=01_Q5Aa3wEd-utBrUwZ34bJvRtXbcKZQmIQKXmeM9nAefZT-_gmKQ&oe=69B6B8D9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771001024\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAADAAIEAQUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAPbvwiXTI5pm11MC94SgsbdbVTRbNpFuKfSEtJfSZJNv\\/8QAIhAAAgICAgICAwAAAAAAAAAAAQIAERIhEDEDBBMiQVFi\\/9oACAEBAAE\\/APO\\/lGOIFXuDy6NRXVvsTNE3PKLQ6gVkGhE+Q3YAgBj9GZMSAVMFqTQMV77HAYGE61A\\/Q4bEGyTBX7MBAIF8EG+5kBotB+OGbdZ1FA7LXz8dmykw\\/mM6pWRAmNQanc9r009nG2Iqf\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAABEBESICH\\/2gAIAQIBAT8AsyHDOj0\\/\\/8QAGxEAAgIDAQAAAAAAAAAAAAAAAAECEBESIUH\\/2gAIAQMBAT8AbwzYaqR6SO3\\/AP\\/Z\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"M+ZCQA2XqqseO\\/fv9V6zAX\\/lwQpUnv8uPNOWuYSOuXuNaKHfetxK6w==\",\"scanLengths\":[9621,59428,22549,28862],\"midQualityFileSha256\":\"X8x4U2hZ9rEFu7DZDZQE4VIi3UdXpETTf0\\/WSv\\/k5eU=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771001028,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:50'),
(10051, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:50'),
(10052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:50'),
(10053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001027295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:47.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:50'),
(10054, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:49.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:50'),
(10055, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:51'),
(10056, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001027295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:47.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:51'),
(10057, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001027397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:47.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:51'),
(10058, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/592058087_25910975211891422_8900056765295879283_n.enc?ccb=11-4&oh=01_Q5Aa3wHcJ9oEOOXh0ypEXHk63F7DA4Zl1GFWhmTR3w4ZUVh-MA&oe=69B6D74E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"7Go4DvGP2FBwD+M0PaUMJgq9idCh4VQGr1aDCJV+4B8=\",\"fileLength\":\"115375\",\"height\":1600,\"width\":738,\"mediaKey\":\"B1XjOxwgJ9ZXKMGlikDtfI6kjIy5p+hK3lccs23zQKk=\",\"fileEncSha256\":\"i1Pe\\/xaKklYC6QaXS9XhoFKnVphrhXwmi1JOfUAiMFM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/592058087_25910975211891422_8900056765295879283_n.enc?ccb=11-4&oh=01_Q5Aa3wHcJ9oEOOXh0ypEXHk63F7DA4Zl1GFWhmTR3w4ZUVh-MA&oe=69B6D74E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771001025\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAADAAIEAQUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAPcTuYNNs6kynSHqkumwPlauwsT3PoBqyH0lLSX0mSTb\\/8QAJBAAAQQBAwMFAAAAAAAAAAAAAQACERIhAwQQMTJREyJBYXL\\/2gAIAQEAAT8A1na4rRoOcqzgCAE3OSvngjUth2EC\\/wCkESApYjM4IWZCeJCP5TZ8BDhznT2oNk5Cjgsl02Kz0ty5wBHvhN8259OT2KhnsTntZFjCrCGF1W62bNzWXEQv\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAARARACD\\/2gAIAQIBAT8AurKPH\\/\\/EABoRAQACAwEAAAAAAAAAAAAAAAABAhAREiH\\/2gAIAQMBAT8AmdOlkLIWe5\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"W9Sjuf\\/d6f7d58ulS1KbYThdRQuS0v+3MOLaVFhqLJeatOEvhLb10g==\",\"scanLengths\":[9317,56924,21273,27861],\"midQualityFileSha256\":\"RWEOwhd+E86KlYiYKIGvN6Sj1uKQNdTrCtKftI8mBdg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771001028,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:43:51'),
(10059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001026948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:46.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:51'),
(10060, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001027397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:47.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:52'),
(10061, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/592058087_25910975211891422_8900056765295879283_n.enc?ccb=11-4&oh=01_Q5Aa3wHcJ9oEOOXh0ypEXHk63F7DA4Zl1GFWhmTR3w4ZUVh-MA&oe=69B6D74E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"7Go4DvGP2FBwD+M0PaUMJgq9idCh4VQGr1aDCJV+4B8=\",\"fileLength\":\"115375\",\"height\":1600,\"width\":738,\"mediaKey\":\"B1XjOxwgJ9ZXKMGlikDtfI6kjIy5p+hK3lccs23zQKk=\",\"fileEncSha256\":\"i1Pe\\/xaKklYC6QaXS9XhoFKnVphrhXwmi1JOfUAiMFM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/592058087_25910975211891422_8900056765295879283_n.enc?ccb=11-4&oh=01_Q5Aa3wHcJ9oEOOXh0ypEXHk63F7DA4Zl1GFWhmTR3w4ZUVh-MA&oe=69B6D74E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771001025\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAADAAIEAQUBAQEBAQAAAAAAAAAAAAAAAAECAAP\\/2gAMAwEAAhADEAAAAPcTuYNNs6kynSHqkumwPlauwsT3PoBqyH0lLSX0mSTb\\/8QAJBAAAQQBAwMFAAAAAAAAAAAAAQACERIhAwQQMTJREyJBYXL\\/2gAIAQEAAT8A1na4rRoOcqzgCAE3OSvngjUth2EC\\/wCkESApYjM4IWZCeJCP5TZ8BDhznT2oNk5Cjgsl02Kz0ty5wBHvhN8259OT2KhnsTntZFjCrCGF1W62bNzWXEQv\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAARARACD\\/2gAIAQIBAT8AurKPH\\/\\/EABoRAQACAwEAAAAAAAAAAAAAAAABAhAREiH\\/2gAIAQMBAT8AmdOlkLIWe5\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"W9Sjuf\\/d6f7d58ulS1KbYThdRQuS0v+3MOLaVFhqLJeatOEvhLb10g==\",\"scanLengths\":[9317,56924,21273,27861],\"midQualityFileSha256\":\"RWEOwhd+E86KlYiYKIGvN6Sj1uKQNdTrCtKftI8mBdg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771001028,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:52'),
(10062, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:43:48.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:43:52'),
(10063, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5644743DD7B49A35DE38FB534F158A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31200192_760524570441189_123712651259913521_n.enc?ccb=11-4&oh=01_Q5Aa3wGnhoCc5vu-N153OUvbzZpITjWooXrGe5Q_LN-I9hLxWQ&oe=69B6CED0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZkEX0wVM9ejeR4AB5XQmd\\/mLCVokdg6Yl29aFg5Pr3k=\",\"fileLength\":\"38232\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"ze7SZwYGhhZ0HCOWK6svjo3Nv1Ye7pHhrLf0Nie9nY0=\",\"fileEncSha256\":\"L1xzWp1PGZydg8kd0QEVA55e6\\/6MOt22bGPFtX6Maic=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31200192_760524570441189_123712651259913521_n.enc?ccb=11-4&oh=01_Q5Aa3wGnhoCc5vu-N153OUvbzZpITjWooXrGe5Q_LN-I9hLxWQ&oe=69B6CED0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771001027\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AC47V1FVSDIzU0xMNDshTk9XMQAAQlE+MiY\\/DTNPKzkAAAAARwExVkxKRkARQklGSzkgOgw1RTINAgY8S0gjQw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771001043,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:44:03'),
(10064, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:44:03'),
(10065, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5644743DD7B49A35DE38FB534F158A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31200192_760524570441189_123712651259913521_n.enc?ccb=11-4&oh=01_Q5Aa3wGnhoCc5vu-N153OUvbzZpITjWooXrGe5Q_LN-I9hLxWQ&oe=69B6CED0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZkEX0wVM9ejeR4AB5XQmd\\/mLCVokdg6Yl29aFg5Pr3k=\",\"fileLength\":\"38232\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"ze7SZwYGhhZ0HCOWK6svjo3Nv1Ye7pHhrLf0Nie9nY0=\",\"fileEncSha256\":\"L1xzWp1PGZydg8kd0QEVA55e6\\/6MOt22bGPFtX6Maic=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31200192_760524570441189_123712651259913521_n.enc?ccb=11-4&oh=01_Q5Aa3wGnhoCc5vu-N153OUvbzZpITjWooXrGe5Q_LN-I9hLxWQ&oe=69B6CED0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771001027\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AC47V1FVSDIzU0xMNDshTk9XMQAAQlE+MiY\\/DTNPKzkAAAAARwExVkxKRkARQklGSzkgOgw1RTINAgY8S0gjQw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771001043,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:44:03'),
(10067, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:44:03'),
(10068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001043858,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:44:04'),
(10069, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001043771,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:44:04'),
(10070, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771001043858,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:44:04'),
(10071, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:44:04'),
(10072, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:44:03.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:44:05'),
(10073, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A52E0836C313CF535CBA5727387BA03C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10473},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10473},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001236,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:16.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:16'),
(10074, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:16.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:16'),
(10075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:16.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:16'),
(10076, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:16.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:16'),
(10077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:16.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:17'),
(10078, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CCAC4F872CB2CC80B8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001237,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:17.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:17'),
(10079, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A52E0836C313CF535CBA5727387BA03C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10473},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10473},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001236,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:16.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:17'),
(10080, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CCAC4F872CB2CC80B8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001237,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:17.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:17'),
(10081, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01C1506F85DC0B75F3C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001237,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:17.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:17'),
(10082, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01C1506F85DC0B75F3C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001237,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:17.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:18'),
(10083, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10084, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C98D0DD7127AFE89B457547E22CD10\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Testando\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10481},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10481},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001245,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:25'),
(10085, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:25'),
(10086, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:25'),
(10087, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:25'),
(10088, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB008D6E4EF2857A8A2F0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Testando*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001245,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:26'),
(10089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C98D0DD7127AFE89B457547E22CD10\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Testando\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10481},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10481},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001245,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:26'),
(10090, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB008D6E4EF2857A8A2F0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Testando*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001245,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:25.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:26'),
(10091, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07DF167FBC92440ABA5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001246,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:26.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:26'),
(10092, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07DF167FBC92440ABA5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001246,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:26.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:26'),
(10093, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A595752C20EB457BEC9CA85B422A3394\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792012997\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10505},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10505},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001268,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:48.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:48'),
(10094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:49.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:49'),
(10095, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:48.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:49'),
(10096, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:49.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:49'),
(10097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:48.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:49'),
(10098, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB083D0E2FECD636D3B8F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9201-2997*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001269,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:49.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:49'),
(10099, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB083D0E2FECD636D3B8F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9201-2997*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001269,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:49.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:50'),
(10100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A595752C20EB457BEC9CA85B422A3394\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792012997\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10505},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10505},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001268,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:48.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:50'),
(10101, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07D29802A4AA09FEC4F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001270,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:50.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:47:50'),
(10102, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07D29802A4AA09FEC4F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001270,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:47:50.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:47:51'),
(10103, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C940482879F3D1E10DA8143CCDEEA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10518},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10518},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001282,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:02'),
(10104, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:02'),
(10105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:02'),
(10106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:02'),
(10107, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:02'),
(10108, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0323D6A77926A26D2C6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001282,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:03'),
(10109, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C940482879F3D1E10DA8143CCDEEA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10518},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10518},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001282,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:03'),
(10110, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0323D6A77926A26D2C6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001282,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:02.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:03'),
(10111, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FC018E337CA6824A10\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001283,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:03.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:03'),
(10112, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FC018E337CA6824A10\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001283,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:03.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:03'),
(10113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A54B2E257D9D9BD750AB16D14EADDEA0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10528},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10528},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001292,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:12.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 13:48:12'),
(10114, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A54B2E257D9D9BD750AB16D14EADDEA0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10528},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10528},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001292,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:12.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 13:48:12'),
(10115, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:12.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:12'),
(10116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:12.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:12'),
(10117, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:12.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:12'),
(10118, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:12.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:13'),
(10119, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5DF729CE6E8E1268092074FD8678EBB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"2\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10546},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10546},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001308,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:28.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 13:48:29'),
(10120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:28.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:29'),
(10121, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:29.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:48:29'),
(10122, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5DF729CE6E8E1268092074FD8678EBB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"2\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10546},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10546},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001308,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:28.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 13:48:29'),
(10123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:28.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:29'),
(10124, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:48:29.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:48:30'),
(10125, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C34A112AB39B2ECA98394E9AF404A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11058},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11058},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001820,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:00.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:00'),
(10126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:00.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:00'),
(10127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:00.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:00'),
(10128, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:00.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:01'),
(10129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:00.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:01'),
(10130, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BD4FF73F2758CDA6A9\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001821,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:01.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:01'),
(10131, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C34A112AB39B2ECA98394E9AF404A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11058},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11058},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001820,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:00.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:01'),
(10132, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BD4FF73F2758CDA6A9\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001821,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:01.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:01'),
(10133, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB043A4560A1CE841452B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001821,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:01.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:02'),
(10134, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB043A4560A1CE841452B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001821,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:01.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:02'),
(10135, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:11.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:11'),
(10136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A552FF206FA3AC3FA8DE9CE76A440F27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Testando\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11067},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11067},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001831,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:11.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:11'),
(10137, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:11.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:11'),
(10138, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:11.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:11'),
(10139, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:11.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:11'),
(10140, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0019CEA87FAEFE7D7CB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Testando*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001831,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:12.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:12'),
(10141, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A552FF206FA3AC3FA8DE9CE76A440F27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Testando\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11067},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11067},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001831,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:11.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:12'),
(10142, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0019CEA87FAEFE7D7CB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Testando*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001831,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:12.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:12'),
(10143, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CEC1885E2995E08620\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001832,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:12.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:12'),
(10144, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CEC1885E2995E08620\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001832,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:12.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:12'),
(10145, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5B8B49C53DBACC640A355E45E826DE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11080},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11080},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001845,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10146, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:25'),
(10147, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:25'),
(10148, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:25'),
(10149, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D990456DA88DA87C62\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001845,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:25'),
(10150, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:26'),
(10151, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D990456DA88DA87C62\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001845,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:26'),
(10152, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5B8B49C53DBACC640A355E45E826DE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11080},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11080},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001845,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:25.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:26'),
(10153, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02DCF79B7C54999AAD1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001847,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:27.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:27'),
(10154, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02DCF79B7C54999AAD1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001847,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:27.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:27'),
(10155, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EE5C173F0A88D607D2D82F48D2D8D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"100\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11089},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11089},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001853,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:33.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:33'),
(10156, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:33.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:33'),
(10157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:33.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:33'),
(10158, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:33.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:34'),
(10159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:33.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:34'),
(10160, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B4F96B89D6F85BA4A7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:34.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:34'),
(10161, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EE5C173F0A88D607D2D82F48D2D8D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"100\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11089},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11089},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001853,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:33.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:34'),
(10162, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B4F96B89D6F85BA4A7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:34.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:34'),
(10163, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB065DDA5E66ED20F143E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:34.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:35'),
(10164, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB065DDA5E66ED20F143E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771001854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:34.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:35'),
(10165, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:41.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:41'),
(10166, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:41.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:41'),
(10167, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A524BEBDBCED569F29D429C4DF19EA1C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"2\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11097},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11097},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:41.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 13:57:41'),
(10168, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:41.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 13:57:41'),
(10169, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A524BEBDBCED569F29D429C4DF19EA1C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"2\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11097},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11097},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771001861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:41.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 13:57:42'),
(10170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T13:57:41.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 13:57:42'),
(10171, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46450121678943@lid\",\"id\":\"A5799A42BB49AB7052534070F5509725\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771002028880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:28.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:29'),
(10172, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46450121678943@lid\",\"id\":\"A5799A42BB49AB7052534070F5509725\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771002028880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:28.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:29'),
(10173, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5514997015432@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AFA2383C784E2BE2349\"},\"pushName\":\"Paula Pimentel\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770996771\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"5514997015432@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A5799A42BB49AB7052534070F5509725\"},\"text\":\"👏🏽\",\"senderTimestampMs\":\"1771002032609\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771002032,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:32.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:32'),
(10174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5514997015432@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AFA2383C784E2BE2349\"},\"pushName\":\"Paula Pimentel\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770996771\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"5514997015432@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A5799A42BB49AB7052534070F5509725\"},\"text\":\"👏🏽\",\"senderTimestampMs\":\"1771002032609\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771002032,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:32.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:33'),
(10175, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997015432@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wElJnbT1Jr1wFUQ1bwym1h07aRRDbI4kAc8dcnrYHJQZw&oe=699C7CF7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:33.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:33'),
(10176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5514997015432@s.whatsapp.net\",\"pushName\":\"Paula 5432 $40 P2cine E\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wElJnbT1Jr1wFUQ1bwym1h07aRRDbI4kAc8dcnrYHJQZw&oe=699C7CF7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:33.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:33'),
(10177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5514997015432@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wElJnbT1Jr1wFUQ1bwym1h07aRRDbI4kAc8dcnrYHJQZw&oe=699C7CF7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:33.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:33'),
(10178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5514997015432@s.whatsapp.net\",\"pushName\":\"Paula 5432 $40 P2cine E\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505576113_1033987115144840_4312683604648988603_n.jpg?ccb=11-4&oh=01_Q5Aa3wElJnbT1Jr1wFUQ1bwym1h07aRRDbI4kAc8dcnrYHJQZw&oe=699C7CF7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:33.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:33'),
(10179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CA3F8FDFBC8AA19DD2BA53C6A38F0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11272},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11272},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002034,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:34.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:34'),
(10180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:34.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:34'),
(10181, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:34.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:35'),
(10182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:35.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:35'),
(10183, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AECCAF7D41846E1A81\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002035,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:35.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:35'),
(10184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:35.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:35'),
(10185, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CA3F8FDFBC8AA19DD2BA53C6A38F0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11272},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11272},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002034,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:34.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:35'),
(10186, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02E0D7D5615C52F5CF5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002035,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:35.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:36'),
(10187, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AECCAF7D41846E1A81\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002035,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:35.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:36'),
(10188, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02E0D7D5615C52F5CF5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002035,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:35.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:36'),
(10189, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:39.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:39'),
(10190, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58F21509F2C7B59B5CC2360F763D9FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Teste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11275},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11275},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002039,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:39.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:39'),
(10191, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:39.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:39'),
(10192, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:39.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:40'),
(10193, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:39.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:40'),
(10194, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58F21509F2C7B59B5CC2360F763D9FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Teste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11275},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11275},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002039,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:39.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:40'),
(10195, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A75F09ECAE7169F338\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Teste*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002039,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:40.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:40'),
(10196, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A75F09ECAE7169F338\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Teste*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002039,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:40.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:40'),
(10197, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E948291A9E2E13F1C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002040,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:40.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:41'),
(10198, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E948291A9E2E13F1C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002040,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:40.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:41'),
(10199, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:45.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:45'),
(10200, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A568FF320DECDAB136AD4E9B89B9D13E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11281},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11281},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002045,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:45.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:45'),
(10201, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:45.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:45'),
(10202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:45.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:45'),
(10203, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:45.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:46'),
(10204, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0139291D529A1E11787\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002045,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:46.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:46'),
(10205, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A568FF320DECDAB136AD4E9B89B9D13E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11281},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11281},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002045,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:45.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:46'),
(10206, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0139291D529A1E11787\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002045,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:46.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:46'),
(10207, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E81EFCF6AFB7E95E5A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002046,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:46.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:46'),
(10208, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E81EFCF6AFB7E95E5A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002046,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:46.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10209, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:50'),
(10210, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A530AE5851B4C9446F03238B501B9BDB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"100\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11286},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11286},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002050,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:50'),
(10211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:50'),
(10212, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:50'),
(10213, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:50'),
(10214, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F64773BBEA3F1B3C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002050,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:51'),
(10215, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F64773BBEA3F1B3C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002050,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:51'),
(10216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A530AE5851B4C9446F03238B501B9BDB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"100\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11286},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11286},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002050,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:50.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:52'),
(10217, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09B123DB1DDA721F88B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002052,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:52.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:00:52'),
(10218, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09B123DB1DDA721F88B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002052,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:00:52.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:00:52'),
(10219, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:04.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:01:04'),
(10220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A500F358DF14A84EC7C42C3A6AEAE450\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"2\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11300},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11300},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002064,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:04.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:01:04'),
(10221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:04.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:01:05'),
(10222, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:04.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:01:05'),
(10223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:04.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:01:05'),
(10224, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB006E6EFA59793E3999A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Teste\\n📱 *WhatsApp:* 47 9106-3914\\n💰 *Valor:* R$ 100,00\\n📅 *Vencimento:* 14\\/05\\/2026\\n📊 *Plano:* Trimestral\\n🆔 *ID:* 35\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002065,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:05.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:01:05'),
(10225, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB006E6EFA59793E3999A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Teste\\n📱 *WhatsApp:* 47 9106-3914\\n💰 *Valor:* R$ 100,00\\n📅 *Vencimento:* 14\\/05\\/2026\\n📊 *Plano:* Trimestral\\n🆔 *ID:* 35\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771002065,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:05.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:01:05'),
(10226, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A500F358DF14A84EC7C42C3A6AEAE450\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"2\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11300},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11300},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002064,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:04.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:01:06'),
(10227, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:58.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:01:59'),
(10228, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:01:58.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:01:59'),
(10229, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:00'),
(10230, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:00'),
(10231, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACE58A16EF66150F1029B475009FB5C0\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/teste\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rjmmW4vy2SBuN5R07J4WDTZYCaDlUeDWMG1fmrlqnd4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771002120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:00'),
(10232, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:00'),
(10233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:00'),
(10234, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACE58A16EF66150F1029B475009FB5C0\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/teste\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rjmmW4vy2SBuN5R07J4WDTZYCaDlUeDWMG1fmrlqnd4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771002120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:01'),
(10235, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:01'),
(10236, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:00.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:01'),
(10237, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:04.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:04'),
(10238, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:04.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:04'),
(10239, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:05.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:05'),
(10240, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:05.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:05'),
(10241, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:05.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:06'),
(10242, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:05.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:06'),
(10243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:07.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:07'),
(10244, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:07.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:07'),
(10245, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC99FEFAA518A90E159403FD68F4FC4F\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vemcimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"178KGHcwfGEwopXu2sNtD4\\/WJb3y8ft\\/5x8kS3laOX8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771002127,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:07.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:08'),
(10246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:08.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:08'),
(10247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:07.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:08'),
(10248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:08.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:08'),
(10249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:07.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:08'),
(10250, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC99FEFAA518A90E159403FD68F4FC4F\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vemcimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"178KGHcwfGEwopXu2sNtD4\\/WJb3y8ft\\/5x8kS3laOX8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771002127,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:07.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:09'),
(10251, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:11.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:11'),
(10252, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:11.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:11'),
(10253, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:12.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:12'),
(10254, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:12.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:12'),
(10255, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:13.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:13'),
(10256, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:13.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:13'),
(10257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC7CDFDFE3D2C7D84FD0C0F10C880B8B\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mr8m\\/J1QgIYcL9A8vYpGjQtxbSwXAMVLJbg1ag1vWHY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771002135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:15'),
(10258, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:15'),
(10259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:15'),
(10260, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:15'),
(10261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:15'),
(10262, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC7CDFDFE3D2C7D84FD0C0F10C880B8B\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mr8m\\/J1QgIYcL9A8vYpGjQtxbSwXAMVLJbg1ag1vWHY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771002135,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:16'),
(10263, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:02:16'),
(10264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:02:15.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:02:17'),
(10265, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771002748089,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:28.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:28'),
(10266, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771002748166,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:28.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:28'),
(10267, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771002748089,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:28.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:28'),
(10268, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771002748166,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:28.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:28'),
(10269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:29.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:29'),
(10270, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/public\\/\",\"matchedText\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/public\\/\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002749,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:29.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:29'),
(10271, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:29.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:29'),
(10272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/public\\/\",\"matchedText\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/public\\/\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771002749,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:29.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:29'),
(10273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:29.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:29'),
(10274, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:29.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:30'),
(10275, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:54'),
(10276, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5DD2C5C8C818CBD2AF39343F081F75D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/public\\/\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771002774,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:54'),
(10277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:54'),
(10278, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:54'),
(10279, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5DD2C5C8C818CBD2AF39343F081F75D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/public\\/\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771002774,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10280, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:55'),
(10281, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5DD2C5C8C818CBD2AF39343F081F75D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771002774299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:12:55'),
(10282, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5DD2C5C8C818CBD2AF39343F081F75D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771002774299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:12:54.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:12:55'),
(10283, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:10'),
(10284, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E61009A1FE2ED411B74F12C3FEE8DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Amor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:10'),
(10285, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:11'),
(10286, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E61009A1FE2ED411B74F12C3FEE8DA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003450875,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:11'),
(10287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:11'),
(10288, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5E61009A1FE2ED411B74F12C3FEE8DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Amor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:11'),
(10289, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:11'),
(10290, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E61009A1FE2ED411B74F12C3FEE8DA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003450875,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:10.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:13'),
(10291, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5DD2C5C8C818CBD2AF39343F081F75D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10292, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E61009A1FE2ED411B74F12C3FEE8DA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A500C14945BE0FA03041468715E6C28F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454560,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59587B5473CC542C9B4A98B6B8A766D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454557,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10295, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58712A32B0DFED70BDC7C9CD7E13275\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454563,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E7BB0999721FDDB4260D1A54292AB7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454570,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10297, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0F7D3A581315953B55F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5EA075277DA436F411480C93976BF59\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB02FB51B3F87014FDCD5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:14'),
(10300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58712A32B0DFED70BDC7C9CD7E13275\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454563,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:15'),
(10301, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E7BB0999721FDDB4260D1A54292AB7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454570,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:15'),
(10302, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0F7D3A581315953B55F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454576,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:15'),
(10303, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5EA075277DA436F411480C93976BF59\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454618,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:15'),
(10304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5DD2C5C8C818CBD2AF39343F081F75D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:15'),
(10305, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5C75D14AFAFB3EFEFBBF5852EB2DC05\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454583,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:15'),
(10306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A53C1DB14F6AA5A46AED4021DD157C1E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454632,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:15'),
(10307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB008F9263F71BED76A75\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:15'),
(10308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0CB21A1573E7295B88C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454684,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:15'),
(10309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0BBE6482B087EBFF2CF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:15'),
(10310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E61009A1FE2ED411B74F12C3FEE8DA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:16'),
(10311, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB01D95ECAD0109FFD8E4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454710,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:16'),
(10312, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB01D95ECAD0109FFD8E4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454710,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:16'),
(10313, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A575585E2E902582CFF79C222D205F25\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454651,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:16'),
(10314, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB035EDA9F4FA15904DA8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:16'),
(10315, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E8873DACFB15ABA1E03980006312A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:17'),
(10316, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB02FB51B3F87014FDCD5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:17'),
(10317, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB035EDA9F4FA15904DA8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:17'),
(10318, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A575585E2E902582CFF79C222D205F25\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454651,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:17'),
(10319, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A52C940675A8CB1217DC0012B6DA57F5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454676,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:17'),
(10320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:18.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:18'),
(10321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:18.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:18'),
(10322, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A584FBF3A5F4BD580B2DC7A4842C3C45\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vou terminar o gestor primeiro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:17.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:18'),
(10323, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A584FBF3A5F4BD580B2DC7A4842C3C45\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vou terminar o gestor primeiro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:17.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:18'),
(10324, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A52C940675A8CB1217DC0012B6DA57F5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454676,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:18'),
(10325, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A584FBF3A5F4BD580B2DC7A4842C3C45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003458003,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:18.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:19'),
(10326, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:17.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:19'),
(10327, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0B9B9F49FF72977165B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:19'),
(10328, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BB9420B3130E945EA1F5A2EFD732A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454688,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:19'),
(10329, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB07157B8EFA1CDAE541E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:19'),
(10330, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A584FBF3A5F4BD580B2DC7A4842C3C45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003458003,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:18.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:20'),
(10331, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB012051B370F1EC16B0D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454669,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:20'),
(10332, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A500C14945BE0FA03041468715E6C28F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454560,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:20'),
(10333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59587B5473CC542C9B4A98B6B8A766D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454557,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:20'),
(10334, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:17.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:20'),
(10335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BC652B47DF60617283BB46E4D17109\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003461046,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:21.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:21'),
(10336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:21.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:21'),
(10337, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5BC652B47DF60617283BB46E4D17109\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode cobrar normal\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003460,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:20.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:21'),
(10338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BC652B47DF60617283BB46E4D17109\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003461046,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:21.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:21'),
(10339, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:21.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:21'),
(10340, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5BC652B47DF60617283BB46E4D17109\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode cobrar normal\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003460,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:20.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:22'),
(10341, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0B9B9F49FF72977165B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:22'),
(10342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:20.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:22'),
(10343, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5E8873DACFB15ABA1E03980006312A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:22'),
(10344, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BB9420B3130E945EA1F5A2EFD732A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454688,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:22'),
(10345, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:20.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:23'),
(10346, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB07157B8EFA1CDAE541E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:23'),
(10347, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB012051B370F1EC16B0D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454669,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:23'),
(10348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB07759DD16E4945FA865\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:23'),
(10349, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5C75D14AFAFB3EFEFBBF5852EB2DC05\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454583,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:23'),
(10350, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB008F9263F71BED76A75\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:24'),
(10351, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A53C1DB14F6AA5A46AED4021DD157C1E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454632,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:24'),
(10352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5ACCEFF0DAED22670A5D6C09CB40119\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454727,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:24'),
(10353, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0872A9D19FDFC6F837D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:24'),
(10354, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB07759DD16E4945FA865\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454718,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:24'),
(10355, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0872A9D19FDFC6F837D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:25'),
(10356, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A67F4DBC880B776082D7569FE52283\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454747,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:25'),
(10357, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0CB21A1573E7295B88C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454684,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:25'),
(10358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54E75B810CEF2A80C19317DE3B08650\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:25'),
(10359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5ACCEFF0DAED22670A5D6C09CB40119\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454727,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:25'),
(10360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5A67F4DBC880B776082D7569FE52283\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454747,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:26'),
(10361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54E75B810CEF2A80C19317DE3B08650\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:26'),
(10362, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D3F7D3FC5C18BD0267930968A270E7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:26'),
(10363, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB04E7603092A4845997E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:26'),
(10364, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0BBE6482B087EBFF2CF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10365, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5D3F7D3FC5C18BD0267930968A270E7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:27'),
(10366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB04E7603092A4845997E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003454627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:14.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:27'),
(10367, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:31'),
(10368, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A50E4A882931C2784D125DE95E2C4825\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Até semana q vem eu finalizo ou antes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:31'),
(10369, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:31'),
(10370, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A50E4A882931C2784D125DE95E2C4825\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Até semana q vem eu finalizo ou antes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:31'),
(10371, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A50E4A882931C2784D125DE95E2C4825\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003471410,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:31'),
(10372, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:32'),
(10373, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A50E4A882931C2784D125DE95E2C4825\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003471410,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:32'),
(10374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:31.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:33'),
(10375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5715F35B46710DABA21599E4DE98AD5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Quero começar nele com td certo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:37'),
(10376, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:37'),
(10377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5715F35B46710DABA21599E4DE98AD5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Quero começar nele com td certo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:37'),
(10378, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:37'),
(10379, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5715F35B46710DABA21599E4DE98AD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003477887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:37'),
(10380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:37'),
(10381, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5715F35B46710DABA21599E4DE98AD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003477887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:38'),
(10382, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:37.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:38'),
(10383, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:42'),
(10384, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5540EAAF9D629F455C3757685C924B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra nao ter dor de cabeça\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003482,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:42'),
(10385, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:42'),
(10386, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5540EAAF9D629F455C3757685C924B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra nao ter dor de cabeça\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771003482,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:42'),
(10387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:42'),
(10388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:43'),
(10389, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5540EAAF9D629F455C3757685C924B9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003482346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:24:43'),
(10390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5540EAAF9D629F455C3757685C924B9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771003482346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:24:42.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:24:44'),
(10391, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BC652B47DF60617283BB46E4D17109\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:08'),
(10392, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A50E4A882931C2784D125DE95E2C4825\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:08'),
(10393, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A584FBF3A5F4BD580B2DC7A4842C3C45\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627916,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:08'),
(10394, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5540EAAF9D629F455C3757685C924B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:08'),
(10395, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5715F35B46710DABA21599E4DE98AD5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:08'),
(10396, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A584FBF3A5F4BD580B2DC7A4842C3C45\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627916,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:09'),
(10397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5715F35B46710DABA21599E4DE98AD5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:09'),
(10398, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5540EAAF9D629F455C3757685C924B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:09'),
(10399, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:09.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:09'),
(10400, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:09.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:09'),
(10401, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5BC652B47DF60617283BB46E4D17109\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:10'),
(10402, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A50E4A882931C2784D125DE95E2C4825\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771003627906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:07.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:10'),
(10403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:10.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:10'),
(10404, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:10.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:10'),
(10405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:10.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:10'),
(10406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F748B09850ECEBE9E7C10BAF9C32AC\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Q63QdVjzwA3EKNyY47o13aC43ixrF0NEzsJa5O4SFs0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771003630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:11'),
(10407, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:11'),
(10408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:11'),
(10409, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:11'),
(10410, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F748B09850ECEBE9E7C10BAF9C32AC\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Q63QdVjzwA3EKNyY47o13aC43ixrF0NEzsJa5O4SFs0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771003630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:11'),
(10411, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:27:12'),
(10412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:12'),
(10413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:11.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:12'),
(10414, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:27:10.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:27:13'),
(10415, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:58.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:38:58'),
(10416, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:58.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:38:58'),
(10417, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:59.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:38:59'),
(10418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:59.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:38:59'),
(10419, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC1964FC97F909C14A9A59A045D85516\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u6mRG1C8mBp1T7Hk6oKFMgXRgIc1b7RKq22bDCm7ArI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004339,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:59.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:00'),
(10420, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:59.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:00'),
(10421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:00.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:00'),
(10422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:59.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:00'),
(10423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:00.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:00'),
(10424, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC1964FC97F909C14A9A59A045D85516\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u6mRG1C8mBp1T7Hk6oKFMgXRgIc1b7RKq22bDCm7ArI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004339,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:38:59.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:00'),
(10425, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:05.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:05'),
(10426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:05.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:05'),
(10427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:07.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:07'),
(10428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACCABAD7B2A84BBD3BAF214A2BB610DC\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a0AN1WiZAWTEtwlgl25sy7vHyZnWtlsKrCSpucoZ2t0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004347,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:07.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:07'),
(10429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:07.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:07'),
(10430, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:07.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:08'),
(10431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:08.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:08'),
(10432, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACCABAD7B2A84BBD3BAF214A2BB610DC\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a0AN1WiZAWTEtwlgl25sy7vHyZnWtlsKrCSpucoZ2t0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004347,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:07.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:08'),
(10433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:07.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:08'),
(10434, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:08.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:08'),
(10435, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:19.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:20'),
(10436, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:19.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:20'),
(10437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:22'),
(10438, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC64A4A2509476DDBC98D3B6769DA74D\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"J9hpg2O4X0O7NLFtvnXyMA87NcR4oUyMG+bJKKApCDU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004361,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:22'),
(10439, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:22'),
(10440, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:22'),
(10441, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10442, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC64A4A2509476DDBC98D3B6769DA74D\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"J9hpg2O4X0O7NLFtvnXyMA87NcR4oUyMG+bJKKApCDU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004361,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:23'),
(10443, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:23'),
(10444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:22.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:23'),
(10445, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:27.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:27'),
(10446, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:27.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:27'),
(10447, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:31'),
(10448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:31'),
(10449, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACD5BC9850E5833F05A769B4040E0ECF\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/EOR4NXWpi2R9oNtS2B44yYBJ3JpCehzZSrIKAmOsGI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004371,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:31'),
(10450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:32'),
(10451, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:32'),
(10452, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:32'),
(10453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:32'),
(10454, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"ACD5BC9850E5833F05A769B4040E0ECF\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/cadastro\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/EOR4NXWpi2R9oNtS2B44yYBJ3JpCehzZSrIKAmOsGI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004371,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:31.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:32'),
(10455, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:57.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:58'),
(10456, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5763497B452A6FAD0693A43A3356E00\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13635},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13635},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:57.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:39:58'),
(10457, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:57.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:58'),
(10458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:58.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:58'),
(10459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:58.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:58'),
(10460, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09B1DFC5F18ED8E6507\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004398,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:58.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:39:59'),
(10461, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09B1DFC5F18ED8E6507\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004398,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:58.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:39:59'),
(10462, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5763497B452A6FAD0693A43A3356E00\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13635},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13635},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:39:57.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:39:59'),
(10463, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02324E956DBA7E6A892\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004400,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:00.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:00'),
(10464, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02324E956DBA7E6A892\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004400,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:00.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:00'),
(10465, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:05'),
(10466, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A510B75F13E36DF6087B18B030ABDF46\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Teste16\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13641},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13641},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004405,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:40:05'),
(10467, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:05'),
(10468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:05'),
(10469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:05'),
(10470, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A510B75F13E36DF6087B18B030ABDF46\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Teste16\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13641},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13641},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004405,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:40:06'),
(10471, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB036DE8DB6C39E83989F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004406,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:06.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:06'),
(10472, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB013247D9FE792A9990A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Teste16*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004405,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:06'),
(10473, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB036DE8DB6C39E83989F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004406,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:06.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:06'),
(10474, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB013247D9FE792A9990A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Teste16*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004405,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:05.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:06'),
(10475, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:13.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:13'),
(10476, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:13.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:14'),
(10477, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A567C502F3B230410C065F88268867D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13650},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13650},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004413,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:13.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:40:14'),
(10478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:14.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:14'),
(10479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:14.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:14'),
(10480, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DEADED25AC58D6A6A0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004414,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:14.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:14'),
(10481, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DEADED25AC58D6A6A0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9106-3914*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004414,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:14.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:14'),
(10482, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A567C502F3B230410C065F88268867D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13650},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13650},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004413,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:13.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:40:15'),
(10483, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB004131C5F310F32F44B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004415,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:15.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:15'),
(10484, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB004131C5F310F32F44B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004415,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:15.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:15'),
(10485, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:24'),
(10486, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CB4BE999DA07545FA5036D13AC440E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13660},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13660},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004424,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:40:24'),
(10487, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:24'),
(10488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:24'),
(10489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:24'),
(10490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CB4BE999DA07545FA5036D13AC440E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13660},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13660},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004424,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:40:25'),
(10491, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00BCB2957E64EC39037\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004424,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:26'),
(10492, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00BCB2957E64EC39037\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004424,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:24.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:26'),
(10493, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D53A198226F4CE4AEE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004426,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:26.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:26'),
(10494, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D53A198226F4CE4AEE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004426,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:26.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:26'),
(10495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5F9205D54EFA4524CCB79722E6FFBD3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13667},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13667},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004430,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:30.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:40:31'),
(10496, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:30.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:31'),
(10497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:30.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:31'),
(10498, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:31.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:31'),
(10499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:31.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:31'),
(10500, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CD8A05CDBE5A6D03BA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\nDigite a *data de vencimento* (DD\\/MM):\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004431,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:31.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:32'),
(10501, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CD8A05CDBE5A6D03BA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\nDigite a *data de vencimento* (DD\\/MM):\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004431,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:31.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:32'),
(10502, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5F9205D54EFA4524CCB79722E6FFBD3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13667},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13667},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004430,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:30.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:40:32'),
(10503, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B73BA8FAD6ECA81E3E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004433,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:33.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:33'),
(10504, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B73BA8FAD6ECA81E3E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004433,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:33.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C9D0BE0490CAD5A802E00370495E25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/02\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13687},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13687},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004451,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:40:51'),
(10506, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:51'),
(10507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:51'),
(10508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:51'),
(10509, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:51'),
(10510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C9D0BE0490CAD5A802E00370495E25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/02\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13687},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13687},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004451,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:40:52'),
(10511, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03E7C6AAA8EA7514533\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Teste16\\n📱 *WhatsApp:* 47 9106-3914\\n💰 *Valor:* R$ 40,00\\n📅 *Vencimento:* 13\\/02\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 37\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004451,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:40:52'),
(10512, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03E7C6AAA8EA7514533\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Teste16\\n📱 *WhatsApp:* 47 9106-3914\\n💰 *Valor:* R$ 40,00\\n📅 *Vencimento:* 13\\/02\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 37\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004451,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:40:51.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:40:52'),
(10513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:02.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:41:02'),
(10514, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:02.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:41:02'),
(10515, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:41:05'),
(10516, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:41:05'),
(10517, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:41:05'),
(10518, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC14C3092B3C11934339858AFEEE12F2\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qOQkirYlPtlExObam94ILFJr\\/nMJmU7dM4t8esxF6p8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004464,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:41:05'),
(10519, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:41:05'),
(10520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:41:05'),
(10521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:41:05'),
(10522, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC14C3092B3C11934339858AFEEE12F2\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qOQkirYlPtlExObam94ILFJr\\/nMJmU7dM4t8esxF6p8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771004464,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:05.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:41:05'),
(10523, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997254904@s.whatsapp.net\",\"pushName\":\"Gilson4904\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:14.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:41:14'),
(10524, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997254904@s.whatsapp.net\",\"pushName\":\"Gilson4904\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996919790@s.whatsapp.net\",\"pushName\":\"Claudiane9790\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:14.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:41:14'),
(10525, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997254904@s.whatsapp.net\",\"pushName\":\"Gilson4904\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:14.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:41:15'),
(10526, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515997254904@s.whatsapp.net\",\"pushName\":\"Gilson4904\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996919790@s.whatsapp.net\",\"pushName\":\"Claudiane9790\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:41:14.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:41:15'),
(10527, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58C0985A0C17F892EC4C1ACF0E70771\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14088},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14088},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:32.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:47:32'),
(10528, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:32.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:32'),
(10529, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:32.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:32'),
(10530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:32.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:32'),
(10531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:32.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:32'),
(10532, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C011B5112C85EB07E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004853,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:33.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:33'),
(10533, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C011B5112C85EB07E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004853,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:33.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:33'),
(10534, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58C0985A0C17F892EC4C1ACF0E70771\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/vencimento\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14088},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14088},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:32.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:47:33'),
(10535, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D15A514EB3F0FFE1BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:34.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:34'),
(10536, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D15A514EB3F0FFE1BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:34.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:34'),
(10537, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CFC3B7706A9B8D1CCB8313AE05A58F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14103},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14103},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004867,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:47.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:47:47'),
(10538, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:47.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:47'),
(10539, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:47.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:48'),
(10540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:47.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:48'),
(10541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:47.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:48'),
(10542, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0561258FD6F55F46292\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004868,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:48.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:48'),
(10543, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0561258FD6F55F46292\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004868,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:48.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:48'),
(10544, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5CFC3B7706A9B8D1CCB8313AE05A58F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14103},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14103},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004867,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:47.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:47:49'),
(10545, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB072CD51C1BC81950DE8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004870,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:50.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:47:50'),
(10546, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB072CD51C1BC81950DE8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004870,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:47:50.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:47:50'),
(10547, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:14'),
(10548, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5B804AFCBC8B172FA737FBBA31C9E77\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Livia schmitt\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14130},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14130},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004894,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:48:14'),
(10549, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:14'),
(10550, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:14'),
(10551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:14'),
(10552, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5B804AFCBC8B172FA737FBBA31C9E77\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Livia schmitt\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14130},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14130},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004894,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:48:15'),
(10553, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB028F5D24FB9461EB611\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Livia schmitt*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004894,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:15'),
(10554, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F8E7B98693F50D3BD3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004895,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:15.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:15'),
(10555, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB028F5D24FB9461EB611\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Livia schmitt*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004894,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:14.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:15'),
(10556, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F8E7B98693F50D3BD3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (mínimo 10 dígitos):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004895,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:15.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:15'),
(10557, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:21.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:22'),
(10558, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58C7E15A3160347C7A663EE22712969\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792083580\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14138},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14138},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004901,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:21.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:48:22'),
(10559, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:21.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:22'),
(10560, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:22.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:22'),
(10561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:22.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:22'),
(10562, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C94952D0ED1607C96D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9208-3580*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004902,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:22.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:23'),
(10563, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C94952D0ED1607C96D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9208-3580*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004902,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:22.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:23'),
(10564, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58C7E15A3160347C7A663EE22712969\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792083580\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14138},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14138},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004901,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:21.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:48:23'),
(10565, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DB8168D61C6E4E17B4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004904,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:24.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:24'),
(10566, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DB8168D61C6E4E17B4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite novamente (ex: 40 ou 40.50):\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004904,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:24.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:24'),
(10567, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:29.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10568, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A501DFCC96C54DB37B6DB8C052A13308\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"360\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14145},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14145},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004909,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:29.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:48:29'),
(10569, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:29.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:29'),
(10570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:29.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:29'),
(10571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:29.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:30'),
(10572, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB093AC244875C82C48BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 360,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004910,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:30.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:30'),
(10573, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB093AC244875C82C48BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 360,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004910,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:30.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:30'),
(10574, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A501DFCC96C54DB37B6DB8C052A13308\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"360\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14145},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14145},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004909,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:29.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:48:30'),
(10575, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E4B13206DAE39D2F5A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004910,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:30.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:30'),
(10576, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E4B13206DAE39D2F5A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004910,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:30.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:31'),
(10577, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:35'),
(10578, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EBD573CCB4CF91235AD7C161B7FB88\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14151},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14151},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004915,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:48:35'),
(10579, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:35'),
(10580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:35'),
(10581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:35'),
(10582, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EBD573CCB4CF91235AD7C161B7FB88\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14151},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14151},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004915,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:48:36'),
(10583, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BFAE0702054D273573\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004916,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:36.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:36'),
(10584, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BFAE0702054D273573\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004916,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:36.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:36'),
(10585, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E427553089694D1371\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Anual (360 dias)\\n\\nDigite a *data de vencimento* (DD\\/MM):\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004915,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:37'),
(10586, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E427553089694D1371\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Anual (360 dias)\\n\\nDigite a *data de vencimento* (DD\\/MM):\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004915,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:35.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:37'),
(10587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:46.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:46'),
(10588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D3444296E490C55886747316B0D581\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"360\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14162},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14162},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:46.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:48:46'),
(10589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:46.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:46'),
(10590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:46.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:47'),
(10591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:46.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:47'),
(10592, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02645B9E9A640BBABAC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004927,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:47.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:47'),
(10593, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02645B9E9A640BBABAC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004927,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:47.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:47'),
(10594, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D3444296E490C55886747316B0D581\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"360\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14162},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14162},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:46.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:48:47'),
(10595, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03A34629BB72C354E67\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004927,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:47.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:48:47'),
(10596, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03A34629BB72C354E67\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004927,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:48:47.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:48:49'),
(10597, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:02'),
(10598, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51036BAC44F8055BF0418F06BD292A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"15\\/03\\/2026\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14178},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14178},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004941,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:49:02'),
(10599, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:02'),
(10600, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:02'),
(10601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:02'),
(10602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51036BAC44F8055BF0418F06BD292A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"15\\/03\\/2026\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14178},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14178},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004941,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:49:03'),
(10603, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C8B0F961FC2C907E97\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004942,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:03'),
(10604, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB007547C246614340690\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004943,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:03.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:03'),
(10605, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C8B0F961FC2C907E97\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004942,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:02.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:03'),
(10606, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB007547C246614340690\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use DD\\/MM\\nExemplo: 15\\/03\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004943,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:03.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:03'),
(10607, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:15.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:15'),
(10608, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:15.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:15'),
(10609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:15.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:15'),
(10610, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5457258F21F871632FA97D11814BDD7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"15\\/12\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14191},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14191},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004955,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:15.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:49:15'),
(10611, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:15.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:16'),
(10612, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B01A277F7E21757EB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Livia schmitt\\n📱 *WhatsApp:* 47 9208-3580\\n💰 *Valor:* R$ 360,00\\n📅 *Vencimento:* 15\\/12\\/2026\\n📊 *Plano:* Anual\\n🆔 *ID:* 38\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004956,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:16.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:49:16'),
(10613, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B01A277F7E21757EB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Livia schmitt\\n📱 *WhatsApp:* 47 9208-3580\\n💰 *Valor:* R$ 360,00\\n📅 *Vencimento:* 15\\/12\\/2026\\n📊 *Plano:* Anual\\n🆔 *ID:* 38\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771004956,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:16.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:49:16'),
(10614, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5457258F21F871632FA97D11814BDD7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"15\\/12\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14191},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14191},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771004955,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:49:15.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:49:17'),
(10615, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EF32BB7D7ACC87AE735FAA6D81488E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14552},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14552},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:15.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:55:16'),
(10616, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:15.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:16'),
(10617, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:15.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:16'),
(10618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:16.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:16'),
(10619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:16.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:16'),
(10620, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E5567CC7EE612B9A87\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005316,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:16.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:16'),
(10621, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E5567CC7EE612B9A87\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005316,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:16.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:16'),
(10622, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EF32BB7D7ACC87AE735FAA6D81488E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14552},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14552},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:15.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:55:17'),
(10623, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AADFA6165674BD23B7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005317,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:17.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:17'),
(10624, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AADFA6165674BD23B7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005317,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:17.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:17'),
(10625, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:34.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:35'),
(10626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:35.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:35'),
(10627, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5B0AEC3EBBDA6A44A1ADCB8D4F44B48\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Julio teste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14570},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14570},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005334,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:34.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:55:35'),
(10628, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:34.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:35'),
(10629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:35.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:35');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10630, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A812E52C20C8A6D94E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Julio teste*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005335,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:35.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:36'),
(10631, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A812E52C20C8A6D94E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Julio teste*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005335,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:35.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:36'),
(10632, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5B0AEC3EBBDA6A44A1ADCB8D4F44B48\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Julio teste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14570},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14570},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005334,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:34.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:55:36'),
(10633, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C42D2DF8480C9FD8CD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005337,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:37.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:55:37'),
(10634, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C42D2DF8480C9FD8CD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005337,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:55:37.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:55:37'),
(10635, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A53849E02A876A69EF68D68A8B4B3A25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792083580\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14602},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14602},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005366,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:56:06'),
(10636, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:06'),
(10637, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:06'),
(10638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:06'),
(10639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:06'),
(10640, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A53849E02A876A69EF68D68A8B4B3A25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792083580\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14602},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14602},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005366,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:56:07'),
(10641, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0060F730A7EEB9607B3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005366,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:07'),
(10642, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0060F730A7EEB9607B3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005366,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:06.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:07'),
(10643, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DCB0CE9474926277B5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005367,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:07.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:07'),
(10644, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DCB0CE9474926277B5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005367,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:07.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:07'),
(10645, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:30.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:30'),
(10646, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:30.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:30'),
(10647, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57062E0368EE8324794D9455E6A1FAC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14626},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14626},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005390,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:30.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:56:30'),
(10648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:30.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:31'),
(10649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:30.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:31'),
(10650, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E61EF1DFDCB325C7FE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005391,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:31.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:31'),
(10651, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E61EF1DFDCB325C7FE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005391,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:31.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:31'),
(10652, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57062E0368EE8324794D9455E6A1FAC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14626},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14626},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005390,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:30.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:56:31'),
(10653, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0502B2C13D5E65ADBAA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005391,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:31.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:32'),
(10654, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0502B2C13D5E65ADBAA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Este telefone já está cadastrado!\\n\\nDigite outro telefone ou use \\/cancelar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005391,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:31.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:33'),
(10655, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57BD096D7D8D414B052D45435082F36\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cancelar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14636},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14636},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005400,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:56:40'),
(10656, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:40'),
(10657, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:40'),
(10658, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:40'),
(10659, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:40'),
(10660, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB011C03C58F8592D72B2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005400,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:41'),
(10661, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB011C03C58F8592D72B2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005400,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:41'),
(10662, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57BD096D7D8D414B052D45435082F36\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cancelar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14636},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14636},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005400,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:40.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:56:41'),
(10663, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05757759D76DAB99994\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005401,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:41.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:41'),
(10664, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05757759D76DAB99994\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005401,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:41.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:42'),
(10665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51DB71DDC923200680BCA8ED6FF05C4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14651},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14651},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:56:55'),
(10666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:55'),
(10667, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:55'),
(10668, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:55'),
(10669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:55'),
(10670, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51DB71DDC923200680BCA8ED6FF05C4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14651},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14651},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:56:56'),
(10671, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08A4346EB34ED690DB2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005416,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:56.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:56'),
(10672, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08A4346EB34ED690DB2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005416,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:56.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:56'),
(10673, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E92C1E64FC69F22303\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005415,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:56:56'),
(10674, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E92C1E64FC69F22303\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005415,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:56:55.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:56:57'),
(10675, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:03'),
(10676, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58981926E562CEDB660981897312E08\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Erick Souza\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14659},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14659},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005423,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:57:03'),
(10677, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:03'),
(10678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:03.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:03'),
(10679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:03.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:04'),
(10680, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05423624202AFA78A2A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Erick Souza*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005423,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:04.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:04'),
(10681, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05423624202AFA78A2A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Erick Souza*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005423,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:04.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:04'),
(10682, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58981926E562CEDB660981897312E08\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Erick Souza\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14659},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14659},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005423,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:57:04'),
(10683, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E44AD1D2816B0DA2B1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005424,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:04.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:04'),
(10684, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E44AD1D2816B0DA2B1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005424,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:04.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:04'),
(10685, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:46.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:46'),
(10686, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A9AB0AC68927471B2E986691AEFA09\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792602871\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14702},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14702},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005466,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:46.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:57:46'),
(10687, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:46.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:46'),
(10688, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:46.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:46'),
(10689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:46.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:47'),
(10690, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB094A2B05DEAB13C41D4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9260-2871*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005467,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:47.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10691, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB094A2B05DEAB13C41D4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9260-2871*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005467,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:47.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:47'),
(10692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A9AB0AC68927471B2E986691AEFA09\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4792602871\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14702},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14702},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005466,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:46.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:57:47'),
(10693, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A2AE73FD5CB059DADA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005467,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:47.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:47'),
(10694, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A2AE73FD5CB059DADA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005467,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:47.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:48'),
(10695, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:57.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:57'),
(10696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:57.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:57'),
(10697, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A7D9D65CC3ED42BAB6D1371E3CDF4C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14713},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14713},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:57.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:57:57'),
(10698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:57.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:57'),
(10699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:57.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:58'),
(10700, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB039756DC06072D079E0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005477,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:58.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:58'),
(10701, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB039756DC06072D079E0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005477,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:58.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:58'),
(10702, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A7D9D65CC3ED42BAB6D1371E3CDF4C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14713},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14713},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:57.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:57:58'),
(10703, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ABAACFCD01821715AA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005478,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:58.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:57:58'),
(10704, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ABAACFCD01821715AA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005478,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:57:58.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:57:59'),
(10705, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5E9F22409511F359027489A393307BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14724},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14724},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005488,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:58:08'),
(10706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:08'),
(10707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:08'),
(10708, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:08'),
(10709, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:08'),
(10710, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0112DEE1FD6ED9E4805\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005488,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:09'),
(10711, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0112DEE1FD6ED9E4805\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005488,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:09'),
(10712, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5E9F22409511F359027489A393307BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14724},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14724},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005488,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:08.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:58:09'),
(10713, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085AC026ECC2E928D3A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005490,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:10.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:10'),
(10714, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085AC026ECC2E928D3A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005490,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:10.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:10'),
(10715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:48'),
(10716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5176B6E7F24A92114C1526C1384640E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14764},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14764},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 14:58:48'),
(10717, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:48'),
(10718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:48'),
(10719, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B7AAA470AA4E23FC1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Erick Souza\\n📱 *WhatsApp:* 47 9260-2871\\n💰 *Valor:* R$ 40,00\\n📅 *Vencimento:* 13\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 39\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005528,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 14:58:48'),
(10720, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:49'),
(10721, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B7AAA470AA4E23FC1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Erick Souza\\n📱 *WhatsApp:* 47 9260-2871\\n💰 *Valor:* R$ 40,00\\n📅 *Vencimento:* 13\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 39\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771005528,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 14:58:49'),
(10722, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5176B6E7F24A92114C1526C1384640E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14764},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14764},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771005528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T14:58:48.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 14:58:49'),
(10723, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"presences\":{\"241274267389962@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:03:46.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:03:47'),
(10724, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"presences\":{\"241274267389962@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:03:46.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:03:47'),
(10725, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:01.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:08:01'),
(10726, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:01.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:08:01'),
(10727, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5DCF939D6DB3EB0C4A0B9217A04B397\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMrQzJ5N__kALqorGhQkdQpwinKF7Jd0S09ngik1CZV7FbmO_K13VXwnOGh8hyO1oJ1Cc-OfP-BtY8clOIHVhMVdPYUdRbs31Z7P-k1UA?ccb=9-4&oh=01_Q5Aa3wHFP5h4OjzphYBHz1Kqo6_UDdt3gbK1oBKmbSJmRR3-2g&oe=69B6CDC4&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qwOCJEYYSR42P+nM2WBNLNAWwFh0Wddli2T5m6fv4y8=\",\"fileLength\":\"52560\",\"height\":1600,\"width\":738,\"mediaKey\":\"GSmWxb8IWeZGnWGf+4UwEqyFXr31tXOxNqejB3WYVX0=\",\"fileEncSha256\":\"\\/mwjNnHq95bkzFwftG3D5MHbsvzKrTt\\/ndf7u3H1JXg=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMrQzJ5N__kALqorGhQkdQpwinKF7Jd0S09ngik1CZV7FbmO_K13VXwnOGh8hyO1oJ1Cc-OfP-BtY8clOIHVhMVdPYUdRbs31Z7P-k1UA?ccb=9-4&oh=01_Q5Aa3wHFP5h4OjzphYBHz1Kqo6_UDdt3gbK1oBKmbSJmRR3-2g&oe=69B6CDC4&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771006078\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQMCBAUBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD783pjdRHnHoY9mWfqHPG0qpYAlAD\\/xAAhEAEAAgIABgMAAAAAAAAAAAABABECAwQQEyExQRIgIv\\/aAAgBAQABPwD9o2Q6h6gK2ylZidvpi0fTdtdeIhDiNdC5Tr6+36hliqDNut2YUNTXw3w85XOnhQfEmGowzyyHzPBFpJcEYQ73z91KqPjvy93z9z\\/\\/xAAVEQEBAAAAAAAAAAAAAAAAAAABIP\\/aAAgBAgEBPwCRSf\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15315},\"scansSidecar\":\"IlA9GuR8tx30K1LymSWjAFvBbuxuALhsH3f9RFYZ4mMiwecZ\\/wTmKw==\",\"scanLengths\":[6696,25238,9210,11416],\"midQualityFileSha256\":\"9WCFd1chA+nRNGJi6RdG7BUIo7ViPYSJFlkL4p9wjO4=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15315},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771006081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:01.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:08:01'),
(10728, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:02.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:08:02'),
(10729, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:01.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:08:02'),
(10730, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:02.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:08:02'),
(10731, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A51D91112229A5E6A459AD52B7DAD8DD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oi boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:02.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:08:02'),
(10732, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8wYzTGC0UBZNHRPWnpIDsAaXt8iA9LYcmmnKw6fmtgw&oe=699C5F54&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:01.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:08:02'),
(10733, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:02.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:08:02'),
(10734, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:02.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:08:02'),
(10735, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5DCF939D6DB3EB0C4A0B9217A04B397\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMrQzJ5N__kALqorGhQkdQpwinKF7Jd0S09ngik1CZV7FbmO_K13VXwnOGh8hyO1oJ1Cc-OfP-BtY8clOIHVhMVdPYUdRbs31Z7P-k1UA?ccb=9-4&oh=01_Q5Aa3wHFP5h4OjzphYBHz1Kqo6_UDdt3gbK1oBKmbSJmRR3-2g&oe=69B6CDC4&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qwOCJEYYSR42P+nM2WBNLNAWwFh0Wddli2T5m6fv4y8=\",\"fileLength\":\"52560\",\"height\":1600,\"width\":738,\"mediaKey\":\"GSmWxb8IWeZGnWGf+4UwEqyFXr31tXOxNqejB3WYVX0=\",\"fileEncSha256\":\"\\/mwjNnHq95bkzFwftG3D5MHbsvzKrTt\\/ndf7u3H1JXg=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMrQzJ5N__kALqorGhQkdQpwinKF7Jd0S09ngik1CZV7FbmO_K13VXwnOGh8hyO1oJ1Cc-OfP-BtY8clOIHVhMVdPYUdRbs31Z7P-k1UA?ccb=9-4&oh=01_Q5Aa3wHFP5h4OjzphYBHz1Kqo6_UDdt3gbK1oBKmbSJmRR3-2g&oe=69B6CDC4&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771006078\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQMCBAUBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD783pjdRHnHoY9mWfqHPG0qpYAlAD\\/xAAhEAEAAgIABgMAAAAAAAAAAAABABECAwQQEyExQRIgIv\\/aAAgBAQABPwD9o2Q6h6gK2ylZidvpi0fTdtdeIhDiNdC5Tr6+36hliqDNut2YUNTXw3w85XOnhQfEmGowzyyHzPBFpJcEYQ73z91KqPjvy93z9z\\/\\/xAAVEQEBAAAAAAAAAAAAAAAAAAABIP\\/aAAgBAgEBPwCRSf\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15315},\"scansSidecar\":\"IlA9GuR8tx30K1LymSWjAFvBbuxuALhsH3f9RFYZ4mMiwecZ\\/wTmKw==\",\"scanLengths\":[6696,25238,9210,11416],\"midQualityFileSha256\":\"9WCFd1chA+nRNGJi6RdG7BUIo7ViPYSJFlkL4p9wjO4=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15315},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771006081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:01.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:08:02'),
(10736, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A51D91112229A5E6A459AD52B7DAD8DD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oi boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:02.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:08:03'),
(10737, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A5B6B6D6D660177D9662580041C6B369\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006084,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:05.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:08:05'),
(10738, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:05.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:08:05'),
(10739, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:05.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:08:05'),
(10740, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A5B6B6D6D660177D9662580041C6B369\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006084,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:05.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:08:05'),
(10741, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:05.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:08:05'),
(10742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:05.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:08:06'),
(10743, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A51D91112229A5E6A459AD52B7DAD8DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006086354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:06.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:08:06'),
(10744, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A5B6B6D6D660177D9662580041C6B369\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006086414,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:06.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:08:06'),
(10745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A51D91112229A5E6A459AD52B7DAD8DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006086354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:06.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:08:06'),
(10746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A5B6B6D6D660177D9662580041C6B369\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006086414,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:08:06.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:08:06'),
(10747, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:38.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:10:38'),
(10748, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A57887BBFA5BAFB5D2DA2F7B67EF71A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fala comigo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006237,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:38.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:38'),
(10749, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:38.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:10:38'),
(10750, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A57887BBFA5BAFB5D2DA2F7B67EF71A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fala comigo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006237,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:38.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10751, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:38.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:10:38'),
(10752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:38.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:10:39'),
(10753, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A57887BBFA5BAFB5D2DA2F7B67EF71A5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006239426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:39.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:39'),
(10754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A57887BBFA5BAFB5D2DA2F7B67EF71A5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006239426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:39.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:39'),
(10755, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:50.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:10:50'),
(10756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A54863DFA83C8B66CC448F58B3A0C090\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":2},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":2},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006250,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:50.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:50'),
(10757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:50.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:10:50'),
(10758, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:50.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:50'),
(10759, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A54863DFA83C8B66CC448F58B3A0C090\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":2},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":2},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006250,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:50.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:51'),
(10760, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:50.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:51'),
(10761, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A54863DFA83C8B66CC448F58B3A0C090\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006251757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:51.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:51'),
(10762, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A54863DFA83C8B66CC448F58B3A0C090\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006251757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:51.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:52'),
(10763, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:10:55'),
(10764, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A56F4DBE96C3FBDB96F95B3F47F8AE9A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fala comigo brother\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006255,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:55'),
(10765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:10:55'),
(10766, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A56F4DBE96C3FBDB96F95B3F47F8AE9A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fala comigo brother\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006255,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:55'),
(10767, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A56F4DBE96C3FBDB96F95B3F47F8AE9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006255667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:10:55'),
(10768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:10:56'),
(10769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:10:56'),
(10770, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A56F4DBE96C3FBDB96F95B3F47F8AE9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006255667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:10:55.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:10:56'),
(10771, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A5788FF764332D54FDA885174CA949B3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo na paz?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:18.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:11:18'),
(10772, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A5788FF764332D54FDA885174CA949B3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo na paz?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:18.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:11:18'),
(10773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:18.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:11:18'),
(10774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:19.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:11:19'),
(10775, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:18.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:11:19'),
(10776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:19.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:11:19'),
(10777, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5788FF764332D54FDA885174CA949B3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006279063,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:19.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:11:19'),
(10778, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5788FF764332D54FDA885174CA949B3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006279063,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:11:19.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:11:19'),
(10779, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A5820D2847CC082999A462BA5C69E9F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006342,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:22.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:12:22'),
(10780, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:22.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:12:22'),
(10781, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:22.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:12:23'),
(10782, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A5820D2847CC082999A462BA5C69E9F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006342,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:22.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:12:23'),
(10783, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5820D2847CC082999A462BA5C69E9F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006343057,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:23.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:12:23'),
(10784, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:22.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:12:23'),
(10785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5820D2847CC082999A462BA5C69E9F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006343057,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:23.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:12:23'),
(10786, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:12:22.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:12:24'),
(10787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A54863DFA83C8B66CC448F58B3A0C090\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006388342,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:08.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:13:08'),
(10788, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5788FF764332D54FDA885174CA949B3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006388331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:08.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:13:08'),
(10789, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A56F4DBE96C3FBDB96F95B3F47F8AE9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006388336,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:08.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:13:08'),
(10790, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A54863DFA83C8B66CC448F58B3A0C090\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006388342,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:08.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:13:08'),
(10791, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5788FF764332D54FDA885174CA949B3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006388331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:08.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:13:08'),
(10792, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A56F4DBE96C3FBDB96F95B3F47F8AE9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006388336,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:08.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:13:08'),
(10793, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5820D2847CC082999A462BA5C69E9F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006398695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:18.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:13:18'),
(10794, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5820D2847CC082999A462BA5C69E9F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006398695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:18.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:13:18'),
(10795, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:22.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:22'),
(10796, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:22.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:22'),
(10797, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:24.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:24'),
(10798, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:24.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:25'),
(10799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:25.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:25'),
(10800, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":false,\"id\":\"ACA607F45DBCD6CB09A313EBB52BCAD9\"},\"pushName\":\"Alguém Que Você Não Sabe\",\"message\":{\"conversation\":\"Opa boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IB01aQk3b2XM2qNdKMmzNoBS7XpqPVlaIfSY8zoHIsg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771006404,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:24.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:13:25'),
(10801, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:25.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:25'),
(10802, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:25.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:25'),
(10803, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":false,\"id\":\"ACA607F45DBCD6CB09A313EBB52BCAD9\"},\"pushName\":\"Alguém Que Você Não Sabe\",\"message\":{\"conversation\":\"Opa boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IB01aQk3b2XM2qNdKMmzNoBS7XpqPVlaIfSY8zoHIsg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771006404,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:24.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:13:26'),
(10804, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:25.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:26'),
(10805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:25.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:26'),
(10806, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:25.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:26'),
(10807, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:31.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:31'),
(10808, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:31.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:32'),
(10809, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:36.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:36'),
(10810, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:36.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:36'),
(10811, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:37'),
(10812, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:37'),
(10813, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:37'),
(10814, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":false,\"id\":\"ACEEDE8DEA71BEFCFFB102F76EE0B921\"},\"pushName\":\"Preto\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634099993_1430695205442639_364122604850686864_n.enc?ccb=11-4&oh=01_Q5Aa3wHlXJfA4BlgfyRFXuAxIm29j2E5zza84yTtmrN9K4n3pQ&oe=69B6DFA0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uNXJ1p8kIA8gRiAV7\\/ZwzIbtI5gKN\\/ZcRbMFzX\\/x4Sg=\",\"fileLength\":\"11335\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"iQlJHOBI8wyjYnNsoR7f4QDZWCfZIOEXxPawvz3TjAo=\",\"fileEncSha256\":\"R+nXp3si+kKFPwbBadFjZXBDqo2kc0\\/BdFy4jfgSTvs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634099993_1430695205442639_364122604850686864_n.enc?ccb=11-4&oh=01_Q5Aa3wHlXJfA4BlgfyRFXuAxIm29j2E5zza84yTtmrN9K4n3pQ&oe=69B6DFA0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006413\",\"waveform\":\"TE41S1dbW1tXUU1DJAsWFQ0SERINF0ITLVVSND9HVFMtNEY9CTtUU0dNVVhVTyMpTBYIUEk3SU47MkRMS1FODA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UMWILacwyWCR0m2SJBh+CXcC5wNywZT8vlKDyU1fRPM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:13:37'),
(10815, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:37'),
(10816, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:38'),
(10817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:13:38'),
(10818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:38'),
(10819, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:13:38'),
(10820, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":false,\"id\":\"ACEEDE8DEA71BEFCFFB102F76EE0B921\"},\"pushName\":\"Preto\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634099993_1430695205442639_364122604850686864_n.enc?ccb=11-4&oh=01_Q5Aa3wHlXJfA4BlgfyRFXuAxIm29j2E5zza84yTtmrN9K4n3pQ&oe=69B6DFA0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uNXJ1p8kIA8gRiAV7\\/ZwzIbtI5gKN\\/ZcRbMFzX\\/x4Sg=\",\"fileLength\":\"11335\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"iQlJHOBI8wyjYnNsoR7f4QDZWCfZIOEXxPawvz3TjAo=\",\"fileEncSha256\":\"R+nXp3si+kKFPwbBadFjZXBDqo2kc0\\/BdFy4jfgSTvs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634099993_1430695205442639_364122604850686864_n.enc?ccb=11-4&oh=01_Q5Aa3wHlXJfA4BlgfyRFXuAxIm29j2E5zza84yTtmrN9K4n3pQ&oe=69B6DFA0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006413\",\"waveform\":\"TE41S1dbW1tXUU1DJAsWFQ0SERINF0ITLVVSND9HVFMtNEY9CTtUU0dNVVhVTyMpTBYIUEk3SU47MkRMS1FODA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UMWILacwyWCR0m2SJBh+CXcC5wNywZT8vlKDyU1fRPM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:13:37.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:13:38'),
(10821, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:12.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:12'),
(10822, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A52DC66CA8CD1FABD2EA197A3435BF92\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006512,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:12.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:12'),
(10823, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:12.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:12'),
(10824, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A52DC66CA8CD1FABD2EA197A3435BF92\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006512,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:12.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:12'),
(10825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:12.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10826, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A52DC66CA8CD1FABD2EA197A3435BF92\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006513436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:13.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:13'),
(10827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:12.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:13'),
(10828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A52DC66CA8CD1FABD2EA197A3435BF92\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006513436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:13.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:13'),
(10829, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:30'),
(10830, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:30'),
(10831, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A5EED31015501F997FE17CC4D60795A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vi que teu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006530,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:30'),
(10832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:30'),
(10833, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A5EED31015501F997FE17CC4D60795A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vi que teu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006530,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:30'),
(10834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:31'),
(10835, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5EED31015501F997FE17CC4D60795A1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006530928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:31'),
(10836, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5EED31015501F997FE17CC4D60795A1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006530928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:30.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:31'),
(10837, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A5958FAC9EF259FFCA2E5BEE21718668\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:35'),
(10838, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:35'),
(10839, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:35'),
(10840, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A5958FAC9EF259FFCA2E5BEE21718668\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:35'),
(10841, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5958FAC9EF259FFCA2E5BEE21718668\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006535364,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:35'),
(10842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5958FAC9EF259FFCA2E5BEE21718668\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006535364,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:36'),
(10843, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:36'),
(10844, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:35.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:36'),
(10845, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A569B10DF7867D205AD4C0E906F9D9B1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006548,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:48.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:48'),
(10846, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A569B10DF7867D205AD4C0E906F9D9B1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771006548,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:48.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:48'),
(10847, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:48.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:15:49'),
(10848, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:48.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:15:49'),
(10849, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_oBuiRy7US7EQbfcNy9IKik4FO7VxdL5DvBF6RbTzgQ&oe=699C6152&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:48.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:49'),
(10850, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_oBuiRy7US7EQbfcNy9IKik4FO7VxdL5DvBF6RbTzgQ&oe=699C6152&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:48.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:49'),
(10851, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A569B10DF7867D205AD4C0E906F9D9B1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006549409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:49.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:15:49'),
(10852, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A569B10DF7867D205AD4C0E906F9D9B1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006549409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:15:49.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:15:49'),
(10853, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:22.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:16:22'),
(10854, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A574AA90A6E9CC51ED99AE173BCB4ADF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:22.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:16:22'),
(10855, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:22.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:16:23'),
(10856, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A574AA90A6E9CC51ED99AE173BCB4ADF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:22.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:16:23'),
(10857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_oBuiRy7US7EQbfcNy9IKik4FO7VxdL5DvBF6RbTzgQ&oe=699C6152&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:23.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:16:23'),
(10858, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A574AA90A6E9CC51ED99AE173BCB4ADF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006583221,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:23.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:16:23'),
(10859, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_oBuiRy7US7EQbfcNy9IKik4FO7VxdL5DvBF6RbTzgQ&oe=699C6152&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:23.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:16:23'),
(10860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A574AA90A6E9CC51ED99AE173BCB4ADF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006583221,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:23.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:16:24'),
(10861, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A5191A8DA4E95A083373ED6E3E854F2B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Teu acesso expirou dia 11\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006615,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:55.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:16:55'),
(10862, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A5191A8DA4E95A083373ED6E3E854F2B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Teu acesso expirou dia 11\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006615,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:55.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:16:56'),
(10863, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:55.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:16:56'),
(10864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTJX06vYD3kOCPgnB6irm0T6hRdrohoeS2bM4LVazuGw&oe=699C9992&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:56.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:16:56'),
(10865, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:55.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:16:56'),
(10866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTJX06vYD3kOCPgnB6irm0T6hRdrohoeS2bM4LVazuGw&oe=699C9992&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:56.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:16:56'),
(10867, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5191A8DA4E95A083373ED6E3E854F2B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006616904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:56.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:16:56'),
(10868, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5191A8DA4E95A083373ED6E3E854F2B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006616904,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:56.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:16:57'),
(10869, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:59.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:16:59'),
(10870, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A5162EC9A86994F26A85252A52983712\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006619,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:59.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:16:59'),
(10871, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"50075376074954@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:59.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:16:59'),
(10872, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"50075376074954@lid\",\"fromMe\":true,\"id\":\"A5162EC9A86994F26A85252A52983712\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771006619,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:16:59.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:16:59'),
(10873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5162EC9A86994F26A85252A52983712\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006620090,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:17:00.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:17:00'),
(10874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTJX06vYD3kOCPgnB6irm0T6hRdrohoeS2bM4LVazuGw&oe=699C9992&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:17:00.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:17:00'),
(10875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5162EC9A86994F26A85252A52983712\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006620090,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:17:00.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:17:00'),
(10876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"50075376074954@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473412004_3168679086604988_6376146345183453511_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTJX06vYD3kOCPgnB6irm0T6hRdrohoeS2bM4LVazuGw&oe=699C9992&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:17:00.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:17:00'),
(10877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A5944A113DA1997CDA279407016CED58\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/33577880_2374807793029468_951808995936902844_n.enc?ccb=11-4&oh=01_Q5Aa3wFkkMNs-kDCOPpahDxs7BJKgL1SuQsiE6_GwnTyD2a3yg&oe=69B6CCF5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"DJg9LSLbkJTc6quw4cVzcVpz4tmhlQ4pex\\/wGlTqlZI=\",\"fileLength\":\"7946\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"aMVl9VWrO8u\\/nTX3a\\/SnzEb28945rbk8KyhDKTg2gNU=\",\"fileEncSha256\":\"NgmVQxCchd1vtYF8S6y\\/DErZ\\/Swf0Bja0SKcewXvq6k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/33577880_2374807793029468_951808995936902844_n.enc?ccb=11-4&oh=01_Q5Aa3wFkkMNs-kDCOPpahDxs7BJKgL1SuQsiE6_GwnTyD2a3yg&oe=69B6CCF5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006817\",\"waveform\":\"AAkWFRYQI19aV1pYRTZRWUdBUFRNQBUMNEBLTltdIV5hVkxSUFZTT1lLLkFPVUdDUktGR0VGUFVTTkVQTxRVXQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006820,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:20.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:20'),
(10878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:20.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:20'),
(10879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:20.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:20'),
(10880, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:20.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:20'),
(10881, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A5944A113DA1997CDA279407016CED58\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/33577880_2374807793029468_951808995936902844_n.enc?ccb=11-4&oh=01_Q5Aa3wFkkMNs-kDCOPpahDxs7BJKgL1SuQsiE6_GwnTyD2a3yg&oe=69B6CCF5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"DJg9LSLbkJTc6quw4cVzcVpz4tmhlQ4pex\\/wGlTqlZI=\",\"fileLength\":\"7946\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"aMVl9VWrO8u\\/nTX3a\\/SnzEb28945rbk8KyhDKTg2gNU=\",\"fileEncSha256\":\"NgmVQxCchd1vtYF8S6y\\/DErZ\\/Swf0Bja0SKcewXvq6k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/33577880_2374807793029468_951808995936902844_n.enc?ccb=11-4&oh=01_Q5Aa3wFkkMNs-kDCOPpahDxs7BJKgL1SuQsiE6_GwnTyD2a3yg&oe=69B6CCF5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006817\",\"waveform\":\"AAkWFRYQI19aV1pYRTZRWUdBUFRNQBUMNEBLTltdIV5hVkxSUFZTT1lLLkFPVUdDUktGR0VGUFVTTkVQTxRVXQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006820,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:20.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:20'),
(10882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:20.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:20'),
(10883, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5944A113DA1997CDA279407016CED58\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006821415,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:21.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:21'),
(10884, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5944A113DA1997CDA279407016CED58\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006821415,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:21.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:21'),
(10885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/623341296_26124445843834917_2794417988214347354_n.enc?ccb=11-4&oh=01_Q5Aa3wFmJjCv4htXR8hvcd96qFxm18cD512s6iiIyRslhW1h0A&oe=69B6D415&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"LqS2tWlTgRE1XKGVo\\/NuVuqOviCOt\\/cGyz4cOnZ+ExQ=\",\"fileLength\":\"14461\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"FUvBtwtIlFtpRA\\/oQTdJITv0nt2djCojde\\/AALEmPuo=\",\"fileEncSha256\":\"LATeONyojHXAB8p8+fifJRHpSK5XO2sP8ax8tz9C+SM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/623341296_26124445843834917_2794417988214347354_n.enc?ccb=11-4&oh=01_Q5Aa3wFmJjCv4htXR8hvcd96qFxm18cD512s6iiIyRslhW1h0A&oe=69B6D415&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006823\",\"waveform\":\"AAQDCwU\\/T1tNN2JWUWFVT1RSGwk+R0UvKlZSKFhPVFxZIkhWQl9NTkhHS0cxTVBLMBICBAADAAAtV0xFCwAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:28'),
(10886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:28'),
(10887, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:28'),
(10888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:28'),
(10889, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":true,\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/623341296_26124445843834917_2794417988214347354_n.enc?ccb=11-4&oh=01_Q5Aa3wFmJjCv4htXR8hvcd96qFxm18cD512s6iiIyRslhW1h0A&oe=69B6D415&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"LqS2tWlTgRE1XKGVo\\/NuVuqOviCOt\\/cGyz4cOnZ+ExQ=\",\"fileLength\":\"14461\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"FUvBtwtIlFtpRA\\/oQTdJITv0nt2djCojde\\/AALEmPuo=\",\"fileEncSha256\":\"LATeONyojHXAB8p8+fifJRHpSK5XO2sP8ax8tz9C+SM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/623341296_26124445843834917_2794417988214347354_n.enc?ccb=11-4&oh=01_Q5Aa3wFmJjCv4htXR8hvcd96qFxm18cD512s6iiIyRslhW1h0A&oe=69B6D415&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006823\",\"waveform\":\"AAQDCwU\\/T1tNN2JWUWFVT1RSGwk+R0UvKlZSKFhPVFxZIkhWQl9NTkhHS0cxTVBLMBICBAADAAAtV0xFCwAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:28'),
(10890, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006828937,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:29'),
(10891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:29'),
(10892, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771006828937,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:28.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:29'),
(10893, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006833178,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:33.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:33'),
(10894, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5944A113DA1997CDA279407016CED58\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006833182,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:33.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:33'),
(10895, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006833178,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:33.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:33'),
(10896, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5944A113DA1997CDA279407016CED58\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006833182,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:33.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:33'),
(10897, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5944A113DA1997CDA279407016CED58\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771006833930,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:33.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:34'),
(10898, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A5944A113DA1997CDA279407016CED58\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771006833930,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:33.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10899, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:38.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:38'),
(10900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:38.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:38'),
(10901, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771006838205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:38.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:38'),
(10902, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"98771396460584@lid\",\"id\":\"A53FA4D4651E1BDACEAF2C119DC5F8CB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771006838205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:38.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:38'),
(10903, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:40.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:40'),
(10904, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC93EFB788EAB3520CC60FC4078EECB0\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vemcimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6GAYtE5GdheCGoSANC6Co1taKbL5VDf0I+Vf7gELXxg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771006840,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:40.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:40'),
(10905, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:40.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:40'),
(10906, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:40.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:40'),
(10907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:40.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:41'),
(10908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:41'),
(10909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5958FAC9EF259FFCA2E5BEE21718668\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006841176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:41'),
(10910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:41'),
(10911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5EED31015501F997FE17CC4D60795A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006841179,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:41'),
(10912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5958FAC9EF259FFCA2E5BEE21718668\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006841176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:42'),
(10913, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A52DC66CA8CD1FABD2EA197A3435BF92\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006841184,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:42'),
(10914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A5EED31015501F997FE17CC4D60795A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006841179,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:42'),
(10915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC93EFB788EAB3520CC60FC4078EECB0\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vemcimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6GAYtE5GdheCGoSANC6Co1taKbL5VDf0I+Vf7gELXxg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771006840,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:40.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:42'),
(10916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A52DC66CA8CD1FABD2EA197A3435BF92\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771006841184,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:41.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:42'),
(10917, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:44.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:44'),
(10918, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:44.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:44'),
(10919, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:46.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:46'),
(10920, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:46.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:46'),
(10921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:51.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:51'),
(10922, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:51.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:51'),
(10923, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:52'),
(10924, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:52'),
(10925, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":false,\"id\":\"ACE2F6DD852A949F9EE8992A6C7B5313\"},\"pushName\":\"Alguém Que Você Não Sabe\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635216410_884598894183173_1760175661945822248_n.enc?ccb=11-4&oh=01_Q5Aa3wFnCDn3Po1wOroPaSMLLg0pav5SvGvWTvIGIkfZ3jIu5Q&oe=69B6E42A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QQbc7VMF4BUrEc4qnZxxugG\\/QQZelnpVz0a+YyISFBI=\",\"fileLength\":\"15666\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"8UhflPdS05LDlCdk\\/0EeOc+ARjwjuz+DLCIulNpjztA=\",\"fileEncSha256\":\"FFnQWSiBbywTmAGQloH9j6ffTkeXAFGGicve1NHAtsw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635216410_884598894183173_1760175661945822248_n.enc?ccb=11-4&oh=01_Q5Aa3wFnCDn3Po1wOroPaSMLLg0pav5SvGvWTvIGIkfZ3jIu5Q&oe=69B6E42A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006846\",\"waveform\":\"AAA9SUkeRzQ7Rz8uSBRTSy8NCDgrRjEFAQA+R0g7Oy86ODlEQkZESUYcSlcwPClGQDZHOjQtH0M5OUI7CwAAAw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6PhNBeLUn78ZnY9MH0v25DY+hu1GZqFR6jIRpk2\\/e9g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:20:52'),
(10926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:52'),
(10927, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":false,\"id\":\"ACE2F6DD852A949F9EE8992A6C7B5313\"},\"pushName\":\"Alguém Que Você Não Sabe\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635216410_884598894183173_1760175661945822248_n.enc?ccb=11-4&oh=01_Q5Aa3wFnCDn3Po1wOroPaSMLLg0pav5SvGvWTvIGIkfZ3jIu5Q&oe=69B6E42A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QQbc7VMF4BUrEc4qnZxxugG\\/QQZelnpVz0a+YyISFBI=\",\"fileLength\":\"15666\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"8UhflPdS05LDlCdk\\/0EeOc+ARjwjuz+DLCIulNpjztA=\",\"fileEncSha256\":\"FFnQWSiBbywTmAGQloH9j6ffTkeXAFGGicve1NHAtsw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635216410_884598894183173_1760175661945822248_n.enc?ccb=11-4&oh=01_Q5Aa3wFnCDn3Po1wOroPaSMLLg0pav5SvGvWTvIGIkfZ3jIu5Q&oe=69B6E42A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006846\",\"waveform\":\"AAA9SUkeRzQ7Rz8uSBRTSy8NCDgrRjEFAQA+R0g7Oy86ODlEQkZESUYcSlcwPClGQDZHOjQtH0M5OUI7CwAAAw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6PhNBeLUn78ZnY9MH0v25DY+hu1GZqFR6jIRpk2\\/e9g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:20:52'),
(10928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:52'),
(10929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:52'),
(10930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:52.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:53'),
(10931, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:56.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:20:56'),
(10932, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:20:56.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:20:56'),
(10933, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:01.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:21:01'),
(10934, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"presences\":{\"98771396460584@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:01.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:21:01'),
(10935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:21:02'),
(10936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":false,\"id\":\"ACDC16D9903E6E40FB5F522873F70E31\"},\"pushName\":\"Preto\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30220960_1167273365284243_2131351371095840611_n.enc?ccb=11-4&oh=01_Q5Aa3wEBdVFFS1he9dpXJs8PkGx14GQVya6YPiM65nyKfCp17w&oe=69B6C2F1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"v4NWV6yVkVdQrH\\/la0Wer2ab3I\\/Vn9onLuGfL1S8j9s=\",\"fileLength\":\"32327\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"5EGLik\\/MwoQN9++7mabU2vjKb1hnBR6KBTS62tKQCeo=\",\"fileEncSha256\":\"01GrsUFfg4zRfYZAMofd5wA7+vk\\/ubfVPIJ7g3GgTNs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30220960_1167273365284243_2131351371095840611_n.enc?ccb=11-4&oh=01_Q5Aa3wEBdVFFS1he9dpXJs8PkGx14GQVya6YPiM65nyKfCp17w&oe=69B6C2F1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006847\",\"waveform\":\"AA1RKF5cDVYjLgtSWFhVU1NYBQoNDA0JUVxUThBEPw4IT1QqHVhbWEM+RlI+SytVVCQMBQoFUFlZYEolT1kfBA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f6mpDf6TLKwcKd9NuN9ncvcb9Jpwi+BzESRfTnnOY9w=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:21:02'),
(10937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:21:02'),
(10938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"98771396460584@lid\",\"fromMe\":false,\"id\":\"ACDC16D9903E6E40FB5F522873F70E31\"},\"pushName\":\"Preto\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30220960_1167273365284243_2131351371095840611_n.enc?ccb=11-4&oh=01_Q5Aa3wEBdVFFS1he9dpXJs8PkGx14GQVya6YPiM65nyKfCp17w&oe=69B6C2F1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"v4NWV6yVkVdQrH\\/la0Wer2ab3I\\/Vn9onLuGfL1S8j9s=\",\"fileLength\":\"32327\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"5EGLik\\/MwoQN9++7mabU2vjKb1hnBR6KBTS62tKQCeo=\",\"fileEncSha256\":\"01GrsUFfg4zRfYZAMofd5wA7+vk\\/ubfVPIJ7g3GgTNs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30220960_1167273365284243_2131351371095840611_n.enc?ccb=11-4&oh=01_Q5Aa3wEBdVFFS1he9dpXJs8PkGx14GQVya6YPiM65nyKfCp17w&oe=69B6C2F1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771006847\",\"waveform\":\"AA1RKF5cDVYjLgtSWFhVU1NYBQoNDA0JUVxUThBEPw4IT1QqHVhbWEM+RlI+SytVVCQMBQoFUFlZYEolT1kfBA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f6mpDf6TLKwcKd9NuN9ncvcb9Jpwi+BzESRfTnnOY9w=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771006862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:21:02'),
(10939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:21:02'),
(10940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"98771396460584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:21:03'),
(10941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:21:03'),
(10942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"98771396460584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620725300_1947934195844841_7713873563054430014_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9bWX8XkHuGsYhX0l856KPkjaRg4AtEA6bb7sAhiriUg&oe=699C6A91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:21:02.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:21:03'),
(10943, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:55.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:27:56'),
(10944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636213887_1451949559849035_2908295492522451904_n.enc?ccb=11-4&oh=01_Q5Aa3wHrs5DzAReKrbQZA2Xtk9zuJAy41gugQRnAjZtqYGkPkA&oe=69B6C7D2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CQey9VfYmj1TvIo37aiURTDJbmv50+aVjpfFez78k4U=\",\"fileLength\":\"9579\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"o20q0WP3zjBDR0gy+awsKiDLaDaahuRcvhjUnvWfcBY=\",\"fileEncSha256\":\"D3uombOgR6DBqSVRJf6CLupq8uIlyNthxv5jVFNobdg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636213887_1451949559849035_2908295492522451904_n.enc?ccb=11-4&oh=01_Q5Aa3wHrs5DzAReKrbQZA2Xtk9zuJAy41gugQRnAjZtqYGkPkA&oe=69B6C7D2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771007272\",\"waveform\":\"ABYhGx0sTSdVRVdXRDJGU1JJWldIHhkWHQ4eFhkbIB4TCgQEDCQdHiEiTF1RRUdUVVFSOj9NTUM6RyEnSExQUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771007275,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:55.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:27:56'),
(10945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:55.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:27:56'),
(10946, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":true,\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636213887_1451949559849035_2908295492522451904_n.enc?ccb=11-4&oh=01_Q5Aa3wHrs5DzAReKrbQZA2Xtk9zuJAy41gugQRnAjZtqYGkPkA&oe=69B6C7D2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CQey9VfYmj1TvIo37aiURTDJbmv50+aVjpfFez78k4U=\",\"fileLength\":\"9579\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"o20q0WP3zjBDR0gy+awsKiDLaDaahuRcvhjUnvWfcBY=\",\"fileEncSha256\":\"D3uombOgR6DBqSVRJf6CLupq8uIlyNthxv5jVFNobdg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636213887_1451949559849035_2908295492522451904_n.enc?ccb=11-4&oh=01_Q5Aa3wHrs5DzAReKrbQZA2Xtk9zuJAy41gugQRnAjZtqYGkPkA&oe=69B6C7D2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771007272\",\"waveform\":\"ABYhGx0sTSdVRVdXRDJGU1JJWldIHhkWHQ4eFhkbIB4TCgQEDCQdHiEiTF1RRUdUVVFSOj9NTUM6RyEnSExQUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771007275,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:55.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:27:56'),
(10947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771007276046,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:56.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:27:56'),
(10948, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:56.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:27:56'),
(10949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771007276046,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:56.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:27:56'),
(10950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:27:56.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:27:56'),
(10951, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":true,\"id\":\"A5EFBB833C1AA7339992F36C16E0EAA3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771007425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:25.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:30:25'),
(10952, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:25.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:30:25'),
(10953, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:25.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:30:25'),
(10954, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5fK1HuoUHPLnkoHUQqSojIwm7pC4MAAHCB2x9RIfI8g&oe=699C7000&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:25.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:30:25'),
(10955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":true,\"id\":\"A5EFBB833C1AA7339992F36C16E0EAA3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771007425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:25.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:30:25'),
(10956, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5fK1HuoUHPLnkoHUQqSojIwm7pC4MAAHCB2x9RIfI8g&oe=699C7000&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:25.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:30:25'),
(10957, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A5EFBB833C1AA7339992F36C16E0EAA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771007426846,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:26.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:30:26'),
(10958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A5EFBB833C1AA7339992F36C16E0EAA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771007426846,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:30:26.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:30:27'),
(10959, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5191A8DA4E95A083373ED6E3E854F2B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:33:33'),
(10960, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5162EC9A86994F26A85252A52983712\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:33:33'),
(10961, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A569B10DF7867D205AD4C0E906F9D9B1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:33:33'),
(10962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A574AA90A6E9CC51ED99AE173BCB4ADF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613648,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:33:33'),
(10963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5191A8DA4E95A083373ED6E3E854F2B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:33:34'),
(10964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A5162EC9A86994F26A85252A52983712\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:33:34'),
(10965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A569B10DF7867D205AD4C0E906F9D9B1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:33:34'),
(10966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"50075376074954@lid\",\"id\":\"A574AA90A6E9CC51ED99AE173BCB4ADF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007613648,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:33:33.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:33:34'),
(10967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007645085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:05.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:34:05'),
(10968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771007645085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:05.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:34:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(10969, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771007647033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:07.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:34:07'),
(10970, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184503356149915@lid\",\"id\":\"A500678D904FE57D8D88E8BCCD229BFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771007647033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:07.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:34:07'),
(10971, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"37774388375627@lid\",\"presences\":{\"37774388375627@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:10.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:10'),
(10972, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"37774388375627@lid\",\"presences\":{\"37774388375627@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:10.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:10'),
(10973, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:23.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:23'),
(10974, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:23.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:23'),
(10975, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:32.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:32'),
(10976, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"presences\":{\"184503356149915@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:32.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:32'),
(10977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:32.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:33'),
(10978, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":false,\"id\":\"ACC4DEE37E00D7FC5BCD05F3E1E50A94\"},\"pushName\":\"Alguém Que Você Não Sabe\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636046356_917729080673537_2007224451424434047_n.enc?ccb=11-4&oh=01_Q5Aa3wHtfgchn7e981JPYFe0YXG7ZWvnyzl0NXCqsT8tTu97gw&oe=69B6C913&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+eqPAs5zVU028wMU+yaN1ufT+GZUHPAy6gi\\/e6zCNZU=\",\"fileLength\":\"20832\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"CTkuVvdRrhihvWhXHl20TaF0GEKvLCIZesQykX9jYi8=\",\"fileEncSha256\":\"W3MmzhE6933edTI3GTNIvubQiVoGZwAHuQNuhKJArmg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636046356_917729080673537_2007224451424434047_n.enc?ccb=11-4&oh=01_Q5Aa3wHtfgchn7e981JPYFe0YXG7ZWvnyzl0NXCqsT8tTu97gw&oe=69B6C913&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771007664\",\"waveform\":\"L0xDQkY5SktURExJRhJPTTo+PjwASE4oUD9EPU07BRICAAADPE9HFENDQScBAEY9NE45MyNGE0pGKy5FAQQAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HBvoZyPOgnuQNLeBsxLy80bdYISKSfOxlMbn5+9jog4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771007672,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:32.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:34:33'),
(10979, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:32.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:33'),
(10980, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184503356149915@lid\",\"fromMe\":false,\"id\":\"ACC4DEE37E00D7FC5BCD05F3E1E50A94\"},\"pushName\":\"Alguém Que Você Não Sabe\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636046356_917729080673537_2007224451424434047_n.enc?ccb=11-4&oh=01_Q5Aa3wHtfgchn7e981JPYFe0YXG7ZWvnyzl0NXCqsT8tTu97gw&oe=69B6C913&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+eqPAs5zVU028wMU+yaN1ufT+GZUHPAy6gi\\/e6zCNZU=\",\"fileLength\":\"20832\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"CTkuVvdRrhihvWhXHl20TaF0GEKvLCIZesQykX9jYi8=\",\"fileEncSha256\":\"W3MmzhE6933edTI3GTNIvubQiVoGZwAHuQNuhKJArmg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636046356_917729080673537_2007224451424434047_n.enc?ccb=11-4&oh=01_Q5Aa3wHtfgchn7e981JPYFe0YXG7ZWvnyzl0NXCqsT8tTu97gw&oe=69B6C913&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771007664\",\"waveform\":\"L0xDQkY5SktURExJRhJPTTo+PjwASE4oUD9EPU07BRICAAADPE9HFENDQScBAEY9NE45MyNGE0pGKy5FAQQAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HBvoZyPOgnuQNLeBsxLy80bdYISKSfOxlMbn5+9jog4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771007672,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:32.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:34:33'),
(10981, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:33.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:33'),
(10982, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184503356149915@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:33.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:34'),
(10983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:33.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:34'),
(10984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184503356149915@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/427468240_778345951078790_2239432294525771627_n.jpg?ccb=11-4&oh=01_Q5Aa3wHV2Yf_F-pHAuDlPGAlnHxHS9baNAJpV48dWTPC9fhHzg&oe=699C8B2B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:33.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:34'),
(10985, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:34.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:35'),
(10986, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":true,\"id\":\"A56EB5AD199173E529C455C9D87E6BA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771007674,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:34.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:34:35'),
(10987, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:34.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:35'),
(10988, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":true,\"id\":\"A56EB5AD199173E529C455C9D87E6BA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771007674,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:34.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:34:35'),
(10989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5fK1HuoUHPLnkoHUQqSojIwm7pC4MAAHCB2x9RIfI8g&oe=699C7000&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:35.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:34:35'),
(10990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5fK1HuoUHPLnkoHUQqSojIwm7pC4MAAHCB2x9RIfI8g&oe=699C7000&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:35.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:34:36'),
(10991, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A56EB5AD199173E529C455C9D87E6BA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771007675978,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:35.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:34:36'),
(10992, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A56EB5AD199173E529C455C9D87E6BA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771007675978,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:34:35.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:34:36'),
(10993, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"58974330220661@lid\",\"fromMe\":true,\"id\":\"A5D0526494A342835BA583B52153E8B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":352},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":352},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:00.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:44:01'),
(10994, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"58974330220661@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:00.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:44:01'),
(10995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"58974330220661@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:00.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:44:01'),
(10996, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"58974330220661@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619236426_1399224385548640_8537736229247635708_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbVvUWCVdztAsim6712isR-8Jn7H9lX9hiZgd225FANA&oe=699C7F2A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:01.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:44:01'),
(10997, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"58974330220661@lid\",\"fromMe\":true,\"id\":\"A5D0526494A342835BA583B52153E8B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":352},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":352},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:00.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:44:01'),
(10998, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"58974330220661@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619236426_1399224385548640_8537736229247635708_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbVvUWCVdztAsim6712isR-8Jn7H9lX9hiZgd225FANA&oe=699C7F2A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:01.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:44:01'),
(10999, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"58974330220661@lid\",\"id\":\"A5D0526494A342835BA583B52153E8B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008242068,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:02.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:44:04'),
(11000, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"58974330220661@lid\",\"id\":\"A5D0526494A342835BA583B52153E8B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008242068,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:02.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:44:04'),
(11001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":true,\"id\":\"A57BFEF18E294E99BF53D19C8E303501\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008263,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:23.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:44:23'),
(11002, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:24.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:44:24'),
(11003, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":true,\"id\":\"A57BFEF18E294E99BF53D19C8E303501\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008263,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:23.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:44:24'),
(11004, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:23.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:44:24'),
(11005, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:24.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:44:24'),
(11006, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:23.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:44:24'),
(11007, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A57BFEF18E294E99BF53D19C8E303501\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008271058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:31.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:44:31'),
(11008, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A57BFEF18E294E99BF53D19C8E303501\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008271058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:44:31.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:44:31'),
(11009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209448459067522@lid\",\"presences\":{\"209448459067522@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:06.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:45:06'),
(11010, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209448459067522@lid\",\"presences\":{\"209448459067522@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:06.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:45:06'),
(11011, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5F6529199EFABC66B8E2ACE25E91FCC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008316967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:16.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:45:17'),
(11012, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5F6529199EFABC66B8E2ACE25E91FCC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008316967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:16.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:45:17'),
(11013, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"226109023080645@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:34.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:45:34'),
(11014, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"226109023080645@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:34.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:45:34'),
(11015, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"226109023080645@lid\",\"fromMe\":true,\"id\":\"A56B1A6BB3660B9A1E010BC4608E11DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008334,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:34.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:45:35'),
(11016, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"226109023080645@lid\",\"fromMe\":true,\"id\":\"A56B1A6BB3660B9A1E010BC4608E11DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008334,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:34.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:45:35'),
(11017, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"226109023080645@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_2592058387820816_1545883934841196492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAJnkgLt-EDw3UcdYE1voKzk6U-gQO8QJxz4TzRk4jhA&oe=699C6A03&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:34.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:45:35'),
(11018, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"226109023080645@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_2592058387820816_1545883934841196492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAJnkgLt-EDw3UcdYE1voKzk6U-gQO8QJxz4TzRk4jhA&oe=699C6A03&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:34.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:45:35'),
(11019, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"226109023080645@lid\",\"id\":\"A56B1A6BB3660B9A1E010BC4608E11DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008336529,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:36.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:45:36'),
(11020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"226109023080645@lid\",\"id\":\"A56B1A6BB3660B9A1E010BC4608E11DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008336529,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:45:36.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:45:36'),
(11021, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"58974330220661@lid\",\"id\":\"A5D0526494A342835BA583B52153E8B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008547267,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:49:07.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:49:07'),
(11022, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"58974330220661@lid\",\"id\":\"A5D0526494A342835BA583B52153E8B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008547267,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:49:07.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:49:07'),
(11023, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:49.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:50:50'),
(11024, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:49.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:50:50'),
(11025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:51.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:50:51'),
(11026, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:51.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:50:51'),
(11027, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACD487C6D197E40D7E977CD25F73BF22\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vnC1uIlskvQUhxYVmBYy59rpxO\\/Epbn6Gwl\\/Yo2c1Vs=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008651,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:51.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:50:52'),
(11028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:52.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:50:52'),
(11029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:51.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:50:52'),
(11030, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACD487C6D197E40D7E977CD25F73BF22\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vnC1uIlskvQUhxYVmBYy59rpxO\\/Epbn6Gwl\\/Yo2c1Vs=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008651,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:51.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:50:52'),
(11031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:52.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:50:52'),
(11032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:50:51.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:50:52'),
(11033, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:38.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:38'),
(11034, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:38.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:38'),
(11035, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:40.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:40'),
(11036, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:40.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:41'),
(11037, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:48.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:49'),
(11038, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:48.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:49'),
(11039, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:49.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:50'),
(11040, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:49.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:50');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11041, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC92B7A8D61B7381D2E7F6C9547DBDD3\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"?????\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JICqK+lPIfV2kKTfv6Nne+KZz9TZXCHqnCwPDK8cLic=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:49.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:51:50'),
(11042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:50.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:50'),
(11043, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:50.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:50'),
(11044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:50.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:51'),
(11045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC92B7A8D61B7381D2E7F6C9547DBDD3\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"?????\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JICqK+lPIfV2kKTfv6Nne+KZz9TZXCHqnCwPDK8cLic=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"entryPointConversionSource\":\"click_to_chat_link\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:49.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:51:51'),
(11046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:50.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:51'),
(11047, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:52.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:52'),
(11048, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:52.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:52'),
(11049, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:54.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:51:54'),
(11050, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:54.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:51:55'),
(11051, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A56EB5AD199173E529C455C9D87E6BA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008716012,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:56.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:51:56'),
(11052, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A56EB5AD199173E529C455C9D87E6BA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008716012,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:56.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:51:56'),
(11053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A5EFBB833C1AA7339992F36C16E0EAA3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008716016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:56.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:51:56'),
(11054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A5EFBB833C1AA7339992F36C16E0EAA3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008716016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:51:56.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:51:56'),
(11055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:13.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:52:14'),
(11056, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:14.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:52:14'),
(11057, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5336A8C002225E8DF0C0ABA42F52A46\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008733,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:13.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:52:14'),
(11058, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:13.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:52:14'),
(11059, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:14.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:52:14'),
(11060, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5336A8C002225E8DF0C0ABA42F52A46\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008733,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:13.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:52:14'),
(11061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5336A8C002225E8DF0C0ABA42F52A46\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008734375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:14.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:52:14'),
(11062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5336A8C002225E8DF0C0ABA42F52A46\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008734375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:14.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:52:14'),
(11063, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5336A8C002225E8DF0C0ABA42F52A46\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008735499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:15.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:52:15'),
(11064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5336A8C002225E8DF0C0ABA42F52A46\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008735499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:15.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:52:15'),
(11065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5F6529199EFABC66B8E2ACE25E91FCC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008742894,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:22.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:52:23'),
(11066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5F6529199EFABC66B8E2ACE25E91FCC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008742894,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:22.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:52:23'),
(11067, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:34.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:52:34'),
(11068, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:52:34.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:52:34'),
(11069, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A5A71DA1AE51C521522943350F279691\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boatarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008812,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:32'),
(11070, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:32'),
(11071, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:32'),
(11072, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A5A71DA1AE51C521522943350F279691\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boatarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008812,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:33'),
(11073, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:33'),
(11074, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A5A71DA1AE51C521522943350F279691\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008812930,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:33'),
(11075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:33'),
(11076, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A5A71DA1AE51C521522943350F279691\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008812930,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:32.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:33'),
(11077, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A53409E8FE69108AE6D88CEF38651390\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tem sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008815,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:35'),
(11078, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:35'),
(11079, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:35'),
(11080, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A53409E8FE69108AE6D88CEF38651390\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tem sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008815,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:35'),
(11081, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A53409E8FE69108AE6D88CEF38651390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008815544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:35'),
(11082, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A53409E8FE69108AE6D88CEF38651390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008815544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:36'),
(11083, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:36'),
(11084, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:36.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:36'),
(11085, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A58C6F2D8FB02DF9466FF305D389D0E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Android?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008816,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:36.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:36'),
(11086, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:35.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:37'),
(11087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:36.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:37'),
(11088, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A58C6F2D8FB02DF9466FF305D389D0E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Android?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008816,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:36.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:37'),
(11089, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A58C6F2D8FB02DF9466FF305D389D0E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008817144,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:37.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:37'),
(11090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:37.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:37'),
(11091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A58C6F2D8FB02DF9466FF305D389D0E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008817144,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:37.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:38'),
(11092, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:38.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:38'),
(11093, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:37.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:39'),
(11094, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:38.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:39'),
(11095, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:43.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:43'),
(11096, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:43.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:43'),
(11097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:44'),
(11098, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:44'),
(11099, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:44'),
(11100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A6100E505A65FEB8282\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635808012_881010844934095_1470277199753262017_n.enc?ccb=11-4&oh=01_Q5Aa3wFmxTj2-jXN1E5re7BI2kdsQbJhYKT_YRCtRqYzbhbm1w&oe=69B6E180&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vVe2qE04VCwTR9RbmdUgKN5lNyBait3y\\/rHnWD+5dVQ=\",\"fileLength\":\"11052\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"qD6brD3QLwSwIh9Hjl2E9316Sr85P2cNpKuo1SNkW3c=\",\"fileEncSha256\":\"pYUVIovBl8UAe6M91x73ETDG\\/JTURbIE25xYU93qtQg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635808012_881010844934095_1470277199753262017_n.enc?ccb=11-4&oh=01_Q5Aa3wFmxTj2-jXN1E5re7BI2kdsQbJhYKT_YRCtRqYzbhbm1w&oe=69B6E180&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008818\",\"streamingSidecar\":\"QyymwE1O6omJnA==\",\"waveform\":\"ACxZU0dEREZKUFheYmRkZGRkZGRkZGRkZGRkZGRkX1dPRUNNV15kZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AUeSM5L\\/FSOUuZHbGWnrPD1SjtZxLLA+r+LLuVBA7rs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771008824,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:44'),
(11101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:44'),
(11102, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A6100E505A65FEB8282\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635808012_881010844934095_1470277199753262017_n.enc?ccb=11-4&oh=01_Q5Aa3wFmxTj2-jXN1E5re7BI2kdsQbJhYKT_YRCtRqYzbhbm1w&oe=69B6E180&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vVe2qE04VCwTR9RbmdUgKN5lNyBait3y\\/rHnWD+5dVQ=\",\"fileLength\":\"11052\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"qD6brD3QLwSwIh9Hjl2E9316Sr85P2cNpKuo1SNkW3c=\",\"fileEncSha256\":\"pYUVIovBl8UAe6M91x73ETDG\\/JTURbIE25xYU93qtQg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635808012_881010844934095_1470277199753262017_n.enc?ccb=11-4&oh=01_Q5Aa3wFmxTj2-jXN1E5re7BI2kdsQbJhYKT_YRCtRqYzbhbm1w&oe=69B6E180&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008818\",\"streamingSidecar\":\"QyymwE1O6omJnA==\",\"waveform\":\"ACxZU0dEREZKUFheYmRkZGRkZGRkZGRkZGRkZGRkX1dPRUNNV15kZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AUeSM5L\\/FSOUuZHbGWnrPD1SjtZxLLA+r+LLuVBA7rs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771008824,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:45'),
(11103, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:45'),
(11104, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:44.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:45'),
(11105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:48.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:48'),
(11106, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:48.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:48'),
(11107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:48.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11108, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":false,\"id\":\"AC020940CB575296CC74DEFB5A27A103\"},\"pushName\":\"...\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/636207216_885344654305331_7226602758450576717_n.enc?ccb=11-4&oh=01_Q5Aa3wGl60QWAtH9O_HpRcW03q0GhloXbc6n0T4kn0_W98w0oQ&oe=69B6DE58&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"DQx431dIX1GosRfriR3v7w6JD9izYUUtB5vRe5qpJeE=\",\"fileLength\":\"207920\",\"pageCount\":2,\"mediaKey\":\"mahgj4adAHMgzgI1p1Wcn\\/zMvTxFntyMZYvsO+Dar6Q=\",\"fileName\":\"2026-02-13_155339.pdf\",\"fileEncSha256\":\"Y8EjQ7uVy3o+Ga2VQVpmDY4I+NVJ7890SwJoxJE22YI=\",\"directPath\":\"\\/v\\/t62.7119-24\\/636207216_885344654305331_7226602758450576717_n.enc?ccb=11-4&oh=01_Q5Aa3wGl60QWAtH9O_HpRcW03q0GhloXbc6n0T4kn0_W98w0oQ&oe=69B6DE58&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008827\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/636243448_26130537523207085_4309539748893084776_n.enc?ccb=11-4&oh=01_Q5Aa3wEWu2cVU4f_CYX8PHEwOusg8iZ4x8JzTHObTsa_QxoNXw&oe=69B6D57C&_nc_sid=5e03e0\",\"thumbnailSha256\":\"oYcinakwAnKh9bMXdUbJZS8\\/M4OpW2+vSRrx72KHdFQ=\",\"thumbnailEncSha256\":\"rNIYvqbF87j\\/yPNnh5kqgaL8t+XhjhhPncoy6qReZ3k=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAwAAEAAwEBAQAAAAAAAAAAAAAAAQIDBQQGAQEBAQEBAAAAAAAAAAAAAAAAAQUCBP\\/aAAwDAQACEAMQAAAA5lbZ6eaqqlouqkxBcH3Wvrtne\\/jen23rwx0UvG16VjjOyMq1Trac5i6bLRcQkYxsSLalyajJqMmqKRcJiQAADzaWvZEkoAAH\\/8QAMxAAAgEDAQQHBwQDAAAAAAAAAQIAAxESUgUhUZEEBhMUIDFhIiNBU3FygRYkQqEQMDT\\/2gAIAQEAAT8AuPlp\\/cyHy0jEMLBFHqJiZgZjMZiZgYOkuUCWXyt5CcYS15lYwNeX3WhJgaxmRPkYnVvZ4QEl43VzZ41w7I2SGFn3ffP07st0DguQYerezk1z9O7Owy9vnH2LstSAC3rcmDq\\/sp1yQuY\\/VvoGRtUqiDvYq7mHZ2jHpH8SJ+6+OEXvH8iPxL1eM97xhVz5z3o+M97xjdpmMTumNfWIMwADYn6y78F5y78Bzl30jnLvpHOXfSOf+Kq0y\\/t0g27ReY0Mh7jfxwi0aBsRSUfid3ofKTlFVUFlUAcB4XWsT7NrepMHeeFPmYudvaAv6eN2ftRatj5bt0s+798P6iFyN1RD+JZ9S8pZ9S8pZ9S8pZ9S8pZ9S8oJXx7UsaQf6KCYgokf84X6qIqKu5VA+g8dShVZ7o6hfW8FPposBVpW+0wDpSkXqUseGJ8dfEVfiLW+Ji9GRkDB3sRu3mCkVAAczFtZmLazMW1mYtrMxbWYI3aJVFluv3f6f\\/\\/EAB4RAAEEAwADAAAAAAAAAAAAAAEAAhNSEBEgMIGR\\/9oACAECAQE\\/ABneJH2KkfY\\/VI+xUj7FSPsVvn34tnn\\/xAAfEQAABQQDAAAAAAAAAAAAAAAAAQITUgMQESAwgZH\\/2gAIAQMBAT8AvixIRANoiXgbREg2iJBqnEhjXriwWv8A\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dzGxshA8X6zU5rMM\\/Ra+6kB\\/BWimckaKT5r3uU2jKTM=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771008828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:48.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:53:48'),
(11109, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:48.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:49'),
(11110, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":false,\"id\":\"AC020940CB575296CC74DEFB5A27A103\"},\"pushName\":\"...\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/636207216_885344654305331_7226602758450576717_n.enc?ccb=11-4&oh=01_Q5Aa3wGl60QWAtH9O_HpRcW03q0GhloXbc6n0T4kn0_W98w0oQ&oe=69B6DE58&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"DQx431dIX1GosRfriR3v7w6JD9izYUUtB5vRe5qpJeE=\",\"fileLength\":\"207920\",\"pageCount\":2,\"mediaKey\":\"mahgj4adAHMgzgI1p1Wcn\\/zMvTxFntyMZYvsO+Dar6Q=\",\"fileName\":\"2026-02-13_155339.pdf\",\"fileEncSha256\":\"Y8EjQ7uVy3o+Ga2VQVpmDY4I+NVJ7890SwJoxJE22YI=\",\"directPath\":\"\\/v\\/t62.7119-24\\/636207216_885344654305331_7226602758450576717_n.enc?ccb=11-4&oh=01_Q5Aa3wGl60QWAtH9O_HpRcW03q0GhloXbc6n0T4kn0_W98w0oQ&oe=69B6DE58&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008827\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/636243448_26130537523207085_4309539748893084776_n.enc?ccb=11-4&oh=01_Q5Aa3wEWu2cVU4f_CYX8PHEwOusg8iZ4x8JzTHObTsa_QxoNXw&oe=69B6D57C&_nc_sid=5e03e0\",\"thumbnailSha256\":\"oYcinakwAnKh9bMXdUbJZS8\\/M4OpW2+vSRrx72KHdFQ=\",\"thumbnailEncSha256\":\"rNIYvqbF87j\\/yPNnh5kqgaL8t+XhjhhPncoy6qReZ3k=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAwAAEAAwEBAQAAAAAAAAAAAAAAAQIDBQQGAQEBAQEBAAAAAAAAAAAAAAAAAQUCBP\\/aAAwDAQACEAMQAAAA5lbZ6eaqqlouqkxBcH3Wvrtne\\/jen23rwx0UvG16VjjOyMq1Trac5i6bLRcQkYxsSLalyajJqMmqKRcJiQAADzaWvZEkoAAH\\/8QAMxAAAgEDAQQHBwQDAAAAAAAAAQIAAxESUgUhUZEEBhMUIDFhIiNBU3FygRYkQqEQMDT\\/2gAIAQEAAT8AuPlp\\/cyHy0jEMLBFHqJiZgZjMZiZgYOkuUCWXyt5CcYS15lYwNeX3WhJgaxmRPkYnVvZ4QEl43VzZ41w7I2SGFn3ffP07st0DguQYerezk1z9O7Owy9vnH2LstSAC3rcmDq\\/sp1yQuY\\/VvoGRtUqiDvYq7mHZ2jHpH8SJ+6+OEXvH8iPxL1eM97xhVz5z3o+M97xjdpmMTumNfWIMwADYn6y78F5y78Bzl30jnLvpHOXfSOf+Kq0y\\/t0g27ReY0Mh7jfxwi0aBsRSUfid3ofKTlFVUFlUAcB4XWsT7NrepMHeeFPmYudvaAv6eN2ftRatj5bt0s+798P6iFyN1RD+JZ9S8pZ9S8pZ9S8pZ9S8pZ9S8oJXx7UsaQf6KCYgokf84X6qIqKu5VA+g8dShVZ7o6hfW8FPposBVpW+0wDpSkXqUseGJ8dfEVfiLW+Ji9GRkDB3sRu3mCkVAAczFtZmLazMW1mYtrMxbWYI3aJVFluv3f6f\\/\\/EAB4RAAEEAwADAAAAAAAAAAAAAAEAAhNSEBEgMIGR\\/9oACAECAQE\\/ABneJH2KkfY\\/VI+xUj7FSPsVvn34tnn\\/xAAfEQAABQQDAAAAAAAAAAAAAAAAAQITUgMQESAwgZH\\/2gAIAQMBAT8AvixIRANoiXgbREg2iJBqnEhjXriwWv8A\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dzGxshA8X6zU5rMM\\/Ra+6kB\\/BWimckaKT5r3uU2jKTM=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771008828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:48.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:53:49'),
(11111, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:49.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:49'),
(11112, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:49.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:49'),
(11113, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:49.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:53:49'),
(11114, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:53:49.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:53:50'),
(11115, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A569DB5A10E94B398B6E96F43F19D507\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32413434_1219547933597478_6272063627108275177_n.enc?ccb=11-4&oh=01_Q5Aa3wGze6d1KaIzZWq6aC1SBGNLdhKXbenOoZ76W7l2SkmTlw&oe=69B6F7FC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xLJwNm5ue2lQzFzXaJmb9q7qQuTJ2aHzj8oY8qEhv3E=\",\"fileLength\":\"11682\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"C+ALPmp+0MndOiI1Z\\/jcRrg1JvsGCEN4Px5pDI1aFNU=\",\"fileEncSha256\":\"Jk8RyB07ggJvZm8mtPDP24LoGXcA+1O1626U3EMwocQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32413434_1219547933597478_6272063627108275177_n.enc?ccb=11-4&oh=01_Q5Aa3wGze6d1KaIzZWq6aC1SBGNLdhKXbenOoZ76W7l2SkmTlw&oe=69B6F7FC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008844\",\"contextInfo\":{\"stanzaId\":\"3A3C14FB75188C13F42E\",\"participant\":\"8096197951535@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"VP0hgaBrs1vBHkhe5vQtNUvukkwWZ\\/pibqKHKUEKZas=\",\"fileLength\":\"72793\",\"height\":1600,\"width\":739,\"mediaKey\":\"Vj4iSXNIvJ+h2d69a5hdD6jV6RSyXAGOFEkNALnYaOY=\",\"fileEncSha256\":\"2q5mf9djvxYRsc5zLLayKNY1AOtqYl5dnE0M4gVZWng=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935800\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"PfVgs72J1odmTF8cMGuTqi5ba5QfA1ap05W6hoAz63ixCIyfNO7rgQ==\",\"scanLengths\":[6892,34325,12367,19207],\"midQualityFileSha256\":\"gRZvGpVa\\/z2Nq+J2TtIcyxMwkatvclqd8eXmi5poHUA=\"}}},\"waveform\":\"ABgQEBMiFiU9W0xNVlFNSVlcV1pYOF5iSAIIFk9OWVddV19ELk9BXCM\\/UjZVWlxRYTFFXzMWTFFUVlxYW2BcHA==\"}},\"contextInfo\":{\"stanzaId\":\"3A3C14FB75188C13F42E\",\"participant\":\"8096197951535@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"VP0hgaBrs1vBHkhe5vQtNUvukkwWZ\\/pibqKHKUEKZas=\",\"fileLength\":\"72793\",\"height\":1600,\"width\":739,\"mediaKey\":\"Vj4iSXNIvJ+h2d69a5hdD6jV6RSyXAGOFEkNALnYaOY=\",\"fileEncSha256\":\"2q5mf9djvxYRsc5zLLayKNY1AOtqYl5dnE0M4gVZWng=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935800\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"PfVgs72J1odmTF8cMGuTqi5ba5QfA1ap05W6hoAz63ixCIyfNO7rgQ==\",\"scanLengths\":[6892,34325,12367,19207],\"midQualityFileSha256\":\"gRZvGpVa\\/z2Nq+J2TtIcyxMwkatvclqd8eXmi5poHUA=\"}}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771008848,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:08.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:54:08'),
(11116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A569DB5A10E94B398B6E96F43F19D507\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32413434_1219547933597478_6272063627108275177_n.enc?ccb=11-4&oh=01_Q5Aa3wGze6d1KaIzZWq6aC1SBGNLdhKXbenOoZ76W7l2SkmTlw&oe=69B6F7FC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xLJwNm5ue2lQzFzXaJmb9q7qQuTJ2aHzj8oY8qEhv3E=\",\"fileLength\":\"11682\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"C+ALPmp+0MndOiI1Z\\/jcRrg1JvsGCEN4Px5pDI1aFNU=\",\"fileEncSha256\":\"Jk8RyB07ggJvZm8mtPDP24LoGXcA+1O1626U3EMwocQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32413434_1219547933597478_6272063627108275177_n.enc?ccb=11-4&oh=01_Q5Aa3wGze6d1KaIzZWq6aC1SBGNLdhKXbenOoZ76W7l2SkmTlw&oe=69B6F7FC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008844\",\"contextInfo\":{\"stanzaId\":\"3A3C14FB75188C13F42E\",\"participant\":\"8096197951535@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"VP0hgaBrs1vBHkhe5vQtNUvukkwWZ\\/pibqKHKUEKZas=\",\"fileLength\":\"72793\",\"height\":1600,\"width\":739,\"mediaKey\":\"Vj4iSXNIvJ+h2d69a5hdD6jV6RSyXAGOFEkNALnYaOY=\",\"fileEncSha256\":\"2q5mf9djvxYRsc5zLLayKNY1AOtqYl5dnE0M4gVZWng=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935800\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"PfVgs72J1odmTF8cMGuTqi5ba5QfA1ap05W6hoAz63ixCIyfNO7rgQ==\",\"scanLengths\":[6892,34325,12367,19207],\"midQualityFileSha256\":\"gRZvGpVa\\/z2Nq+J2TtIcyxMwkatvclqd8eXmi5poHUA=\"}}},\"waveform\":\"ABgQEBMiFiU9W0xNVlFNSVlcV1pYOF5iSAIIFk9OWVddV19ELk9BXCM\\/UjZVWlxRYTFFXzMWTFFUVlxYW2BcHA==\"}},\"contextInfo\":{\"stanzaId\":\"3A3C14FB75188C13F42E\",\"participant\":\"8096197951535@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"VP0hgaBrs1vBHkhe5vQtNUvukkwWZ\\/pibqKHKUEKZas=\",\"fileLength\":\"72793\",\"height\":1600,\"width\":739,\"mediaKey\":\"Vj4iSXNIvJ+h2d69a5hdD6jV6RSyXAGOFEkNALnYaOY=\",\"fileEncSha256\":\"2q5mf9djvxYRsc5zLLayKNY1AOtqYl5dnE0M4gVZWng=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPyuROAej3JOV2oIK9tg4qowR3_eR5y3fgukOTzjmJqLstpiHwbemiAPM19-xy-cU2vUoFrATheUhUsDz2F60PmZN6CgJCgVeA3_rpNxQ?ccb=9-4&oh=01_Q5Aa3wF-JFSHbDk0XHPagEnYww3dqBw6gp3V9VEg1fO4hJO0qA&oe=69B5B53F&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1770935800\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC6eToBJGM1B6qeO3LlvjuVTUmsinoef1HGgTvh0EZ3izNaJYBQEXwHRGBOiuJdGYuoAAAAAP\\/EABcRAQADAAAAAAAAAAAAAAAAAAEQEUD\\/2gAIAQIBAT8Alazf\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAREwAAIQIDH\\/2gAIAQMBAT8AybgO6pwKlB\\/\\/xAAwEAACAgEDAgMFCAMAAAAAAAABAgADEQQSMRMhFEFRBRAgUmEiIzIzQEJTcWKRof\\/aAAgBAQABPwDRoj2KtjbVJ7mXUULcypb9kcGdGv8AmE6Ve4jqjHrBVV3zb8FvE0yFyFBAJ9Z0Atmx2A+ohpQH8z\\/kFNZHe3B\\/qMuCQO49ffofZHigM27cjM9pac6W9qSwbaeZpkaxgqcmNTajlSp3DmbbScbT\\/qbbeNphS3GCpx\\/U6T\\/IYRg4MTTa6nSDUKxWvy7zUlmOXJLHkmaUsGBQ4bPaO15sYkkt54m68d8tOtZnO85husP7zOtZ85hOTkw+0dQdMNOX+7HlLjkZM0ys7BV5J7QpdXYy4O7zmbu47xlK8jHw28TTllIKfiz2jtezknO6Zu\\/yjCx+QTOm\\/wAphBU4Ix77eJVaazkczxT7i2e5ni7PWeKceZnin9TGvLHLd51fpOr9I77hx+j\\/AP\\/+AAMA\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"PfVgs72J1odmTF8cMGuTqi5ba5QfA1ap05W6hoAz63ixCIyfNO7rgQ==\",\"scanLengths\":[6892,34325,12367,19207],\"midQualityFileSha256\":\"gRZvGpVa\\/z2Nq+J2TtIcyxMwkatvclqd8eXmi5poHUA=\"}}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771008848,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:08.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:54:08'),
(11117, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:08.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:08'),
(11118, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:08.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:09'),
(11119, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:08.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:09'),
(11120, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:08.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:09'),
(11121, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008849362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:09.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:54:09'),
(11122, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008849362,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:09.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:54:09'),
(11123, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008852267,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:12.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:54:12'),
(11124, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771008852267,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:12.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:54:12'),
(11125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771008852476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:12.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:54:12'),
(11126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771008852476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:12.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:54:12'),
(11127, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:38.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:38'),
(11128, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:38.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:38'),
(11129, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:38.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:38'),
(11130, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:38.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:38'),
(11131, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:39.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:39'),
(11132, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:39.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:39'),
(11133, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:40'),
(11134, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC847219EF5A4B139CB039BF94544BB6\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r31I2zI+jAe4xaqnUo5ZuFSei\\/uDKzSCJfWZeLk8ch0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008879,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:54:40'),
(11135, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:40'),
(11136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC847219EF5A4B139CB039BF94544BB6\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r31I2zI+jAe4xaqnUo5ZuFSei\\/uDKzSCJfWZeLk8ch0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771008879,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:54:40'),
(11137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:40'),
(11138, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:41'),
(11139, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:41'),
(11140, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:40.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:41'),
(11141, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:43.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:43'),
(11142, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:43.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:43'),
(11143, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:53.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:54'),
(11144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:53.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:54'),
(11145, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:54.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:54'),
(11146, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:54.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:54'),
(11147, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:55'),
(11148, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACD534DD305AB3FD6D3721AEC527A0EE\"},\"pushName\":\"Nando\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35495927_1205663628218100_4296533964168418564_n.enc?ccb=11-4&oh=01_Q5Aa3wHXRbEZHtVPjfE82dC5CDjVy16rLPJR9zV_RbuKk29Emw&oe=69B6CAD1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+8S59mSCgYdYWLtZ0wBIjdd0MHswzRYSIcXOGQrrjzI=\",\"fileLength\":\"25574\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"UpvXGGvfWSnfHacWerzN2PazX6eT\\/+jHxcAVtpuRYbw=\",\"fileEncSha256\":\"EKsjuvsv0zMpQetj4KMAaoBZNjAOeIrcDFDr4IaptOc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35495927_1205663628218100_4296533964168418564_n.enc?ccb=11-4&oh=01_Q5Aa3wHXRbEZHtVPjfE82dC5CDjVy16rLPJR9zV_RbuKk29Emw&oe=69B6CAD1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008885\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"AAAAXExOY2NdTVdUOQ0GBRkKAQFNTkcSSldXVUlWVUo2WVBCBwA2JgAWIUJLOQ4aNDtMLjhFHQQLDBVAOUIGEg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ITT9D2gu+KtJn53PzhfPTAkUUa7gyCLdaByX8BEE2Mk=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771008895,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:54:55'),
(11149, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:55'),
(11150, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACD534DD305AB3FD6D3721AEC527A0EE\"},\"pushName\":\"Nando\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35495927_1205663628218100_4296533964168418564_n.enc?ccb=11-4&oh=01_Q5Aa3wHXRbEZHtVPjfE82dC5CDjVy16rLPJR9zV_RbuKk29Emw&oe=69B6CAD1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+8S59mSCgYdYWLtZ0wBIjdd0MHswzRYSIcXOGQrrjzI=\",\"fileLength\":\"25574\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"UpvXGGvfWSnfHacWerzN2PazX6eT\\/+jHxcAVtpuRYbw=\",\"fileEncSha256\":\"EKsjuvsv0zMpQetj4KMAaoBZNjAOeIrcDFDr4IaptOc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35495927_1205663628218100_4296533964168418564_n.enc?ccb=11-4&oh=01_Q5Aa3wHXRbEZHtVPjfE82dC5CDjVy16rLPJR9zV_RbuKk29Emw&oe=69B6CAD1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008885\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"AAAAXExOY2NdTVdUOQ0GBRkKAQFNTkcSSldXVUlWVUo2WVBCBwA2JgAWIUJLOQ4aNDtMLjhFHQQLDBVAOUIGEg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ITT9D2gu+KtJn53PzhfPTAkUUa7gyCLdaByX8BEE2Mk=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771008895,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:54:55'),
(11151, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:55'),
(11152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:54:56'),
(11153, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:56'),
(11154, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:54:55.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:54:56'),
(11155, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008918957,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:18.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:55:19'),
(11156, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A569DB5A10E94B398B6E96F43F19D507\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008918957,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:18.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:55:19'),
(11157, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A7FDE5A0EA1E9980D28\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vo0ZYQ3kxwCP0qgWqnfdfkz7vmt3l\\/bvBahwXFXPnoE=\"}},\"messageTimestamp\":1771008927,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:27.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:55:27'),
(11158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A7FDE5A0EA1E9980D28\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vo0ZYQ3kxwCP0qgWqnfdfkz7vmt3l\\/bvBahwXFXPnoE=\"}},\"messageTimestamp\":1771008927,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:27.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:55:27');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:27.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:55:27'),
(11160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:27.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:55:27'),
(11161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:27.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:55:28'),
(11162, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:27.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:55:28'),
(11163, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A42E7859B27DC16D005\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQM_pMpQifxN2rd_QIdxRssPVfPevcKveYUVQK27b9ZkPV3Y-SO_7SE6hk3cAIGCJg60LOzvycZIlsPrjYKxNOMX-qwrXP2RmRfiBFNb6g?ccb=9-4&oh=01_Q5Aa3wFdc8aX71CcECBLpwEbP101Q7qaRtSBtyjE1ioivv03Aw&oe=69B6F488&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"cFmUej9BkdvgP5UAYTKvHxmjTw8jCHMdva1wwJ1RvWg=\",\"fileLength\":\"50878\",\"height\":1600,\"width\":739,\"mediaKey\":\"JpQ955JU4pd1usKHZR9gS4qJVblObBjTnRVSzFZXcl0=\",\"fileEncSha256\":\"BDwrFwNbThrI0YlqR7gFJB7K5IeiWFeSJvLWHWaIZDw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQM_pMpQifxN2rd_QIdxRssPVfPevcKveYUVQK27b9ZkPV3Y-SO_7SE6hk3cAIGCJg60LOzvycZIlsPrjYKxNOMX-qwrXP2RmRfiBFNb6g?ccb=9-4&oh=01_Q5Aa3wFdc8aX71CcECBLpwEbP101Q7qaRtSBtyjE1ioivv03Aw&oe=69B6F488&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771008927\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAEEBQMC\\/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC\\/9oADAMBAAIQAxAAAADDjcq6xnRo+JaC\\/Jnzc5rwd0tmvmrnT85xdD3mJdDjVLYVyAAAAAAAAAAAAAAAf\\/\\/EABcRAQEBAQAAAAAAAAAAAAAAABEAEED\\/2gAIAQIBAT8AIjWeP\\/\\/EABwRAAMAAQUAAAAAAAAAAAAAAAABESECEBIxQP\\/aAAgBAwEBPwBaslKd7cVaQWMobvh\\/\\/8QAJRAAAQQCAQMEAwAAAAAAAAAAAQACAxEEIRIFMVEUIkFhEzJQ\\/9oACAEBAAE\\/AIDJwtjXEfNBA2dgrXhyPfQK34K34Kut0U6S6+lNNzZVUuj6wIqA27ekCxk0oMYPuKkcxwHFgaqHhUPCr6UjOVDshADK1t6K6hithiDgV03qePBitjl5cmm9IZ8f5JHFv7OsIZ8Q7ttHMiJ+V6yL7TM+Joqip81jwONghep9wdZsLIyTM2if6\\/8A\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"K8QJ64WSXjmhrg==\",\"firstScanLength\":5978,\"scansSidecar\":\"K8QJ64WSXjmhroT35RxliL4RXE0lygsRSVyj5+jyVhbMYqyr\\/01LDQ==\",\"scanLengths\":[5978,25357,7682,11859],\"midQualityFileSha256\":\"o8BBB0VQ2yyHHnWdFE\\/WTSQO0liMyN\\/QkmfOTUh2MsU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rq3yExoRbLwIhEDtGQiOKlA8bbfaREEZCMkfPd48l0M=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771008957,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:57.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:55:57'),
(11164, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A42E7859B27DC16D005\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQM_pMpQifxN2rd_QIdxRssPVfPevcKveYUVQK27b9ZkPV3Y-SO_7SE6hk3cAIGCJg60LOzvycZIlsPrjYKxNOMX-qwrXP2RmRfiBFNb6g?ccb=9-4&oh=01_Q5Aa3wFdc8aX71CcECBLpwEbP101Q7qaRtSBtyjE1ioivv03Aw&oe=69B6F488&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"cFmUej9BkdvgP5UAYTKvHxmjTw8jCHMdva1wwJ1RvWg=\",\"fileLength\":\"50878\",\"height\":1600,\"width\":739,\"mediaKey\":\"JpQ955JU4pd1usKHZR9gS4qJVblObBjTnRVSzFZXcl0=\",\"fileEncSha256\":\"BDwrFwNbThrI0YlqR7gFJB7K5IeiWFeSJvLWHWaIZDw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQM_pMpQifxN2rd_QIdxRssPVfPevcKveYUVQK27b9ZkPV3Y-SO_7SE6hk3cAIGCJg60LOzvycZIlsPrjYKxNOMX-qwrXP2RmRfiBFNb6g?ccb=9-4&oh=01_Q5Aa3wFdc8aX71CcECBLpwEbP101Q7qaRtSBtyjE1ioivv03Aw&oe=69B6F488&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771008927\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAEEBQMC\\/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC\\/9oADAMBAAIQAxAAAADDjcq6xnRo+JaC\\/Jnzc5rwd0tmvmrnT85xdD3mJdDjVLYVyAAAAAAAAAAAAAAAf\\/\\/EABcRAQEBAQAAAAAAAAAAAAAAABEAEED\\/2gAIAQIBAT8AIjWeP\\/\\/EABwRAAMAAQUAAAAAAAAAAAAAAAABESECEBIxQP\\/aAAgBAwEBPwBaslKd7cVaQWMobvh\\/\\/8QAJRAAAQQCAQMEAwAAAAAAAAAAAQACAxEEIRIFMVEUIkFhEzJQ\\/9oACAEBAAE\\/AIDJwtjXEfNBA2dgrXhyPfQK34K34Kut0U6S6+lNNzZVUuj6wIqA27ekCxk0oMYPuKkcxwHFgaqHhUPCr6UjOVDshADK1t6K6hithiDgV03qePBitjl5cmm9IZ8f5JHFv7OsIZ8Q7ttHMiJ+V6yL7TM+Joqip81jwONghep9wdZsLIyTM2if6\\/8A\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"K8QJ64WSXjmhrg==\",\"firstScanLength\":5978,\"scansSidecar\":\"K8QJ64WSXjmhroT35RxliL4RXE0lygsRSVyj5+jyVhbMYqyr\\/01LDQ==\",\"scanLengths\":[5978,25357,7682,11859],\"midQualityFileSha256\":\"o8BBB0VQ2yyHHnWdFE\\/WTSQO0liMyN\\/QkmfOTUh2MsU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rq3yExoRbLwIhEDtGQiOKlA8bbfaREEZCMkfPd48l0M=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771008957,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:57.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:55:58'),
(11165, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:57.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:55:58'),
(11166, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:57.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:55:58'),
(11167, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:55:58'),
(11168, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE555545DB3731CD40C\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQN5TgLEk92S_SQKYoAWv4fweoGQwj9URHuxJ6Ya53EaABSPyaJQA6ihTYdJMeIVi_98lyX1cxn-erC_XMQ8aNtdp-6xAxRD7_m2iLOaeA?ccb=9-4&oh=01_Q5Aa3wGBAOHld579grmnzB-gDnhi19Pte9Ri3WkgZBKSssWVxA&oe=69B6DF4E&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"DN5d5aGBHXkS9KiCpk0\\/eJCgF0L2AaW38RlIFliKqh0=\",\"fileLength\":\"68839\",\"height\":1600,\"width\":739,\"mediaKey\":\"L6VPYOZMBeatumF1dUhxzAsME\\/qUKRQv5\\/zAZI5tVQQ=\",\"fileEncSha256\":\"safGv9LmdFGgJcGefqE1ymDk5tX9LB8zLjGkZic+aa8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQN5TgLEk92S_SQKYoAWv4fweoGQwj9URHuxJ6Ya53EaABSPyaJQA6ihTYdJMeIVi_98lyX1cxn-erC_XMQ8aNtdp-6xAxRD7_m2iLOaeA?ccb=9-4&oh=01_Q5Aa3wGBAOHld579grmnzB-gDnhi19Pte9Ri3WkgZBKSssWVxA&oe=69B6DF4E&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771008927\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAIDBAEF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC05dBznaiykAIAloz3EuwEI2xIa8uhMyJZaM14jKuyStL22kQBLRkmXcr5ZPnIxJWXqIgAAAAD\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwBP\\/8QAFxEAAwEAAAAAAAAAAAAAAAAAAREwQP\\/aAAgBAwEBPwCBeH\\/\\/xAAsEAACAgEDAgILAQEAAAAAAAABAgADERIhMQQTFFEQICIzQUJSU2FxkTAy\\/9oACAEBAAE\\/AOjRHsVbG0qTuZdRQtzKlvsjgzs1\\/eENdYbHcyPOPXWKyRZlvL1LeJ0iq7hWOATuZZTULWVbNhwYKa\\/vCOoVsKcjz9W3idMhc6RyfOdgLZosYD8iGhAfej+QUVke9wf1GXBIG48\\/TR0fdx7WJ1lfacpnOJ0yM5CpyeI1VqWFSp1DmabScaT\\/ACabeNJ\\/kK24wVOP1O0\\/0GEYODFrvSkWAkLLyTuTkzpSysChw2do73mxmJOr44mu8b5ad6zOdZzDfYfnM71n1mE5OTzPE2Grt59mXHInTKzsFXknaFLq3ZcHV8Zm7cbwqV5GPVt4nTMykFP+s7R3vZyTnVNV2fmjdx+QTNDfSYQQcEY9NvEqtNZyOYeqfUWzuZ4uzzg6px8Z4p\\/Mxry5y287v4nd\\/Ed9Q4\\/y\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"so1DR7ueuRqFtw==\",\"firstScanLength\":6722,\"scansSidecar\":\"so1DR7ueuRqFt\\/RRT0zRl5072LwWBmGvf0Rgm86kAeQAjY4z8McAzw==\",\"scanLengths\":[6722,32375,11753,17987],\"midQualityFileSha256\":\"pVN1U6hLX7W1\\/VhYeAGTDzUSkBklhLt\\/oEfPPPdDWPA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FJnR55h0npv0dTd8ORGYncA3mOZRsGxT\\/2QJgHitqJI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771008958,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:55:58'),
(11169, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE555545DB3731CD40C\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQN5TgLEk92S_SQKYoAWv4fweoGQwj9URHuxJ6Ya53EaABSPyaJQA6ihTYdJMeIVi_98lyX1cxn-erC_XMQ8aNtdp-6xAxRD7_m2iLOaeA?ccb=9-4&oh=01_Q5Aa3wGBAOHld579grmnzB-gDnhi19Pte9Ri3WkgZBKSssWVxA&oe=69B6DF4E&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"DN5d5aGBHXkS9KiCpk0\\/eJCgF0L2AaW38RlIFliKqh0=\",\"fileLength\":\"68839\",\"height\":1600,\"width\":739,\"mediaKey\":\"L6VPYOZMBeatumF1dUhxzAsME\\/qUKRQv5\\/zAZI5tVQQ=\",\"fileEncSha256\":\"safGv9LmdFGgJcGefqE1ymDk5tX9LB8zLjGkZic+aa8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQN5TgLEk92S_SQKYoAWv4fweoGQwj9URHuxJ6Ya53EaABSPyaJQA6ihTYdJMeIVi_98lyX1cxn-erC_XMQ8aNtdp-6xAxRD7_m2iLOaeA?ccb=9-4&oh=01_Q5Aa3wGBAOHld579grmnzB-gDnhi19Pte9Ri3WkgZBKSssWVxA&oe=69B6DF4E&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771008927\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAIDBAEF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPC05dBznaiykAIAloz3EuwEI2xIa8uhMyJZaM14jKuyStL22kQBLRkmXcr5ZPnIxJWXqIgAAAAD\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwBP\\/8QAFxEAAwEAAAAAAAAAAAAAAAAAAREwQP\\/aAAgBAwEBPwCBeH\\/\\/xAAsEAACAgEDAgILAQEAAAAAAAABAgADERIhMQQTFFEQICIzQUJSU2FxkTAy\\/9oACAEBAAE\\/AOjRHsVbG0qTuZdRQtzKlvsjgzs1\\/eENdYbHcyPOPXWKyRZlvL1LeJ0iq7hWOATuZZTULWVbNhwYKa\\/vCOoVsKcjz9W3idMhc6RyfOdgLZosYD8iGhAfej+QUVke9wf1GXBIG48\\/TR0fdx7WJ1lfacpnOJ0yM5CpyeI1VqWFSp1DmabScaT\\/ACabeNJ\\/kK24wVOP1O0\\/0GEYODFrvSkWAkLLyTuTkzpSysChw2do73mxmJOr44mu8b5ad6zOdZzDfYfnM71n1mE5OTzPE2Grt59mXHInTKzsFXknaFLq3ZcHV8Zm7cbwqV5GPVt4nTMykFP+s7R3vZyTnVNV2fmjdx+QTNDfSYQQcEY9NvEqtNZyOYeqfUWzuZ4uzzg6px8Z4p\\/Mxry5y287v4nd\\/Ed9Q4\\/y\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"so1DR7ueuRqFtw==\",\"firstScanLength\":6722,\"scansSidecar\":\"so1DR7ueuRqFt\\/RRT0zRl5072LwWBmGvf0Rgm86kAeQAjY4z8McAzw==\",\"scanLengths\":[6722,32375,11753,17987],\"midQualityFileSha256\":\"pVN1U6hLX7W1\\/VhYeAGTDzUSkBklhLt\\/oEfPPPdDWPA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007864\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FJnR55h0npv0dTd8ORGYncA3mOZRsGxT\\/2QJgHitqJI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771008958,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:55:59'),
(11170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:55:59'),
(11171, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:55:59'),
(11172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:55:59'),
(11173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:55:59'),
(11174, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:56:00'),
(11175, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:56:00'),
(11176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:56:00'),
(11177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:56:00'),
(11178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:55:58.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:56:01'),
(11179, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:03.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:56:03'),
(11180, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5BF75DB67D45433120394AE84247815\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634982810_1297148692242023_5519240319895967670_n.enc?ccb=11-4&oh=01_Q5Aa3wFBX6YRvW_kmmIgPPI7Hl3u158YlNsoLQ7MMpwyCxv5hg&oe=69B6E372&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"fctSyfXgeKi3AWfv8RpabMeLtwsEJ9xg3KMuxjyajig=\",\"fileLength\":\"182191\",\"height\":1600,\"width\":738,\"mediaKey\":\"LvwXiFhk6wF64tTCfeC2+yeHZxUG0E0wgwdZ0oJDcBY=\",\"fileEncSha256\":\"UvKqtAFlf1gwkdtA\\/bzIWLC8KNQGNtZSF9arva0VKR8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634982810_1297148692242023_5519240319895967670_n.enc?ccb=11-4&oh=01_Q5Aa3wFBX6YRvW_kmmIgPPI7Hl3u158YlNsoLQ7MMpwyCxv5hg&oe=69B6E372&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008962\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAsAAEAAwEBAAAAAAAAAAAAAAAAAQIEAwUBAQEAAAAAAAAAAAAAAAAAAAAC\\/9oADAMBAAIQAxAAAAD25gTNLFWixltpkiQA5359ApjRvC0B\\/8QAIhAAAgIBBAEFAAAAAAAAAAAAAQIAESEDEBITIBQiQlFS\\/9oACAEBAAE\\/ACxgdoXa4MkWZcBEMU5lQKYQZxJrETSu\\/dOmiDzlDZDjwSq8NJ2X47M6qMmp6rR\\/cUH721gtZFiL1MwHSYAF2omAEz\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAZEQACAwEAAAAAAAAAAAAAAAABAhARICH\\/2gAIAQMBAT8A2zEGuT\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"eJSEj4CKsWKdoCo+gGktjZqagPzkA95R1VfGImLs1TcQvP4sUijS+w==\",\"scanLengths\":[8870,80167,44588,48566],\"midQualityFileSha256\":\"O2a8+i9K68ZMjN7kEnsowFr\\/aES\\/UAfnX5dCNVsC\\/qQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771008963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:03.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:56:03'),
(11181, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:03.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:56:03'),
(11182, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5BF75DB67D45433120394AE84247815\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634982810_1297148692242023_5519240319895967670_n.enc?ccb=11-4&oh=01_Q5Aa3wFBX6YRvW_kmmIgPPI7Hl3u158YlNsoLQ7MMpwyCxv5hg&oe=69B6E372&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"fctSyfXgeKi3AWfv8RpabMeLtwsEJ9xg3KMuxjyajig=\",\"fileLength\":\"182191\",\"height\":1600,\"width\":738,\"mediaKey\":\"LvwXiFhk6wF64tTCfeC2+yeHZxUG0E0wgwdZ0oJDcBY=\",\"fileEncSha256\":\"UvKqtAFlf1gwkdtA\\/bzIWLC8KNQGNtZSF9arva0VKR8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634982810_1297148692242023_5519240319895967670_n.enc?ccb=11-4&oh=01_Q5Aa3wFBX6YRvW_kmmIgPPI7Hl3u158YlNsoLQ7MMpwyCxv5hg&oe=69B6E372&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771008962\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAsAAEAAwEBAAAAAAAAAAAAAAAAAQIEAwUBAQEAAAAAAAAAAAAAAAAAAAAC\\/9oADAMBAAIQAxAAAAD25gTNLFWixltpkiQA5359ApjRvC0B\\/8QAIhAAAgIBBAEFAAAAAAAAAAAAAQIAESEDEBITIBQiQlFS\\/9oACAEBAAE\\/ACxgdoXa4MkWZcBEMU5lQKYQZxJrETSu\\/dOmiDzlDZDjwSq8NJ2X47M6qMmp6rR\\/cUH721gtZFiL1MwHSYAF2omAEz\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAZEQACAwEAAAAAAAAAAAAAAAABAhARICH\\/2gAIAQMBAT8A2zEGuT\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"eJSEj4CKsWKdoCo+gGktjZqagPzkA95R1VfGImLs1TcQvP4sUijS+w==\",\"scanLengths\":[8870,80167,44588,48566],\"midQualityFileSha256\":\"O2a8+i9K68ZMjN7kEnsowFr\\/aES\\/UAfnX5dCNVsC\\/qQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771008963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:03.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:56:03'),
(11183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:03.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:56:04'),
(11184, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5BF75DB67D45433120394AE84247815\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008964501,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:04.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:56:05'),
(11185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5BF75DB67D45433120394AE84247815\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771008964501,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:04.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:56:06'),
(11186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wFR9XPp_ZfVOWjwUTdfEAjgfzqihK6K_pE9RjxfPnuI8w&oe=699C7547&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:56:03.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:56:06'),
(11187, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:13.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:59:13'),
(11188, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:13.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:59:13'),
(11189, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:13.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:59:13'),
(11190, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:13.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:59:14'),
(11191, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACA8166F6BABFFA017324178D0CBFDE9\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"??\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d3CYt427CJqU4SxwNsYM5UZrmL1sAJvyh6ygS+hUue0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009153,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:13.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 15:59:14'),
(11192, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:14.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:59:14'),
(11193, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:14.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 15:59:14'),
(11194, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACA8166F6BABFFA017324178D0CBFDE9\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"??\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d3CYt427CJqU4SxwNsYM5UZrmL1sAJvyh6ygS+hUue0=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009153,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:13.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 15:59:14'),
(11195, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:14.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:59:14'),
(11196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T15:59:14.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 15:59:15'),
(11197, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A5C6E5DD4E866BFEA91DD97F587490F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/34814282_1108687068011792_2336827656158039984_n.enc?ccb=11-4&oh=01_Q5Aa3wGQvlikhm5pynYVwVVfA2pvSyqXCl2wtc8f-NL34SavtQ&oe=69B6E95C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/vnd.android.package-archive\",\"fileSha256\":\"lv4+IDY0\\/Gwj75I7Gfvzp3rAbaAdVkMPxAnptGZyRd8=\",\"fileLength\":\"27075826\",\"pageCount\":0,\"mediaKey\":\"YCfA0C\\/2QjoYwNADeWn\\/pbTL2h+XnD\\/B8f7+Iq0VnaU=\",\"fileName\":\"VOID IBO PRO 7_3.8.apk\",\"fileEncSha256\":\"biRKLvdODmY0Cw763pkyhumlaw5h7gZaxf57U2stMyo=\",\"directPath\":\"\\/v\\/t62.7119-24\\/34814282_1108687068011792_2336827656158039984_n.enc?ccb=11-4&oh=01_Q5Aa3wGQvlikhm5pynYVwVVfA2pvSyqXCl2wtc8f-NL34SavtQ&oe=69B6E95C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009236\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}}}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"documentMessage\",\"messageTimestamp\":1771009240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:40.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:40'),
(11198, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:40.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:00:40'),
(11199, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A5C6E5DD4E866BFEA91DD97F587490F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/34814282_1108687068011792_2336827656158039984_n.enc?ccb=11-4&oh=01_Q5Aa3wGQvlikhm5pynYVwVVfA2pvSyqXCl2wtc8f-NL34SavtQ&oe=69B6E95C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/vnd.android.package-archive\",\"fileSha256\":\"lv4+IDY0\\/Gwj75I7Gfvzp3rAbaAdVkMPxAnptGZyRd8=\",\"fileLength\":\"27075826\",\"pageCount\":0,\"mediaKey\":\"YCfA0C\\/2QjoYwNADeWn\\/pbTL2h+XnD\\/B8f7+Iq0VnaU=\",\"fileName\":\"VOID IBO PRO 7_3.8.apk\",\"fileEncSha256\":\"biRKLvdODmY0Cw763pkyhumlaw5h7gZaxf57U2stMyo=\",\"directPath\":\"\\/v\\/t62.7119-24\\/34814282_1108687068011792_2336827656158039984_n.enc?ccb=11-4&oh=01_Q5Aa3wGQvlikhm5pynYVwVVfA2pvSyqXCl2wtc8f-NL34SavtQ&oe=69B6E95C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009236\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}}}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"documentMessage\",\"messageTimestamp\":1771009240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:40.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:40'),
(11200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:40.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:00:40'),
(11201, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:40.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:00:40'),
(11202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:40.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:00:41'),
(11203, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A5C6E5DD4E866BFEA91DD97F587490F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009241217,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:41.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:41'),
(11204, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A5C6E5DD4E866BFEA91DD97F587490F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009241217,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:41.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:41'),
(11205, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245765,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:45'),
(11206, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245778,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:45'),
(11207, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245781,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:45'),
(11208, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245765,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:46'),
(11209, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245781,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:46'),
(11210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245784,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:46'),
(11211, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245791,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:46'),
(11212, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245778,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11213, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A59C0735AA0A0B15E0022D3C55173D21\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586838114_886088794231577_1202761843816837756_n.enc?ccb=11-4&oh=01_Q5Aa3wGKPPFc0cNgCC-A2Qv3feIyrQvSfSHQsC8YpaOz2oJH6A&oe=69B6F292&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KVJqP2kFMSdgbVYNsAgQRg+R2DOsEK8W6UCWQDGiJas=\",\"fileLength\":\"12298\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"K7wSs1gICd3I9TZSJfZLZL33QSx\\/aMp\\/sbg7icnyqd8=\",\"fileEncSha256\":\"lJ5GgfQfKrilkqJuBXHCZWByySEdW5PraMlunc\\/4f1A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586838114_886088794231577_1202761843816837756_n.enc?ccb=11-4&oh=01_Q5Aa3wGKPPFc0cNgCC-A2Qv3feIyrQvSfSHQsC8YpaOz2oJH6A&oe=69B6F292&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009242\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"ADpFYl9jXkRgVDYwY2NjPkRZVypJTUhNRCAfISsqJkFEUV9LY2NeXFw1W1hUWV5SWGFVW19iPl1dJ09SSkpHYw==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:47'),
(11214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:00:47'),
(11215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:00:47'),
(11216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A59C0735AA0A0B15E0022D3C55173D21\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586838114_886088794231577_1202761843816837756_n.enc?ccb=11-4&oh=01_Q5Aa3wGKPPFc0cNgCC-A2Qv3feIyrQvSfSHQsC8YpaOz2oJH6A&oe=69B6F292&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KVJqP2kFMSdgbVYNsAgQRg+R2DOsEK8W6UCWQDGiJas=\",\"fileLength\":\"12298\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"K7wSs1gICd3I9TZSJfZLZL33QSx\\/aMp\\/sbg7icnyqd8=\",\"fileEncSha256\":\"lJ5GgfQfKrilkqJuBXHCZWByySEdW5PraMlunc\\/4f1A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586838114_886088794231577_1202761843816837756_n.enc?ccb=11-4&oh=01_Q5Aa3wGKPPFc0cNgCC-A2Qv3feIyrQvSfSHQsC8YpaOz2oJH6A&oe=69B6F292&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009242\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"ADpFYl9jXkRgVDYwY2NjPkRZVypJTUhNRCAfISsqJkFEUV9LY2NeXFw1W1hUWV5SWGFVW19iPl1dJ09SSkpHYw==\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:47'),
(11217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771009246828,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:46.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:47'),
(11218, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:00:48'),
(11219, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:00:48'),
(11220, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771009246828,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:46.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:48'),
(11221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A59C0735AA0A0B15E0022D3C55173D21\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009247578,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:00:48'),
(11222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A59C0735AA0A0B15E0022D3C55173D21\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009247578,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:47.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:48'),
(11223, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245784,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:49'),
(11224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009245791,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:45.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:00:49'),
(11225, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:58.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:00:58'),
(11226, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:00:58.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:00:58'),
(11227, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:02'),
(11228, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:02'),
(11229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:02'),
(11230, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC4E66FFFF7690FB96B34FE0603633D8\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Fechou\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eufI+8xXe717c9AL3CicA4aNoAJ5H8dP3Y361bRvu\\/8=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009262,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:01:02'),
(11231, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:02'),
(11232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC4E66FFFF7690FB96B34FE0603633D8\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Fechou\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eufI+8xXe717c9AL3CicA4aNoAJ5H8dP3Y361bRvu\\/8=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009262,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:01:03'),
(11233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:03'),
(11234, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:02.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:03'),
(11235, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:18.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:18'),
(11236, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:18.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:19'),
(11237, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:21.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:22'),
(11238, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5B4E244C1829B9EB71EAEC0FBEA8759\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Porra ficou top\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PH4T2dOlW6MAv0Wpn88IVoVJI8G\\/pQD31wYG0PeMNJg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:21.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:01:22'),
(11239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:21.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:22'),
(11240, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5B4E244C1829B9EB71EAEC0FBEA8759\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Porra ficou top\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PH4T2dOlW6MAv0Wpn88IVoVJI8G\\/pQD31wYG0PeMNJg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:21.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:01:22'),
(11241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:22.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:22'),
(11242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:22.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:23'),
(11243, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:22.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:23'),
(11244, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:22.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:23'),
(11245, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:22.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:23'),
(11246, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:22.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:24'),
(11247, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:25'),
(11248, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A52779EA412E3E9999C95D3DBFE211F4\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Consigo usar ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tw3tSQZ7M8pDpweKfYT6vMOkhlzzzc3hdoA7k2Ha7P8=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009285,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:01:25'),
(11249, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:25'),
(11250, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A52779EA412E3E9999C95D3DBFE211F4\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Consigo usar ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tw3tSQZ7M8pDpweKfYT6vMOkhlzzzc3hdoA7k2Ha7P8=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009285,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:01:25'),
(11251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:25'),
(11252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:26'),
(11253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:26'),
(11254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmdJVtxeQIPBaKmf0u80S2pJdrzNgN7vOuUPj-vCfgOQ&oe=699C6DE5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:25.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:26'),
(11255, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636627206_2121330158690063_330384194220806351_n.enc?ccb=11-4&oh=01_Q5Aa3wG6Gr7flrw8bZNmoZdK-oTbD5TEeD-xcRfIoYUmJKoMpA&oe=69B7003D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PXQHzbT51\\/nrk1Bazg6xzUIoMDSTUcvmCVpzDssqMYY=\",\"fileLength\":\"35323\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"y5wFWE3lvMzyRT+46wlyba9MB0Tjx7zJ5mdF50aUXp4=\",\"fileEncSha256\":\"X4OwSd7PTycHwRAo1vUWILimr3vwTMsiXazBmvL8120=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636627206_2121330158690063_330384194220806351_n.enc?ccb=11-4&oh=01_Q5Aa3wG6Gr7flrw8bZNmoZdK-oTbD5TEeD-xcRfIoYUmJKoMpA&oe=69B7003D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009291\",\"waveform\":\"AGNGYVBjUFg7Ll0iKi9NY0diQzgfI1ZgL1BTUU5dS1pcICsoY1FYSVBZWlxhVlw1OUxiXlZjXkxJMzc3V0xaOg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:46.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:01:46'),
(11256, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:46.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:46'),
(11257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:46.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:46'),
(11258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636627206_2121330158690063_330384194220806351_n.enc?ccb=11-4&oh=01_Q5Aa3wG6Gr7flrw8bZNmoZdK-oTbD5TEeD-xcRfIoYUmJKoMpA&oe=69B7003D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PXQHzbT51\\/nrk1Bazg6xzUIoMDSTUcvmCVpzDssqMYY=\",\"fileLength\":\"35323\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"y5wFWE3lvMzyRT+46wlyba9MB0Tjx7zJ5mdF50aUXp4=\",\"fileEncSha256\":\"X4OwSd7PTycHwRAo1vUWILimr3vwTMsiXazBmvL8120=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636627206_2121330158690063_330384194220806351_n.enc?ccb=11-4&oh=01_Q5Aa3wG6Gr7flrw8bZNmoZdK-oTbD5TEeD-xcRfIoYUmJKoMpA&oe=69B7003D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009291\",\"waveform\":\"AGNGYVBjUFg7Ll0iKi9NY0diQzgfI1ZgL1BTUU5dS1pcICsoY1FYSVBZWlxhVlw1OUxiXlZjXkxJMzc3V0xaOg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:46.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:01:46'),
(11259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:46.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:46'),
(11260, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:46.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:47'),
(11261, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A56410922DBA49CB11F7D5F16E904485\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636038431_1977518170310219_2789677632255835624_n.enc?ccb=11-4&oh=01_Q5Aa3wHPnn61EaPaObGWcXjYFSq7-CaKFoYRIdo0YhBNWjauWQ&oe=69B6EADF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UUUOVRs+8ThEqbeQ2GYEaDMi4mu+o2DJNpEsWYWwRuo=\",\"fileLength\":\"17808\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"R9neCRJ\\/3RDvoYiiHTlUw1Tr8MzuZyiXmgd0lsatwQA=\",\"fileEncSha256\":\"CE0mAbEL1p4dacl3YIwbUG5R1VLiwdLW+gQz1VJpQik=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636038431_1977518170310219_2789677632255835624_n.enc?ccb=11-4&oh=01_Q5Aa3wHPnn61EaPaObGWcXjYFSq7-CaKFoYRIdo0YhBNWjauWQ&oe=69B6EADF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009310\",\"waveform\":\"AEdbY2FhU2BcVFhWV0JMVDZYS1YyMTU4NjU2OTw8QEVRXlZjWz5aUF5fUk9aTTVYXDo5NjRbT1piVGJbXFs+Og==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009317,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:57.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:01:57'),
(11262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:57.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:57'),
(11263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:57.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:57'),
(11264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A56410922DBA49CB11F7D5F16E904485\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636038431_1977518170310219_2789677632255835624_n.enc?ccb=11-4&oh=01_Q5Aa3wHPnn61EaPaObGWcXjYFSq7-CaKFoYRIdo0YhBNWjauWQ&oe=69B6EADF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UUUOVRs+8ThEqbeQ2GYEaDMi4mu+o2DJNpEsWYWwRuo=\",\"fileLength\":\"17808\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"R9neCRJ\\/3RDvoYiiHTlUw1Tr8MzuZyiXmgd0lsatwQA=\",\"fileEncSha256\":\"CE0mAbEL1p4dacl3YIwbUG5R1VLiwdLW+gQz1VJpQik=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636038431_1977518170310219_2789677632255835624_n.enc?ccb=11-4&oh=01_Q5Aa3wHPnn61EaPaObGWcXjYFSq7-CaKFoYRIdo0YhBNWjauWQ&oe=69B6EADF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009310\",\"waveform\":\"AEdbY2FhU2BcVFhWV0JMVDZYS1YyMTU4NjU2OTw8QEVRXlZjWz5aUF5fUk9aTTVYXDo5NjRbT1piVGJbXFs+Og==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009317,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:57.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:01:57'),
(11265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:58.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:01:58'),
(11266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:01:58.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:01:58'),
(11267, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:20.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:20'),
(11268, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACEFBABC8160A0728687FAAD416EEC37\"},\"pushName\":\"Nando\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635498204_1800530647309630_4865074575292004197_n.enc?ccb=11-4&oh=01_Q5Aa3wGybQg1B78LkChfvdrlJP-W_v5IRGoHHc5bH1Rma-OFkg&oe=69B6D79A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eXt6BxW\\/bdMcU6Mi\\/XeKFwMCsHEUekuagYM\\/8T6gYoQ=\",\"fileLength\":\"85333\",\"height\":738,\"width\":1600,\"mediaKey\":\"NfAl9VbAJma\\/sCITGj\\/LiBe+h4po7qxM0Umcu4Sc2KA=\",\"fileEncSha256\":\"y9U8Muj4k0e0slloZOOVtDoapzp+F8nxSWVlYjfo4MY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635498204_1800530647309630_4865074575292004197_n.enc?ccb=11-4&oh=01_Q5Aa3wGybQg1B78LkChfvdrlJP-W_v5IRGoHHc5bH1Rma-OFkg&oe=69B6D79A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009339\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACAASAMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAwQCAQUGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAAD52mansX3uc56NWmfQirajASemQxqtS9WM5gh1PnsNCQ\\/\\/xAAgEAACAgIDAAMBAAAAAAAAAAAAAQIRAxIhQVEEIjFC\\/9oACAEBAAE\\/AMfLKr+RpeGq8NV4arwpLowfGxzxxk+2Z0oZZwXTMclF2zdS5SKbaG\\/s1ZHG3zsSjJdiVxRjy5IQpfiG952\\/1sgk7IZIJJUTyK+C03dinr2OSfZDIo0qsnOGqpDpN0hMRa9Pouy0NpnHostRp8mzkz\\/\\/xAAaEQADAAMBAAAAAAAAAAAAAAAAARECIWEQ\\/9oACAECAQE\\/AMFhNscT15OwnSlKUp\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAREQAiH\\/2gAIAQMBAT8AGeiOnNmSn\\/\\/Z\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"scansSidecar\":\"OEzcFQzd3c8q61ZwO20XRJ+4JPhdtns\\/Yx7Ii96BBbqXkFBJGQR3Bg==\",\"scanLengths\":[10313,38150,15299,21571],\"midQualityFileSha256\":\"T9uxfjwAg6XBF+vKvOYjkrFtGpUczaCrcl8MZBSxROQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lzQ7m2tGeSQT9Vr3CZCy4ly\\/RaUhectbOks7BV1RlSo=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771009340,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:20.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:02:20'),
(11269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:20.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:20'),
(11270, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"ACEFBABC8160A0728687FAAD416EEC37\"},\"pushName\":\"Nando\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635498204_1800530647309630_4865074575292004197_n.enc?ccb=11-4&oh=01_Q5Aa3wGybQg1B78LkChfvdrlJP-W_v5IRGoHHc5bH1Rma-OFkg&oe=69B6D79A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eXt6BxW\\/bdMcU6Mi\\/XeKFwMCsHEUekuagYM\\/8T6gYoQ=\",\"fileLength\":\"85333\",\"height\":738,\"width\":1600,\"mediaKey\":\"NfAl9VbAJma\\/sCITGj\\/LiBe+h4po7qxM0Umcu4Sc2KA=\",\"fileEncSha256\":\"y9U8Muj4k0e0slloZOOVtDoapzp+F8nxSWVlYjfo4MY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635498204_1800530647309630_4865074575292004197_n.enc?ccb=11-4&oh=01_Q5Aa3wGybQg1B78LkChfvdrlJP-W_v5IRGoHHc5bH1Rma-OFkg&oe=69B6D79A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009339\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACAASAMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAwQCAQUGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAAD52mansX3uc56NWmfQirajASemQxqtS9WM5gh1PnsNCQ\\/\\/xAAgEAACAgIDAAMBAAAAAAAAAAAAAQIRAxIhQVEEIjFC\\/9oACAEBAAE\\/AMfLKr+RpeGq8NV4arwpLowfGxzxxk+2Z0oZZwXTMclF2zdS5SKbaG\\/s1ZHG3zsSjJdiVxRjy5IQpfiG952\\/1sgk7IZIJJUTyK+C03dinr2OSfZDIo0qsnOGqpDpN0hMRa9Pouy0NpnHostRp8mzkz\\/\\/xAAaEQADAAMBAAAAAAAAAAAAAAAAARECIWEQ\\/9oACAECAQE\\/AMFhNscT15OwnSlKUp\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAREQAiH\\/2gAIAQMBAT8AGeiOnNmSn\\/\\/Z\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"scansSidecar\":\"OEzcFQzd3c8q61ZwO20XRJ+4JPhdtns\\/Yx7Ii96BBbqXkFBJGQR3Bg==\",\"scanLengths\":[10313,38150,15299,21571],\"midQualityFileSha256\":\"T9uxfjwAg6XBF+vKvOYjkrFtGpUczaCrcl8MZBSxROQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lzQ7m2tGeSQT9Vr3CZCy4ly\\/RaUhectbOks7BV1RlSo=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771009340,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:20.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:02:20');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11271, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:20.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:20'),
(11272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:21.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:21'),
(11273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:21.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:21'),
(11274, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:20.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:21'),
(11275, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:22.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:22'),
(11276, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:22.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:22'),
(11277, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:25'),
(11278, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC571F4FFDA367AE1A78D758D12CFA20\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Este guerreiro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BaBDrYb8VYO+iBEAFEzbGBT3kFXPcuwzefDjNEYBe\\/E=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009345,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:02:25'),
(11279, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:25'),
(11280, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC571F4FFDA367AE1A78D758D12CFA20\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Este guerreiro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BaBDrYb8VYO+iBEAFEzbGBT3kFXPcuwzefDjNEYBe\\/E=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009345,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:02:25'),
(11281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:25'),
(11282, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:26'),
(11283, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:02:26'),
(11284, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:02:25.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:02:26'),
(11285, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:04:10.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:04:11'),
(11286, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:04:10.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:04:11'),
(11287, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:56.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:06:57'),
(11288, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:56.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:06:57'),
(11289, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:06:57'),
(11290, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC395D872FEA76C275A99565BC35A9DF\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"??\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ftscVfxsXdcNReU1Vid2kwyYfmzZfnvXc66a+Xznoqw=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:06:57'),
(11291, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:06:57'),
(11292, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC395D872FEA76C275A99565BC35A9DF\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"??\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ftscVfxsXdcNReU1Vid2kwyYfmzZfnvXc66a+Xznoqw=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:06:58'),
(11293, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:06:58'),
(11294, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:06:58'),
(11295, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:06:58'),
(11296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:06:57.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:06:58');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11297, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT4Yka9h3PYkGdxQe9az2zbulufd6hI_0bH7RmcFBDvA&oe=699C93DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQmwi7Z-oYeWdWXBJw-MBnp8XzwkRgEfvvIfzfsqZL5A&oe=699C999B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfNS6kfALcwyxRq-DVKWfBSwdqARA5z1QXvgz2sJK_Aw&oe=699C8166&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wED1JpjjWL67BAOPLuq75uT_Ex-pQkLunI4LapokUuMjQ&oe=699C7B99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjIHO_k6vg17BzaavB_1DM-0RVm1Iw_8vPxBt4ByIm2A&oe=699C85F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjpU6vZfr1GtJGbe7fRy2e2Kwr2xRVVkhoUIG5t0aRdA&oe=699C81BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrM_OeEBvDMwsmaKen0g_pRifgXk8phZqUrgIA81uvCQ&oe=699C6A80&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL23B3PXVmMmD3YOiTLRJHsLLJKSI770BjKosOBudB6A&oe=699C8403&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtRl-qr7mWCm67bZjJ4EWNdQNFHx0QpppcK1Hw9o_pLg&oe=699C6ADC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvqoCUi9Gk7SsDwQtbphBBBXCIv9kMgxHh9eU4oMJnPQ&oe=699C7B15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wEp33daUma3Xj4wvtQJk4IqbAaLhFPgk_IOFzGCVD79vA&oe=699CA155&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkY5dSp_8UfTUzXEpb_pXYwDQUAWL3NI-Y9hSl6sGAww&oe=699C7696&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9rc66VyQvkYMb3Mv49m4iZoO0RUn846aJdNTI-7urPQ&oe=699C714B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wH338LTAzpKu0hRasNibW3CFhOWMcUuD8ANAFd_rSsLZw&oe=699C7446&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC-dimq8pou-b58cslESrp1SM2Aj9UNO9hbs1F86ldw&oe=699C71E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDGTxnlIOwkMAtd0VVhvaYw7gaRDMIlxe7GoWPNtfcyQ&oe=699C764C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgVUzXknQg1ErTa2gV65Y1FxMx-lofDsqatuyxeJlzWQ&oe=699C6EFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnEIUluR8VcPCL3htQi7zVFhGMxvtMgSRqwgPpxYRrwg&oe=699C709C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiXYAMASAC8MVqF_dKsjIsfWmNA5BXQFoX2DdYYVtOlw&oe=699C93F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3LV_9LFf-dk2p2V7EkMwyonjye7nozJZ4Wag4GLrM_w&oe=699C7009&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3612rq_vXKwlPX1Wj8L5u5C__Q4Fy3TRbGMCW7zpu6Q&oe=699C8E8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIlg8KZ-hPqsUAboVApCoMsuKykpM2rrZ8HJ4eKHYH1w&oe=699C7018&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXXXctVF-HFxXHBHB7GK-Ki0OyqDEnh9-mIraLxIc0JQ&oe=699C9CD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIuijmmDKE1RalguksKqBplsrbojxHW186KiZYHe3o-A&oe=699C835A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3T5LxPWuG6M4GmD8z_jm-KhZKEd4gSrs1BvubS_5oFQ&oe=699C86F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wGToFUUH2frzwZR_1YmMTgvs26_oiPJj4WjrAyKth-d4g&oe=699C982F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmou_r_9c4jZA8m4dTS8jp74KZP96S73ogKRHRgxQwHA&oe=699C9EAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNcEStVE5r8yacUNWPWCkpHUAlP3RzDFnQU9iYfnOT5A&oe=699C958D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMLIV14Q6JUohsNNmAaw9vx1atKc80HDEbArBg5QIG0w&oe=699C9ABB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiG9njC09XbcE484iCnB3Uue0oCIvoUeoPUuzKMDVC2Q&oe=699C7BC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTXatw3a1E_NvqlXI_ZP2qDOuhFILynw1oycC6isIAew&oe=699C9955&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-xdegqeZuXjt5V1tqGGYzJXPWFgC6bfoAV6NJ0pbKKQ&oe=699CA10C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqzKv-Fj4DDccJ55O_kn6-9J-ubaQJNhtTHQp70lHUPA&oe=699C805A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRowYg_iyH2e-7Efuo92c7m0LorOs5qiZOimZHs_vNXw&oe=699C722F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGclTXa45wGGMwVKbStV_AKRWQB0aA42Kg-xmhHpBPmfg&oe=699C7665&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSYNIEcGHh_6UcpKJ8-ksaYXoNqWl1UIpQGy265adHjg&oe=699C8ED0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE62PKdDo88vs4e1wKTS18uk7Fc5wq8mmYDdOZaiiPe9Q&oe=699C9CEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdXVlqPbNNkYO0YBVHbLc8LQG66P-XYDQ7HA28uyQ0oQ&oe=699C973B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBdbeZI1UP9unCBliwxYG1QcthDImwb-notUhYy4dJwg&oe=699CA0A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wH3MxybHqcgYctwrlTjo_w0c0V-cd2SmrJU8BbL7OTPiA&oe=699C6BEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wErXeTO1VWLbyN2HJ9u5OSGh9VE7edT17G0ZxmetpTQ4w&oe=699C7524&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBv18YXA-O6LAFFGjuEO1uQ2aIdjNRPciY-HriWmjtg&oe=699C9305&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqgVC_qVQLLfwCNLNXvfRVFQDc5jG2vctBKx5T9s-TSQ&oe=699C9AB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP3Oa8RpHJXdtLm7vxarhaTRD-_v0Y50Gqy5qnk8Sw1g&oe=699C8112&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGac1KfW3FD-r9yQ_LjzoaZ-QqDRlZT4C2CKWNNNoppvQ&oe=699C96D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1X8xuaWT9eFOwuYgJiyzKGJ5wJKm_xsSx6B8_LMtyKQ&oe=699C7A91&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGR18NT0kA-EABTs44ZKjyNRK7Sf5XGvOlzT4rSloyCNA&oe=699C80B9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Qc37A22nvty0ISiMTqX390FYDzvTvTohg3ePtp_Nmw&oe=699C9477&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLQM4fQVHUW8NwAZG_P3bCG0cObBRwGAsfFcWWNFDygA&oe=699C6B6A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoH5JXERcp4RFkuATUf8lgqT2g3mkzStJI3PgQwEyKRQ&oe=699C9CE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfAEjJiV9yKokd1j71ZjfaPp6Rxjb__6-yRROtGw8tQg&oe=699C6A0A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqLaMMp_1PZtbyKfqgXvs-LdO4i5IoDih5ADpZO1-Uaw&oe=699C6A7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRzLEE1c4YvqfCLU1KxS7GantWiW_L7k-vzLx8dOs95g&oe=699C8B6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8QEpVxOU9r62PN98U_PZUOXv71RtfcLkPlpkZd2VfDw&oe=699C8A6B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIIiLsTL3Gkpbph3p8qoCaQbWsUd6RDxECiZjCUKqppg&oe=699C9BD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgQAN6ErpjylNxbERI2P_GO6W3u-_3Gxi2yk1eSE1eLQ&oe=699C912E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_cxVXF5THJsYQyvisoKelpDrizC7k3HiTPq9J_hlTTQ&oe=699C83D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIMxR5EhykwAPOEyGmJ0ofpenu8amnpm-MDZmxYWGDOQ&oe=699C98D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLdrfyD9jj9tB3k4RjNxfosUnbi4PuBMRz80D4E_hxfw&oe=699C82F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5IiP0Kn34zqY4Ssq1D9KgRS3xNhmSkiq7gJF4Y_JV6Q&oe=699C7586&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz1FgD2yKxxNJa5loVxiSlvlBxbglVpodHB5TMTH1BBA&oe=699C8321&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCw6lq_NcUjXI2BHx1YjX10GwxPqT9LQWl1pLYg0KMHA&oe=699C9AF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2ac7r186pDv1oNuXKBPfqcIDibGv77YaYCrp_OjmPdQ&oe=699C7FB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOluoj7b4JJYnzc5AkRhDuPM-cDhKzIQdv3ZtqkYlLZQ&oe=699C8E80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMBf8VQ-LdwPl15g8dZ0dVZVqTVbX623lVU_LZTrP98w&oe=699C7B4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUy0fyBnHVzJPlZbTzWD02J4VasAZGc2YNa4TIvc5NDQ&oe=699C6E7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXBEKsfQREDpSiKX6Pso53P-Gx7kVcCfVRba8Gq1jeHA&oe=699C7202&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvKDWDJDursYgG2AjCILMTBbbOlazG06VcXADbi-xf-w&oe=699C978E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_JeP4bW0n5TtQ3ToYAMetEdrlQ4QH-rTrsbi5d6vOZA&oe=699C9E74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3I7HF7jF1NHZIQm85rvtC-b6yXI5d3KUihRGlSzrqkw&oe=699C8412&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyp-i6xKkEQ3X2D0gmMzCOobkSSNGiLucHFNjNEoNwTA&oe=699C7750&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLeNC5qOIzAlqEMI7Dc7Kmfi-q8fsBUOJ6W686q5flnQ&oe=699C6B3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJJJKMnHPgriFMoObbf_-QK1N2NGn0pO_gUn97JDxvkw&oe=699C6E72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIO3yc5c9asmO4szXvEX0cDE8wDiqZ0UpSTb6cHe98qg&oe=699CA12F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH477aAQry3TkEHmfIeq2lt0LLyEdMS1lRV5pRJfH_nSA&oe=699C95BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZNw1n0bpVf82hzwmYrhQPpArB6zquify0zT6gXSIvcA&oe=699C731F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJkT5q0ry2fKf-9RPRNMkh5H2q0X9WVkuB4-Yl3f_Ryg&oe=699C771A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQyl9TbetcttalJyikgAkH5JD8TcN9pFgopwx324FEDw&oe=699C9A90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjHvGqvIeG_rIRAGNwA8-NQuojXoOe2mP3TyskbHUFrA&oe=699C7E44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wEh11EJZTueyuFNRD0shVwgCYO4HluJ4julRAfgFYsYOQ&oe=699C84D7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wEODzNTl6zP0_c5lsSeCdCnH3ColdTXF4z5wpV0BurNPg&oe=699C857A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ0MZmn42RCoOzyFEID9_fOpGyyr3-UxN5owOFL-xdgA&oe=699C7395&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeo41NZCodUTg2CQNOQui_ioQZfiVdfa7_7whyUvVThQ&oe=699C808E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhHjG9hjluOf5ZO5GS4nWwkumI4HU9Y1hPASzRY2jaKg&oe=699C95F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEoYuAdpGgPkvCB91hYTR21oA1P_foV4kflqSlejRMXyA&oe=699C6B44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVzROHDn0Hg3b3ibXODlKR9tn9xFwVzRemfgDh-CPJtA&oe=699C76FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEtFeZvhWy-apKWY424SMTmXIShEKWMeuDQ2PWpuPLYWA&oe=699C7B25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJnXR8khNWUhev25pSBlu1USh31s_ZvEvpu7MtDSnrcg&oe=699C92BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyUALUrkOtkzzlz1Jr4xAK0XoY0WjWCH4rmujLrAflsg&oe=699C77C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDdgL0bh8omwA4CjkKHPk26Ih6eOnj7rTPdC0JNwSrkA&oe=699C9EA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlrp5YQ1C8uRUq8hZDVkh4jO69wWCRXmYeBQlhweu8Ww&oe=699C99C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeJB8Uo-WOqDDtn5q0XGFDv5sWmfR5TeLv1Jk3ZKp8mg&oe=699C8727&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7LwOkhXq0P70q9poxopd1BdiE48JcMeJqAgxjbqxBNw&oe=699C7240&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjYyKYp860usG2UBhVUk_NaOBqTPaS_USOkiM_fq9OGQ&oe=699C89DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-V30joNe_gbUfl3AM5CZAVCSg98_ZhzmfrnTa1hHSUA&oe=699C91C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH43kYpbeCcxLx3WtXAA7hP7ONrbBMnl7_R2Tvgdf_9Gg&oe=699C8D63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgvbVvs02KltT7prbqKxr1HCGAssP2mUPraz_v31BnXQ&oe=699C9DC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_vZKTaGtECnbJ8Wan7V0mLlR6QAIt4hrtXb4A8gmlQA&oe=699C9F0A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHS6ALvzWKRuwJTxu0ng7jZjcbc7A8C_uNHoS0frsTRPw&oe=699C9A11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoO65w0McLFexHLCmcceX8AFE5pNFGYYTYYiJiS0gq-A&oe=699C739C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9PD_3716ouMwJnPpU_zvXm98dtkKmEJQlhsSdrsnvgg&oe=699C8DB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUu4PdW2KlUsgC-kNGWX0uIAI1n5Xrwxy84rqzkzVJjg&oe=699C71D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4eFcpWfRjFP9EHVfvQGo6KqXLYXEFstj3bIkrh_BP-g&oe=699C94D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg6cBuSr3vsf6J9NPZKqiKDgQyMc2ZwtCu9WOaqAgMBQ&oe=699C843E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbxZNP4VQkSN_RoQ0KL37zOgRPLcQOAAFOGFYbDksmEQ&oe=699C8C2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5fH0R207WMhzDa-bEuZBRfloghCFClyAZN3Kzz2sREA&oe=699C6F5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBdnQgoH43YpNcgRH22zPy_ZeMbTSyxeMZ1_Eu3Id5sg&oe=699C6C36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvR0ej-GsSCbHpe2QUoi87nnekKqgYXQRiye2SbUzkgA&oe=699C745B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wECoz8qGjp0r4i3_S7mnn89mjdHS24a-qyMkieMbiLysw&oe=699C9107&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7hHwpUhN85L4feS5oqVcdq-D1jQFoE8ctRFLoDu9ySA&oe=699C6E0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY8vUVu_IZ1y-eHyPYUcK2A85Va9paf3NWZZEQQ3W6ww&oe=699C72B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP7JTfKvLbPQsI7HFfLE7d171Dw5gymBTfFyz7m8QGZQ&oe=699C8DE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlSveDoU-hNnC04ya2w933DdQk3SEp6ZDItVYX4wqrYw&oe=699C830B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF74MhMSi4tQPJb_0pgD1ohcJyxOPKG_j3_RVywSHTKmQ&oe=699C91A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3mHHSm82YFjcQ-wsuR2DGhRByA9Parc_GrjeF0PQZIg&oe=699C9E52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwo01T2QLq62citTDClfh2Ha8aUCI06qABZ4yX8omwqQ&oe=699C9E65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wG99yJ4TJhoL3w4_rxtS9ZvNzFKLweDxi1G2WeOQCxjgA&oe=699C7505&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrus3xedwlCbkdNhqkHBP8e8A6zEwe0tjJJIpauH1dtw&oe=699C9A23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDnDOPuWyBPOzsvy4lJFyaObJZiTryNYnch5TQnQ2KVQ&oe=699C7573&_nc_sid=5', 1, '2026-02-13 16:07:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11298, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT4Yka9h3PYkGdxQe9az2zbulufd6hI_0bH7RmcFBDvA&oe=699C93DF&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQmwi7Z-oYeWdWXBJw-MBnp8XzwkRgEfvvIfzfsqZL5A&oe=699C999B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfNS6kfALcwyxRq-DVKWfBSwdqARA5z1QXvgz2sJK_Aw&oe=699C8166&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wED1JpjjWL67BAOPLuq75uT_Ex-pQkLunI4LapokUuMjQ&oe=699C7B99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjIHO_k6vg17BzaavB_1DM-0RVm1Iw_8vPxBt4ByIm2A&oe=699C85F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjpU6vZfr1GtJGbe7fRy2e2Kwr2xRVVkhoUIG5t0aRdA&oe=699C81BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrM_OeEBvDMwsmaKen0g_pRifgXk8phZqUrgIA81uvCQ&oe=699C6A80&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL23B3PXVmMmD3YOiTLRJHsLLJKSI770BjKosOBudB6A&oe=699C8403&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtRl-qr7mWCm67bZjJ4EWNdQNFHx0QpppcK1Hw9o_pLg&oe=699C6ADC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvqoCUi9Gk7SsDwQtbphBBBXCIv9kMgxHh9eU4oMJnPQ&oe=699C7B15&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wEp33daUma3Xj4wvtQJk4IqbAaLhFPgk_IOFzGCVD79vA&oe=699CA155&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFkY5dSp_8UfTUzXEpb_pXYwDQUAWL3NI-Y9hSl6sGAww&oe=699C7696&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9rc66VyQvkYMb3Mv49m4iZoO0RUn846aJdNTI-7urPQ&oe=699C714B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wH338LTAzpKu0hRasNibW3CFhOWMcUuD8ANAFd_rSsLZw&oe=699C7446&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC-dimq8pou-b58cslESrp1SM2Aj9UNO9hbs1F86ldw&oe=699C71E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEDGTxnlIOwkMAtd0VVhvaYw7gaRDMIlxe7GoWPNtfcyQ&oe=699C764C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgVUzXknQg1ErTa2gV65Y1FxMx-lofDsqatuyxeJlzWQ&oe=699C6EFB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnEIUluR8VcPCL3htQi7zVFhGMxvtMgSRqwgPpxYRrwg&oe=699C709C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiXYAMASAC8MVqF_dKsjIsfWmNA5BXQFoX2DdYYVtOlw&oe=699C93F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3LV_9LFf-dk2p2V7EkMwyonjye7nozJZ4Wag4GLrM_w&oe=699C7009&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3612rq_vXKwlPX1Wj8L5u5C__Q4Fy3TRbGMCW7zpu6Q&oe=699C8E8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIlg8KZ-hPqsUAboVApCoMsuKykpM2rrZ8HJ4eKHYH1w&oe=699C7018&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXXXctVF-HFxXHBHB7GK-Ki0OyqDEnh9-mIraLxIc0JQ&oe=699C9CD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIuijmmDKE1RalguksKqBplsrbojxHW186KiZYHe3o-A&oe=699C835A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3T5LxPWuG6M4GmD8z_jm-KhZKEd4gSrs1BvubS_5oFQ&oe=699C86F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wGToFUUH2frzwZR_1YmMTgvs26_oiPJj4WjrAyKth-d4g&oe=699C982F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmou_r_9c4jZA8m4dTS8jp74KZP96S73ogKRHRgxQwHA&oe=699C9EAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNcEStVE5r8yacUNWPWCkpHUAlP3RzDFnQU9iYfnOT5A&oe=699C958D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMLIV14Q6JUohsNNmAaw9vx1atKc80HDEbArBg5QIG0w&oe=699C9ABB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiG9njC09XbcE484iCnB3Uue0oCIvoUeoPUuzKMDVC2Q&oe=699C7BC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTXatw3a1E_NvqlXI_ZP2qDOuhFILynw1oycC6isIAew&oe=699C9955&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-xdegqeZuXjt5V1tqGGYzJXPWFgC6bfoAV6NJ0pbKKQ&oe=699CA10C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqzKv-Fj4DDccJ55O_kn6-9J-ubaQJNhtTHQp70lHUPA&oe=699C805A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRowYg_iyH2e-7Efuo92c7m0LorOs5qiZOimZHs_vNXw&oe=699C722F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGclTXa45wGGMwVKbStV_AKRWQB0aA42Kg-xmhHpBPmfg&oe=699C7665&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSYNIEcGHh_6UcpKJ8-ksaYXoNqWl1UIpQGy265adHjg&oe=699C8ED0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE62PKdDo88vs4e1wKTS18uk7Fc5wq8mmYDdOZaiiPe9Q&oe=699C9CEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdXVlqPbNNkYO0YBVHbLc8LQG66P-XYDQ7HA28uyQ0oQ&oe=699C973B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBdbeZI1UP9unCBliwxYG1QcthDImwb-notUhYy4dJwg&oe=699CA0A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wH3MxybHqcgYctwrlTjo_w0c0V-cd2SmrJU8BbL7OTPiA&oe=699C6BEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wErXeTO1VWLbyN2HJ9u5OSGh9VE7edT17G0ZxmetpTQ4w&oe=699C7524&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBv18YXA-O6LAFFGjuEO1uQ2aIdjNRPciY-HriWmjtg&oe=699C9305&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqgVC_qVQLLfwCNLNXvfRVFQDc5jG2vctBKx5T9s-TSQ&oe=699C9AB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP3Oa8RpHJXdtLm7vxarhaTRD-_v0Y50Gqy5qnk8Sw1g&oe=699C8112&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGac1KfW3FD-r9yQ_LjzoaZ-QqDRlZT4C2CKWNNNoppvQ&oe=699C96D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1X8xuaWT9eFOwuYgJiyzKGJ5wJKm_xsSx6B8_LMtyKQ&oe=699C7A91&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGR18NT0kA-EABTs44ZKjyNRK7Sf5XGvOlzT4rSloyCNA&oe=699C80B9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Qc37A22nvty0ISiMTqX390FYDzvTvTohg3ePtp_Nmw&oe=699C9477&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLQM4fQVHUW8NwAZG_P3bCG0cObBRwGAsfFcWWNFDygA&oe=699C6B6A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoH5JXERcp4RFkuATUf8lgqT2g3mkzStJI3PgQwEyKRQ&oe=699C9CE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfAEjJiV9yKokd1j71ZjfaPp6Rxjb__6-yRROtGw8tQg&oe=699C6A0A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqLaMMp_1PZtbyKfqgXvs-LdO4i5IoDih5ADpZO1-Uaw&oe=699C6A7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRzLEE1c4YvqfCLU1KxS7GantWiW_L7k-vzLx8dOs95g&oe=699C8B6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8QEpVxOU9r62PN98U_PZUOXv71RtfcLkPlpkZd2VfDw&oe=699C8A6B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIIiLsTL3Gkpbph3p8qoCaQbWsUd6RDxECiZjCUKqppg&oe=699C9BD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgQAN6ErpjylNxbERI2P_GO6W3u-_3Gxi2yk1eSE1eLQ&oe=699C912E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_cxVXF5THJsYQyvisoKelpDrizC7k3HiTPq9J_hlTTQ&oe=699C83D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIMxR5EhykwAPOEyGmJ0ofpenu8amnpm-MDZmxYWGDOQ&oe=699C98D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLdrfyD9jj9tB3k4RjNxfosUnbi4PuBMRz80D4E_hxfw&oe=699C82F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5IiP0Kn34zqY4Ssq1D9KgRS3xNhmSkiq7gJF4Y_JV6Q&oe=699C7586&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz1FgD2yKxxNJa5loVxiSlvlBxbglVpodHB5TMTH1BBA&oe=699C8321&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCw6lq_NcUjXI2BHx1YjX10GwxPqT9LQWl1pLYg0KMHA&oe=699C9AF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2ac7r186pDv1oNuXKBPfqcIDibGv77YaYCrp_OjmPdQ&oe=699C7FB8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOluoj7b4JJYnzc5AkRhDuPM-cDhKzIQdv3ZtqkYlLZQ&oe=699C8E80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMBf8VQ-LdwPl15g8dZ0dVZVqTVbX623lVU_LZTrP98w&oe=699C7B4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUy0fyBnHVzJPlZbTzWD02J4VasAZGc2YNa4TIvc5NDQ&oe=699C6E7E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXBEKsfQREDpSiKX6Pso53P-Gx7kVcCfVRba8Gq1jeHA&oe=699C7202&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvKDWDJDursYgG2AjCILMTBbbOlazG06VcXADbi-xf-w&oe=699C978E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_JeP4bW0n5TtQ3ToYAMetEdrlQ4QH-rTrsbi5d6vOZA&oe=699C9E74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3I7HF7jF1NHZIQm85rvtC-b6yXI5d3KUihRGlSzrqkw&oe=699C8412&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyp-i6xKkEQ3X2D0gmMzCOobkSSNGiLucHFNjNEoNwTA&oe=699C7750&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLeNC5qOIzAlqEMI7Dc7Kmfi-q8fsBUOJ6W686q5flnQ&oe=699C6B3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJJJKMnHPgriFMoObbf_-QK1N2NGn0pO_gUn97JDxvkw&oe=699C6E72&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIO3yc5c9asmO4szXvEX0cDE8wDiqZ0UpSTb6cHe98qg&oe=699CA12F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH477aAQry3TkEHmfIeq2lt0LLyEdMS1lRV5pRJfH_nSA&oe=699C95BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZNw1n0bpVf82hzwmYrhQPpArB6zquify0zT6gXSIvcA&oe=699C731F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJkT5q0ry2fKf-9RPRNMkh5H2q0X9WVkuB4-Yl3f_Ryg&oe=699C771A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQyl9TbetcttalJyikgAkH5JD8TcN9pFgopwx324FEDw&oe=699C9A90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjHvGqvIeG_rIRAGNwA8-NQuojXoOe2mP3TyskbHUFrA&oe=699C7E44&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wEh11EJZTueyuFNRD0shVwgCYO4HluJ4julRAfgFYsYOQ&oe=699C84D7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wEODzNTl6zP0_c5lsSeCdCnH3ColdTXF4z5wpV0BurNPg&oe=699C857A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQ0MZmn42RCoOzyFEID9_fOpGyyr3-UxN5owOFL-xdgA&oe=699C7395&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeo41NZCodUTg2CQNOQui_ioQZfiVdfa7_7whyUvVThQ&oe=699C808E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhHjG9hjluOf5ZO5GS4nWwkumI4HU9Y1hPASzRY2jaKg&oe=699C95F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEoYuAdpGgPkvCB91hYTR21oA1P_foV4kflqSlejRMXyA&oe=699C6B44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVzROHDn0Hg3b3ibXODlKR9tn9xFwVzRemfgDh-CPJtA&oe=699C76FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEtFeZvhWy-apKWY424SMTmXIShEKWMeuDQ2PWpuPLYWA&oe=699C7B25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJnXR8khNWUhev25pSBlu1USh31s_ZvEvpu7MtDSnrcg&oe=699C92BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyUALUrkOtkzzlz1Jr4xAK0XoY0WjWCH4rmujLrAflsg&oe=699C77C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDdgL0bh8omwA4CjkKHPk26Ih6eOnj7rTPdC0JNwSrkA&oe=699C9EA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlrp5YQ1C8uRUq8hZDVkh4jO69wWCRXmYeBQlhweu8Ww&oe=699C99C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeJB8Uo-WOqDDtn5q0XGFDv5sWmfR5TeLv1Jk3ZKp8mg&oe=699C8727&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7LwOkhXq0P70q9poxopd1BdiE48JcMeJqAgxjbqxBNw&oe=699C7240&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjYyKYp860usG2UBhVUk_NaOBqTPaS_USOkiM_fq9OGQ&oe=699C89DD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-V30joNe_gbUfl3AM5CZAVCSg98_ZhzmfrnTa1hHSUA&oe=699C91C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH43kYpbeCcxLx3WtXAA7hP7ONrbBMnl7_R2Tvgdf_9Gg&oe=699C8D63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgvbVvs02KltT7prbqKxr1HCGAssP2mUPraz_v31BnXQ&oe=699C9DC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_vZKTaGtECnbJ8Wan7V0mLlR6QAIt4hrtXb4A8gmlQA&oe=699C9F0A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHS6ALvzWKRuwJTxu0ng7jZjcbc7A8C_uNHoS0frsTRPw&oe=699C9A11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoO65w0McLFexHLCmcceX8AFE5pNFGYYTYYiJiS0gq-A&oe=699C739C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9PD_3716ouMwJnPpU_zvXm98dtkKmEJQlhsSdrsnvgg&oe=699C8DB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUu4PdW2KlUsgC-kNGWX0uIAI1n5Xrwxy84rqzkzVJjg&oe=699C71D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4eFcpWfRjFP9EHVfvQGo6KqXLYXEFstj3bIkrh_BP-g&oe=699C94D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg6cBuSr3vsf6J9NPZKqiKDgQyMc2ZwtCu9WOaqAgMBQ&oe=699C843E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbxZNP4VQkSN_RoQ0KL37zOgRPLcQOAAFOGFYbDksmEQ&oe=699C8C2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5fH0R207WMhzDa-bEuZBRfloghCFClyAZN3Kzz2sREA&oe=699C6F5A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBdnQgoH43YpNcgRH22zPy_ZeMbTSyxeMZ1_Eu3Id5sg&oe=699C6C36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvR0ej-GsSCbHpe2QUoi87nnekKqgYXQRiye2SbUzkgA&oe=699C745B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wECoz8qGjp0r4i3_S7mnn89mjdHS24a-qyMkieMbiLysw&oe=699C9107&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7hHwpUhN85L4feS5oqVcdq-D1jQFoE8ctRFLoDu9ySA&oe=699C6E0E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY8vUVu_IZ1y-eHyPYUcK2A85Va9paf3NWZZEQQ3W6ww&oe=699C72B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP7JTfKvLbPQsI7HFfLE7d171Dw5gymBTfFyz7m8QGZQ&oe=699C8DE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlSveDoU-hNnC04ya2w933DdQk3SEp6ZDItVYX4wqrYw&oe=699C830B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF74MhMSi4tQPJb_0pgD1ohcJyxOPKG_j3_RVywSHTKmQ&oe=699C91A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3mHHSm82YFjcQ-wsuR2DGhRByA9Parc_GrjeF0PQZIg&oe=699C9E52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwo01T2QLq62citTDClfh2Ha8aUCI06qABZ4yX8omwqQ&oe=699C9E65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wG99yJ4TJhoL3w4_rxtS9ZvNzFKLweDxi1G2WeOQCxjgA&oe=699C7505&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrus3xedwlCbkdNhqkHBP8e8A6zEwe0tjJJIpauH1dtw&oe=699C9A23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDnDOPuWyBPOzsvy4lJFyaObJZiTryNYnch5TQnQ2KVQ&oe=699C7573&_nc_sid=5', 1, '2026-02-13 16:07:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5BF75DB67D45433120394AE84247815\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009670825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:07:50.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:07:51'),
(11300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5BF75DB67D45433120394AE84247815\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771009670825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:07:50.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:07:51'),
(11301, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A568676058117D506F70AC9285DAA992\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Reinicia ele\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009854,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:10:54.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:10:54'),
(11302, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:10:54.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:10:54'),
(11303, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:10:54.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:10:54'),
(11304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:10:54.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:10:54'),
(11305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:10:54.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:10:54'),
(11306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":true,\"id\":\"A568676058117D506F70AC9285DAA992\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Reinicia ele\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771009854,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:10:54.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:10:55'),
(11307, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:11:17'),
(11308, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635660493_1974096866795945_5779829255212843887_n.enc?ccb=11-4&oh=01_Q5Aa3wFuVjc4_bH5p4djdlbbdHJiomGBnI0LhKO6IBp4XO955w&oe=69B6FF78&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xHximVOU6gB9Pv27M\\/9g4e8d4gN6cLXcqaKXonEUcBc=\",\"fileLength\":\"29310\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"kfMz2g2aQ8GWyic22zRx1VAilND2ApbonkztuZk2FJg=\",\"fileEncSha256\":\"6Ms6cLtSWhp6TkKdlk4ClVuWHUdmUQJuct9bi7Wlu+U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635660493_1974096866795945_5779829255212843887_n.enc?ccb=11-4&oh=01_Q5Aa3wFuVjc4_bH5p4djdlbbdHJiomGBnI0LhKO6IBp4XO955w&oe=69B6FF78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009863\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACwqYzpjY2JgSj5WM1ZXS1tdX0BfWVw4YV8cExwWFiUpXVI3NlMuRGFYHxgaGR0sXVAtTClNVVA7MSQkI05XYQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009877,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:11:17'),
(11309, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:11:17'),
(11310, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635660493_1974096866795945_5779829255212843887_n.enc?ccb=11-4&oh=01_Q5Aa3wFuVjc4_bH5p4djdlbbdHJiomGBnI0LhKO6IBp4XO955w&oe=69B6FF78&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xHximVOU6gB9Pv27M\\/9g4e8d4gN6cLXcqaKXonEUcBc=\",\"fileLength\":\"29310\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"kfMz2g2aQ8GWyic22zRx1VAilND2ApbonkztuZk2FJg=\",\"fileEncSha256\":\"6Ms6cLtSWhp6TkKdlk4ClVuWHUdmUQJuct9bi7Wlu+U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635660493_1974096866795945_5779829255212843887_n.enc?ccb=11-4&oh=01_Q5Aa3wFuVjc4_bH5p4djdlbbdHJiomGBnI0LhKO6IBp4XO955w&oe=69B6FF78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009863\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACwqYzpjY2JgSj5WM1ZXS1tdX0BfWVw4YV8cExwWFiUpXVI3NlMuRGFYHxgaGR0sXVAtTClNVVA7MSQkI05XYQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009877,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:11:17'),
(11312, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:11:18'),
(11313, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009878028,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:18.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:11:18'),
(11314, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009877606,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:11:18'),
(11315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:17.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:11:18'),
(11316, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009878028,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:18.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:11:18'),
(11317, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635960733_1940237216565367_191652465238229346_n.enc?ccb=11-4&oh=01_Q5Aa3wFMlw3FoxZ4M3wdTbtEGzOuxNASC6vqjsmCtb_If_POQQ&oe=69B6E397&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XpbgwZpmZ4YGX+V+wdYqcO4Xrqra9qVMLNn83grcmB8=\",\"fileLength\":\"46008\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"4OxMLbBxeMurUa267L4HiGj+XDZhSiFq8zr\\/cTP7eQI=\",\"fileEncSha256\":\"bRQulvcDlKJxRXvMXepE87qQhOu+hxlRKR5ePnvOido=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635960733_1940237216565367_191652465238229346_n.enc?ccb=11-4&oh=01_Q5Aa3wFMlw3FoxZ4M3wdTbtEGzOuxNASC6vqjsmCtb_If_POQQ&oe=69B6E397&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009879\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AGNKVTRQQkRYGhlbUT5HW15bJlY4PVNZFxkbYxtNWVhXOEosLRxWPxgZODRZV080S0xKPR4hG1tTTk9IUzobHA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:39.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:11:39'),
(11318, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:39.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:11:39'),
(11319, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:39.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:11:39'),
(11320, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635960733_1940237216565367_191652465238229346_n.enc?ccb=11-4&oh=01_Q5Aa3wFMlw3FoxZ4M3wdTbtEGzOuxNASC6vqjsmCtb_If_POQQ&oe=69B6E397&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XpbgwZpmZ4YGX+V+wdYqcO4Xrqra9qVMLNn83grcmB8=\",\"fileLength\":\"46008\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"4OxMLbBxeMurUa267L4HiGj+XDZhSiFq8zr\\/cTP7eQI=\",\"fileEncSha256\":\"bRQulvcDlKJxRXvMXepE87qQhOu+hxlRKR5ePnvOido=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635960733_1940237216565367_191652465238229346_n.enc?ccb=11-4&oh=01_Q5Aa3wFMlw3FoxZ4M3wdTbtEGzOuxNASC6vqjsmCtb_If_POQQ&oe=69B6E397&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009879\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AGNKVTRQQkRYGhlbUT5HW15bJlY4PVNZFxkbYxtNWVhXOEosLRxWPxgZODRZV080S0xKPR4hG1tTTk9IUzobHA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:39.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:11:39'),
(11321, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009899948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:39.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:11:40'),
(11322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:40.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:11:40'),
(11323, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009899948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:39.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:11:40'),
(11324, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009900107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:40.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:11:40'),
(11325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:40.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:11:40'),
(11326, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009900107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:11:40.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:11:40'),
(11327, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A568676058117D506F70AC9285DAA992\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009930100,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:10.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:12:10'),
(11328, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"211677630967839@lid\",\"id\":\"A568676058117D506F70AC9285DAA992\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009930100,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:10.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:12:10'),
(11329, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:12:36'),
(11330, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:12:36'),
(11331, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A552BBAAEF991150924FE604EF716E36\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/34672116_878280394991368_1814196912365871634_n.enc?ccb=11-4&oh=01_Q5Aa3wGgbaDtMs_brlI-ck1Jw_4vhSPVY3Jjd8E-7jYb0AKZRw&oe=69B6F026&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"kP1tR4eRzxEQMNtUpLqDjVaqRrX4SZDi6gCOnIN3iyQ=\",\"fileLength\":\"62099\",\"seconds\":28,\"ptt\":true,\"mediaKey\":\"gt03cdr3t5TrXo3NAq9L0r4HDo50P3LE68xCeF7mTno=\",\"fileEncSha256\":\"H2w1aKcWJlREDr8n8iIAgQiYmrspTsK015U+2ZtNvrk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/34672116_878280394991368_1814196912365871634_n.enc?ccb=11-4&oh=01_Q5Aa3wGgbaDtMs_brlI-ck1Jw_4vhSPVY3Jjd8E-7jYb0AKZRw&oe=69B6F026&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009928\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AF1dTlRUTEFEOC0UIlEeWVxIRjxRQRcWXjIiWF1UIlgyW1kZGWE\\/TGAcFkVZS0I9QCdPEj1STFhSN1pUOEVgTw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:12:36'),
(11333, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:12:36'),
(11334, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:12:37'),
(11335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:71@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009956635,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:12:37'),
(11336, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A552BBAAEF991150924FE604EF716E36\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/34672116_878280394991368_1814196912365871634_n.enc?ccb=11-4&oh=01_Q5Aa3wGgbaDtMs_brlI-ck1Jw_4vhSPVY3Jjd8E-7jYb0AKZRw&oe=69B6F026&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"kP1tR4eRzxEQMNtUpLqDjVaqRrX4SZDi6gCOnIN3iyQ=\",\"fileLength\":\"62099\",\"seconds\":28,\"ptt\":true,\"mediaKey\":\"gt03cdr3t5TrXo3NAq9L0r4HDo50P3LE68xCeF7mTno=\",\"fileEncSha256\":\"H2w1aKcWJlREDr8n8iIAgQiYmrspTsK015U+2ZtNvrk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/34672116_878280394991368_1814196912365871634_n.enc?ccb=11-4&oh=01_Q5Aa3wGgbaDtMs_brlI-ck1Jw_4vhSPVY3Jjd8E-7jYb0AKZRw&oe=69B6F026&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009928\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AF1dTlRUTEFEOC0UIlEeWVxIRjxRQRcWXjIiWF1UIlgyW1kZGWE\\/TGAcFkVZS0I9QCdPEj1STFhSN1pUOEVgTw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771009956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:36.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:12:37'),
(11337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009957405,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:37.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:12:37'),
(11338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771009957405,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:12:37.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:12:37'),
(11339, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4AD53D40A7F6DAE86E6D\"},\"pushName\":\"Eudes Lima\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/635270624_1405550631252903_2601397534820808083_n.enc?ccb=11-4&oh=01_Q5Aa3wGxYd4y_r0oyrRkIE_BpZg_TjhXKIOwx3ArzaBOneuvGw&oe=69B6EEBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante\",\"fileSha256\":\"E2tT1wCyfFObYytxjpaEqVyqU2dafOz9uazgQ2pzZnk=\",\"fileLength\":\"19748\",\"pageCount\":1,\"mediaKey\":\"OsQjf24rfDZF0+aJAPfEj4BPARw3wHTlcedm\\/zKkkvI=\",\"fileName\":\"Comprovante.pdf\",\"fileEncSha256\":\"BwVKky+LKZEpVLeGsLo2sOF7MbKcHmnlcr48en\\/EPgI=\",\"directPath\":\"\\/v\\/t62.7119-24\\/635270624_1405550631252903_2601397534820808083_n.enc?ccb=11-4&oh=01_Q5Aa3wGxYd4y_r0oyrRkIE_BpZg_TjhXKIOwx3ArzaBOneuvGw&oe=69B6EEBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009990\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAC4DASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAECAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0lxDqxTSDnLDrc6AOcZOzkOrGygAAAAA\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwB\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/8QAIhABAAIBBAICAwAAAAAAAAAAAQARAgMSITEgQSJREDJA\\/9oACAEBAAE\\/AMu\\/2qbj7PHU238pjseqjuT4pDdXNXOYTVBe5pafNvJADrw1O+whlldCQcr5PDUxHuGOJ6m4Pcs+5Z9\\/jVtThYYj6ymWnzVKR06aBqGkHtgV\\/H\\/\\/\\/gADAP\\/Z\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qnY0RWSbb\\/vZqfANLygswfL5UfPqckKL863\\/KFdK49w=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771009992,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:13:13'),
(11340, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:13:13'),
(11341, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:13:13'),
(11342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:13:13'),
(11343, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"556194250674@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4AD53D40A7F6DAE86E6D\"},\"pushName\":\"Eudes Lima\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/635270624_1405550631252903_2601397534820808083_n.enc?ccb=11-4&oh=01_Q5Aa3wGxYd4y_r0oyrRkIE_BpZg_TjhXKIOwx3ArzaBOneuvGw&oe=69B6EEBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante\",\"fileSha256\":\"E2tT1wCyfFObYytxjpaEqVyqU2dafOz9uazgQ2pzZnk=\",\"fileLength\":\"19748\",\"pageCount\":1,\"mediaKey\":\"OsQjf24rfDZF0+aJAPfEj4BPARw3wHTlcedm\\/zKkkvI=\",\"fileName\":\"Comprovante.pdf\",\"fileEncSha256\":\"BwVKky+LKZEpVLeGsLo2sOF7MbKcHmnlcr48en\\/EPgI=\",\"directPath\":\"\\/v\\/t62.7119-24\\/635270624_1405550631252903_2601397534820808083_n.enc?ccb=11-4&oh=01_Q5Aa3wGxYd4y_r0oyrRkIE_BpZg_TjhXKIOwx3ArzaBOneuvGw&oe=69B6EEBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771009990\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAC4DASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAECAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0lxDqxTSDnLDrc6AOcZOzkOrGygAAAAA\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwB\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/8QAIhABAAIBBAICAwAAAAAAAAAAAQARAgMSITEgQSJREDJA\\/9oACAEBAAE\\/AMu\\/2qbj7PHU238pjseqjuT4pDdXNXOYTVBe5pafNvJADrw1O+whlldCQcr5PDUxHuGOJ6m4Pcs+5Z9\\/jVtThYYj6ymWnzVKR06aBqGkHtgV\\/H\\/\\/\\/gADAP\\/Z\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"mJpXEHKcSkvFyQ==\",\"senderTimestamp\":\"1770731157\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qnY0RWSbb\\/vZqfANLygswfL5UfPqckKL863\\/KFdK49w=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771009992,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:13:13'),
(11344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Eudes Lima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:13:14'),
(11345, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:13:14'),
(11346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"556194250674@s.whatsapp.net\",\"pushName\":\"Lima0674 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:13:13.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:13:14'),
(11347, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:14:32'),
(11348, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B348845BAED6A8467\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMPgt4fDt26nrHon8BDtXH5AIWYtncp-nkxNcZ_rk7wmRBG1kePVWnzNMvZVkulskM0PmGqoxvNSdn9gT0KkFY5x9tWF2-ysj4xUfSzwA?ccb=9-4&oh=01_Q5Aa3wGp7a1IcUCRfZTMITY8g32taUav2SmHq8xlPSxtPChOxQ&oe=69B6E7C0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"uZ8x55sI9JGwVi37hDoTDn5FoFWYHf\\/2MSAbjo61u90=\",\"fileLength\":\"199312\",\"height\":900,\"width\":1600,\"mediaKey\":\"nXlYDIYLsjORCL9lx\\/ahOgjZoSXCtK2+0cKh1586\\/IY=\",\"fileEncSha256\":\"Lw7WzBKwQQxW63VC3fFVFhgYzDizedeegijTPwQ6Rw8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMPgt4fDt26nrHon8BDtXH5AIWYtncp-nkxNcZ_rk7wmRBG1kePVWnzNMvZVkulskM0PmGqoxvNSdn9gT0KkFY5x9tWF2-ysj4xUfSzwA?ccb=9-4&oh=01_Q5Aa3wGp7a1IcUCRfZTMITY8g32taUav2SmHq8xlPSxtPChOxQ&oe=69B6E7C0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771010068\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAQQDAQEBAAAAAAAAAAAAAAMGCAkCBAcFAQr\\/xABOEAACAQMCBAMEAwcNEQAAAAABAgMEBREGEgAHCCETIjEJFBVBIzJRGUKGlZbT1CY0R1JUWGGRlKPR0uQWFxgkREVIV2Jxc3aDkpOmxP\\/EABkBAAMBAQEAAAAAAAAAAAAAAAIDBAUAAf\\/EADQRAAECBAIGCAYDAQAAAAAAAAECAwAEESEFMRJBUaGx0RMUFVJhcYGRIiMyYsHwNEJUcv\\/aAAwDAQACEQMRAD8AiNV6V009Jp24XXX+ibZLqGmkq5I\\/iNbWSW1FLKi1i0tLL4cj7QVRSzAEbwmeJO9N3s7qbqH5N2Lmw3N1LALu9XGtvaytVeCIamWHIk95TcG8Pd9UY3Y74yYjVuo4ZNrxW62s7wRRSD4dHEq7VUDbtY9\\/L3fAZu5buzcWv9Fl+s9H0daA+OTU9vo7hX3OJ6g3oWmKmEdbVzFzNvVyMQEFI9xO7zAR+Iy781OuoGmF6+6OUYjUhKiyk0A+4845L9yBo\\/3wMH5NH9M4D7IOkPr1Awfk0f0zicNr0HorUlvqjS6jvdSrXOWtna3a1uMojmkj7IJEnUxxmKRHFOMRIXVlX6rHeuelG0zTT6g0nbbzfLskawRUFVqOpEEiu0KuxE7vEpVYw27YW7SYOZX3RoxCZWsJChfaEj3JFAPEmKjhkqE1KT7q5xBD7kFSA5HUFBn\\/AJaP6Zx9f2QtNIQX6hIWIAUE6bJ7AYA\\/Xn2cWA3Opp7fJCGqbfGhkHjmrrxA0cZfaGUbG3HPYAlQT2zx63wyD9vJ\\/GP6OB7Sme9uHKO7Mlu7vVziuo+yMj+jH+ETH9CNsf6nW8g3FsD\\/ABzsNxJ\\/3knhL7kHR\\/vgaf8AJs\\/pnFhtZSyw1dLFT0jywTMRPMZQvgj5HbjzZPb1GMg9xnCNiIu9DFU1dP7lUSQwzPSCrjmkg3xq22QplNwYsuVZlIXIY57AnFn1lQCsjT6QNQNqi+eYqK1GYMEcKlwBVOf3Hy229YgRF7KW5wSyzwdTs8ck4qBK62SQNIKhNk4Yit7+InlfP1h2ORwjUeyWWsdHreoSnm2en6nCuB8x2rMd\\/mcZ7Diw74TT\\/t5P4x\\/Rw2rXVX+eG6y6g01FZPc7jPT0Pj3WORKyjR0EdUXRD4O8MxERBYEAE9+xpxOZHwpVn4DlCjhkoCAUHXrV63rb8xCKr9k5p6qepdOblshNRN4qlbJUMYhlzsXdXnI8692y30a9+7bvj+yV0pKrl+b9PE53bPAtEiouSSMh6ticZA+sOwHzyTPigtdTIkpucEVO4lYRiCpMwaP71mLRptY98qAQPtPCV7oqmhtk1VZ7dJcqtCojpjULCHywBJcqcAAlvQk4wASQOCbxGZs2lQ2XCd5I3k+cc9h8o2lTq0mgqTQqPjYA18gBXUIrTvfsq6WxVa0k\\/PZqsuglDwaeVFAJI24NS3ft65+Y4OJ364Gy8IgVlxCBhiMjzt647cHAdozItpbhyg+zZU30d55xRdUV+l6uzSLJUVsFyQRCMR0TOkoWCNCryPVHaN6se0Z+0bQRGln3SdzC1Py86JuW1w0jQUlZX3C7XGgEVRC0u5WraxsIquhZyUAAz3JwASRxU5UVk9XIJaiZ5HWNIgXcsQqKFUZJ9AqgAegAAGAOLj+gHT1p1P0aaIobtp+23gRyXeaCnr4w0XjCvqgpJKPt9cFtpIBPr6GtDjTDiHHk6SQbjbaCCVKBCTQxg3WTrEQsdtq8UTFVX4I+0xZ7MW98yGx97gj\\/AGvnxq1nWfryOkjehp7LLUlYzJHLaJI41Yht4DirYkAhMEqN25shdo3d7sfK3TNxk33Xk7omjphK8TPEm+QFMqxEctFFkb1IVs4ZCHBIIB948luVB9eXmnfxVT\\/1ONc4vgdf4nCPAxMa18YimetfmxGMLZtLgHJ\\/Wc\\/2\\/wDG+3hNut7m0v8AmfS38jn\\/AD3Er\\/7ynKf\\/AFd6c\\/FVP\\/U48Os5PaT94hFr5PaEqaV3i8SWoCQSLGVYyMEWkcFg2wBdwDBmJZdoDd2xghylOEMDTqc1RGodavOWrhqJIdO6blipYxNO8dDUkRJvVQ7ETeUb3Rcn5so9SONZuujm8PSzaV\\/kc\\/5\\/iV9JyS5ZyPUCv5X6TiVZAKcxUEEhkj2KSzgwrsbeZF2gsCqq2QWKqueRnKE+vLfTX4ppv6nCji2D\\/wCWHpSoZmIwaR61NfXu8rRaou+jNNW8Rs71stmrqo7h9VFjhlJLEn5lQAGOc4Vnq3VPag4c899GbgCAf7hbv6H\\/AK\\/8HHWrzyk5FafoWut80To630MJ+nqqu3UkUUQPoWdkAXvgdz8+GSli5EVdNbIrdpfkvU3O4LJIKVbxSbHjVmXfC4pC0oyjg+RQCjDJwcRP4jhSlaQbKBs+CnncHjFjUs86nTQhRA1gE+OzZDZPVZbB+z3owfgHd\\/z\\/ABgerC1j9n3RQ\\/AK7\\/n+OmXrQfTPp+0TX276a0PDQwBi8ot1I+SMZChUJZvMvlAJ7jt3HHLNSa76SbdHSz2HRGjrlFKGMjVFjkptvZSm3FC4cEEknIx2xnPZDE7hk3dgEjbVumVc9GmUQzmJSOGqCJ1wNqN6KKQaZVob0qD7Q+\\/jlVqex6e1JXSUz1N1stJWzNSo6ws8qb2MYfzBcscBu+MZ78HCCam0Zqajo6zQlXTyWemp1paeOGEwiBUztj8JlUxgIUIBUeUqQMEHg4y1kFRKcoJDqHkhxogpNwRcU84o4S0T1tiavoqWeSeikJqkSKRjHTmNWSVtsWxVyH8zSEnI8oALNb\\/0CUV7uXRFpSl02Y1ub\\/E\\/dmerFMEb4rNlvEME4UgZIzC4JAGB9YUwtKWOcY7AdgB6Di7H2bCU8\\/R7oqGq2mKT4ujq+NrA3KoBBz2IIz24tmx8uFMkhVRn6Hcaj3BESp9wpvsk\\/wDK\\/wDTwlUWe21cYiq6YTIrpKFkZmAdGDI2CfVWVWB+RAI7jhTdTj\\/LP5wcG+m\\/dv8AODjOvFMfHt8LbTHLNEyur7lkJzhgcYbIwcYPbOCcYODwxL5zis+lLtPYq+01VRJTCIh4q63RDDRI2Ns1Wj\\/fHuUX+AEeYv0SUwIPvg7fbIOGTqTTdRX1sFdbY6qoMwQVIOsbjbkjUKq5jigYoTgHIwmSMkksSKZUthfzUaQ2V0d8RT3WujHUykKr\\/YEinprrSPMg6hdFmVIrhTS21HO1Jau7Wra7\\/JBsq2JbGT6einjCfqH0qkrLSWWtrYgcCaC7WjY3243VqnscjuB3B4cFi05Fbi808teku8bVfVVfWIVA7H6aTAOScjGOw7n5KV+k7TcquStqK+9JJKQWWn1PXwRjAx2SOoVV9PkB9vFXSygVXobbNMxBTGC2KLb0v+VU4\\/iPJodX2nm5YrvaabScE4gRR7neaihqKWpkZJDGr+7yVAVd0YyWQ47FVfBAyn5OaXt9spzp3SelY7tQxpHTVnwWjp5cBsv51gdU3gybtsePO2Auchw2KzW2wyMaatr38Z1Le+3mprcbVfG3x5X2fW77cZ7ZzgY933ul\\/dMX\\/eOM+ZS06slKABsz3mNuQmp5lgIdcoo1rokhJ9PKxhsroWyVVuoLbqGw2OvQBfeIpbdDIkknh+Zj5FU+ZQchFzgdh2A4Zc6jkdRczJeVs2lLlPX091p7G9ZT6Et01G1wqoqarjpvGWjKgxUheVyduyKSRmLHwyklZKmnknp0jnjZi5wAwJ+o3ET9UaWF75xQc29S9M5uWtLUaeWl9+5mxPFRGMxeE0VG7mGIb0jYbYwDI3ifXO7idpltgaLSQkeAA4RnYpNSbSkuTySomwOgpeV6VCVUzqK0remuJA0ekbDoqjgsun7ZR0cIiR5mpqOCm94mwFaaRIESPewUZKqB2AAAAAON2aquNdR26tu9r+G11RQwy1VF4yze7TMMvF4i9n2sSu4djjI4OHRc2EJSAgUGoUpu1R+fy\\/aHFPBQQlbRTOsEbNLQ1HvDT74YpAZcTuqNhxlQE2uZEYBkZUm105dbtj6e+Sdm5PSaUp9Rtb4Zw1fT3qqoAwq5WqHU4pGeN4jM0ZKFgWjLIxBU8HBxpqPSXV++0ZRfcFQDwjoU\\/tb1p6weF0\\/tUCSFC0kerj4ansdm1qMEMN7AkLg7D3IC5Xqva2x07KIeQ0VUGVGJi1WwCllUlTvoV7qSVOO2VOCRgk4OFFhvZBCae28IUrva009ISIOSNLWYleMGDVUoyqhSH89AvlbcQPvvKcgeUnZrvavW6kWqMHKa11pp5Zo4xBqiqBqVSRFWSPxLauFkDs679rBYn3BGKKxwcD1VBAubb\\/3wpB9bdN45zR+0vgoNZ1OsByv1bVCd3dbVU8w5JLbEzEZKQGi+XfarEqu7sBhcO37r0FJI6ez5jk51cT\\/8fBwcVOJD5BcvQU9IBL7iBQGMT7X\\/AB6dPGfwt\\/sXGLe2C2\\/6O\\/8A7b\\/YuDg48Eq0dXGGdYd2xpze1vFZURml6eo4qpmRFlk1gVU4yFDn3RRtG9vUgdzn58b9B7Vq6XCihuidPaVtU87Ufu1JrdlmZghfcKQUxfbtJ+kwRle5BCjg4OD6oz3d5gw+4dcaV39rXA8sEk3T3JueBWwurguMk9u9EeDg4OGCTZp9O8x4X3Nsf\\/\\/Z\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010071,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:14:32'),
(11349, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010072425,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:14:32'),
(11350, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:14:32'),
(11351, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:14:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010072425,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:14:34'),
(11353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:14:34'),
(11354, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010072953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:14:34'),
(11355, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010072953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:14:34'),
(11356, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B348845BAED6A8467\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMPgt4fDt26nrHon8BDtXH5AIWYtncp-nkxNcZ_rk7wmRBG1kePVWnzNMvZVkulskM0PmGqoxvNSdn9gT0KkFY5x9tWF2-ysj4xUfSzwA?ccb=9-4&oh=01_Q5Aa3wGp7a1IcUCRfZTMITY8g32taUav2SmHq8xlPSxtPChOxQ&oe=69B6E7C0&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"uZ8x55sI9JGwVi37hDoTDn5FoFWYHf\\/2MSAbjo61u90=\",\"fileLength\":\"199312\",\"height\":900,\"width\":1600,\"mediaKey\":\"nXlYDIYLsjORCL9lx\\/ahOgjZoSXCtK2+0cKh1586\\/IY=\",\"fileEncSha256\":\"Lw7WzBKwQQxW63VC3fFVFhgYzDizedeegijTPwQ6Rw8=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQMPgt4fDt26nrHon8BDtXH5AIWYtncp-nkxNcZ_rk7wmRBG1kePVWnzNMvZVkulskM0PmGqoxvNSdn9gT0KkFY5x9tWF2-ysj4xUfSzwA?ccb=9-4&oh=01_Q5Aa3wGp7a1IcUCRfZTMITY8g32taUav2SmHq8xlPSxtPChOxQ&oe=69B6E7C0&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771010068\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAQQDAQEBAAAAAAAAAAAAAAMGCAkCBAcFAQr\\/xABOEAACAQMCBAMEAwcNEQAAAAABAgMEBREGEgAHCCETIjEJFBVBIzJRGUKGlZbT1CY0R1JUWGGRlKPR0uQWFxgkREVIV2Jxc3aDkpOmxP\\/EABkBAAMBAQEAAAAAAAAAAAAAAAIDBAUAAf\\/EADQRAAECBAIGCAYDAQAAAAAAAAECAwAEESEFMRJBUaGx0RMUFVJhcYGRIiMyYsHwNEJUcv\\/aAAwDAQACEQMRAD8AiNV6V009Jp24XXX+ibZLqGmkq5I\\/iNbWSW1FLKi1i0tLL4cj7QVRSzAEbwmeJO9N3s7qbqH5N2Lmw3N1LALu9XGtvaytVeCIamWHIk95TcG8Pd9UY3Y74yYjVuo4ZNrxW62s7wRRSD4dHEq7VUDbtY9\\/L3fAZu5buzcWv9Fl+s9H0daA+OTU9vo7hX3OJ6g3oWmKmEdbVzFzNvVyMQEFI9xO7zAR+Iy781OuoGmF6+6OUYjUhKiyk0A+4845L9yBo\\/3wMH5NH9M4D7IOkPr1Awfk0f0zicNr0HorUlvqjS6jvdSrXOWtna3a1uMojmkj7IJEnUxxmKRHFOMRIXVlX6rHeuelG0zTT6g0nbbzfLskawRUFVqOpEEiu0KuxE7vEpVYw27YW7SYOZX3RoxCZWsJChfaEj3JFAPEmKjhkqE1KT7q5xBD7kFSA5HUFBn\\/AJaP6Zx9f2QtNIQX6hIWIAUE6bJ7AYA\\/Xn2cWA3Opp7fJCGqbfGhkHjmrrxA0cZfaGUbG3HPYAlQT2zx63wyD9vJ\\/GP6OB7Sme9uHKO7Mlu7vVziuo+yMj+jH+ETH9CNsf6nW8g3FsD\\/ABzsNxJ\\/3knhL7kHR\\/vgaf8AJs\\/pnFhtZSyw1dLFT0jywTMRPMZQvgj5HbjzZPb1GMg9xnCNiIu9DFU1dP7lUSQwzPSCrjmkg3xq22QplNwYsuVZlIXIY57AnFn1lQCsjT6QNQNqi+eYqK1GYMEcKlwBVOf3Hy229YgRF7KW5wSyzwdTs8ck4qBK62SQNIKhNk4Yit7+InlfP1h2ORwjUeyWWsdHreoSnm2en6nCuB8x2rMd\\/mcZ7Diw74TT\\/t5P4x\\/Rw2rXVX+eG6y6g01FZPc7jPT0Pj3WORKyjR0EdUXRD4O8MxERBYEAE9+xpxOZHwpVn4DlCjhkoCAUHXrV63rb8xCKr9k5p6qepdOblshNRN4qlbJUMYhlzsXdXnI8692y30a9+7bvj+yV0pKrl+b9PE53bPAtEiouSSMh6ticZA+sOwHzyTPigtdTIkpucEVO4lYRiCpMwaP71mLRptY98qAQPtPCV7oqmhtk1VZ7dJcqtCojpjULCHywBJcqcAAlvQk4wASQOCbxGZs2lQ2XCd5I3k+cc9h8o2lTq0mgqTQqPjYA18gBXUIrTvfsq6WxVa0k\\/PZqsuglDwaeVFAJI24NS3ft65+Y4OJ364Gy8IgVlxCBhiMjzt647cHAdozItpbhyg+zZU30d55xRdUV+l6uzSLJUVsFyQRCMR0TOkoWCNCryPVHaN6se0Z+0bQRGln3SdzC1Py86JuW1w0jQUlZX3C7XGgEVRC0u5WraxsIquhZyUAAz3JwASRxU5UVk9XIJaiZ5HWNIgXcsQqKFUZJ9AqgAegAAGAOLj+gHT1p1P0aaIobtp+23gRyXeaCnr4w0XjCvqgpJKPt9cFtpIBPr6GtDjTDiHHk6SQbjbaCCVKBCTQxg3WTrEQsdtq8UTFVX4I+0xZ7MW98yGx97gj\\/AGvnxq1nWfryOkjehp7LLUlYzJHLaJI41Yht4DirYkAhMEqN25shdo3d7sfK3TNxk33Xk7omjphK8TPEm+QFMqxEctFFkb1IVs4ZCHBIIB948luVB9eXmnfxVT\\/1ONc4vgdf4nCPAxMa18YimetfmxGMLZtLgHJ\\/Wc\\/2\\/wDG+3hNut7m0v8AmfS38jn\\/AD3Er\\/7ynKf\\/AFd6c\\/FVP\\/U48Os5PaT94hFr5PaEqaV3i8SWoCQSLGVYyMEWkcFg2wBdwDBmJZdoDd2xghylOEMDTqc1RGodavOWrhqJIdO6blipYxNO8dDUkRJvVQ7ETeUb3Rcn5so9SONZuujm8PSzaV\\/kc\\/5\\/iV9JyS5ZyPUCv5X6TiVZAKcxUEEhkj2KSzgwrsbeZF2gsCqq2QWKqueRnKE+vLfTX4ppv6nCji2D\\/wCWHpSoZmIwaR61NfXu8rRaou+jNNW8Rs71stmrqo7h9VFjhlJLEn5lQAGOc4Vnq3VPag4c899GbgCAf7hbv6H\\/AK\\/8HHWrzyk5FafoWut80To630MJ+nqqu3UkUUQPoWdkAXvgdz8+GSli5EVdNbIrdpfkvU3O4LJIKVbxSbHjVmXfC4pC0oyjg+RQCjDJwcRP4jhSlaQbKBs+CnncHjFjUs86nTQhRA1gE+OzZDZPVZbB+z3owfgHd\\/z\\/ABgerC1j9n3RQ\\/AK7\\/n+OmXrQfTPp+0TX276a0PDQwBi8ot1I+SMZChUJZvMvlAJ7jt3HHLNSa76SbdHSz2HRGjrlFKGMjVFjkptvZSm3FC4cEEknIx2xnPZDE7hk3dgEjbVumVc9GmUQzmJSOGqCJ1wNqN6KKQaZVob0qD7Q+\\/jlVqex6e1JXSUz1N1stJWzNSo6ws8qb2MYfzBcscBu+MZ78HCCam0Zqajo6zQlXTyWemp1paeOGEwiBUztj8JlUxgIUIBUeUqQMEHg4y1kFRKcoJDqHkhxogpNwRcU84o4S0T1tiavoqWeSeikJqkSKRjHTmNWSVtsWxVyH8zSEnI8oALNb\\/0CUV7uXRFpSl02Y1ub\\/E\\/dmerFMEb4rNlvEME4UgZIzC4JAGB9YUwtKWOcY7AdgB6Di7H2bCU8\\/R7oqGq2mKT4ujq+NrA3KoBBz2IIz24tmx8uFMkhVRn6Hcaj3BESp9wpvsk\\/wDK\\/wDTwlUWe21cYiq6YTIrpKFkZmAdGDI2CfVWVWB+RAI7jhTdTj\\/LP5wcG+m\\/dv8AODjOvFMfHt8LbTHLNEyur7lkJzhgcYbIwcYPbOCcYODwxL5zis+lLtPYq+01VRJTCIh4q63RDDRI2Ns1Wj\\/fHuUX+AEeYv0SUwIPvg7fbIOGTqTTdRX1sFdbY6qoMwQVIOsbjbkjUKq5jigYoTgHIwmSMkksSKZUthfzUaQ2V0d8RT3WujHUykKr\\/YEinprrSPMg6hdFmVIrhTS21HO1Jau7Wra7\\/JBsq2JbGT6einjCfqH0qkrLSWWtrYgcCaC7WjY3243VqnscjuB3B4cFi05Fbi808teku8bVfVVfWIVA7H6aTAOScjGOw7n5KV+k7TcquStqK+9JJKQWWn1PXwRjAx2SOoVV9PkB9vFXSygVXobbNMxBTGC2KLb0v+VU4\\/iPJodX2nm5YrvaabScE4gRR7neaihqKWpkZJDGr+7yVAVd0YyWQ47FVfBAyn5OaXt9spzp3SelY7tQxpHTVnwWjp5cBsv51gdU3gybtsePO2Auchw2KzW2wyMaatr38Z1Le+3mprcbVfG3x5X2fW77cZ7ZzgY933ul\\/dMX\\/eOM+ZS06slKABsz3mNuQmp5lgIdcoo1rokhJ9PKxhsroWyVVuoLbqGw2OvQBfeIpbdDIkknh+Zj5FU+ZQchFzgdh2A4Zc6jkdRczJeVs2lLlPX091p7G9ZT6Et01G1wqoqarjpvGWjKgxUheVyduyKSRmLHwyklZKmnknp0jnjZi5wAwJ+o3ET9UaWF75xQc29S9M5uWtLUaeWl9+5mxPFRGMxeE0VG7mGIb0jYbYwDI3ifXO7idpltgaLSQkeAA4RnYpNSbSkuTySomwOgpeV6VCVUzqK0remuJA0ekbDoqjgsun7ZR0cIiR5mpqOCm94mwFaaRIESPewUZKqB2AAAAAON2aquNdR26tu9r+G11RQwy1VF4yze7TMMvF4i9n2sSu4djjI4OHRc2EJSAgUGoUpu1R+fy\\/aHFPBQQlbRTOsEbNLQ1HvDT74YpAZcTuqNhxlQE2uZEYBkZUm105dbtj6e+Sdm5PSaUp9Rtb4Zw1fT3qqoAwq5WqHU4pGeN4jM0ZKFgWjLIxBU8HBxpqPSXV++0ZRfcFQDwjoU\\/tb1p6weF0\\/tUCSFC0kerj4ansdm1qMEMN7AkLg7D3IC5Xqva2x07KIeQ0VUGVGJi1WwCllUlTvoV7qSVOO2VOCRgk4OFFhvZBCae28IUrva009ISIOSNLWYleMGDVUoyqhSH89AvlbcQPvvKcgeUnZrvavW6kWqMHKa11pp5Zo4xBqiqBqVSRFWSPxLauFkDs679rBYn3BGKKxwcD1VBAubb\\/3wpB9bdN45zR+0vgoNZ1OsByv1bVCd3dbVU8w5JLbEzEZKQGi+XfarEqu7sBhcO37r0FJI6ez5jk51cT\\/8fBwcVOJD5BcvQU9IBL7iBQGMT7X\\/AB6dPGfwt\\/sXGLe2C2\\/6O\\/8A7b\\/YuDg48Eq0dXGGdYd2xpze1vFZURml6eo4qpmRFlk1gVU4yFDn3RRtG9vUgdzn58b9B7Vq6XCihuidPaVtU87Ufu1JrdlmZghfcKQUxfbtJ+kwRle5BCjg4OD6oz3d5gw+4dcaV39rXA8sEk3T3JueBWwurguMk9u9EeDg4OGCTZp9O8x4X3Nsf\\/\\/Z\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010071,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:32.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:14:35'),
(11357, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:14:36'),
(11358, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5CF8C80532ADB11BFCE4FF600B7938C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635212222_2001150980451554_4214903995745602242_n.enc?ccb=11-4&oh=01_Q5Aa3wFf1aV_AOxm7jgSMaLunq_st9x-PtT2aN3a7ZpF9m0uaw&oe=69B6EF80&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"iOrr3fw6s2mqcxgd4IFnRNhaBthZJsuSWLum3JRscHE=\",\"fileLength\":\"99958\",\"height\":1599,\"width\":899,\"mediaKey\":\"EEGR7J9ha3gPCqbAMhMHcgmesvE0HB6X3DckXKQkOS8=\",\"fileEncSha256\":\"WqyqYpAy0xKCcrpZFubTRRpth7vl6rg3bLdQd4LF16U=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635212222_2001150980451554_4214903995745602242_n.enc?ccb=11-4&oh=01_Q5Aa3wFf1aV_AOxm7jgSMaLunq_st9x-PtT2aN3a7ZpF9m0uaw&oe=69B6EF80&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010075\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAwQFAQIGAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPGd9Dli5VCCvKCpFSk1E6NZ1CEzqmDZmmWpy3PRYaXbl6UU899pYwH\\/xAAmEAACAgECBQQDAAAAAAAAAAABAgADEQRREyIxQVISFCFxEDIz\\/9oACAEBAAE\\/ANArKWBl\\/wDaz7lTCvSjcy75WisHqYNPXgcoiIcZyJdoLi5Ij08iLnoJRUTqhso\\/DXV0DqTBq++IdQfESl1UuS3yZxjLcYBRWI3gGRtCV9Oe8J5hOJXvLKbXUc+AISc4i0Wt0WV6MD957OuOwxgwaVMFu8KHOQe0sYhgVbOJ7mzaLfkmV5IE9M4S+M4Y8ZRUHudT0WUHJ+oJmZM\\/\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAAEQAhESIEH\\/2gAIAQIBAT8AOwkhwqi5lp\\/\\/xAAbEQEAAgIDAAAAAAAAAAAAAAABABACMRESUf\\/aAAgBAwEBPwC8l0QpPWATrN8t\\/wD\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"uaOoRdgTMWPjlWaQAD+IEaYYb35a6T37e\\/HPKMlV3KWZXDqg4Sl3kg==\",\"scanLengths\":[14474,35522,18372,31590],\"midQualityFileSha256\":\"KIEKTJiXdq5crT09ElDvmIOK0YUqWz4Us+m\\/RSDqKds=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010076,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:14:36'),
(11359, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:14:36'),
(11360, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5CF8C80532ADB11BFCE4FF600B7938C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635212222_2001150980451554_4214903995745602242_n.enc?ccb=11-4&oh=01_Q5Aa3wFf1aV_AOxm7jgSMaLunq_st9x-PtT2aN3a7ZpF9m0uaw&oe=69B6EF80&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"iOrr3fw6s2mqcxgd4IFnRNhaBthZJsuSWLum3JRscHE=\",\"fileLength\":\"99958\",\"height\":1599,\"width\":899,\"mediaKey\":\"EEGR7J9ha3gPCqbAMhMHcgmesvE0HB6X3DckXKQkOS8=\",\"fileEncSha256\":\"WqyqYpAy0xKCcrpZFubTRRpth7vl6rg3bLdQd4LF16U=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635212222_2001150980451554_4214903995745602242_n.enc?ccb=11-4&oh=01_Q5Aa3wFf1aV_AOxm7jgSMaLunq_st9x-PtT2aN3a7ZpF9m0uaw&oe=69B6EF80&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010075\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAwQFAQIGAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPGd9Dli5VCCvKCpFSk1E6NZ1CEzqmDZmmWpy3PRYaXbl6UU899pYwH\\/xAAmEAACAgECBQQDAAAAAAAAAAABAgADEQRREyIxQVISFCFxEDIz\\/9oACAEBAAE\\/ANArKWBl\\/wDaz7lTCvSjcy75WisHqYNPXgcoiIcZyJdoLi5Ij08iLnoJRUTqhso\\/DXV0DqTBq++IdQfESl1UuS3yZxjLcYBRWI3gGRtCV9Oe8J5hOJXvLKbXUc+AISc4i0Wt0WV6MD957OuOwxgwaVMFu8KHOQe0sYhgVbOJ7mzaLfkmV5IE9M4S+M4Y8ZRUHudT0WUHJ+oJmZM\\/\\/8QAGxEAAgEFAAAAAAAAAAAAAAAAAAEQAhESIEH\\/2gAIAQIBAT8AOwkhwqi5lp\\/\\/xAAbEQEAAgIDAAAAAAAAAAAAAAABABACMRESUf\\/aAAgBAwEBPwC8l0QpPWATrN8t\\/wD\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"uaOoRdgTMWPjlWaQAD+IEaYYb35a6T37e\\/HPKMlV3KWZXDqg4Sl3kg==\",\"scanLengths\":[14474,35522,18372,31590],\"midQualityFileSha256\":\"KIEKTJiXdq5crT09ElDvmIOK0YUqWz4Us+m\\/RSDqKds=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010076,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:14:36'),
(11361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CF8C80532ADB11BFCE4FF600B7938C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010076742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:14:36'),
(11362, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:14:37'),
(11363, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CF8C80532ADB11BFCE4FF600B7938C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010076742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:14:37'),
(11364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:14:36.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:14:37'),
(11365, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:08'),
(11366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:08'),
(11367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:08'),
(11368, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:08'),
(11369, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:08'),
(11370, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"BFoP\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:09'),
(11371, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"mhJd\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:09'),
(11372, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8A1C\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:09'),
(11373, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"i8o5\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:09'),
(11374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"2Vzt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:09'),
(11375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:10'),
(11376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:10'),
(11377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:10'),
(11378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:10'),
(11379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:10'),
(11380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"HdXF\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:11'),
(11381, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:11'),
(11382, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"zHyV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:11'),
(11383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:11'),
(11384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:11'),
(11385, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:08.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:12'),
(11386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:12'),
(11387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"mhJd\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:12'),
(11388, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:12'),
(11389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:12'),
(11390, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"i8o5\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:14'),
(11391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8A1C\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:14'),
(11392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"2Vzt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:14'),
(11393, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A56ADCD347E2131231875B993592B4D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636189452_754507434046217_5815674757869491410_n.enc?ccb=11-4&oh=01_Q5Aa3wE6EI7Ngp4Ny36vBuw9hLI3p8PJGvc3meKdUb_uA9s4Vw&oe=69B6E5F3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"wFZTDsDC\\/OIqrEFc01IXtWlw2SJjANC7ciUxWOv3oyw=\",\"fileLength\":\"2249335\",\"seconds\":11,\"mediaKey\":\"ml2ph\\/pCNg61b\\/ctozXjzl9qt4QT0HRGGi+yCpwjFtU=\",\"height\":850,\"width\":478,\"fileEncSha256\":\"d74uAaxaSxaqe3zg14EEZJR6MOxxFroNwcM52R6TXrw=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636189452_754507434046217_5815674757869491410_n.enc?ccb=11-4&oh=01_Q5Aa3wE6EI7Ngp4Ny36vBuw9hLI3p8PJGvc3meKdUb_uA9s4Vw&oe=69B6E5F3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010106\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAAAAwIEBQEGAQEBAQEBAAAAAAAAAAAAAAACAAEDBP\\/aAAwDAQACEAMQAAAAtrY3FDN2soqiSB02IV6fbz3WZzKvAc3HP6noGcg6y2TA851XenyRyChRbhegDS+uBSgK\\/8QAIRAAAgICAwACAwAAAAAAAAAAAQIAAxExBBIhEFEiI0H\\/2gAIAQEAAT8AwpjJgzi5Ctn7l+XueMMbEzmV0EnJjIqeLLqXVyw9Eckw201Eg7h56LpY\\/PdtCca1re3aW8dH14Zy1\\/bMD3M6+CUMVsx9zuwInLK5UzIG\\/YLOuhBZ+anXsdjsSxmJ35CYEdtKYnEuaGshfTHKoOolHF74dvBAAIPJYZRi24AwADA+CY5yYhZWBGxKLhcgP9mZYxEBn\\/\\/EABsRAAICAwEAAAAAAAAAAAAAAAABAhARICEx\\/9oACAECAQE\\/ACVJIaWKj4c1d\\/\\/EABsRAAMAAgMAAAAAAAAAAAAAAAABEQIQICEx\\/9oACAEDAQE\\/ADD3TbFaVmSjO9PKqcv\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"JM+TGx4V8wYdZGTD8RCGXvFPqEboKYzjR88UNRdbkxEi0HeTh7jV544bou0j5LoWui8qrIVqdR1s70uvT2AQz\\/806k9SUf9uxpVRtkxC+7pl3uOXHF5W2Uvl52zcjQwruuX69t2dYskrpuSk4Uu\\/yG8TxQ6EgTN8Gh30ukga+yhWjYANbq\\/OWsQbgPL5boFaufdu0lcgpLx4rJGxgcoZlkOB5\\/rbqR\\/Tt99BfK1dXovoWjY1YHLQ33vgy6VEQ9OYylAg1ZQJXmsokGVvuoj3XHIDq7+kXGp3R5kFdjtTpQZBAlzrHK03NqglPXyzHWNvQA5929YnG4G4cpnU8u3R1QwgAZTz7eX0rDT5dzazLt8Y7YJ6Uf\\/\\/zIaHTC5P3+\\/IPftDoRO+JP0JSl1\\/TbWlUfjEKEogsNWACWl\\/5WrFPEvXxOK\\/JOdbEq7+HV0uZ\\/Zuy96MzDCQdg0APJOTpiw=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771010108,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:14'),
(11394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:14'),
(11395, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:15'),
(11396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:15'),
(11397, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"BFoP\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:15'),
(11398, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:15'),
(11399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"zHyV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:15'),
(11400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:16'),
(11401, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A56ADCD347E2131231875B993592B4D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636189452_754507434046217_5815674757869491410_n.enc?ccb=11-4&oh=01_Q5Aa3wE6EI7Ngp4Ny36vBuw9hLI3p8PJGvc3meKdUb_uA9s4Vw&oe=69B6E5F3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"wFZTDsDC\\/OIqrEFc01IXtWlw2SJjANC7ciUxWOv3oyw=\",\"fileLength\":\"2249335\",\"seconds\":11,\"mediaKey\":\"ml2ph\\/pCNg61b\\/ctozXjzl9qt4QT0HRGGi+yCpwjFtU=\",\"height\":850,\"width\":478,\"fileEncSha256\":\"d74uAaxaSxaqe3zg14EEZJR6MOxxFroNwcM52R6TXrw=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636189452_754507434046217_5815674757869491410_n.enc?ccb=11-4&oh=01_Q5Aa3wE6EI7Ngp4Ny36vBuw9hLI3p8PJGvc3meKdUb_uA9s4Vw&oe=69B6E5F3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010106\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAAAAwIEBQEGAQEBAQEBAAAAAAAAAAAAAAACAAEDBP\\/aAAwDAQACEAMQAAAAtrY3FDN2soqiSB02IV6fbz3WZzKvAc3HP6noGcg6y2TA851XenyRyChRbhegDS+uBSgK\\/8QAIRAAAgICAwACAwAAAAAAAAAAAQIAAxExBBIhEFEiI0H\\/2gAIAQEAAT8AwpjJgzi5Ctn7l+XueMMbEzmV0EnJjIqeLLqXVyw9Eckw201Eg7h56LpY\\/PdtCca1re3aW8dH14Zy1\\/bMD3M6+CUMVsx9zuwInLK5UzIG\\/YLOuhBZ+anXsdjsSxmJ35CYEdtKYnEuaGshfTHKoOolHF74dvBAAIPJYZRi24AwADA+CY5yYhZWBGxKLhcgP9mZYxEBn\\/\\/EABsRAAICAwEAAAAAAAAAAAAAAAABAhARICEx\\/9oACAECAQE\\/ACVJIaWKj4c1d\\/\\/EABsRAAMAAgMAAAAAAAAAAAAAAAABEQIQICEx\\/9oACAEDAQE\\/ADD3TbFaVmSjO9PKqcv\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"JM+TGx4V8wYdZGTD8RCGXvFPqEboKYzjR88UNRdbkxEi0HeTh7jV544bou0j5LoWui8qrIVqdR1s70uvT2AQz\\/806k9SUf9uxpVRtkxC+7pl3uOXHF5W2Uvl52zcjQwruuX69t2dYskrpuSk4Uu\\/yG8TxQ6EgTN8Gh30ukga+yhWjYANbq\\/OWsQbgPL5boFaufdu0lcgpLx4rJGxgcoZlkOB5\\/rbqR\\/Tt99BfK1dXovoWjY1YHLQ33vgy6VEQ9OYylAg1ZQJXmsokGVvuoj3XHIDq7+kXGp3R5kFdjtTpQZBAlzrHK03NqglPXyzHWNvQA5929YnG4G4cpnU8u3R1QwgAZTz7eX0rDT5dzazLt8Y7YJ6Uf\\/\\/zIaHTC5P3+\\/IPftDoRO+JP0JSl1\\/TbWlUfjEKEogsNWACWl\\/5WrFPEvXxOK\\/JOdbEq7+HV0uZ\\/Zuy96MzDCQdg0APJOTpiw=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771010108,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:16'),
(11402, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:08.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:16'),
(11403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:16'),
(11404, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"HdXF\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:16'),
(11405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"k0SV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:17'),
(11406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:17'),
(11407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:17'),
(11408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:17'),
(11409, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3kPz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:17'),
(11410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:18'),
(11411, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:18'),
(11412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:18'),
(11413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:18'),
(11414, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:18'),
(11415, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:19'),
(11416, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:19'),
(11417, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:19'),
(11418, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"yOHH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:19');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:19'),
(11420, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:20'),
(11421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3kPz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:20'),
(11422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:20'),
(11423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:20'),
(11424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"k0SV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:20'),
(11425, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:21'),
(11426, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:21'),
(11427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"yOHH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:21'),
(11428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:21'),
(11429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:21'),
(11430, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:22'),
(11431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:22'),
(11432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:22'),
(11433, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:22'),
(11434, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bq9K\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:22'),
(11435, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"CK9g\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:23'),
(11436, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:23'),
(11437, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:23'),
(11438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:23'),
(11439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:23'),
(11440, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:24'),
(11441, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:24'),
(11442, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:24'),
(11443, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bq9K\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:24'),
(11444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ELHe\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:24'),
(11445, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"N4+l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:25'),
(11446, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:25'),
(11447, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:25'),
(11448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:25'),
(11449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:25'),
(11450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:26'),
(11451, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tQcc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:26'),
(11452, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:26'),
(11453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1Brp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:26'),
(11454, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:26'),
(11455, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"C3Yt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:27'),
(11456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"CK9g\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:27'),
(11457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3fng\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:27'),
(11458, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:27'),
(11459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:27'),
(11460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"zWuQ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:28'),
(11461, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JuSQ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:28'),
(11462, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:28'),
(11463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tQcc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:28'),
(11464, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:28'),
(11465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:29'),
(11466, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:29'),
(11467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"zWuQ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:29'),
(11468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1Brp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:29'),
(11469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:29'),
(11470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:30'),
(11471, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ELHe\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:30'),
(11472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"JuSQ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:30'),
(11473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:30'),
(11474, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"NCln\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:30'),
(11475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"9QrB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:31'),
(11476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"C3Yt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:31'),
(11477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:31'),
(11478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:31'),
(11479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:31'),
(11480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:32'),
(11481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"kwNN\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:32'),
(11482, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:32'),
(11483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:32'),
(11484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:32'),
(11485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:33'),
(11486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:33'),
(11487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5hQf\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:33'),
(11488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:33'),
(11489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:33'),
(11490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"kwNN\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:34'),
(11491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:34'),
(11492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:34'),
(11493, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:34'),
(11494, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:34'),
(11495, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010132519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:32.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:35'),
(11496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iJoh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:35'),
(11497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:35'),
(11498, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:35'),
(11499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:35'),
(11500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:37'),
(11501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:37'),
(11502, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:37'),
(11503, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:37'),
(11504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"N4+l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:37'),
(11505, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010132519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:32.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:38'),
(11506, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:38'),
(11507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:38'),
(11508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3fng\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:38'),
(11509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:38'),
(11510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:39'),
(11511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:39'),
(11512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A56410922DBA49CB11F7D5F16E904485\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010132535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:32.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:39'),
(11513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:39'),
(11514, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:39'),
(11515, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:41'),
(11516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"NCln\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:41'),
(11517, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eJLW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:41'),
(11518, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A56410922DBA49CB11F7D5F16E904485\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010132535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:32.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:41'),
(11519, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vePL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:41'),
(11520, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:09.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:43'),
(11521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:43'),
(11522, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11523, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:43'),
(11524, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:43'),
(11525, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:45'),
(11526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.708Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:45'),
(11527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eJLW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:45'),
(11528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"fjPO\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:45'),
(11529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:45'),
(11530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:46'),
(11531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:46'),
(11532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:46'),
(11533, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:46'),
(11534, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:46'),
(11535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:47'),
(11536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iJoh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:47'),
(11537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5hQf\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:47'),
(11538, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:47'),
(11539, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:47'),
(11540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:49'),
(11541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:49'),
(11542, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:49'),
(11543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"fjPO\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:49'),
(11544, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:07.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:50'),
(11545, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:54'),
(11546, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A51F161EC6560838E62D70CCF5C32D29\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635036274_1985646099023528_2975958737042262739_n.enc?ccb=11-4&oh=01_Q5Aa3wHZPk71dyGoo667QtDonMe87RO6FCIeXhCd66nO-fStkg&oe=69B6DA96&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9W2h6IRwGYBblhsXq\\/dFuhAJhZ\\/ABPOSAYF2VM6JIWk=\",\"fileLength\":\"233530\",\"height\":1599,\"width\":899,\"mediaKey\":\"fydVDSLbsBNITBiD76XRMSQwJM8Y74aWLnj4aC8TwEA=\",\"fileEncSha256\":\"8DlGnw28gi0UY2zuPAnPQZXSYISMOk5tz6wp2Vc1pYY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635036274_1985646099023528_2975958737042262739_n.enc?ccb=11-4&oh=01_Q5Aa3wHZPk71dyGoo667QtDonMe87RO6FCIeXhCd66nO-fStkg&oe=69B6DA96&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010153\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAADBAACBQEGAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAANMNs3LqWxLtqQUGi3Q6yVIt6Uno4OQYykVYR0mdkmVGi5LQXgMQzLQv\\/8QAJhAAAgIBAwQABwAAAAAAAAAAAQIAAxIRITEEEEFRFCIyM0JSYf\\/aAAgBAQABPwAqBGuSojIxba24YQgMJgf2l\\/2mMRWuBMsrdeJ0\\/UWKTrxPiknWMccBFsKYgepZahGw30m\\/gGfP6MtLWWHSMjEb8ian8Vi65rr5gVfQivxjFxYEliDDs20pOdi7bdn6ZeUOhlma7Ou38hdPDTowMS3Y25jWMco1IY8TpxgAo4m8y00HsRfpHannt\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAQESD\\/2gAIAQIBAT8AIR3f\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAABEw\\/9oACAEDAQE\\/AFXL\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"IhWE3PXZq\\/Qxt3VS6rlt9ndSxYcttPgPnon98oBfxUOjh57v2Fj2qw==\",\"scanLengths\":[14475,81190,58468,79397],\"midQualityFileSha256\":\"I9Ab7bZd\\/LzdqkV1xs9Rsi62X5dG3Z0dbWGjjC4MJ+8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010154,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:54'),
(11547, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:54'),
(11548, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A51F161EC6560838E62D70CCF5C32D29\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635036274_1985646099023528_2975958737042262739_n.enc?ccb=11-4&oh=01_Q5Aa3wHZPk71dyGoo667QtDonMe87RO6FCIeXhCd66nO-fStkg&oe=69B6DA96&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9W2h6IRwGYBblhsXq\\/dFuhAJhZ\\/ABPOSAYF2VM6JIWk=\",\"fileLength\":\"233530\",\"height\":1599,\"width\":899,\"mediaKey\":\"fydVDSLbsBNITBiD76XRMSQwJM8Y74aWLnj4aC8TwEA=\",\"fileEncSha256\":\"8DlGnw28gi0UY2zuPAnPQZXSYISMOk5tz6wp2Vc1pYY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635036274_1985646099023528_2975958737042262739_n.enc?ccb=11-4&oh=01_Q5Aa3wHZPk71dyGoo667QtDonMe87RO6FCIeXhCd66nO-fStkg&oe=69B6DA96&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010153\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAADBAACBQEGAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAANMNs3LqWxLtqQUGi3Q6yVIt6Uno4OQYykVYR0mdkmVGi5LQXgMQzLQv\\/8QAJhAAAgIBAwQABwAAAAAAAAAAAQIAAxIRITEEEEFRFCIyM0JSYf\\/aAAgBAQABPwAqBGuSojIxba24YQgMJgf2l\\/2mMRWuBMsrdeJ0\\/UWKTrxPiknWMccBFsKYgepZahGw30m\\/gGfP6MtLWWHSMjEb8ian8Vi65rr5gVfQivxjFxYEliDDs20pOdi7bdn6ZeUOhlma7Ou38hdPDTowMS3Y25jWMco1IY8TpxgAo4m8y00HsRfpHannt\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAQESD\\/2gAIAQIBAT8AIR3f\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAABEw\\/9oACAEDAQE\\/AFXL\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"IhWE3PXZq\\/Qxt3VS6rlt9ndSxYcttPgPnon98oBfxUOjh57v2Fj2qw==\",\"scanLengths\":[14475,81190,58468,79397],\"midQualityFileSha256\":\"I9Ab7bZd\\/LzdqkV1xs9Rsi62X5dG3Z0dbWGjjC4MJ+8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010154,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:54'),
(11549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:15:54'),
(11550, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51F161EC6560838E62D70CCF5C32D29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010154594,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:15:55'),
(11551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:15:55'),
(11552, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51F161EC6560838E62D70CCF5C32D29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010154594,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:15:54.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:15:55'),
(11553, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:03'),
(11554, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A54A9E12BB0EF95C4649192674B78EC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636271504_2132971397527395_6423080663442780141_n.enc?ccb=11-4&oh=01_Q5Aa3wEb9zVNt8qlkqVX4OKvTxyNB7X4xIXp_wNOE7HKHKmM8w&oe=69B6F030&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Agszbm3Ql\\/OGrm0ok4kEnTZaZepEStqr\\/EFGQ\\/lGSxs=\",\"fileLength\":\"144577\",\"height\":1599,\"width\":899,\"mediaKey\":\"TzOiYIwfMdJKNS2gJghJuirpYBVvuP3430UyciTfTxw=\",\"fileEncSha256\":\"5MPllHMrWM2kTzEmXKospQN0ZmAcnkL7Nf5PIlYBygU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636271504_2132971397527395_6423080663442780141_n.enc?ccb=11-4&oh=01_Q5Aa3wEb9zVNt8qlkqVX4OKvTxyNB7X4xIXp_wNOE7HKHKmM8w&oe=69B6F030&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010162\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAAAQIEBQMBAQEBAAAAAAAAAAAAAAAAAAEAAv\\/aAAwDAQACEAMQAAAA03yzMO0sa014QVfL71tXSqCIZXZwjQpxHVEY0Vy4mUtVVzJmX\\/\\/EACMQAAIBAwQCAwEAAAAAAAAAAAECAAMRIQQSMVEQEzJBUnH\\/2gAIAQEAAT8ACiAAQQ+GY\\/k2las7MdjYEXUVVX5ShrA52PNy9iaupsSw5MHBMJVVuRmEk5m9uzNY+6rbqb1FozT6EseozF3v9mMgcY+XQhplVvFHECrYYlSm6NkGB2U3Uz23FmEUhmH9l4jeykLx9IrZGI2lqrwbyjTqrUBZceNIxKmCGGWn\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAQAQERIgITH\\/2gAIAQIBAT8AAlQwGsuKxb\\/\\/xAAWEQADAAAAAAAAAAAAAAAAAAAQETD\\/2gAIAQMBAT8Akh\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"4Wnb6Bs7hetCKnTzQknE8jB3f7zlSowbqU5Y086ab7UewY6g5U\\/84g==\",\"scanLengths\":[13828,46800,33606,50343],\"midQualityFileSha256\":\"t9T5mS80dbSadEDFK2V57bWsPgfVy0\\/AZBUJFnTDVCg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010163,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:03'),
(11555, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:03'),
(11556, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A54A9E12BB0EF95C4649192674B78EC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636271504_2132971397527395_6423080663442780141_n.enc?ccb=11-4&oh=01_Q5Aa3wEb9zVNt8qlkqVX4OKvTxyNB7X4xIXp_wNOE7HKHKmM8w&oe=69B6F030&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Agszbm3Ql\\/OGrm0ok4kEnTZaZepEStqr\\/EFGQ\\/lGSxs=\",\"fileLength\":\"144577\",\"height\":1599,\"width\":899,\"mediaKey\":\"TzOiYIwfMdJKNS2gJghJuirpYBVvuP3430UyciTfTxw=\",\"fileEncSha256\":\"5MPllHMrWM2kTzEmXKospQN0ZmAcnkL7Nf5PIlYBygU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636271504_2132971397527395_6423080663442780141_n.enc?ccb=11-4&oh=01_Q5Aa3wEb9zVNt8qlkqVX4OKvTxyNB7X4xIXp_wNOE7HKHKmM8w&oe=69B6F030&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010162\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAAAQIEBQMBAQEBAAAAAAAAAAAAAAAAAAEAAv\\/aAAwDAQACEAMQAAAA03yzMO0sa014QVfL71tXSqCIZXZwjQpxHVEY0Vy4mUtVVzJmX\\/\\/EACMQAAIBAwQCAwEAAAAAAAAAAAECAAMRIQQSMVEQEzJBUnH\\/2gAIAQEAAT8ACiAAQQ+GY\\/k2las7MdjYEXUVVX5ShrA52PNy9iaupsSw5MHBMJVVuRmEk5m9uzNY+6rbqb1FozT6EseozF3v9mMgcY+XQhplVvFHECrYYlSm6NkGB2U3Uz23FmEUhmH9l4jeykLx9IrZGI2lqrwbyjTqrUBZceNIxKmCGGWn\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAQAQERIgITH\\/2gAIAQIBAT8AAlQwGsuKxb\\/\\/xAAWEQADAAAAAAAAAAAAAAAAAAAQETD\\/2gAIAQMBAT8Akh\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"4Wnb6Bs7hetCKnTzQknE8jB3f7zlSowbqU5Y086ab7UewY6g5U\\/84g==\",\"scanLengths\":[13828,46800,33606,50343],\"midQualityFileSha256\":\"t9T5mS80dbSadEDFK2V57bWsPgfVy0\\/AZBUJFnTDVCg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010163,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:03'),
(11557, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54A9E12BB0EF95C4649192674B78EC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010163931,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:04'),
(11558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:04'),
(11559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54A9E12BB0EF95C4649192674B78EC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010163931,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:04'),
(11560, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_6KI2aeasyHAdIpgmObLQ49EZZLTWQfLL8q07hQR4A&oe=699C78F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:03.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:04'),
(11561, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0344A55E598534B4D80\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"vou da um start pra te cobrar ai agr\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010171,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:11'),
(11562, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:11'),
(11563, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:11'),
(11564, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0344A55E598534B4D80\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"vou da um start pra te cobrar ai agr\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010171,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:11'),
(11565, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010171735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:11'),
(11566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:12'),
(11567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010171735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:12'),
(11568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010172370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:12.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:12'),
(11569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:11.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:12'),
(11570, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010172370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:12.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:12'),
(11571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:31.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:32'),
(11572, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04EC43B2BAE3A23A2B4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMqhnPal5doSUNqDjqF6O1SE22RiUZPZmSSbl13gDOIMBDj2NdoYkiTz_z4QzHov2OtbxYH1CrTG0tCTru3SmzfUoS6a13eRs3yphzo8g?ccb=9-4&oh=01_Q5Aa3wH2Za9HGBEieD7zhXTsn0cumRXTNH_9zrK3bTj1MeKHNQ&oe=69B6E618&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"QheaWXBFwsWO1e4iIGVd3s0LAJmSE57KFgz6kTe+osg=\",\"fileLength\":\"186483\",\"height\":900,\"width\":1600,\"mediaKey\":\"tan\\/0RlamiUJcv9EADIeCX017aFSSqcYOk5ZkS\\/WCfg=\",\"fileEncSha256\":\"q1yUZODwyjUuBv1eTEQSuJYbErWhg6U+c51+A1NXipU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMqhnPal5doSUNqDjqF6O1SE22RiUZPZmSSbl13gDOIMBDj2NdoYkiTz_z4QzHov2OtbxYH1CrTG0tCTru3SmzfUoS6a13eRs3yphzo8g?ccb=9-4&oh=01_Q5Aa3wH2Za9HGBEieD7zhXTsn0cumRXTNH_9zrK3bTj1MeKHNQ&oe=69B6E618&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771010188\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHQAAAQQDAQEAAAAAAAAAAAAAAAMEBQgCBgkHAf\\/EAEUQAAIBAgQDBQQFBg0FAAAAAAECAwQRAAUSIQYTMQcIIkFRFCNhcRUyM3KUFhckQpHTCRgmN1RVVnOBgoWTobTB0dLj\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAwQAAgUB\\/8QANREAAQIDAwoDBwUAAAAAAAAAAQACAwQREiFBBRMUMVGBobHR8GFxkQYiMkJiksFSU1Ry4f\\/aAAwDAQACEQMRAD8AovV5pks8WXVVVVZJSSZjE0zj6QnnamUXCiYRQPpZrCygkgHxAXx6Z2b9jtN2i8GZfxW2fCgFUZlWmaAy8sJKybNrW99N+g64r7NMpsUYEsiqwMKqBYDpbz267E736nFreyHKMzzvsQyKlyqoEMyzVT6jMYx9vKBeyNcXI22+YxtGfmHvFXgVxo3osluTZVooGn1d1SP8WSj\\/ALXJ+CP73H092akIt+Vyfgz+9xMP2c9oDtqOfwX2HhqZgP2BMY\\/m14+\\/r+H8VN\\/64azjv5LftHRV0GB+0fuPVRA7stIDccXJ+DP73CFN3c6fMRFInF1L7yn568+WliIjEgiCkPVAq17eA2bR47aPFiazzs07Q8wrebQ8QU8UPIp00mpmU60hRHOydCyk9d73O+Oymb1nCtBmEc2dcWR0NQJVRIpM2NOpdzpROXrCsTzAACDclfMLbKGU5kvILqAY2W38EfKXs\\/CEOE+UjCrhVwo40N1AauGq\\/wA1xB\\/M3lvu\\/wCVdZ7kaY\\/0H6g1FrD3+w1En5knDvL+7xl2YqWh4q0AKG8dGL2JI6CY2PhOxsbWPQjHcTLazKs4gNTlGdR10IKgyU1Ssqgsiuu63G6OjD4MD0IxUj+EIySsrm7Pno6mVTAc2JvM6g6hSDcLs3Q9enlheYytOwIRiMNsjANbU8EjJZBfn26RGBZjcRhttnkqGxdg2aQSyzw9pVZHJUCoErqkgaQVCaJ9RE2\\/MTwvf6w2NxhGo7vC1jq9bxik2jp+hlbDzG0tt\\/M2vsMb1+Tme\\/0sf7j\\/APjEVxRwZxbm2TCiyrM44KkVUcut5pFGgJICLhSerKenl8BhKV9o8pxYghugljTrNG0uv2d1WtNZEkIMIxIZtEagC6prrpeoar7v3D1U9S61NDCaibmqVSoYxC7+BS1Qbjxru1292u+7avjd3fhSVXL1iROdWjkGRUW5JFw8jE2uB9YbAedyW8nZTxvIqt9MSCW662GbyhTuL2UU4ttfzO5B3tYspuyTtJMrmDiWJIyx0K+YVDMB5AkRi5+Nh8sajcqzbAGg6vBp5iqyHy8MknMG\\/wCo9jckF7stKlxPxnI5JuDFRqoA9N3O+DHruS0dVl+TUFBXSiWppqWKGZwxYM6oAxudzcg7nfBiwyjMgfFwHRPDJ0s4VLeJ6qicua5VNQsrU6R1S6NJSlJDgRqLFmm2GoE7KfhYWUW47vBM\\/ZJkkgmNOAasnlhQLe0SDzB+f+GKWSTPKweR2YhVUEknYAADf0AAxc7u6R08vZBkftMCyqrVRAMeux9pkF7WPr1+eAxnEtvTjBevVIlIXVz3lDbgm3\\/YDCm3xwjS0tHToDSUkUKkEgJEE67nawt5YWwqjJN6imjmSnknjWWQFkRnAZgCASB1IBZR\\/mHrjp+j02XSV9RLXZ1OsXMqXjNLLIFFySsQSPU+xsqLqJsLAnfHMKSRY1DMGILBfCpY3JAGw8t9z0A3O2OnOWVFNSZzV5VlvDlZFEZ2lmqo54DTmSTXI7lBLzAS4sbxglmHUamEUUhl9VT5lE09Ma5FutxUU8sDeJFcWWRVPRgDYbMGU2ZWAqv38Xrop+AIqSJ5EkfM+bIVVgij2Xrd1IuL2sG36j1tsFCgKoAAFgB5Yqh37ZZI34FVKaWUO2ZBmQqAg\\/Rtzcg2+VziKKq9pNRuy6bCw07g+e9\\/lhtWSZgk1OtJGGRn98eWGstx6yLbqdwG6dPUsGzbbNDdKcaqIcvYFjaQ7axexHXTt0uMLyOyOmmneTUbFl0+AepuRt8r4iijKniJKavny\\/2GaR4FDalmp1D3AOwaUNsL9QOh+F3WVVVVWUYlqoDDIGZGUhBuDbokjgW6HxdQcaHxNDC\\/Fle7ZlQRMFjPKkocvdz7tdtcsokPr4gBbYbWvtXA8Kw5CgSphqAXJ5kUNPEh2AsFgZk2tpO\\/UHytgsZgZZpj0afz3cgyzzFdGDvlLaeNbVaU8r67sU\\/l+0f7xwYJftX+8cGKBXXO8Uck1CZ4IpGkhYmVVRjpjKghjZLAfW3LXNxsLXNu+wSeOm7H+Gqmbm6I56snlQSStvNOPqopPn1O3\\/GKaFwfToB0xdfu3\\/zO5H9+q\\/6mTDLjZvKGBVbSuczLPG75nWNEsmp4xkNUCy6baQdOwv4r2Jv522xJPn2XRwxzMteVkLBQuXVJYW63UR3XrtcC\\/liQJGPh3xwxGHA+o6LoaQo+DiLLZp44Y48xDSOFXVldUq3JtuxjAA+JNhjrVClDTSSS09JHE8pvIyRhS5uTuR13Zj8yfXHKTGUJpjWSU5TUyQRSFSqEDUXFwB4rnSbk7bC24awYjmkig79ArC64rojSd53sSrqKfMqXjCSSmppYoJpRldYFSSQOUU3i6kRSEfdOPBe9tx9wv2g5ZwZnPB9e+YUcVRmdLJKIHh0yBaRiLSBSbBlNwD1xWyGkijkkd3eUObqjxIAnXYWUHz8yemM2hGtGhlkhCm7LHGtn3HW6k+VtrdT8LUNMEENmc\\/aL25umqybVf7WqU8LO9Yq1IcxdBUxmpWBC0N11rGWazEfWsSGG5t4Tbe+M6kyjliJZzd11GMpsL731eXrbf0w2qc2yiirlhrKulp5pEUIZJFV2BYgAA72v0+N8OpQ0mjRNLFpcMdCjxAfqm4Ox+Fj8ccTS874mihbiuvd66gQ6Esj0eXNJflrbxSyiQ+viUbbDaxxtfBa0QyUewPC0XNY3hWnVb7eUBKarWDG+7XIAFgNT4kqadOLK+OXLaKQssYEr1OXpIDy1N9MsZk+HiJ2NwLWxtfBb0v0KPZaVYE5rWRDTsCLCzXpwEuy2Y+hJ6ixwxM19zv5Wd9lLSNLc1Tazb9Wqv434J\\/L9q\\/3jgxjKfev944MBCMqRZv2VSUSUscuZZchaKN9dJKlQXDxRyDXomcK2mRbrZSr60YBkZV9z7OuNcn7OeCMu4RGYUWaTUq8znoaiKP3x5rIwaEsGjMjRtpDKWjJVmUhiYMaFhrryFkumIoqAeSf1PeB5M6wx8J+0I0auZY6+yKxCkoQ0Ya41EGwI8JsTsSpVdvUdOyiHhyKqDKjExVzAKWVSVOuFd1JKm211NiRYkwY4YLDgoJmKMeSUru3anpCRBk1LWWleMGCtlF1UKQ\\/jgXwtqIH63hNwPCS+qu3GgoPa2hXLa8QSSxRJDWVK89Y3RFkj10i2WQOzqJCrBYnDBGKK5gxXRmEC83cfP\\/KK+lRCaqGh7xEtPJM0nDc1SJHJVZMwQCMXOy6YAbfeuduuPsveQZypXhN49JudOYr4txsbwn5beuDBggl4exTSYu3kg95e3Tgq\\/wDqX\\/ywlJ3l21qw4OdQt7qMxFm+d4b\\/ALLYMGCNlYRw5q2kRdqiqrtygzbMJJH4SQNUsAiyVNIVichVLh5aUkEhVuWawA8gBadyDtxrYMmibKeCIawPUtTJSxZnB7Vr0CQsKeOANoPiJcJp1agSNhgwYKZaE6lRz7wXYcV7C4tPxUru1c1Gyd5Ilyx4LsWJNvpLpv8A3WDBgxYScH9PErufibV\\/\\/9k=\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010191,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:31.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:32'),
(11573, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:31.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:32'),
(11574, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04EC43B2BAE3A23A2B4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMqhnPal5doSUNqDjqF6O1SE22RiUZPZmSSbl13gDOIMBDj2NdoYkiTz_z4QzHov2OtbxYH1CrTG0tCTru3SmzfUoS6a13eRs3yphzo8g?ccb=9-4&oh=01_Q5Aa3wH2Za9HGBEieD7zhXTsn0cumRXTNH_9zrK3bTj1MeKHNQ&oe=69B6E618&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"QheaWXBFwsWO1e4iIGVd3s0LAJmSE57KFgz6kTe+osg=\",\"fileLength\":\"186483\",\"height\":900,\"width\":1600,\"mediaKey\":\"tan\\/0RlamiUJcv9EADIeCX017aFSSqcYOk5ZkS\\/WCfg=\",\"fileEncSha256\":\"q1yUZODwyjUuBv1eTEQSuJYbErWhg6U+c51+A1NXipU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m239\\/AQMqhnPal5doSUNqDjqF6O1SE22RiUZPZmSSbl13gDOIMBDj2NdoYkiTz_z4QzHov2OtbxYH1CrTG0tCTru3SmzfUoS6a13eRs3yphzo8g?ccb=9-4&oh=01_Q5Aa3wH2Za9HGBEieD7zhXTsn0cumRXTNH_9zrK3bTj1MeKHNQ&oe=69B6E618&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771010188\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHQAAAQQDAQEAAAAAAAAAAAAAAAMEBQgCBgkHAf\\/EAEUQAAIBAgQDBQQFBg0FAAAAAAECAwQRAAUSIQYTMQcIIkFRFCNhcRUyM3KUFhckQpHTCRgmN1RVVnOBgoWTobTB0dLj\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAwQAAgUB\\/8QANREAAQIDAwoDBwUAAAAAAAAAAQACAwQREiFBBRMUMVGBobHR8GFxkQYiMkJiksFSU1Ry4f\\/aAAwDAQACEQMRAD8AovV5pks8WXVVVVZJSSZjE0zj6QnnamUXCiYRQPpZrCygkgHxAXx6Z2b9jtN2i8GZfxW2fCgFUZlWmaAy8sJKybNrW99N+g64r7NMpsUYEsiqwMKqBYDpbz267E736nFreyHKMzzvsQyKlyqoEMyzVT6jMYx9vKBeyNcXI22+YxtGfmHvFXgVxo3osluTZVooGn1d1SP8WSj\\/ALXJ+CP73H092akIt+Vyfgz+9xMP2c9oDtqOfwX2HhqZgP2BMY\\/m14+\\/r+H8VN\\/64azjv5LftHRV0GB+0fuPVRA7stIDccXJ+DP73CFN3c6fMRFInF1L7yn568+WliIjEgiCkPVAq17eA2bR47aPFiazzs07Q8wrebQ8QU8UPIp00mpmU60hRHOydCyk9d73O+Oymb1nCtBmEc2dcWR0NQJVRIpM2NOpdzpROXrCsTzAACDclfMLbKGU5kvILqAY2W38EfKXs\\/CEOE+UjCrhVwo40N1AauGq\\/wA1xB\\/M3lvu\\/wCVdZ7kaY\\/0H6g1FrD3+w1En5knDvL+7xl2YqWh4q0AKG8dGL2JI6CY2PhOxsbWPQjHcTLazKs4gNTlGdR10IKgyU1Ssqgsiuu63G6OjD4MD0IxUj+EIySsrm7Pno6mVTAc2JvM6g6hSDcLs3Q9enlheYytOwIRiMNsjANbU8EjJZBfn26RGBZjcRhttnkqGxdg2aQSyzw9pVZHJUCoErqkgaQVCaJ9RE2\\/MTwvf6w2NxhGo7vC1jq9bxik2jp+hlbDzG0tt\\/M2vsMb1+Tme\\/0sf7j\\/APjEVxRwZxbm2TCiyrM44KkVUcut5pFGgJICLhSerKenl8BhKV9o8pxYghugljTrNG0uv2d1WtNZEkIMIxIZtEagC6prrpeoar7v3D1U9S61NDCaibmqVSoYxC7+BS1Qbjxru1292u+7avjd3fhSVXL1iROdWjkGRUW5JFw8jE2uB9YbAedyW8nZTxvIqt9MSCW662GbyhTuL2UU4ttfzO5B3tYspuyTtJMrmDiWJIyx0K+YVDMB5AkRi5+Nh8sajcqzbAGg6vBp5iqyHy8MknMG\\/wCo9jckF7stKlxPxnI5JuDFRqoA9N3O+DHruS0dVl+TUFBXSiWppqWKGZwxYM6oAxudzcg7nfBiwyjMgfFwHRPDJ0s4VLeJ6qicua5VNQsrU6R1S6NJSlJDgRqLFmm2GoE7KfhYWUW47vBM\\/ZJkkgmNOAasnlhQLe0SDzB+f+GKWSTPKweR2YhVUEknYAADf0AAxc7u6R08vZBkftMCyqrVRAMeux9pkF7WPr1+eAxnEtvTjBevVIlIXVz3lDbgm3\\/YDCm3xwjS0tHToDSUkUKkEgJEE67nawt5YWwqjJN6imjmSnknjWWQFkRnAZgCASB1IBZR\\/mHrjp+j02XSV9RLXZ1OsXMqXjNLLIFFySsQSPU+xsqLqJsLAnfHMKSRY1DMGILBfCpY3JAGw8t9z0A3O2OnOWVFNSZzV5VlvDlZFEZ2lmqo54DTmSTXI7lBLzAS4sbxglmHUamEUUhl9VT5lE09Ma5FutxUU8sDeJFcWWRVPRgDYbMGU2ZWAqv38Xrop+AIqSJ5EkfM+bIVVgij2Xrd1IuL2sG36j1tsFCgKoAAFgB5Yqh37ZZI34FVKaWUO2ZBmQqAg\\/Rtzcg2+VziKKq9pNRuy6bCw07g+e9\\/lhtWSZgk1OtJGGRn98eWGstx6yLbqdwG6dPUsGzbbNDdKcaqIcvYFjaQ7axexHXTt0uMLyOyOmmneTUbFl0+AepuRt8r4iijKniJKavny\\/2GaR4FDalmp1D3AOwaUNsL9QOh+F3WVVVVWUYlqoDDIGZGUhBuDbokjgW6HxdQcaHxNDC\\/Fle7ZlQRMFjPKkocvdz7tdtcsokPr4gBbYbWvtXA8Kw5CgSphqAXJ5kUNPEh2AsFgZk2tpO\\/UHytgsZgZZpj0afz3cgyzzFdGDvlLaeNbVaU8r67sU\\/l+0f7xwYJftX+8cGKBXXO8Uck1CZ4IpGkhYmVVRjpjKghjZLAfW3LXNxsLXNu+wSeOm7H+Gqmbm6I56snlQSStvNOPqopPn1O3\\/GKaFwfToB0xdfu3\\/zO5H9+q\\/6mTDLjZvKGBVbSuczLPG75nWNEsmp4xkNUCy6baQdOwv4r2Jv522xJPn2XRwxzMteVkLBQuXVJYW63UR3XrtcC\\/liQJGPh3xwxGHA+o6LoaQo+DiLLZp44Y48xDSOFXVldUq3JtuxjAA+JNhjrVClDTSSS09JHE8pvIyRhS5uTuR13Zj8yfXHKTGUJpjWSU5TUyQRSFSqEDUXFwB4rnSbk7bC24awYjmkig79ArC64rojSd53sSrqKfMqXjCSSmppYoJpRldYFSSQOUU3i6kRSEfdOPBe9tx9wv2g5ZwZnPB9e+YUcVRmdLJKIHh0yBaRiLSBSbBlNwD1xWyGkijkkd3eUObqjxIAnXYWUHz8yemM2hGtGhlkhCm7LHGtn3HW6k+VtrdT8LUNMEENmc\\/aL25umqybVf7WqU8LO9Yq1IcxdBUxmpWBC0N11rGWazEfWsSGG5t4Tbe+M6kyjliJZzd11GMpsL731eXrbf0w2qc2yiirlhrKulp5pEUIZJFV2BYgAA72v0+N8OpQ0mjRNLFpcMdCjxAfqm4Ox+Fj8ccTS874mihbiuvd66gQ6Esj0eXNJflrbxSyiQ+viUbbDaxxtfBa0QyUewPC0XNY3hWnVb7eUBKarWDG+7XIAFgNT4kqadOLK+OXLaKQssYEr1OXpIDy1N9MsZk+HiJ2NwLWxtfBb0v0KPZaVYE5rWRDTsCLCzXpwEuy2Y+hJ6ixwxM19zv5Wd9lLSNLc1Tazb9Wqv434J\\/L9q\\/3jgxjKfev944MBCMqRZv2VSUSUscuZZchaKN9dJKlQXDxRyDXomcK2mRbrZSr60YBkZV9z7OuNcn7OeCMu4RGYUWaTUq8znoaiKP3x5rIwaEsGjMjRtpDKWjJVmUhiYMaFhrryFkumIoqAeSf1PeB5M6wx8J+0I0auZY6+yKxCkoQ0Ya41EGwI8JsTsSpVdvUdOyiHhyKqDKjExVzAKWVSVOuFd1JKm211NiRYkwY4YLDgoJmKMeSUru3anpCRBk1LWWleMGCtlF1UKQ\\/jgXwtqIH63hNwPCS+qu3GgoPa2hXLa8QSSxRJDWVK89Y3RFkj10i2WQOzqJCrBYnDBGKK5gxXRmEC83cfP\\/KK+lRCaqGh7xEtPJM0nDc1SJHJVZMwQCMXOy6YAbfeuduuPsveQZypXhN49JudOYr4txsbwn5beuDBggl4exTSYu3kg95e3Tgq\\/wDqX\\/ywlJ3l21qw4OdQt7qMxFm+d4b\\/ALLYMGCNlYRw5q2kRdqiqrtygzbMJJH4SQNUsAiyVNIVichVLh5aUkEhVuWawA8gBadyDtxrYMmibKeCIawPUtTJSxZnB7Vr0CQsKeOANoPiJcJp1agSNhgwYKZaE6lRz7wXYcV7C4tPxUru1c1Gyd5Ilyx4LsWJNvpLpv8A3WDBgxYScH9PErufibV\\/\\/9k=\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010191,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:31.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:32'),
(11575, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010192242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:32.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:32'),
(11576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:32.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010192316,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:32.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:32'),
(11578, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010192316,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:32.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:33'),
(11579, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010192242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:32.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:33'),
(11580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:32.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:33'),
(11581, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C96A693A6580D987AA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\n\\nOlá, *Erick Souza*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n📋 *Detalhes:*\\n💰 Valor: *R$ 40,00*\\n📅 Novo vencimento: *13\\/03\\/2026*\\n✅ Status: *Em dia*\\n\\nObrigado pela preferência! 🙏\\n\\nSeu acesso está garantido até *13\\/03\\/2026*.\\n\\n_Continue aproveitando nossos serviços!_ 🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771010204,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:45.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:16:45'),
(11582, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C96A693A6580D987AA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\n\\nOlá, *Erick Souza*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n📋 *Detalhes:*\\n💰 Valor: *R$ 40,00*\\n📅 Novo vencimento: *13\\/03\\/2026*\\n✅ Status: *Em dia*\\n\\nObrigado pela preferência! 🙏\\n\\nSeu acesso está garantido até *13\\/03\\/2026*.\\n\\n_Continue aproveitando nossos serviços!_ 🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771010204,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:45.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:16:45'),
(11583, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010205865,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:45.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:45'),
(11584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010205865,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:45.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:46'),
(11585, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010206327,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:46.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:16:46'),
(11586, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010206327,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:16:46.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:16:46'),
(11587, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010233161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:13.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:13'),
(11588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0814D23C2939A907553\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"queis pegaa kk\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010232,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:12.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:13'),
(11589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:12.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:17:13'),
(11590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:13.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:17:13'),
(11591, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010233161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:13.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:13'),
(11592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:13.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:17:15'),
(11593, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:12.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:17:15'),
(11594, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010233417,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:13.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:15'),
(11595, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010233417,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:13.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:15'),
(11596, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0814D23C2939A907553\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"queis pegaa kk\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010232,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:12.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:16'),
(11597, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236843,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:16'),
(11598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:16'),
(11599, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:16'),
(11600, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236846,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:16'),
(11601, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236851,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:16'),
(11602, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:17'),
(11603, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236862,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:17'),
(11604, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:17'),
(11605, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236843,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:17'),
(11606, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236846,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:17'),
(11607, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236862,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:18'),
(11608, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236871,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:18'),
(11609, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236856,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:18'),
(11610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236851,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:18'),
(11611, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236871,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:18'),
(11612, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010236856,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:16.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:19'),
(11613, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771010238664,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:18.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:19'),
(11614, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771010238664,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:18.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:19'),
(11615, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EC2E7D6FC853A20537\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\n\\nOlá, *Erick Souza*! 👋\\n\\nÉ um prazer ter você conosco!\\n\\n📋 *Informações da sua conta:*\\n• Plano: *mensal*\\n• Valor mensal: *R$ 40,00*\\n• Próximo vencimento: *13\\/03\\/2026*\\n\\n💡 *Comandos úteis:*\\n• *\\/pago* - Confirmar pagamento\\n• *\\/vencimento* - Ver próximo vencimento\\n• *\\/status* - Verificar situação\\n• *\\/ajuda* - Lista completa de comandos\\n\\nQualquer dúvida, estamos à disposição!\\n\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771010251,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:31.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:17:31'),
(11616, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EC2E7D6FC853A20537\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\n\\nOlá, *Erick Souza*! 👋\\n\\nÉ um prazer ter você conosco!\\n\\n📋 *Informações da sua conta:*\\n• Plano: *mensal*\\n• Valor mensal: *R$ 40,00*\\n• Próximo vencimento: *13\\/03\\/2026*\\n\\n💡 *Comandos úteis:*\\n• *\\/pago* - Confirmar pagamento\\n• *\\/vencimento* - Ver próximo vencimento\\n• *\\/status* - Verificar situação\\n• *\\/ajuda* - Lista completa de comandos\\n\\nQualquer dúvida, estamos à disposição!\\n\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771010251,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:31.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:17:32'),
(11617, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010252013,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:32.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:32'),
(11618, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010252056,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:32.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:32'),
(11619, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010252013,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:32.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:32'),
(11620, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010252056,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:32.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:32'),
(11621, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010254093,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:34.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:34'),
(11622, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010254093,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:34.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:34'),
(11623, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771010254310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:34.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:34'),
(11624, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771010254310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:34.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:34'),
(11625, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771010276356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:56.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:17:56'),
(11626, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771010276356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:17:56.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:17:56'),
(11627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:35.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:35'),
(11628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:35.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:35'),
(11629, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:35.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:35'),
(11630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:35.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:35'),
(11631, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:35.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:36'),
(11632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:35.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:36'),
(11633, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A59ABDAB875F6B6820210B9F4154EC75\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HX4+jQ+1BUvc9Ht85PqY33hKhcJ271k6eBADusLY7yM=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:18:36'),
(11634, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:36'),
(11635, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:36'),
(11636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:37'),
(11637, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:37'),
(11638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:37'),
(11639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A59ABDAB875F6B6820210B9F4154EC75\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HX4+jQ+1BUvc9Ht85PqY33hKhcJ271k6eBADusLY7yM=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:18:37'),
(11640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:36.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:37'),
(11641, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:45.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:45'),
(11642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:45.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:45'),
(11643, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:49'),
(11644, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A56842E53288BBEAE99BFCD3B81533C7\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"n42k9CY2T6fHhoR5hJ2s2AyE1C+2Ca4hK1mUj764mjA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010329,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:18:49'),
(11645, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:49'),
(11646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:49'),
(11647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:18:49'),
(11648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:50');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11649, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A56842E53288BBEAE99BFCD3B81533C7\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"n42k9CY2T6fHhoR5hJ2s2AyE1C+2Ca4hK1mUj764mjA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010329,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:18:50'),
(11650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:18:49.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:18:50'),
(11651, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:03'),
(11652, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E30BDD1B1BB70ECC26\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"desativei\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010463,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:03'),
(11653, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:03'),
(11654, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E30BDD1B1BB70ECC26\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"desativei\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010463,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:03'),
(11655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:03'),
(11656, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010463523,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:04'),
(11657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010463509,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:04'),
(11658, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:04'),
(11659, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010463523,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:04'),
(11660, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010463509,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:03.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:05'),
(11661, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BB7B48855F40691732\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"so eu posso agr pq se nao cliente vai ficar brincando\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010475,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:15.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:15'),
(11662, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:15.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:15'),
(11663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:15.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:15'),
(11664, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:15.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:16'),
(11665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BB7B48855F40691732\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"so eu posso agr pq se nao cliente vai ficar brincando\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010475,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:15.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:16'),
(11666, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:15.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:16'),
(11667, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010476017,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:16.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:16'),
(11668, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010476017,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:16.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:16'),
(11669, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010476724,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:16.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:16'),
(11670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010476724,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:16.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:16'),
(11671, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A032BE29A836F11B35\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"tem muito nego burro\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010478,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:18'),
(11672, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:18'),
(11673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:18'),
(11674, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A032BE29A836F11B35\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"tem muito nego burro\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010478,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:18'),
(11675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010478755,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:18'),
(11676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010478901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:19'),
(11677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:19'),
(11678, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010478755,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:19'),
(11679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:19'),
(11680, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010478901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:18.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:19'),
(11681, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010483805,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:23.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:23'),
(11682, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010483808,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:23.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:23'),
(11683, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010483801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:23.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:23'),
(11684, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010483805,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:23.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:24'),
(11685, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010483808,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:23.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:24'),
(11686, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010483801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:23.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:24'),
(11687, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0687D69BF6BC0659DC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"agr eu tenho acesso a todos comandos cadastrar renovar pausar td pelo bot no whats\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010492,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:32'),
(11688, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:32'),
(11689, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010492682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:32'),
(11690, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010492690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:32'),
(11691, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:21:32'),
(11692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0687D69BF6BC0659DC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"agr eu tenho acesso a todos comandos cadastrar renovar pausar td pelo bot no whats\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771010492,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:32'),
(11693, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871:71@s.whatsapp.net\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010492690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:33'),
(11694, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:33'),
(11695, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771010492682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:33'),
(11696, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4vuZCmYzU94GLVOd-5-WEcRVlnkg-pnqGbwXU1AiCAQ&oe=699CA625&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:32.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:21:33'),
(11697, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010500837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:40.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:21:40'),
(11698, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010500837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:21:40.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:21:41'),
(11699, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A56ADCD347E2131231875B993592B4D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:25:01'),
(11700, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CF8C80532ADB11BFCE4FF600B7938C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:25:01'),
(11701, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51F161EC6560838E62D70CCF5C32D29\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:25:01'),
(11702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54A9E12BB0EF95C4649192674B78EC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:25:01'),
(11703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A56ADCD347E2131231875B993592B4D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:25:01'),
(11704, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A51F161EC6560838E62D70CCF5C32D29\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:25:02'),
(11705, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5CF8C80532ADB11BFCE4FF600B7938C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:25:02'),
(11706, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A54A9E12BB0EF95C4649192674B78EC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771010701287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:25:01.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:25:02'),
(11707, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:05'),
(11708, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":false,\"id\":\"4A36D1399D0798B43BD6\"},\"pushName\":\"Cleber Proença🩸O-\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNwi0LjFc9RWDPgU4SnLELN6jk9GnBgNoaoXqPCs8jg4bwyiYNBkisJsOxUHH95xepgMd9ge2itcPvF4OaTr0OKa21AZ9EXLAc5hNToTw?ccb=9-4&oh=01_Q5Aa3wFahP9Mwh5orZxaX8El6jZ5KfHQYegqUsiCDriB8czbWA&oe=69B6D790&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"FUDhgVYA4q2zUhlNY3iKVhvOX9OVJXoA3xYlZPdeGvs=\",\"fileLength\":\"237315\",\"height\":4160,\"width\":979,\"mediaKey\":\"4u8kSAHgPbGmTE8bf6mSH6AgBvs9RVYhfMP7R3Z5JqM=\",\"fileEncSha256\":\"6TKcl23IeoCPlMswxW3uxOFY5Whb9D7F6fxSRI2ZVCE=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNwi0LjFc9RWDPgU4SnLELN6jk9GnBgNoaoXqPCs8jg4bwyiYNBkisJsOxUHH95xepgMd9ge2itcPvF4OaTr0OKa21AZ9EXLAc5hNToTw?ccb=9-4&oh=01_Q5Aa3wFahP9Mwh5orZxaX8El6jZ5KfHQYegqUsiCDriB8czbWA&oe=69B6D790&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771010882\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABEDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0OrMaI3LAIqaNBzqbNBOhoP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACEQAAICAQQCAwAAAAAAAAAAAAECABEQEiExQQMiMlFy\\/9oACAEBAAE\\/ANC6jcHjQiwJQhb3Iq4vHFYZiG2AitfOKJfLE33AD94PyO9Qfq8OBqijDGmga+sEG7gGP\\/\\/+AAMA\\/9k=\",\"scansSidecar\":\"Rdo74BROPLf80OOThXws4ZYeJZbQDzN6i5+hhfqUm9L1QeXvjuB1FQ==\",\"scanLengths\":[21460,26936,121906,67011],\"midQualityFileSha256\":\"wMMmB9nqGW+senvWNL8E+Ot5seRCxx7q\\/0P1sOXDfIk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007693\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3otmM\\/PWdVljWgcqienbCNPm1TqTQ8hjpOCenM5w9e0=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010884,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:28:05'),
(11709, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:05'),
(11710, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:05'),
(11711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:05'),
(11712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:05'),
(11713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:06'),
(11714, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":false,\"id\":\"4A36D1399D0798B43BD6\"},\"pushName\":\"Cleber Proença🩸O-\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNwi0LjFc9RWDPgU4SnLELN6jk9GnBgNoaoXqPCs8jg4bwyiYNBkisJsOxUHH95xepgMd9ge2itcPvF4OaTr0OKa21AZ9EXLAc5hNToTw?ccb=9-4&oh=01_Q5Aa3wFahP9Mwh5orZxaX8El6jZ5KfHQYegqUsiCDriB8czbWA&oe=69B6D790&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"FUDhgVYA4q2zUhlNY3iKVhvOX9OVJXoA3xYlZPdeGvs=\",\"fileLength\":\"237315\",\"height\":4160,\"width\":979,\"mediaKey\":\"4u8kSAHgPbGmTE8bf6mSH6AgBvs9RVYhfMP7R3Z5JqM=\",\"fileEncSha256\":\"6TKcl23IeoCPlMswxW3uxOFY5Whb9D7F6fxSRI2ZVCE=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQNwi0LjFc9RWDPgU4SnLELN6jk9GnBgNoaoXqPCs8jg4bwyiYNBkisJsOxUHH95xepgMd9ge2itcPvF4OaTr0OKa21AZ9EXLAc5hNToTw?ccb=9-4&oh=01_Q5Aa3wFahP9Mwh5orZxaX8El6jZ5KfHQYegqUsiCDriB8czbWA&oe=69B6D790&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771010882\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABEDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0OrMaI3LAIqaNBzqbNBOhoP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACEQAAICAQQCAwAAAAAAAAAAAAECABEQEiExQQMiMlFy\\/9oACAEBAAE\\/ANC6jcHjQiwJQhb3Iq4vHFYZiG2AitfOKJfLE33AD94PyO9Qfq8OBqijDGmga+sEG7gGP\\/\\/+AAMA\\/9k=\",\"scansSidecar\":\"Rdo74BROPLf80OOThXws4ZYeJZbQDzN6i5+hhfqUm9L1QeXvjuB1FQ==\",\"scanLengths\":[21460,26936,121906,67011],\"midQualityFileSha256\":\"wMMmB9nqGW+senvWNL8E+Ot5seRCxx7q\\/0P1sOXDfIk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007693\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3otmM\\/PWdVljWgcqienbCNPm1TqTQ8hjpOCenM5w9e0=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771010884,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:04.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:28:06'),
(11715, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"presences\":{\"142124913795224@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:10.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:10'),
(11716, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"presences\":{\"142124913795224@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:10.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:10'),
(11717, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"presences\":{\"142124913795224@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:20.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:20');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11718, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"presences\":{\"142124913795224@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:20.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:20'),
(11719, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"presences\":{\"142124913795224@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:22.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:22'),
(11720, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"presences\":{\"142124913795224@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:22.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:22'),
(11721, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:23.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:23'),
(11722, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:23.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:24'),
(11723, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:23.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:24'),
(11724, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":false,\"id\":\"3A07FBCF14A223F2BF2F\"},\"pushName\":\"Cleber Proença🩸O-\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11959554_1412118596637197_5487563876825983174_n.enc?ccb=11-4&oh=01_Q5Aa3wEeGr1CBWXr4ucMDumbEUqrOOjcdAUJPlfN2GuFJ7m26g&oe=69B6DEA8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"\\/LELeXG5d4+cbUC1mgXul8RepZ\\/EE1m0CQLzqhsQHqc=\",\"fileLength\":\"28790\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"r5zSAKo+hkcSXpGzkL7mI3Qxs\\/ubq17xhziUdSd2JEI=\",\"fileEncSha256\":\"TLV81QeyAVhsIihGTc70NHQrgbE0jsLbnq5J455gZbA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11959554_1412118596637197_5487563876825983174_n.enc?ccb=11-4&oh=01_Q5Aa3wEeGr1CBWXr4ucMDumbEUqrOOjcdAUJPlfN2GuFJ7m26g&oe=69B6DEA8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010889\",\"streamingSidecar\":\"\\/Vu7E7789J8WlA==\",\"waveform\":\"MmRkZDFkZFRkPBo+OzMWN2RkXEpjWCpeZGRGZGFkZGRSXWRkYmIxFwwsMGRkZGRkXSUSCThkZGRiZGRkUWRUJA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007693\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Bv4DVeX8HRUQ3hFFHvUxa+\\/D15bsI7oTBMQ9iMVPxyY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771010903,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:23.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:28:24'),
(11725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:23.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:24'),
(11726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:24.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:28:24'),
(11727, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvALsaqtYQ5qcsQFnHNd3yAh7Mo2VVGlf_cDMKuBhyfQ&oe=699C7FCE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:24.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:28:25'),
(11728, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":false,\"id\":\"3A07FBCF14A223F2BF2F\"},\"pushName\":\"Cleber Proença🩸O-\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11959554_1412118596637197_5487563876825983174_n.enc?ccb=11-4&oh=01_Q5Aa3wEeGr1CBWXr4ucMDumbEUqrOOjcdAUJPlfN2GuFJ7m26g&oe=69B6DEA8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"\\/LELeXG5d4+cbUC1mgXul8RepZ\\/EE1m0CQLzqhsQHqc=\",\"fileLength\":\"28790\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"r5zSAKo+hkcSXpGzkL7mI3Qxs\\/ubq17xhziUdSd2JEI=\",\"fileEncSha256\":\"TLV81QeyAVhsIihGTc70NHQrgbE0jsLbnq5J455gZbA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11959554_1412118596637197_5487563876825983174_n.enc?ccb=11-4&oh=01_Q5Aa3wEeGr1CBWXr4ucMDumbEUqrOOjcdAUJPlfN2GuFJ7m26g&oe=69B6DEA8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771010889\",\"streamingSidecar\":\"\\/Vu7E7789J8WlA==\",\"waveform\":\"MmRkZDFkZFRkPBo+OzMWN2RkXEpjWCpeZGRGZGFkZGRSXWRkYmIxFwwsMGRkZGRkXSUSCThkZGRiZGRkUWRUJA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771007693\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Bv4DVeX8HRUQ3hFFHvUxa+\\/D15bsI7oTBMQ9iMVPxyY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771010903,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:28:23.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:28:25'),
(11729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:30.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:38:30'),
(11730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:30.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:38:30'),
(11731, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:38:32'),
(11732, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:38:32'),
(11733, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC73A979C64CF8FA11D4D2212F82C967\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Obrigado\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VPwZwbzgSkwF2F81Hn11hJKfHdaAeKYyRUkBuhff1rM=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771011512,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:38:32'),
(11734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:38:32'),
(11735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:38:32'),
(11736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"pushName\":\"Nando\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:38:32'),
(11737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:38:33'),
(11738, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"211677630967839@lid\",\"fromMe\":false,\"id\":\"AC73A979C64CF8FA11D4D2212F82C967\"},\"pushName\":\"Nando\",\"message\":{\"extendedTextMessage\":{\"text\":\"Obrigado\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VPwZwbzgSkwF2F81Hn11hJKfHdaAeKYyRUkBuhff1rM=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1677942604\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771011512,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:38:32.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:38:33'),
(11739, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"AC180A7D7FC6D76A38A797DF191A7E7B\"},\"pushName\":\"Élcio\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no Pix*\\nElcio, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 13\\/02\\/2026\\n*De:* ELCIO JOSE CONSOLINI\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L3PUtc2sutAEtqXuJcvqM6ml\\/xivXvGYurO4FrUUeks=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771011814,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:43:34'),
(11740, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:34'),
(11741, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:34'),
(11742, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"pushName\":\"Élcio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:43:34'),
(11743, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:34'),
(11744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:35'),
(11745, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"pushName\":\"Élcio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:43:35'),
(11746, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"presences\":{\"31701287886904@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:37.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:37'),
(11747, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"presences\":{\"31701287886904@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:37.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:37'),
(11748, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06265538CB6986F0C72\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 31701287886904\\nMensagem: \\\"*Pagamento aprovado no Pix*\\nElcio, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 13\\/02\\/2026\\n*De:* ELCIO JOSE CONSOLINI\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\\n\\nObrigado pelo pagamento! 😉\\\"\\n\\nUse: \\/aprovar 31701287886904\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\",\"canonicalUrl\":\"https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAARACADASIAAhEBAxEB\\/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAEEAwb\\/xAAiEAACAgEDBAMAAAAAAAAAAAABAgADBBEhMRIiQWFxgaH\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEQMRAD8A7spb1EiwAeB08fsybIVWZDlUhkGrAjdeOd\\/YlMlvoxzYXNKs1naxCAn79bCBquVQzKgurZ2GoAYbzUgkjfSSUY2Mjq61IrLx2AEfErgOKEIDhCED\\/9k=\",\"thumbnailDirectPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQNepSMmTflYqvUCK1iJnjV_Wqc9rvpMT-LLnWY-cncVi9r_n-HlAR4vogL1YZRVzbTJY1qkKXRspYnrhgTcOwBxXJeQVwP9D43hjFx4Pg?ccb=9-4&oh=01_Q5Aa3wFFS4ToXOHhMi__CZjIKXFWKxqt8H4UCAJ5_K92CyJx8g&oe=69B6E95F&_nc_sid=e6ed6c\",\"thumbnailSha256\":\"EN8+NlvADx+B8SRw9QzhGFZam7Npa7esDsNEjohPQ4k=\",\"thumbnailEncSha256\":\"rdnm92yMs5TlnNeFc5WjG9PvpPhuhxNEAerhLKKIqdM=\",\"mediaKey\":\"rd8tti4RLvcLFLs6lPro1ePX7ap6ZKpKOU72+lvTLUE=\",\"mediaKeyTimestamp\":\"1771011818\",\"thumbnailHeight\":630,\"thumbnailWidth\":1200}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771011818,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:38.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:38'),
(11749, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06265538CB6986F0C72\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 31701287886904\\nMensagem: \\\"*Pagamento aprovado no Pix*\\nElcio, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 13\\/02\\/2026\\n*De:* ELCIO JOSE CONSOLINI\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\\n\\nObrigado pelo pagamento! 😉\\\"\\n\\nUse: \\/aprovar 31701287886904\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\",\"canonicalUrl\":\"https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAARACADASIAAhEBAxEB\\/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAEEAwb\\/xAAiEAACAgEDBAMAAAAAAAAAAAABAgADBBEhMRIiQWFxgaH\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEQMRAD8A7spb1EiwAeB08fsybIVWZDlUhkGrAjdeOd\\/YlMlvoxzYXNKs1naxCAn79bCBquVQzKgurZ2GoAYbzUgkjfSSUY2Mjq61IrLx2AEfErgOKEIDhCED\\/9k=\",\"thumbnailDirectPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQNepSMmTflYqvUCK1iJnjV_Wqc9rvpMT-LLnWY-cncVi9r_n-HlAR4vogL1YZRVzbTJY1qkKXRspYnrhgTcOwBxXJeQVwP9D43hjFx4Pg?ccb=9-4&oh=01_Q5Aa3wFFS4ToXOHhMi__CZjIKXFWKxqt8H4UCAJ5_K92CyJx8g&oe=69B6E95F&_nc_sid=e6ed6c\",\"thumbnailSha256\":\"EN8+NlvADx+B8SRw9QzhGFZam7Npa7esDsNEjohPQ4k=\",\"thumbnailEncSha256\":\"rdnm92yMs5TlnNeFc5WjG9PvpPhuhxNEAerhLKKIqdM=\",\"mediaKey\":\"rd8tti4RLvcLFLs6lPro1ePX7ap6ZKpKOU72+lvTLUE=\",\"mediaKeyTimestamp\":\"1771011818\",\"thumbnailHeight\":630,\"thumbnailWidth\":1200}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771011818,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:38.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:38'),
(11750, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"AC180A7D7FC6D76A38A797DF191A7E7B\"},\"pushName\":\"Élcio\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no Pix*\\nElcio, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 13\\/02\\/2026\\n*De:* ELCIO JOSE CONSOLINI\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/62d1f965-6406-4248-92f4-65bde0c4b8cf\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L3PUtc2sutAEtqXuJcvqM6ml\\/xivXvGYurO4FrUUeks=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771011814,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:34.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:43:39'),
(11751, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"ACD275D437347C778561E575A41C008A\"},\"pushName\":\"Élcio\",\"message\":{\"conversation\":\"Boa tarde Johnny\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EsT0\\/sFtMzoj8IIy8mj4rCZbPRN\\/EwcDneoNuxbYKxA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771011821,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:41.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:43:41'),
(11752, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:41.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:41'),
(11753, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:41.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:41'),
(11754, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"ACD275D437347C778561E575A41C008A\"},\"pushName\":\"Élcio\",\"message\":{\"conversation\":\"Boa tarde Johnny\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EsT0\\/sFtMzoj8IIy8mj4rCZbPRN\\/EwcDneoNuxbYKxA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771011821,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:41.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:43:41'),
(11755, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:41.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:41'),
(11756, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:41.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:42'),
(11757, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:42.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:42'),
(11758, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:42.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:42'),
(11759, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"presences\":{\"31701287886904@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:42.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:42'),
(11760, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"presences\":{\"31701287886904@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:42.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:43'),
(11761, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:52'),
(11762, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:52'),
(11763, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"AC6638E92B38927216EDE8C42B4F6CBB\"},\"pushName\":\"Élcio\",\"message\":{\"conversation\":\"Vc atualiza pra mim por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1+lPV1UR9lsgyRtX+0FuNGY8W0WvtD8MYUcxeIW7lDo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771011832,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:43:52'),
(11764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:52'),
(11765, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"AC6638E92B38927216EDE8C42B4F6CBB\"},\"pushName\":\"Élcio\",\"message\":{\"conversation\":\"Vc atualiza pra mim por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1+lPV1UR9lsgyRtX+0FuNGY8W0WvtD8MYUcxeIW7lDo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771011832,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:43:52'),
(11766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:43:52'),
(11767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:52'),
(11768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:43:52.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:43:53'),
(11769, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:21.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:54:21'),
(11770, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:21.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:54:22'),
(11771, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:31.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:54:31'),
(11772, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:31.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:54:31'),
(11773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:37.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:54:38'),
(11774, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC93998E5D99A00599AE2CF51813A0FB\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Oi boa tarde como faço pra desistalar ele\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+aroYX7Yk+MAu\\/bREznfbrSJl3qsmidVst9h1FYhapI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771012477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:37.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 16:54:38'),
(11775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:38.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:54:38'),
(11776, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:37.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:54:38'),
(11777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:38.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 16:54:38'),
(11778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"pushName\":\"Marina Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:38.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:54:38'),
(11779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:38.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 16:54:38'),
(11780, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC93998E5D99A00599AE2CF51813A0FB\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Oi boa tarde como faço pra desistalar ele\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+aroYX7Yk+MAu\\/bREznfbrSJl3qsmidVst9h1FYhapI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771012477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T16:54:37.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 16:54:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11781, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771012822592,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:22.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:00:22'),
(11782, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A56410922DBA49CB11F7D5F16E904485\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771012822604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:22.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:00:22'),
(11783, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771012822964,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:22.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:00:23'),
(11784, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771012822592,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:22.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:00:23'),
(11785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A56410922DBA49CB11F7D5F16E904485\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771012822604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:22.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:00:23'),
(11786, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A54CE746C88B8C9BB6CF9B65A553AAB0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771012822964,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:22.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:00:23'),
(11787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A56410922DBA49CB11F7D5F16E904485\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771012834370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:34.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:00:34'),
(11788, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A56410922DBA49CB11F7D5F16E904485\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771012834370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:34.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:00:34'),
(11789, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:41.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:00:41'),
(11790, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:41.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:00:42'),
(11791, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:00:52'),
(11792, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:00:52'),
(11793, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:55.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:00:55'),
(11794, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:55.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:00:55'),
(11795, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:55.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:00:55'),
(11796, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:55.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:00:56'),
(11797, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2ABFD782411F813320\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35593966_2300452987126871_7017594082912513208_n.enc?ccb=11-4&oh=01_Q5Aa3wHDj_-y2h8JaGLuBaBCPrIof_EKOswhQQCvWZnkpsbNsw&oe=69B6EE7B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vIEeKjgR2sr2rGm4I1QabBGmAo7Q+k97lYa2CusGTXU=\",\"fileLength\":\"28966\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"j8kF1i5dlN88GLvKV9KxpUbeDaN+wvo7nyc8IrcoQmQ=\",\"fileEncSha256\":\"E9MrIRhQHxTBK59bShJlb19CyrBCfiezClaj0F1NlV4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35593966_2300452987126871_7017594082912513208_n.enc?ccb=11-4&oh=01_Q5Aa3wHDj_-y2h8JaGLuBaBCPrIof_EKOswhQQCvWZnkpsbNsw&oe=69B6EE7B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771012840\",\"streamingSidecar\":\"FK4zaXmZkyrz7g==\",\"waveform\":\"MmNLR2RkZGRUSl1bTh4LBzRkZGRkYCsUCQYGBgcgIRlkPC42ZGRkTy8fEgoIZGRkZGRQHA8IBgYcSGRkZGRjZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771012557\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7bo5BQewsKB1n0UgzneQSarstV1FK1C9Kmxwel57sls=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771012855,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:55.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:00:56'),
(11798, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:56.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:00:56'),
(11799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:56.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:00:56'),
(11800, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:56.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:00:56'),
(11801, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2ABFD782411F813320\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35593966_2300452987126871_7017594082912513208_n.enc?ccb=11-4&oh=01_Q5Aa3wHDj_-y2h8JaGLuBaBCPrIof_EKOswhQQCvWZnkpsbNsw&oe=69B6EE7B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vIEeKjgR2sr2rGm4I1QabBGmAo7Q+k97lYa2CusGTXU=\",\"fileLength\":\"28966\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"j8kF1i5dlN88GLvKV9KxpUbeDaN+wvo7nyc8IrcoQmQ=\",\"fileEncSha256\":\"E9MrIRhQHxTBK59bShJlb19CyrBCfiezClaj0F1NlV4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35593966_2300452987126871_7017594082912513208_n.enc?ccb=11-4&oh=01_Q5Aa3wHDj_-y2h8JaGLuBaBCPrIof_EKOswhQQCvWZnkpsbNsw&oe=69B6EE7B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771012840\",\"streamingSidecar\":\"FK4zaXmZkyrz7g==\",\"waveform\":\"MmNLR2RkZGRUSl1bTh4LBzRkZGRkYCsUCQYGBgcgIRlkPC42ZGRkTy8fEgoIZGRkZGRQHA8IBgYcSGRkZGRjZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771012557\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7bo5BQewsKB1n0UgzneQSarstV1FK1C9Kmxwel57sls=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771012855,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:55.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:00:56'),
(11802, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvTHdJshp5cFqPhbsnNwOX48fXM8Zai119vaGjKVEQlw&oe=699C8021&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:00:56.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:00:57'),
(11803, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC93998E5D99A00599AE2CF51813A0FB\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:19.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:26:19'),
(11804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:19.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:26:19'),
(11805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:19.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:26:20'),
(11806, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC93998E5D99A00599AE2CF51813A0FB\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:19.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:26:20'),
(11807, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:20.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:26:20'),
(11808, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:20.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:26:20'),
(11809, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:30.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:26:30'),
(11810, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:30.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:26:30'),
(11811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:36.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:26:37'),
(11812, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:26:36.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:26:37'),
(11813, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:48.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:29:48'),
(11814, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:48.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:29:48'),
(11815, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACDA9391AF7F45A3472596DDC9E0CD17\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Oi ja desinstalei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gE95TEZAMk5InOHi7IA1pH6srJj1g\\/as9d6bl0ztGEE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771014594,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:29:54'),
(11816, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:29:54'),
(11817, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:29:54'),
(11818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:29:54'),
(11819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:29:54'),
(11820, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACDA9391AF7F45A3472596DDC9E0CD17\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Oi ja desinstalei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gE95TEZAMk5InOHi7IA1pH6srJj1g\\/as9d6bl0ztGEE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771014594,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:29:55'),
(11821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:29:55'),
(11822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:29:54.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:29:55'),
(11823, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:31:57.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:31:57'),
(11824, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:31:57.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:31:57'),
(11825, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"presences\":{\"3972911882330@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:11.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:33:12'),
(11826, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"presences\":{\"3972911882330@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:11.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:33:12'),
(11827, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:33:13'),
(11828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:33:13'),
(11829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554797798943@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:33:13'),
(11830, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554797798943@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0808B5BC4772D50421\"},\"pushName\":\"Deoclesio Tramontinn\",\"message\":{\"conversation\":\"Fala\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771010881\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u4q9LlYhG1IAfOoD8feILpsJn46THWR3gyoNxXKKnO8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771014793,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:33:13'),
(11831, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554797798943@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:33:13'),
(11832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554797798943@s.whatsapp.net\",\"pushName\":\"Palero 8943 $35 P2cine Vizinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:33:13'),
(11833, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554797798943@s.whatsapp.net\",\"pushName\":\"Palero 8943 $35 P2cine Vizinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:33:13'),
(11834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554797798943@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoCC4S1BLDdANIVMa7zVdeXJMCqA5-j7eRoqWFv7GsAA&oe=699C8D1A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:33:14'),
(11835, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554797798943@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A0808B5BC4772D50421\"},\"pushName\":\"Deoclesio Tramontinn\",\"message\":{\"conversation\":\"Fala\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771010881\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u4q9LlYhG1IAfOoD8feILpsJn46THWR3gyoNxXKKnO8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771014793,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:33:14'),
(11836, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554797798943@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:13.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:33:14'),
(11837, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"presences\":{\"3972911882330@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:15.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:33:15'),
(11838, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"presences\":{\"3972911882330@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:33:15.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:33:15'),
(11839, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5FF724953F00E00331B7494BC0DB1E\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595900572_913826521501200_3584953632072239020_n.enc?ccb=11-4&oh=01_Q5Aa3wG-LF5j8ATMVhLVJ-LOgfPex23v6KXqq-eXGS3P_HhgSw&oe=69B71455&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"t5We0mwkFO8nvCvddDzA52LmHnaFcUobXF3cpMaYtpo=\",\"fileLength\":\"98291\",\"height\":900,\"width\":1600,\"mediaKey\":\"GTGzjUgQwgaB2gClzchTaOyBz\\/4FzDxWHFjISzHK+Dg=\",\"fileEncSha256\":\"MaCNAQS1JAo5XVIfRdxiya7KamKmL2kvdBCuIV939aI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595900572_913826521501200_3584953632072239020_n.enc?ccb=11-4&oh=01_Q5Aa3wG-LF5j8ATMVhLVJ-LOgfPex23v6KXqq-eXGS3P_HhgSw&oe=69B71455&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771014914\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAtAAACAwEBAAAAAAAAAAAAAAAAAQMFBgIEAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAAz0iuKq5PTXCXCiYhD3bXF3K3OKvKeyEfmJVER3YglegtGA+QP\\/\\/EACkQAAICAQIEBAcAAAAAAAAAAAECAAMRBCEFEhMxEEFRUiAjM0JTcoH\\/2gAIAQEAAT8AiB8MQ2MRuqm\\/PmDVOKysNtnunWs9069nrOvZ6xVLEAecXg2pxsyy3hWrqDMU2EZCAD8Ol+vX+0GLVwjzWMBpbMt9swoO4zAAq5850wwPbOMz5e55DiB0U7LNJcKbOYqDE4vjtTLOLaeypw9R54+6hs\\/yP1V7wqw7gzfwErQBmx+PMJJhZvUwO4OeYxrHbu0FrbbDaM5af\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAARIEH\\/2gAIAQIBAT8AFeR\\/\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAQIgMDL\\/2gAIAQMBAT8AobJh\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"9EYUBRSY0YaGXsLKHoi3J7TShesUZ7Z53KUGLmJHyx6DDhiY69yyTg==\",\"scanLengths\":[10084,46147,14383,27677],\"midQualityFileSha256\":\"Znjd1QNPX7LgcDviDO1O5H7OFMzl0ZWL+iHwsx2JxFw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qhxgk5HEzynA7OrQIrVTNajoo3aSTGZ8ec+d\\/+m1wFo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771014915,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:35:16'),
(11840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:16'),
(11841, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:19.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:19'),
(11842, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:19.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:19'),
(11843, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:26'),
(11844, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:26'),
(11845, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC5FF724953F00E00331B7494BC0DB1E\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595900572_913826521501200_3584953632072239020_n.enc?ccb=11-4&oh=01_Q5Aa3wG-LF5j8ATMVhLVJ-LOgfPex23v6KXqq-eXGS3P_HhgSw&oe=69B71455&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"t5We0mwkFO8nvCvddDzA52LmHnaFcUobXF3cpMaYtpo=\",\"fileLength\":\"98291\",\"height\":900,\"width\":1600,\"mediaKey\":\"GTGzjUgQwgaB2gClzchTaOyBz\\/4FzDxWHFjISzHK+Dg=\",\"fileEncSha256\":\"MaCNAQS1JAo5XVIfRdxiya7KamKmL2kvdBCuIV939aI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595900572_913826521501200_3584953632072239020_n.enc?ccb=11-4&oh=01_Q5Aa3wG-LF5j8ATMVhLVJ-LOgfPex23v6KXqq-eXGS3P_HhgSw&oe=69B71455&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771014914\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAtAAACAwEBAAAAAAAAAAAAAAAAAQMFBgIEAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAAz0iuKq5PTXCXCiYhD3bXF3K3OKvKeyEfmJVER3YglegtGA+QP\\/\\/EACkQAAICAQIEBAcAAAAAAAAAAAECAAMRBCEFEhMxEEFRUiAjM0JTcoH\\/2gAIAQEAAT8AiB8MQ2MRuqm\\/PmDVOKysNtnunWs9069nrOvZ6xVLEAecXg2pxsyy3hWrqDMU2EZCAD8Ol+vX+0GLVwjzWMBpbMt9swoO4zAAq5850wwPbOMz5e55DiB0U7LNJcKbOYqDE4vjtTLOLaeypw9R54+6hs\\/yP1V7wqw7gzfwErQBmx+PMJJhZvUwO4OeYxrHbu0FrbbDaM5af\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAARIEH\\/2gAIAQIBAT8AFeR\\/\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAQIgMDL\\/2gAIAQMBAT8AobJh\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"9EYUBRSY0YaGXsLKHoi3J7TShesUZ7Z53KUGLmJHyx6DDhiY69yyTg==\",\"scanLengths\":[10084,46147,14383,27677],\"midQualityFileSha256\":\"Znjd1QNPX7LgcDviDO1O5H7OFMzl0ZWL+iHwsx2JxFw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qhxgk5HEzynA7OrQIrVTNajoo3aSTGZ8ec+d\\/+m1wFo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771014915,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:35:26'),
(11846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:26'),
(11847, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:26'),
(11848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:16.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:26'),
(11849, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:26'),
(11850, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC6A27D865A85EFAFD4EAC7C5276CDFA\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Falta instalar denovo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gADyqmgZTkAmDyBASCzM0DoK4C8MlUWxtCeRishkrqY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771014926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:35:26'),
(11851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:27'),
(11853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:27'),
(11854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:27'),
(11855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:27'),
(11856, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC6A27D865A85EFAFD4EAC7C5276CDFA\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Falta instalar denovo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gADyqmgZTkAmDyBASCzM0DoK4C8MlUWxtCeRishkrqY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771014926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:26.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:35:27'),
(11857, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACC439BE6CEFC0F34BDF53F4DF78D308\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/20129764_932315722466574_511224096883637649_n.enc?ccb=11-4&oh=01_Q5Aa3wGe-7Sj8xQmcOtteJL9MajQBgJHrT8jVHH5eSprpLbWkA&oe=69B7078D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"v0QuhM7UHSM86paXtp2kw1OwHvgDuNjuHW0LIzaehrw=\",\"fileLength\":\"117926\",\"height\":900,\"width\":1600,\"mediaKey\":\"tbMUJLd7ROnD3qZp8S6rRlvN7kAlvlmcjzLX+SozEr0=\",\"fileEncSha256\":\"Qtv0RZsrSTFzUk1UNuKDod7R0JvaoLZE2s0l9VmxjRI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/20129764_932315722466574_511224096883637649_n.enc?ccb=11-4&oh=01_Q5Aa3wGe-7Sj8xQmcOtteJL9MajQBgJHrT8jVHH5eSprpLbWkA&oe=69B7078D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771014951\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAADBAAFBgECAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAKvQUOpFMxs8jQBGEc73xBGFC00oO3K8NsGK\\/j46S9SRLeRRsyKszJc\\/\\/8QAJxAAAgEDAQgCAwAAAAAAAAAAAQIAAwQRMQUSExQhIjJBQnIQUWH\\/2gAIAQEAAT8AsUV7hAwyI1nZ\\/KnK+zrRLd3CaCcJsDprHpBVyDAjHSBGOggpsTNnhjXBX1KRJ81EvQz2rqgySJuuRqM6YhbPacDEUqG65xAygtr\\/ACZP7MSoyHKkiJcV2OOMROduaelfOZvkkZJjmi2MRgu92npCoHyBhAHuLqIwCw49Q29slOm7VcFhOStqncLpY+zXBUB1OY2zaqjyUzkbj0v4JJmdBK4BW3+sejTw53dFi+Vr9ZcsVusCKSo6Ez\\/\\/xAAWEQADAAAAAAAAAAAAAAAAAAABEDD\\/2gAIAQIBAT8AkF\\/\\/xAAZEQABBQAAAAAAAAAAAAAAAAABAAIQMDL\\/2gAIAQMBAT8ApCdox\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"cTyF0dRgFjQOSz99covOMW\\/enL5LPvfE0wPgnBzR0mp2gBoB9qe4Og==\",\"scanLengths\":[11156,54670,19386,32714],\"midQualityFileSha256\":\"Om8zmbjAQPQkt0MtC52ZQoRhWbNK0yUnEJMIHNz41as=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+gCRMjbp91Ndrr++tT9A7pkl25fMywEW\\/9g0+37zvhg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771014953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:53.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:35:53'),
(11858, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACC439BE6CEFC0F34BDF53F4DF78D308\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/20129764_932315722466574_511224096883637649_n.enc?ccb=11-4&oh=01_Q5Aa3wGe-7Sj8xQmcOtteJL9MajQBgJHrT8jVHH5eSprpLbWkA&oe=69B7078D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"v0QuhM7UHSM86paXtp2kw1OwHvgDuNjuHW0LIzaehrw=\",\"fileLength\":\"117926\",\"height\":900,\"width\":1600,\"mediaKey\":\"tbMUJLd7ROnD3qZp8S6rRlvN7kAlvlmcjzLX+SozEr0=\",\"fileEncSha256\":\"Qtv0RZsrSTFzUk1UNuKDod7R0JvaoLZE2s0l9VmxjRI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/20129764_932315722466574_511224096883637649_n.enc?ccb=11-4&oh=01_Q5Aa3wGe-7Sj8xQmcOtteJL9MajQBgJHrT8jVHH5eSprpLbWkA&oe=69B7078D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771014951\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAADBAAFBgECAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAKvQUOpFMxs8jQBGEc73xBGFC00oO3K8NsGK\\/j46S9SRLeRRsyKszJc\\/\\/8QAJxAAAgEDAQgCAwAAAAAAAAAAAQIAAwQRMQUSExQhIjJBQnIQUWH\\/2gAIAQEAAT8AsUV7hAwyI1nZ\\/KnK+zrRLd3CaCcJsDprHpBVyDAjHSBGOggpsTNnhjXBX1KRJ81EvQz2rqgySJuuRqM6YhbPacDEUqG65xAygtr\\/ACZP7MSoyHKkiJcV2OOMROduaelfOZvkkZJjmi2MRgu92npCoHyBhAHuLqIwCw49Q29slOm7VcFhOStqncLpY+zXBUB1OY2zaqjyUzkbj0v4JJmdBK4BW3+sejTw53dFi+Vr9ZcsVusCKSo6Ez\\/\\/xAAWEQADAAAAAAAAAAAAAAAAAAABEDD\\/2gAIAQIBAT8AkF\\/\\/xAAZEQABBQAAAAAAAAAAAAAAAAABAAIQMDL\\/2gAIAQMBAT8ApCdox\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"cTyF0dRgFjQOSz99covOMW\\/enL5LPvfE0wPgnBzR0mp2gBoB9qe4Og==\",\"scanLengths\":[11156,54670,19386,32714],\"midQualityFileSha256\":\"Om8zmbjAQPQkt0MtC52ZQoRhWbNK0yUnEJMIHNz41as=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+gCRMjbp91Ndrr++tT9A7pkl25fMywEW\\/9g0+37zvhg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771014953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:53.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:35:53'),
(11859, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:53.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:54'),
(11860, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:54.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:54'),
(11861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:53.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:54'),
(11862, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:53.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:35:54'),
(11863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:54.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:54'),
(11864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:35:53.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:35:56'),
(11865, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A58AD0BA927437C9B56DC5821D129772\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015106562,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:26.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:38:26'),
(11866, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A58AD0BA927437C9B56DC5821D129772\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015106562,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:26.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:38:27'),
(11867, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A58AD0BA927437C9B56DC5821D129772\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636437849_951400763990776_2657752379993366003_n.enc?ccb=11-4&oh=01_Q5Aa3wEp_UPawZVHR6u__pNBNmMNitr0-QgxME-_wHSDUAW2HQ&oe=69B70E35&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"itYmSIMroLGbuU1MZZlsQWiLGhvJoCUiBSEaC4KoKrE=\",\"fileLength\":\"12832\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"INgoo1bkp2VvggotTV30U4ZvI+GVzNj5KbJAjYD8d\\/8=\",\"fileEncSha256\":\"H\\/X8kNNS1FaS8vSxj0YyTrrugzRc4ppR+m07nGfrqY4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636437849_951400763990776_2657752379993366003_n.enc?ccb=11-4&oh=01_Q5Aa3wEp_UPawZVHR6u__pNBNmMNitr0-QgxME-_wHSDUAW2HQ&oe=69B70E35&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015101\",\"waveform\":\"AAACAAIeV1ZRR0Q\\/PFpTUExQUElJNERPUTI1LkIYOkImAAAABxpaWi1GVFFKUiI5M19AM05GUVVHR1kyLlcKSQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:27.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:38:27'),
(11868, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:27.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:38:27'),
(11869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:27.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:38:27'),
(11870, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:27.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:38:27'),
(11871, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A58AD0BA927437C9B56DC5821D129772\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636437849_951400763990776_2657752379993366003_n.enc?ccb=11-4&oh=01_Q5Aa3wEp_UPawZVHR6u__pNBNmMNitr0-QgxME-_wHSDUAW2HQ&oe=69B70E35&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"itYmSIMroLGbuU1MZZlsQWiLGhvJoCUiBSEaC4KoKrE=\",\"fileLength\":\"12832\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"INgoo1bkp2VvggotTV30U4ZvI+GVzNj5KbJAjYD8d\\/8=\",\"fileEncSha256\":\"H\\/X8kNNS1FaS8vSxj0YyTrrugzRc4ppR+m07nGfrqY4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636437849_951400763990776_2657752379993366003_n.enc?ccb=11-4&oh=01_Q5Aa3wEp_UPawZVHR6u__pNBNmMNitr0-QgxME-_wHSDUAW2HQ&oe=69B70E35&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015101\",\"waveform\":\"AAACAAIeV1ZRR0Q\\/PFpTUExQUElJNERPUTI1LkIYOkImAAAABxpaWi1GVFFKUiI5M19AM05GUVVHR1kyLlcKSQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:27.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:38:28'),
(11872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:38:27.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:38:28'),
(11873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A58AD0BA927437C9B56DC5821D129772\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015194530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:39:54.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:39:54'),
(11874, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A58AD0BA927437C9B56DC5821D129772\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015194530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:39:54.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:39:55'),
(11875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A58AD0BA927437C9B56DC5821D129772\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015195221,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:39:55.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:39:55'),
(11876, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A58AD0BA927437C9B56DC5821D129772\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015195221,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:39:55.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:39:55'),
(11877, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:00.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:00'),
(11878, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:00.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:00'),
(11879, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:01'),
(11880, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:01'),
(11881, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC3EA6064500A21BED36C210B9CD6B60\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6i6k76YWzTZec3xW9HGUo9osiKwaY7JzePCWK5BkSxk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015201,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:40:01'),
(11882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:01'),
(11883, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:01'),
(11884, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC3EA6064500A21BED36C210B9CD6B60\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6i6k76YWzTZec3xW9HGUo9osiKwaY7JzePCWK5BkSxk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015201,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:40:02'),
(11885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:02'),
(11886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:01.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:02'),
(11887, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:48'),
(11888, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACCAC321A88AF2263402B23FE769EA09\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/56256706_1231649378409123_537140465151443849_n.enc?ccb=11-4&oh=01_Q5Aa3wFNtJXx_INmd7XbE3AypH-g_QIPjvfVZGd8ZufRjan4pw&oe=69B70D9C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Iz2ze+occ+MtSGPteIdv9SlqNSW3iJOLhzM1Rx36dCk=\",\"fileLength\":\"68433\",\"height\":900,\"width\":1600,\"mediaKey\":\"S78CHU8wxw5bC2avZT6IsuEoBEJSLCQoBvjNE9YjTgA=\",\"fileEncSha256\":\"dKQKmN7\\/jDY74h15gBrCm\\/jgjTxFQLgIeOmkbHNpEmU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/56256706_1231649378409123_537140465151443849_n.enc?ccb=11-4&oh=01_Q5Aa3wFNtJXx_INmd7XbE3AypH-g_QIPjvfVZGd8ZufRjan4pw&oe=69B70D9C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015247\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAvAAABBQEAAAAAAAAAAAAAAAAAAQIDBAUGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADn9KvpDSVxXbYelNL5Zk6efpOqw2IrhliKckVFsx74SvYAsoCuCv\\/EACQQAQACAgEDAwUAAAAAAAAAAAEAAgMRBBAxURIUQSEiM0JS\\/9oACAEBAAE\\/ACYLVMYLCxbtH6OmbPJNnkmzz04dRyKk9NHeqkKFfiNKWNoQxYnxDFi\\/me2xP6x4uH4GcI7sqbluxGVlYRnDPslIkSVIEOnE\\/ESvRlYdf\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAERABASMP\\/aAAgBAgEBPwC1Mgp8P\\/\\/EABsRAQACAgMAAAAAAAAAAAAAAAEAEgJhAyAy\\/9oACAEDAQE\\/AKrKblNysw5c8PLFVV7\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"AVkM7TUUNw8h9sZ9O4QJCZu+EElVOnLZcLwx9SKJY1oakRw31gv5Gw==\",\"scanLengths\":[8548,25140,7458,27287],\"midQualityFileSha256\":\"3ttwiSLVX81tEdOpqb5\\/h74Aa7t3xzTCVT00MhnosZQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1IYiP41itf+RzQ8APxosDea5i3baPJJ\\/N+YjSJysufE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771015248,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:40:48'),
(11889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:48'),
(11890, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:48'),
(11891, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACCAC321A88AF2263402B23FE769EA09\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/56256706_1231649378409123_537140465151443849_n.enc?ccb=11-4&oh=01_Q5Aa3wFNtJXx_INmd7XbE3AypH-g_QIPjvfVZGd8ZufRjan4pw&oe=69B70D9C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Iz2ze+occ+MtSGPteIdv9SlqNSW3iJOLhzM1Rx36dCk=\",\"fileLength\":\"68433\",\"height\":900,\"width\":1600,\"mediaKey\":\"S78CHU8wxw5bC2avZT6IsuEoBEJSLCQoBvjNE9YjTgA=\",\"fileEncSha256\":\"dKQKmN7\\/jDY74h15gBrCm\\/jgjTxFQLgIeOmkbHNpEmU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/56256706_1231649378409123_537140465151443849_n.enc?ccb=11-4&oh=01_Q5Aa3wFNtJXx_INmd7XbE3AypH-g_QIPjvfVZGd8ZufRjan4pw&oe=69B70D9C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015247\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAvAAABBQEAAAAAAAAAAAAAAAAAAQIDBAUGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADn9KvpDSVxXbYelNL5Zk6efpOqw2IrhliKckVFsx74SvYAsoCuCv\\/EACQQAQACAgEDAwUAAAAAAAAAAAEAAgMRBBAxURIUQSEiM0JS\\/9oACAEBAAE\\/ACYLVMYLCxbtH6OmbPJNnkmzz04dRyKk9NHeqkKFfiNKWNoQxYnxDFi\\/me2xP6x4uH4GcI7sqbluxGVlYRnDPslIkSVIEOnE\\/ESvRlYdf\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAERABASMP\\/aAAgBAgEBPwC1Mgp8P\\/\\/EABsRAQACAgMAAAAAAAAAAAAAAAEAEgJhAyAy\\/9oACAEDAQE\\/AKrKblNysw5c8PLFVV7\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"AVkM7TUUNw8h9sZ9O4QJCZu+EElVOnLZcLwx9SKJY1oakRw31gv5Gw==\",\"scanLengths\":[8548,25140,7458,27287],\"midQualityFileSha256\":\"3ttwiSLVX81tEdOpqb5\\/h74Aa7t3xzTCVT00MhnosZQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1IYiP41itf+RzQ8APxosDea5i3baPJJ\\/N+YjSJysufE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771015248,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:40:48'),
(11892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:48'),
(11893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:40:49'),
(11894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:40:48.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:40:49'),
(11895, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:41:01.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:41:02'),
(11896, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:41:01.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:41:02'),
(11897, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:41:04.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:41:04'),
(11898, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:41:04.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:41:04'),
(11899, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:41:44.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:41:44'),
(11900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:41:44.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:41:44'),
(11901, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC554F84DCF0D8D4A97EFD253CB69C7B\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635613521_1512014883963558_6499785095902164174_n.enc?ccb=11-4&oh=01_Q5Aa3wHbtsbQkvbKqM5mPDKlt4O8vUek4FhSNR2-y2uvm3AN6Q&oe=69B7073B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"J8UN5Jwtn0OKD9LAPLhKIfRf8E25HDNNUUGrkYHw\\/4k=\",\"fileLength\":\"140729\",\"height\":900,\"width\":1600,\"mediaKey\":\"gU2568GCk8fSWwxSahBtFG489otx8oMr8NhnXRSRhAo=\",\"fileEncSha256\":\"mWoqilXvbS+e\\/djGkrzp2fYR6yY7+CdtLK7K1sj5TOQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635613521_1512014883963558_6499785095902164174_n.enc?ccb=11-4&oh=01_Q5Aa3wHbtsbQkvbKqM5mPDKlt4O8vUek4FhSNR2-y2uvm3AN6Q&oe=69B7073B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015458\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAACBAADBQEGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADD0ktTUPjVbVFlOhNqheW+PmX86\\/N2AROm+pCaHc4TPskxT7JNcOQYTkT\\/xAAlEAACAgEDAwQDAAAAAAAAAAABAgADEQQUMRATUQUSIVIiMmH\\/2gAIAQEAAT8AtQoMETRVNYihZbQ9fMqpe3iMhQ4iVPZ+ojVsnwZ22YZAmpsDgT0q5VrImquRvhRKLxUvtMutNtowZprQlZEut7jTuBUGI5yJoSAkZ1IxgdfdiZmf5mM4YcTT3rWMMuYNYmeMCb2v6mb1PBm8TwZvV+s3vhelQ5iAYgH5ThpgZEsqRaSQIJ\\/\\/xAAaEQEBAQADAQAAAAAAAAAAAAABABECECAh\\/9oACAECAQE\\/AJcLiqdb9tLS08\\/\\/xAAcEQADAAEFAAAAAAAAAAAAAAAAAQIRAxASICH\\/2gAIAQMBAT8AInlSRqzM0kt\\/UPLMdf\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"kkLtZTlKmoYvWPTXK6loG7Ms+BYaRv\\/rWbaE7fX10rSyppnSC\\/UH0g==\",\"scanLengths\":[10978,36617,25310,67824],\"midQualityFileSha256\":\"mvgEQz+i9OoYep9ZQaVU+0oU\\/pCfll8P0XONUMeHwaM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rhUKq9p2eBRUdZwepbIgxP0hMlymtFzNNKyozX1Epc4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771015459,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:19.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:44:20'),
(11902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:19.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:44:20'),
(11903, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:19.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:44:20'),
(11904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:19.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:44:20'),
(11905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:19.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:44:20'),
(11906, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:20.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:44:21'),
(11907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:20.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:44:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11908, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC554F84DCF0D8D4A97EFD253CB69C7B\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635613521_1512014883963558_6499785095902164174_n.enc?ccb=11-4&oh=01_Q5Aa3wHbtsbQkvbKqM5mPDKlt4O8vUek4FhSNR2-y2uvm3AN6Q&oe=69B7073B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"J8UN5Jwtn0OKD9LAPLhKIfRf8E25HDNNUUGrkYHw\\/4k=\",\"fileLength\":\"140729\",\"height\":900,\"width\":1600,\"mediaKey\":\"gU2568GCk8fSWwxSahBtFG489otx8oMr8NhnXRSRhAo=\",\"fileEncSha256\":\"mWoqilXvbS+e\\/djGkrzp2fYR6yY7+CdtLK7K1sj5TOQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635613521_1512014883963558_6499785095902164174_n.enc?ccb=11-4&oh=01_Q5Aa3wHbtsbQkvbKqM5mPDKlt4O8vUek4FhSNR2-y2uvm3AN6Q&oe=69B7073B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015458\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAACBAADBQEGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADD0ktTUPjVbVFlOhNqheW+PmX86\\/N2AROm+pCaHc4TPskxT7JNcOQYTkT\\/xAAlEAACAgEDAwQDAAAAAAAAAAABAgADEQQUMRATUQUSIVIiMmH\\/2gAIAQEAAT8AtQoMETRVNYihZbQ9fMqpe3iMhQ4iVPZ+ojVsnwZ22YZAmpsDgT0q5VrImquRvhRKLxUvtMutNtowZprQlZEut7jTuBUGI5yJoSAkZ1IxgdfdiZmf5mM4YcTT3rWMMuYNYmeMCb2v6mb1PBm8TwZvV+s3vhelQ5iAYgH5ThpgZEsqRaSQIJ\\/\\/xAAaEQEBAQADAQAAAAAAAAAAAAABABECECAh\\/9oACAECAQE\\/AJcLiqdb9tLS08\\/\\/xAAcEQADAAEFAAAAAAAAAAAAAAAAAQIRAxASICH\\/2gAIAQMBAT8AInlSRqzM0kt\\/UPLMdf\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"kkLtZTlKmoYvWPTXK6loG7Ms+BYaRv\\/rWbaE7fX10rSyppnSC\\/UH0g==\",\"scanLengths\":[10978,36617,25310,67824],\"midQualityFileSha256\":\"mvgEQz+i9OoYep9ZQaVU+0oU\\/pCfll8P0XONUMeHwaM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rhUKq9p2eBRUdZwepbIgxP0hMlymtFzNNKyozX1Epc4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771015459,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:44:19.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:44:21'),
(11909, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5B8FF41972194724E8414090BADCF70\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635750471_1392684792603437_7976668931230674172_n.enc?ccb=11-4&oh=01_Q5Aa3wGuthQleHizpeuGmxD53L-n_2LUcw2f5Oz2ZALIUfYuCA&oe=69B6F054&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4o9FCfm4ZUPseJq99aEZIDVIcYJ9lxwV+fDLQ9jPWnI=\",\"fileLength\":\"9973\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"fKeYNW6rg0MawSZr9wAhmUz+1nDp8imY36o9E7HLr6U=\",\"fileEncSha256\":\"JJ7KKS5LXp+7H\\/\\/rs98BCyjYDrPsaAk2QAilLiDEuEA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635750471_1392684792603437_7976668931230674172_n.enc?ccb=11-4&oh=01_Q5Aa3wGuthQleHizpeuGmxD53L-n_2LUcw2f5Oz2ZALIUfYuCA&oe=69B6F054&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015674\",\"waveform\":\"ABUdFxA8R19dXWFiXF9gV19hYl04TlFKRVw8I0hHR1hcQU1OJzRVX1NHGjxYXV46TVxYQztITWBgYlExU1BEXQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015677,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:57.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:47:57'),
(11910, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:57.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:47:57'),
(11911, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:57.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:47:58'),
(11912, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:57.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:47:58'),
(11913, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5B8FF41972194724E8414090BADCF70\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635750471_1392684792603437_7976668931230674172_n.enc?ccb=11-4&oh=01_Q5Aa3wGuthQleHizpeuGmxD53L-n_2LUcw2f5Oz2ZALIUfYuCA&oe=69B6F054&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4o9FCfm4ZUPseJq99aEZIDVIcYJ9lxwV+fDLQ9jPWnI=\",\"fileLength\":\"9973\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"fKeYNW6rg0MawSZr9wAhmUz+1nDp8imY36o9E7HLr6U=\",\"fileEncSha256\":\"JJ7KKS5LXp+7H\\/\\/rs98BCyjYDrPsaAk2QAilLiDEuEA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635750471_1392684792603437_7976668931230674172_n.enc?ccb=11-4&oh=01_Q5Aa3wGuthQleHizpeuGmxD53L-n_2LUcw2f5Oz2ZALIUfYuCA&oe=69B6F054&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015674\",\"waveform\":\"ABUdFxA8R19dXWFiXF9gV19hYl04TlFKRVw8I0hHR1hcQU1OJzRVX1NHGjxYXV46TVxYQztITWBgYlExU1BEXQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015677,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:57.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:47:58'),
(11914, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:57.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:47:58'),
(11915, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B8FF41972194724E8414090BADCF70\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015678781,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:58.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:47:58'),
(11916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B8FF41972194724E8414090BADCF70\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015678781,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:47:58.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:47:59'),
(11917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B8FF41972194724E8414090BADCF70\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015686741,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:06.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:48:07'),
(11918, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B8FF41972194724E8414090BADCF70\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015686741,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:06.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:48:07'),
(11919, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B8FF41972194724E8414090BADCF70\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015687486,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:07.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:48:07'),
(11920, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5B8FF41972194724E8414090BADCF70\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015687486,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:07.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:48:07'),
(11921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:19.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:19'),
(11922, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:19.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:19'),
(11923, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:24.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:25'),
(11924, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:24.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:25'),
(11925, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:25'),
(11926, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC8B455F7763A1149D6C21DC18C7B807\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633046410_1408130027520373_7622515012169708329_n.enc?ccb=11-4&oh=01_Q5Aa3wEI80a9fyEY2qMOEvAxAlGR6A39afvAPT66CZbIxXpb_A&oe=69B6ECDF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cBdGMp5NAcO\\/ewlvc68vXMVJWF0mTB\\/Ef6zf4yz1dj8=\",\"fileLength\":\"12675\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"MwcwlhCEMaH2TsVjn7ryofx7obPMir798lwsNv9zO8s=\",\"fileEncSha256\":\"acNxiIRVG+8NNBh3EWPBysry6JXVlec19lm8dP0B4vM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633046410_1408130027520373_7622515012169708329_n.enc?ccb=11-4&oh=01_Q5Aa3wEI80a9fyEY2qMOEvAxAlGR6A39afvAPT66CZbIxXpb_A&oe=69B6ECDF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015701\",\"waveform\":\"AD5BKhBaWEJEEQAAAABEQUw\\/LkY2JTo6OSgAAAAAAAAAAAAAS01HRTc5KzlURS4nOBoqNDAnJydBNUxEQQFNSg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8s61Wv+MgTwFfPGailj+ERAKTwREEgaGuu2ZsqJqAdQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015705,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:48:25'),
(11927, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:25'),
(11928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:26'),
(11929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:26'),
(11930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:26'),
(11931, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:26'),
(11932, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC8B455F7763A1149D6C21DC18C7B807\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633046410_1408130027520373_7622515012169708329_n.enc?ccb=11-4&oh=01_Q5Aa3wEI80a9fyEY2qMOEvAxAlGR6A39afvAPT66CZbIxXpb_A&oe=69B6ECDF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cBdGMp5NAcO\\/ewlvc68vXMVJWF0mTB\\/Ef6zf4yz1dj8=\",\"fileLength\":\"12675\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"MwcwlhCEMaH2TsVjn7ryofx7obPMir798lwsNv9zO8s=\",\"fileEncSha256\":\"acNxiIRVG+8NNBh3EWPBysry6JXVlec19lm8dP0B4vM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633046410_1408130027520373_7622515012169708329_n.enc?ccb=11-4&oh=01_Q5Aa3wEI80a9fyEY2qMOEvAxAlGR6A39afvAPT66CZbIxXpb_A&oe=69B6ECDF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015701\",\"waveform\":\"AD5BKhBaWEJEEQAAAABEQUw\\/LkY2JTo6OSgAAAAAAAAAAAAAS01HRTc5KzlURS4nOBoqNDAnJydBNUxEQQFNSg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8s61Wv+MgTwFfPGailj+ERAKTwREEgaGuu2ZsqJqAdQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015705,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:25.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:48:26'),
(11933, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:43'),
(11934, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:43'),
(11935, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5FDE1F52B8680AE1E19A5C181712CFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635082774_879656664984977_5955802150497227915_n.enc?ccb=11-4&oh=01_Q5Aa3wHzlzgBuRb82Gous2wxW1_RRkwpxKBvxM7s29o6G4HnJg&oe=69B7159C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"p53Iod0wWskqUNYTSS7SP3YmxGAVe33p0ePhHaf\\/hH0=\",\"fileLength\":\"8934\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"0DSRx1ZiCCQqfzalb+sjqARbtEJiau8G9sFL+kNlf\\/c=\",\"fileEncSha256\":\"M2PYB76xAp52D3mfdAyu6HGqa1C7EL7akR\\/d3zKIkLU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635082774_879656664984977_5955802150497227915_n.enc?ccb=11-4&oh=01_Q5Aa3wHzlzgBuRb82Gous2wxW1_RRkwpxKBvxM7s29o6G4HnJg&oe=69B7159C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015720\",\"waveform\":\"AAAFCAYFCQUDIU9bX15gYlpTVlNXVE9NNkRRSDtdSiY1KVNBO0hKTU1TREJGNTNBSDdOShdLVFJWWTZZVkNFLA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015722,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:48:43'),
(11936, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5FDE1F52B8680AE1E19A5C181712CFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015723307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:48:43'),
(11937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:48:43'),
(11938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5FDE1F52B8680AE1E19A5C181712CFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635082774_879656664984977_5955802150497227915_n.enc?ccb=11-4&oh=01_Q5Aa3wHzlzgBuRb82Gous2wxW1_RRkwpxKBvxM7s29o6G4HnJg&oe=69B7159C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"p53Iod0wWskqUNYTSS7SP3YmxGAVe33p0ePhHaf\\/hH0=\",\"fileLength\":\"8934\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"0DSRx1ZiCCQqfzalb+sjqARbtEJiau8G9sFL+kNlf\\/c=\",\"fileEncSha256\":\"M2PYB76xAp52D3mfdAyu6HGqa1C7EL7akR\\/d3zKIkLU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635082774_879656664984977_5955802150497227915_n.enc?ccb=11-4&oh=01_Q5Aa3wHzlzgBuRb82Gous2wxW1_RRkwpxKBvxM7s29o6G4HnJg&oe=69B7159C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015720\",\"waveform\":\"AAAFCAYFCQUDIU9bX15gYlpTVlNXVE9NNkRRSDtdSiY1KVNBO0hKTU1TREJGNTNBSDdOShdLVFJWWTZZVkNFLA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015722,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:48:44'),
(11939, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5FDE1F52B8680AE1E19A5C181712CFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015723307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:48:44'),
(11940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:43.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:48:44'),
(11941, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5FDE1F52B8680AE1E19A5C181712CFE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015725596,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:45.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:48:45'),
(11942, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5FDE1F52B8680AE1E19A5C181712CFE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015725596,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:48:45.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:48:45'),
(11943, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:21.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:21'),
(11944, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:21.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:21'),
(11945, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:31.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:31'),
(11946, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:31.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:32'),
(11947, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:33.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:33'),
(11948, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8096197951535@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:33.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:33'),
(11949, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5BE96B1812FE325E69A786A80973E3C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31795145_2242908069868016_5415766459455973020_n.enc?ccb=11-4&oh=01_Q5Aa3wFQnZODL1iaNVKz6rUjVUcegaSvMnq3U0ntmzGhc8qBTQ&oe=69B6EC9C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+oNTDFqc3EzA7UXlATY6W2FYDWycwUo8nlxOfj+iNYA=\",\"fileLength\":\"15216\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"k+9fbJPg2txgeWSItMHQ8ElJ5d5AKw3teG\\/KIihkXXw=\",\"fileEncSha256\":\"oSvPLOc7PSMolrmGXxqkg7qk+kQpHreqkKhYa01VFCw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31795145_2242908069868016_5415766459455973020_n.enc?ccb=11-4&oh=01_Q5Aa3wFQnZODL1iaNVKz6rUjVUcegaSvMnq3U0ntmzGhc8qBTQ&oe=69B6EC9C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015768\",\"waveform\":\"AAELEAcDCQkcWFs3T15BUUw8WlVFJAhPRUxYWVhJRFFUK104KE9QTjs6TTUDE0gjVE9BUk1HQx5FJUtQRhk0JA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:33.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:49:33'),
(11950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:33.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:33'),
(11951, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8096197951535@lid\",\"fromMe\":true,\"id\":\"A5BE96B1812FE325E69A786A80973E3C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31795145_2242908069868016_5415766459455973020_n.enc?ccb=11-4&oh=01_Q5Aa3wFQnZODL1iaNVKz6rUjVUcegaSvMnq3U0ntmzGhc8qBTQ&oe=69B6EC9C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+oNTDFqc3EzA7UXlATY6W2FYDWycwUo8nlxOfj+iNYA=\",\"fileLength\":\"15216\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"k+9fbJPg2txgeWSItMHQ8ElJ5d5AKw3teG\\/KIihkXXw=\",\"fileEncSha256\":\"oSvPLOc7PSMolrmGXxqkg7qk+kQpHreqkKhYa01VFCw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31795145_2242908069868016_5415766459455973020_n.enc?ccb=11-4&oh=01_Q5Aa3wFQnZODL1iaNVKz6rUjVUcegaSvMnq3U0ntmzGhc8qBTQ&oe=69B6EC9C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015768\",\"waveform\":\"AAELEAcDCQkcWFs3T15BUUw8WlVFJAhPRUxYWVhJRFFUK104KE9QTjs6TTUDE0gjVE9BUk1HQx5FJUtQRhk0JA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:33.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:49:33'),
(11952, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:33.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:34'),
(11953, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:37.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:37'),
(11954, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:37.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:37'),
(11955, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:41.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:41'),
(11956, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:41.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:41'),
(11957, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:41.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:42'),
(11958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACBDE757E7F285EFDE0CD0E0EC91216F\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634821725_874903108749667_8014614786195516825_n.enc?ccb=11-4&oh=01_Q5Aa3wG7khIsOuY3DdVbdCoc-3mwc4rwsXxBrMzZBJX3Y-Vucw&oe=69B6FBAB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OA6wp9j3lrTThosZRbdjRLA6V2lQFNoKtKgN1QVL710=\",\"fileLength\":\"44496\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"R4BoZTru7PATmehnZ9GFjAKW6qqO33t\\/M63anOfKTa8=\",\"fileEncSha256\":\"vwmsLEVHpKnE83MF93IZe4vC939GCMdU7vItkvXm1vY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634821725_874903108749667_8014614786195516825_n.enc?ccb=11-4&oh=01_Q5Aa3wG7khIsOuY3DdVbdCoc-3mwc4rwsXxBrMzZBJX3Y-Vucw&oe=69B6FBAB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015763\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"waveform\":\"EStiVykzITgbJCFTH1lLKExUWy8qHzUyR1FUWzdVYFRSSFJIViAgREI3TSIlWV5IOk0tXDUxRUYlKk82Lj8tJA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sGdbTncXO5uM\\/YPf7Lqq+5DmfNB7m4qKDxvQk03QNK8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:41.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:49:42'),
(11959, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:41.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:42'),
(11960, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACBDE757E7F285EFDE0CD0E0EC91216F\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634821725_874903108749667_8014614786195516825_n.enc?ccb=11-4&oh=01_Q5Aa3wG7khIsOuY3DdVbdCoc-3mwc4rwsXxBrMzZBJX3Y-Vucw&oe=69B6FBAB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OA6wp9j3lrTThosZRbdjRLA6V2lQFNoKtKgN1QVL710=\",\"fileLength\":\"44496\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"R4BoZTru7PATmehnZ9GFjAKW6qqO33t\\/M63anOfKTa8=\",\"fileEncSha256\":\"vwmsLEVHpKnE83MF93IZe4vC939GCMdU7vItkvXm1vY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634821725_874903108749667_8014614786195516825_n.enc?ccb=11-4&oh=01_Q5Aa3wG7khIsOuY3DdVbdCoc-3mwc4rwsXxBrMzZBJX3Y-Vucw&oe=69B6FBAB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015763\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"waveform\":\"EStiVykzITgbJCFTH1lLKExUWy8qHzUyR1FUWzdVYFRSSFJIViAgREI3TSIlWV5IOk0tXDUxRUYlKk82Lj8tJA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sGdbTncXO5uM\\/YPf7Lqq+5DmfNB7m4qKDxvQk03QNK8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":21},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:41.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:49:42'),
(11961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:42.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:42'),
(11962, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:42.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:43'),
(11963, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:42.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:43'),
(11964, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:42.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:49:43'),
(11965, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:42.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:43'),
(11966, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:42.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:49:43'),
(11967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":false,\"id\":\"A5F16FADEE43AC2DFEDA95EF70FB0282\"},\"pushName\":\"Lcs TV\",\"message\":{\"conversation\":\"Boa tarde \\nTd bem ???\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NnfoQc2F8BPWSNRHxgzckLPSvyA48jR7LvSr02A\\/Pe0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:49:45'),
(11968, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:45'),
(11969, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:45');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(11970, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":false,\"id\":\"A5F16FADEE43AC2DFEDA95EF70FB0282\"},\"pushName\":\"Lcs TV\",\"message\":{\"conversation\":\"Boa tarde \\nTd bem ???\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NnfoQc2F8BPWSNRHxgzckLPSvyA48jR7LvSr02A\\/Pe0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:49:45'),
(11971, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:45'),
(11972, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:46'),
(11973, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:46'),
(11974, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:49:46'),
(11975, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:46.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:46'),
(11976, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:46'),
(11977, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:46.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:47'),
(11978, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:45.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:49:47'),
(11979, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:57.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:57'),
(11980, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:57.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:49:57'),
(11981, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:57.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:57'),
(11982, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"presences\":{\"251633711743067@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:49:57.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:49:57'),
(11983, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":true,\"id\":\"A5374867D59E8B9AAAED2ADB9C7964A9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boaaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:05'),
(11984, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":true,\"id\":\"A5374867D59E8B9AAAED2ADB9C7964A9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boaaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:05'),
(11985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":false,\"id\":\"A5EA6FA7F02C4588AF87E068BB129026\"},\"pushName\":\"Lcs TV\",\"message\":{\"conversation\":\"Jonhy preciso de 20 créditos\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"b8Oe1m8jb82ka5XW2U9jWkgXHIv4mnv4rPQk1VdI8ks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:05'),
(11986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:05'),
(11987, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:05'),
(11988, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A5374867D59E8B9AAAED2ADB9C7964A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015806096,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:06.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:06'),
(11989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:06'),
(11990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:06'),
(11991, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":false,\"id\":\"A5EA6FA7F02C4588AF87E068BB129026\"},\"pushName\":\"Lcs TV\",\"message\":{\"conversation\":\"Jonhy preciso de 20 créditos\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"b8Oe1m8jb82ka5XW2U9jWkgXHIv4mnv4rPQk1VdI8ks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:06'),
(11992, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A5374867D59E8B9AAAED2ADB9C7964A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015806096,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:06.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:06'),
(11993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:07'),
(11994, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":true,\"id\":\"A53E0C710935A5182B38D742744A7BBA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771015805927\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771015806,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:06.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:07'),
(11995, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:07'),
(11996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A53E0C710935A5182B38D742744A7BBA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015807374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:07'),
(11997, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":true,\"id\":\"A53E0C710935A5182B38D742744A7BBA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771015805927\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771015806,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:06.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:07'),
(11998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:08'),
(11999, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:08'),
(12000, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A53E0C710935A5182B38D742744A7BBA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015807374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:08'),
(12001, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:08'),
(12002, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:08'),
(12003, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A51359500FBE6AEDA6D97F75ABBA329A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015807726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:09'),
(12004, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:09'),
(12005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A51359500FBE6AEDA6D97F75ABBA329A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015807726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:09'),
(12006, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":true,\"id\":\"A51359500FBE6AEDA6D97F75ABBA329A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771015806817\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771015807,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:09'),
(12007, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:09'),
(12008, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":true,\"id\":\"A51359500FBE6AEDA6D97F75ABBA329A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771015806817\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771015807,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:07.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:10'),
(12009, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:10'),
(12010, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:10'),
(12011, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:06.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:10'),
(12012, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:10'),
(12013, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:05.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:11'),
(12014, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:06.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:11'),
(12015, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5BE96B1812FE325E69A786A80973E3C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015815271,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:15.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:15'),
(12016, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5BE96B1812FE325E69A786A80973E3C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015815271,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:15.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:15'),
(12017, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5BE96B1812FE325E69A786A80973E3C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015817568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:17.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:17'),
(12018, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5BE96B1812FE325E69A786A80973E3C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015817729,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:17.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:17'),
(12019, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5BE96B1812FE325E69A786A80973E3C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015817568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:17.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:17'),
(12020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8096197951535@lid\",\"id\":\"A5BE96B1812FE325E69A786A80973E3C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771015817729,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:17.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:17'),
(12021, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:24.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:24'),
(12022, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:24.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:24'),
(12023, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:33.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:33'),
(12024, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:33.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:33'),
(12025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:33.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:33'),
(12026, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A5D0D1B508830FB8392\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19263173_1370624651500868_4988523491801874275_n.enc?ccb=11-4&oh=01_Q5Aa3wGDxjAXOk97UXynAL1RGnrgfUxw0Bc7zipdKCxJr0gYMg&oe=69B70B21&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"iEtpuvElPw6Nb4RWom7d931kO7cmc5MDb16OLDuWyWk=\",\"fileLength\":\"19388\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"qsSzIeojOxIQPM942ieyh4mB5KvxvH8A+2wdhTmlNnw=\",\"fileEncSha256\":\"my0YSeEnwt1pYEci3zBzZBfxbY3pe8S+UkC3bN5SeHw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19263173_1370624651500868_4988523491801874275_n.enc?ccb=11-4&oh=01_Q5Aa3wGDxjAXOk97UXynAL1RGnrgfUxw0Bc7zipdKCxJr0gYMg&oe=69B70B21&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015824\",\"streamingSidecar\":\"G3a4R7qq5CkQCA==\",\"waveform\":\"AA4THCQnKjMqQ1xkXlxkZGRkUD08QkBRRUE9Nj5FODheR1lkZGRkZGRkUEJGVV5DMCNMZFtUZGRkU0Q2MjQrJQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771014447\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RK7yJ\\/4jQEf\\/24RioXfBMq\\/6fksZPkjF3e6eKS3lkW0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015833,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:33.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:33'),
(12027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:33.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:34'),
(12028, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A5D0D1B508830FB8392\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19263173_1370624651500868_4988523491801874275_n.enc?ccb=11-4&oh=01_Q5Aa3wGDxjAXOk97UXynAL1RGnrgfUxw0Bc7zipdKCxJr0gYMg&oe=69B70B21&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"iEtpuvElPw6Nb4RWom7d931kO7cmc5MDb16OLDuWyWk=\",\"fileLength\":\"19388\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"qsSzIeojOxIQPM942ieyh4mB5KvxvH8A+2wdhTmlNnw=\",\"fileEncSha256\":\"my0YSeEnwt1pYEci3zBzZBfxbY3pe8S+UkC3bN5SeHw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19263173_1370624651500868_4988523491801874275_n.enc?ccb=11-4&oh=01_Q5Aa3wGDxjAXOk97UXynAL1RGnrgfUxw0Bc7zipdKCxJr0gYMg&oe=69B70B21&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015824\",\"streamingSidecar\":\"G3a4R7qq5CkQCA==\",\"waveform\":\"AA4THCQnKjMqQ1xkXlxkZGRkUD08QkBRRUE9Nj5FODheR1lkZGRkZGRkUEJGVV5DMCNMZFtUZGRkU0Q2MjQrJQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771014447\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RK7yJ\\/4jQEf\\/24RioXfBMq\\/6fksZPkjF3e6eKS3lkW0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015833,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:33.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:34'),
(12029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:34.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:34'),
(12030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:34.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:34'),
(12031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:34.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:34'),
(12032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:34.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:34'),
(12033, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:34.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:35'),
(12034, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:34.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:36'),
(12035, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:44.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:44'),
(12036, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:44.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:44'),
(12037, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:46.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:46'),
(12038, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:46.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:47'),
(12039, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:47.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:47'),
(12040, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:47.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:48'),
(12041, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:55.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12042, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8096197951535@lid\",\"presences\":{\"8096197951535@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:55.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:56'),
(12043, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:56'),
(12044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE3294F6DA8D4E8B177\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635058942_927654953546651_725265587133477958_n.enc?ccb=11-4&oh=01_Q5Aa3wEu58Ibfpiu9c_Es89mmOsK1ddyAINddiEXwSMpA1okOg&oe=69B6E875&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Tx6X5C6oE+Lo1HbEmeIUcJBTwlL0eAANxYKRZOTZ64k=\",\"fileLength\":\"18351\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"EOGJdjXP7r55qebEqXysW7FFYg7YD5Te23AgNn7E3lw=\",\"fileEncSha256\":\"+ZPLtbf6Ebc1jNJcoXGDLZ8VFAMtmVf3IhgPKnJBIvA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635058942_927654953546651_725265587133477958_n.enc?ccb=11-4&oh=01_Q5Aa3wEu58Ibfpiu9c_Es89mmOsK1ddyAINddiEXwSMpA1okOg&oe=69B6E875&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015847\",\"streamingSidecar\":\"\\/OqEChT+PW\\/tag==\",\"waveform\":\"ABIYOF1IX2RWTVhCKxwWFRwhICgyKCMoMTcyLyxATjUrNU1VPjEtMjMqJCgkLkFKTUpGTWRkYmNkZGRkZGJgXw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771014447\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cYQSwfu+4GJ6Qq\\/F\\/efYcXH\\/Kr1CL4CNl0ldsogGIdo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015856,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:50:56'),
(12045, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:56'),
(12046, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553391118088@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE3294F6DA8D4E8B177\"},\"pushName\":\"Andre (Ti dee)\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635058942_927654953546651_725265587133477958_n.enc?ccb=11-4&oh=01_Q5Aa3wEu58Ibfpiu9c_Es89mmOsK1ddyAINddiEXwSMpA1okOg&oe=69B6E875&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Tx6X5C6oE+Lo1HbEmeIUcJBTwlL0eAANxYKRZOTZ64k=\",\"fileLength\":\"18351\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"EOGJdjXP7r55qebEqXysW7FFYg7YD5Te23AgNn7E3lw=\",\"fileEncSha256\":\"+ZPLtbf6Ebc1jNJcoXGDLZ8VFAMtmVf3IhgPKnJBIvA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635058942_927654953546651_725265587133477958_n.enc?ccb=11-4&oh=01_Q5Aa3wEu58Ibfpiu9c_Es89mmOsK1ddyAINddiEXwSMpA1okOg&oe=69B6E875&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015847\",\"streamingSidecar\":\"\\/OqEChT+PW\\/tag==\",\"waveform\":\"ABIYOF1IX2RWTVhCKxwWFRwhICgyKCMoMTcyLyxATjUrNU1VPjEtMjMqJCgkLkFKTUpGTWRkYmNkZGRkZGJgXw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771014447\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cYQSwfu+4GJ6Qq\\/F\\/efYcXH\\/Kr1CL4CNl0ldsogGIdo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015856,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:50:56'),
(12047, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:57'),
(12048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:50:57'),
(12049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553391118088@s.whatsapp.net\",\"pushName\":\"Ti 8088 $70 Void E Ios Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:57'),
(12050, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553391118088@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582624771_743204108607526_1691298525279853505_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgT4WGfDMNceHl3nlMXWTb424DvAfvPU7X09_Qn8JeJA&oe=699CB861&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:50:56.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:50:57'),
(12051, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A51359500FBE6AEDA6D97F75ABBA329A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015869602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:09.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:51:09'),
(12052, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A53E0C710935A5182B38D742744A7BBA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015869607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:09.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:51:09'),
(12053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A5374867D59E8B9AAAED2ADB9C7964A9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015869613,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:09.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:51:09'),
(12054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A51359500FBE6AEDA6D97F75ABBA329A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015869602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:09.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:51:09'),
(12055, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A53E0C710935A5182B38D742744A7BBA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015869607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:09.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:51:09'),
(12056, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31701287886904@lid\",\"id\":\"A5374867D59E8B9AAAED2ADB9C7964A9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771015869613,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:09.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:51:10'),
(12057, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"presences\":{\"31701287886904@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:14.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:14'),
(12058, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"presences\":{\"31701287886904@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:14.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:14'),
(12059, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:15.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:15'),
(12060, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"ACE613D94F782CD39487F691F4EE87B7\"},\"pushName\":\"Élcio\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UjJ6bVSeeyJ+izlFeKBFEDQcP0EsyXYj5kd0SqhaYYU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015875,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:15.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:51:15'),
(12061, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:15.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:15'),
(12062, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31701287886904@lid\",\"fromMe\":false,\"id\":\"ACE613D94F782CD39487F691F4EE87B7\"},\"pushName\":\"Élcio\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UjJ6bVSeeyJ+izlFeKBFEDQcP0EsyXYj5kd0SqhaYYU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015875,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:15.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:51:15'),
(12063, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:15.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:15'),
(12064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:15.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:16'),
(12065, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:16.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:16'),
(12066, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31701287886904@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620609184_25129760000035810_2198596223050553973_n.jpg?ccb=11-4&oh=01_Q5Aa3wGz-kfMg7mnU8NANHnNznhyn7DBLvSn5a7xepAHdwGVnQ&oe=699CA3E0&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:16.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:16'),
(12067, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:48.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:48'),
(12068, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:48.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:49'),
(12069, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:57'),
(12070, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC63723FAF3F03A741CF1E1C46B5A423\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Deu certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YkuOwhCKdEA1S4c4sHM6JxRu\\/w5KyjZrEcKvOPEVb+Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015917,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:51:57'),
(12071, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:57'),
(12072, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:57'),
(12073, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:51:57'),
(12074, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:57'),
(12075, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC63723FAF3F03A741CF1E1C46B5A423\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Deu certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YkuOwhCKdEA1S4c4sHM6JxRu\\/w5KyjZrEcKvOPEVb+Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015917,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:51:58'),
(12076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:51:57.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:51:58'),
(12077, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:01.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:01'),
(12078, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:01.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:01'),
(12079, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:03.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:03'),
(12080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"142124913795224@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:03.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:03'),
(12081, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A550E4D9BDE96D193B52F7C5BB62C0CC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771015922835\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771015923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:03.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:04'),
(12082, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvx5T3fQYYAf4IE635rIahzyoyHUkb7bdTj7BkHRr03w&oe=699CB80E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:04.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:04'),
(12083, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"142124913795224@lid\",\"fromMe\":true,\"id\":\"A550E4D9BDE96D193B52F7C5BB62C0CC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771015922835\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771015923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:03.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:04'),
(12084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"142124913795224@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605140668_25323970953938755_2086436126424172061_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvx5T3fQYYAf4IE635rIahzyoyHUkb7bdTj7BkHRr03w&oe=699CB80E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:04.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:04'),
(12085, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:05'),
(12086, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC1CE8D6D8858D372AB0ECC87E13995C\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XMfZ9tvH0CZ+eSwZ4DuJFJMLQ70DmNnNpSLzK50\\/YGU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015925,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:05'),
(12087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:05'),
(12088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:06'),
(12089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"AC1CE8D6D8858D372AB0ECC87E13995C\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XMfZ9tvH0CZ+eSwZ4DuJFJMLQ70DmNnNpSLzK50\\/YGU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015925,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:06'),
(12090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:06'),
(12091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A550E4D9BDE96D193B52F7C5BB62C0CC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015925854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:06'),
(12092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:06.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:06'),
(12093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A550E4D9BDE96D193B52F7C5BB62C0CC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015925854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:05.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:06'),
(12094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:06.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:06'),
(12095, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:07.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:07'),
(12096, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:07.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:07'),
(12097, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:09.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:09'),
(12098, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:09.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:09'),
(12099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:13.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:13'),
(12100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A54B7C4D5FDE65F7862EDA797D297AD1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boomm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015933,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:13.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:13'),
(12101, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:13.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:14'),
(12102, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A54B7C4D5FDE65F7862EDA797D297AD1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boomm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015933,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:13.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:14'),
(12103, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:13.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:14'),
(12104, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:13.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:14'),
(12105, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A54B7C4D5FDE65F7862EDA797D297AD1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015934913,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:14.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:14'),
(12106, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A54B7C4D5FDE65F7862EDA797D297AD1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015934913,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:14.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:15'),
(12107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:16'),
(12108, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:16'),
(12109, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A5CC54D1CB3CFEC02E9EB0DE5AE07719\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ja\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015936,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:16'),
(12110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:16'),
(12111, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5CC54D1CB3CFEC02E9EB0DE5AE07719\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015936966,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:17'),
(12112, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:17'),
(12113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A5CC54D1CB3CFEC02E9EB0DE5AE07719\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ja\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015936,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5CC54D1CB3CFEC02E9EB0DE5AE07719\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015936966,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:16.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:17'),
(12115, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:18'),
(12116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A5083B6CF493FE2D448EC09A19246559\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDQ6WC24WN\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771015938,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:18'),
(12117, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:18'),
(12118, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:18'),
(12119, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A5083B6CF493FE2D448EC09A19246559\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDQ6WC24WN\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771015938,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:18'),
(12120, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdgFzvF5aWIB1zGUQv8yt_DcCX3TMr-67U_scudMiKfw&oe=699C87C7&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:19'),
(12121, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5083B6CF493FE2D448EC09A19246559\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015938844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:19'),
(12122, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5083B6CF493FE2D448EC09A19246559\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015938844,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:18.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:19'),
(12123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:26.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:26'),
(12124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5F584FB6558BB74EA62171E05AE524B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boom\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015946,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:26.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:26'),
(12125, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:26.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:26'),
(12126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:26.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:26'),
(12127, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5F584FB6558BB74EA62171E05AE524B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boom\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771015946,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:26.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:26'),
(12128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:26.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:27'),
(12129, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5F584FB6558BB74EA62171E05AE524B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015947319,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:27.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:27'),
(12130, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5F584FB6558BB74EA62171E05AE524B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015947319,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:27.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:27'),
(12131, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:41.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:42'),
(12132, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A598C65ED0464D0E120B3C199A85A833\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591810167_1384284326830857_8134274703377037637_n.enc?ccb=11-4&oh=01_Q5Aa3wHJwEwC5ugPL3rynHZJmZyaVsL76PxAo-nnvCknA62NkA&oe=69B7122A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gwiYiOvnPCawV0G2vdkWNVZkDVlBoUz0ANrUkGG37H0=\",\"fileLength\":\"12646\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"Ps68T3\\/3TMePcWo6YEMQw9aBw8QAui+aWudiEIcXLM8=\",\"fileEncSha256\":\"yz\\/Q+3XlbaYO6ITb6uljHdo2vLOn20Anmkc\\/sIyCi2A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591810167_1384284326830857_8134274703377037637_n.enc?ccb=11-4&oh=01_Q5Aa3wHJwEwC5ugPL3rynHZJmZyaVsL76PxAo-nnvCknA62NkA&oe=69B7122A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015957\",\"waveform\":\"ADw+QmFgXE9jVUFIVltQR1dbY2NcTDtfY2BeXExAKzpXVz4bXkhNUjdbT1ZbVzNCM1hWSTgnLV9RS04lOVxFQg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015961,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:41.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:42'),
(12133, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:42.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:42'),
(12134, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:41.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:42'),
(12135, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A598C65ED0464D0E120B3C199A85A833\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/591810167_1384284326830857_8134274703377037637_n.enc?ccb=11-4&oh=01_Q5Aa3wHJwEwC5ugPL3rynHZJmZyaVsL76PxAo-nnvCknA62NkA&oe=69B7122A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gwiYiOvnPCawV0G2vdkWNVZkDVlBoUz0ANrUkGG37H0=\",\"fileLength\":\"12646\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"Ps68T3\\/3TMePcWo6YEMQw9aBw8QAui+aWudiEIcXLM8=\",\"fileEncSha256\":\"yz\\/Q+3XlbaYO6ITb6uljHdo2vLOn20Anmkc\\/sIyCi2A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/591810167_1384284326830857_8134274703377037637_n.enc?ccb=11-4&oh=01_Q5Aa3wHJwEwC5ugPL3rynHZJmZyaVsL76PxAo-nnvCknA62NkA&oe=69B7122A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771015957\",\"waveform\":\"ADw+QmFgXE9jVUFIVltQR1dbY2NcTDtfY2BeXExAKzpXVz4bXkhNUjdbT1ZbVzNCM1hWSTgnLV9RS04lOVxFQg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771015961,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:41.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:42'),
(12136, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A598C65ED0464D0E120B3C199A85A833\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015962279,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:42.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:52:42'),
(12137, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A598C65ED0464D0E120B3C199A85A833\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771015962279,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:42.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:52:42'),
(12138, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:42.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:43'),
(12139, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:47.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:47'),
(12140, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:47.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:47'),
(12141, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:57.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:52:58'),
(12142, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:52:57.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:52:58'),
(12143, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:07.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:07'),
(12144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:07.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:08'),
(12145, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:16.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:16'),
(12146, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:16.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:17'),
(12147, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACA9B5048F6D48A25075748B8C0EA373\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Vou desligaram por causa da trovoada,se der algum problema aviso\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wWVUtIYJQGsu4PiW\\/tNqBPMRPzeLw\\/xJpOI87P0cYh4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015996,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:16.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:53:17'),
(12148, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:17.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:17'),
(12149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:17.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:17'),
(12150, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACA9B5048F6D48A25075748B8C0EA373\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Vou desligaram por causa da trovoada,se der algum problema aviso\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wWVUtIYJQGsu4PiW\\/tNqBPMRPzeLw\\/xJpOI87P0cYh4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771015996,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:16.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:53:17'),
(12151, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:17.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:18'),
(12152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:17.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:18'),
(12153, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5D9A7A17AFD2FD3664B15032CBCB8E8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wGnzgBJ3kIWut6hplgBJrHjMuRKIFrs-i6D1oc6l8E78A&oe=69B6F246&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wGnzgBJ3kIWut6hplgBJrHjMuRKIFrs-i6D1oc6l8E78A&oe=69B6F246&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"stickerSentTs\":\"1771016000148\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016000,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:20.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:53:20'),
(12154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:20.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:20'),
(12155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:20.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:21'),
(12156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5D9A7A17AFD2FD3664B15032CBCB8E8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wGnzgBJ3kIWut6hplgBJrHjMuRKIFrs-i6D1oc6l8E78A&oe=69B6F246&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"3bXNskusSTPHCqRk1QRLa\\/q1WK+GFELjTYYsuR9iHaM=\",\"mediaKey\":\"yVOiZrVDn\\/LVZEccpFlqSCXbm0R43dQMFfEEAcrLZH8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/628343554_919144900799700_4131967697908963754_n.enc?ccb=11-4&oh=01_Q5Aa3wGnzgBJ3kIWut6hplgBJrHjMuRKIFrs-i6D1oc6l8E78A&oe=69B6F246&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1770825297\",\"isAnimated\":false,\"stickerSentTs\":\"1771016000148\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016000,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:20.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:53:21'),
(12157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:21.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:21'),
(12158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:21.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:21'),
(12159, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5D9A7A17AFD2FD3664B15032CBCB8E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016001546,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:21.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:53:21'),
(12160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5D9A7A17AFD2FD3664B15032CBCB8E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016001546,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:21.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:53:22'),
(12161, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:29.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:29'),
(12162, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:29.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:29'),
(12163, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:39.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:39'),
(12164, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:39.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:40'),
(12165, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:42.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:42'),
(12166, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:42.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:42'),
(12167, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:48.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:48'),
(12168, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:48.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:53:48'),
(12169, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5CC54D1CB3CFEC02E9EB0DE5AE07719\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016030580,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:50.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:53:50'),
(12170, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5083B6CF493FE2D448EC09A19246559\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016030585,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:50.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:53:50'),
(12171, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5CC54D1CB3CFEC02E9EB0DE5AE07719\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016030580,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:50.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:53:50'),
(12172, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5083B6CF493FE2D448EC09A19246559\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016030585,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:50.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:53:50'),
(12173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:59.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:53:59'),
(12174, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"presences\":{\"175913320890604@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:53:59.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:54:00'),
(12175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:54:01'),
(12176, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACD5FCF9A4F3647B58D0BF3F884780D4\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ja paguei ta mandei comprovante.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GGbhVMKLZknZEPWHtHYblvGIVx8bLbihxYLAIQyMITA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771016040,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:54:01'),
(12177, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:54:01'),
(12178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:54:01'),
(12179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:54:01'),
(12180, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:54:02'),
(12181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:54:02'),
(12182, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04D2565BF38DE85ACFB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 175913320890604\\nMensagem: \\\"Ja paguei ta mandei comprovante.\\\"\\n\\nUse: \\/aprovar 175913320890604\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771016042,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:03.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:54:03'),
(12183, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04D2565BF38DE85ACFB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 175913320890604\\nMensagem: \\\"Ja paguei ta mandei comprovante.\\\"\\n\\nUse: \\/aprovar 175913320890604\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771016042,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:03.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:54:03'),
(12184, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":false,\"id\":\"ACD5FCF9A4F3647B58D0BF3F884780D4\"},\"pushName\":\"Marina Fagundes\",\"message\":{\"conversation\":\"Ja paguei ta mandei comprovante.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GGbhVMKLZknZEPWHtHYblvGIVx8bLbihxYLAIQyMITA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771016040,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:54:01.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:54:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12185, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5D64CA22BF3104E46CF8C306D0DE70F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771016098502\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:01.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:55:01'),
(12186, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175913320890604@lid\",\"fromMe\":true,\"id\":\"A5D64CA22BF3104E46CF8C306D0DE70F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771016098502\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:01.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:55:01'),
(12187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:01.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:55:01'),
(12188, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175913320890604@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:01.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:55:01'),
(12189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:01.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:55:01'),
(12190, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175913320890604@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541506111_1107802944773154_5967900198281511006_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS4yVM3BdRrR0xZyAQ_khKiw02xyYpCk4ccd6Ua1vE1Q&oe=699C9360&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:01.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:55:02'),
(12191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5D64CA22BF3104E46CF8C306D0DE70F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016127436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:27.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:55:27'),
(12192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5D64CA22BF3104E46CF8C306D0DE70F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016127436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:27.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:55:27'),
(12193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5D64CA22BF3104E46CF8C306D0DE70F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016159050,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:59.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:55:59'),
(12194, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175913320890604@lid\",\"id\":\"A5D64CA22BF3104E46CF8C306D0DE70F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016159050,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:55:59.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:55:59'),
(12195, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:02.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:02'),
(12196, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:02.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:02'),
(12197, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":true,\"id\":\"A51AFE483AC7039438A861BC965CB307\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771016162,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:02.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:02'),
(12198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:02.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:02'),
(12199, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":true,\"id\":\"A51AFE483AC7039438A861BC965CB307\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771016162,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:02.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:02'),
(12200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:02.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:03'),
(12201, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:03'),
(12202, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":true,\"id\":\"A5E7D390C36BF4288CD5603FBC352FD0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771016162860\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016163,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:03'),
(12203, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"241708025548969@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:03'),
(12204, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"241708025548969@lid\",\"fromMe\":true,\"id\":\"A5E7D390C36BF4288CD5603FBC352FD0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771016162860\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016163,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:03'),
(12205, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5E7D390C36BF4288CD5603FBC352FD0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016163996,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:04'),
(12206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:04'),
(12207, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241708025548969@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:04'),
(12208, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5E7D390C36BF4288CD5603FBC352FD0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016163996,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:04'),
(12209, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A51AFE483AC7039438A861BC965CB307\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016163915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:04'),
(12210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A51AFE483AC7039438A861BC965CB307\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016163915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:03.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:05'),
(12211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:34'),
(12212, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:34'),
(12213, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A56A35F5D4CFF5F038A6F7B69A120B7A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771016193774\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:34'),
(12214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:34'),
(12215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A56A35F5D4CFF5F038A6F7B69A120B7A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wHLAk3cgEMWeTJbfr02CJK2GH5g2OKJwj0euE1QKJ6tbA&oe=69B6ECCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771016193774\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:34'),
(12216, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A56A35F5D4CFF5F038A6F7B69A120B7A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016194813,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:35'),
(12217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A56A35F5D4CFF5F038A6F7B69A120B7A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016194813,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:35'),
(12218, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:34.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:35'),
(12219, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:35.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:36'),
(12220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5FDE762E7A97F624556677D11EFA9FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771016195167\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016195,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:35.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:36'),
(12221, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"242846040895662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:35.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:36'),
(12222, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"242846040895662@lid\",\"fromMe\":true,\"id\":\"A5FDE762E7A97F624556677D11EFA9FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wGxueqgn7aKTgRzUBVlSbOXrHIIVJG5c8gQ6I61rypAIQ&oe=69B6E9A3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771016195167\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1718221184\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771016195,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:35.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:36'),
(12223, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5FDE762E7A97F624556677D11EFA9FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016196231,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:36.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:36'),
(12224, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:36.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 17:56:36'),
(12225, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662:14@lid\",\"id\":\"A5FDE762E7A97F624556677D11EFA9FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016196231,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:36.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:36'),
(12226, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"242846040895662@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307310397_471924068322640_6722555505109135243_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPdzpnUb7JH9ggU9P6GszQR8HbEw5GlX6iFVyzmMqH6g&oe=699C9740&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:36.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 17:56:37'),
(12227, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A56A35F5D4CFF5F038A6F7B69A120B7A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016196423,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:36.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:37'),
(12228, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A56A35F5D4CFF5F038A6F7B69A120B7A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016196423,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:36.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:37'),
(12229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5FDE762E7A97F624556677D11EFA9FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016198302,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:38.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 17:56:38'),
(12230, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"242846040895662@lid\",\"id\":\"A5FDE762E7A97F624556677D11EFA9FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771016198302,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T17:56:38.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 17:56:38'),
(12231, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:15.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:15'),
(12232, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:15.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:15'),
(12233, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:16.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:16'),
(12234, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:16.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:16'),
(12235, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:17.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:17'),
(12236, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:17.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:17'),
(12237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_7amBuOqSCMtSphojNS5VSB7V4-VkvTKEkRB_mMEY7w&oe=699C9497&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:17.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:17'),
(12238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_7amBuOqSCMtSphojNS5VSB7V4-VkvTKEkRB_mMEY7w&oe=699C9497&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:17.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:17'),
(12239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:18'),
(12240, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCCF2B8F32F4A369C443259EFAFBF68\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"8xcHbPgTHl8oEA==\",\"recipientTimestamp\":\"1770763101\",\"recipientKeyIndexes\":[0,2,3]},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WlCb\\/g2nPo6jMLHb8mDXrq3Rh3vvE18lbXHzxWKorSg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771016417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:00:18'),
(12241, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:18'),
(12242, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:18'),
(12243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:18'),
(12244, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCCF2B8F32F4A369C443259EFAFBF68\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WlCb\\/g2nPo6jMLHb8mDXrq3Rh3vvE18lbXHzxWKorSg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771016417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:00:19'),
(12245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:19'),
(12246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:19'),
(12247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:19'),
(12248, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCCF2B8F32F4A369C443259EFAFBF68\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"8xcHbPgTHl8oEA==\",\"recipientTimestamp\":\"1770763101\",\"recipientKeyIndexes\":[0,2,3]},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WlCb\\/g2nPo6jMLHb8mDXrq3Rh3vvE18lbXHzxWKorSg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771016417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:00:19'),
(12249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:20'),
(12250, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:20'),
(12251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:20'),
(12252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:20'),
(12253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCCF2B8F32F4A369C443259EFAFBF68\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WlCb\\/g2nPo6jMLHb8mDXrq3Rh3vvE18lbXHzxWKorSg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771016417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:00:20'),
(12254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:18.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12255, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:25.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:25'),
(12256, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:25.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:25'),
(12257, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:32.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:32'),
(12258, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:32.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:33'),
(12259, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:33.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:33'),
(12260, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:33.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:33'),
(12261, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:34'),
(12262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:34'),
(12263, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:34'),
(12264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC9E36292E46061D9BDE630D198641EF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635787706_1439107164094659_4681046222404933646_n.enc?ccb=11-4&oh=01_Q5Aa3wFVD6keevnp5Sghbzxt40vlLiOOg2DC-LVBWYy4L-VBTQ&oe=69B70D74&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"huvoeIqDw1ZimRDI6O2mMmNvm\\/zHA1FtOwvkWYTC6gk=\",\"fileLength\":\"15877\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"tMS8mEmc4hANHn8VM\\/ZT\\/uNwK4DH\\/VZmT5yLg+Zb9FA=\",\"fileEncSha256\":\"dvuDrCtEOeul2t6QSwwboRLuORPZzRBtSCyE1TLVRe0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635787706_1439107164094659_4681046222404933646_n.enc?ccb=11-4&oh=01_Q5Aa3wFVD6keevnp5Sghbzxt40vlLiOOg2DC-LVBWYy4L-VBTQ&oe=69B70D74&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771016427\",\"waveform\":\"AAAAQjFjWDlcRyUROVxONyE9MTtEM0EmOhk2PUBQJT81Oj9NNjsEKA1LIjA4NkZAN0g9PksrHAoDBgMHDgAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qh0CoxddlF3OErkoJt0cOTaV7U7hb6G+T\\/kSQEs6wLY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771016433,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:00:34'),
(12265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:34'),
(12266, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC9E36292E46061D9BDE630D198641EF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635787706_1439107164094659_4681046222404933646_n.enc?ccb=11-4&oh=01_Q5Aa3wFVD6keevnp5Sghbzxt40vlLiOOg2DC-LVBWYy4L-VBTQ&oe=69B70D74&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"huvoeIqDw1ZimRDI6O2mMmNvm\\/zHA1FtOwvkWYTC6gk=\",\"fileLength\":\"15877\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"tMS8mEmc4hANHn8VM\\/ZT\\/uNwK4DH\\/VZmT5yLg+Zb9FA=\",\"fileEncSha256\":\"dvuDrCtEOeul2t6QSwwboRLuORPZzRBtSCyE1TLVRe0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635787706_1439107164094659_4681046222404933646_n.enc?ccb=11-4&oh=01_Q5Aa3wFVD6keevnp5Sghbzxt40vlLiOOg2DC-LVBWYy4L-VBTQ&oe=69B70D74&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771016427\",\"waveform\":\"AAAAQjFjWDlcRyUROVxONyE9MTtEM0EmOhk2PUBQJT81Oj9NNjsEKA1LIjA4NkZAN0g9PksrHAoDBgMHDgAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qh0CoxddlF3OErkoJt0cOTaV7U7hb6G+T\\/kSQEs6wLY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771016433,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:00:35'),
(12267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:00:35'),
(12268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:00:34.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:00:35'),
(12269, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":false,\"id\":\"A5D49E771703B94C96E1EE9A6BFFFABE\"},\"pushName\":\"Lcs TV\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/34553143_1925651224748319_1151768520931177907_n.enc?ccb=11-4&oh=01_Q5Aa3wHAg6h0Wv0eBa6BUf6-UafhOnw9jRPIIIf43VveoEnrlQ&oe=69B7127A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"p5TJdVqbisQ3O\\/XSmE7CXPM0YW3p1kdD7k7IVzGSS68=\",\"fileLength\":\"52145\",\"height\":1600,\"width\":476,\"mediaKey\":\"3jornn5n6Kr4HnOoP5QF1QC8ooBYUssdsH5p3HsA+Sg=\",\"fileEncSha256\":\"TJQHoqYZbt5MMkZanxnPv9S+5\\/SgLQUmCKAeMRWCTs0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/34553143_1925651224748319_1151768520931177907_n.enc?ccb=11-4&oh=01_Q5Aa3wHAg6h0Wv0eBa6BUf6-UafhOnw9jRPIIIf43VveoEnrlQ&oe=69B7127A&_nc_sid=5e03e0&_nc_hot=1771016471\",\"mediaKeyTimestamp\":\"1771016443\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFQMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAQMFAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADvbhQSgBLKRRGFNmQoAP\\/EAB8QAQACAQUAAwAAAAAAAAAAAAECEQADEBIgMRMhUf\\/aAAgBAQABPwCGqDKh9zT1pzW4UbfHH830pSZIvaB9++bcaVvBvbkWmHEbyzBDPFbyJR7h0\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"q0pMa8jxrERdLhGTu4b6iNxLrV6BdJAHjKO9Lw4prnENVBd591VYjA==\",\"scanLengths\":[4170,23845,11350,12780],\"midQualityFileSha256\":\"MFdS4KUf8S6b7r4OIkneY3yOL2mJTpH+BZiGT7f9Dbw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jcICazL7sQUiw5zgvrv5\\/t\\/CF0FkJZ5jO4hKoJykq1c=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771016472,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:01:12'),
(12270, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:01:12'),
(12271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":false,\"id\":\"A5D49E771703B94C96E1EE9A6BFFFABE\"},\"pushName\":\"Lcs TV\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/34553143_1925651224748319_1151768520931177907_n.enc?ccb=11-4&oh=01_Q5Aa3wHAg6h0Wv0eBa6BUf6-UafhOnw9jRPIIIf43VveoEnrlQ&oe=69B7127A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"p5TJdVqbisQ3O\\/XSmE7CXPM0YW3p1kdD7k7IVzGSS68=\",\"fileLength\":\"52145\",\"height\":1600,\"width\":476,\"mediaKey\":\"3jornn5n6Kr4HnOoP5QF1QC8ooBYUssdsH5p3HsA+Sg=\",\"fileEncSha256\":\"TJQHoqYZbt5MMkZanxnPv9S+5\\/SgLQUmCKAeMRWCTs0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/34553143_1925651224748319_1151768520931177907_n.enc?ccb=11-4&oh=01_Q5Aa3wHAg6h0Wv0eBa6BUf6-UafhOnw9jRPIIIf43VveoEnrlQ&oe=69B7127A&_nc_sid=5e03e0&_nc_hot=1771016471\",\"mediaKeyTimestamp\":\"1771016443\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFQMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAQMFAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADvbhQSgBLKRRGFNmQoAP\\/EAB8QAQACAQUAAwAAAAAAAAAAAAECEQADEBIgMRMhUf\\/aAAgBAQABPwCGqDKh9zT1pzW4UbfHH830pSZIvaB9++bcaVvBvbkWmHEbyzBDPFbyJR7h0\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"q0pMa8jxrERdLhGTu4b6iNxLrV6BdJAHjKO9Lw4prnENVBd591VYjA==\",\"scanLengths\":[4170,23845,11350,12780],\"midQualityFileSha256\":\"MFdS4KUf8S6b7r4OIkneY3yOL2mJTpH+BZiGT7f9Dbw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jcICazL7sQUiw5zgvrv5\\/t\\/CF0FkJZ5jO4hKoJykq1c=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771016472,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:01:12'),
(12272, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:01:12'),
(12273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:01:12'),
(12274, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:01:13'),
(12275, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:01:13'),
(12276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:12.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:01:13'),
(12277, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A51AFE483AC7039438A861BC965CB307\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016495440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:35.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:01:35'),
(12278, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A51AFE483AC7039438A861BC965CB307\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016495440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:35.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:01:35'),
(12279, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5E7D390C36BF4288CD5603FBC352FD0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016495435,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:35.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:01:35'),
(12280, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"241708025548969@lid\",\"id\":\"A5E7D390C36BF4288CD5603FBC352FD0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016495435,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:01:35.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:01:35'),
(12281, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5F584FB6558BB74EA62171E05AE524B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016757880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:57.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:05:58'),
(12282, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A598C65ED0464D0E120B3C199A85A833\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016757869,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:57.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:05:58'),
(12283, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5F584FB6558BB74EA62171E05AE524B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016757880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:57.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:05:58'),
(12284, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A598C65ED0464D0E120B3C199A85A833\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016757869,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:57.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:05:58'),
(12285, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A598C65ED0464D0E120B3C199A85A833\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771016758534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:58.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:05:58'),
(12286, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A598C65ED0464D0E120B3C199A85A833\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771016758534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:58.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:05:59'),
(12287, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"226109023080645@lid\",\"id\":\"A56B1A6BB3660B9A1E010BC4608E11DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016759095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:59.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:05:59'),
(12288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"226109023080645@lid\",\"id\":\"A56B1A6BB3660B9A1E010BC4608E11DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016759095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:05:59.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:05:59'),
(12289, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:03.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:03'),
(12290, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:03.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:03'),
(12291, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:05.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:05'),
(12292, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:05.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:05'),
(12293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A550E4D9BDE96D193B52F7C5BB62C0CC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016768660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:08.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:06:08'),
(12294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"142124913795224@lid\",\"id\":\"A550E4D9BDE96D193B52F7C5BB62C0CC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771016768660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:08.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:06:08'),
(12295, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:15.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:16'),
(12296, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:15.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:16'),
(12297, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:20.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:21'),
(12298, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:20.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:21'),
(12299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:21.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:21'),
(12300, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:21.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:21'),
(12301, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC4A4357C244DF2F46C1B702D4FCA055\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635670100_884706834435793_5491102632231310658_n.enc?ccb=11-4&oh=01_Q5Aa3wF0yf8G2mIrHabFVG-86hROOdMvTU4uYe4z1mIBeiwGfQ&oe=69B6EE9B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lVHbpwLgacwo51R+zPK5OqJnbnstWPPrRzQRA6CdsLI=\",\"fileLength\":\"34540\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"OGHTQ6RfevmRRANF3qKHaGuu1v44wHu+qovJ6g\\/brBQ=\",\"fileEncSha256\":\"yvc00UY28AbawsV1wp3xyjiHYVgOtz\\/JGvtHElzV664=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635670100_884706834435793_5491102632231310658_n.enc?ccb=11-4&oh=01_Q5Aa3wF0yf8G2mIrHabFVG-86hROOdMvTU4uYe4z1mIBeiwGfQ&oe=69B6EE9B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771016767\",\"waveform\":\"RV1jXkhHOUA6NlVUN1ZePzM0VUFTQxYjRVRUTCcaFhVAUSckLU5UVVVcPFY0VVhOOVVLV05FGRQdGFNGISQbGw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZfvoE4DlHJ+ChegB5zDvTTdNP+lYcAB3FuRjd6ICpp8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771016781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:21.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:06:22'),
(12302, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:22.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:22'),
(12303, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:21.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:06:22'),
(12304, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC4A4357C244DF2F46C1B702D4FCA055\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635670100_884706834435793_5491102632231310658_n.enc?ccb=11-4&oh=01_Q5Aa3wF0yf8G2mIrHabFVG-86hROOdMvTU4uYe4z1mIBeiwGfQ&oe=69B6EE9B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lVHbpwLgacwo51R+zPK5OqJnbnstWPPrRzQRA6CdsLI=\",\"fileLength\":\"34540\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"OGHTQ6RfevmRRANF3qKHaGuu1v44wHu+qovJ6g\\/brBQ=\",\"fileEncSha256\":\"yvc00UY28AbawsV1wp3xyjiHYVgOtz\\/JGvtHElzV664=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635670100_884706834435793_5491102632231310658_n.enc?ccb=11-4&oh=01_Q5Aa3wF0yf8G2mIrHabFVG-86hROOdMvTU4uYe4z1mIBeiwGfQ&oe=69B6EE9B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771016767\",\"waveform\":\"RV1jXkhHOUA6NlVUN1ZePzM0VUFTQxYjRVRUTCcaFhVAUSckLU5UVVVcPFY0VVhOOVVLV05FGRQdGFNGISQbGw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZfvoE4DlHJ+ChegB5zDvTTdNP+lYcAB3FuRjd6ICpp8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771016781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:21.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:06:22'),
(12305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:22.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:22'),
(12306, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:06:21.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:06:22'),
(12307, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:14:31'),
(12308, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":false,\"id\":\"4A279C5E17DFA385173C\"},\"pushName\":\"Gui\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/35282319_1429679768658612_5302267578933740784_n.enc?ccb=11-4&oh=01_Q5Aa3wEWQ05dEoTWRV3gC3BWQKV4JkGK10zqkdbEQ7KaFb3IVw&oe=69B6ED07&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"ComprovanteSantander-1771017243.7447\",\"fileSha256\":\"sg3y6N1BhcZyNRn07q0YrayU9X\\/qOfbphwkebntueeM=\",\"fileLength\":\"6047\",\"pageCount\":2,\"mediaKey\":\"pNAhL1s1IMms2V51g0XhNuqL+xAyCVfw7DuuER2v0Zg=\",\"fileName\":\"ComprovanteSantander-1771017243.7447.pdf\",\"fileEncSha256\":\"A36N6yYBH0KKqYty6EM4mf\\/FgJwxfpN+S8jZNi23S94=\",\"directPath\":\"\\/v\\/t62.7119-24\\/35282319_1429679768658612_5302267578933740784_n.enc?ccb=11-4&oh=01_Q5Aa3wEWQ05dEoTWRV3gC3BWQKV4JkGK10zqkdbEQ7KaFb3IVw&oe=69B6ED07&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771017270\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACcDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD00hNzRoIm8NrNAIzRtZoBzJOuxYBOhoMB\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwB\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/8QAIxABAAEDBAICAwAAAAAAAAAAAQIAESEQEjFBAyATUUKBkf\\/aAAgBAQABPwCpS2l6PKLxQ340lIi5pCRmvjj9UFjGk1HFv3RKS\\/jUb9msgXNqCI3xW4+9Z2uXtUSPdq2xOtZbVzRtOz08iCcUMLZtQjxr5eTIVHOMfygkPVtWN6C3p\\/\\/+AAMA\\/9k=\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771016298\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iFH4pVbDuo0k54gturPDYnqYdUK6cfAQQWprhLrxP4o=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771017271,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:14:31'),
(12309, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:14:31'),
(12310, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:14:31'),
(12311, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:14:31'),
(12312, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:14:31'),
(12313, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":false,\"id\":\"4A279C5E17DFA385173C\"},\"pushName\":\"Gui\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/35282319_1429679768658612_5302267578933740784_n.enc?ccb=11-4&oh=01_Q5Aa3wEWQ05dEoTWRV3gC3BWQKV4JkGK10zqkdbEQ7KaFb3IVw&oe=69B6ED07&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"ComprovanteSantander-1771017243.7447\",\"fileSha256\":\"sg3y6N1BhcZyNRn07q0YrayU9X\\/qOfbphwkebntueeM=\",\"fileLength\":\"6047\",\"pageCount\":2,\"mediaKey\":\"pNAhL1s1IMms2V51g0XhNuqL+xAyCVfw7DuuER2v0Zg=\",\"fileName\":\"ComprovanteSantander-1771017243.7447.pdf\",\"fileEncSha256\":\"A36N6yYBH0KKqYty6EM4mf\\/FgJwxfpN+S8jZNi23S94=\",\"directPath\":\"\\/v\\/t62.7119-24\\/35282319_1429679768658612_5302267578933740784_n.enc?ccb=11-4&oh=01_Q5Aa3wEWQ05dEoTWRV3gC3BWQKV4JkGK10zqkdbEQ7KaFb3IVw&oe=69B6ED07&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771017270\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACcDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD00hNzRoIm8NrNAIzRtZoBzJOuxYBOhoMB\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwB\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/8QAIxABAAEDBAICAwAAAAAAAAAAAQIAESEQEjFBAyATUUKBkf\\/aAAgBAQABPwCpS2l6PKLxQ340lIi5pCRmvjj9UFjGk1HFv3RKS\\/jUb9msgXNqCI3xW4+9Z2uXtUSPdq2xOtZbVzRtOz08iCcUMLZtQjxr5eTIVHOMfygkPVtWN6C3p\\/\\/+AAMA\\/9k=\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771016298\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iFH4pVbDuo0k54gturPDYnqYdUK6cfAQQWprhLrxP4o=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771017271,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:14:31'),
(12314, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:14:31.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:14:31'),
(12315, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A574B6E333C13C71C3B9847BBA8E6390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:15:03'),
(12316, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A54FDC1A3C1765A86B5328E4D6357651\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:15:03'),
(12317, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A53830BBA4384400762131321281E363\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:15:03'),
(12318, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A566C7973E8C07B52FC55FA3FE287072\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302996,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:15:03'),
(12319, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A574B6E333C13C71C3B9847BBA8E6390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:15:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12320, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A566C7973E8C07B52FC55FA3FE287072\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302996,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:15:04'),
(12321, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A54FDC1A3C1765A86B5328E4D6357651\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:15:04'),
(12322, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"96834433372215:59@lid\",\"id\":\"A53830BBA4384400762131321281E363\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771017302989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:15:02.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:15:04'),
(12323, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:18:46.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:18:47'),
(12324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:18:46.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:18:47'),
(12325, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:20.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:31:21'),
(12326, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A5F25952B176611238D8019EC9AB600C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wH4WFSlhsF_-Ym7sP5Mjp8e42yEIteragyHD-1qM2bByg&oe=69B720E2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"qVsKcm\\/zbtvMHsOKgYBKCj+OPwlzsWUF\\/Zll57pWJik=\",\"fileEncSha256\":\"eNzyxKRw1wSwqKJ32Xno95N3xlsIAnmmTfpLzSnp7P8=\",\"mediaKey\":\"ZVBWeu0WrNNmlzH+WM+2oVIR3Dv+4fsxjfLQWGZvFcI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wH4WFSlhsF_-Ym7sP5Mjp8e42yEIteragyHD-1qM2bByg&oe=69B720E2&_nc_sid=5e03e0\",\"fileLength\":\"14126\",\"mediaKeyTimestamp\":\"1770994299\",\"isAnimated\":false,\"stickerSentTs\":\"1771018280129\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771018280,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:20.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:31:21'),
(12327, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:20.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:31:21'),
(12328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:21.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:31:21'),
(12329, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A5F25952B176611238D8019EC9AB600C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wH4WFSlhsF_-Ym7sP5Mjp8e42yEIteragyHD-1qM2bByg&oe=69B720E2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"qVsKcm\\/zbtvMHsOKgYBKCj+OPwlzsWUF\\/Zll57pWJik=\",\"fileEncSha256\":\"eNzyxKRw1wSwqKJ32Xno95N3xlsIAnmmTfpLzSnp7P8=\",\"mediaKey\":\"ZVBWeu0WrNNmlzH+WM+2oVIR3Dv+4fsxjfLQWGZvFcI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634143068_903289578954342_8777884149834090944_n.enc?ccb=11-4&oh=01_Q5Aa3wH4WFSlhsF_-Ym7sP5Mjp8e42yEIteragyHD-1qM2bByg&oe=69B720E2&_nc_sid=5e03e0\",\"fileLength\":\"14126\",\"mediaKeyTimestamp\":\"1770994299\",\"isAnimated\":false,\"stickerSentTs\":\"1771018280129\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771018280,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:20.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:31:21'),
(12330, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:21.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:31:22'),
(12331, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5F25952B176611238D8019EC9AB600C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018282897,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:22.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:31:22'),
(12332, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A5F25952B176611238D8019EC9AB600C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018282897,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:22.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:31:23'),
(12333, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:23.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:31:23'),
(12334, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A514AA71ABB589193B55DD678C98A23B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wGXEaEkEmR8zauPtJH8BmMoVCPJKvQUHddIFYyVbIRHZw&oe=69B6FCE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wGXEaEkEmR8zauPtJH8BmMoVCPJKvQUHddIFYyVbIRHZw&oe=69B6FCE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771018283099\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771018283,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:23.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:31:23'),
(12335, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251633711743067@lid\",\"fromMe\":true,\"id\":\"A514AA71ABB589193B55DD678C98A23B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wGXEaEkEmR8zauPtJH8BmMoVCPJKvQUHddIFYyVbIRHZw&oe=69B6FCE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wGXEaEkEmR8zauPtJH8BmMoVCPJKvQUHddIFYyVbIRHZw&oe=69B6FCE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771018283099\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771018283,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:23.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:31:24'),
(12336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:24.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:31:24'),
(12337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A514AA71ABB589193B55DD678C98A23B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018284245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:24.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:31:24'),
(12338, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251633711743067@lid\",\"pushName\":\"Lcs TV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_1930955507467144_2755523585664489248_n.jpg?ccb=11-4&oh=01_Q5Aa3wEL9tXloQJq7LmfdFrndt3PGOaoCAi1oT1yzXkZhge8Qw&oe=699CC007&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:24.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:31:24'),
(12339, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251633711743067@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:23.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:31:24'),
(12340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A514AA71ABB589193B55DD678C98A23B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018284245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:24.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:31:25'),
(12341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A59BA47E9F8083F87D0B566D0CFE038D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771018293,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:31:33'),
(12342, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A59BA47E9F8083F87D0B566D0CFE038D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771018293,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:31:33'),
(12343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:31:33'),
(12344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_7amBuOqSCMtSphojNS5VSB7V4-VkvTKEkRB_mMEY7w&oe=699C9497&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:31:33'),
(12345, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:31:34'),
(12346, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59BA47E9F8083F87D0B566D0CFE038D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018293948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:31:34'),
(12347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_7amBuOqSCMtSphojNS5VSB7V4-VkvTKEkRB_mMEY7w&oe=699C9497&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:31:34'),
(12348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59BA47E9F8083F87D0B566D0CFE038D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018293948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:31:33.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:31:34'),
(12349, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A514AA71ABB589193B55DD678C98A23B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018366482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:46.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:32:46'),
(12350, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251633711743067@lid\",\"id\":\"A514AA71ABB589193B55DD678C98A23B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018366482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:46.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:32:46'),
(12351, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:48.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:32:48'),
(12352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":true,\"id\":\"A55791092092CF02E6EC02382ABD088C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771018368,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:48.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:32:48'),
(12353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:48.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:32:48'),
(12354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":true,\"id\":\"A55791092092CF02E6EC02382ABD088C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771018368,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:48.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:32:48'),
(12355, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:48.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:32:48'),
(12356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:48.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:32:49'),
(12357, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":true,\"id\":\"A54323FD8BC138164B00BA8ABD37F049\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGGbucqnYmLFkwWa52u8qSYdidINDZSIiJaHU2ul27vmQ&oe=69B7250C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGGbucqnYmLFkwWa52u8qSYdidINDZSIiJaHU2ul27vmQ&oe=69B7250C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771018369328\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771018370,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:32:50'),
(12358, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:32:50'),
(12359, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:32:50'),
(12360, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":true,\"id\":\"A54323FD8BC138164B00BA8ABD37F049\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGGbucqnYmLFkwWa52u8qSYdidINDZSIiJaHU2ul27vmQ&oe=69B7250C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGGbucqnYmLFkwWa52u8qSYdidINDZSIiJaHU2ul27vmQ&oe=69B7250C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771018369328\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771018370,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:32:50'),
(12361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A55791092092CF02E6EC02382ABD088C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018370421,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:32:50'),
(12362, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A55791092092CF02E6EC02382ABD088C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018370421,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:32:51'),
(12363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:32:51'),
(12364, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A54323FD8BC138164B00BA8ABD37F049\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018371713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:51.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:32:51'),
(12365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:50.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:32:51'),
(12366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A54323FD8BC138164B00BA8ABD37F049\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018371713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:32:51.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:32:51'),
(12367, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A54323FD8BC138164B00BA8ABD37F049\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771018380433,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:00.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:00'),
(12368, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A55791092092CF02E6EC02382ABD088C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771018380427,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:00.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:00'),
(12369, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A54323FD8BC138164B00BA8ABD37F049\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771018380433,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:00.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:00'),
(12370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179997817991354@lid\",\"id\":\"A55791092092CF02E6EC02382ABD088C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771018380427,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:00.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:00'),
(12371, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"presences\":{\"179997817991354@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:02.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:02'),
(12372, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"presences\":{\"179997817991354@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:02.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:02'),
(12373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:06'),
(12374, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:06'),
(12375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A5D5DF2BCF5108950B0C701626AB3A83\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boaa negao\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":3},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":3},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771018386,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:06'),
(12376, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A5D5DF2BCF5108950B0C701626AB3A83\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boaa negao\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":3},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":3},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771018386,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:06'),
(12377, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:06'),
(12378, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:06'),
(12379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:06'),
(12380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:06'),
(12381, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:07'),
(12382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":false,\"id\":\"3A51EF9648ECB584C8E4\"},\"pushName\":\"Gui\",\"message\":{\"conversation\":\"Vlw meu amigo 🙌🏻\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771016298\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZC\\/v2IhsC7AOW0VGxUsg3H0ezy3OsEfX+HFUnLoduq0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771018386,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:07'),
(12383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179997817991354@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:07'),
(12384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:07.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:07'),
(12385, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179997817991354@lid\",\"fromMe\":false,\"id\":\"3A51EF9648ECB584C8E4\"},\"pushName\":\"Gui\",\"message\":{\"conversation\":\"Vlw meu amigo 🙌🏻\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771016298\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770664923\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZC\\/v2IhsC7AOW0VGxUsg3H0ezy3OsEfX+HFUnLoduq0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771018386,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:07'),
(12386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5D5DF2BCF5108950B0C701626AB3A83\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018386924,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:07'),
(12387, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5D5DF2BCF5108950B0C701626AB3A83\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018386924,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:06.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:08'),
(12388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179997817991354@lid\",\"pushName\":\"Gui\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620170692_884417230878803_8848146016519171395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWFxr6UB8GgKoboI4G0pzf9Y2ipWfX9RvAnnwKvKprNA&oe=699CA75C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:07.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:08'),
(12389, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:13'),
(12390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12391, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A59A9FFCA8FE962C5BD5AA16D5A74789\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Manda o pix pega os credito p2\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771018393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:13'),
(12392, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A59A9FFCA8FE962C5BD5AA16D5A74789\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018393773,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:33:13'),
(12393, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:33:13'),
(12394, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A59A9FFCA8FE962C5BD5AA16D5A74789\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771018393773,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:14'),
(12395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A59A9FFCA8FE962C5BD5AA16D5A74789\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Manda o pix pega os credito p2\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771018393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:33:14'),
(12396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:33:13.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:33:14'),
(12397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59BA47E9F8083F87D0B566D0CFE038D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771018589186,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:36:29.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:36:29'),
(12398, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59BA47E9F8083F87D0B566D0CFE038D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771018589186,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:36:29.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:36:29'),
(12399, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:16.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:37:17'),
(12400, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:16.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:37:17'),
(12401, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:27.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:37:27'),
(12402, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:27.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:37:27'),
(12403, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:37:32'),
(12404, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:37:32'),
(12405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:37:32'),
(12406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACA2C15B3A46DECA4119B39A335364D5\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Quero  saber  como é\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YtkLVXrxpaO2npxkjD1p2LrEstDXavz1CeSERoStMUI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771018652,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:37:32'),
(12407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:37:32'),
(12408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:37:33'),
(12409, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:37:33'),
(12410, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACA2C15B3A46DECA4119B39A335364D5\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Quero  saber  como é\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YtkLVXrxpaO2npxkjD1p2LrEstDXavz1CeSERoStMUI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771018652,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:37:32.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:37:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12411, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQmwi7Z-oYeWdWXBJw-MBnp8XzwkRgEfvvIfzfsqZL5A&oe=699C999B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLbJMfP8ZoFK9E-Kuai25ykp4udUftIiTCcMlho7_vzQ&oe=699CB9A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wESUb8AnVm2hc-uzY17ODhFxGmqxkx04w1LXc0Ew6Lu3w&oe=699CB3D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcezz9TbGIxN8_5fpNhw_g8mmSjoiFpCY3FISSVH9IGw&oe=699CBE37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoSyNvT9qG5zMqVRKdux0Nk86FobcrMLzH4_lj9WXhaQ&oe=699CB9FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGokSm9S6g6oqMTQT4VOxM41IvDIFVbxHXXjpHDYGagTA&oe=699CA2C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGszpvhb-tjZi3BbiZxq1yjRXGn_vzkNwy3qSOBgSrmFQ&oe=699CBC43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H-I9C6IrWQrsl1TVwNPcc_J7jJVNv5pVJC4wGlJYDw&oe=699CA31C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY1ITrAGDprlw1Laevi6BB-c2Y2ODyW95eJ1fpj4GsIA&oe=699CB355&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wEp33daUma3Xj4wvtQJk4IqbAaLhFPgk_IOFzGCVD79vA&oe=699CA155&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVTIEdCXbIXNRvOet9fnh9i7N8X4d5GZfYrJ6rp21Htg&oe=699CAED6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHk1bo4fJLHWkR2hvx6wRJdS9qwQMdm56eB59JklOnhg&oe=699CA98B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBWPCzx80t0xl2olBUq54v7GJhfRf_IFzB-OGyCEmj8A&oe=699CAC86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGja1Nu4e16ZcHyx8mHGWpBaOw4e7KNmyhP0F5bVLvMVg&oe=699CAA22&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEAb8588zG-SgEoduhDEAwzsvc5T01XH2qlxrEQ_JXSg&oe=699CAE8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAKTRHRM56zYxSvXtKNnnsR1jEKshSyR-V7XZb4JLlFQ&oe=699CA73B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhQzRFNFb-ujxsdcSKBsAWaWYv7mPpSZyrhKgvBBNQOQ&oe=699CA8DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiXYAMASAC8MVqF_dKsjIsfWmNA5BXQFoX2DdYYVtOlw&oe=699C93F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOt-3dFR9jQeLH4BU4UGYrewM94XjLd8osJocLUIZMIQ&oe=699CA849&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wECKmA1yBwBgkHnGlhlKP4_0FNymmytL2wwJrfSvhLK_A&oe=699CA858&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXXXctVF-HFxXHBHB7GK-Ki0OyqDEnh9-mIraLxIc0JQ&oe=699C9CD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQbFgIdZN0jMKs4den2zecdaQ5uGVjfOidgiRj73g8iw&oe=699CBB9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7tr87DKrm-bdeWsOhuIqWW2cDR5OBzG3S3qHWqvWcfQ&oe=699CBF36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wGToFUUH2frzwZR_1YmMTgvs26_oiPJj4WjrAyKth-d4g&oe=699C982F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmou_r_9c4jZA8m4dTS8jp74KZP96S73ogKRHRgxQwHA&oe=699C9EAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNcEStVE5r8yacUNWPWCkpHUAlP3RzDFnQU9iYfnOT5A&oe=699C958D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMLIV14Q6JUohsNNmAaw9vx1atKc80HDEbArBg5QIG0w&oe=699C9ABB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnwYfJDaS821Dw7eLU-hxYQSxLmKux6RAMW_yeuhTMdg&oe=699CB402&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTXatw3a1E_NvqlXI_ZP2qDOuhFILynw1oycC6isIAew&oe=699C9955&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-xdegqeZuXjt5V1tqGGYzJXPWFgC6bfoAV6NJ0pbKKQ&oe=699CA10C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkiAygQHf3mChYfFfGBK6h25CWBPrauv9hrMViTlNYoQ&oe=699CB89A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJeF04yKR0zVrk6So8ESHXpCzG7BegbecmWRoZ0dEjxw&oe=699CAA6F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWqZ0eDimitqN41u-5ULlHwHEW-2zqbecVqMkT6IBqPA&oe=699CAEA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE62PKdDo88vs4e1wKTS18uk7Fc5wq8mmYDdOZaiiPe9Q&oe=699C9CEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdXVlqPbNNkYO0YBVHbLc8LQG66P-XYDQ7HA28uyQ0oQ&oe=699C973B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBdbeZI1UP9unCBliwxYG1QcthDImwb-notUhYy4dJwg&oe=699CA0A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wElQW0yJh_S9pPK9Rot3xRR4mv38t4rNkx2mli_pdmt9g&oe=699CA42B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF866BPuChBzkClp3GUwV49-RHPM_fnRCYVGh_VejPn1A&oe=699CAD64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBv18YXA-O6LAFFGjuEO1uQ2aIdjNRPciY-HriWmjtg&oe=699C9305&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqgVC_qVQLLfwCNLNXvfRVFQDc5jG2vctBKx5T9s-TSQ&oe=699C9AB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSDfVDk33rOeUoge25XLmQnuCpag79gSk2FsxJuIJPmA&oe=699CB952&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGac1KfW3FD-r9yQ_LjzoaZ-QqDRlZT4C2CKWNNNoppvQ&oe=699C96D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJkEE6KEFYYk5M8LUoUWnuwaxaFWmF67OSaW_kIORGw&oe=699CB2D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_GPcAElFnI7iKfKtipR1z5hFpAFxpxmW1CHDS64JlhA&oe=699CB8F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Qc37A22nvty0ISiMTqX390FYDzvTvTohg3ePtp_Nmw&oe=699C9477&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHq11Xb-yU-04ndxx3K-Z8ZvHmEsRp2vXo8e0tICM8aNA&oe=699CA3AA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoH5JXERcp4RFkuATUf8lgqT2g3mkzStJI3PgQwEyKRQ&oe=699C9CE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6yn4V99rb6YedBmXcIufEMatiHdALHb1sq9CEfuOsdg&oe=699CA24A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OXutS3KZKgbFwxx-ATC5M7gBJqEa6IXVWob-pTI4AA&oe=699CA2BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvN8Sd0wJJltScK_OCmwC9qiJsucYzlasCDtFSzqANIg&oe=699CC3AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFktLESZ9_C2IwFhBt48BEKsS2DETWMBFP7kD5Z3kZiUA&oe=699CC2AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIIiLsTL3Gkpbph3p8qoCaQbWsUd6RDxECiZjCUKqppg&oe=699C9BD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgQAN6ErpjylNxbERI2P_GO6W3u-_3Gxi2yk1eSE1eLQ&oe=699C912E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wG40Lj6CWTSlvCezum-AcEolBk6I307Sq-cj1HcZ3nBpQ&oe=699CBC18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIMxR5EhykwAPOEyGmJ0ofpenu8amnpm-MDZmxYWGDOQ&oe=699C98D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY9PWDPs5Pbtz58YMp0Hckqfqzy5WSRYsXJ25CbTzdXA&oe=699CBB39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtIV1ijht2lwB3HLbHhPtWCyMcey80Gyl7U7xJk934wA&oe=699CADC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6ZlVtZlYIdLiTZGZ4fd-9LRqvWfbeIrGm2zhp2Laxqg&oe=699CBB61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCw6lq_NcUjXI2BHx1YjX10GwxPqT9LQWl1pLYg0KMHA&oe=699C9AF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvyTVuCpJ3LzI4IKX7rQ0OrPI79hIvndSkEneR3TYpcA&oe=699CB7F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk-Gw9fxeaChB6X4ijuWizk431Xx-GaBbYJK-X6dAYlQ&oe=699CB38F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4Td0afGB04ECmx5mexPgk4CDNPcC-mcZjoGh9J9xjbA&oe=699CA6BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wExtscb43WJs2BnnySTRn5yJROjdk6393Yf8pBqIqlUVQ&oe=699CAA42&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvKDWDJDursYgG2AjCILMTBbbOlazG06VcXADbi-xf-w&oe=699C978E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_JeP4bW0n5TtQ3ToYAMetEdrlQ4QH-rTrsbi5d6vOZA&oe=699C9E74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEEbEpeMnbU80ZyqX0ZLt0aen1bZm64Yfte44hNABuUw&oe=699CBC52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHo9K83XpV1SFfUVcaPXcxozHYuMtB6xcGgx4J-Cn7yw&oe=699CAF90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHqwEdBpJ7pH-sgvo1lQL2MX07xdG4nj7DzSJR3ZPNQ&oe=699CA37C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1z-K3YpAZa1N8SEvUS81b2G-EeTz0RZlr3kQBWVgy-w&oe=699CA6B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIO3yc5c9asmO4szXvEX0cDE8wDiqZ0UpSTb6cHe98qg&oe=699CA12F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH477aAQry3TkEHmfIeq2lt0LLyEdMS1lRV5pRJfH_nSA&oe=699C95BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wG91sWua3UfzEH7Tk9ME6jZlJqFWMo3MJG_ZmW1ZGfnYw&oe=699CAB5F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJhbs4mspmq7UbMSgOwMaO9QMWmWgtHa3coUuwPhbPxA&oe=699CAF5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQyl9TbetcttalJyikgAkH5JD8TcN9pFgopwx324FEDw&oe=699C9A90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi5oVUT_0YN_bz7wYR1Il8JaiRMCafnDu7in8W9JIrwQ&oe=699CB684&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ367Tgu_wB0rdlbw8p9chZE-BtvtBoaq5wY43968cUA&oe=699CBD17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSTw5oLZVXy0XsuXzzufY8FTaoXlfNH5mTrAICDik-8w&oe=699CBDBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvSgVIZiZniJq7TBJRKHeYYYT8RuP7WeelWDrEU77ZCg&oe=699CABD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh56fpVpUPOraStsXd8YivTU8DDZSX6lKL2fYb4dDm1g&oe=699CB8CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhHjG9hjluOf5ZO5GS4nWwkumI4HU9Y1hPASzRY2jaKg&oe=699C95F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg6uaTvOHjg846KlIdlX6BQwlDdJykARHO8xSj9uAlKw&oe=699CA384&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-N_1RPmvJ4-netF2b8YQSpOdBTFRiZ5Tfdx3-0wyZEg&oe=699CAF3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7O9HlqNmwhzqcxDRPkKientA1MmHC-teQ7_v5x6Ao3g&oe=699CB365&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJnXR8khNWUhev25pSBlu1USh31s_ZvEvpu7MtDSnrcg&oe=699C92BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEeyN0bsINev6zYMjZnoXVFYdMFHCAEBBxR3MRCUsN-g&oe=699CB002&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDdgL0bh8omwA4CjkKHPk26Ih6eOnj7rTPdC0JNwSrkA&oe=699C9EA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlrp5YQ1C8uRUq8hZDVkh4jO69wWCRXmYeBQlhweu8Ww&oe=699C99C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgZWkKDtGJye1XBahLfnIyTvoi09w9Cbz-DFs_ScvZkQ&oe=699CBF67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-SL3IKSzrBW0laI4zhdQ5xNEe5ufFG9FV5QczrCaiUg&oe=699CAA80&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8CgOaTQ-BqabLyDo9dEVhDKbJNnpdxvOOfE0kY-VtAA&oe=699CC21D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-V30joNe_gbUfl3AM5CZAVCSg98_ZhzmfrnTa1hHSUA&oe=699C91C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgvbVvs02KltT7prbqKxr1HCGAssP2mUPraz_v31BnXQ&oe=699C9DC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_vZKTaGtECnbJ8Wan7V0mLlR6QAIt4hrtXb4A8gmlQA&oe=699C9F0A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHS6ALvzWKRuwJTxu0ng7jZjcbc7A8C_uNHoS0frsTRPw&oe=699C9A11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWcByDz67OvDysi3BX399izr0qc0O7VNYB70YwFMSoWg&oe=699CABDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzUfDvLOFiSfVJ-gC5rUBdyge90aD0smsMV6geQ2Wm0w&oe=699CAA14&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4eFcpWfRjFP9EHVfvQGo6KqXLYXEFstj3bIkrh_BP-g&oe=699C94D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdJK5GYp2FW0zrEZwX-vgvOtqwfDBl7tKFYsfGMleiaw&oe=699CBC7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFzkewfNJV8jI71B1NkZO2TP9IhubgFDPRHDkQqnS1uA&oe=699CA79A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHX8zuq3SGMWWCOEoC5W41UoRKykerBOtxieGx2HwnWgg&oe=699CA476&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHILOTu0C8lfT_2EyPJZm6-s_tqhrh9bU1bLP5qmzp6HQ&oe=699CAC9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wECoz8qGjp0r4i3_S7mnn89mjdHS24a-qyMkieMbiLysw&oe=699C9107&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbufrmPEmfMUFbf3k6e9zDKtofAwKZ3aTHFcnXkLcGTg&oe=699CA64E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlHL8LqIdfTsJneY6l0V1nRzn78LOU-hAiry8YMUWOwA&oe=699CAAF7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3q0Aq-DI9BBL0UORNGLVyExY9yoEVVdx1-EkKxLzqmw&oe=699CBB4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF74MhMSi4tQPJb_0pgD1ohcJyxOPKG_j3_RVywSHTKmQ&oe=699C91A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3mHHSm82YFjcQ-wsuR2DGhRByA9Parc_GrjeF0PQZIg&oe=699C9E52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwo01T2QLq62citTDClfh2Ha8aUCI06qABZ4yX8omwqQ&oe=699C9E65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFykhUVJjfjtwM5jkPKiCD0r3oLXKeL5XTgN-2pITu6g&oe=699CAD45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrus3xedwlCbkdNhqkHBP8e8A6zEwe0tjJJIpauH1dtw&oe=699C9A23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd6ZkX9GimWCapwjTnetbRUbKfj1rghcyiUTyOYDObvw&oe=699CADB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 18:45:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12412, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQmwi7Z-oYeWdWXBJw-MBnp8XzwkRgEfvvIfzfsqZL5A&oe=699C999B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLbJMfP8ZoFK9E-Kuai25ykp4udUftIiTCcMlho7_vzQ&oe=699CB9A6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wESUb8AnVm2hc-uzY17ODhFxGmqxkx04w1LXc0Ew6Lu3w&oe=699CB3D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcezz9TbGIxN8_5fpNhw_g8mmSjoiFpCY3FISSVH9IGw&oe=699CBE37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoSyNvT9qG5zMqVRKdux0Nk86FobcrMLzH4_lj9WXhaQ&oe=699CB9FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGokSm9S6g6oqMTQT4VOxM41IvDIFVbxHXXjpHDYGagTA&oe=699CA2C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGszpvhb-tjZi3BbiZxq1yjRXGn_vzkNwy3qSOBgSrmFQ&oe=699CBC43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H-I9C6IrWQrsl1TVwNPcc_J7jJVNv5pVJC4wGlJYDw&oe=699CA31C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY1ITrAGDprlw1Laevi6BB-c2Y2ODyW95eJ1fpj4GsIA&oe=699CB355&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wEp33daUma3Xj4wvtQJk4IqbAaLhFPgk_IOFzGCVD79vA&oe=699CA155&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVTIEdCXbIXNRvOet9fnh9i7N8X4d5GZfYrJ6rp21Htg&oe=699CAED6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHk1bo4fJLHWkR2hvx6wRJdS9qwQMdm56eB59JklOnhg&oe=699CA98B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBWPCzx80t0xl2olBUq54v7GJhfRf_IFzB-OGyCEmj8A&oe=699CAC86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGja1Nu4e16ZcHyx8mHGWpBaOw4e7KNmyhP0F5bVLvMVg&oe=699CAA22&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEAb8588zG-SgEoduhDEAwzsvc5T01XH2qlxrEQ_JXSg&oe=699CAE8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAKTRHRM56zYxSvXtKNnnsR1jEKshSyR-V7XZb4JLlFQ&oe=699CA73B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhQzRFNFb-ujxsdcSKBsAWaWYv7mPpSZyrhKgvBBNQOQ&oe=699CA8DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGiXYAMASAC8MVqF_dKsjIsfWmNA5BXQFoX2DdYYVtOlw&oe=699C93F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOt-3dFR9jQeLH4BU4UGYrewM94XjLd8osJocLUIZMIQ&oe=699CA849&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wECKmA1yBwBgkHnGlhlKP4_0FNymmytL2wwJrfSvhLK_A&oe=699CA858&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXXXctVF-HFxXHBHB7GK-Ki0OyqDEnh9-mIraLxIc0JQ&oe=699C9CD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQbFgIdZN0jMKs4den2zecdaQ5uGVjfOidgiRj73g8iw&oe=699CBB9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7tr87DKrm-bdeWsOhuIqWW2cDR5OBzG3S3qHWqvWcfQ&oe=699CBF36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wGToFUUH2frzwZR_1YmMTgvs26_oiPJj4WjrAyKth-d4g&oe=699C982F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmou_r_9c4jZA8m4dTS8jp74KZP96S73ogKRHRgxQwHA&oe=699C9EAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNcEStVE5r8yacUNWPWCkpHUAlP3RzDFnQU9iYfnOT5A&oe=699C958D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMLIV14Q6JUohsNNmAaw9vx1atKc80HDEbArBg5QIG0w&oe=699C9ABB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnwYfJDaS821Dw7eLU-hxYQSxLmKux6RAMW_yeuhTMdg&oe=699CB402&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTXatw3a1E_NvqlXI_ZP2qDOuhFILynw1oycC6isIAew&oe=699C9955&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-xdegqeZuXjt5V1tqGGYzJXPWFgC6bfoAV6NJ0pbKKQ&oe=699CA10C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkiAygQHf3mChYfFfGBK6h25CWBPrauv9hrMViTlNYoQ&oe=699CB89A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJeF04yKR0zVrk6So8ESHXpCzG7BegbecmWRoZ0dEjxw&oe=699CAA6F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWqZ0eDimitqN41u-5ULlHwHEW-2zqbecVqMkT6IBqPA&oe=699CAEA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE62PKdDo88vs4e1wKTS18uk7Fc5wq8mmYDdOZaiiPe9Q&oe=699C9CEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdXVlqPbNNkYO0YBVHbLc8LQG66P-XYDQ7HA28uyQ0oQ&oe=699C973B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBdbeZI1UP9unCBliwxYG1QcthDImwb-notUhYy4dJwg&oe=699CA0A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wElQW0yJh_S9pPK9Rot3xRR4mv38t4rNkx2mli_pdmt9g&oe=699CA42B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF866BPuChBzkClp3GUwV49-RHPM_fnRCYVGh_VejPn1A&oe=699CAD64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBv18YXA-O6LAFFGjuEO1uQ2aIdjNRPciY-HriWmjtg&oe=699C9305&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqgVC_qVQLLfwCNLNXvfRVFQDc5jG2vctBKx5T9s-TSQ&oe=699C9AB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSDfVDk33rOeUoge25XLmQnuCpag79gSk2FsxJuIJPmA&oe=699CB952&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wGac1KfW3FD-r9yQ_LjzoaZ-QqDRlZT4C2CKWNNNoppvQ&oe=699C96D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJkEE6KEFYYk5M8LUoUWnuwaxaFWmF67OSaW_kIORGw&oe=699CB2D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_GPcAElFnI7iKfKtipR1z5hFpAFxpxmW1CHDS64JlhA&oe=699CB8F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Qc37A22nvty0ISiMTqX390FYDzvTvTohg3ePtp_Nmw&oe=699C9477&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHq11Xb-yU-04ndxx3K-Z8ZvHmEsRp2vXo8e0tICM8aNA&oe=699CA3AA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoH5JXERcp4RFkuATUf8lgqT2g3mkzStJI3PgQwEyKRQ&oe=699C9CE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6yn4V99rb6YedBmXcIufEMatiHdALHb1sq9CEfuOsdg&oe=699CA24A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OXutS3KZKgbFwxx-ATC5M7gBJqEa6IXVWob-pTI4AA&oe=699CA2BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvN8Sd0wJJltScK_OCmwC9qiJsucYzlasCDtFSzqANIg&oe=699CC3AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFktLESZ9_C2IwFhBt48BEKsS2DETWMBFP7kD5Z3kZiUA&oe=699CC2AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIIiLsTL3Gkpbph3p8qoCaQbWsUd6RDxECiZjCUKqppg&oe=699C9BD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgQAN6ErpjylNxbERI2P_GO6W3u-_3Gxi2yk1eSE1eLQ&oe=699C912E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wG40Lj6CWTSlvCezum-AcEolBk6I307Sq-cj1HcZ3nBpQ&oe=699CBC18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIMxR5EhykwAPOEyGmJ0ofpenu8amnpm-MDZmxYWGDOQ&oe=699C98D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGY9PWDPs5Pbtz58YMp0Hckqfqzy5WSRYsXJ25CbTzdXA&oe=699CBB39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtIV1ijht2lwB3HLbHhPtWCyMcey80Gyl7U7xJk934wA&oe=699CADC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6ZlVtZlYIdLiTZGZ4fd-9LRqvWfbeIrGm2zhp2Laxqg&oe=699CBB61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCw6lq_NcUjXI2BHx1YjX10GwxPqT9LQWl1pLYg0KMHA&oe=699C9AF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvyTVuCpJ3LzI4IKX7rQ0OrPI79hIvndSkEneR3TYpcA&oe=699CB7F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk-Gw9fxeaChB6X4ijuWizk431Xx-GaBbYJK-X6dAYlQ&oe=699CB38F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4Td0afGB04ECmx5mexPgk4CDNPcC-mcZjoGh9J9xjbA&oe=699CA6BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wExtscb43WJs2BnnySTRn5yJROjdk6393Yf8pBqIqlUVQ&oe=699CAA42&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvKDWDJDursYgG2AjCILMTBbbOlazG06VcXADbi-xf-w&oe=699C978E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_JeP4bW0n5TtQ3ToYAMetEdrlQ4QH-rTrsbi5d6vOZA&oe=699C9E74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEEbEpeMnbU80ZyqX0ZLt0aen1bZm64Yfte44hNABuUw&oe=699CBC52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHo9K83XpV1SFfUVcaPXcxozHYuMtB6xcGgx4J-Cn7yw&oe=699CAF90&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSHqwEdBpJ7pH-sgvo1lQL2MX07xdG4nj7DzSJR3ZPNQ&oe=699CA37C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1z-K3YpAZa1N8SEvUS81b2G-EeTz0RZlr3kQBWVgy-w&oe=699CA6B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIO3yc5c9asmO4szXvEX0cDE8wDiqZ0UpSTb6cHe98qg&oe=699CA12F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH477aAQry3TkEHmfIeq2lt0LLyEdMS1lRV5pRJfH_nSA&oe=699C95BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wG91sWua3UfzEH7Tk9ME6jZlJqFWMo3MJG_ZmW1ZGfnYw&oe=699CAB5F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJhbs4mspmq7UbMSgOwMaO9QMWmWgtHa3coUuwPhbPxA&oe=699CAF5A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQyl9TbetcttalJyikgAkH5JD8TcN9pFgopwx324FEDw&oe=699C9A90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi5oVUT_0YN_bz7wYR1Il8JaiRMCafnDu7in8W9JIrwQ&oe=699CB684&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ367Tgu_wB0rdlbw8p9chZE-BtvtBoaq5wY43968cUA&oe=699CBD17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSTw5oLZVXy0XsuXzzufY8FTaoXlfNH5mTrAICDik-8w&oe=699CBDBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvSgVIZiZniJq7TBJRKHeYYYT8RuP7WeelWDrEU77ZCg&oe=699CABD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh56fpVpUPOraStsXd8YivTU8DDZSX6lKL2fYb4dDm1g&oe=699CB8CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhHjG9hjluOf5ZO5GS4nWwkumI4HU9Y1hPASzRY2jaKg&oe=699C95F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg6uaTvOHjg846KlIdlX6BQwlDdJykARHO8xSj9uAlKw&oe=699CA384&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-N_1RPmvJ4-netF2b8YQSpOdBTFRiZ5Tfdx3-0wyZEg&oe=699CAF3D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7O9HlqNmwhzqcxDRPkKientA1MmHC-teQ7_v5x6Ao3g&oe=699CB365&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJnXR8khNWUhev25pSBlu1USh31s_ZvEvpu7MtDSnrcg&oe=699C92BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEeyN0bsINev6zYMjZnoXVFYdMFHCAEBBxR3MRCUsN-g&oe=699CB002&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDdgL0bh8omwA4CjkKHPk26Ih6eOnj7rTPdC0JNwSrkA&oe=699C9EA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFlrp5YQ1C8uRUq8hZDVkh4jO69wWCRXmYeBQlhweu8Ww&oe=699C99C7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgZWkKDtGJye1XBahLfnIyTvoi09w9Cbz-DFs_ScvZkQ&oe=699CBF67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-SL3IKSzrBW0laI4zhdQ5xNEe5ufFG9FV5QczrCaiUg&oe=699CAA80&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8CgOaTQ-BqabLyDo9dEVhDKbJNnpdxvOOfE0kY-VtAA&oe=699CC21D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-V30joNe_gbUfl3AM5CZAVCSg98_ZhzmfrnTa1hHSUA&oe=699C91C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGgvbVvs02KltT7prbqKxr1HCGAssP2mUPraz_v31BnXQ&oe=699C9DC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_vZKTaGtECnbJ8Wan7V0mLlR6QAIt4hrtXb4A8gmlQA&oe=699C9F0A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHS6ALvzWKRuwJTxu0ng7jZjcbc7A8C_uNHoS0frsTRPw&oe=699C9A11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWcByDz67OvDysi3BX399izr0qc0O7VNYB70YwFMSoWg&oe=699CABDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzUfDvLOFiSfVJ-gC5rUBdyge90aD0smsMV6geQ2Wm0w&oe=699CAA14&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4eFcpWfRjFP9EHVfvQGo6KqXLYXEFstj3bIkrh_BP-g&oe=699C94D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdJK5GYp2FW0zrEZwX-vgvOtqwfDBl7tKFYsfGMleiaw&oe=699CBC7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFzkewfNJV8jI71B1NkZO2TP9IhubgFDPRHDkQqnS1uA&oe=699CA79A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHX8zuq3SGMWWCOEoC5W41UoRKykerBOtxieGx2HwnWgg&oe=699CA476&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHILOTu0C8lfT_2EyPJZm6-s_tqhrh9bU1bLP5qmzp6HQ&oe=699CAC9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wECoz8qGjp0r4i3_S7mnn89mjdHS24a-qyMkieMbiLysw&oe=699C9107&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbufrmPEmfMUFbf3k6e9zDKtofAwKZ3aTHFcnXkLcGTg&oe=699CA64E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlHL8LqIdfTsJneY6l0V1nRzn78LOU-hAiry8YMUWOwA&oe=699CAAF7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3q0Aq-DI9BBL0UORNGLVyExY9yoEVVdx1-EkKxLzqmw&oe=699CBB4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF74MhMSi4tQPJb_0pgD1ohcJyxOPKG_j3_RVywSHTKmQ&oe=699C91A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3mHHSm82YFjcQ-wsuR2DGhRByA9Parc_GrjeF0PQZIg&oe=699C9E52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwo01T2QLq62citTDClfh2Ha8aUCI06qABZ4yX8omwqQ&oe=699C9E65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFykhUVJjfjtwM5jkPKiCD0r3oLXKeL5XTgN-2pITu6g&oe=699CAD45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrus3xedwlCbkdNhqkHBP8e8A6zEwe0tjJJIpauH1dtw&oe=699C9A23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wHd6ZkX9GimWCapwjTnetbRUbKfj1rghcyiUTyOYDObvw&oe=699CADB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 18:45:10');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12413, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A59A9FFCA8FE962C5BD5AA16D5A74789\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771019517845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:51:57.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:51:58'),
(12414, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5D5DF2BCF5108950B0C701626AB3A83\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771019517859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:51:57.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:51:58'),
(12415, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5D5DF2BCF5108950B0C701626AB3A83\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771019517859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:51:57.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:51:58'),
(12416, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A59A9FFCA8FE962C5BD5AA16D5A74789\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771019517845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:51:57.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:51:58'),
(12417, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:51:59.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:51:59'),
(12418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:00'),
(12419, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:00'),
(12420, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:51:59.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:01'),
(12421, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:01'),
(12422, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"AC749C536433B99E0BBD0DBEC6C96C7A\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"conversation\":\"Boa boa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CLyAMj6c4\\/XAF+7q\\/jC0+Y7Cw1crxnrPhvUIg2B8lKQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019520,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:52:01'),
(12423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:01.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:01'),
(12424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:01'),
(12425, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:01'),
(12426, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"AC749C536433B99E0BBD0DBEC6C96C7A\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"conversation\":\"Boa boa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CLyAMj6c4\\/XAF+7q\\/jC0+Y7Cw1crxnrPhvUIg2B8lKQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019520,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:52:01'),
(12427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:01.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:01'),
(12428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:00.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:01'),
(12429, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:01.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:01'),
(12430, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:01.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:02'),
(12431, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:02.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:02'),
(12432, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:02.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:02'),
(12433, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:03'),
(12434, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:03'),
(12435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:04'),
(12436, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"ACB2F0A906861DC3B6AD29FF2330F7AB\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"conversation\":\"Noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Nw\\/FBAMEYWheE8Uv46VrkJGfI0tjDm0MpYHV1F6OS24=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019524,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:52:04'),
(12437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:04'),
(12438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:04'),
(12439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:04'),
(12440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"ACB2F0A906861DC3B6AD29FF2330F7AB\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"conversation\":\"Noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Nw\\/FBAMEYWheE8Uv46VrkJGfI0tjDm0MpYHV1F6OS24=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019524,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:52:05'),
(12441, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:06'),
(12442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:04.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:06'),
(12443, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:06'),
(12444, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"ACADD9CC9CA618A1586CE511FB426019\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cifTaNXAyNIxfVxxwMjuUQOw8grX3YvljGV9Nk8PvRk=\"},\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDQNDVFHI7\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"Adieldson Monteiro\\\",\\\"key\\\":\\\"adieldson16@gmail.com\\\",\\\"key_type\\\":\\\"EMAIL\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"chat_attachment\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771019526,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:52:06'),
(12445, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:06'),
(12446, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"ACADD9CC9CA618A1586CE511FB426019\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cifTaNXAyNIxfVxxwMjuUQOw8grX3YvljGV9Nk8PvRk=\"},\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDQNDVFHI7\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"Adieldson Monteiro\\\",\\\"key\\\":\\\"adieldson16@gmail.com\\\",\\\"key_type\\\":\\\"EMAIL\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"chat_attachment\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771019526,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:52:06'),
(12447, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:06'),
(12448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:07'),
(12449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:07'),
(12450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:06.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:07'),
(12451, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5D227010FF515BDE7F61F93509B862D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771019545906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:25.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:52:26'),
(12452, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5D227010FF515BDE7F61F93509B862D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771019545906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:25.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:52:26'),
(12453, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5D227010FF515BDE7F61F93509B862D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771019546395,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:26.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:52:26'),
(12454, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A5D227010FF515BDE7F61F93509B862D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771019546395,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:26.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:52:26'),
(12455, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:50.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:52:50'),
(12456, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:52:50.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:52:50'),
(12457, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:00.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:00'),
(12458, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:00.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:01'),
(12459, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:02.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:02'),
(12460, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:02.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:03'),
(12461, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACE3BF93EF8DDE1A9E6A94D25A565FA3\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ela assisti mais a globo do sudeste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":37},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1aiLZIPu\\/vtiG3OadZ+BKk91rJ2gkITG+Ze6n3qqJ44=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":37},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771019582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:02.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:53:03'),
(12462, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:03.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:03'),
(12463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:02.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:03'),
(12464, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACE3BF93EF8DDE1A9E6A94D25A565FA3\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ela assisti mais a globo do sudeste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":37},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1aiLZIPu\\/vtiG3OadZ+BKk91rJ2gkITG+Ze6n3qqJ44=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":37},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771019582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:02.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:53:03'),
(12465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:02.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:04'),
(12466, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:04.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:04'),
(12467, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:04.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:04'),
(12468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:03.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:04'),
(12469, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:14.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:14'),
(12470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:14.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:14'),
(12471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:16'),
(12472, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:16'),
(12473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:16'),
(12474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC0BB8CF506050CA338175D7AD55493E\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Eu falei pra ela colocar esse por ser mais perto e tals\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ILnCunl5kEzUkhCfhoBmncJ1yeKzt0nH4h6mJLkrVuM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:53:16'),
(12475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:16'),
(12476, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"AC0BB8CF506050CA338175D7AD55493E\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Eu falei pra ela colocar esse por ser mais perto e tals\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ILnCunl5kEzUkhCfhoBmncJ1yeKzt0nH4h6mJLkrVuM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:53:17'),
(12477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:18'),
(12478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:16.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:18'),
(12479, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:19.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:19'),
(12480, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:19.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:19'),
(12481, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:29.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:29'),
(12482, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"presences\":{\"46325550809276@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:29.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:29'),
(12483, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:31'),
(12484, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:31'),
(12485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:31'),
(12486, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACCB87B79DA110473867FA01C2BE0DA1\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Mais tentamos todas as regiões e trava\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"crPIpWkHPoA9dd1ERoKMclXHLx1Nh9iZJPwEZhrYMDk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 18:53:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:32'),
(12488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 18:53:32'),
(12489, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":false,\"id\":\"ACCB87B79DA110473867FA01C2BE0DA1\"},\"pushName\":\"Elder Fraleoni\",\"message\":{\"conversation\":\"Mais tentamos todas as regiões e trava\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"crPIpWkHPoA9dd1ERoKMclXHLx1Nh9iZJPwEZhrYMDk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771019611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 18:53:32'),
(12490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wF66cmi4YFDtHih0DUy-VtYjXIAvZrYMar_C7ZtxFEQkA&oe=699C9573&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T18:53:31.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 18:53:32'),
(12491, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:02:49'),
(12492, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A55F2E843D6FDF78461B5E110A564EE7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/18984445_946374254444916_4502197822668059322_n.enc?ccb=11-4&oh=01_Q5Aa3wHB26wJx2vMGiQwqMBrVuuvcG1cLGt2pZJJJpXuLqzRqw&oe=69B717CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Segue o comprovante do pagamento! ✅\\n\\nTô na disputa para ganhar *R$ 1 milhão* na InfinitePay. Faça seu cadastro pelo link pra me ajudar e venha concorrer também: https:\\/\\/infinitepay.onelink.me\\/P0r2\\/8tykrzl2\",\"fileSha256\":\"hQr9Kvpt7IfIEd\\/3vpYxouz0AdfjfY7U6ZwqeDFwJA8=\",\"fileLength\":\"104779\",\"height\":1350,\"width\":975,\"mediaKey\":\"jlxlkYBZA9duZRjr55MvSE0USJADtkuowhT4ElAf8oc=\",\"fileEncSha256\":\"No4s2+1FyrvJGvEEs6+fOysvnAGvEXJ1HwejWM6XeWU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/18984445_946374254444916_4502197822668059322_n.enc?ccb=11-4&oh=01_Q5Aa3wHB26wJx2vMGiQwqMBrVuuvcG1cLGt2pZJJJpXuLqzRqw&oe=69B717CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020167\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAMwMBIgACEQEDEQH\\/xAAuAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPpdc5629\\/N3NKAMzSFkNsDajm62MXQk1wOrQqpItMtQijUMmgAA\\/8QAJRAAAQQBAwQCAwAAAAAAAAAAAQACAxEhEiAxIjJBURATMGFx\\/9oACAEBAAE\\/AJJJWysa1ltPJUheGksFlRSSP7o62yTNjcAU6drDTjmrQnFXeFG7W0HYQCaNIMs5orQ30EBWxzQaN0tHBDkWWe4r6jnrKoxtPLkJMWRSGQpHOBADbTX4HSQtX6QNj4oelSJN8IbDGeM8oYH5\\/NUvNUh\\/CtKpEUtK\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwAn\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAwEBPwAn\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"THsmCtXGOu8tjEz2+swswAZ1Xiwf4McwyS5jBkQiTapeiklhQ+pcEg==\",\"scanLengths\":[11841,44865,20470,27603],\"midQualityFileSha256\":\"6w3s2n0Zw+CTl5gvtjQ5cb1GjU4kkHXRE+Rp6cMrGw4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771020168,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:02:49'),
(12493, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:02:49'),
(12494, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A55F2E843D6FDF78461B5E110A564EE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020168967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:02:49'),
(12495, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:02:49'),
(12496, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A55F2E843D6FDF78461B5E110A564EE7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/18984445_946374254444916_4502197822668059322_n.enc?ccb=11-4&oh=01_Q5Aa3wHB26wJx2vMGiQwqMBrVuuvcG1cLGt2pZJJJpXuLqzRqw&oe=69B717CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Segue o comprovante do pagamento! ✅\\n\\nTô na disputa para ganhar *R$ 1 milhão* na InfinitePay. Faça seu cadastro pelo link pra me ajudar e venha concorrer também: https:\\/\\/infinitepay.onelink.me\\/P0r2\\/8tykrzl2\",\"fileSha256\":\"hQr9Kvpt7IfIEd\\/3vpYxouz0AdfjfY7U6ZwqeDFwJA8=\",\"fileLength\":\"104779\",\"height\":1350,\"width\":975,\"mediaKey\":\"jlxlkYBZA9duZRjr55MvSE0USJADtkuowhT4ElAf8oc=\",\"fileEncSha256\":\"No4s2+1FyrvJGvEEs6+fOysvnAGvEXJ1HwejWM6XeWU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/18984445_946374254444916_4502197822668059322_n.enc?ccb=11-4&oh=01_Q5Aa3wHB26wJx2vMGiQwqMBrVuuvcG1cLGt2pZJJJpXuLqzRqw&oe=69B717CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020167\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAMwMBIgACEQEDEQH\\/xAAuAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPpdc5629\\/N3NKAMzSFkNsDajm62MXQk1wOrQqpItMtQijUMmgAA\\/8QAJRAAAQQBAwQCAwAAAAAAAAAAAQACAxEhEiAxIjJBURATMGFx\\/9oACAEBAAE\\/AJJJWysa1ltPJUheGksFlRSSP7o62yTNjcAU6drDTjmrQnFXeFG7W0HYQCaNIMs5orQ30EBWxzQaN0tHBDkWWe4r6jnrKoxtPLkJMWRSGQpHOBADbTX4HSQtX6QNj4oelSJN8IbDGeM8oYH5\\/NUvNUh\\/CtKpEUtK\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwAn\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAwEBPwAn\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"THsmCtXGOu8tjEz2+swswAZ1Xiwf4McwyS5jBkQiTapeiklhQ+pcEg==\",\"scanLengths\":[11841,44865,20470,27603],\"midQualityFileSha256\":\"6w3s2n0Zw+CTl5gvtjQ5cb1GjU4kkHXRE+Rp6cMrGw4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771020168,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:02:49'),
(12497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:02:49'),
(12498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A55F2E843D6FDF78461B5E110A564EE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020168967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:02:48.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:02:49'),
(12499, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A50EEDD79676E22C5B407AF03CD811E8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635032338_826573877110655_5226594294215220703_n.enc?ccb=11-4&oh=01_Q5Aa3wEky3uXFZ-Wf4Wu1D9tsLFW4fu0i9WealvBNw-IiZGv-w&oe=69B721E4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bsALeTuCJ6VxlUdnEb76KUCsCt3vgC11OrQZw+Wiuu4=\",\"fileLength\":\"22181\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"0gjT9sO2aSAR2g+kp3Xw77vgW2sZX+6PzZEFMjU+xV8=\",\"fileEncSha256\":\"Hxxwv4+yp+Mh4\\/SxVC4EEhJ1pcOw7j+M\\/T73oFmE4QY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635032338_826573877110655_5226594294215220703_n.enc?ccb=11-4&oh=01_Q5Aa3wEky3uXFZ-Wf4Wu1D9tsLFW4fu0i9WealvBNw-IiZGv-w&oe=69B721E4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020186\",\"waveform\":\"AEQsPTBdXU9dVixBPTxQLkxNUEg6WxhEQkUUABUAARAbIlQ5WlhTUzVCL0YyNRo5KFhAKVNJVlQ4SxEdIRQmFg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:14.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:03:14'),
(12500, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:14.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:14'),
(12501, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"46325550809276@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:14.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:14'),
(12502, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"46325550809276@lid\",\"fromMe\":true,\"id\":\"A50EEDD79676E22C5B407AF03CD811E8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635032338_826573877110655_5226594294215220703_n.enc?ccb=11-4&oh=01_Q5Aa3wEky3uXFZ-Wf4Wu1D9tsLFW4fu0i9WealvBNw-IiZGv-w&oe=69B721E4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bsALeTuCJ6VxlUdnEb76KUCsCt3vgC11OrQZw+Wiuu4=\",\"fileLength\":\"22181\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"0gjT9sO2aSAR2g+kp3Xw77vgW2sZX+6PzZEFMjU+xV8=\",\"fileEncSha256\":\"Hxxwv4+yp+Mh4\\/SxVC4EEhJ1pcOw7j+M\\/T73oFmE4QY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635032338_826573877110655_5226594294215220703_n.enc?ccb=11-4&oh=01_Q5Aa3wEky3uXFZ-Wf4Wu1D9tsLFW4fu0i9WealvBNw-IiZGv-w&oe=69B721E4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020186\",\"waveform\":\"AEQsPTBdXU9dVixBPTxQLkxNUEg6WxhEQkUUABUAARAbIlQ5WlhTUzVCL0YyNRo5KFhAKVNJVlQ4SxEdIRQmFg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:14.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:03:14'),
(12503, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRruVPUnvkJ4xnXyVWLM3us5b5T1flDY3IFSGg8KTX3A&oe=699CCDB3&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:15.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:15'),
(12504, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A50EEDD79676E22C5B407AF03CD811E8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020195042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:15.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:03:15'),
(12505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"46325550809276@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620513746_1799933870694530_7884173367411883092_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRruVPUnvkJ4xnXyVWLM3us5b5T1flDY3IFSGg8KTX3A&oe=699CCDB3&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:15.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:15'),
(12506, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"46325550809276@lid\",\"id\":\"A50EEDD79676E22C5B407AF03CD811E8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020195042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:15.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:03:15'),
(12507, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:37.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:37'),
(12508, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:37.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:37'),
(12509, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A534041D530F4191F8495131F39F1ABA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635750424_1242384351356461_7012011304481659936_n.enc?ccb=11-4&oh=01_Q5Aa3wFO0C40XKfDaXX1aagqL8HSpSg772TMcvohiAunmroi5A&oe=69B70989&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tjFKDBNCjxFQD3RhqjAXwC2ZU7BWjDhV8H5wPEH8F0c=\",\"fileLength\":\"16285\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"cSObAwAQlo9ujJDe\\/n9k8JqY6ju74f5c03WJIupd4ng=\",\"fileEncSha256\":\"cLA2CQILOT\\/lioj2YEVkO4Q+y61FU3\\/wt85SyulVVTU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635750424_1242384351356461_7012011304481659936_n.enc?ccb=11-4&oh=01_Q5Aa3wFO0C40XKfDaXX1aagqL8HSpSg772TMcvohiAunmroi5A&oe=69B70989&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020211\",\"waveform\":\"AAMYK1deN01cJFpbVGE3X0lMUFgWWE5KWVcXWTZbPmBYN1AlV0wPR0BLNEpTYE5RVEtJYl5NRVZTTkVcUyUhFw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020216,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:37.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:03:37'),
(12510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:37.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:37'),
(12511, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A534041D530F4191F8495131F39F1ABA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635750424_1242384351356461_7012011304481659936_n.enc?ccb=11-4&oh=01_Q5Aa3wFO0C40XKfDaXX1aagqL8HSpSg772TMcvohiAunmroi5A&oe=69B70989&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tjFKDBNCjxFQD3RhqjAXwC2ZU7BWjDhV8H5wPEH8F0c=\",\"fileLength\":\"16285\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"cSObAwAQlo9ujJDe\\/n9k8JqY6ju74f5c03WJIupd4ng=\",\"fileEncSha256\":\"cLA2CQILOT\\/lioj2YEVkO4Q+y61FU3\\/wt85SyulVVTU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635750424_1242384351356461_7012011304481659936_n.enc?ccb=11-4&oh=01_Q5Aa3wFO0C40XKfDaXX1aagqL8HSpSg772TMcvohiAunmroi5A&oe=69B70989&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020211\",\"waveform\":\"AAMYK1deN01cJFpbVGE3X0lMUFgWWE5KWVcXWTZbPmBYN1AlV0wPR0BLNEpTYE5RVEtJYl5NRVZTTkVcUyUhFw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020216,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:37.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:03:37'),
(12512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:37.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:38'),
(12513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:40.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:40'),
(12514, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:40.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:40'),
(12515, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:48.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:48'),
(12516, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:48.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:48'),
(12517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:58.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:58'),
(12518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:58.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:58'),
(12519, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/12673115_1352625736633462_8857384162394190947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6sTev1ah3wRhlIxT_8kcnK0JonbDitjqv5xntRolLzQ&oe=69B6FD66&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UM+OCbsVm+nP7V5sFr4gAVbqW0ZzZxIfynRkwypn5rQ=\",\"fileLength\":\"16912\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"4eohKfIRWFrb8uSDMLIe1DJv15DaaM2IssPsJky3A8w=\",\"fileEncSha256\":\"aHRWcHyjVwkGTEx6S3umeNLuLl9CmymSsfkrXyo61vI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/12673115_1352625736633462_8857384162394190947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6sTev1ah3wRhlIxT_8kcnK0JonbDitjqv5xntRolLzQ&oe=69B6FD66&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020231\",\"waveform\":\"ACdFYTdQTV1QWkxUWT1UNU1LOEM+VTsrJjBJQUwmSDkuVBkPAwYAHhgeSCJVWjBTJVNRWlBLVCozSlFKQC81VQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020238,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:58.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:03:58'),
(12520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:58.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:03:58'),
(12521, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/12673115_1352625736633462_8857384162394190947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6sTev1ah3wRhlIxT_8kcnK0JonbDitjqv5xntRolLzQ&oe=69B6FD66&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UM+OCbsVm+nP7V5sFr4gAVbqW0ZzZxIfynRkwypn5rQ=\",\"fileLength\":\"16912\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"4eohKfIRWFrb8uSDMLIe1DJv15DaaM2IssPsJky3A8w=\",\"fileEncSha256\":\"aHRWcHyjVwkGTEx6S3umeNLuLl9CmymSsfkrXyo61vI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/12673115_1352625736633462_8857384162394190947_n.enc?ccb=11-4&oh=01_Q5Aa3wF6sTev1ah3wRhlIxT_8kcnK0JonbDitjqv5xntRolLzQ&oe=69B6FD66&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020231\",\"waveform\":\"ACdFYTdQTV1QWkxUWT1UNU1LOEM+VTsrJjBJQUwmSDkuVBkPAwYAHhgeSCJVWjBTJVNRWlBLVCozSlFKQC81VQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020238,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:58.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:03:58'),
(12522, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFsG9RiU6ogjP5wvDKbzZP6otZ8ohXI_G-fi3je1KFzg&oe=699C9EC8&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:58.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:03:59'),
(12523, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020239418,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:59.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:03:59'),
(12524, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020239418,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:03:59.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:03:59'),
(12525, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A534041D530F4191F8495131F39F1ABA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020249115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:09.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:04:09'),
(12526, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A534041D530F4191F8495131F39F1ABA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020249115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:09.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:04:09'),
(12527, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A534041D530F4191F8495131F39F1ABA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020264691,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:24.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:04:24'),
(12528, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A534041D530F4191F8495131F39F1ABA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020264691,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:24.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:04:24'),
(12529, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A534041D530F4191F8495131F39F1ABA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020265591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:25.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:04:25'),
(12530, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A534041D530F4191F8495131F39F1ABA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020265591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:25.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:04:25'),
(12531, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:29.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:29'),
(12532, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:29.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:29'),
(12533, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:35.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:36'),
(12534, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:35.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:36'),
(12535, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:36.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:36'),
(12536, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:36.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:36'),
(12537, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:38.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:38'),
(12538, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:38.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:38'),
(12539, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:47.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:47'),
(12540, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:47.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:47'),
(12541, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:48.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:48'),
(12542, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:48.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:49'),
(12543, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:57.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:57'),
(12544, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:57.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:57'),
(12545, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:58.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:04:58'),
(12546, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:04:58.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:04:59'),
(12547, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:05.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:05'),
(12548, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:05.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:05'),
(12549, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:06'),
(12550, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDAAAB7B8DC73F2E304AE7F245BC8AC\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636742410_1536196424843563_2366003419513045873_n.enc?ccb=11-4&oh=01_Q5Aa3wETHBU5PURPcIsH3aLEAWNnB6auppAiQerzXc64apzMFQ&oe=69B717AE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"5OP8iArTVihSbtpqufDwFaNibfgacpe4Jc7NkBE5qE8=\",\"fileLength\":\"66840\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"MOwjuVxnE24tNH\\/NtmS0kSJuZbTfBpnHnVPPGdZjTiQ=\",\"fileEncSha256\":\"CzOmSCobH2mIKXx0ujQmicD\\/9pSV8IZoVsPLR5ls\\/mA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636742410_1536196424843563_2366003419513045873_n.enc?ccb=11-4&oh=01_Q5Aa3wETHBU5PURPcIsH3aLEAWNnB6auppAiQerzXc64apzMFQ&oe=69B717AE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020278\",\"waveform\":\"AF4sTUhLAEkcJTYAOmM2DWBHPiZKJiFFUUU0UFcAOABbPk5AIEY6MxxWQklDVgUdQCpIUww9TEUAH08AMjVBAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ixqg4ZVhh8h8K2zmclDfarr167GXznGB5VXim7\\/VV0Q=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:05:06'),
(12551, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:06'),
(12552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:06');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12553, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDAAAB7B8DC73F2E304AE7F245BC8AC\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636742410_1536196424843563_2366003419513045873_n.enc?ccb=11-4&oh=01_Q5Aa3wETHBU5PURPcIsH3aLEAWNnB6auppAiQerzXc64apzMFQ&oe=69B717AE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"5OP8iArTVihSbtpqufDwFaNibfgacpe4Jc7NkBE5qE8=\",\"fileLength\":\"66840\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"MOwjuVxnE24tNH\\/NtmS0kSJuZbTfBpnHnVPPGdZjTiQ=\",\"fileEncSha256\":\"CzOmSCobH2mIKXx0ujQmicD\\/9pSV8IZoVsPLR5ls\\/mA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636742410_1536196424843563_2366003419513045873_n.enc?ccb=11-4&oh=01_Q5Aa3wETHBU5PURPcIsH3aLEAWNnB6auppAiQerzXc64apzMFQ&oe=69B717AE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020278\",\"waveform\":\"AF4sTUhLAEkcJTYAOmM2DWBHPiZKJiFFUUU0UFcAOABbPk5AIEY6MxxWQklDVgUdQCpIUww9TEUAH08AMjVBAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ixqg4ZVhh8h8K2zmclDfarr167GXznGB5VXim7\\/VV0Q=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:05:06'),
(12554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:07'),
(12555, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:07'),
(12556, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:06.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:07'),
(12557, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:09.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:09'),
(12558, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:09.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:09'),
(12559, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:20.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:20'),
(12560, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:20.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:20'),
(12561, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:30.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:30'),
(12562, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:30.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:30'),
(12563, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:37.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:37'),
(12564, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:37.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:38'),
(12565, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:38'),
(12566, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:38'),
(12567, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A9CE0DFEDDCB1C2D46A\"},\"pushName\":\"Solano Und 097\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite irmão, minha parcela ta atrasada ai, eu não esqueci não, deu uma apertada aqui mas to lembrando se quiser cancelar ai da nada não, assim que eu pegar o dinheiro que ta pra sair aqui eu te mando ai pra ativar denovo\",\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\"}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771015675\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zlQRIhZRUBSuGxo4hk1YG7O1OjOBjjPm6PfQqRMfEbU=\"}},\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771020337,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:05:38'),
(12568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:38'),
(12569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:39'),
(12570, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:39'),
(12571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:39'),
(12572, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A9CE0DFEDDCB1C2D46A\"},\"pushName\":\"Solano Und 097\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite irmão, minha parcela ta atrasada ai, eu não esqueci não, deu uma apertada aqui mas to lembrando se quiser cancelar ai da nada não, assim que eu pegar o dinheiro que ta pra sair aqui eu te mando ai pra ativar denovo\",\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\"}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771015675\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zlQRIhZRUBSuGxo4hk1YG7O1OjOBjjPm6PfQqRMfEbU=\"}},\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771020337,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:38.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:05:39'),
(12573, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A555835CCF4F6E401953EEB549C6E7D9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636717127_940864648407077_8042596477181119028_n.enc?ccb=11-4&oh=01_Q5Aa3wFKBi_YsPWPIK7R6wq8RUY6tnRhD-QJ8pYG_HMPHAZYzQ&oe=69B71982&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Gn5IjIZT75g4uijscjfExtkRnipzttqH8BEkc4Yy7ys=\",\"fileLength\":\"15312\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"kU8YLeFKeRuoyWLIQ39oiq1ZoIVH90LcYPP797m6UfA=\",\"fileEncSha256\":\"6lrTaERxdq0+gJbBDNUvxssyzST9uGi8LQ8T90420RY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636717127_940864648407077_8042596477181119028_n.enc?ccb=11-4&oh=01_Q5Aa3wFKBi_YsPWPIK7R6wq8RUY6tnRhD-QJ8pYG_HMPHAZYzQ&oe=69B71982&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020334\",\"waveform\":\"AAY+T1cjWEhPO1Q8UjdKWU1CNlMjQVMAAAAVAAA6VEc+PFMnVVdEV0lNOFZAUT8JIEVQSkFHU0RLUk5QEU49Rg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020339,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:39.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:05:39'),
(12574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:40.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:40'),
(12575, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A555835CCF4F6E401953EEB549C6E7D9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636717127_940864648407077_8042596477181119028_n.enc?ccb=11-4&oh=01_Q5Aa3wFKBi_YsPWPIK7R6wq8RUY6tnRhD-QJ8pYG_HMPHAZYzQ&oe=69B71982&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Gn5IjIZT75g4uijscjfExtkRnipzttqH8BEkc4Yy7ys=\",\"fileLength\":\"15312\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"kU8YLeFKeRuoyWLIQ39oiq1ZoIVH90LcYPP797m6UfA=\",\"fileEncSha256\":\"6lrTaERxdq0+gJbBDNUvxssyzST9uGi8LQ8T90420RY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636717127_940864648407077_8042596477181119028_n.enc?ccb=11-4&oh=01_Q5Aa3wFKBi_YsPWPIK7R6wq8RUY6tnRhD-QJ8pYG_HMPHAZYzQ&oe=69B71982&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020334\",\"waveform\":\"AAY+T1cjWEhPO1Q8UjdKWU1CNlMjQVMAAAAVAAA6VEc+PFMnVVdEV0lNOFZAUT8JIEVQSkFHU0RLUk5QEU49Rg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020339,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:39.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:05:40'),
(12576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:40.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:40'),
(12577, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:39.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:40'),
(12578, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:39.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:40'),
(12579, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A555835CCF4F6E401953EEB549C6E7D9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020341513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:41.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:05:41'),
(12580, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A555835CCF4F6E401953EEB549C6E7D9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020341513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:41.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:05:41'),
(12581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A555835CCF4F6E401953EEB549C6E7D9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020345167,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:45.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:05:45'),
(12582, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A555835CCF4F6E401953EEB549C6E7D9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020345167,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:45.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:05:45'),
(12583, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:45.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:45'),
(12584, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:45.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:45'),
(12585, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:52.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:52'),
(12586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:52.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:52'),
(12587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:53'),
(12588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC358618B21A92890AE1CCA73A1D4056\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636487939_886023624037141_5710933848770979484_n.enc?ccb=11-4&oh=01_Q5Aa3wF7rnecH8LZugfDZfeHYbQqjCn3kVWTLPs917P4CBhopg&oe=69B724E7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"B1aOkDffTTdsQPP4OvOJp7sRK+aTF+JqJXW0nko3KB8=\",\"fileLength\":\"14837\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"X8ou1ggnUrjhsCgEQc8YNq02jREGDGqbGS41JeEZGoQ=\",\"fileEncSha256\":\"a\\/CR5TsFakaRc\\/OWu3M9svlzpTuqAtR9ctV8Z94LIiM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636487939_886023624037141_5710933848770979484_n.enc?ccb=11-4&oh=01_Q5Aa3wF7rnecH8LZugfDZfeHYbQqjCn3kVWTLPs917P4CBhopg&oe=69B724E7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020347\",\"waveform\":\"AAAAAAAAYmJcNlhWMz1hUklXR0U2OlRMKyRKNScOTj49QkMrS1FWUTMjGzYKSTpMPVNJSUdMNElNOQAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MJG+Zvq6SiUh3CcqYKRbSeXo6eEWMKioOA3yEQbNksY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020353,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:05:53'),
(12589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:53'),
(12590, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC358618B21A92890AE1CCA73A1D4056\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636487939_886023624037141_5710933848770979484_n.enc?ccb=11-4&oh=01_Q5Aa3wF7rnecH8LZugfDZfeHYbQqjCn3kVWTLPs917P4CBhopg&oe=69B724E7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"B1aOkDffTTdsQPP4OvOJp7sRK+aTF+JqJXW0nko3KB8=\",\"fileLength\":\"14837\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"X8ou1ggnUrjhsCgEQc8YNq02jREGDGqbGS41JeEZGoQ=\",\"fileEncSha256\":\"a\\/CR5TsFakaRc\\/OWu3M9svlzpTuqAtR9ctV8Z94LIiM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636487939_886023624037141_5710933848770979484_n.enc?ccb=11-4&oh=01_Q5Aa3wF7rnecH8LZugfDZfeHYbQqjCn3kVWTLPs917P4CBhopg&oe=69B724E7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020347\",\"waveform\":\"AAAAAAAAYmJcNlhWMz1hUklXR0U2OlRMKyRKNScOTj49QkMrS1FWUTMjGzYKSTpMPVNJSUdMNElNOQAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MJG+Zvq6SiUh3CcqYKRbSeXo6eEWMKioOA3yEQbNksY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020353,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:05:53'),
(12591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:53'),
(12592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:05:54'),
(12593, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:54'),
(12594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:05:53.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:05:54'),
(12595, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:35.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:06:36'),
(12596, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:35.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:06:36'),
(12597, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:38.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:06:38'),
(12598, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:38.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:06:38'),
(12599, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB57AD831910B984B6B528D1F93DC4D\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30745089_910193491406540_2462518165685180002_n.enc?ccb=11-4&oh=01_Q5Aa3wGdDcTbhnVMcxSpMqma8r2SWtHQT-cNoC5KdynpGQsSjg&oe=69B70D71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Jnfsr7n5Nomj3XgbbC9eCF9QS0Z4CbGVlZ\\/Toz3i7oc=\",\"fileLength\":\"95015\",\"height\":1600,\"width\":900,\"mediaKey\":\"vhTgsKPu2YMhk9jnQrsocZ9ENuxFux\\/UkD2XDbCbaRI=\",\"fileEncSha256\":\"9ESVH0D+M+mggKUsShIxAj21OSte3BAwGIwWep\\/38XQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30745089_910193491406540_2462518165685180002_n.enc?ccb=11-4&oh=01_Q5Aa3wGdDcTbhnVMcxSpMqma8r2SWtHQT-cNoC5KdynpGQsSjg&oe=69B70D71&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020407\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABQEDBAIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAFIwzmU6qWwpD3i7E2EGP0CtVw\\/GVcquae4l8w2F4ZzqCDuSssD\\/xAAlEAACAgECBQUBAAAAAAAAAAABAgADEQUSBBAVMUETMDJCUVL\\/2gAIAQEAAT8A5EQcum2\\/3H4OxfvGqI7tGUjyZg\\/sDVskuq3ZIltZBjLNsBuqbDEylt9cu4RnUmehl8QaYxEu1E29xKdTaqPrDlMQca27M6pdCV8DmIXrJ+Ht\\/wD\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AE\\/\\/xAAaEQACAgMAAAAAAAAAAAAAAAAAEQEQMFFh\\/9oACAEDAQE\\/ABUukreD\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"F80hQ\\/zwjh7P93pFzT6pI\\/NPsQJITTPp0rshDlUbK9ZT37QuHqO6og==\",\"scanLengths\":[9519,26243,18624,40629],\"midQualityFileSha256\":\"JoDacwtO5spQ0KUmWayEndNQUmGhjDErIpgG1iJe+7s=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7eM+8nkGrVtltWkDalauTdsYBYGR9sTdYubQb2g359w=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771020408,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:06:48'),
(12600, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:06:48'),
(12601, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:06:48'),
(12602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB57AD831910B984B6B528D1F93DC4D\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30745089_910193491406540_2462518165685180002_n.enc?ccb=11-4&oh=01_Q5Aa3wGdDcTbhnVMcxSpMqma8r2SWtHQT-cNoC5KdynpGQsSjg&oe=69B70D71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Jnfsr7n5Nomj3XgbbC9eCF9QS0Z4CbGVlZ\\/Toz3i7oc=\",\"fileLength\":\"95015\",\"height\":1600,\"width\":900,\"mediaKey\":\"vhTgsKPu2YMhk9jnQrsocZ9ENuxFux\\/UkD2XDbCbaRI=\",\"fileEncSha256\":\"9ESVH0D+M+mggKUsShIxAj21OSte3BAwGIwWep\\/38XQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30745089_910193491406540_2462518165685180002_n.enc?ccb=11-4&oh=01_Q5Aa3wGdDcTbhnVMcxSpMqma8r2SWtHQT-cNoC5KdynpGQsSjg&oe=69B70D71&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020407\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABQEDBAIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAFIwzmU6qWwpD3i7E2EGP0CtVw\\/GVcquae4l8w2F4ZzqCDuSssD\\/xAAlEAACAgECBQUBAAAAAAAAAAABAgADEQUSBBAVMUETMDJCUVL\\/2gAIAQEAAT8A5EQcum2\\/3H4OxfvGqI7tGUjyZg\\/sDVskuq3ZIltZBjLNsBuqbDEylt9cu4RnUmehl8QaYxEu1E29xKdTaqPrDlMQca27M6pdCV8DmIXrJ+Ht\\/wD\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AE\\/\\/xAAaEQACAgMAAAAAAAAAAAAAAAAAEQEQMFFh\\/9oACAEDAQE\\/ABUukreD\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"F80hQ\\/zwjh7P93pFzT6pI\\/NPsQJITTPp0rshDlUbK9ZT37QuHqO6og==\",\"scanLengths\":[9519,26243,18624,40629],\"midQualityFileSha256\":\"JoDacwtO5spQ0KUmWayEndNQUmGhjDErIpgG1iJe+7s=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7eM+8nkGrVtltWkDalauTdsYBYGR9sTdYubQb2g359w=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771020408,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:06:48'),
(12603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:06:48'),
(12604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:06:49'),
(12605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:06:49'),
(12606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:48.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:06:49'),
(12607, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"A5EBD806D900A1085CC125DDAF844302\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636626068_780533058429467_6252796937402739539_n.enc?ccb=11-4&oh=01_Q5Aa3wGHQlvjjq5A7ZctQXFrxu6cgEqBo_x980TD9F7uFm3Cjw&oe=69B71600&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vXpJdMGTkFGlSVwvRMOMf5xlSApksjKBg0K5qodI3L4=\",\"fileLength\":\"18470\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"WnnAcwveAB2k2ii9hTojm8j4O5MmSrZZwfk4SaRWT+Y=\",\"fileEncSha256\":\"whurgKtelVmC2WOBYCVK9KO3VyfS1C+pAGlc6qF8RoI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636626068_780533058429467_6252796937402739539_n.enc?ccb=11-4&oh=01_Q5Aa3wGHQlvjjq5A7ZctQXFrxu6cgEqBo_x980TD9F7uFm3Cjw&oe=69B71600&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020412\",\"waveform\":\"AAsJBFhSUVAnQzVPPg8DCAcDAAAARlMTKkxKUhFQNEEuSSg9QTlGTE0uIwEAAAAAABgqSThPRExDRiE\\/SURHJg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020419,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:59.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12608, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"A5EBD806D900A1085CC125DDAF844302\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636626068_780533058429467_6252796937402739539_n.enc?ccb=11-4&oh=01_Q5Aa3wGHQlvjjq5A7ZctQXFrxu6cgEqBo_x980TD9F7uFm3Cjw&oe=69B71600&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vXpJdMGTkFGlSVwvRMOMf5xlSApksjKBg0K5qodI3L4=\",\"fileLength\":\"18470\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"WnnAcwveAB2k2ii9hTojm8j4O5MmSrZZwfk4SaRWT+Y=\",\"fileEncSha256\":\"whurgKtelVmC2WOBYCVK9KO3VyfS1C+pAGlc6qF8RoI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636626068_780533058429467_6252796937402739539_n.enc?ccb=11-4&oh=01_Q5Aa3wGHQlvjjq5A7ZctQXFrxu6cgEqBo_x980TD9F7uFm3Cjw&oe=69B71600&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020412\",\"waveform\":\"AAsJBFhSUVAnQzVPPg8DCAcDAAAARlMTKkxKUhFQNEEuSSg9QTlGTE0uIwEAAAAAABgqSThPRExDRiE\\/SURHJg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020419,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:59.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:00'),
(12609, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113043723792419@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:59.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:00'),
(12610, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:00'),
(12611, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113043723792419@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:06:59.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:00'),
(12612, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:01'),
(12613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:01'),
(12614, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:01'),
(12615, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:01'),
(12616, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:01'),
(12617, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:01.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:02'),
(12618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:02'),
(12619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:02'),
(12620, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:02'),
(12621, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:02'),
(12622, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:01.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:03'),
(12623, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5EBD806D900A1085CC125DDAF844302\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020421624,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:01.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:03'),
(12624, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5EBD806D900A1085CC125DDAF844302\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020421624,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:01.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:03'),
(12625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:03'),
(12626, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:03'),
(12627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:04'),
(12628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:04'),
(12629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:04'),
(12630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:04'),
(12631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:04'),
(12632, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:05'),
(12633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:05'),
(12634, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:05'),
(12635, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:05'),
(12636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"ehck\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:05'),
(12637, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:06'),
(12638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:06'),
(12639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:06'),
(12640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:06'),
(12641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:06'),
(12642, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:07'),
(12643, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:07'),
(12644, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:07'),
(12645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:07'),
(12646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:07'),
(12647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:08'),
(12648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"t01C\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:08'),
(12649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:08'),
(12650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:08'),
(12651, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:08'),
(12652, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:09'),
(12653, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:09'),
(12654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:09'),
(12655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:09'),
(12656, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:09'),
(12657, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:10'),
(12658, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:10'),
(12659, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:10'),
(12660, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A503EB0A63BB51196D723D098B7C1AD4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636637326_1473447567633732_5898229189869400644_n.enc?ccb=11-4&oh=01_Q5Aa3wG263UfQnlD5y0KCwYEnyn3H3nr5-9ZoUqQ6jdiR6k-dQ&oe=69B6F7F8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BFR+SrCBkuBMn+3aESqOIS4ivTXGptYAQ\\/h+MHfxnko=\",\"fileLength\":\"7973\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"wM6QpmWmuhc7KX5ug0IH6TrWkNycuHtEHRD4gCXj\\/mA=\",\"fileEncSha256\":\"ShpMY6DB0gApqOB7H\\/jULIHFcR6G0Hc5XN+UqGjV5kA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636637326_1473447567633732_5898229189869400644_n.enc?ccb=11-4&oh=01_Q5Aa3wG263UfQnlD5y0KCwYEnyn3H3nr5-9ZoUqQ6jdiR6k-dQ&oe=69B6F7F8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020427\",\"waveform\":\"ABseHx8eGx0AAAAHGTpfVUxLOjIpGDpWWVtTR0JBP0RERltbVFBCJ1JOTEpFNSE0T05HSEk6Nj1BPDkbOD02Lw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020429,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:10'),
(12661, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:10'),
(12662, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A503EB0A63BB51196D723D098B7C1AD4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636637326_1473447567633732_5898229189869400644_n.enc?ccb=11-4&oh=01_Q5Aa3wG263UfQnlD5y0KCwYEnyn3H3nr5-9ZoUqQ6jdiR6k-dQ&oe=69B6F7F8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BFR+SrCBkuBMn+3aESqOIS4ivTXGptYAQ\\/h+MHfxnko=\",\"fileLength\":\"7973\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"wM6QpmWmuhc7KX5ug0IH6TrWkNycuHtEHRD4gCXj\\/mA=\",\"fileEncSha256\":\"ShpMY6DB0gApqOB7H\\/jULIHFcR6G0Hc5XN+UqGjV5kA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636637326_1473447567633732_5898229189869400644_n.enc?ccb=11-4&oh=01_Q5Aa3wG263UfQnlD5y0KCwYEnyn3H3nr5-9ZoUqQ6jdiR6k-dQ&oe=69B6F7F8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020427\",\"waveform\":\"ABseHx8eGx0AAAAHGTpfVUxLOjIpGDpWWVtTR0JBP0RERltbVFBCJ1JOTEpFNSE0T05HSEk6Nj1BPDkbOD02Lw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020429,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:11'),
(12663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:11'),
(12664, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:11'),
(12665, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"t01C\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:11'),
(12666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A503EB0A63BB51196D723D098B7C1AD4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020430385,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:11'),
(12667, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A503EB0A63BB51196D723D098B7C1AD4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020430385,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:12'),
(12668, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:10.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:12'),
(12669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:12'),
(12670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:12'),
(12671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:12'),
(12672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A503EB0A63BB51196D723D098B7C1AD4\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020432973,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:12.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:13'),
(12673, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:13'),
(12674, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:13'),
(12675, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:13'),
(12676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A503EB0A63BB51196D723D098B7C1AD4\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020432973,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:12.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:13'),
(12677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:14'),
(12678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:00.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:15'),
(12679, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:35.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:35'),
(12680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC99E355B4F4702A63A260DAA969E971\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636635554_928618862954454_5523031840316227149_n.enc?ccb=11-4&oh=01_Q5Aa3wHei8iEHkEVDia7HS8BKhsDtrp0DPkJD1J88ndgDGiT5g&oe=69B7129E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"b6h1ZjgUSqx83nRg\\/uIYJUVFuBJS2xx\\/jEvwoS5J2EM=\",\"fileLength\":\"100950\",\"height\":1600,\"width\":900,\"mediaKey\":\"DsjVkV5ot53BUy+zYSBsZtcLreXA4OVa\\/4YwisOVGek=\",\"fileEncSha256\":\"BX7bqAk+T1Ts\\/tWLWPA4An02IvBKYWaVziazV3DgwWk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636635554_928618862954454_5523031840316227149_n.enc?ccb=11-4&oh=01_Q5Aa3wHei8iEHkEVDia7HS8BKhsDtrp0DPkJD1J88ndgDGiT5g&oe=69B7129E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020454\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADmWTKfhSh0BEhluct4ql6XCXzZ1Dnvn1rGprGYamIVGQXGphUbD\\/\\/EACEQAAICAgICAwEAAAAAAAAAAAECABEEEgMTIVEFEBRh\\/9oACAEBAAE\\/ABkpBlJP0IYObjE7+P3AXVidbgZh5oTYn1FXadX9mOeRm0XUbQfHO7FAyCNgOqM2y+J5W55nDh47Y\\/Z2U1TgbGBbd2h48HQU8yeLAVTrVxFwyttFZgtbeJtRnaYXJg5SBFfWE2bliXL+6Moyj6mgmo9QCVKn\\/8QAHREAAQMFAQAAAAAAAAAAAAAAAQACERASICEyQf\\/aAAgBAgEBPwCKnqBpOcPArxn\\/AP\\/EABwRAAEDBQAAAAAAAAAAAAAAAAIAAREQEiAhgf\\/aAAgBAwEBPwCoFe3ULFuVGf8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QF\\/QBewsFY1x36RP7ArhVKyvN13YXxAPze\\/zwT2wH1iL\\/KIGlnyiZw==\",\"scanLengths\":[11377,37063,15840,36670],\"midQualityFileSha256\":\"GTQKo8ZAtqlgz4LEdf3+XNf56xwKO8WQGuUX0dSQd0Y=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tE6I9HVbjbMOWtBk1uu2BtximAY4HNsBh9SpVk3NOco=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771020455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:35.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:35'),
(12681, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:35.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:35'),
(12682, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC99E355B4F4702A63A260DAA969E971\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636635554_928618862954454_5523031840316227149_n.enc?ccb=11-4&oh=01_Q5Aa3wHei8iEHkEVDia7HS8BKhsDtrp0DPkJD1J88ndgDGiT5g&oe=69B7129E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"b6h1ZjgUSqx83nRg\\/uIYJUVFuBJS2xx\\/jEvwoS5J2EM=\",\"fileLength\":\"100950\",\"height\":1600,\"width\":900,\"mediaKey\":\"DsjVkV5ot53BUy+zYSBsZtcLreXA4OVa\\/4YwisOVGek=\",\"fileEncSha256\":\"BX7bqAk+T1Ts\\/tWLWPA4An02IvBKYWaVziazV3DgwWk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636635554_928618862954454_5523031840316227149_n.enc?ccb=11-4&oh=01_Q5Aa3wHei8iEHkEVDia7HS8BKhsDtrp0DPkJD1J88ndgDGiT5g&oe=69B7129E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020454\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAADmWTKfhSh0BEhluct4ql6XCXzZ1Dnvn1rGprGYamIVGQXGphUbD\\/\\/EACEQAAICAgICAwEAAAAAAAAAAAECABEEEgMTIVEFEBRh\\/9oACAEBAAE\\/ABkpBlJP0IYObjE7+P3AXVidbgZh5oTYn1FXadX9mOeRm0XUbQfHO7FAyCNgOqM2y+J5W55nDh47Y\\/Z2U1TgbGBbd2h48HQU8yeLAVTrVxFwyttFZgtbeJtRnaYXJg5SBFfWE2bliXL+6Moyj6mgmo9QCVKn\\/8QAHREAAQMFAQAAAAAAAAAAAAAAAQACERASICEyQf\\/aAAgBAgEBPwCKnqBpOcPArxn\\/AP\\/EABwRAAEDBQAAAAAAAAAAAAAAAAIAAREQEiAhgf\\/aAAgBAwEBPwCoFe3ULFuVGf8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QF\\/QBewsFY1x36RP7ArhVKyvN13YXxAPze\\/zwT2wH1iL\\/KIGlnyiZw==\",\"scanLengths\":[11377,37063,15840,36670],\"midQualityFileSha256\":\"GTQKo8ZAtqlgz4LEdf3+XNf56xwKO8WQGuUX0dSQd0Y=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tE6I9HVbjbMOWtBk1uu2BtximAY4HNsBh9SpVk3NOco=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771020455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:35.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:35'),
(12683, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:35.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:35'),
(12684, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:35.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:36'),
(12685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:36.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:36'),
(12686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:36.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:36'),
(12687, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5EBD806D900A1085CC125DDAF844302\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020459735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:39.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:39'),
(12688, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5EBD806D900A1085CC125DDAF844302\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020459735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:39.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:39'),
(12689, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5EBD806D900A1085CC125DDAF844302\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020466151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:46.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:46'),
(12690, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5EBD806D900A1085CC125DDAF844302\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020466151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:46.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:46'),
(12691, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A593C78B942918AE52E4FAD7804170D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":29711},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":29711},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771020474,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:54.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:07:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12692, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:54.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:54'),
(12693, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:54.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:54'),
(12694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZhZnUKsb8U38i6rv6EtoppUUkMd0inXsrnEY1uG3uZw&oe=699C9794&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:54.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:54'),
(12695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZhZnUKsb8U38i6rv6EtoppUUkMd0inXsrnEY1uG3uZw&oe=699C9794&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:54.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:54'),
(12696, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB006CFADB6814DD74B35\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771020475,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:55.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:55'),
(12697, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB006CFADB6814DD74B35\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771020475,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:55.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:55'),
(12698, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A593C78B942918AE52E4FAD7804170D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":29711},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":29711},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771020474,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:54.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:07:55'),
(12699, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E3C6EEB5D2E09478D1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771020475,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:55.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:07:55'),
(12700, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E3C6EEB5D2E09478D1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Comandos Admin*\\n\\n📝 *\\/cadastro* - Cadastrar novo cliente\\n✅ *\\/aprovar TELEFONE* - Aprovar pagamento\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar serviço\\n🔍 *\\/buscar TELEFONE* - Buscar cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📅 *\\/vencimento* - Consultar vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771020475,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:07:55.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:07:56'),
(12701, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE1E561A367B5718069\"},\"pushName\":\"Solano Und 097\",\"message\":{\"conversation\":\"Tranquilo, qualquer coisa se for o caso eu não importo não pq certo é certo, ou se quiser deixar e depois botar o juro eu não importo nao\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771015675\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"do7\\/edO6uXF99s6AdyNdtQUMy4NsClQeVKtXn3NE3dw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771020542,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:02.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:09:03'),
(12702, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:02.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:03'),
(12703, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:02.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:03'),
(12704, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE1E561A367B5718069\"},\"pushName\":\"Solano Und 097\",\"message\":{\"conversation\":\"Tranquilo, qualquer coisa se for o caso eu não importo não pq certo é certo, ou se quiser deixar e depois botar o juro eu não importo nao\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771015675\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"do7\\/edO6uXF99s6AdyNdtQUMy4NsClQeVKtXn3NE3dw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771020542,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:02.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:09:03'),
(12705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:02.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:03'),
(12706, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:03.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:03'),
(12707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:02.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:03'),
(12708, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:03.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:03'),
(12709, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020570084,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:30.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:09:30'),
(12710, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020570727,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:30.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:09:30'),
(12711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020570084,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:30.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:09:30'),
(12712, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020570727,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:30.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:09:30'),
(12713, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113043723792419@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:31.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:31'),
(12714, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11242455_1417291740073338_7609743246671332632_n.enc?ccb=11-4&oh=01_Q5Aa3wEj-nVU-nzxSjLqqaPQrIxSF1aZPQyNAV8olh1b5p8lfg&oe=69B70871&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3rj5DKuazdVgJTZhHPVShOI30uWWRrxmaeWieP24gOk=\",\"fileLength\":\"4445\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"BtxIbCwuz0HnJIGCG+KlKAxjmu3yDy0PIjo8QBgnh7A=\",\"fileEncSha256\":\"7sovTneuZ0aRztLoY1mSRALs+uUNXYw3uS94YLIVH9g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11242455_1417291740073338_7609743246671332632_n.enc?ccb=11-4&oh=01_Q5Aa3wEj-nVU-nzxSjLqqaPQrIxSF1aZPQyNAV8olh1b5p8lfg&oe=69B70871&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020568\",\"waveform\":\"AAwPCAkLDwkFBgkLCxwyTVRTU0tBPkJHRUhLOjtKT1JSTkQzQ0tGTlNNT05GQzskGA8DAgQEAgADBAQFBgYCAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:31.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:09:31'),
(12715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113043723792419@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:31.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:31'),
(12716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11242455_1417291740073338_7609743246671332632_n.enc?ccb=11-4&oh=01_Q5Aa3wEj-nVU-nzxSjLqqaPQrIxSF1aZPQyNAV8olh1b5p8lfg&oe=69B70871&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3rj5DKuazdVgJTZhHPVShOI30uWWRrxmaeWieP24gOk=\",\"fileLength\":\"4445\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"BtxIbCwuz0HnJIGCG+KlKAxjmu3yDy0PIjo8QBgnh7A=\",\"fileEncSha256\":\"7sovTneuZ0aRztLoY1mSRALs+uUNXYw3uS94YLIVH9g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11242455_1417291740073338_7609743246671332632_n.enc?ccb=11-4&oh=01_Q5Aa3wEj-nVU-nzxSjLqqaPQrIxSF1aZPQyNAV8olh1b5p8lfg&oe=69B70871&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020568\",\"waveform\":\"AAwPCAkLDwkFBgkLCxwyTVRTU0tBPkJHRUhLOjtKT1JSTkQzQ0tGTlNNT05GQzskGA8DAgQEAgADBAQFBgYCAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:31.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:09:31'),
(12717, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:31.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:31'),
(12718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:31.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:33'),
(12719, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:37'),
(12720, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA4FCC491B1BD9B565A\"},\"pushName\":\"Solano Und 097\",\"message\":{\"conversation\":\"Bagunçou aqui minhas finanças\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771015675\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QZi2pmyiID0cAm9q4DvKvaKmxsajl22Qat\\/OANDDfH0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771020577,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:09:37'),
(12721, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:37'),
(12722, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA4FCC491B1BD9B565A\"},\"pushName\":\"Solano Und 097\",\"message\":{\"conversation\":\"Bagunçou aqui minhas finanças\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771015675\",\"recipientKeyHash\":\"wSX69J10afIeHg==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QZi2pmyiID0cAm9q4DvKvaKmxsajl22Qat\\/OANDDfH0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771020577,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:09:37'),
(12723, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:37'),
(12724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:38'),
(12725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:38'),
(12726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:37.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:38'),
(12727, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020579567,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:39.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:09:39'),
(12728, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5C5F716B7773EBD9D0E90CB4DD344DE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020579567,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:39.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:09:39'),
(12729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:39.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:09:39'),
(12730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:09:39.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:09:40'),
(12731, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113043723792419@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:09.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:09'),
(12732, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634194870_3199685597005039_391794945220850754_n.enc?ccb=11-4&oh=01_Q5Aa3wEaq_kL-e0mjJLMmB0JxQEMWsE3ryioShPkdNt5e3uPNg&oe=69B7223C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"60P5wM+i62f9rV9UMXjoFVD9K6hrXYp+OUS49vuOM10=\",\"fileLength\":\"74640\",\"seconds\":31,\"ptt\":true,\"mediaKey\":\"ZhLwO1yZDNzBlf7JslaRgvXQYzZJ4l0JWgHWCJOfi2U=\",\"fileEncSha256\":\"1SHAJ9TljDq4cgqTm4TfNa5w0VnXq\\/oR0BEkD\\/8OJSc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634194870_3199685597005039_391794945220850754_n.enc?ccb=11-4&oh=01_Q5Aa3wEaq_kL-e0mjJLMmB0JxQEMWsE3ryioShPkdNt5e3uPNg&oe=69B7223C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020878\",\"waveform\":\"AAlZHUxMGksYAEw\\/FEZBSTxXQS5SAEs+WSliPUsAN11jOCJTXURgUCAAWkpML01ZE05NAAAiVUoDC19aXEQxPw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020908,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:09.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:09'),
(12733, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113043723792419@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:09.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:09'),
(12734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:09.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:09'),
(12735, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634194870_3199685597005039_391794945220850754_n.enc?ccb=11-4&oh=01_Q5Aa3wEaq_kL-e0mjJLMmB0JxQEMWsE3ryioShPkdNt5e3uPNg&oe=69B7223C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"60P5wM+i62f9rV9UMXjoFVD9K6hrXYp+OUS49vuOM10=\",\"fileLength\":\"74640\",\"seconds\":31,\"ptt\":true,\"mediaKey\":\"ZhLwO1yZDNzBlf7JslaRgvXQYzZJ4l0JWgHWCJOfi2U=\",\"fileEncSha256\":\"1SHAJ9TljDq4cgqTm4TfNa5w0VnXq\\/oR0BEkD\\/8OJSc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634194870_3199685597005039_391794945220850754_n.enc?ccb=11-4&oh=01_Q5Aa3wEaq_kL-e0mjJLMmB0JxQEMWsE3ryioShPkdNt5e3uPNg&oe=69B7223C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020878\",\"waveform\":\"AAlZHUxMGksYAEw\\/FEZBSTxXQS5SAEs+WSliPUsAN11jOCJTXURgUCAAWkpML01ZE05NAAAiVUoDC19aXEQxPw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020908,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:09.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:09'),
(12736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:09.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:10'),
(12737, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020910154,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:10.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:10'),
(12738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020910154,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:10.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:10'),
(12739, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:23.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:23'),
(12740, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:23.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:23'),
(12741, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5DD6DC573C56C8E0B1701775D788901\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/599707080_2282071328870134_7731309693378814101_n.enc?ccb=11-4&oh=01_Q5Aa3wHRa_u2LFU2fINWq0TMZnTlMwn9LmHhDugOWKnCA-m7Gw&oe=69B710F4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OuVoG\\/zbq1kl6MFo5+i4XviIdbZmc2aMEQ4su5qnLmE=\",\"fileLength\":\"15159\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"+qCE1bpCJ9IuMwqW\\/8eCN1o0oxdNmvBGt8Wpe3sqdLM=\",\"fileEncSha256\":\"QXv5YT6i07d3HchtZDjXHHiBhfzyQUNUyAUSRrwJT+E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/599707080_2282071328870134_7731309693378814101_n.enc?ccb=11-4&oh=01_Q5Aa3wHRa_u2LFU2fINWq0TMZnTlMwn9LmHhDugOWKnCA-m7Gw&oe=69B710F4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020917\",\"waveform\":\"AAUIAFljXgxjVkI8Vh9ZUS4MJFY3SToYYVc0Pz1bQUFOFWA6OwEDAgAAAkJQRVUrXmMiQlYpPkVcTA9PU2FTYw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020922,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:23.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:23'),
(12742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:23.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:23'),
(12743, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5DD6DC573C56C8E0B1701775D788901\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/599707080_2282071328870134_7731309693378814101_n.enc?ccb=11-4&oh=01_Q5Aa3wHRa_u2LFU2fINWq0TMZnTlMwn9LmHhDugOWKnCA-m7Gw&oe=69B710F4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OuVoG\\/zbq1kl6MFo5+i4XviIdbZmc2aMEQ4su5qnLmE=\",\"fileLength\":\"15159\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"+qCE1bpCJ9IuMwqW\\/8eCN1o0oxdNmvBGt8Wpe3sqdLM=\",\"fileEncSha256\":\"QXv5YT6i07d3HchtZDjXHHiBhfzyQUNUyAUSRrwJT+E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/599707080_2282071328870134_7731309693378814101_n.enc?ccb=11-4&oh=01_Q5Aa3wHRa_u2LFU2fINWq0TMZnTlMwn9LmHhDugOWKnCA-m7Gw&oe=69B710F4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020917\",\"waveform\":\"AAUIAFljXgxjVkI8Vh9ZUS4MJFY3SToYYVc0Pz1bQUFOFWA6OwEDAgAAAkJQRVUrXmMiQlYpPkVcTA9PU2FTYw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020922,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:23.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:23'),
(12744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:23.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:24'),
(12745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD6DC573C56C8E0B1701775D788901\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020924235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:24.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:24'),
(12746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD6DC573C56C8E0B1701775D788901\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020924235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:24.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:24'),
(12747, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD6DC573C56C8E0B1701775D788901\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020924731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:24.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:24'),
(12748, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD6DC573C56C8E0B1701775D788901\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020924731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:24.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:24'),
(12749, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B7CBB25DF195DCD400211382D1017F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Donwloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771020925,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:25'),
(12750, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:25'),
(12751, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:25'),
(12752, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B7CBB25DF195DCD400211382D1017F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Donwloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771020925,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:25'),
(12753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:25'),
(12754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:26'),
(12755, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B7CBB25DF195DCD400211382D1017F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020925783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:26'),
(12756, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B7CBB25DF195DCD400211382D1017F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020925783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:25.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:26'),
(12757, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B7CBB25DF195DCD400211382D1017F\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:30.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:30'),
(12758, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B7CBB25DF195DCD400211382D1017F\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:30.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:30');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12759, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD6DC573C56C8E0B1701775D788901\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020930638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:30.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:30'),
(12760, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A535F946369D7F7A8AD13E3FDB0A3A47\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020930703,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:30.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:30'),
(12761, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD6DC573C56C8E0B1701775D788901\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020930638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:30.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:30'),
(12762, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A535F946369D7F7A8AD13E3FDB0A3A47\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020930703,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:30.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:31'),
(12763, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5DD6DC573C56C8E0B1701775D788901\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:36.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:37'),
(12764, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A56CE82DCB6F1242104A567E4908AB17\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020937004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:37.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:37'),
(12765, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5DD6DC573C56C8E0B1701775D788901\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:36.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:37'),
(12766, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A56CE82DCB6F1242104A567E4908AB17\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771020937004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:37.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:37'),
(12767, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5E6AD50E16B51E70450A3814037A8CF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/17686126_1524077741991624_9074263891199008183_n.enc?ccb=11-4&oh=01_Q5Aa3wHKNNm3Z0pdCF3i3668Iyqc8wf72cvtNHqDeNAxH_MBqA&oe=69B7090B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jHYzkpYbkNbF0Zi4gDkAD\\/Ih9B7WQpe7p1yrwUGf9tQ=\",\"fileLength\":\"12708\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"cy\\/KCKheE47c7suobvghJcY6RPlyqK6Ckb0ex0DAs9w=\",\"fileEncSha256\":\"pxZRchozAI8EwKU1cSgwwcLc2zSjPj4+5+EGjjGeyOo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/17686126_1524077741991624_9074263891199008183_n.enc?ccb=11-4&oh=01_Q5Aa3wHKNNm3Z0pdCF3i3668Iyqc8wf72cvtNHqDeNAxH_MBqA&oe=69B7090B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020939\",\"waveform\":\"ABEPBAETYUpeYz85K1YmSF5PTVBADV1AV1QfKGBYOhA9M1dYVlFFQDhQUE4\\/VU4+PVlfXlcnT1U0JkQoTShORQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020943,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:43'),
(12768, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:43'),
(12769, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:43'),
(12770, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5E6AD50E16B51E70450A3814037A8CF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/17686126_1524077741991624_9074263891199008183_n.enc?ccb=11-4&oh=01_Q5Aa3wHKNNm3Z0pdCF3i3668Iyqc8wf72cvtNHqDeNAxH_MBqA&oe=69B7090B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jHYzkpYbkNbF0Zi4gDkAD\\/Ih9B7WQpe7p1yrwUGf9tQ=\",\"fileLength\":\"12708\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"cy\\/KCKheE47c7suobvghJcY6RPlyqK6Ckb0ex0DAs9w=\",\"fileEncSha256\":\"pxZRchozAI8EwKU1cSgwwcLc2zSjPj4+5+EGjjGeyOo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/17686126_1524077741991624_9074263891199008183_n.enc?ccb=11-4&oh=01_Q5Aa3wHKNNm3Z0pdCF3i3668Iyqc8wf72cvtNHqDeNAxH_MBqA&oe=69B7090B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771020939\",\"waveform\":\"ABEPBAETYUpeYz85K1YmSF5PTVBADV1AV1QfKGBYOhA9M1dYVlFFQDhQUE4\\/VU4+PVlfXlcnT1U0JkQoTShORQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771020943,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:43'),
(12771, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:43'),
(12772, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:44'),
(12773, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E6AD50E16B51E70450A3814037A8CF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020943775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:44'),
(12774, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E6AD50E16B51E70450A3814037A8CF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020943775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:43.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:44'),
(12775, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E6AD50E16B51E70450A3814037A8CF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020945629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:45'),
(12776, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:45'),
(12777, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A59EFE43D649C95386F71C8D2B6C517E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Xciptv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771020945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:45'),
(12778, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E6AD50E16B51E70450A3814037A8CF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771020945629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:45'),
(12779, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:45'),
(12780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59EFE43D649C95386F71C8D2B6C517E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020945941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:15:46'),
(12781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:46.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:15:46'),
(12782, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59EFE43D649C95386F71C8D2B6C517E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771020945941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:46'),
(12783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:46.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:15:46'),
(12784, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A59EFE43D649C95386F71C8D2B6C517E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Xciptv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771020945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:15:45.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:15:46'),
(12785, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"9\",\"name\":\"Pagamento em aberto\",\"color\":19,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:31'),
(12786, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3\",\"name\":\"Pagamento pendente\",\"color\":0,\"deleted\":false,\"predefinedId\":\"3\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:31'),
(12787, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"137392245710995@lid\",\"labelId\":\"9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:31'),
(12788, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1\",\"name\":\"Novo cliente\",\"color\":1,\"deleted\":false,\"predefinedId\":\"1\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:31'),
(12789, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"4\",\"name\":\"Pago\",\"color\":3,\"deleted\":false,\"predefinedId\":\"4\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:31'),
(12790, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"148713578201136@lid\",\"labelId\":\"12\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12791, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6\",\"name\":\"Importante\",\"color\":11,\"deleted\":false,\"predefinedId\":\"6\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12792, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"160043383185487@lid\",\"labelId\":\"3\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12793, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"129677997945025@lid\",\"labelId\":\"10\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12794, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"11\",\"name\":\"Vai pagar dia 30\\/11 xs\",\"color\":1,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12796, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12\",\"name\":\"Pagamento app em aberto\",\"color\":2,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12797, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5\",\"name\":\"Pedido finalizado\",\"color\":5,\"deleted\":false,\"predefinedId\":\"5\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:32'),
(12798, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"7\",\"name\":\"Acompanhar\",\"color\":12,\"deleted\":false,\"predefinedId\":\"7\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:33'),
(12799, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"2\",\"name\":\"Novo pedido\",\"color\":2,\"deleted\":false,\"predefinedId\":\"2\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:33'),
(12800, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10\",\"name\":\"Pagamento pendente internet\",\"color\":0,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:33'),
(12801, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8\",\"name\":\"Cadastro\",\"color\":18,\"deleted\":false,\"predefinedId\":\"8\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:31.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:34'),
(12802, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"126302254317661@lid\",\"labelId\":\"11\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:52'),
(12803, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"148713578201136@lid\",\"labelId\":\"12\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:52'),
(12804, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"129677997945025@lid\",\"labelId\":\"10\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:52'),
(12805, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"137392245710995@lid\",\"labelId\":\"9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:52'),
(12806, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"4\",\"name\":\"Pago\",\"color\":3,\"deleted\":false,\"predefinedId\":\"4\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:52'),
(12807, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"11\",\"name\":\"Vai pagar dia 30\\/11 xs\",\"color\":1,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:53'),
(12808, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"7\",\"name\":\"Acompanhar\",\"color\":12,\"deleted\":false,\"predefinedId\":\"7\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:53'),
(12809, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10\",\"name\":\"Pagamento pendente internet\",\"color\":0,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:53'),
(12810, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6\",\"name\":\"Importante\",\"color\":11,\"deleted\":false,\"predefinedId\":\"6\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:53'),
(12811, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"9\",\"name\":\"Pagamento em aberto\",\"color\":19,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:53'),
(12812, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12\",\"name\":\"Pagamento app em aberto\",\"color\":2,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:54'),
(12813, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8\",\"name\":\"Cadastro\",\"color\":18,\"deleted\":false,\"predefinedId\":\"8\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:54'),
(12814, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1\",\"name\":\"Novo cliente\",\"color\":1,\"deleted\":false,\"predefinedId\":\"1\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:54'),
(12815, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5\",\"name\":\"Pedido finalizado\",\"color\":5,\"deleted\":false,\"predefinedId\":\"5\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:54'),
(12816, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"160043383185487@lid\",\"labelId\":\"3\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:54'),
(12817, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"2\",\"name\":\"Novo pedido\",\"color\":2,\"deleted\":false,\"predefinedId\":\"2\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:56'),
(12818, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3\",\"name\":\"Pagamento pendente\",\"color\":0,\"deleted\":false,\"predefinedId\":\"3\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:16:52.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:16:56'),
(12819, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC37E204B2F89C83AC397F152347113E\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636729920_1655928025538661_260377582279400299_n.enc?ccb=11-4&oh=01_Q5Aa3wFFcmQ1IzL8zK_5nepJeve3tKFD3qxA0fZ_dPmn3ztovg&oe=69B6FCAC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rPJckJjRkiYquB2nX46pqwu3gowiEvc5n23B2ipexyk=\",\"fileLength\":\"93617\",\"height\":1600,\"width\":900,\"mediaKey\":\"UEsFuU9wRcidtVmPGMTyxQOdK42S\\/axnRieuDlmaPsw=\",\"fileEncSha256\":\"qgIaACzilK8ljfI4FsWYCnjVca\\/ngGQtKrCo2JQC\\/7A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636729920_1655928025538661_260377582279400299_n.enc?ccb=11-4&oh=01_Q5Aa3wFFcmQ1IzL8zK_5nepJeve3tKFD3qxA0fZ_dPmn3ztovg&oe=69B6FCAC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771021126\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAQUCAwQGAQEBAQEAAAAAAAAAAAAAAAAAAQMC\\/9oADAMBAAIQAxAAAAA3FRczHRYIYY9efftzMx9D4e85JTInLosdk+JYxErEuWktCOgf\\/8QAJBAAAQQBAwUAAwAAAAAAAAAAAQACAxESBBMhECIxUVIzYZH\\/2gAIAQEAAT8AsO8FBcInlZN9oPlB\\/IEZpgSM0JpfpGWQ+XIyO9pgaDyCQso6ra5RaUQrKh7sm\\/xaWOMuvUPxIUh0DZBiAfamj0xdkw9q3NJ8pkksZ7SnueTbrtNe5q3XVVq00W9wCls0TXWkHLJZfpAlWU4YuI6hpJpbTl\\/\\/xAAaEQACAwEBAAAAAAAAAAAAAAAAAQIREiBS\\/9oACAECAQE\\/AKMsoUGlYopoxH0aZtmuP\\/\\/EAB0RAAEEAgMAAAAAAAAAAAAAAAEAAhARAxIgQVP\\/2gAIAQMBAT8AlztRaOSuiVu\\/zMVx\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"3zONRtNd\\/JfRVuaPfv6Y0qcX1dH8yTYmNZP92zMGL2GUb\\/OCPAz5jg==\",\"scanLengths\":[10940,31263,13878,37536],\"midQualityFileSha256\":\"My8ZksJcFVCMMJ1Pugz036dWRlLNFx6OAqW5Glh+5Ko=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qmrCvxXn9XO02MFG5yIUoBXLxFNQb2U6ShhmCZgHzW4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771021128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:18:48'),
(12820, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:18:48'),
(12821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:18:48'),
(12822, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:18:48'),
(12823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:18:48'),
(12824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:18:49'),
(12825, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC37E204B2F89C83AC397F152347113E\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636729920_1655928025538661_260377582279400299_n.enc?ccb=11-4&oh=01_Q5Aa3wFFcmQ1IzL8zK_5nepJeve3tKFD3qxA0fZ_dPmn3ztovg&oe=69B6FCAC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rPJckJjRkiYquB2nX46pqwu3gowiEvc5n23B2ipexyk=\",\"fileLength\":\"93617\",\"height\":1600,\"width\":900,\"mediaKey\":\"UEsFuU9wRcidtVmPGMTyxQOdK42S\\/axnRieuDlmaPsw=\",\"fileEncSha256\":\"qgIaACzilK8ljfI4FsWYCnjVca\\/ngGQtKrCo2JQC\\/7A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636729920_1655928025538661_260377582279400299_n.enc?ccb=11-4&oh=01_Q5Aa3wFFcmQ1IzL8zK_5nepJeve3tKFD3qxA0fZ_dPmn3ztovg&oe=69B6FCAC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771021126\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAQUCAwQGAQEBAQEAAAAAAAAAAAAAAAAAAQMC\\/9oADAMBAAIQAxAAAAA3FRczHRYIYY9efftzMx9D4e85JTInLosdk+JYxErEuWktCOgf\\/8QAJBAAAQQBAwUAAwAAAAAAAAAAAQACAxESBBMhECIxUVIzYZH\\/2gAIAQEAAT8AsO8FBcInlZN9oPlB\\/IEZpgSM0JpfpGWQ+XIyO9pgaDyCQso6ra5RaUQrKh7sm\\/xaWOMuvUPxIUh0DZBiAfamj0xdkw9q3NJ8pkksZ7SnueTbrtNe5q3XVVq00W9wCls0TXWkHLJZfpAlWU4YuI6hpJpbTl\\/\\/xAAaEQACAwEBAAAAAAAAAAAAAAAAAQIREiBS\\/9oACAECAQE\\/AKMsoUGlYopoxH0aZtmuP\\/\\/EAB0RAAEEAgMAAAAAAAAAAAAAAAEAAhARAxIgQVP\\/2gAIAQMBAT8AlztRaOSuiVu\\/zMVx\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"3zONRtNd\\/JfRVuaPfv6Y0qcX1dH8yTYmNZP92zMGL2GUb\\/OCPAz5jg==\",\"scanLengths\":[10940,31263,13878,37536],\"midQualityFileSha256\":\"My8ZksJcFVCMMJ1Pugz036dWRlLNFx6OAqW5Glh+5Ko=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qmrCvxXn9XO02MFG5yIUoBXLxFNQb2U6ShhmCZgHzW4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771021128,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:18:49'),
(12826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:18:48.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:18:49'),
(12827, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771021172880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:19:32.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:19:33'),
(12828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771021172880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:19:32.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:19:33'),
(12829, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:30.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:20:30'),
(12830, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:30.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:20:31'),
(12831, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:33.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:20:33'),
(12832, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:33.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:20:33'),
(12833, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:33.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:20:33'),
(12834, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:33.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:20:34'),
(12835, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC552982F1E8ED94220632F3154964CF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635145790_1477546003998917_4726514246983081962_n.enc?ccb=11-4&oh=01_Q5Aa3wGZUVp0X8xf5I7mBw6LpYNB0F3IirUhYeZRIn47iSc7Xg&oe=69B72321&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"csJzOHjuomm+iaDTuzGIPsPgaPwXj7ss056HPMkMpyo=\",\"fileLength\":\"4456\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"jngENHEPig5eLxDPY8gNjJS0JP0F92T9t3nKmNglkpA=\",\"fileEncSha256\":\"SjaZWc7OIrklD1jHKOn5nqil77UNLnF9Z2Vs2OsKecc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635145790_1477546003998917_4726514246983081962_n.enc?ccb=11-4&oh=01_Q5Aa3wGZUVp0X8xf5I7mBw6LpYNB0F3IirUhYeZRIn47iSc7Xg&oe=69B72321&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771021232\",\"waveform\":\"AAAAAAAAAAAAJlNURD9KWV1XRUc5HyQ9U1NQUE9HKBcoRFJXVFRMOTUtIxkJAAAAAAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a4RvBAMz95zwV5glwe2eJNPCOj2Wqzpkn8OQ6mNNSwM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771021233,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:33.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:20:34'),
(12836, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:34.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:20:34'),
(12837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:34.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:20:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC552982F1E8ED94220632F3154964CF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635145790_1477546003998917_4726514246983081962_n.enc?ccb=11-4&oh=01_Q5Aa3wGZUVp0X8xf5I7mBw6LpYNB0F3IirUhYeZRIn47iSc7Xg&oe=69B72321&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"csJzOHjuomm+iaDTuzGIPsPgaPwXj7ss056HPMkMpyo=\",\"fileLength\":\"4456\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"jngENHEPig5eLxDPY8gNjJS0JP0F92T9t3nKmNglkpA=\",\"fileEncSha256\":\"SjaZWc7OIrklD1jHKOn5nqil77UNLnF9Z2Vs2OsKecc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635145790_1477546003998917_4726514246983081962_n.enc?ccb=11-4&oh=01_Q5Aa3wGZUVp0X8xf5I7mBw6LpYNB0F3IirUhYeZRIn47iSc7Xg&oe=69B72321&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771021232\",\"waveform\":\"AAAAAAAAAAAAJlNURD9KWV1XRUc5HyQ9U1NQUE9HKBcoRFJXVFRMOTUtIxkJAAAAAAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a4RvBAMz95zwV5glwe2eJNPCOj2Wqzpkn8OQ6mNNSwM=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771021233,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:33.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:20:34'),
(12839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:34.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:20:34'),
(12840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:20:34.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:20:35'),
(12841, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A55F2E843D6FDF78461B5E110A564EE7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771021295928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:35.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:21:36'),
(12842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A55F2E843D6FDF78461B5E110A564EE7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771021295928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:35.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:21:36'),
(12843, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:37.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:21:37'),
(12844, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:37.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:21:37'),
(12845, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:39.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:21:39'),
(12846, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:39.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:21:39'),
(12847, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:40.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:21:40'),
(12848, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:40.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:21:40'),
(12849, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:21:45'),
(12850, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:21:45'),
(12851, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"AC5F1880E4841B98524A43E59AEF69A0\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"extendedTextMessage\":{\"text\":\"Créditos add\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FN3ibwBaYmmOVCIly3CtI16yNthK1QZVYzb6fibdK28=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771021305,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:21:45'),
(12852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:21:45'),
(12853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:21:45'),
(12854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:21:46'),
(12855, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"AC5F1880E4841B98524A43E59AEF69A0\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"extendedTextMessage\":{\"text\":\"Créditos add\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FN3ibwBaYmmOVCIly3CtI16yNthK1QZVYzb6fibdK28=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771021305,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:21:46'),
(12856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:21:45.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:21:46'),
(12857, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"120363024713628084@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"120363081473051158@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:22:52.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:22:52'),
(12858, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"120363024713628084@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"120363081473051158@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:22:52.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:22:53'),
(12859, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:38:25'),
(12860, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A52133635DCFCBA8F67508BF5863DD89\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636090068_1575172243773225_3854706541085223591_n.enc?ccb=11-4&oh=01_Q5Aa3wHG95duFQ7hQpqeskrY5SMH768sTAqzMn1aD0VGm-vItw&oe=69B706D2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"IjzBVnpCwSS27o2EgDL28Zwol235IovLRjMXWoAicGg=\",\"mediaKey\":\"uO2tJWDdkj7WrbwfJ+AYHVtiFXH\\/yP8MOqWBIpElgSw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/636090068_1575172243773225_3854706541085223591_n.enc?ccb=11-4&oh=01_Q5Aa3wHG95duFQ7hQpqeskrY5SMH768sTAqzMn1aD0VGm-vItw&oe=69B706D2&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1771022304\",\"isAnimated\":false,\"stickerSentTs\":\"1771022304161\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771022304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:38:25'),
(12861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:38:25'),
(12862, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52133635DCFCBA8F67508BF5863DD89\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022305200,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:38:25'),
(12863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:38:25'),
(12864, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A52133635DCFCBA8F67508BF5863DD89\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636090068_1575172243773225_3854706541085223591_n.enc?ccb=11-4&oh=01_Q5Aa3wHG95duFQ7hQpqeskrY5SMH768sTAqzMn1aD0VGm-vItw&oe=69B706D2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"IjzBVnpCwSS27o2EgDL28Zwol235IovLRjMXWoAicGg=\",\"mediaKey\":\"uO2tJWDdkj7WrbwfJ+AYHVtiFXH\\/yP8MOqWBIpElgSw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/636090068_1575172243773225_3854706541085223591_n.enc?ccb=11-4&oh=01_Q5Aa3wHG95duFQ7hQpqeskrY5SMH768sTAqzMn1aD0VGm-vItw&oe=69B706D2&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1771022304\",\"isAnimated\":false,\"stickerSentTs\":\"1771022304161\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771022304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:38:25'),
(12866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wGCyzD00f2QoM_6E9eddGRI7b-thXIjXhFu6L72Ea87iQ&oe=699C9EE3&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:25.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:38:25'),
(12867, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:38:44'),
(12868, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:38:44'),
(12869, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A570DB9B33237E1FBF168E03BB2AA9B6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636717812_1889078071746435_6997226404096026451_n.enc?ccb=11-4&oh=01_Q5Aa3wGc7zViKcvTLasrNhpTqsgv-v43UulUedNWwyIuGfFDNg&oe=69B71689&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FRmobpeVZUK4BbERp3nPn8wGTYtbIIeiG450dOFH7XI=\",\"fileLength\":\"21971\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"JQ3BjFElmE5TPzNG3wsJXFGfVxAzbSvczM8ui5Xev20=\",\"fileEncSha256\":\"3vSAoDt2GX6mgOGvxmqQVoeFETTbdJsbxC+gnOlzu+0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636717812_1889078071746435_6997226404096026451_n.enc?ccb=11-4&oh=01_Q5Aa3wGc7zViKcvTLasrNhpTqsgv-v43UulUedNWwyIuGfFDNg&oe=69B71689&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022316\",\"waveform\":\"AAAACAZZNFooY0syVjRBPltbXlJOQVZPRVVSUk1VQlIeSVNQVFE9V1ZNTFJUU1UeOFEEAAUkPF1ZTlNDVFRXQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771022324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:38:44'),
(12870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:38:45'),
(12871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:38:45'),
(12872, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A570DB9B33237E1FBF168E03BB2AA9B6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636717812_1889078071746435_6997226404096026451_n.enc?ccb=11-4&oh=01_Q5Aa3wGc7zViKcvTLasrNhpTqsgv-v43UulUedNWwyIuGfFDNg&oe=69B71689&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FRmobpeVZUK4BbERp3nPn8wGTYtbIIeiG450dOFH7XI=\",\"fileLength\":\"21971\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"JQ3BjFElmE5TPzNG3wsJXFGfVxAzbSvczM8ui5Xev20=\",\"fileEncSha256\":\"3vSAoDt2GX6mgOGvxmqQVoeFETTbdJsbxC+gnOlzu+0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636717812_1889078071746435_6997226404096026451_n.enc?ccb=11-4&oh=01_Q5Aa3wGc7zViKcvTLasrNhpTqsgv-v43UulUedNWwyIuGfFDNg&oe=69B71689&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022316\",\"waveform\":\"AAAACAZZNFooY0syVjRBPltbXlJOQVZPRVVSUk1VQlIeSVNQVFE9V1ZNTFJUU1UeOFEEAAUkPF1ZTlNDVFRXQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771022324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:38:45'),
(12873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A570DB9B33237E1FBF168E03BB2AA9B6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771022324929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:38:45'),
(12874, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A570DB9B33237E1FBF168E03BB2AA9B6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771022324929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:44.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:38:45'),
(12875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A570DB9B33237E1FBF168E03BB2AA9B6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771022326519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:46.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:38:46'),
(12876, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A570DB9B33237E1FBF168E03BB2AA9B6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771022326519,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:38:46.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:38:46'),
(12877, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:39:04'),
(12878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:39:04'),
(12879, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A515871F79E8A5F02E4681291DADC948\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636741363_886986170827750_3925441732548298407_n.enc?ccb=11-4&oh=01_Q5Aa3wHPznisfjR08IyHBd9kVEGN_z-ZEspx7XYmi8EbJR91xw&oe=69B71CF2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"kglsBTQAM+nTbaKoZ4kRwX9Vdyy\\/w6IA3rtMXfD\\/Q6w=\",\"fileEncSha256\":\"b6l79lnAAxoIEUA07RIFmywQYbPsruBUNfUiksRClMc=\",\"mediaKey\":\"Ry3U8C5yBGXIVvLknNW2ab8pawM2spzpz7HQKPnHE4c=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/636741363_886986170827750_3925441732548298407_n.enc?ccb=11-4&oh=01_Q5Aa3wHPznisfjR08IyHBd9kVEGN_z-ZEspx7XYmi8EbJR91xw&oe=69B71CF2&_nc_sid=5e03e0\",\"fileLength\":\"29674\",\"mediaKeyTimestamp\":\"1771022343\",\"isAnimated\":false,\"stickerSentTs\":\"1771022343321\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771022343,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:39:04'),
(12881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:39:04'),
(12882, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A515871F79E8A5F02E4681291DADC948\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771022344327,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:39:05'),
(12883, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A515871F79E8A5F02E4681291DADC948\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636741363_886986170827750_3925441732548298407_n.enc?ccb=11-4&oh=01_Q5Aa3wHPznisfjR08IyHBd9kVEGN_z-ZEspx7XYmi8EbJR91xw&oe=69B71CF2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"kglsBTQAM+nTbaKoZ4kRwX9Vdyy\\/w6IA3rtMXfD\\/Q6w=\",\"fileEncSha256\":\"b6l79lnAAxoIEUA07RIFmywQYbPsruBUNfUiksRClMc=\",\"mediaKey\":\"Ry3U8C5yBGXIVvLknNW2ab8pawM2spzpz7HQKPnHE4c=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/636741363_886986170827750_3925441732548298407_n.enc?ccb=11-4&oh=01_Q5Aa3wHPznisfjR08IyHBd9kVEGN_z-ZEspx7XYmi8EbJR91xw&oe=69B71CF2&_nc_sid=5e03e0\",\"fileLength\":\"29674\",\"mediaKeyTimestamp\":\"1771022343\",\"isAnimated\":false,\"stickerSentTs\":\"1771022343321\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771022343,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:39:05'),
(12884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:39:04.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:39:05'),
(12885, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408272,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:08'),
(12886, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408256,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:08'),
(12887, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"555397110710:65@s.whatsapp.net\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408292,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:08'),
(12888, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:08'),
(12889, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408262,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:08'),
(12890, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:09'),
(12891, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"555397110710:65@s.whatsapp.net\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408292,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:09'),
(12892, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A5D6F8CAAFC447CF1B8093BFC9AF101B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408256,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:09'),
(12893, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A51C5FE74D9BC6AECA3D535476F3D98E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408262,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:09'),
(12894, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A5BAAD8406267BFCB2DF1A6F937875C4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408272,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:09'),
(12895, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A51E1BA7034A6E82F620B2050C1F047A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:10'),
(12896, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A5780551E744A8A8799B71B904D1A5E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:10'),
(12897, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408278,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:10'),
(12898, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"86457725255831:65@lid\",\"id\":\"A518A332F23DB887747894D5B81D1B29\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771022408278,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:08.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:10'),
(12899, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACA470DD79AE976F314D266A39497431\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636451303_2385793765228705_589241480293555582_n.enc?ccb=11-4&oh=01_Q5Aa3wHexJIXcze1sDQul1ScyDo4q7mYyRKquLvpGccDx6F90g&oe=69B730AF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"uQiBHlX+h4jopy6NGeu8e0MYB4h9wG6NnToqpzNd1Kw=\",\"fileLength\":\"100741\",\"height\":1600,\"width\":900,\"mediaKey\":\"ik1UE\\/8mg8sPGbkmXNM8iVUAcfDDtKhpMMdzFl8BoYU=\",\"fileEncSha256\":\"rWVYX0CNvhtcuAPdie1zEUhBASbRN44pt2jdDLcjGQw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636451303_2385793765228705_589241480293555582_n.enc?ccb=11-4&oh=01_Q5Aa3wHexJIXcze1sDQul1ScyDo4q7mYyRKquLvpGccDx6F90g&oe=69B730AF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022433\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAwECBAUBAAMBAQAAAAAAAAAAAAAAAAACBAED\\/9oADAMBAAIQAxAAAADgXlj428Q4skR37+a6mIrnTxp6BJPWrBqhpstWKBgsNuSkxsUAuVA\\/\\/8QAJhAAAgICAQMCBwAAAAAAAAAAAQIAAxESBCExQQUiEBMgQlFSgf\\/aAAgBAQABPwBVLdolZdtZTxw4z1j1UL95mlP7GNWwsZVi8e\\/wIlPIUZENVpySsAhRWubpE4ilNgTmclBWqEEjJjV61hvmkk+ItYKichzW6uplfqDBMTkco3awOTjJldzqgAInKXKQVs2MeYyFTgmdjNzLriV1gVyE17iWA7dTk\\/Fm9xzA34Yz+zE1lw92foyZ\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAAECEQMhEiBR\\/9oACAECAQE\\/AEi0kWY5x4JaTMzuWmVPwXb\\/xAAeEQACAQQDAQAAAAAAAAAAAAABAgADERIxBBAgIf\\/aAAgBAwEBPwCbmJlanVLXU\\/JxwVQB9zNO7+P\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"vdkgd6JcJfyWXNVjtcNlWj4fJD7GRJKT2SmFaNbG7n0Ce4s2LrVSqw==\",\"scanLengths\":[12197,30473,14504,43567],\"midQualityFileSha256\":\"xpexuxvo\\/gYq26iYCkmtRVBRYgcUOWqaET0eXZH\\/Kao=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0T3\\/n9GuTSPqwvwrk5QIEQaqJxZma716mzg8FH6gHMo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771022434,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:35'),
(12900, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACA470DD79AE976F314D266A39497431\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636451303_2385793765228705_589241480293555582_n.enc?ccb=11-4&oh=01_Q5Aa3wHexJIXcze1sDQul1ScyDo4q7mYyRKquLvpGccDx6F90g&oe=69B730AF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"uQiBHlX+h4jopy6NGeu8e0MYB4h9wG6NnToqpzNd1Kw=\",\"fileLength\":\"100741\",\"height\":1600,\"width\":900,\"mediaKey\":\"ik1UE\\/8mg8sPGbkmXNM8iVUAcfDDtKhpMMdzFl8BoYU=\",\"fileEncSha256\":\"rWVYX0CNvhtcuAPdie1zEUhBASbRN44pt2jdDLcjGQw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636451303_2385793765228705_589241480293555582_n.enc?ccb=11-4&oh=01_Q5Aa3wHexJIXcze1sDQul1ScyDo4q7mYyRKquLvpGccDx6F90g&oe=69B730AF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022433\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAwECBAUBAAMBAQAAAAAAAAAAAAAAAAACBAED\\/9oADAMBAAIQAxAAAADgXlj428Q4skR37+a6mIrnTxp6BJPWrBqhpstWKBgsNuSkxsUAuVA\\/\\/8QAJhAAAgICAQMCBwAAAAAAAAAAAQIAAxESBCExQQUiEBMgQlFSgf\\/aAAgBAQABPwBVLdolZdtZTxw4z1j1UL95mlP7GNWwsZVi8e\\/wIlPIUZENVpySsAhRWubpE4ilNgTmclBWqEEjJjV61hvmkk+ItYKichzW6uplfqDBMTkco3awOTjJldzqgAInKXKQVs2MeYyFTgmdjNzLriV1gVyE17iWA7dTk\\/Fm9xzA34Yz+zE1lw92foyZ\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAAECEQMhEiBR\\/9oACAECAQE\\/AEi0kWY5x4JaTMzuWmVPwXb\\/xAAeEQACAQQDAQAAAAAAAAAAAAABAgADERIxBBAgIf\\/aAAgBAwEBPwCbmJlanVLXU\\/JxwVQB9zNO7+P\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"vdkgd6JcJfyWXNVjtcNlWj4fJD7GRJKT2SmFaNbG7n0Ce4s2LrVSqw==\",\"scanLengths\":[12197,30473,14504,43567],\"midQualityFileSha256\":\"xpexuxvo\\/gYq26iYCkmtRVBRYgcUOWqaET0eXZH\\/Kao=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0T3\\/n9GuTSPqwvwrk5QIEQaqJxZma716mzg8FH6gHMo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771022434,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:35'),
(12901, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:35'),
(12902, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:35'),
(12903, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:35'),
(12904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:36'),
(12905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12906, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:35.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:36'),
(12907, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:39.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:39'),
(12908, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:39.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:39'),
(12909, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:41.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:41'),
(12910, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:41.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:42'),
(12911, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:42.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:42'),
(12912, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:42.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:43'),
(12913, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:42.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:43'),
(12914, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC3E60121758EBB27D35218F4C73C384\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29290310_2300077410486947_3355352228217582336_n.enc?ccb=11-4&oh=01_Q5Aa3wFWpRGwzQI8wZW9oLZZ1UIDzwJrXPHReXNB7iYk5gBvRw&oe=69B70929&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bRxDT5qeiLXniIB+AF2fQHPer9qi3\\/FvdJpvFr4xZ6Q=\",\"fileLength\":\"5680\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"iqfruefV55V0M6NxZ7H8AjFZTHr+jqlZOHkQI7RFyQ4=\",\"fileEncSha256\":\"936MfNvo8K1UEi0V2q8Z1lL2SGoPXZPD2IaMwTg17QI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29290310_2300077410486947_3355352228217582336_n.enc?ccb=11-4&oh=01_Q5Aa3wFWpRGwzQI8wZW9oLZZ1UIDzwJrXPHReXNB7iYk5gBvRw&oe=69B70929&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022441\",\"waveform\":\"AAALIDpGTVRVT0VKUFNTTEArJy08REQ+LUVYWFdOPB4XJldeV0g8JgwEBg4bLjc2QEE3FyU3Ojo8PiQZEw0bJg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HRtFGECe9grF0oEpSSmWSSU2cARFL+oKpYnKTv3dXw4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771022442,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:42.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:40:43'),
(12915, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:42.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:43'),
(12916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:43.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:40:43'),
(12917, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:43.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:40:44'),
(12918, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC3E60121758EBB27D35218F4C73C384\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29290310_2300077410486947_3355352228217582336_n.enc?ccb=11-4&oh=01_Q5Aa3wFWpRGwzQI8wZW9oLZZ1UIDzwJrXPHReXNB7iYk5gBvRw&oe=69B70929&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bRxDT5qeiLXniIB+AF2fQHPer9qi3\\/FvdJpvFr4xZ6Q=\",\"fileLength\":\"5680\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"iqfruefV55V0M6NxZ7H8AjFZTHr+jqlZOHkQI7RFyQ4=\",\"fileEncSha256\":\"936MfNvo8K1UEi0V2q8Z1lL2SGoPXZPD2IaMwTg17QI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29290310_2300077410486947_3355352228217582336_n.enc?ccb=11-4&oh=01_Q5Aa3wFWpRGwzQI8wZW9oLZZ1UIDzwJrXPHReXNB7iYk5gBvRw&oe=69B70929&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022441\",\"waveform\":\"AAALIDpGTVRVT0VKUFNTTEArJy08REQ+LUVYWFdOPB4XJldeV0g8JgwEBg4bLjc2QEE3FyU3Ojo8PiQZEw0bJg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HRtFGECe9grF0oEpSSmWSSU2cARFL+oKpYnKTv3dXw4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771022442,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:40:42.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:40:45'),
(12919, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:33.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:41:33'),
(12920, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:33.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:41:33'),
(12921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:36.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:41:36'),
(12922, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:36.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:41:36'),
(12923, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:38.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:41:38'),
(12924, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:38.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:41:38'),
(12925, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:59.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:41:59'),
(12926, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:41:59.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:41:59'),
(12927, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:04.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:05'),
(12928, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:04.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:05'),
(12929, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:05'),
(12930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC53D5C51873C27381541EB4D8E0C253\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30570945_1432086765115835_4404692862837016144_n.enc?ccb=11-4&oh=01_Q5Aa3wEjqdN5C9RSmKxugZ11VMYhDQTpKUXH7ydFMtbvLjY6EQ&oe=69B72A0F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gaDaoAhfdPuplC\\/tP0Ljidg981sbhoxysQDWxWP4314=\",\"fileLength\":\"12224\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"oAbuNUfVo1x9XA25aQlsrd0+WAEnBmea51LwEn8ihrk=\",\"fileEncSha256\":\"EeZvcVYPRplnTCVs6AluhUfk4DumxAtpQOrgW81Mg8s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30570945_1432086765115835_4404692862837016144_n.enc?ccb=11-4&oh=01_Q5Aa3wEjqdN5C9RSmKxugZ11VMYhDQTpKUXH7ydFMtbvLjY6EQ&oe=69B72A0F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022521\",\"waveform\":\"AAAFAAA3VVFBV0BISU1LRkFgWV1DATxNTTMiBQAAAAAAGyEEUU0MK0IqU1dLFCpYVjQ3Tko8OEtcT1FFDAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iI\\/z4CdsRtQmCkwkP0jL2gwKl0K67SL7ofcdhj3TcOg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771022525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:42:05'),
(12931, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:05'),
(12932, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:06'),
(12933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:06'),
(12934, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC53D5C51873C27381541EB4D8E0C253\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30570945_1432086765115835_4404692862837016144_n.enc?ccb=11-4&oh=01_Q5Aa3wEjqdN5C9RSmKxugZ11VMYhDQTpKUXH7ydFMtbvLjY6EQ&oe=69B72A0F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gaDaoAhfdPuplC\\/tP0Ljidg981sbhoxysQDWxWP4314=\",\"fileLength\":\"12224\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"oAbuNUfVo1x9XA25aQlsrd0+WAEnBmea51LwEn8ihrk=\",\"fileEncSha256\":\"EeZvcVYPRplnTCVs6AluhUfk4DumxAtpQOrgW81Mg8s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30570945_1432086765115835_4404692862837016144_n.enc?ccb=11-4&oh=01_Q5Aa3wEjqdN5C9RSmKxugZ11VMYhDQTpKUXH7ydFMtbvLjY6EQ&oe=69B72A0F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022521\",\"waveform\":\"AAAFAAA3VVFBV0BISU1LRkFgWV1DATxNTTMiBQAAAAAAGyEEUU0MK0IqU1dLFCpYVjQ3Tko8OEtcT1FFDAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iI\\/z4CdsRtQmCkwkP0jL2gwKl0K67SL7ofcdhj3TcOg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771022525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:42:06'),
(12935, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:06'),
(12936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:05.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:07'),
(12937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:13'),
(12938, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:13'),
(12939, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACF1FF5DF023AC1A992193D503BBE6D6\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30696331_1405864137660055_616041043789976650_n.enc?ccb=11-4&oh=01_Q5Aa3wHwII6nb0IWLFD4AovDHy3Wf4VsiLE2N-CR056NzyVJvg&oe=69B70A7B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"o9msQlsK8Mqs6Th6f+hs27D0sM\\/OClCq+Qqy05fjkxw=\",\"fileLength\":\"95947\",\"height\":1600,\"width\":900,\"mediaKey\":\"chhCvFu7dZW9ITXx6Qm76YyDK+mOk5su+U8ytjrv8BQ=\",\"fileEncSha256\":\"0MQS2L5Ye7lbO\\/qIl5bzX1yYCQc1Ny7ayQmGcNSeqRE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30696331_1405864137660055_616041043789976650_n.enc?ccb=11-4&oh=01_Q5Aa3wHwII6nb0IWLFD4AovDHy3Wf4VsiLE2N-CR056NzyVJvg&oe=69B70A7B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022532\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAACAwABBAUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAK+U06VY1nRnMhnepmm\\/MkdTNLkOYoc1BqoKDBgEqDoYFBh\\/\\/xAAkEAACAgECBgMBAAAAAAAAAAABAgARAwQSFCEiMTJSEyBCUf\\/aAAgBAQABPwAS+dSoaEsTjcgPYRdY5\\/M4p\\/WHVN6zjG9ZkULmbeJpziXzSOcFdOOZG0gDdJuuULCZcl5Q1S8XdgwgfHu8mqZtjHpEBA5bAY7fHmDUJqNQ+cDpUV\\/IGoz5T3hNzUeYjLSkUPpkY7ucLzdLm6ZRTfX\\/xAAYEQADAQEAAAAAAAAAAAAAAAAAAREQIP\\/aAAgBAgEBPwCEZBamUvH\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AE\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"6ZHQS75O+5CXB58WKdoJBFWU9MSmybb9oZ3LQU2rfzyIjohZ\\/QZkNA==\",\"scanLengths\":[11148,29676,15631,39492],\"midQualityFileSha256\":\"g3\\/mXzlwnLKaebn+hlqEcVSaWfculYfboCJmIu8XNqM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+Heg9lcJX9W53UddPR8XqphYRKkCDuCLI92lCl\\/TIi4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771022533,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:42:13'),
(12940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:42:13'),
(12941, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:13'),
(12942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:14'),
(12943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:42:14'),
(12944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACF1FF5DF023AC1A992193D503BBE6D6\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/30696331_1405864137660055_616041043789976650_n.enc?ccb=11-4&oh=01_Q5Aa3wHwII6nb0IWLFD4AovDHy3Wf4VsiLE2N-CR056NzyVJvg&oe=69B70A7B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"o9msQlsK8Mqs6Th6f+hs27D0sM\\/OClCq+Qqy05fjkxw=\",\"fileLength\":\"95947\",\"height\":1600,\"width\":900,\"mediaKey\":\"chhCvFu7dZW9ITXx6Qm76YyDK+mOk5su+U8ytjrv8BQ=\",\"fileEncSha256\":\"0MQS2L5Ye7lbO\\/qIl5bzX1yYCQc1Ny7ayQmGcNSeqRE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/30696331_1405864137660055_616041043789976650_n.enc?ccb=11-4&oh=01_Q5Aa3wHwII6nb0IWLFD4AovDHy3Wf4VsiLE2N-CR056NzyVJvg&oe=69B70A7B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022532\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAACAwABBAUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAK+U06VY1nRnMhnepmm\\/MkdTNLkOYoc1BqoKDBgEqDoYFBh\\/\\/xAAkEAACAgECBgMBAAAAAAAAAAABAgARAwQSFCEiMTJSEyBCUf\\/aAAgBAQABPwAS+dSoaEsTjcgPYRdY5\\/M4p\\/WHVN6zjG9ZkULmbeJpziXzSOcFdOOZG0gDdJuuULCZcl5Q1S8XdgwgfHu8mqZtjHpEBA5bAY7fHmDUJqNQ+cDpUV\\/IGoz5T3hNzUeYjLSkUPpkY7ucLzdLm6ZRTfX\\/xAAYEQADAQEAAAAAAAAAAAAAAAAAAREQIP\\/aAAgBAgEBPwCEZBamUvH\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AE\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"6ZHQS75O+5CXB58WKdoJBFWU9MSmybb9oZ3LQU2rfzyIjohZ\\/QZkNA==\",\"scanLengths\":[11148,29676,15631,39492],\"midQualityFileSha256\":\"g3\\/mXzlwnLKaebn+hlqEcVSaWfculYfboCJmIu8XNqM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+Heg9lcJX9W53UddPR8XqphYRKkCDuCLI92lCl\\/TIi4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771022533,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:42:13.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:42:14'),
(12945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771022722422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:45:22.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:45:22'),
(12946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771022722422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:45:22.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:45:23'),
(12947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771022723248,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:45:23.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:45:23'),
(12948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A519B34EBB5EDBE2E108CF6E43A0BCFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771022723248,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:45:23.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:45:23'),
(12949, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACF901996F68D6E68D312758ABBE7C83\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636245854_894230020140591_718319155911080175_n.enc?ccb=11-4&oh=01_Q5Aa3wFq-ldaKFuEn-FnVHwgteqKVpndTKmHI5TcRevEaFUtMA&oe=69B7109F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rnah18x4yU3ioe\\/HRFzAKLMaYZ4WZkDw7EWwc4nSOZ4=\",\"fileLength\":\"96045\",\"height\":1600,\"width\":900,\"mediaKey\":\"ECTUeoc1iwBUAwsg4DP\\/\\/ZmM2Dg8En0OptU4NBT3qIM=\",\"fileEncSha256\":\"bCvQh9nK4n7i9xEkqZoPVXurLGrLFuoHoplPgA6M9Rs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636245854_894230020140591_718319155911080175_n.enc?ccb=11-4&oh=01_Q5Aa3wFq-ldaKFuEn-FnVHwgteqKVpndTKmHI5TcRevEaFUtMA&oe=69B7109F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022847\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAgMAAAAAAAAAAAAAAAAABAMGAQIFAQEBAQEAAAAAAAAAAAAAAAAAAQMC\\/9oADAMBAAIQAxAAAAAzFlJcQRjYgK+rZjbOsK3FfjSnlrEl1q2nK2J8EOwc4XnG28RDGRYZD\\/\\/EACUQAAICAQIGAgMAAAAAAAAAAAECAAMRBAUQEhMhMUFRYhRSYf\\/aAAgBAQABPwDzxJGeAs7ZCmdYewY1y+o2qAHifm\\/WV1uazzVtGQ+B3hofEeth6nKYlbp5fKxdJUpYj3LNCmMloNDS3qNttGZduVH7RNzox3Ms3esiDdfrH11haOwx2aBjObMD8pzBq0x3rE5jMmZmeArJnR\\/s6SmdNPidNPif\\/8QAGhEAAgIDAAAAAAAAAAAAAAAAAAIRIQEQIP\\/aAAgBAgEBPwDbOpOCiuJJP\\/\\/EABsRAAIBBQAAAAAAAAAAAAAAAAERAAIQMDFR\\/9oACAEDAQE\\/AGOx2oBWsP8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"b2gSv\\/QCOrcZtheUo8u7xfqfLZaJ2hTXCN+jAIIsLnPbZoN8X9qIOA==\",\"scanLengths\":[11299,32019,16230,36497],\"midQualityFileSha256\":\"XY9hJaNj\\/Qtm13O2FYQtJh3537xoOBx+GGz3gsPPs6M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rB4nLIbQxpjHIRMAea3v7zbpiXasXY6m9x91vvu0lyw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771022848,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:47:28'),
(12950, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:47:28'),
(12951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:47:29'),
(12952, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:47:29'),
(12953, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACF901996F68D6E68D312758ABBE7C83\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636245854_894230020140591_718319155911080175_n.enc?ccb=11-4&oh=01_Q5Aa3wFq-ldaKFuEn-FnVHwgteqKVpndTKmHI5TcRevEaFUtMA&oe=69B7109F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rnah18x4yU3ioe\\/HRFzAKLMaYZ4WZkDw7EWwc4nSOZ4=\",\"fileLength\":\"96045\",\"height\":1600,\"width\":900,\"mediaKey\":\"ECTUeoc1iwBUAwsg4DP\\/\\/ZmM2Dg8En0OptU4NBT3qIM=\",\"fileEncSha256\":\"bCvQh9nK4n7i9xEkqZoPVXurLGrLFuoHoplPgA6M9Rs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636245854_894230020140591_718319155911080175_n.enc?ccb=11-4&oh=01_Q5Aa3wFq-ldaKFuEn-FnVHwgteqKVpndTKmHI5TcRevEaFUtMA&oe=69B7109F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771022847\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAgMAAAAAAAAAAAAAAAAABAMGAQIFAQEBAQEAAAAAAAAAAAAAAAAAAQMC\\/9oADAMBAAIQAxAAAAAzFlJcQRjYgK+rZjbOsK3FfjSnlrEl1q2nK2J8EOwc4XnG28RDGRYZD\\/\\/EACUQAAICAQIGAgMAAAAAAAAAAAECAAMRBAUQEhMhMUFRYhRSYf\\/aAAgBAQABPwDzxJGeAs7ZCmdYewY1y+o2qAHifm\\/WV1uazzVtGQ+B3hofEeth6nKYlbp5fKxdJUpYj3LNCmMloNDS3qNttGZduVH7RNzox3Ms3esiDdfrH11haOwx2aBjObMD8pzBq0x3rE5jMmZmeArJnR\\/s6SmdNPidNPif\\/8QAGhEAAgIDAAAAAAAAAAAAAAAAAAIRIQEQIP\\/aAAgBAgEBPwDbOpOCiuJJP\\/\\/EABsRAAIBBQAAAAAAAAAAAAAAAAERAAIQMDFR\\/9oACAEDAQE\\/AGOx2oBWsP8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"b2gSv\\/QCOrcZtheUo8u7xfqfLZaJ2hTXCN+jAIIsLnPbZoN8X9qIOA==\",\"scanLengths\":[11299,32019,16230,36497],\"midQualityFileSha256\":\"XY9hJaNj\\/Qtm13O2FYQtJh3537xoOBx+GGz3gsPPs6M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rB4nLIbQxpjHIRMAea3v7zbpiXasXY6m9x91vvu0lyw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771022848,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:47:29'),
(12954, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:47:29'),
(12955, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:47:29'),
(12956, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:47:28.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:47:29'),
(12957, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:22.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:50:22'),
(12958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635544706_891687920269015_440551673276715912_n.enc?ccb=11-4&oh=01_Q5Aa3wHWtvWkMWzVpvhpcJzxUArXVoFjtUzzKfZLDUigkR1Teg&oe=69B70257&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"y94UuRbMZzuli+PSQOx\\/kAZ1h+pAdeXW1JY6PWhC\\/Eo=\",\"fileLength\":\"28739\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"4OUE1gHQ+nw1a89Ih2qQ09giHQ6iLPkChBFpRWH29aA=\",\"fileEncSha256\":\"WmMpgfMUT4Wl3mqvNCBSkZU1HiuPDOgArn7Vov9VC8s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635544706_891687920269015_440551673276715912_n.enc?ccb=11-4&oh=01_Q5Aa3wHWtvWkMWzVpvhpcJzxUArXVoFjtUzzKfZLDUigkR1Teg&oe=69B70257&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023010\",\"waveform\":\"AAALAQQEEE9YXkNIUy5aPkVFS0xXXlJbUx9CAAAAN0ZDUR5aX1FWWFhZVkE6UEhUX0xNAAAAAABiO1xaRllbVw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023022,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:22.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:50:22'),
(12959, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:22.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:50:22'),
(12960, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635544706_891687920269015_440551673276715912_n.enc?ccb=11-4&oh=01_Q5Aa3wHWtvWkMWzVpvhpcJzxUArXVoFjtUzzKfZLDUigkR1Teg&oe=69B70257&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"y94UuRbMZzuli+PSQOx\\/kAZ1h+pAdeXW1JY6PWhC\\/Eo=\",\"fileLength\":\"28739\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"4OUE1gHQ+nw1a89Ih2qQ09giHQ6iLPkChBFpRWH29aA=\",\"fileEncSha256\":\"WmMpgfMUT4Wl3mqvNCBSkZU1HiuPDOgArn7Vov9VC8s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635544706_891687920269015_440551673276715912_n.enc?ccb=11-4&oh=01_Q5Aa3wHWtvWkMWzVpvhpcJzxUArXVoFjtUzzKfZLDUigkR1Teg&oe=69B70257&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023010\",\"waveform\":\"AAALAQQEEE9YXkNIUy5aPkVFS0xXXlJbUx9CAAAAN0ZDUR5aX1FWWFhZVkE6UEhUX0xNAAAAAABiO1xaRllbVw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023022,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:22.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:50:22'),
(12961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:22.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:50:22'),
(12962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:22.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:50:23'),
(12963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023023750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:23.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:50:23'),
(12964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023023750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:23.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:50:23'),
(12965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023033744,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:33.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:50:34'),
(12966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023033744,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:33.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:50:34'),
(12967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023034655,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:34.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:50:34'),
(12968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51B380FB32441A0E92AE6B4C9FB133C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023034655,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:50:34.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:50:34'),
(12969, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:28.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:28'),
(12970, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:28.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:28'),
(12971, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:32.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(12972, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:32.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:32'),
(12973, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:34.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:34'),
(12974, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:34.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:34'),
(12975, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:51.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:51'),
(12976, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:51.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:51'),
(12977, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:54.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:55'),
(12978, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:54.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:55'),
(12979, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:55.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:56'),
(12980, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6088EBDDDAF1CD836E6A5F8F3F73E9\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635960724_803825076077354_5953600970504521375_n.enc?ccb=11-4&oh=01_Q5Aa3wFoSCXdkJPfRv3c4oaz9cLeZeGQ1nnEgozBcZ-JzfBhCA&oe=69B72CFD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QAZx7CpEIrtxLIzkY5VqCmOqlrujQ4RUGKKFdzMP76I=\",\"fileLength\":\"7594\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"YkZVPbYYVQB70AESIx3qlmk\\/dNTdIzeJe9Lf7\\/UIH9U=\",\"fileEncSha256\":\"aYKKWmybdfgaDLzufkJ8Miuy6V8spcOgCsCnsNn7+Xw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635960724_803825076077354_5953600970504521375_n.enc?ccb=11-4&oh=01_Q5Aa3wFoSCXdkJPfRv3c4oaz9cLeZeGQ1nnEgozBcZ-JzfBhCA&oe=69B72CFD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023112\",\"waveform\":\"AAAAI0dJNSlTUENDK01UUUsqB0xRUEpFRDg3TEpER0JEKxABQz9BMSA2PlFYVkczKCEJAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kcxLDWpNJMc21wsuBxHdzg6yFSyCQ\\/sfATIHavMRzq0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023115,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:55.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:51:56'),
(12981, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:55.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:56'),
(12982, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:56.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:56'),
(12983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:56.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:56'),
(12984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:56.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:51:57'),
(12985, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:56.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:51:57'),
(12986, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6088EBDDDAF1CD836E6A5F8F3F73E9\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635960724_803825076077354_5953600970504521375_n.enc?ccb=11-4&oh=01_Q5Aa3wFoSCXdkJPfRv3c4oaz9cLeZeGQ1nnEgozBcZ-JzfBhCA&oe=69B72CFD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QAZx7CpEIrtxLIzkY5VqCmOqlrujQ4RUGKKFdzMP76I=\",\"fileLength\":\"7594\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"YkZVPbYYVQB70AESIx3qlmk\\/dNTdIzeJe9Lf7\\/UIH9U=\",\"fileEncSha256\":\"aYKKWmybdfgaDLzufkJ8Miuy6V8spcOgCsCnsNn7+Xw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635960724_803825076077354_5953600970504521375_n.enc?ccb=11-4&oh=01_Q5Aa3wFoSCXdkJPfRv3c4oaz9cLeZeGQ1nnEgozBcZ-JzfBhCA&oe=69B72CFD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023112\",\"waveform\":\"AAAAI0dJNSlTUENDK01UUUsqB0xRUEpFRDg3TEpER0JEKxABQz9BMSA2PlFYVkczKCEJAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kcxLDWpNJMc21wsuBxHdzg6yFSyCQ\\/sfATIHavMRzq0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023115,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:51:55.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:51:57'),
(12987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACE15885BA74509F529102FD4AEEE125\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636260332_891732473498728_4899675439292294914_n.enc?ccb=11-4&oh=01_Q5Aa3wG1Ph1NaLm9FsfiwSjnsQqOJx13B6vvdeGXK-ZZfvoi4w&oe=69B70B3C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"lUjNEg0nWCA9YiOCEkVd6JBycOGl6kRi8J95+7wUq\\/w=\",\"fileLength\":\"98840\",\"height\":1600,\"width\":900,\"mediaKey\":\"1RNlbB8GDw22vBCTH0evUgoUkw4MDLoWUCIJ1DEsDng=\",\"fileEncSha256\":\"fHjxn8ucJ0kxt8atheSZ7ekaU\\/Yir9QONkbRaUW7hKI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636260332_891732473498728_4899675439292294914_n.enc?ccb=11-4&oh=01_Q5Aa3wG1Ph1NaLm9FsfiwSjnsQqOJx13B6vvdeGXK-ZZfvoi4w&oe=69B70B3C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023136\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAABBQEAAAAAAAAAAAAAAAAAAgMEBQYBAQEBAQAAAAAAAAAAAAAAAAAAAgH\\/2gAMAwEAAhADEAAAAKRUVRLTHB8jA+l60rKTmoq6moJJFXVOwjM1D+RNvSGbJpSEmwBw6Af\\/xAAmEAABAwMCBQUAAAAAAAAAAAABAAIRAwQSFCEQE0FRUgUgIiMx\\/9oACAEBAAE\\/ANQ5ah46IXB8Ea58VqXdlJlZOIDZ2CD391JiOGFIM65LluaJ2WDomEQQOFDTmp9g+KoV\\/TmOLcQqt5ZYljKSucapAp0S1G3q+BWlt2W7iCA5MdTY9ji3ruFb3FmIBgJ99Z8xu4hPv6WZwOyze4CSd0ZGxQeQsyVme6DZYDKeAD+z7p4Sv\\/\\/EAB8RAQABAQkAAAAAAAAAAAAAAAEAEQIQEiAiMUJRUv\\/aAAgBAgEBPwC\\/aAUqytnsnJY6phPJk\\/\\/EABsRAAMAAwEBAAAAAAAAAAAAAAECEQASIBBB\\/9oACAEDAQE\\/AOCxDTXxF1WFrhhNwNPnH\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"pv+eAk9fvL82FgZ+fB7dI5cAROPIpZ9mSv9SDl7J4cykKjBdpebl1g==\",\"scanLengths\":[11398,41808,14848,30786],\"midQualityFileSha256\":\"dKOZ3znSWIMhzk7kjQpnu9+MJj7SjFU5oScpHCQB0SA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iSDzmjIlNcY5bJEubNH\\/1H1OqQXBngpI4B47DJC687Y=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023138,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:52:18'),
(12988, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACE15885BA74509F529102FD4AEEE125\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636260332_891732473498728_4899675439292294914_n.enc?ccb=11-4&oh=01_Q5Aa3wG1Ph1NaLm9FsfiwSjnsQqOJx13B6vvdeGXK-ZZfvoi4w&oe=69B70B3C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"lUjNEg0nWCA9YiOCEkVd6JBycOGl6kRi8J95+7wUq\\/w=\",\"fileLength\":\"98840\",\"height\":1600,\"width\":900,\"mediaKey\":\"1RNlbB8GDw22vBCTH0evUgoUkw4MDLoWUCIJ1DEsDng=\",\"fileEncSha256\":\"fHjxn8ucJ0kxt8atheSZ7ekaU\\/Yir9QONkbRaUW7hKI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636260332_891732473498728_4899675439292294914_n.enc?ccb=11-4&oh=01_Q5Aa3wG1Ph1NaLm9FsfiwSjnsQqOJx13B6vvdeGXK-ZZfvoi4w&oe=69B70B3C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023136\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAABBQEAAAAAAAAAAAAAAAAAAgMEBQYBAQEBAQAAAAAAAAAAAAAAAAAAAgH\\/2gAMAwEAAhADEAAAAKRUVRLTHB8jA+l60rKTmoq6moJJFXVOwjM1D+RNvSGbJpSEmwBw6Af\\/xAAmEAABAwMCBQUAAAAAAAAAAAABAAIRAwQSFCEQE0FRUgUgIiMx\\/9oACAEBAAE\\/ANQ5ah46IXB8Ea58VqXdlJlZOIDZ2CD391JiOGFIM65LluaJ2WDomEQQOFDTmp9g+KoV\\/TmOLcQqt5ZYljKSucapAp0S1G3q+BWlt2W7iCA5MdTY9ji3ruFb3FmIBgJ99Z8xu4hPv6WZwOyze4CSd0ZGxQeQsyVme6DZYDKeAD+z7p4Sv\\/\\/EAB8RAQABAQkAAAAAAAAAAAAAAAEAEQIQEiAiMUJRUv\\/aAAgBAgEBPwC\\/aAUqytnsnJY6phPJk\\/\\/EABsRAAMAAwEBAAAAAAAAAAAAAAECEQASIBBB\\/9oACAEDAQE\\/AOCxDTXxF1WFrhhNwNPnH\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"pv+eAk9fvL82FgZ+fB7dI5cAROPIpZ9mSv9SDl7J4cykKjBdpebl1g==\",\"scanLengths\":[11398,41808,14848,30786],\"midQualityFileSha256\":\"dKOZ3znSWIMhzk7kjQpnu9+MJj7SjFU5oScpHCQB0SA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iSDzmjIlNcY5bJEubNH\\/1H1OqQXBngpI4B47DJC687Y=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023138,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:52:18'),
(12989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:52:18'),
(12990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:52:18'),
(12991, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:52:18'),
(12992, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:52:19'),
(12993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:52:19'),
(12994, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:52:18.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:52:19'),
(12995, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023237522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:53:57.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:53:57'),
(12996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023237522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:53:57.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:53:57'),
(12997, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023238731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:53:58.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:53:58'),
(12998, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5E8D0FB8CF5FBA4BF014D79298DA8A7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023238731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:53:58.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:53:58'),
(12999, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:32.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:54:33'),
(13000, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:32.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:54:33'),
(13001, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:36.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:54:36'),
(13002, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:36.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:54:36'),
(13003, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:46.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:54:46'),
(13004, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:46.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:54:46'),
(13005, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:56.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:54:56'),
(13006, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:54:56.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:54:56'),
(13007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:01.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:55:02'),
(13008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:01.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:55:02'),
(13009, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:55:02'),
(13010, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:55:02'),
(13011, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A897BC74CE9521D6F2F\"},\"pushName\":\"Solano Und 097\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35336049_893524543603954_9168412671281611772_n.enc?ccb=11-4&oh=01_Q5Aa3wE1PSQaIi30UsuFGhIjEfTkd9D0eR8mP7YJ5H9Xl-gLOw&oe=69B73183&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"zOXiXSW7hk3yVolyUfw4Ftxt1tkft5O4ml9m+DxFU1k=\",\"fileLength\":\"56014\",\"seconds\":25,\"ptt\":true,\"mediaKey\":\"PiMuVr7ByBmaAYk7DKPveChGha3BY02h7zcjpvH0Vfc=\",\"fileEncSha256\":\"cSWtRzMmK\\/s5HrD7tZXeAkbP1649Oz8KTfWAb5EvqlQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35336049_893524543603954_9168412671281611772_n.enc?ccb=11-4&oh=01_Q5Aa3wE1PSQaIi30UsuFGhIjEfTkd9D0eR8mP7YJ5H9Xl-gLOw&oe=69B73183&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023275\",\"streamingSidecar\":\"w2j0B8kVq4Th9Q==\",\"waveform\":\"BydkZGRdVxMEAwMNZGRkVUNkZGRSEQQVZGRkZGRaVF0mBgISV0IQBgMDBwcEV1YXBwIOZGRkRGRkZFknEGRiLA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771023091\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eV049vsfggT4o6SkE0lXxc+DalF0OLdFr6rvsOHHCTU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023302,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:55:02'),
(13012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A897BC74CE9521D6F2F\"},\"pushName\":\"Solano Und 097\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35336049_893524543603954_9168412671281611772_n.enc?ccb=11-4&oh=01_Q5Aa3wE1PSQaIi30UsuFGhIjEfTkd9D0eR8mP7YJ5H9Xl-gLOw&oe=69B73183&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"zOXiXSW7hk3yVolyUfw4Ftxt1tkft5O4ml9m+DxFU1k=\",\"fileLength\":\"56014\",\"seconds\":25,\"ptt\":true,\"mediaKey\":\"PiMuVr7ByBmaAYk7DKPveChGha3BY02h7zcjpvH0Vfc=\",\"fileEncSha256\":\"cSWtRzMmK\\/s5HrD7tZXeAkbP1649Oz8KTfWAb5EvqlQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35336049_893524543603954_9168412671281611772_n.enc?ccb=11-4&oh=01_Q5Aa3wE1PSQaIi30UsuFGhIjEfTkd9D0eR8mP7YJ5H9Xl-gLOw&oe=69B73183&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023275\",\"streamingSidecar\":\"w2j0B8kVq4Th9Q==\",\"waveform\":\"BydkZGRdVxMEAwMNZGRkVUNkZGRSEQQVZGRkZGRaVF0mBgISV0IQBgMDBwcEV1YXBwIOZGRkRGRkZFknEGRiLA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771023091\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eV049vsfggT4o6SkE0lXxc+DalF0OLdFr6rvsOHHCTU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023302,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:55:03'),
(13013, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:55:03'),
(13014, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"553399921854@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:55:03'),
(13015, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:55:03'),
(13016, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"553399921854@s.whatsapp.net\",\"pushName\":\"Solan1854 $30 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554476207_1184895360239348_6375672734384177121_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkgyWldtRzwBSN7fyH49_TfGJ9c73J6Jzhf33HGDvvhQ&oe=699CCCA2&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:55:02.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:55:04'),
(13017, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A59C8A0F3471F506596F9E56F1B7D05E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636537011_911876781215127_6140648921611574446_n.enc?ccb=11-4&oh=01_Q5Aa3wGRBBFLcX50L2r-ymfOWafsrj4UBXsQ2YqKyK9IJkg-1Q&oe=69B70853&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eQL4PnxFrvDNj+mXfu684wT5ZNpyc4y6gx9+a2wpgHw=\",\"fileLength\":\"6252\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"34Rp4WdSccZ6+p7SC8B0K4VAF0fibcihBXcylEmsVrg=\",\"fileEncSha256\":\"0y0skb5VLWDusc3Vs7JdzItW9piDwSrlLTXY+ar8ZtE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636537011_911876781215127_6140648921611574446_n.enc?ccb=11-4&oh=01_Q5Aa3wGRBBFLcX50L2r-ymfOWafsrj4UBXsQ2YqKyK9IJkg-1Q&oe=69B70853&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023467\",\"waveform\":\"AAEAAwgBJhYNGQYuTl5eXTstLzYqRVdeVzVVYF9cR0ZPWFxcPkJYXmFbWVNBWVxWTUVXUE5LNSc8U15dXUxJVA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:49'),
(13018, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:57:49'),
(13019, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:57:49'),
(13020, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:57:49'),
(13021, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A59C8A0F3471F506596F9E56F1B7D05E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636537011_911876781215127_6140648921611574446_n.enc?ccb=11-4&oh=01_Q5Aa3wGRBBFLcX50L2r-ymfOWafsrj4UBXsQ2YqKyK9IJkg-1Q&oe=69B70853&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eQL4PnxFrvDNj+mXfu684wT5ZNpyc4y6gx9+a2wpgHw=\",\"fileLength\":\"6252\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"34Rp4WdSccZ6+p7SC8B0K4VAF0fibcihBXcylEmsVrg=\",\"fileEncSha256\":\"0y0skb5VLWDusc3Vs7JdzItW9piDwSrlLTXY+ar8ZtE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636537011_911876781215127_6140648921611574446_n.enc?ccb=11-4&oh=01_Q5Aa3wGRBBFLcX50L2r-ymfOWafsrj4UBXsQ2YqKyK9IJkg-1Q&oe=69B70853&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023467\",\"waveform\":\"AAEAAwgBJhYNGQYuTl5eXTstLzYqRVdeVzVVYF9cR0ZPWFxcPkJYXmFbWVNBWVxWTUVXUE5LNSc8U15dXUxJVA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:49'),
(13022, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59C8A0F3471F506596F9E56F1B7D05E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023469637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:49'),
(13023, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59C8A0F3471F506596F9E56F1B7D05E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023469637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:50'),
(13024, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:49.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:57:50'),
(13025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:51.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:57:51'),
(13026, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FFF2D6F3A24DC22D42DF1D4F3A4789\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Donwloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771023471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:51.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:51'),
(13027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:51.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:57:51'),
(13028, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FFF2D6F3A24DC22D42DF1D4F3A4789\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Donwloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771023471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:51.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:51'),
(13029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:51.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:57:51'),
(13030, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FFF2D6F3A24DC22D42DF1D4F3A4789\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023472059,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:52.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:52'),
(13031, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FFF2D6F3A24DC22D42DF1D4F3A4789\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023472059,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:52.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:52'),
(13032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:51.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:57:52'),
(13033, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FFF2D6F3A24DC22D42DF1D4F3A4789\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023474409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:54.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:54'),
(13034, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FFF2D6F3A24DC22D42DF1D4F3A4789\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023474409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:54.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:54'),
(13035, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:57:56'),
(13036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A543C6DCC6599F4C69E5A26B7D367EC2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636245944_1260139782676197_6777026918714897336_n.enc?ccb=11-4&oh=01_Q5Aa3wHTt1bik2SIn3NQykihTETJU3st9win0EkPg8FMU3oVeg&oe=69B72D76&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hdK8S0S61qm0UKNQJJmeDoh3mHZ1ytNXn0CbHU0Qi3o=\",\"fileLength\":\"9085\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"RxL+AM3+lnL3ZtnsC3fu7QPDIenk2le0wX9HxX+oZis=\",\"fileEncSha256\":\"9bj+iDDR1a0EcyBB2XoCaYt8\\/xRevkN9AYD\\/gfYQXyM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636245944_1260139782676197_6777026918714897336_n.enc?ccb=11-4&oh=01_Q5Aa3wHTt1bik2SIn3NQykihTETJU3st9win0EkPg8FMU3oVeg&oe=69B72D76&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023473\",\"waveform\":\"AAYTKFJeUyxOUFJYU0BLOU9TXFc4S0tUSyVbX1Y\\/VGFfWlldVVhUUlpbV1dXU1tbUFlRTE9RUFUxE1lSIAQ3VA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023476,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:56'),
(13037, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:57:56'),
(13038, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A543C6DCC6599F4C69E5A26B7D367EC2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636245944_1260139782676197_6777026918714897336_n.enc?ccb=11-4&oh=01_Q5Aa3wHTt1bik2SIn3NQykihTETJU3st9win0EkPg8FMU3oVeg&oe=69B72D76&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hdK8S0S61qm0UKNQJJmeDoh3mHZ1ytNXn0CbHU0Qi3o=\",\"fileLength\":\"9085\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"RxL+AM3+lnL3ZtnsC3fu7QPDIenk2le0wX9HxX+oZis=\",\"fileEncSha256\":\"9bj+iDDR1a0EcyBB2XoCaYt8\\/xRevkN9AYD\\/gfYQXyM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636245944_1260139782676197_6777026918714897336_n.enc?ccb=11-4&oh=01_Q5Aa3wHTt1bik2SIn3NQykihTETJU3st9win0EkPg8FMU3oVeg&oe=69B72D76&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023473\",\"waveform\":\"AAYTKFJeUyxOUFJYU0BLOU9TXFc4S0tUSyVbX1Y\\/VGFfWlldVVhUUlpbV1dXU1tbUFlRTE9RUFUxE1lSIAQ3VA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023476,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:56'),
(13039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 19:57:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 19:57:57'),
(13041, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543C6DCC6599F4C69E5A26B7D367EC2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023476760,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:57'),
(13042, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543C6DCC6599F4C69E5A26B7D367EC2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023476760,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:56.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:57'),
(13043, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59C8A0F3471F506596F9E56F1B7D05E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023478216,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:58.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:57:58'),
(13044, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A59C8A0F3471F506596F9E56F1B7D05E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023478216,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:57:58.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:57:58'),
(13045, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543C6DCC6599F4C69E5A26B7D367EC2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023486355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:58:06.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 19:58:06'),
(13046, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543C6DCC6599F4C69E5A26B7D367EC2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023486355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T19:58:06.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 19:58:06'),
(13047, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:13.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:13'),
(13048, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:13.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:14'),
(13049, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:20.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:20'),
(13050, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:20.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:20'),
(13051, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:21'),
(13052, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:21'),
(13053, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC471AD2277D50638FC9F72E4E75082D\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635519045_1963045634639157_538077432803220040_n.enc?ccb=11-4&oh=01_Q5Aa3wEzVrwyqKbbN7g2TJjZZX-gvCRNleNAdHXye8zHuQIrKg&oe=69B72B6E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Irx4XEf1tB9PfwQYRHRfBe4j0in8uOQ\\/0dFD\\/P5N7JI=\",\"fileLength\":\"12022\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"tJdc\\/k\\/vUzE0z0qpwjZDM2AE1+0uEHfg4zMuzc79Ph8=\",\"fileEncSha256\":\"\\/rEnNJbE9MTuWuFXagaCqDtadasAEuNJ3P1BTBBsQWo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635519045_1963045634639157_538077432803220040_n.enc?ccb=11-4&oh=01_Q5Aa3wEzVrwyqKbbN7g2TJjZZX-gvCRNleNAdHXye8zHuQIrKg&oe=69B72B6E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023675\",\"waveform\":\"AAAFXGFSNz8pTUkqODgyIFhaUzgQAAAAAAAAAEtcTlogWExDV0dHREVISTQ2N0dGIAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qrdAseQfpmZh5vgyO\\/hwRcB923IAjDW1vPGqnjHi2Rc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023680,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:01:21'),
(13054, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:21'),
(13055, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:21'),
(13056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC471AD2277D50638FC9F72E4E75082D\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635519045_1963045634639157_538077432803220040_n.enc?ccb=11-4&oh=01_Q5Aa3wEzVrwyqKbbN7g2TJjZZX-gvCRNleNAdHXye8zHuQIrKg&oe=69B72B6E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Irx4XEf1tB9PfwQYRHRfBe4j0in8uOQ\\/0dFD\\/P5N7JI=\",\"fileLength\":\"12022\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"tJdc\\/k\\/vUzE0z0qpwjZDM2AE1+0uEHfg4zMuzc79Ph8=\",\"fileEncSha256\":\"\\/rEnNJbE9MTuWuFXagaCqDtadasAEuNJ3P1BTBBsQWo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635519045_1963045634639157_538077432803220040_n.enc?ccb=11-4&oh=01_Q5Aa3wEzVrwyqKbbN7g2TJjZZX-gvCRNleNAdHXye8zHuQIrKg&oe=69B72B6E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023675\",\"waveform\":\"AAAFXGFSNz8pTUkqODgyIFhaUzgQAAAAAAAAAEtcTlogWExDV0dHREVISTQ2N0dGIAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qrdAseQfpmZh5vgyO\\/hwRcB923IAjDW1vPGqnjHi2Rc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023680,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:01:22'),
(13057, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:22'),
(13058, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:21.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:22'),
(13059, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:49'),
(13060, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC0C8112DCB969FCA286355E97841810\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/40854783_1247454320661212_5069082569739588654_n.enc?ccb=11-4&oh=01_Q5Aa3wEnXuxbQ1ZpKZEWVfZPpsjJ6R6Hlbl8jNbtqVOovAMC3Q&oe=69B71480&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ZXkaGHAI510LRXJEY8jCLwtN34C4d99OhNwVxU0ZM8M=\",\"fileLength\":\"106821\",\"height\":1600,\"width\":900,\"mediaKey\":\"Hz7Dn9elSfrh6+0KYFvlip8vFUZOaHCV2enBU6fsNO4=\",\"fileEncSha256\":\"r91b6Pz7t\\/h3VTusmOsysJVEmdDyARtSs4xbVdx1J08=\",\"directPath\":\"\\/v\\/t62.7118-24\\/40854783_1247454320661212_5069082569739588654_n.enc?ccb=11-4&oh=01_Q5Aa3wEnXuxbQ1ZpKZEWVfZPpsjJ6R6Hlbl8jNbtqVOovAMC3Q&oe=69B71480&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023708\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMEAQUGAQEBAQEAAAAAAAAAAAAAAAAAAwIB\\/9oADAMBAAIQAxAAAAD553mVefo6YBjimvB7U6SSqSVIG8edk2RryZWBQkFRELInTpwP\\/8QAJRAAAgIBAwQBBQAAAAAAAAAAAQIAAxEEITEFEiJRUhATFBUg\\/9oACAEBAAE\\/AMspOIlticNBdcc+Z35grOJiXoUszO4Fs4iMAwJEOorNeBWBMy8C3tx7lWjsIGFXafjOgfwTyg6Xb81g6Tb8llh7LAfRmn6hpws1HUas7LP2npI2uvc5DYmpG8GYQ0yZ9wy9wyxEZk2HEtSzsFhG31sYHiK7LwYzuwwW2mJiMNs\\/z\\/\\/EABwRAAEDBQAAAAAAAAAAAAAAAAABERICICIjUf\\/aAAgBAgEBPwAQdCqbpE3GXL\\/\\/xAAcEQABAwUAAAAAAAAAAAAAAAARAAISARAhMDH\\/2gAIAQMBAT8Au2Iqep8cDR\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ukn\\/u8bJOo72eOj2cK4GSemZ9Dr+x7cWhPhiGVaGw5MaZ+0CGKkhPA==\",\"scanLengths\":[11513,35827,17857,41624],\"midQualityFileSha256\":\"3bl5AH5ynaIEko5ussM9m1dubqMTR61m34S\\/VFA4OTI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IeUe05OvAI3zFpFCbR00gW5YlDbosx6txEDEddELDKs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:01:49'),
(13061, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:49'),
(13062, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC0C8112DCB969FCA286355E97841810\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/40854783_1247454320661212_5069082569739588654_n.enc?ccb=11-4&oh=01_Q5Aa3wEnXuxbQ1ZpKZEWVfZPpsjJ6R6Hlbl8jNbtqVOovAMC3Q&oe=69B71480&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ZXkaGHAI510LRXJEY8jCLwtN34C4d99OhNwVxU0ZM8M=\",\"fileLength\":\"106821\",\"height\":1600,\"width\":900,\"mediaKey\":\"Hz7Dn9elSfrh6+0KYFvlip8vFUZOaHCV2enBU6fsNO4=\",\"fileEncSha256\":\"r91b6Pz7t\\/h3VTusmOsysJVEmdDyARtSs4xbVdx1J08=\",\"directPath\":\"\\/v\\/t62.7118-24\\/40854783_1247454320661212_5069082569739588654_n.enc?ccb=11-4&oh=01_Q5Aa3wEnXuxbQ1ZpKZEWVfZPpsjJ6R6Hlbl8jNbtqVOovAMC3Q&oe=69B71480&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023708\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMEAQUGAQEBAQEAAAAAAAAAAAAAAAAAAwIB\\/9oADAMBAAIQAxAAAAD553mVefo6YBjimvB7U6SSqSVIG8edk2RryZWBQkFRELInTpwP\\/8QAJRAAAgIBAwQBBQAAAAAAAAAAAQIAAxEEITEFEiJRUhATFBUg\\/9oACAEBAAE\\/AMspOIlticNBdcc+Z35grOJiXoUszO4Fs4iMAwJEOorNeBWBMy8C3tx7lWjsIGFXafjOgfwTyg6Xb81g6Tb8llh7LAfRmn6hpws1HUas7LP2npI2uvc5DYmpG8GYQ0yZ9wy9wyxEZk2HEtSzsFhG31sYHiK7LwYzuwwW2mJiMNs\\/z\\/\\/EABwRAAEDBQAAAAAAAAAAAAAAAAABERICICIjUf\\/aAAgBAgEBPwAQdCqbpE3GXL\\/\\/xAAcEQABAwUAAAAAAAAAAAAAAAARAAISARAhMDH\\/2gAIAQMBAT8Au2Iqep8cDR\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ukn\\/u8bJOo72eOj2cK4GSemZ9Dr+x7cWhPhiGVaGw5MaZ+0CGKkhPA==\",\"scanLengths\":[11513,35827,17857,41624],\"midQualityFileSha256\":\"3bl5AH5ynaIEko5ussM9m1dubqMTR61m34S\\/VFA4OTI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IeUe05OvAI3zFpFCbR00gW5YlDbosx6txEDEddELDKs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:01:49'),
(13063, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:49'),
(13064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:50'),
(13065, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:50'),
(13066, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:49.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:50'),
(13067, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51FE5F2AD68FFD67005F8FA5C1EA8A2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636723578_2319825425180500_1301423192018670546_n.enc?ccb=11-4&oh=01_Q5Aa3wEag0wEYl23lcuUZi8rdEmoL1xpvsnqqoow3iSme0UCZw&oe=69B70A41&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZPTRGHsTG0Xt91xwMf\\/trksKYIy0AWHzAOvtqGMyICI=\",\"fileLength\":\"7795\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"LdaCBcNRChc464gDXY5p\\/aFUf4ydiaWj7X+cl2KkdAE=\",\"fileEncSha256\":\"TQCV+IqwXAFAXZlUzN6F4kPrmHQDY82\\/wz6iCHmrVRQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636723578_2319825425180500_1301423192018670546_n.enc?ccb=11-4&oh=01_Q5Aa3wEag0wEYl23lcuUZi8rdEmoL1xpvsnqqoow3iSme0UCZw&oe=69B70A41&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023716\",\"waveform\":\"AAoADlZLMkBSUl1hXU5IPyZKUVBDYFYsVlE8MiU9PTtVNDpVSkIhBAADBAACAAABDyYWK1tVU1VTTk1PTlNHTw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023718,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:01:59'),
(13068, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:01:59'),
(13069, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:01:59'),
(13070, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51FE5F2AD68FFD67005F8FA5C1EA8A2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636723578_2319825425180500_1301423192018670546_n.enc?ccb=11-4&oh=01_Q5Aa3wEag0wEYl23lcuUZi8rdEmoL1xpvsnqqoow3iSme0UCZw&oe=69B70A41&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZPTRGHsTG0Xt91xwMf\\/trksKYIy0AWHzAOvtqGMyICI=\",\"fileLength\":\"7795\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"LdaCBcNRChc464gDXY5p\\/aFUf4ydiaWj7X+cl2KkdAE=\",\"fileEncSha256\":\"TQCV+IqwXAFAXZlUzN6F4kPrmHQDY82\\/wz6iCHmrVRQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636723578_2319825425180500_1301423192018670546_n.enc?ccb=11-4&oh=01_Q5Aa3wEag0wEYl23lcuUZi8rdEmoL1xpvsnqqoow3iSme0UCZw&oe=69B70A41&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023716\",\"waveform\":\"AAoADlZLMkBSUl1hXU5IPyZKUVBDYFYsVlE8MiU9PTtVNDpVSkIhBAADBAACAAABDyYWK1tVU1VTTk1PTlNHTw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023718,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:01:59'),
(13071, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51FE5F2AD68FFD67005F8FA5C1EA8A2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023719363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:01:59'),
(13072, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51FE5F2AD68FFD67005F8FA5C1EA8A2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023719363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:00'),
(13073, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:00'),
(13074, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:01:59.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:00'),
(13075, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51FE5F2AD68FFD67005F8FA5C1EA8A2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023721150,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:01.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:01'),
(13076, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51FE5F2AD68FFD67005F8FA5C1EA8A2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023721150,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:01.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:01'),
(13077, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F90782BC9580F01DE475EFD351C78B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771023734,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:14.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:15'),
(13078, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:14.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:15'),
(13079, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:14.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:15'),
(13080, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F90782BC9580F01DE475EFD351C78B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771023734,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:14.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:15'),
(13081, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:15.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:15'),
(13082, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F90782BC9580F01DE475EFD351C78B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023735318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:15.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:16'),
(13083, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F90782BC9580F01DE475EFD351C78B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023735318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:15.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:16'),
(13084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:15.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:16'),
(13085, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F90782BC9580F01DE475EFD351C78B\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:22.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:22'),
(13086, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A55B7529A72C3DA7EA1C50BB8FD5D089\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023742604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:22.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:22'),
(13087, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F90782BC9580F01DE475EFD351C78B\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:22.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:22'),
(13088, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A55B7529A72C3DA7EA1C50BB8FD5D089\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023742604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:22.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:22'),
(13089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A55605027CDAE69F327D295CA72C6B4A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store.jtvplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771023746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:26.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:27'),
(13090, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:26.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:27'),
(13091, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:26.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:27'),
(13092, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A55605027CDAE69F327D295CA72C6B4A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store.jtvplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771023746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:26.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:27'),
(13093, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:27.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:27'),
(13094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:27.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:27'),
(13095, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A55605027CDAE69F327D295CA72C6B4A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023747527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:27.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:27'),
(13096, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A55605027CDAE69F327D295CA72C6B4A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023747527,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:27.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:28'),
(13097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:49.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:50'),
(13098, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6ED5E45AA4EC959355E3A3DCE2CFA7\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636626457_762708926893735_3660620913146194981_n.enc?ccb=11-4&oh=01_Q5Aa3wF5NGeHPrWtPuxSf8uR24kSneZxX7zNQ-M17SvPdR6qaQ&oe=69B72BBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"6kg59OCdFLn9rwolmGdMUKYXbckvPA5RaGPVbghE3mY=\",\"fileLength\":\"109740\",\"height\":1600,\"width\":900,\"mediaKey\":\"YOiFb3PlRXMfZd4kv\\/wYuWsx\\/vLBShHLlxN1jQhnup4=\",\"fileEncSha256\":\"d0+74VzuON6Wj7hnrD2K27GaxQN6HaTykzOvCKdzOhg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636626457_762708926893735_3660620913146194981_n.enc?ccb=11-4&oh=01_Q5Aa3wF5NGeHPrWtPuxSf8uR24kSneZxX7zNQ-M17SvPdR6qaQ&oe=69B72BBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023763\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAA8q2f0tSM92UidIz35bSs87S5hiFG6QXvI4MCjgnLMZzUH\\/\\/EACQQAAICAQQBBAMAAAAAAAAAAAECABEDBBITIVEQM0FhFCIj\\/9oACAEBAAE\\/ABqskXVZDBqMkOoyT8nL5i4FO3+gFzFo8d95lmbBgTrkjJpgPcswpp796JsCj9bMxNTGkECvkNBVmo0uRKsCHG\\/iaXActjlVK8xxxl15lg1L3XU3We3MZuzTGVbmOlKGuCvmWZ3Nw5b+I7YiCFBlfUruVLIm4yz65QN0GJjOFpwfc4Vn\\/8QAFREBAQAAAAAAAAAAAAAAAAAAIBH\\/2gAIAQIBAT8AVX\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AE\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"1L8PyrTmkhHjyxxsulHzHqSsKM58ZcAPJnPKioDM8Kc8X6PTJSVJOg==\",\"scanLengths\":[11845,30492,18801,48602],\"midQualityFileSha256\":\"dSt1Gu7nNIls6i2J3zqYQJoSvK6Fl5YOLa\\/\\/ynnIHG4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9Gj0hqLLbqPJxegykbTDAXYtOBjUTSjyooRRInq9VeY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023769,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:49.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:50'),
(13099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:49.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:50'),
(13100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6ED5E45AA4EC959355E3A3DCE2CFA7\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636626457_762708926893735_3660620913146194981_n.enc?ccb=11-4&oh=01_Q5Aa3wF5NGeHPrWtPuxSf8uR24kSneZxX7zNQ-M17SvPdR6qaQ&oe=69B72BBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"6kg59OCdFLn9rwolmGdMUKYXbckvPA5RaGPVbghE3mY=\",\"fileLength\":\"109740\",\"height\":1600,\"width\":900,\"mediaKey\":\"YOiFb3PlRXMfZd4kv\\/wYuWsx\\/vLBShHLlxN1jQhnup4=\",\"fileEncSha256\":\"d0+74VzuON6Wj7hnrD2K27GaxQN6HaTykzOvCKdzOhg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636626457_762708926893735_3660620913146194981_n.enc?ccb=11-4&oh=01_Q5Aa3wF5NGeHPrWtPuxSf8uR24kSneZxX7zNQ-M17SvPdR6qaQ&oe=69B72BBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023763\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAA8q2f0tSM92UidIz35bSs87S5hiFG6QXvI4MCjgnLMZzUH\\/\\/EACQQAAICAQQBBAMAAAAAAAAAAAECABEDBBITIVEQM0FhFCIj\\/9oACAEBAAE\\/ABqskXVZDBqMkOoyT8nL5i4FO3+gFzFo8d95lmbBgTrkjJpgPcswpp796JsCj9bMxNTGkECvkNBVmo0uRKsCHG\\/iaXActjlVK8xxxl15lg1L3XU3We3MZuzTGVbmOlKGuCvmWZ3Nw5b+I7YiCFBlfUruVLIm4yz65QN0GJjOFpwfc4Vn\\/8QAFREBAQAAAAAAAAAAAAAAAAAAIBH\\/2gAIAQIBAT8AVX\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AE\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"1L8PyrTmkhHjyxxsulHzHqSsKM58ZcAPJnPKioDM8Kc8X6PTJSVJOg==\",\"scanLengths\":[11845,30492,18801,48602],\"midQualityFileSha256\":\"dSt1Gu7nNIls6i2J3zqYQJoSvK6Fl5YOLa\\/\\/ynnIHG4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9Gj0hqLLbqPJxegykbTDAXYtOBjUTSjyooRRInq9VeY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023769,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:49.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:50'),
(13101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:50.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:50'),
(13102, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:50.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:50'),
(13103, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:50.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:50'),
(13104, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:50.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:51'),
(13105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:54'),
(13106, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A52A49BF3938583EB60DEE67C2C81B73\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628345804_1312398340679838_8370854549162970920_n.enc?ccb=11-4&oh=01_Q5Aa3wGzmoWrQetwE9T2kUoj3aMVf-lEbdEGl159mUXKnb0gpA&oe=69B7244F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Vgh\\/mkgtkfEaIgoxLiStfGY8GNZKcDbgWLM+H5Sihxw=\",\"fileLength\":\"2596\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"H0aNq716x4P9Qj6GOqJJl1pqxBOwbRPAmgslEZwrTGU=\",\"fileEncSha256\":\"HDqxWP8nKluR25h4bUzSxsmi3j6ukDfriPDWHBlpsIQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628345804_1312398340679838_8370854549162970920_n.enc?ccb=11-4&oh=01_Q5Aa3wGzmoWrQetwE9T2kUoj3aMVf-lEbdEGl159mUXKnb0gpA&oe=69B7244F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023773\",\"waveform\":\"AAIEBw0TFxcXFREMCgoLDA4QHTRKVFZZVExFRERESVBXW19iYF1cXF1bUkhFTFNYW11fX19bU0xHREAvGwcEQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:54'),
(13108, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A52A49BF3938583EB60DEE67C2C81B73\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/628345804_1312398340679838_8370854549162970920_n.enc?ccb=11-4&oh=01_Q5Aa3wGzmoWrQetwE9T2kUoj3aMVf-lEbdEGl159mUXKnb0gpA&oe=69B7244F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Vgh\\/mkgtkfEaIgoxLiStfGY8GNZKcDbgWLM+H5Sihxw=\",\"fileLength\":\"2596\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"H0aNq716x4P9Qj6GOqJJl1pqxBOwbRPAmgslEZwrTGU=\",\"fileEncSha256\":\"HDqxWP8nKluR25h4bUzSxsmi3j6ukDfriPDWHBlpsIQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/628345804_1312398340679838_8370854549162970920_n.enc?ccb=11-4&oh=01_Q5Aa3wGzmoWrQetwE9T2kUoj3aMVf-lEbdEGl159mUXKnb0gpA&oe=69B7244F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023773\",\"waveform\":\"AAIEBw0TFxcXFREMCgoLDA4QHTRKVFZZVExFRERESVBXW19iYF1cXF1bUkhFTFNYW11fX19bU0xHREAvGwcEQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023773,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:54'),
(13109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:02:54'),
(13110, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52A49BF3938583EB60DEE67C2C81B73\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023774375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:55'),
(13111, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:02:55'),
(13112, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52A49BF3938583EB60DEE67C2C81B73\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023774375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:54.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:55'),
(13113, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52A49BF3938583EB60DEE67C2C81B73\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023776118,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:56.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:02:56'),
(13114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52A49BF3938583EB60DEE67C2C81B73\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023776118,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:02:56.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:02:56'),
(13115, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:10.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:11'),
(13116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A52986958AC8975474034022686279FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636635465_1432714765309683_4911274201855358902_n.enc?ccb=11-4&oh=01_Q5Aa3wHPWI0I3AvgY8m048fNmo5sb_T1ui7Wz8lqiEvBfcrN1w&oe=69B71075&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1MPY2jlrIKlf8BQI7mV0jr5\\/eLegGRsWR3qMnT1q8aI=\",\"fileLength\":\"34101\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"xdQbmeVKvEjNMGzvUT20\\/gWs0d+MCn2TLRGSWm8azgc=\",\"fileEncSha256\":\"EKt6mzrQcn2ZwtJ8cvWSSwhrNY2ez99swxaFQg8PsAI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636635465_1432714765309683_4911274201855358902_n.enc?ccb=11-4&oh=01_Q5Aa3wHPWI0I3AvgY8m048fNmo5sb_T1ui7Wz8lqiEvBfcrN1w&oe=69B71075&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023777\",\"contextInfo\":{\"stanzaId\":\"A55605027CDAE69F327D295CA72C6B4A\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Store.jtvplay.com.br\"}},\"waveform\":\"AF9ZGzo6MjVHYFRaUlJZTD5TOUUfQ2BCWVlPVlRYTl4AAFVWVlsKAU5XW0VbWAAFVl5GVVhVUTNgW0wkQUlJVw==\"}},\"contextInfo\":{\"stanzaId\":\"A55605027CDAE69F327D295CA72C6B4A\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Store.jtvplay.com.br\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023790,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:10.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:11'),
(13117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52986958AC8975474034022686279FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023791245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:11.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:11'),
(13118, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:10.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:11'),
(13119, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A52986958AC8975474034022686279FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636635465_1432714765309683_4911274201855358902_n.enc?ccb=11-4&oh=01_Q5Aa3wHPWI0I3AvgY8m048fNmo5sb_T1ui7Wz8lqiEvBfcrN1w&oe=69B71075&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1MPY2jlrIKlf8BQI7mV0jr5\\/eLegGRsWR3qMnT1q8aI=\",\"fileLength\":\"34101\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"xdQbmeVKvEjNMGzvUT20\\/gWs0d+MCn2TLRGSWm8azgc=\",\"fileEncSha256\":\"EKt6mzrQcn2ZwtJ8cvWSSwhrNY2ez99swxaFQg8PsAI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636635465_1432714765309683_4911274201855358902_n.enc?ccb=11-4&oh=01_Q5Aa3wHPWI0I3AvgY8m048fNmo5sb_T1ui7Wz8lqiEvBfcrN1w&oe=69B71075&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023777\",\"contextInfo\":{\"stanzaId\":\"A55605027CDAE69F327D295CA72C6B4A\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Store.jtvplay.com.br\"}},\"waveform\":\"AF9ZGzo6MjVHYFRaUlJZTD5TOUUfQ2BCWVlPVlRYTl4AAFVWVlsKAU5XW0VbWAAFVl5GVVhVUTNgW0wkQUlJVw==\"}},\"contextInfo\":{\"stanzaId\":\"A55605027CDAE69F327D295CA72C6B4A\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Store.jtvplay.com.br\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023790,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:10.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:11'),
(13120, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:11.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:12'),
(13121, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:11.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:12'),
(13122, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52986958AC8975474034022686279FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771023791245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:11.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:13'),
(13123, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52986958AC8975474034022686279FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023802486,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:22.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:22'),
(13124, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52986958AC8975474034022686279FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023802486,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:22.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:22'),
(13125, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:24'),
(13126, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC27006BDE35D54184299B798DA6CBF5\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636615433_886650934083264_623362786156594531_n.enc?ccb=11-4&oh=01_Q5Aa3wGxt0o39a3ep1QJJLwB5XCkr7D3pUrue1EUMCvZjFkFIw&oe=69B72BB0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qdpZlyn\\/of3R4l6F2KiMlwhpGdMZ123gEAtxjfk5m0E=\",\"fileLength\":\"112091\",\"height\":1600,\"width\":900,\"mediaKey\":\"nDdnrvSgVzF72JamsBYkpjexnUrpO4MEejpHaapMU5c=\",\"fileEncSha256\":\"ET1oBrtA+t0c1FVCeegb+ejpo596k55EFqL6y4gWTT4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636615433_886650934083264_623362786156594531_n.enc?ccb=11-4&oh=01_Q5Aa3wGxt0o39a3ep1QJJLwB5XCkr7D3pUrue1EUMCvZjFkFIw&oe=69B72BB0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023803\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgQDBQEBAQEAAwAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACdoqGbrPLcLzlEdGjA1dPX4nQj280Y4qL5mMKI4gbpQRi+oIaC\\/wD\\/xAAlEAABBAECBQUAAAAAAAAAAAABAAIDERIEExAgISJRFTFBUmH\\/2gAIAQEAAT8AJv5QITntr3QlZV5Lfi+ywsHrZUWna+HPuKliDeqdwjWllcA6InonRwvjsNpTQkOKxZ+rSPYHd6dLFHqXlt0vUIWtraU+sysBjVuBPGMlJ\\/G1ITkr5HtyW0toIRjwsB45v\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAECABEQEiBRYf\\/aAAgBAgEBPwBTteUOrsIW6Er08\\/\\/EABsRAAEEAwAAAAAAAAAAAAAAAAIBAxARIjBB\\/9oACAEDAQE\\/ADBQq+y7k2C6f\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"6fTOVxudCMBuxw8qmNJReIkjD00np9c1q1bDtBwKhXtCeA18HP59jw==\",\"scanLengths\":[11723,39566,19919,40883],\"midQualityFileSha256\":\"PNO8yAPVk2PkJ7WAwa\\/jV9B6JaS5Fc+9Ccr+AUxvOcs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DYCHGEgNhUogK\\/1gLuUUiICztOwpOpYyoaa3cfwGFXs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:24'),
(13127, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:24'),
(13128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:24'),
(13129, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC27006BDE35D54184299B798DA6CBF5\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636615433_886650934083264_623362786156594531_n.enc?ccb=11-4&oh=01_Q5Aa3wGxt0o39a3ep1QJJLwB5XCkr7D3pUrue1EUMCvZjFkFIw&oe=69B72BB0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qdpZlyn\\/of3R4l6F2KiMlwhpGdMZ123gEAtxjfk5m0E=\",\"fileLength\":\"112091\",\"height\":1600,\"width\":900,\"mediaKey\":\"nDdnrvSgVzF72JamsBYkpjexnUrpO4MEejpHaapMU5c=\",\"fileEncSha256\":\"ET1oBrtA+t0c1FVCeegb+ejpo596k55EFqL6y4gWTT4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636615433_886650934083264_623362786156594531_n.enc?ccb=11-4&oh=01_Q5Aa3wGxt0o39a3ep1QJJLwB5XCkr7D3pUrue1EUMCvZjFkFIw&oe=69B72BB0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023803\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgQDBQEBAQEAAwAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACdoqGbrPLcLzlEdGjA1dPX4nQj280Y4qL5mMKI4gbpQRi+oIaC\\/wD\\/xAAlEAABBAECBQUAAAAAAAAAAAABAAIDERIEExAgISJRFTFBUmH\\/2gAIAQEAAT8AJv5QITntr3QlZV5Lfi+ywsHrZUWna+HPuKliDeqdwjWllcA6InonRwvjsNpTQkOKxZ+rSPYHd6dLFHqXlt0vUIWtraU+sysBjVuBPGMlJ\\/G1ITkr5HtyW0toIRjwsB45v\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAECABEQEiBRYf\\/aAAgBAgEBPwBTteUOrsIW6Er08\\/\\/EABsRAAEEAwAAAAAAAAAAAAAAAAIBAxARIjBB\\/9oACAEDAQE\\/ADBQq+y7k2C6f\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"6fTOVxudCMBuxw8qmNJReIkjD00np9c1q1bDtBwKhXtCeA18HP59jw==\",\"scanLengths\":[11723,39566,19919,40883],\"midQualityFileSha256\":\"PNO8yAPVk2PkJ7WAwa\\/jV9B6JaS5Fc+9Ccr+AUxvOcs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DYCHGEgNhUogK\\/1gLuUUiICztOwpOpYyoaa3cfwGFXs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:24'),
(13130, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:25'),
(13131, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:25'),
(13132, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52986958AC8975474034022686279FA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023804524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:25'),
(13133, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52986958AC8975474034022686279FA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771023804524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:25'),
(13134, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:24.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:26'),
(13135, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:28'),
(13136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B6F2B8877A92B08410D33973397E7C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9rswCEuD\\/KlEoLB\\/ds4ovKMAoKAF1ZiWQfE1T9JL7\\/I=\",\"fileLength\":\"100318\",\"height\":1600,\"width\":738,\"mediaKey\":\"faEgQa59G0ZbPiaRKTMYdIIB1b8Zqd53HpzC8YAt4s8=\",\"fileEncSha256\":\"5fF7rbug5hO08LtMZ2UyuqYQXYMYoCanIHhSNUXGTtQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023807\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAgMEBgEFAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPsnMW2dGc5KurOQMMlmqaCb2dAoa8ez7ElrUMYGdvBBNVcKzoAJqAwgUgBf\\/8QAJxAAAgIBAwMDBQEAAAAAAAAAAQIAEQMEEBIUIVMTMUEjMjNCUlH\\/2gAIAQEAAT8AOpw+RZ1SfDrOoxVZdZ1GAn8izqMHkWY1xtyLwJpv6MKab+jMi4QBwPfZshU0IMjGHI6mouUlgKlD\\/ZkaspNTmbupyd2BqH77C0B229F8hJURdNkH6AzHiyJYOOOmQLbChe2JXILJ7T63wTBj1J7ho+DUlCW2x5eCst\\/MOch6uDUED3i6kkML9xsy289LvVielQrkIFph32TiCbW5yxeMQti8ccoR2UDb\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQAQEWESIQIxgf\\/aAAgBAgEBPwAcbCxsNpaYRHRRxtvXkqS3\\/8QAGREBAAIDAAAAAAAAAAAAAAAAEQABIDBB\\/9oACAEDAQE\\/AGOLCl7o\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"e2It1NqUgpXkpV\\/hzeR7qIWLyd0lcqGzPRh1YKOOvG4fFEFtTDCQAA==\",\"scanLengths\":[10192,46951,18536,24639],\"midQualityFileSha256\":\"urThHBSG7JsRkikrrEaoxAcT2WwwsFb53Q2MitKF9bU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:28'),
(13137, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:28'),
(13138, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B6F2B8877A92B08410D33973397E7C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9rswCEuD\\/KlEoLB\\/ds4ovKMAoKAF1ZiWQfE1T9JL7\\/I=\",\"fileLength\":\"100318\",\"height\":1600,\"width\":738,\"mediaKey\":\"faEgQa59G0ZbPiaRKTMYdIIB1b8Zqd53HpzC8YAt4s8=\",\"fileEncSha256\":\"5fF7rbug5hO08LtMZ2UyuqYQXYMYoCanIHhSNUXGTtQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023807\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAgMEBgEFAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPsnMW2dGc5KurOQMMlmqaCb2dAoa8ez7ElrUMYGdvBBNVcKzoAJqAwgUgBf\\/8QAJxAAAgIBAwMDBQEAAAAAAAAAAQIAEQMEEBIUIVMTMUEjMjNCUlH\\/2gAIAQEAAT8AOpw+RZ1SfDrOoxVZdZ1GAn8izqMHkWY1xtyLwJpv6MKab+jMi4QBwPfZshU0IMjGHI6mouUlgKlD\\/ZkaspNTmbupyd2BqH77C0B229F8hJURdNkH6AzHiyJYOOOmQLbChe2JXILJ7T63wTBj1J7ho+DUlCW2x5eCst\\/MOch6uDUED3i6kkML9xsy289LvVielQrkIFph32TiCbW5yxeMQti8ccoR2UDb\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQAQEWESIQIxgf\\/aAAgBAgEBPwAcbCxsNpaYRHRRxtvXkqS3\\/8QAGREBAAIDAAAAAAAAAAAAAAAAEQABIDBB\\/9oACAEDAQE\\/AGOLCl7o\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"e2It1NqUgpXkpV\\/hzeR7qIWLyd0lcqGzPRh1YKOOvG4fFEFtTDCQAA==\",\"scanLengths\":[10192,46951,18536,24639],\"midQualityFileSha256\":\"urThHBSG7JsRkikrrEaoxAcT2WwwsFb53Q2MitKF9bU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:28'),
(13139, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B6F2B8877A92B08410D33973397E7C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023808580,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:03:28'),
(13140, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B6F2B8877A92B08410D33973397E7C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771023808580,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:03:29'),
(13141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:03:29'),
(13142, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:03:28.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:03:29'),
(13143, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:19'),
(13144, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC0155EF6D1838780D191A116A9A8936\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636335081_1519936672439254_5276950092472593719_n.enc?ccb=11-4&oh=01_Q5Aa3wHgzsZ_CHi6aYeKyJj-fHqpAkJHbZaRTQM9QOZgkEY-LQ&oe=69B7153C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tLKG0j5PyTJjyCpPNT1iW7JPBgyv+3AyF4k7uIDKMQI=\",\"fileLength\":\"89666\",\"height\":1600,\"width\":900,\"mediaKey\":\"A0Vq1zs73UrY8ySV8xgZaBQlaolxmvb+4GfGt\\/oRQ9A=\",\"fileEncSha256\":\"uvJPMQNC3JnbaTYJoX5o2ikZu2rubkSh6Xip3haRruc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636335081_1519936672439254_5276950092472593719_n.enc?ccb=11-4&oh=01_Q5Aa3wHgzsZ_CHi6aYeKyJj-fHqpAkJHbZaRTQM9QOZgkEY-LQ&oe=69B7153C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023858\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABAECBQMBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAApZMHJRoPiAdouxm5a2wnkkOlMqcOFayqhubZmAvFZiZqFiA\\/\\/8QAJhAAAgIBAwQABwAAAAAAAAAAAAECAxEEEiEQE1FTBRQxMlJhYv\\/aAAgBAQABPwBNPgSHwZN8fItTJ8qtnzMvWx6r+WLVvwPVR\\/ApsthmrckkTvv8onOzlvA5NmJeBqELrFOWwhDSz+t6LKNL7x06dPi87NPvPic67bVKJU4R5bK7KmpZSZvhv+xCv0ySXaRZlRSa6ptMVTazlDlkyZN36N3VrHX\\/xAAfEQACAAYDAQAAAAAAAAAAAAABAgAQERJRkQMTIDH\\/2gAIAQIBAT8AmvIrAZpF6g\\/DqOwYbUILVAlXx\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAECEBEAICH\\/2gAIAQMBAT8AllomKxunb\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"eBK\\/zT3TXVY4FvcsHAnehxyGKUnNpgV8wKFlSRDJNWwCakmJih1AYA==\",\"scanLengths\":[11426,32263,13348,32629],\"midQualityFileSha256\":\"di6RJsQ\\/NuIIkKPavGIFw7YaUzPSVz3EOGkeyHnfozQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"h37ydIyYbBsqUwrI9S81HmZUEf1TeOaGrPOvszYTU4o=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023859,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:04:19'),
(13145, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:19'),
(13146, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC0155EF6D1838780D191A116A9A8936\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636335081_1519936672439254_5276950092472593719_n.enc?ccb=11-4&oh=01_Q5Aa3wHgzsZ_CHi6aYeKyJj-fHqpAkJHbZaRTQM9QOZgkEY-LQ&oe=69B7153C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tLKG0j5PyTJjyCpPNT1iW7JPBgyv+3AyF4k7uIDKMQI=\",\"fileLength\":\"89666\",\"height\":1600,\"width\":900,\"mediaKey\":\"A0Vq1zs73UrY8ySV8xgZaBQlaolxmvb+4GfGt\\/oRQ9A=\",\"fileEncSha256\":\"uvJPMQNC3JnbaTYJoX5o2ikZu2rubkSh6Xip3haRruc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636335081_1519936672439254_5276950092472593719_n.enc?ccb=11-4&oh=01_Q5Aa3wHgzsZ_CHi6aYeKyJj-fHqpAkJHbZaRTQM9QOZgkEY-LQ&oe=69B7153C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023858\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABAECBQMBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAApZMHJRoPiAdouxm5a2wnkkOlMqcOFayqhubZmAvFZiZqFiA\\/\\/8QAJhAAAgIBAwQABwAAAAAAAAAAAAECAxEEEiEQE1FTBRQxMlJhYv\\/aAAgBAQABPwBNPgSHwZN8fItTJ8qtnzMvWx6r+WLVvwPVR\\/ApsthmrckkTvv8onOzlvA5NmJeBqELrFOWwhDSz+t6LKNL7x06dPi87NPvPic67bVKJU4R5bK7KmpZSZvhv+xCv0ySXaRZlRSa6ptMVTazlDlkyZN36N3VrHX\\/xAAfEQACAAYDAQAAAAAAAAAAAAABAgAQERJRkQMTIDH\\/2gAIAQIBAT8AmvIrAZpF6g\\/DqOwYbUILVAlXx\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAECEBEAICH\\/2gAIAQMBAT8AllomKxunb\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"eBK\\/zT3TXVY4FvcsHAnehxyGKUnNpgV8wKFlSRDJNWwCakmJih1AYA==\",\"scanLengths\":[11426,32263,13348,32629],\"midQualityFileSha256\":\"di6RJsQ\\/NuIIkKPavGIFw7YaUzPSVz3EOGkeyHnfozQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"h37ydIyYbBsqUwrI9S81HmZUEf1TeOaGrPOvszYTU4o=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771023859,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:04:19'),
(13147, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:19'),
(13148, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:19'),
(13149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:19'),
(13150, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:19.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:20'),
(13151, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:43.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:43'),
(13152, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:43.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:43'),
(13153, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:45.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:45'),
(13154, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:45.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:46'),
(13155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:46'),
(13156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC62109FC7A292CE9E4D6F242FBEB922\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586919964_3208032849379340_106938838056151625_n.enc?ccb=11-4&oh=01_Q5Aa3wEIouV5lEY_MWT5IcsNfHgKB8ruMdTXlQj4ailY5P4hmQ&oe=69B736D2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fjcHWmhUBVDNsLLp\\/2hbpXpAaHwI4MGfSMrHQWOyNHE=\",\"fileLength\":\"6250\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"ln2s1woVgJXT2cy85B7NIJEMdHgLWd683T6aFI\\/f5tc=\",\"fileEncSha256\":\"4pLGt1FGyvtBAAnbkStHnA2HpMnx+oNEO+74DewdcaA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586919964_3208032849379340_106938838056151625_n.enc?ccb=11-4&oh=01_Q5Aa3wEIouV5lEY_MWT5IcsNfHgKB8ruMdTXlQj4ailY5P4hmQ&oe=69B736D2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023885\",\"waveform\":\"DRcQFCw\\/Rk9WTDcpJSkxS1JGNE1TVllZWldTUVBEODE1Njk7Ng0sOTY4MCYmLRUrMzAsLysXDkhXXFlMQjgvKg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"INnxkH\\/060QWhuOu6iLjQ3nUC+nbpEljMfhbgNPlxho=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023886,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:04:46'),
(13157, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:46'),
(13158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:46'),
(13159, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC62109FC7A292CE9E4D6F242FBEB922\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/586919964_3208032849379340_106938838056151625_n.enc?ccb=11-4&oh=01_Q5Aa3wEIouV5lEY_MWT5IcsNfHgKB8ruMdTXlQj4ailY5P4hmQ&oe=69B736D2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fjcHWmhUBVDNsLLp\\/2hbpXpAaHwI4MGfSMrHQWOyNHE=\",\"fileLength\":\"6250\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"ln2s1woVgJXT2cy85B7NIJEMdHgLWd683T6aFI\\/f5tc=\",\"fileEncSha256\":\"4pLGt1FGyvtBAAnbkStHnA2HpMnx+oNEO+74DewdcaA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586919964_3208032849379340_106938838056151625_n.enc?ccb=11-4&oh=01_Q5Aa3wEIouV5lEY_MWT5IcsNfHgKB8ruMdTXlQj4ailY5P4hmQ&oe=69B736D2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023885\",\"waveform\":\"DRcQFCw\\/Rk9WTDcpJSkxS1JGNE1TVllZWldTUVBEODE1Njk7Ng0sOTY4MCYmLRUrMzAsLysXDkhXXFlMQjgvKg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"INnxkH\\/060QWhuOu6iLjQ3nUC+nbpEljMfhbgNPlxho=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771023886,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:04:46'),
(13160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:47'),
(13161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:04:47'),
(13162, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:04:46.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:04:47'),
(13163, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A507E5B8833EF57FED0351A5D918E9BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/603981277_1434061981705744_1980198255013664669_n.enc?ccb=11-4&oh=01_Q5Aa3wGA561UyrvH4HiaWErTFHEcZcrXL5p5Sx4DWd-neUw0cA&oe=69B71972&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UxKZX68ggacdeUKl1MT8+gm4GO6pdKIDBHNuZ35TXYw=\",\"fileLength\":\"13216\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"mmsqbvTWSNS+cif7sNN8\\/pnZT4kxMkTuAJ+5uY5DNHA=\",\"fileEncSha256\":\"dgn\\/aT30R2FZVNx8m1JEAvzVUVFBk+ZvnEvsWbPE1DI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/603981277_1434061981705744_1980198255013664669_n.enc?ccb=11-4&oh=01_Q5Aa3wGA561UyrvH4HiaWErTFHEcZcrXL5p5Sx4DWd-neUw0cA&oe=69B71972&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024010\",\"waveform\":\"AA8VHxQNBQYXF1lPTl1aWVpcT1dZUx8ADEROUlFJGkwqTlEmUVAeU0UyQ05PT1ZUFBdHRktISy4OS0dSQztCUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:06:55'),
(13164, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:06:55');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:06:55'),
(13166, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:06:55'),
(13167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:06:55'),
(13168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A507E5B8833EF57FED0351A5D918E9BF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024015734,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:06:56'),
(13169, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A507E5B8833EF57FED0351A5D918E9BF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024015734,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:06:56'),
(13170, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A507E5B8833EF57FED0351A5D918E9BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/603981277_1434061981705744_1980198255013664669_n.enc?ccb=11-4&oh=01_Q5Aa3wGA561UyrvH4HiaWErTFHEcZcrXL5p5Sx4DWd-neUw0cA&oe=69B71972&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UxKZX68ggacdeUKl1MT8+gm4GO6pdKIDBHNuZ35TXYw=\",\"fileLength\":\"13216\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"mmsqbvTWSNS+cif7sNN8\\/pnZT4kxMkTuAJ+5uY5DNHA=\",\"fileEncSha256\":\"dgn\\/aT30R2FZVNx8m1JEAvzVUVFBk+ZvnEvsWbPE1DI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/603981277_1434061981705744_1980198255013664669_n.enc?ccb=11-4&oh=01_Q5Aa3wGA561UyrvH4HiaWErTFHEcZcrXL5p5Sx4DWd-neUw0cA&oe=69B71972&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024010\",\"waveform\":\"AA8VHxQNBQYXF1lPTl1aWVpcT1dZUx8ADEROUlFJGkwqTlEmUVAeU0UyQ05PT1ZUFBdHRktISy4OS0dSQztCUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:06:55.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:06:56'),
(13171, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A507E5B8833EF57FED0351A5D918E9BF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771024021079,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:01.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:07:01'),
(13172, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A507E5B8833EF57FED0351A5D918E9BF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771024021079,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:01.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:07:01'),
(13173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:10.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:07:10'),
(13174, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:10.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:07:10'),
(13175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:07:11'),
(13176, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:07:11'),
(13177, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACC4A4AF090901004F3EA5367464058D\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jb3pHHNonRAVpWlzKtfoTbnHSgGkEg0ZX8pPqpwBeko=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771024031,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:07:11'),
(13178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:07:11'),
(13179, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:07:11'),
(13180, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:07:12'),
(13181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:07:12'),
(13182, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACC4A4AF090901004F3EA5367464058D\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jb3pHHNonRAVpWlzKtfoTbnHSgGkEg0ZX8pPqpwBeko=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771024031,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:07:11.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:07:12'),
(13183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC129F51FD399B0CE6C685577AD99D1A\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636678513_837269586006677_1544922389651177635_n.enc?ccb=11-4&oh=01_Q5Aa3wE1LKFsHKuW99ydVMqa7Vl7AwQNMPjpPfukcn8ANCkxOQ&oe=69B71B84&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"PChLutTTsyCBrSMM5H0rc7cxdH7AYOhVYjrlE7AiuPY=\",\"fileLength\":\"93734\",\"height\":1600,\"width\":900,\"mediaKey\":\"AQWfQBOcuytvZEBF6xIfNjwZM9u66gdJXwQ2peLuhn0=\",\"fileEncSha256\":\"DHgD5zAyQR70rCrhqLBWFb5gpeFar6vVYNDWk7Rk20s=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636678513_837269586006677_1544922389651177635_n.enc?ccb=11-4&oh=01_Q5Aa3wE1LKFsHKuW99ydVMqa7Vl7AwQNMPjpPfukcn8ANCkxOQ&oe=69B71B84&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024274\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAAABAEDBQIGAQEBAQEBAAAAAAAAAAAAAAAAAwIBBP\\/aAAwDAQACEAMQAAAAJ4CyawsFAs7pchXHk9H6Y+cNsYyylOdXb8qN8YFwZUcMk5bnpQcD\\/8QAJBAAAgIBAwMFAQAAAAAAAAAAAQIAAxEEEiETQVEFECAxMnH\\/2gAIAQEAAT8A+JPcQEMOeJ1FHGRDYo+2EOoXyI35IEpRGXkdoTgt\\/YFe5wMcmPQEYqW5ljlVyJpKmtqLCCtjcUA5zNNp1QFmrCkLH6ZY\\/iWcqZpdc1AKiJqjXqTbLfUbHVlnVaG3IPEV9pJhcEzcJuEIjKQ02t4gRj2mxvExMTHttn\\/\\/xAAbEQEAAgIDAAAAAAAAAAAAAAABAhEAEAMgIf\\/aAAgBAgEBPwDfMKFYVRqUSRTh4df\\/xAAbEQEAAgIDAAAAAAAAAAAAAAABABEDURASIP\\/aAAgBAwEBPwDnEhdxnZ0wajLd+P\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"gypQ8IaiJY\\/5idrPWF+xv2AFtckLHSqRanQbhG61gb7L5Za4bVMf6Q==\",\"scanLengths\":[11527,29189,15683,37335],\"midQualityFileSha256\":\"wVLa3PXvO27OfBPJ9xWZQxFf0F+IezAxTHh42npR3Cg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fZwcJoZpgEC7idCAXura1U5RQaByAgx4\\/+WB\\/S\\/LNrk=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024275,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:15.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:11:16'),
(13184, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:15.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:16'),
(13185, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:16.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:16'),
(13186, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:15.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:16'),
(13187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:16.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:16'),
(13188, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:16.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:17'),
(13189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:16.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:17'),
(13190, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC129F51FD399B0CE6C685577AD99D1A\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636678513_837269586006677_1544922389651177635_n.enc?ccb=11-4&oh=01_Q5Aa3wE1LKFsHKuW99ydVMqa7Vl7AwQNMPjpPfukcn8ANCkxOQ&oe=69B71B84&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"PChLutTTsyCBrSMM5H0rc7cxdH7AYOhVYjrlE7AiuPY=\",\"fileLength\":\"93734\",\"height\":1600,\"width\":900,\"mediaKey\":\"AQWfQBOcuytvZEBF6xIfNjwZM9u66gdJXwQ2peLuhn0=\",\"fileEncSha256\":\"DHgD5zAyQR70rCrhqLBWFb5gpeFar6vVYNDWk7Rk20s=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636678513_837269586006677_1544922389651177635_n.enc?ccb=11-4&oh=01_Q5Aa3wE1LKFsHKuW99ydVMqa7Vl7AwQNMPjpPfukcn8ANCkxOQ&oe=69B71B84&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024274\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAAABAEDBQIGAQEBAQEBAAAAAAAAAAAAAAAAAwIBBP\\/aAAwDAQACEAMQAAAAJ4CyawsFAs7pchXHk9H6Y+cNsYyylOdXb8qN8YFwZUcMk5bnpQcD\\/8QAJBAAAgIBAwMFAQAAAAAAAAAAAQIAAxEEEiETQVEFECAxMnH\\/2gAIAQEAAT8A+JPcQEMOeJ1FHGRDYo+2EOoXyI35IEpRGXkdoTgt\\/YFe5wMcmPQEYqW5ljlVyJpKmtqLCCtjcUA5zNNp1QFmrCkLH6ZY\\/iWcqZpdc1AKiJqjXqTbLfUbHVlnVaG3IPEV9pJhcEzcJuEIjKQ02t4gRj2mxvExMTHttn\\/\\/xAAbEQEAAgIDAAAAAAAAAAAAAAABAhEAEAMgIf\\/aAAgBAgEBPwDfMKFYVRqUSRTh4df\\/xAAbEQEAAgIDAAAAAAAAAAAAAAABABEDURASIP\\/aAAgBAwEBPwDnEhdxnZ0wajLd+P\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"gypQ8IaiJY\\/5idrPWF+xv2AFtckLHSqRanQbhG61gb7L5Za4bVMf6Q==\",\"scanLengths\":[11527,29189,15683,37335],\"midQualityFileSha256\":\"wVLa3PXvO27OfBPJ9xWZQxFf0F+IezAxTHh42npR3Cg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fZwcJoZpgEC7idCAXura1U5RQaByAgx4\\/+WB\\/S\\/LNrk=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024275,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:15.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:11:17'),
(13191, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:24.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:24'),
(13192, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:24.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:24'),
(13193, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:26'),
(13194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:26'),
(13195, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:26'),
(13196, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACFB6599EB5F5F8436D16E5FA8DDF91E\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9owPIzBceAVPPZEzd6Ck1r062WfXgyB1BNeKqQMWx1U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771024286,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:11:26'),
(13197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:11:26'),
(13198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:27'),
(13199, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:11:27'),
(13200, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACFB6599EB5F5F8436D16E5FA8DDF91E\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9owPIzBceAVPPZEzd6Ck1r062WfXgyB1BNeKqQMWx1U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771024286,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:11:26.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:11:27'),
(13201, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC129F51FD399B0CE6C685577AD99D1A\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:41.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:12:42'),
(13202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:42.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:12:42'),
(13203, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC129F51FD399B0CE6C685577AD99D1A\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:41.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:12:42'),
(13204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:42.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:12:42'),
(13205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:59.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:00'),
(13206, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACA5EEF13631A936A8D6B1CAA31F455D\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636681309_1430842418702004_8263797141698313065_n.enc?ccb=11-4&oh=01_Q5Aa3wGjrJO-JL813qCIV740h_ylHvI80TPZ85uO9L8ElRm2ag&oe=69B7130E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"xHBH6izACLyqIf670uc9ClTCs2n3EJqVLqZNC3OgRoI=\",\"fileLength\":\"87289\",\"height\":1600,\"width\":900,\"mediaKey\":\"UvKcfhVHEEav0bfqTYOYHno51\\/0eXoWwTOzBtfktV\\/U=\",\"fileEncSha256\":\"0m8Hc0EZXFBjVe6\\/HNxu4owX9lSOCahTpHaj8qMvX\\/o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636681309_1430842418702004_8263797141698313065_n.enc?ccb=11-4&oh=01_Q5Aa3wGjrJO-JL813qCIV740h_ylHvI80TPZ85uO9L8ElRm2ag&oe=69B7130E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024377\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAADBAACBgEFAQADAQEAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAAr3gQPag02IrKRa2HnXp+D7WejS0NOvBlcqONavNjDL2cy02gS7CsNkA+heUjP\\/\\/EACQQAAICAQMDBQEAAAAAAAAAAAECAAMRBBIxEBQgITJBUnJR\\/9oACAEBAAE\\/AIvEbI4mCfmYgBjBy+FgqvI4EDX8bRC9wPC9EZhfx6YjORS+PrFtcg5aFmzMyq3e+2WKVpf8xeYEE3Sggahcy2yntn\\/M0yCy5V+CYNFo8e2ZH9lhIf0M3thgWYxLGRsqcGd9qPv0Y5adw23bgeDjDeH\\/xAAfEQABAwMFAAAAAAAAAAAAAAABAAIRAwQyEBIgMYH\\/2gAIAQIBAT8AJhNcHdFQqmDlbHKdHCQQqTNi9PD\\/xAAcEQEAAQUBAQAAAAAAAAAAAAABAgADEBExIDL\\/2gAIAQMBAT8ABXRTFj3Fv7KvHMRdI1NHnn\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"gNByQA28\\/q687Sj0AmVq4QZk12yp07JiRVYKVTUNQCAAoyj0kzpwog==\",\"scanLengths\":[11616,28279,13211,34183],\"midQualityFileSha256\":\"8SrTOYeNKW2zLvXZAhQ6H0KvTvpapXbTkjNTT\\/\\/ecJc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x\\/8f61ArtB6w0shwT6TCD62sBg456SzgkLhgYsTWicE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024379,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:59.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:13:00'),
(13207, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:59.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:00'),
(13208, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:59.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:00'),
(13209, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:59.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:00'),
(13210, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACA5EEF13631A936A8D6B1CAA31F455D\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636681309_1430842418702004_8263797141698313065_n.enc?ccb=11-4&oh=01_Q5Aa3wGjrJO-JL813qCIV740h_ylHvI80TPZ85uO9L8ElRm2ag&oe=69B7130E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"xHBH6izACLyqIf670uc9ClTCs2n3EJqVLqZNC3OgRoI=\",\"fileLength\":\"87289\",\"height\":1600,\"width\":900,\"mediaKey\":\"UvKcfhVHEEav0bfqTYOYHno51\\/0eXoWwTOzBtfktV\\/U=\",\"fileEncSha256\":\"0m8Hc0EZXFBjVe6\\/HNxu4owX9lSOCahTpHaj8qMvX\\/o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636681309_1430842418702004_8263797141698313065_n.enc?ccb=11-4&oh=01_Q5Aa3wGjrJO-JL813qCIV740h_ylHvI80TPZ85uO9L8ElRm2ag&oe=69B7130E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024377\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAADBAACBgEFAQADAQEAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAAr3gQPag02IrKRa2HnXp+D7WejS0NOvBlcqONavNjDL2cy02gS7CsNkA+heUjP\\/\\/EACQQAAICAQMDBQEAAAAAAAAAAAECAAMRBBIxEBQgITJBUnJR\\/9oACAEBAAE\\/AIvEbI4mCfmYgBjBy+FgqvI4EDX8bRC9wPC9EZhfx6YjORS+PrFtcg5aFmzMyq3e+2WKVpf8xeYEE3Sggahcy2yntn\\/M0yCy5V+CYNFo8e2ZH9lhIf0M3thgWYxLGRsqcGd9qPv0Y5adw23bgeDjDeH\\/xAAfEQABAwMFAAAAAAAAAAAAAAABAAIRAwQyEBIgMYH\\/2gAIAQIBAT8AJhNcHdFQqmDlbHKdHCQQqTNi9PD\\/xAAcEQEAAQUBAQAAAAAAAAAAAAABAgADEBExIDL\\/2gAIAQMBAT8ABXRTFj3Fv7KvHMRdI1NHnn\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"gNByQA28\\/q687Sj0AmVq4QZk12yp07JiRVYKVTUNQCAAoyj0kzpwog==\",\"scanLengths\":[11616,28279,13211,34183],\"midQualityFileSha256\":\"8SrTOYeNKW2zLvXZAhQ6H0KvTvpapXbTkjNTT\\/\\/ecJc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x\\/8f61ArtB6w0shwT6TCD62sBg456SzgkLhgYsTWicE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024379,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:12:59.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:13:00'),
(13211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:00.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:00'),
(13212, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:00.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:01'),
(13213, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:00.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:01'),
(13214, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:00.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:02'),
(13215, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:05.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:05'),
(13216, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:05.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:05'),
(13217, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:05.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:05'),
(13218, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:05.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:05'),
(13219, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDB8D5AB1163CC066FAE8A70FE8C449\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Qual desses\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lGROZ4cjLdpPXd1fLZvU9vu7MXlszMJ2Hxnhv2+Fm8M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771024391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:13:12'),
(13220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDB8D5AB1163CC066FAE8A70FE8C449\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Qual desses\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lGROZ4cjLdpPXd1fLZvU9vu7MXlszMJ2Hxnhv2+Fm8M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771024391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:13:12'),
(13221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:12'),
(13222, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:12'),
(13223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:12'),
(13224, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:13:13'),
(13225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:13'),
(13226, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:13:12.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:13:13'),
(13227, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:14:31'),
(13228, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A56FBCB5964358FA9A7A46A6215FBBB9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esse\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5B6F2B8877A92B08410D33973397E7C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9rswCEuD\\/KlEoLB\\/ds4ovKMAoKAF1ZiWQfE1T9JL7\\/I=\",\"fileLength\":\"100318\",\"height\":1600,\"width\":738,\"mediaKey\":\"faEgQa59G0ZbPiaRKTMYdIIB1b8Zqd53HpzC8YAt4s8=\",\"fileEncSha256\":\"5fF7rbug5hO08LtMZ2UyuqYQXYMYoCanIHhSNUXGTtQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023807\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAgMEBgEFAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPsnMW2dGc5KurOQMMlmqaCb2dAoa8ez7ElrUMYGdvBBNVcKzoAJqAwgUgBf\\/8QAJxAAAgIBAwMDBQEAAAAAAAAAAQIAEQMEEBIUIVMTMUEjMjNCUlH\\/2gAIAQEAAT8AOpw+RZ1SfDrOoxVZdZ1GAn8izqMHkWY1xtyLwJpv6MKab+jMi4QBwPfZshU0IMjGHI6mouUlgKlD\\/ZkaspNTmbupyd2BqH77C0B229F8hJURdNkH6AzHiyJYOOOmQLbChe2JXILJ7T63wTBj1J7ho+DUlCW2x5eCst\\/MOch6uDUED3i6kkML9xsy289LvVielQrkIFph32TiCbW5yxeMQti8ccoR2UDb\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQAQEWESIQIxgf\\/aAAgBAgEBPwAcbCxsNpaYRHRRxtvXkqS3\\/8QAGREBAAIDAAAAAAAAAAAAAAAAEQABIDBB\\/9oACAEDAQE\\/AGOLCl7o\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"e2It1NqUgpXkpV\\/hzeR7qIWLyd0lcqGzPRh1YKOOvG4fFEFtTDCQAA==\",\"scanLengths\":[10192,46951,18536,24639],\"midQualityFileSha256\":\"urThHBSG7JsRkikrrEaoxAcT2WwwsFb53Q2MitKF9bU=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A5B6F2B8877A92B08410D33973397E7C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9rswCEuD\\/KlEoLB\\/ds4ovKMAoKAF1ZiWQfE1T9JL7\\/I=\",\"fileLength\":\"100318\",\"height\":1600,\"width\":738,\"mediaKey\":\"faEgQa59G0ZbPiaRKTMYdIIB1b8Zqd53HpzC8YAt4s8=\",\"fileEncSha256\":\"5fF7rbug5hO08LtMZ2UyuqYQXYMYoCanIHhSNUXGTtQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023807\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAgMEBgEFAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPsnMW2dGc5KurOQMMlmqaCb2dAoa8ez7ElrUMYGdvBBNVcKzoAJqAwgUgBf\\/8QAJxAAAgIBAwMDBQEAAAAAAAAAAQIAEQMEEBIUIVMTMUEjMjNCUlH\\/2gAIAQEAAT8AOpw+RZ1SfDrOoxVZdZ1GAn8izqMHkWY1xtyLwJpv6MKab+jMi4QBwPfZshU0IMjGHI6mouUlgKlD\\/ZkaspNTmbupyd2BqH77C0B229F8hJURdNkH6AzHiyJYOOOmQLbChe2JXILJ7T63wTBj1J7ho+DUlCW2x5eCst\\/MOch6uDUED3i6kkML9xsy289LvVielQrkIFph32TiCbW5yxeMQti8ccoR2UDb\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQAQEWESIQIxgf\\/aAAgBAgEBPwAcbCxsNpaYRHRRxtvXkqS3\\/8QAGREBAAIDAAAAAAAAAAAAAAAAEQABIDBB\\/9oACAEDAQE\\/AGOLCl7o\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"e2It1NqUgpXkpV\\/hzeR7qIWLyd0lcqGzPRh1YKOOvG4fFEFtTDCQAA==\",\"scanLengths\":[10192,46951,18536,24639],\"midQualityFileSha256\":\"urThHBSG7JsRkikrrEaoxAcT2WwwsFb53Q2MitKF9bU=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771024471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:14:31'),
(13229, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:14:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13230, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A56FBCB5964358FA9A7A46A6215FBBB9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esse\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5B6F2B8877A92B08410D33973397E7C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9rswCEuD\\/KlEoLB\\/ds4ovKMAoKAF1ZiWQfE1T9JL7\\/I=\",\"fileLength\":\"100318\",\"height\":1600,\"width\":738,\"mediaKey\":\"faEgQa59G0ZbPiaRKTMYdIIB1b8Zqd53HpzC8YAt4s8=\",\"fileEncSha256\":\"5fF7rbug5hO08LtMZ2UyuqYQXYMYoCanIHhSNUXGTtQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023807\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAgMEBgEFAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPsnMW2dGc5KurOQMMlmqaCb2dAoa8ez7ElrUMYGdvBBNVcKzoAJqAwgUgBf\\/8QAJxAAAgIBAwMDBQEAAAAAAAAAAQIAEQMEEBIUIVMTMUEjMjNCUlH\\/2gAIAQEAAT8AOpw+RZ1SfDrOoxVZdZ1GAn8izqMHkWY1xtyLwJpv6MKab+jMi4QBwPfZshU0IMjGHI6mouUlgKlD\\/ZkaspNTmbupyd2BqH77C0B229F8hJURdNkH6AzHiyJYOOOmQLbChe2JXILJ7T63wTBj1J7ho+DUlCW2x5eCst\\/MOch6uDUED3i6kkML9xsy289LvVielQrkIFph32TiCbW5yxeMQti8ccoR2UDb\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQAQEWESIQIxgf\\/aAAgBAgEBPwAcbCxsNpaYRHRRxtvXkqS3\\/8QAGREBAAIDAAAAAAAAAAAAAAAAEQABIDBB\\/9oACAEDAQE\\/AGOLCl7o\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"e2It1NqUgpXkpV\\/hzeR7qIWLyd0lcqGzPRh1YKOOvG4fFEFtTDCQAA==\",\"scanLengths\":[10192,46951,18536,24639],\"midQualityFileSha256\":\"urThHBSG7JsRkikrrEaoxAcT2WwwsFb53Q2MitKF9bU=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A5B6F2B8877A92B08410D33973397E7C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9rswCEuD\\/KlEoLB\\/ds4ovKMAoKAF1ZiWQfE1T9JL7\\/I=\",\"fileLength\":\"100318\",\"height\":1600,\"width\":738,\"mediaKey\":\"faEgQa59G0ZbPiaRKTMYdIIB1b8Zqd53HpzC8YAt4s8=\",\"fileEncSha256\":\"5fF7rbug5hO08LtMZ2UyuqYQXYMYoCanIHhSNUXGTtQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/627076940_871648875678241_6945765553674208481_n.enc?ccb=11-4&oh=01_Q5Aa3wFAZsYy4pYiGgFH8bWeV4MJgGIJEJDkwknKwpI6vms26Q&oe=69B70DF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771023807\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAQAAAAAAAAAAAAAAAgMEBgEFAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAPsnMW2dGc5KurOQMMlmqaCb2dAoa8ez7ElrUMYGdvBBNVcKzoAJqAwgUgBf\\/8QAJxAAAgIBAwMDBQEAAAAAAAAAAQIAEQMEEBIUIVMTMUEjMjNCUlH\\/2gAIAQEAAT8AOpw+RZ1SfDrOoxVZdZ1GAn8izqMHkWY1xtyLwJpv6MKab+jMi4QBwPfZshU0IMjGHI6mouUlgKlD\\/ZkaspNTmbupyd2BqH77C0B229F8hJURdNkH6AzHiyJYOOOmQLbChe2JXILJ7T63wTBj1J7ho+DUlCW2x5eCst\\/MOch6uDUED3i6kkML9xsy289LvVielQrkIFph32TiCbW5yxeMQti8ccoR2UDb\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQAQEWESIQIxgf\\/aAAgBAgEBPwAcbCxsNpaYRHRRxtvXkqS3\\/8QAGREBAAIDAAAAAAAAAAAAAAAAEQABIDBB\\/9oACAEDAQE\\/AGOLCl7o\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"e2It1NqUgpXkpV\\/hzeR7qIWLyd0lcqGzPRh1YKOOvG4fFEFtTDCQAA==\",\"scanLengths\":[10192,46951,18536,24639],\"midQualityFileSha256\":\"urThHBSG7JsRkikrrEaoxAcT2WwwsFb53Q2MitKF9bU=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771024471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:14:31'),
(13231, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:14:32'),
(13232, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A56FBCB5964358FA9A7A46A6215FBBB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024471785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:14:32'),
(13233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:14:32'),
(13234, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A56FBCB5964358FA9A7A46A6215FBBB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024471785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:31.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:14:32'),
(13235, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A571AE65ED02C9420CFDA83BE56D7643\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633110850_917201067508594_7052769749769804308_n.enc?ccb=11-4&oh=01_Q5Aa3wGYz4kT7FnphjWD9H7JW7waPFyHQZDLwO7VXib8SeIy9A&oe=69B70712&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"qC0rl1FOGb\\/oMXyyCByGzIbDeX0goVXmzRS1mPjPo0Q=\",\"fileLength\":\"12124\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"SC+T1iUyOu2i4ywN9d4Oe3gUTI4ix4lEEoVgl1fqVjI=\",\"fileEncSha256\":\"zc1mGyM\\/ALHhoWjRt9+6tMo\\/81KUVPmnJ1lPLUJ2Mq4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633110850_917201067508594_7052769749769804308_n.enc?ccb=11-4&oh=01_Q5Aa3wGYz4kT7FnphjWD9H7JW7waPFyHQZDLwO7VXib8SeIy9A&oe=69B70712&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024475\",\"waveform\":\"AA4kYkknY19cSCZdOlBTXD4wVkocYFIdAAAAAAMHRVhVME9YVUxUNzxOUVBCVCxVQ0hPSjw9UkZEKE49Q0ocUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024480,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:14:40'),
(13236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A571AE65ED02C9420CFDA83BE56D7643\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633110850_917201067508594_7052769749769804308_n.enc?ccb=11-4&oh=01_Q5Aa3wGYz4kT7FnphjWD9H7JW7waPFyHQZDLwO7VXib8SeIy9A&oe=69B70712&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"qC0rl1FOGb\\/oMXyyCByGzIbDeX0goVXmzRS1mPjPo0Q=\",\"fileLength\":\"12124\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"SC+T1iUyOu2i4ywN9d4Oe3gUTI4ix4lEEoVgl1fqVjI=\",\"fileEncSha256\":\"zc1mGyM\\/ALHhoWjRt9+6tMo\\/81KUVPmnJ1lPLUJ2Mq4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633110850_917201067508594_7052769749769804308_n.enc?ccb=11-4&oh=01_Q5Aa3wGYz4kT7FnphjWD9H7JW7waPFyHQZDLwO7VXib8SeIy9A&oe=69B70712&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024475\",\"waveform\":\"AA4kYkknY19cSCZdOlBTXD4wVkocYFIdAAAAAAMHRVhVME9YVUxUNzxOUVBCVCxVQ0hPSjw9UkZEKE49Q0ocUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024480,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:14:40'),
(13237, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:14:40'),
(13238, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A571AE65ED02C9420CFDA83BE56D7643\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024480489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:14:40'),
(13239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:14:40'),
(13240, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A571AE65ED02C9420CFDA83BE56D7643\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024480489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:14:41'),
(13241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:14:41'),
(13242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:40.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:14:41'),
(13243, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A571AE65ED02C9420CFDA83BE56D7643\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771024488836,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:48.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:14:49'),
(13244, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A571AE65ED02C9420CFDA83BE56D7643\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771024488836,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:14:48.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:14:49'),
(13245, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC558B79C09991BE6A0D565EB3FE8220\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635032321_25825563880444941_6416821113284979350_n.enc?ccb=11-4&oh=01_Q5Aa3wEwNZvcnIY9VexgydHcbl6gma6quWalOgpy1ulKQIh9Rg&oe=69B73873&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"RctQWGsFCMrDI42R7RoMrbf8KuovR17847z3pMGqwWc=\",\"fileLength\":\"67293\",\"height\":1600,\"width\":900,\"mediaKey\":\"IfVBsl9yBwCP09XY9PAF+OdFj0iXqwbDtKgaRO3a9mA=\",\"fileEncSha256\":\"v114A+T6X7nJL5K119W4AvuwLeen8fSDVUxFtjKoY8k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635032321_25825563880444941_6416821113284979350_n.enc?ccb=11-4&oh=01_Q5Aa3wEwNZvcnIY9VexgydHcbl6gma6quWalOgpy1ulKQIh9Rg&oe=69B73873&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024537\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAEAAwEBAQAAAAAAAAAAAAAAAgMFBAEGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAM33nqrscHiaDPSrGxqMf7X5uMhIt\\/ZmRjT4KxaiKwEhFMf\\/xAAmEAACAgIBAgUFAAAAAAAAAAABAgADBBESE1EFECEiMSAwQWGB\\/9oACAEBAAE\\/ABNgQEQmbERqwNs53H7h\\/wCQcv3NnvOR7wRK2f4EqxCmNtk9xllbqTseV1ZqtZCNaMwcXJ6XVQqBLvbQpZwG\\/MyjUVchtsZqZNvWtNneJ4hxoFUvz2v+RDYTAnL13DrQ9foD\\/Y4zjOM\\/\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARARAiAi\\/9oACAECAQE\\/AKkbCceSjb\\/\\/xAAZEQADAAMAAAAAAAAAAAAAAAABECEAIDH\\/2gAIAQMBAT8AZjNOCc1\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"j6gtE6YOMDlkAaRlzdmmQRzatxi96NvzXnwzvfQTQl38SGipUORqeg==\",\"scanLengths\":[9677,27926,9522,20168],\"midQualityFileSha256\":\"9xKKsDRFTM0xosJmhQevOWeVhdtD6oa1hf\\/K9mt5PW4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P\\/hGJOwZIrDCx8g+5OfQkmiWlYzLBq8luYCMpRQphNs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:37.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:15:37'),
(13246, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:37.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:37'),
(13247, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:37.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:38'),
(13248, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC558B79C09991BE6A0D565EB3FE8220\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635032321_25825563880444941_6416821113284979350_n.enc?ccb=11-4&oh=01_Q5Aa3wEwNZvcnIY9VexgydHcbl6gma6quWalOgpy1ulKQIh9Rg&oe=69B73873&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"RctQWGsFCMrDI42R7RoMrbf8KuovR17847z3pMGqwWc=\",\"fileLength\":\"67293\",\"height\":1600,\"width\":900,\"mediaKey\":\"IfVBsl9yBwCP09XY9PAF+OdFj0iXqwbDtKgaRO3a9mA=\",\"fileEncSha256\":\"v114A+T6X7nJL5K119W4AvuwLeen8fSDVUxFtjKoY8k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635032321_25825563880444941_6416821113284979350_n.enc?ccb=11-4&oh=01_Q5Aa3wEwNZvcnIY9VexgydHcbl6gma6quWalOgpy1ulKQIh9Rg&oe=69B73873&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024537\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAEAAwEBAQAAAAAAAAAAAAAAAgMFBAEGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAM33nqrscHiaDPSrGxqMf7X5uMhIt\\/ZmRjT4KxaiKwEhFMf\\/xAAmEAACAgIBAgUFAAAAAAAAAAABAgADBBESE1EFECEiMSAwQWGB\\/9oACAEBAAE\\/ABNgQEQmbERqwNs53H7h\\/wCQcv3NnvOR7wRK2f4EqxCmNtk9xllbqTseV1ZqtZCNaMwcXJ6XVQqBLvbQpZwG\\/MyjUVchtsZqZNvWtNneJ4hxoFUvz2v+RDYTAnL13DrQ9foD\\/Y4zjOM\\/\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARARAiAi\\/9oACAECAQE\\/AKkbCceSjb\\/\\/xAAZEQADAAMAAAAAAAAAAAAAAAABECEAIDH\\/2gAIAQMBAT8AZjNOCc1\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"j6gtE6YOMDlkAaRlzdmmQRzatxi96NvzXnwzvfQTQl38SGipUORqeg==\",\"scanLengths\":[9677,27926,9522,20168],\"midQualityFileSha256\":\"9xKKsDRFTM0xosJmhQevOWeVhdtD6oa1hf\\/K9mt5PW4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P\\/hGJOwZIrDCx8g+5OfQkmiWlYzLBq8luYCMpRQphNs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:37.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:15:38'),
(13249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:38.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:38'),
(13250, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:38.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:38'),
(13251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:38.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:38'),
(13252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:38.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:39'),
(13253, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:41.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:41'),
(13254, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:41.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:41'),
(13255, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:47.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:48'),
(13256, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:47.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:48'),
(13257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:48'),
(13258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2D30309426256AFFBBB44A102594C8\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636637323_884481634370980_4916931013673282280_n.enc?ccb=11-4&oh=01_Q5Aa3wFUdVV_q3Mx_qwuJ4l1pUM1VsRmG7Kx1wT0iCKh0tA9qA&oe=69B73140&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vM2feYPwXWbBxxnsLC\\/ol4++l0S4Ab5MqkSVTdPZKHQ=\",\"fileLength\":\"13216\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"o\\/2HYPzmcDYvGOAtc15\\/49RqB2PlolOuK4vDT9OZezU=\",\"fileEncSha256\":\"LkOtUi2ywOa2tcw7wV3m81HcK99QmSpfMXfrwY3YtW4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636637323_884481634370980_4916931013673282280_n.enc?ccb=11-4&oh=01_Q5Aa3wFUdVV_q3Mx_qwuJ4l1pUM1VsRmG7Kx1wT0iCKh0tA9qA&oe=69B73140&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024543\",\"waveform\":\"AAACXlAzV1xUPUAlVSdMSjgvIAMAAAAAAAARQmNaNlQ5N1RSVlNBDjApLipAIjoyJghRTjcPAhpLOFJPSz4dAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9I+m48L\\/sH5KHYg6JfVYAh3b8Ff5BzEc1r9IUG\\/OPkg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024548,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:15:48'),
(13259, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:48'),
(13260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2D30309426256AFFBBB44A102594C8\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636637323_884481634370980_4916931013673282280_n.enc?ccb=11-4&oh=01_Q5Aa3wFUdVV_q3Mx_qwuJ4l1pUM1VsRmG7Kx1wT0iCKh0tA9qA&oe=69B73140&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vM2feYPwXWbBxxnsLC\\/ol4++l0S4Ab5MqkSVTdPZKHQ=\",\"fileLength\":\"13216\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"o\\/2HYPzmcDYvGOAtc15\\/49RqB2PlolOuK4vDT9OZezU=\",\"fileEncSha256\":\"LkOtUi2ywOa2tcw7wV3m81HcK99QmSpfMXfrwY3YtW4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636637323_884481634370980_4916931013673282280_n.enc?ccb=11-4&oh=01_Q5Aa3wFUdVV_q3Mx_qwuJ4l1pUM1VsRmG7Kx1wT0iCKh0tA9qA&oe=69B73140&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024543\",\"waveform\":\"AAACXlAzV1xUPUAlVSdMSjgvIAMAAAAAAAARQmNaNlQ5N1RSVlNBDjApLipAIjoyJghRTjcPAhpLOFJPSz4dAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9I+m48L\\/sH5KHYg6JfVYAh3b8Ff5BzEc1r9IUG\\/OPkg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024548,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:15:48'),
(13261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:49'),
(13262, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:15:49'),
(13263, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:49'),
(13264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:15:48.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:15:49'),
(13265, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5E37821A0D84877A15E47EFF5A62DA7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636746956_830659166659565_8584407094074956630_n.enc?ccb=11-4&oh=01_Q5Aa3wGk0hp9HIiUlAehqIodYoSZykEd8Tf2tRGt94eqkKP_BA&oe=69B70CA0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PSgRAy5L0pHo2QOroXPMgtiE7nhpD2rqIBfqt5piB6E=\",\"fileLength\":\"8209\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"4IzbpgWXPQCLyQ3K30TN5dG1QD1rIdTbwFDRsApHrLM=\",\"fileEncSha256\":\"fOUU+5a76uXaFs5TE3gRUVGEE79nsMpGjaFghcRqUJk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636746956_830659166659565_8584407094074956630_n.enc?ccb=11-4&oh=01_Q5Aa3wGk0hp9HIiUlAehqIodYoSZykEd8Tf2tRGt94eqkKP_BA&oe=69B70CA0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024717\",\"waveform\":\"AAQAEmBjWlNHNzErTUdbYWNiVWNeVmNfXmNONzlOVEJcVCxRUElOXFVTVUFPV1BNTxc2OCNbV1JFS1taXVo2KQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:39.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:18:39'),
(13266, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:39.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:18:39'),
(13267, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E37821A0D84877A15E47EFF5A62DA7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024719917,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:39.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:18:40'),
(13268, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5E37821A0D84877A15E47EFF5A62DA7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636746956_830659166659565_8584407094074956630_n.enc?ccb=11-4&oh=01_Q5Aa3wGk0hp9HIiUlAehqIodYoSZykEd8Tf2tRGt94eqkKP_BA&oe=69B70CA0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PSgRAy5L0pHo2QOroXPMgtiE7nhpD2rqIBfqt5piB6E=\",\"fileLength\":\"8209\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"4IzbpgWXPQCLyQ3K30TN5dG1QD1rIdTbwFDRsApHrLM=\",\"fileEncSha256\":\"fOUU+5a76uXaFs5TE3gRUVGEE79nsMpGjaFghcRqUJk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636746956_830659166659565_8584407094074956630_n.enc?ccb=11-4&oh=01_Q5Aa3wGk0hp9HIiUlAehqIodYoSZykEd8Tf2tRGt94eqkKP_BA&oe=69B70CA0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024717\",\"waveform\":\"AAQAEmBjWlNHNzErTUdbYWNiVWNeVmNfXmNONzlOVEJcVCxRUElOXFVTVUFPV1BNTxc2OCNbV1JFS1taXVo2KQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771024719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:39.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:18:40'),
(13269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:39.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:18:40'),
(13270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E37821A0D84877A15E47EFF5A62DA7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771024719917,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:39.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:18:40'),
(13271, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:40.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:18:40'),
(13272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:40.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:18:40'),
(13273, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E37821A0D84877A15E47EFF5A62DA7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771024734673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:54.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:18:54'),
(13274, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5E37821A0D84877A15E47EFF5A62DA7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771024734673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:18:54.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:18:55'),
(13275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC8E091158D79695210092CB6D5576B3\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636726475_1863440330962335_6161799081265381748_n.enc?ccb=11-4&oh=01_Q5Aa3wERS2lxG_OeMTo7vh1vPlFzzUt08oJjqJ-LbsBthMqspQ&oe=69B73855&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"PAo\\/4iwzgiqiUNBaqTKCuxBbVo01icXnjX8SsPN2ot8=\",\"fileLength\":\"121519\",\"height\":1600,\"width\":900,\"mediaKey\":\"tWaKHdXDkrPlJCkGf4ceYk3TWI26HMTvtWOUTobypnM=\",\"fileEncSha256\":\"xnoEtNP1EWVUNJtZfRB3Nup2GtMw8gKi2X3yrId7psQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636726475_1863440330962335_6161799081265381748_n.enc?ccb=11-4&oh=01_Q5Aa3wERS2lxG_OeMTo7vh1vPlFzzUt08oJjqJ-LbsBthMqspQ&oe=69B73855&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024744\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAMTtkNU4EICQNjyrm8zXqaXNNY5OPanJr2E9MnDMBz50iXFfamMBf\\/\\/EACMQAAICAgICAQUAAAAAAAAAAAECABEDEgQhEBMiMUFEUWH\\/2gAIAQEAAT8A1MWBVIJuN0JZnG7LD+T2MLAE3NQsTKnHoZlmPge4u24UAxeFiX8hZn4uLGBq+zExrDGYwTmUhQKM5oKZjMVMwuMuNX+JsATFjQoCVEbJRGpmfkHLp39FiEFqJipak7fejE6UDwAYvRExvgCsLoEQckjq4auBlmw\\/U3lsfA8p0on\\/xAAZEQADAAMAAAAAAAAAAAAAAAAAAREQICH\\/2gAIAQIBAT8AzCcKVlev\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAREgMFH\\/2gAIAQMBAT8AgjtH\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"z2bbSuzS01VO6QduXpCbBwWSg9jt2+YdV8CyXTu3CsQvBRszZrMofw==\",\"scanLengths\":[11807,29973,22055,57684],\"midQualityFileSha256\":\"IZ08bORFMQHjBc4wPbtrw8HkH1Bi2iqlMpJ+TYzsxBo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xz4nk4+C6Vn3CVvSRr+\\/ztW8EIw8ORvaKkftqQDMz7U=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024745,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:05.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:19:06'),
(13276, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:05.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:19:06'),
(13277, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:05.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:19:06'),
(13278, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC8E091158D79695210092CB6D5576B3\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636726475_1863440330962335_6161799081265381748_n.enc?ccb=11-4&oh=01_Q5Aa3wERS2lxG_OeMTo7vh1vPlFzzUt08oJjqJ-LbsBthMqspQ&oe=69B73855&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"PAo\\/4iwzgiqiUNBaqTKCuxBbVo01icXnjX8SsPN2ot8=\",\"fileLength\":\"121519\",\"height\":1600,\"width\":900,\"mediaKey\":\"tWaKHdXDkrPlJCkGf4ceYk3TWI26HMTvtWOUTobypnM=\",\"fileEncSha256\":\"xnoEtNP1EWVUNJtZfRB3Nup2GtMw8gKi2X3yrId7psQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636726475_1863440330962335_6161799081265381748_n.enc?ccb=11-4&oh=01_Q5Aa3wERS2lxG_OeMTo7vh1vPlFzzUt08oJjqJ-LbsBthMqspQ&oe=69B73855&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024744\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAMTtkNU4EICQNjyrm8zXqaXNNY5OPanJr2E9MnDMBz50iXFfamMBf\\/\\/EACMQAAICAgICAQUAAAAAAAAAAAECABEDEgQhEBMiMUFEUWH\\/2gAIAQEAAT8A1MWBVIJuN0JZnG7LD+T2MLAE3NQsTKnHoZlmPge4u24UAxeFiX8hZn4uLGBq+zExrDGYwTmUhQKM5oKZjMVMwuMuNX+JsATFjQoCVEbJRGpmfkHLp39FiEFqJipak7fejE6UDwAYvRExvgCsLoEQckjq4auBlmw\\/U3lsfA8p0on\\/xAAZEQADAAMAAAAAAAAAAAAAAAAAAREQICH\\/2gAIAQIBAT8AzCcKVlev\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAREgMFH\\/2gAIAQMBAT8AgjtH\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"z2bbSuzS01VO6QduXpCbBwWSg9jt2+YdV8CyXTu3CsQvBRszZrMofw==\",\"scanLengths\":[11807,29973,22055,57684],\"midQualityFileSha256\":\"IZ08bORFMQHjBc4wPbtrw8HkH1Bi2iqlMpJ+TYzsxBo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xz4nk4+C6Vn3CVvSRr+\\/ztW8EIw8ORvaKkftqQDMz7U=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024745,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:05.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:19:06'),
(13279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:05.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:19:06'),
(13280, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:05.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:19:07'),
(13281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:06.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:19:07'),
(13282, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:19:06.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:19:07'),
(13283, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:20:03'),
(13284, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDDAC83E1E8C316B8CA59BFBB5B72FC\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636405096_3952516688379242_5495022298760696189_n.enc?ccb=11-4&oh=01_Q5Aa3wGLfq30s7Xi1PsI_aitKn_USAvJiV-uj44cgqukr9p90A&oe=69B71EA4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"x8P8u6YWBn7JBNtUFCiqgbnixsYNKdQcQHxp305fu1U=\",\"fileLength\":\"88914\",\"height\":1600,\"width\":900,\"mediaKey\":\"Xk9YrT3xnYs4Vz0Ckn75SiQkmaohtUv5cMdRPHSaMSM=\",\"fileEncSha256\":\"03GI8vbVw5s1m70d8wDnK+3VOF+\\/kwhuB9dMoGXdWQM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636405096_3952516688379242_5495022298760696189_n.enc?ccb=11-4&oh=01_Q5Aa3wGLfq30s7Xi1PsI_aitKn_USAvJiV-uj44cgqukr9p90A&oe=69B71EA4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024801\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAAAwIEBQEGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAKrKlWtXmURpGWGjZqegrAp+kysswebi+CcacuJYwkCSIS7EJEQ\\/\\/8QAJRAAAQQBAgUFAAAAAAAAAAAAAQACAxEEEyESIDFBUhQjMkNh\\/9oACAEBAAE\\/AG5EQXqIvJCaIj5ha8XkjLD5ozQj6inOjd0aQth2Wy2UEUUsduJtMwGOGwKlxdNOZS05OzSsQhj6e\\/gpQZOMAfeBKlfiSAlzipXYVHhLrQmmA2KnfcrnDuU0gCyVqEdCiVupSTV1yNc2t1YVoFcX4r5v\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAREAAhASIDFh\\/9oACAECAQE\\/AFncNKGyPRir7By\\/\\/8QAGhEAAgIDAAAAAAAAAAAAAAAAARAAESAhMf\\/aAAgBAwEBPwB0tw9OX\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"RNo4aWkSmuW0zvWYfr4JBIxrWLK3\\/0FvvCTSoG3SzOZ3q7ATsycFZQ==\",\"scanLengths\":[10427,30173,13442,34872],\"midQualityFileSha256\":\"oUgzUwIPP1iH\\/uR7mVtFDEswoi\\/YXbW2oxEYV4IZcQE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3XIwmrKem1cGDkA15tG2xbDGaArikVrxe98sDjgYO3s=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024802,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:20:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13285, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:20:03'),
(13286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDDAC83E1E8C316B8CA59BFBB5B72FC\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636405096_3952516688379242_5495022298760696189_n.enc?ccb=11-4&oh=01_Q5Aa3wGLfq30s7Xi1PsI_aitKn_USAvJiV-uj44cgqukr9p90A&oe=69B71EA4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"x8P8u6YWBn7JBNtUFCiqgbnixsYNKdQcQHxp305fu1U=\",\"fileLength\":\"88914\",\"height\":1600,\"width\":900,\"mediaKey\":\"Xk9YrT3xnYs4Vz0Ckn75SiQkmaohtUv5cMdRPHSaMSM=\",\"fileEncSha256\":\"03GI8vbVw5s1m70d8wDnK+3VOF+\\/kwhuB9dMoGXdWQM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636405096_3952516688379242_5495022298760696189_n.enc?ccb=11-4&oh=01_Q5Aa3wGLfq30s7Xi1PsI_aitKn_USAvJiV-uj44cgqukr9p90A&oe=69B71EA4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024801\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAAAwIEBQEGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAKrKlWtXmURpGWGjZqegrAp+kysswebi+CcacuJYwkCSIS7EJEQ\\/\\/8QAJRAAAQQBAgUFAAAAAAAAAAAAAQACAxEEEyESIDFBUhQjMkNh\\/9oACAEBAAE\\/AG5EQXqIvJCaIj5ha8XkjLD5ozQj6inOjd0aQth2Wy2UEUUsduJtMwGOGwKlxdNOZS05OzSsQhj6e\\/gpQZOMAfeBKlfiSAlzipXYVHhLrQmmA2KnfcrnDuU0gCyVqEdCiVupSTV1yNc2t1YVoFcX4r5v\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAREAAhASIDFh\\/9oACAECAQE\\/AFncNKGyPRir7By\\/\\/8QAGhEAAgIDAAAAAAAAAAAAAAAAARAAESAhMf\\/aAAgBAwEBPwB0tw9OX\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"RNo4aWkSmuW0zvWYfr4JBIxrWLK3\\/0FvvCTSoG3SzOZ3q7ATsycFZQ==\",\"scanLengths\":[10427,30173,13442,34872],\"midQualityFileSha256\":\"oUgzUwIPP1iH\\/uR7mVtFDEswoi\\/YXbW2oxEYV4IZcQE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3XIwmrKem1cGDkA15tG2xbDGaArikVrxe98sDjgYO3s=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024802,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:20:03'),
(13287, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:20:03'),
(13288, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:20:03'),
(13289, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:20:03'),
(13290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:20:03.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:20:03'),
(13291, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:22:44'),
(13292, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6F0DB723256E95B27F078D45BB267D\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636727827_923053150410939_7962640850369338439_n.enc?ccb=11-4&oh=01_Q5Aa3wHKB7iqCA-qD88p2cMuyLLrJOGKVdnmWuUfCPWFhsTXJg&oe=69B70F9F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"dP2OF6nSB5IPjEcL4xE\\/UqaGn+SZmzvB\\/ZDCRajQTIs=\",\"fileLength\":\"69769\",\"height\":1600,\"width\":900,\"mediaKey\":\"vdVEkQoD8pnF9ySJucE+j151nM3R+CY3nPEWeKDjMHA=\",\"fileEncSha256\":\"M0YpRcrE1jL4JzhXt42nAbDpWbZ9oDVAAZWBYxKP\\/\\/I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636727827_923053150410939_7962640850369338439_n.enc?ccb=11-4&oh=01_Q5Aa3wHKB7iqCA-qD88p2cMuyLLrJOGKVdnmWuUfCPWFhsTXJg&oe=69B70F9F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024963\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAEAAgMBAQAAAAAAAAAAAAAAAQQCAwUGBwEBAQEAAAAAAAAAAAAAAAAAAAEC\\/9oADAMBAAIQAxAAAADlqeVWlFF1SG6fU9XU+fa\\/b8aXz7MWdnPkvVdQyYghEoEoH\\/\\/EACgQAAEEAAQDCQAAAAAAAAAAAAEAAgMRBBJBURAyUhMUICEwMUJDU\\/\\/aAAgBAQABPwAEKwrVrz3CF7pwOhVuGqzHdZnbrsJOhyED+gp0bx8Ssrtjwh5zqCU1keXlBWIhbo0KWMC6CdRcUzHYhlAPXf8AEn7Sn4yf9SjNKfd5VjhfoX4v\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAEBEg\\/9oACAECAQE\\/AGk3\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwBP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"eP9Kl3GsvtPLskG07oic27SfSEUbnqkGOEg9Q0vHQfRvFLpa2JhTjg==\",\"scanLengths\":[8232,23082,12343,26112],\"midQualityFileSha256\":\"LdaggEkExe\\/mpDWH1rFjCDiOIpqVCBNXGmLaOJbzhxY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Quzp1nJeaQ\\/hWPH\\/xbqklb81c3W+8oVCX+Sd2N6iQTA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:22:44'),
(13293, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:22:44'),
(13294, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:22:44'),
(13295, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:22:44'),
(13296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:22:44'),
(13297, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:22:44'),
(13298, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6F0DB723256E95B27F078D45BB267D\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636727827_923053150410939_7962640850369338439_n.enc?ccb=11-4&oh=01_Q5Aa3wHKB7iqCA-qD88p2cMuyLLrJOGKVdnmWuUfCPWFhsTXJg&oe=69B70F9F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"dP2OF6nSB5IPjEcL4xE\\/UqaGn+SZmzvB\\/ZDCRajQTIs=\",\"fileLength\":\"69769\",\"height\":1600,\"width\":900,\"mediaKey\":\"vdVEkQoD8pnF9ySJucE+j151nM3R+CY3nPEWeKDjMHA=\",\"fileEncSha256\":\"M0YpRcrE1jL4JzhXt42nAbDpWbZ9oDVAAZWBYxKP\\/\\/I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636727827_923053150410939_7962640850369338439_n.enc?ccb=11-4&oh=01_Q5Aa3wHKB7iqCA-qD88p2cMuyLLrJOGKVdnmWuUfCPWFhsTXJg&oe=69B70F9F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771024963\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAEAAgMBAQAAAAAAAAAAAAAAAQQCAwUGBwEBAQEAAAAAAAAAAAAAAAAAAAEC\\/9oADAMBAAIQAxAAAADlqeVWlFF1SG6fU9XU+fa\\/b8aXz7MWdnPkvVdQyYghEoEoH\\/\\/EACgQAAEEAAQDCQAAAAAAAAAAAAEAAgMRBBJBURAyUhMUICEwMUJDU\\/\\/aAAgBAQABPwAEKwrVrz3CF7pwOhVuGqzHdZnbrsJOhyED+gp0bx8Ssrtjwh5zqCU1keXlBWIhbo0KWMC6CdRcUzHYhlAPXf8AEn7Sn4yf9SjNKfd5VjhfoX4v\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAEBEg\\/9oACAECAQE\\/AGk3\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwBP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"eP9Kl3GsvtPLskG07oic27SfSEUbnqkGOEg9Q0vHQfRvFLpa2JhTjg==\",\"scanLengths\":[8232,23082,12343,26112],\"midQualityFileSha256\":\"LdaggEkExe\\/mpDWH1rFjCDiOIpqVCBNXGmLaOJbzhxY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Quzp1nJeaQ\\/hWPH\\/xbqklb81c3W+8oVCX+Sd2N6iQTA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771024963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:22:44.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:22:44'),
(13299, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5722827A9368E442B485C94B4A0DB27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/41272135_26211789535154327_6249761944250889727_n.enc?ccb=11-4&oh=01_Q5Aa3wGUx2Z_HjLlFE8P-CJiMm98INI9IdI7F6Hese6jW9Bb8Q&oe=69B70D07&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gx3NpEYNFJdkH3nbfbqDy+NSpiWBvw+hUE+qgbqVaPE=\",\"fileLength\":\"4031\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"zR0nR6cuS1uZoTJtzNWRZXUocOHYZs6xj\\/XZMGPmZCs=\",\"fileEncSha256\":\"2lEY9W63nPzC3XpPlwSf4FVwY4FXqxA4qDPptnDSdic=\",\"directPath\":\"\\/v\\/t62.7117-24\\/41272135_26211789535154327_6249761944250889727_n.enc?ccb=11-4&oh=01_Q5Aa3wGUx2Z_HjLlFE8P-CJiMm98INI9IdI7F6Hese6jW9Bb8Q&oe=69B70D07&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771025033\",\"waveform\":\"AAYLCQYECjVWWVtbVEA4PzYdGCM6WGJhXllTTTwpOEtJR1RhYmJfXFtaXV9cWVVUWFlYUUZGTVJVV1lTS0hHRw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771025033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:53.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:23:54'),
(13300, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:53.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:23:54'),
(13301, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:54.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:23:54'),
(13302, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:53.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:23:54'),
(13303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5722827A9368E442B485C94B4A0DB27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/41272135_26211789535154327_6249761944250889727_n.enc?ccb=11-4&oh=01_Q5Aa3wGUx2Z_HjLlFE8P-CJiMm98INI9IdI7F6Hese6jW9Bb8Q&oe=69B70D07&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gx3NpEYNFJdkH3nbfbqDy+NSpiWBvw+hUE+qgbqVaPE=\",\"fileLength\":\"4031\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"zR0nR6cuS1uZoTJtzNWRZXUocOHYZs6xj\\/XZMGPmZCs=\",\"fileEncSha256\":\"2lEY9W63nPzC3XpPlwSf4FVwY4FXqxA4qDPptnDSdic=\",\"directPath\":\"\\/v\\/t62.7117-24\\/41272135_26211789535154327_6249761944250889727_n.enc?ccb=11-4&oh=01_Q5Aa3wGUx2Z_HjLlFE8P-CJiMm98INI9IdI7F6Hese6jW9Bb8Q&oe=69B70D07&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771025033\",\"waveform\":\"AAYLCQYECjVWWVtbVEA4PzYdGCM6WGJhXllTTTwpOEtJR1RhYmJfXFtaXV9cWVVUWFlYUUZGTVJVV1lTS0hHRw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771025033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:53.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:23:54'),
(13304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5722827A9368E442B485C94B4A0DB27\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771025034077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:54.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:23:55'),
(13305, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5722827A9368E442B485C94B4A0DB27\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771025034077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:54.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:23:55'),
(13306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5722827A9368E442B485C94B4A0DB27\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771025035821,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:55.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:23:55'),
(13307, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:54.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:23:55'),
(13308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5722827A9368E442B485C94B4A0DB27\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771025035821,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:23:55.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:23:56'),
(13309, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC35299167E6906202690C99CCB762A0\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636748556_886559934209089_3936616599907983450_n.enc?ccb=11-4&oh=01_Q5Aa3wHzc0Y9-J1Tp67gpiOKp4OMnB8smo0f0qjZ_7cDl_91oQ&oe=69B736CF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"OLIy3\\/Y5UqzhAbgVoVDFWoxkaNb19RZ8eeM\\/jKm\\/xAc=\",\"fileLength\":\"129694\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDdqFANOWmLZex\\/CPNgSEw8VtZdCo5Lff7LoXBt2ecE=\",\"fileEncSha256\":\"ybXV\\/Fx7TX3FHriTwAf4vE6Nw\\/5jzVQvU5UPrM2\\/q6I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636748556_886559934209089_3936616599907983450_n.enc?ccb=11-4&oh=01_Q5Aa3wHzc0Y9-J1Tp67gpiOKp4OMnB8smo0f0qjZ_7cDl_91oQ&oe=69B736CF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771025053\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAwAAACAwEAAAAAAAAAAAAAAAAABAECAwUBAQEAAwEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA1smZR2ECOgcglZF49HmnNg59iIGjZnNaS6GYdY5RED5ClnJFBwP\\/xAAiEAACAwACAQQDAAAAAAAAAAABAgADEQQSIRAUMUFRUmL\\/2gAIAQEAAT8Ag9N856Dlp+DDyj+hyPyjmBZXyHfxLOXarEbAlaop7adjAPZ0RSTORVbUfKYJXVadYDxGrdiTEs44pPz2lNzG3uAQc+pdebFJbZxuUEUh11THcFiRoGxE3dMFrqvQHxDY7fJiHzAlZAIdYLMGCdp2nYzsYUIOZAjH6gpaCg\\/Znt\\/6mCZAJkwT\\/8QAHBEAAgIDAQEAAAAAAAAAAAAAAAECERASMSFS\\/9oACAECAQE\\/ANJ\\/LHGS6ijdUqdE5J9PC83n\\/8QAGxEBAAICAwAAAAAAAAAAAAAAAQMRAAIQMEH\\/2gAIAQMBAT8AsPcs4kjXa8jE6P\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"vgSdLZryHkfSGj7HWYxui3WcZtwmi+ocSxsqBSDNF5lpa72Pj6ndMg==\",\"scanLengths\":[13166,43636,21919,50973],\"midQualityFileSha256\":\"YoDC1vJDlLU1NHPmlAGHARZ2qBRrWQCiBxgWZmkOBes=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UThUuWuZEFio1M3QWzikakfgN+HCRHswHnrCQMBo3Rg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771025054,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:24:14'),
(13310, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC35299167E6906202690C99CCB762A0\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636748556_886559934209089_3936616599907983450_n.enc?ccb=11-4&oh=01_Q5Aa3wHzc0Y9-J1Tp67gpiOKp4OMnB8smo0f0qjZ_7cDl_91oQ&oe=69B736CF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"OLIy3\\/Y5UqzhAbgVoVDFWoxkaNb19RZ8eeM\\/jKm\\/xAc=\",\"fileLength\":\"129694\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDdqFANOWmLZex\\/CPNgSEw8VtZdCo5Lff7LoXBt2ecE=\",\"fileEncSha256\":\"ybXV\\/Fx7TX3FHriTwAf4vE6Nw\\/5jzVQvU5UPrM2\\/q6I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636748556_886559934209089_3936616599907983450_n.enc?ccb=11-4&oh=01_Q5Aa3wHzc0Y9-J1Tp67gpiOKp4OMnB8smo0f0qjZ_7cDl_91oQ&oe=69B736CF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771025053\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAwAAACAwEAAAAAAAAAAAAAAAAABAECAwUBAQEAAwEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA1smZR2ECOgcglZF49HmnNg59iIGjZnNaS6GYdY5RED5ClnJFBwP\\/xAAiEAACAwACAQQDAAAAAAAAAAABAgADEQQSIRAUMUFRUmL\\/2gAIAQEAAT8Ag9N856Dlp+DDyj+hyPyjmBZXyHfxLOXarEbAlaop7adjAPZ0RSTORVbUfKYJXVadYDxGrdiTEs44pPz2lNzG3uAQc+pdebFJbZxuUEUh11THcFiRoGxE3dMFrqvQHxDY7fJiHzAlZAIdYLMGCdp2nYzsYUIOZAjH6gpaCg\\/Znt\\/6mCZAJkwT\\/8QAHBEAAgIDAQEAAAAAAAAAAAAAAAECERASMSFS\\/9oACAECAQE\\/ANJ\\/LHGS6ijdUqdE5J9PC83n\\/8QAGxEBAAICAwAAAAAAAAAAAAAAAQMRAAIQMEH\\/2gAIAQMBAT8AsPcs4kjXa8jE6P\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"vgSdLZryHkfSGj7HWYxui3WcZtwmi+ocSxsqBSDNF5lpa72Pj6ndMg==\",\"scanLengths\":[13166,43636,21919,50973],\"midQualityFileSha256\":\"YoDC1vJDlLU1NHPmlAGHARZ2qBRrWQCiBxgWZmkOBes=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UThUuWuZEFio1M3QWzikakfgN+HCRHswHnrCQMBo3Rg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771025054,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:24:14'),
(13311, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:24:14'),
(13312, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:24:14'),
(13313, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:24:15'),
(13314, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:24:15'),
(13315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:24:15'),
(13316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:24:14.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:24:15'),
(13317, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:09.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:27:09'),
(13318, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:09.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:27:09'),
(13319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCD57CEEBF97C385A390649B7D5C9F7\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"E agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QCTmPA7IMNZfLmyGkWJQkCJN1PpW6ulIjWt6zmXFhfQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771025235,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:27:16'),
(13320, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:27:16'),
(13321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:27:16'),
(13322, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:27:16'),
(13323, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:27:16'),
(13324, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:27:17'),
(13325, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCD57CEEBF97C385A390649B7D5C9F7\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"E agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QCTmPA7IMNZfLmyGkWJQkCJN1PpW6ulIjWt6zmXFhfQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771025235,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:27:17'),
(13326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:27:16.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:27:17'),
(13327, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:38:17'),
(13328, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F5DAD8B8D25C24B82737CF19AEFD1D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635727177_1637889647219413_7937525857595885813_n.enc?ccb=11-4&oh=01_Q5Aa3wFH4TezhCFjNdCfuy5B-fcPhoEEV7YgVLKkNlshtjW38Q&oe=69B70DBB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QuiU6G+SysgF1BfFlUBTNvyMuCpt4Li2B9wXY0b\\/T08=\",\"fileLength\":\"4684\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"TvcOVcdWGV\\/Myv+Vo90ZLwcOmXD31IZSmAOqqsAwI5s=\",\"fileEncSha256\":\"Vw+qHVHJRHHv+mJqjhZFnZOxTeFg5tN\\/K2K0d8ouDgg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635727177_1637889647219413_7937525857595885813_n.enc?ccb=11-4&oh=01_Q5Aa3wFH4TezhCFjNdCfuy5B-fcPhoEEV7YgVLKkNlshtjW38Q&oe=69B70DBB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771025896\",\"waveform\":\"AAQJDQ4OPWNjYV5bVURDUFRSNi9AT1pNTFpgYldOSEhKSUdEQ0M1LTY8QEhQUUg1OUBEPi49UU5JQTYqO0RBQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771025897,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:38:17'),
(13329, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:38:17'),
(13330, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:38:18'),
(13331, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F5DAD8B8D25C24B82737CF19AEFD1D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635727177_1637889647219413_7937525857595885813_n.enc?ccb=11-4&oh=01_Q5Aa3wFH4TezhCFjNdCfuy5B-fcPhoEEV7YgVLKkNlshtjW38Q&oe=69B70DBB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QuiU6G+SysgF1BfFlUBTNvyMuCpt4Li2B9wXY0b\\/T08=\",\"fileLength\":\"4684\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"TvcOVcdWGV\\/Myv+Vo90ZLwcOmXD31IZSmAOqqsAwI5s=\",\"fileEncSha256\":\"Vw+qHVHJRHHv+mJqjhZFnZOxTeFg5tN\\/K2K0d8ouDgg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635727177_1637889647219413_7937525857595885813_n.enc?ccb=11-4&oh=01_Q5Aa3wFH4TezhCFjNdCfuy5B-fcPhoEEV7YgVLKkNlshtjW38Q&oe=69B70DBB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771025896\",\"waveform\":\"AAQJDQ4OPWNjYV5bVURDUFRSNi9AT1pNTFpgYldOSEhKSUdEQ0M1LTY8QEhQUUg1OUBEPi49UU5JQTYqO0RBQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771025897,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:38:18'),
(13332, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F5DAD8B8D25C24B82737CF19AEFD1D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771025897834,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:38:18'),
(13333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F5DAD8B8D25C24B82737CF19AEFD1D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771025897834,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:38:18'),
(13334, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:17.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:38:18'),
(13335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F5DAD8B8D25C24B82737CF19AEFD1D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771025899955,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:19.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:38:20'),
(13336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F5DAD8B8D25C24B82737CF19AEFD1D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771025899955,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:38:19.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:38:20'),
(13337, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:49.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:46:50'),
(13338, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5867D33AF91C8A83EAC58A937F8D424\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026409,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:49.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:46:50'),
(13339, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:49.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:46:50'),
(13340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5867D33AF91C8A83EAC58A937F8D424\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026410130,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:50.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:46:50'),
(13341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5867D33AF91C8A83EAC58A937F8D424\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026409,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:49.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:46:50'),
(13342, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:50.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:46:50'),
(13343, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5867D33AF91C8A83EAC58A937F8D424\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026410130,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:50.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:46:50'),
(13344, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:50.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:46:50'),
(13345, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A515B35DBDA012280DCFB6D46B3F3F4B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ja coloquei a lista\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026416,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:46:56'),
(13346, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A515B35DBDA012280DCFB6D46B3F3F4B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ja coloquei a lista\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026416,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:46:56'),
(13347, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:46:56'),
(13348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:46:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13349, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:46:56'),
(13350, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:46:57'),
(13351, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A515B35DBDA012280DCFB6D46B3F3F4B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026416617,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:46:57'),
(13352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A515B35DBDA012280DCFB6D46B3F3F4B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026416617,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:46:56.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:46:57'),
(13353, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:11.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:11'),
(13354, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:11.502Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:11'),
(13355, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:17.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:17'),
(13356, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:17.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:17'),
(13357, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:17.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:17'),
(13358, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6BA5D043E3ECF911C13A8181AC48A8\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635071554_1588002525779365_5645167095532718564_n.enc?ccb=11-4&oh=01_Q5Aa3wHiE0J4G3yM23vBQOxUuk049JZiHdoMa-Mi95z3_yuUxA&oe=69B727ED&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"loc81Sv7EfB7vQ7hFDTGjpcp1rVjk0BN8twDm8kMpWA=\",\"fileLength\":\"13135\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"YtTHn5FET8aXqWPf86UwV0fYDHEfzbHgtLR4xyYK9XM=\",\"fileEncSha256\":\"op49QlkmTIqiaZgBrQRc7PZZUL4I8HiUlhY7iGcEF1w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635071554_1588002525779365_5645167095532718564_n.enc?ccb=11-4&oh=01_Q5Aa3wHiE0J4G3yM23vBQOxUuk049JZiHdoMa-Mi95z3_yuUxA&oe=69B727ED&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026433\",\"waveform\":\"AAAABwAnW1hRTks2K0dMLgRPUVI8SzVVVUM4OE9BRU88PCpGUjRDMUEzJT80CD5IGToxTE48SjocHR8AAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9rCXfi7KOgVKv4Ak735AtwpqdI23Lco4oOh98mU1HdQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:17.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:47:18'),
(13359, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:17.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:18'),
(13360, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:18.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:18'),
(13361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6BA5D043E3ECF911C13A8181AC48A8\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635071554_1588002525779365_5645167095532718564_n.enc?ccb=11-4&oh=01_Q5Aa3wHiE0J4G3yM23vBQOxUuk049JZiHdoMa-Mi95z3_yuUxA&oe=69B727ED&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"loc81Sv7EfB7vQ7hFDTGjpcp1rVjk0BN8twDm8kMpWA=\",\"fileLength\":\"13135\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"YtTHn5FET8aXqWPf86UwV0fYDHEfzbHgtLR4xyYK9XM=\",\"fileEncSha256\":\"op49QlkmTIqiaZgBrQRc7PZZUL4I8HiUlhY7iGcEF1w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635071554_1588002525779365_5645167095532718564_n.enc?ccb=11-4&oh=01_Q5Aa3wHiE0J4G3yM23vBQOxUuk049JZiHdoMa-Mi95z3_yuUxA&oe=69B727ED&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026433\",\"waveform\":\"AAAABwAnW1hRTks2K0dMLgRPUVI8SzVVVUM4OE9BRU88PCpGUjRDMUEzJT80CD5IGToxTE48SjocHR8AAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9rCXfi7KOgVKv4Ak735AtwpqdI23Lco4oOh98mU1HdQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:17.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:47:18'),
(13362, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:18.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:18'),
(13363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:18.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:18'),
(13364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:18.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:19'),
(13365, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:40.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:40'),
(13366, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:40.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:40'),
(13367, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:44.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:44'),
(13368, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:44.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:44'),
(13369, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:45'),
(13370, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC3886ACB47CB3B29B6B7D62695B09D2\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592957046_694839480290306_1873663621823685735_n.enc?ccb=11-4&oh=01_Q5Aa3wETFrNG2UXAwPb6EhMQ9B6V0PWRwgkWUZKszfdpW3qF0Q&oe=69B73FF3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"86szYXLp6kGgD6s5Dn1lXRI2IJ33z4goqPtRGDNLTDk=\",\"fileLength\":\"6425\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"8\\/NInLfh9flONgIDsUK77XVxfDRW+vyTJEVpF+uw+4s=\",\"fileEncSha256\":\"2SWqnz8NaYFYZKTkJftqOr\\/ACAk3hU6RaoKRH4ewp9w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592957046_694839480290306_1873663621823685735_n.enc?ccb=11-4&oh=01_Q5Aa3wETFrNG2UXAwPb6EhMQ9B6V0PWRwgkWUZKszfdpW3qF0Q&oe=69B73FF3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026462\",\"waveform\":\"AB84PTUaNk5VOwwMAiVDSyQFAAAfPTQoHSQwQUhOQjkpHBUCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Od8Ctg1mb9LQCHsfZg6xlkrzlz2yiPsOtaa1Xyu2Wq8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026465,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:47:45'),
(13371, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:45'),
(13372, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC3886ACB47CB3B29B6B7D62695B09D2\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592957046_694839480290306_1873663621823685735_n.enc?ccb=11-4&oh=01_Q5Aa3wETFrNG2UXAwPb6EhMQ9B6V0PWRwgkWUZKszfdpW3qF0Q&oe=69B73FF3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"86szYXLp6kGgD6s5Dn1lXRI2IJ33z4goqPtRGDNLTDk=\",\"fileLength\":\"6425\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"8\\/NInLfh9flONgIDsUK77XVxfDRW+vyTJEVpF+uw+4s=\",\"fileEncSha256\":\"2SWqnz8NaYFYZKTkJftqOr\\/ACAk3hU6RaoKRH4ewp9w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592957046_694839480290306_1873663621823685735_n.enc?ccb=11-4&oh=01_Q5Aa3wETFrNG2UXAwPb6EhMQ9B6V0PWRwgkWUZKszfdpW3qF0Q&oe=69B73FF3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026462\",\"waveform\":\"AB84PTUaNk5VOwwMAiVDSyQFAAAfPTQoHSQwQUhOQjkpHBUCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Od8Ctg1mb9LQCHsfZg6xlkrzlz2yiPsOtaa1Xyu2Wq8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026465,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:47:45'),
(13373, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:45'),
(13374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:46'),
(13375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:46'),
(13376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:45.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:46'),
(13377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5A86EE8F11D8C82F8E7452777E57643\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Aperta\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026475,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:55.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:47:56'),
(13378, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5A86EE8F11D8C82F8E7452777E57643\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Aperta\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026475,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:55.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:47:56'),
(13379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:55.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:56'),
(13380, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5A86EE8F11D8C82F8E7452777E57643\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026476257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:56.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:47:56'),
(13381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:55.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:56'),
(13382, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5A86EE8F11D8C82F8E7452777E57643\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026476257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:56.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:47:56'),
(13383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:56.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:47:56'),
(13384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:47:56.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:47:57'),
(13385, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:04'),
(13386, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:04'),
(13387, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B250655B042E682BBFD4063DFF938B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"No controle\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026484,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:04'),
(13388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:04'),
(13389, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B250655B042E682BBFD4063DFF938B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026484554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:04'),
(13390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B250655B042E682BBFD4063DFF938B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026484554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:05'),
(13391, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B250655B042E682BBFD4063DFF938B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"No controle\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026484,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:05'),
(13392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:04.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:05'),
(13393, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A543E717224E8B96C2CE7A2A62B4515D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Voltar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026486,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:06'),
(13394, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:06'),
(13395, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:06'),
(13396, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A543E717224E8B96C2CE7A2A62B4515D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Voltar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026486,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:06'),
(13397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543E717224E8B96C2CE7A2A62B4515D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026486494,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:06'),
(13398, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543E717224E8B96C2CE7A2A62B4515D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026486494,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:07'),
(13399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:07'),
(13400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:06.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:07'),
(13401, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:08'),
(13402, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FE632731BC5A8A1C9E69714A9638BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sair ok\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:08'),
(13403, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:08'),
(13404, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FE632731BC5A8A1C9E69714A9638BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sair ok\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:08'),
(13405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FE632731BC5A8A1C9E69714A9638BC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026488367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:08'),
(13406, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FE632731BC5A8A1C9E69714A9638BC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026488367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:09'),
(13407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:09'),
(13408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:08.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:09'),
(13409, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:12'),
(13410, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B54D6BCA9032466EB8EBBCE731BB95\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"E ai tu abre o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026492,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:12'),
(13411, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:12'),
(13412, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B54D6BCA9032466EB8EBBCE731BB95\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"E ai tu abre o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771026492,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:12'),
(13413, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B54D6BCA9032466EB8EBBCE731BB95\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026492537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:48:12'),
(13414, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:48:13'),
(13415, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B54D6BCA9032466EB8EBBCE731BB95\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026492537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:48:13'),
(13416, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:48:12.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:48:13'),
(13417, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCE61A6EFA5D6403A9ACB57DAC13263\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636722054_3199586763555783_9157422856602305061_n.enc?ccb=11-4&oh=01_Q5Aa3wENzrza65_uzu4oZcsuApX72m2vMc5XmO6IhQg7MJlp5g&oe=69B72838&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"xxHHJjjwNfvCtV13UbE5GOwIBYoZLCM\\/Nr9z1SNDz+8=\",\"fileLength\":\"103113\",\"height\":1600,\"width\":900,\"mediaKey\":\"l\\/xUsz0euAmI43Lcg3BeqJocN2aBvxnTl4rRNjBDty0=\",\"fileEncSha256\":\"e8cYcLzGQbingOxERZiWqJOQxF0I\\/mkb+SMRexPk55Y=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636722054_3199586763555783_9157422856602305061_n.enc?ccb=11-4&oh=01_Q5Aa3wENzrza65_uzu4oZcsuApX72m2vMc5XmO6IhQg7MJlp5g&oe=69B72838&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026683\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACVEVq64lKxATCZrPs+bGevPAwjevB0Q5tNrDGOIB1srSAaCjAf\\/8QAIRAAAgIBBAMBAQAAAAAAAAAAAQIAEQMEEBNREiExYRT\\/2gAIAQEAAT8AA\\/YBWxUS4DBmQ\\/DC6juHMnc5k7206eya+GHDzBitUINLkyFvyZE8XI8oW+zHrePC+PxmHXBEpgxM\\/syozMpML5XJah7nIKMLmzMeXjcNQMyapshFqIcpJuVDiacTTjfqcbdSpUqVte1y9v\\/EABwRAAMAAgMBAAAAAAAAAAAAAAABERJRAgMgcf\\/aAAgBAgEBPwBJsw5aZi9HTySpnKr8L17E4Uvj\\/8QAHREAAQMFAQAAAAAAAAAAAAAAAQACEQMQEiBRcf\\/aAAgBAwEBPwBSO2eJCbSxIIHqh2\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"JSoU1whH7eHWovQeWumIfCz6zs+a34jN2bTvWfJFcsU5N0XmZCs6Sw==\",\"scanLengths\":[12005,36962,16683,37463],\"midQualityFileSha256\":\"qvyUAlzveol4cH\\/8DFCzwY9GsbDgEFPjLV2b2X3S2yU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"O8ZyuG10LuccCE5EXX\\/08xEJrTRzrBJ3tLDyZEzOOhs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771026685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:25'),
(13418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:25'),
(13419, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:25'),
(13420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCE61A6EFA5D6403A9ACB57DAC13263\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636722054_3199586763555783_9157422856602305061_n.enc?ccb=11-4&oh=01_Q5Aa3wENzrza65_uzu4oZcsuApX72m2vMc5XmO6IhQg7MJlp5g&oe=69B72838&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"xxHHJjjwNfvCtV13UbE5GOwIBYoZLCM\\/Nr9z1SNDz+8=\",\"fileLength\":\"103113\",\"height\":1600,\"width\":900,\"mediaKey\":\"l\\/xUsz0euAmI43Lcg3BeqJocN2aBvxnTl4rRNjBDty0=\",\"fileEncSha256\":\"e8cYcLzGQbingOxERZiWqJOQxF0I\\/mkb+SMRexPk55Y=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636722054_3199586763555783_9157422856602305061_n.enc?ccb=11-4&oh=01_Q5Aa3wENzrza65_uzu4oZcsuApX72m2vMc5XmO6IhQg7MJlp5g&oe=69B72838&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026683\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACVEVq64lKxATCZrPs+bGevPAwjevB0Q5tNrDGOIB1srSAaCjAf\\/8QAIRAAAgIBBAMBAQAAAAAAAAAAAQIAEQMEEBNREiExYRT\\/2gAIAQEAAT8AA\\/YBWxUS4DBmQ\\/DC6juHMnc5k7206eya+GHDzBitUINLkyFvyZE8XI8oW+zHrePC+PxmHXBEpgxM\\/syozMpML5XJah7nIKMLmzMeXjcNQMyapshFqIcpJuVDiacTTjfqcbdSpUqVte1y9v\\/EABwRAAMAAgMBAAAAAAAAAAAAAAABERJRAgMgcf\\/aAAgBAgEBPwBJsw5aZi9HTySpnKr8L17E4Uvj\\/8QAHREAAQMFAQAAAAAAAAAAAAAAAQACEQMQEiBRcf\\/aAAgBAwEBPwBSO2eJCbSxIIHqh2\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"JSoU1whH7eHWovQeWumIfCz6zs+a34jN2bTvWfJFcsU5N0XmZCs6Sw==\",\"scanLengths\":[12005,36962,16683,37463],\"midQualityFileSha256\":\"qvyUAlzveol4cH\\/8DFCzwY9GsbDgEFPjLV2b2X3S2yU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"O8ZyuG10LuccCE5EXX\\/08xEJrTRzrBJ3tLDyZEzOOhs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771026685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:25'),
(13421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:25'),
(13422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:26'),
(13423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:25.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:26'),
(13425, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A543DD8447898A2A0DF672CD25F997C1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636748846_2196086831200328_5989279419806259884_n.enc?ccb=11-4&oh=01_Q5Aa3wHw8FyyQzj1HmtlzECf2SG802f_7QFvqlpasDo_rkhJ5Q&oe=69B72A44&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vy7wGeFspdtFqNeufLRrMDcLYgRh8l6wLbXRC7nTWPc=\",\"fileLength\":\"61044\",\"seconds\":26,\"ptt\":true,\"mediaKey\":\"jVJGNvaZQRTRNEAMc4Xu3xc56neavuzBZLs4YRa510Y=\",\"fileEncSha256\":\"lQpKugy1mooEPfy7X5BwEaDlnDB3jjN7GUPUZBQ8QDg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636748846_2196086831200328_5989279419806259884_n.enc?ccb=11-4&oh=01_Q5Aa3wHw8FyyQzj1HmtlzECf2SG802f_7QFvqlpasDo_rkhJ5Q&oe=69B72A44&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026667\",\"waveform\":\"AEhAX1wJXD5IXl5VVV1KMltDM1hIRzNRPFUANDNOQyEmWjlLVTwxUw5YS1weRk0AACtZYFIzVlg+QU5JUVI8Sg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026692,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:33'),
(13426, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:32.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:33'),
(13427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:33.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:33'),
(13428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A543DD8447898A2A0DF672CD25F997C1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636748846_2196086831200328_5989279419806259884_n.enc?ccb=11-4&oh=01_Q5Aa3wHw8FyyQzj1HmtlzECf2SG802f_7QFvqlpasDo_rkhJ5Q&oe=69B72A44&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vy7wGeFspdtFqNeufLRrMDcLYgRh8l6wLbXRC7nTWPc=\",\"fileLength\":\"61044\",\"seconds\":26,\"ptt\":true,\"mediaKey\":\"jVJGNvaZQRTRNEAMc4Xu3xc56neavuzBZLs4YRa510Y=\",\"fileEncSha256\":\"lQpKugy1mooEPfy7X5BwEaDlnDB3jjN7GUPUZBQ8QDg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636748846_2196086831200328_5989279419806259884_n.enc?ccb=11-4&oh=01_Q5Aa3wHw8FyyQzj1HmtlzECf2SG802f_7QFvqlpasDo_rkhJ5Q&oe=69B72A44&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026667\",\"waveform\":\"AEhAX1wJXD5IXl5VVV1KMltDM1hIRzNRPFUANDNOQyEmWjlLVTwxUw5YS1weRk0AACtZYFIzVlg+QU5JUVI8Sg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026692,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:33'),
(13429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:32.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:33'),
(13430, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:33.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:34'),
(13431, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543DD8447898A2A0DF672CD25F997C1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026693483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:33.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:34'),
(13432, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543DD8447898A2A0DF672CD25F997C1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026693483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:33.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:34'),
(13433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543DD8447898A2A0DF672CD25F997C1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771026695051,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:35.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:35'),
(13434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A543DD8447898A2A0DF672CD25F997C1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771026695051,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:35.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:35'),
(13435, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FB0FF6FA3F048EAF819C297F79B8C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"reactionMessage\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCE61A6EFA5D6403A9ACB57DAC13263\"},\"text\":\"🙏🏻\",\"senderTimestampMs\":\"1771026696424\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771026696,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:36.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:36'),
(13436, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FB0FF6FA3F048EAF819C297F79B8C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"reactionMessage\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACCE61A6EFA5D6403A9ACB57DAC13263\"},\"text\":\"🙏🏻\",\"senderTimestampMs\":\"1771026696424\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771026696,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:36.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:36'),
(13437, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:37.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:37'),
(13438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:37.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:37'),
(13439, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:43.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:44'),
(13440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A554F4E1C8198B74238E00F43DD0453B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636305210_1418530403392434_447955704136221659_n.enc?ccb=11-4&oh=01_Q5Aa3wF_k-G5A4BIdWEdXQl2dNKWEFbQYOi5hLH-eOgzYjpB9A&oe=69B72A5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sABYPfMlCSGDaeEePQBNTCTh\\/rC6qcVY4dSnfAyrxhU=\",\"fileLength\":\"13326\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"1mem0w1EO4sC0ueSUAsuSWn\\/7UBOq9BjRmFHmFPGg\\/c=\",\"fileEncSha256\":\"7sgdfQLd5PbQb8AI7sQNjYq51YCCkZxOcjBtKkuQhLI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636305210_1418530403392434_447955704136221659_n.enc?ccb=11-4&oh=01_Q5Aa3wF_k-G5A4BIdWEdXQl2dNKWEFbQYOi5hLH-eOgzYjpB9A&oe=69B72A5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026699\",\"waveform\":\"AAYKGiEuTjJSVzpYVF01TlpXPEpSR15HUhhQMD1GQGNhWT1UEFtcUVJPOUQeSwNHUlkxUFkpNFtYWFtKTx5KRQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026703,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:43.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:44'),
(13441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A554F4E1C8198B74238E00F43DD0453B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026704192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:44.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:51:44'),
(13442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:44.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:51:44'),
(13443, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:43.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:44'),
(13444, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A554F4E1C8198B74238E00F43DD0453B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636305210_1418530403392434_447955704136221659_n.enc?ccb=11-4&oh=01_Q5Aa3wF_k-G5A4BIdWEdXQl2dNKWEFbQYOi5hLH-eOgzYjpB9A&oe=69B72A5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sABYPfMlCSGDaeEePQBNTCTh\\/rC6qcVY4dSnfAyrxhU=\",\"fileLength\":\"13326\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"1mem0w1EO4sC0ueSUAsuSWn\\/7UBOq9BjRmFHmFPGg\\/c=\",\"fileEncSha256\":\"7sgdfQLd5PbQb8AI7sQNjYq51YCCkZxOcjBtKkuQhLI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636305210_1418530403392434_447955704136221659_n.enc?ccb=11-4&oh=01_Q5Aa3wF_k-G5A4BIdWEdXQl2dNKWEFbQYOi5hLH-eOgzYjpB9A&oe=69B72A5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026699\",\"waveform\":\"AAYKGiEuTjJSVzpYVF01TlpXPEpSR15HUhhQMD1GQGNhWT1UEFtcUVJPOUQeSwNHUlkxUFkpNFtYWFtKTx5KRQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026703,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:43.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:45'),
(13445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A554F4E1C8198B74238E00F43DD0453B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771026704192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:44.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:51:45'),
(13446, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:51:44.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:51:45'),
(13447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A554F4E1C8198B74238E00F43DD0453B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771026722428,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:52:02.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:52:02'),
(13448, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A554F4E1C8198B74238E00F43DD0453B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771026722428,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:52:02.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:52:02'),
(13449, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:52:59.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:52:59'),
(13450, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:52:59.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:52:59'),
(13451, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:07.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:53:07'),
(13452, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:07.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:53:08'),
(13453, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:08.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:53:08'),
(13454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:08.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:53:09'),
(13455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACAD7F4450ECCF11B610769AE9439A91\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636324000_2415420525570361_2290537364584264237_n.enc?ccb=11-4&oh=01_Q5Aa3wEK2Q5QogMDx07fTf1Hcae7MMUg0A8-R6mt2nC3ggbKlQ&oe=69B71F5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"toN2vlhfz89wbBPwAm5ymnp8GoXJXpHvwZ7UoxQUJes=\",\"fileLength\":\"19896\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"d5hIzRg31B7N3Tgy+aLzqvlD30SFs13SRQOpZs8xng4=\",\"fileEncSha256\":\"ocFY4zY2AgTyMhIog2lHhskqe49ox\\/5PX7fJAHoG+Ow=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636324000_2415420525570361_2290537364584264237_n.enc?ccb=11-4&oh=01_Q5Aa3wEK2Q5QogMDx07fTf1Hcae7MMUg0A8-R6mt2nC3ggbKlQ&oe=69B71F5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026781\",\"waveform\":\"AAAAIUU6V147WDAsTi5BOQAzVVFbMxwAAFFCRE0hQkw4Pj4wHEtZTRJYPCA+VyZCJkhdWUUySBITPUUtJVAVNQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rNSlp9uv3du3vbsrNHzO\\/2pu5m4ReMXKHu4PSYZSYlw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026788,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:08.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 20:53:09'),
(13456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:09.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:53:09'),
(13457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:08.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 20:53:09'),
(13458, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACAD7F4450ECCF11B610769AE9439A91\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636324000_2415420525570361_2290537364584264237_n.enc?ccb=11-4&oh=01_Q5Aa3wEK2Q5QogMDx07fTf1Hcae7MMUg0A8-R6mt2nC3ggbKlQ&oe=69B71F5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"toN2vlhfz89wbBPwAm5ymnp8GoXJXpHvwZ7UoxQUJes=\",\"fileLength\":\"19896\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"d5hIzRg31B7N3Tgy+aLzqvlD30SFs13SRQOpZs8xng4=\",\"fileEncSha256\":\"ocFY4zY2AgTyMhIog2lHhskqe49ox\\/5PX7fJAHoG+Ow=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636324000_2415420525570361_2290537364584264237_n.enc?ccb=11-4&oh=01_Q5Aa3wEK2Q5QogMDx07fTf1Hcae7MMUg0A8-R6mt2nC3ggbKlQ&oe=69B71F5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771026781\",\"waveform\":\"AAAAIUU6V147WDAsTi5BOQAzVVFbMxwAAFFCRE0hQkw4Pj4wHEtZTRJYPCA+VyZCJkhdWUUySBITPUUtJVAVNQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rNSlp9uv3du3vbsrNHzO\\/2pu5m4ReMXKHu4PSYZSYlw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771026788,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:08.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 20:53:09'),
(13459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:09.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:53:09'),
(13460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T20:53:08.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 20:53:10'),
(13461, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:28'),
(13462, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC9BD3699092B4AEADEBFE59D8E9CAE3\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636637478_4286212431693709_6879331075077528475_n.enc?ccb=11-4&oh=01_Q5Aa3wH37_mQr0ON3YcGXEPJugxlrwO2zHY7o_AwaUR6VQYpEA&oe=69B741C6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"TWnmoWN6A3UEvz8ZLANA9KAFPYGpLjp+R0+hmGiFI8A=\",\"fileLength\":\"129306\",\"height\":1600,\"width\":900,\"mediaKey\":\"4qVFAxpTjV3TJrWPLSf9LOglA9GTVqR66aQBXlWNvxw=\",\"fileEncSha256\":\"Ud7Y2SOZp5G8u2dV+atepRxImmuN0w9fVbyeiZgRJjE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636637478_4286212431693709_6879331075077528475_n.enc?ccb=11-4&oh=01_Q5Aa3wH37_mQr0ON3YcGXEPJugxlrwO2zHY7o_AwaUR6VQYpEA&oe=69B741C6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771027226\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMFAQQGAQEBAQEAAAAAAAAAAAAAAAAAAgED\\/9oADAMBAAIQAxAAAACrdocOggB4dKHr7T8\\/akJaQhyrGlFKayZtzWMwnWH6xRxsxg\\/\\/xAAiEAACAwABBAIDAAAAAAAAAAABAgADESEEEBITIlEUMTL\\/2gAIAQEAAT8A8x+sMAROfGBgTkOLzk3YIs3e2xRc1vL4NlnTMiFhaTxLbrVIxiJ0ttjvjPNnTNWDYXMqvR1dWwaJ1aVGxSNIAnTev3tgOZPIfUuuBdsJEWwkgFyBLfxFq+FrF5QyBviSTPass\\/s96GIYxrjphVTAiz1r9QIohRPqcQdue3\\/\\/xAAcEQACAgIDAAAAAAAAAAAAAAABEQAQAiESIFH\\/2gAIAQIBAT8AsLiNTIadOM+9f\\/\\/EABcRAQADAAAAAAAAAAAAAAAAAAEAEDD\\/2gAIAQMBAT8AtIYf\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"MoZm4N18PVRMI+UkQMFvSAAjdK9fSEH5d7afCROG3NMwy3UcCRl04g==\",\"scanLengths\":[12369,41201,23421,52315],\"midQualityFileSha256\":\"G9tViijUVxPmFTm+b7FikOCO2Bzu+\\/\\/nSBFckjNQB58=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HRUkfNGXnD0ZbOoKouVf2GjSxB30MmfWaLLviw5fYEA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771027228,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:00:28'),
(13463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:28'),
(13464, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:28'),
(13465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:29'),
(13466, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:29'),
(13467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:29'),
(13468, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC9BD3699092B4AEADEBFE59D8E9CAE3\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636637478_4286212431693709_6879331075077528475_n.enc?ccb=11-4&oh=01_Q5Aa3wH37_mQr0ON3YcGXEPJugxlrwO2zHY7o_AwaUR6VQYpEA&oe=69B741C6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"TWnmoWN6A3UEvz8ZLANA9KAFPYGpLjp+R0+hmGiFI8A=\",\"fileLength\":\"129306\",\"height\":1600,\"width\":900,\"mediaKey\":\"4qVFAxpTjV3TJrWPLSf9LOglA9GTVqR66aQBXlWNvxw=\",\"fileEncSha256\":\"Ud7Y2SOZp5G8u2dV+atepRxImmuN0w9fVbyeiZgRJjE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636637478_4286212431693709_6879331075077528475_n.enc?ccb=11-4&oh=01_Q5Aa3wH37_mQr0ON3YcGXEPJugxlrwO2zHY7o_AwaUR6VQYpEA&oe=69B741C6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771027226\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMFAQQGAQEBAQEAAAAAAAAAAAAAAAAAAgED\\/9oADAMBAAIQAxAAAACrdocOggB4dKHr7T8\\/akJaQhyrGlFKayZtzWMwnWH6xRxsxg\\/\\/xAAiEAACAwABBAIDAAAAAAAAAAABAgADESEEEBITIlEUMTL\\/2gAIAQEAAT8A8x+sMAROfGBgTkOLzk3YIs3e2xRc1vL4NlnTMiFhaTxLbrVIxiJ0ttjvjPNnTNWDYXMqvR1dWwaJ1aVGxSNIAnTev3tgOZPIfUuuBdsJEWwkgFyBLfxFq+FrF5QyBviSTPass\\/s96GIYxrjphVTAiz1r9QIohRPqcQdue3\\/\\/xAAcEQACAgIDAAAAAAAAAAAAAAABEQAQAiESIFH\\/2gAIAQIBAT8AsLiNTIadOM+9f\\/\\/EABcRAQADAAAAAAAAAAAAAAAAAAEAEDD\\/2gAIAQMBAT8AtIYf\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"MoZm4N18PVRMI+UkQMFvSAAjdK9fSEH5d7afCROG3NMwy3UcCRl04g==\",\"scanLengths\":[12369,41201,23421,52315],\"midQualityFileSha256\":\"G9tViijUVxPmFTm+b7FikOCO2Bzu+\\/\\/nSBFckjNQB58=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HRUkfNGXnD0ZbOoKouVf2GjSxB30MmfWaLLviw5fYEA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771027228,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:28.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:00:29'),
(13469, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:41.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:41'),
(13470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:41.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:41'),
(13471, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:51.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:51'),
(13472, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:51.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:51'),
(13473, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:52.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:52'),
(13474, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:52.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:52'),
(13475, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:53'),
(13476, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB3B728BA3657832BF23871D3C4EAE9\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/622843087_2049962262511752_5616002808668912303_n.enc?ccb=11-4&oh=01_Q5Aa3wGBKEzdn9uWztLKHGLGXnqWZZ2oY0aPUbCKtJFBuxUrUw&oe=69B739F4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vmXZrMc71DRLL2qxL3msdrT61VY7NQSXszhMlvyoUKA=\",\"fileLength\":\"21651\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"tyak8ms\\/mO95qtxAuhfv2l3O4I6re7yEHzUWCR4UWZE=\",\"fileEncSha256\":\"UgbE09WwOCK9T5QFwqa\\/CMvO6qbcytom7hB744M2AoA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/622843087_2049962262511752_5616002808668912303_n.enc?ccb=11-4&oh=01_Q5Aa3wGBKEzdn9uWztLKHGLGXnqWZZ2oY0aPUbCKtJFBuxUrUw&oe=69B739F4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771027243\",\"waveform\":\"AAEAAABNOhxVTREjAAAAXkRAWhxLIlBAVkNOQEAuQBBBQScAAAAAAAAAAAAAAAAAAAAAEUxBO1MGKCVCJTEvGA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AphUfVct7IzYhDHdZ7pxH4GPBAAhPpuIQy4Wk53gIqE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771027253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:00:53'),
(13477, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:53'),
(13478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:53'),
(13479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:00:53'),
(13480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:54'),
(13481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB3B728BA3657832BF23871D3C4EAE9\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/622843087_2049962262511752_5616002808668912303_n.enc?ccb=11-4&oh=01_Q5Aa3wGBKEzdn9uWztLKHGLGXnqWZZ2oY0aPUbCKtJFBuxUrUw&oe=69B739F4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vmXZrMc71DRLL2qxL3msdrT61VY7NQSXszhMlvyoUKA=\",\"fileLength\":\"21651\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"tyak8ms\\/mO95qtxAuhfv2l3O4I6re7yEHzUWCR4UWZE=\",\"fileEncSha256\":\"UgbE09WwOCK9T5QFwqa\\/CMvO6qbcytom7hB744M2AoA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/622843087_2049962262511752_5616002808668912303_n.enc?ccb=11-4&oh=01_Q5Aa3wGBKEzdn9uWztLKHGLGXnqWZZ2oY0aPUbCKtJFBuxUrUw&oe=69B739F4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771027243\",\"waveform\":\"AAEAAABNOhxVTREjAAAAXkRAWhxLIlBAVkNOQEAuQBBBQScAAAAAAAAAAAAAAAAAAAAAEUxBO1MGKCVCJTEvGA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AphUfVct7IzYhDHdZ7pxH4GPBAAhPpuIQy4Wk53gIqE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771027253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:00:54'),
(13482, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:00:53.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:00:54'),
(13483, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:18:06'),
(13484, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB149566E5849C80FB0A49FAF332BF2\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635094806_1559225801977553_3663108523738994453_n.enc?ccb=11-4&oh=01_Q5Aa3wH0ux_DE33efLneY0WLgyYb1jBQkSUMy9g2Bhgu5-MZCA&oe=69B71A27&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IzIEF\\/DhcUujVYVSnTlibNY3kcuHTLzAOqGMYQRTrwA=\",\"fileLength\":\"108541\",\"height\":1600,\"width\":900,\"mediaKey\":\"73cmTqpJV0Tx62D2JU3O+e+ccQTgQZIn9g3RwDR9TwU=\",\"fileEncSha256\":\"1GT9+zAT5nKg5639aQG+vl3FfHIwFIncD6D4CY\\/QgGI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635094806_1559225801977553_3663108523738994453_n.enc?ccb=11-4&oh=01_Q5Aa3wH0ux_DE33efLneY0WLgyYb1jBQkSUMy9g2Bhgu5-MZCA&oe=69B71A27&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771028285\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAIutvVpQsOFCKbcjNv0\\/OULGRQmU8npjntbAubDVraYs3ICoB\\/\\/EAB8QAAICAgIDAQAAAAAAAAAAAAECAAMREgQQITFRIv\\/aAAgBAQABPwCA9Z6JO\\/sgR9FRSGbJjvank+pTa7uQfXSYJZfAyJxKhapw2SrS3jU2WLs2BDUKrHUQy+3BAld7ofy5EtuTVdbmYyu0sTsxMdyGODLVJIImrfJgyliqGGzY5mJiaiajE0X50Aej1yEFb4EBmZnr\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwBP\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAREAAiAQIf\\/aAAgBAwEBPwBGLlbKpEJ8w8f\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"h1w8zUV1ETzGvCBKJFUmvmm1wbR99MzFLA+r2\\/4Vb2aflwASdX3SCA==\",\"scanLengths\":[12379,33478,20000,42684],\"midQualityFileSha256\":\"Qvdx+nFFk7Q45H1ZCA9Zpsu224G7oT9MwDwWurlG9jc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LyDXegHnaXzA2bs6o1a45jE8R6dzzue2AsU7fUy+gu8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771028285,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:18:06'),
(13485, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:18:06'),
(13486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:18:06');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:18:06'),
(13488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:18:06'),
(13489, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB149566E5849C80FB0A49FAF332BF2\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635094806_1559225801977553_3663108523738994453_n.enc?ccb=11-4&oh=01_Q5Aa3wH0ux_DE33efLneY0WLgyYb1jBQkSUMy9g2Bhgu5-MZCA&oe=69B71A27&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IzIEF\\/DhcUujVYVSnTlibNY3kcuHTLzAOqGMYQRTrwA=\",\"fileLength\":\"108541\",\"height\":1600,\"width\":900,\"mediaKey\":\"73cmTqpJV0Tx62D2JU3O+e+ccQTgQZIn9g3RwDR9TwU=\",\"fileEncSha256\":\"1GT9+zAT5nKg5639aQG+vl3FfHIwFIncD6D4CY\\/QgGI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635094806_1559225801977553_3663108523738994453_n.enc?ccb=11-4&oh=01_Q5Aa3wH0ux_DE33efLneY0WLgyYb1jBQkSUMy9g2Bhgu5-MZCA&oe=69B71A27&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771028285\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAIutvVpQsOFCKbcjNv0\\/OULGRQmU8npjntbAubDVraYs3ICoB\\/\\/EAB8QAAICAgIDAQAAAAAAAAAAAAECAAMREgQQITFRIv\\/aAAgBAQABPwCA9Z6JO\\/sgR9FRSGbJjvank+pTa7uQfXSYJZfAyJxKhapw2SrS3jU2WLs2BDUKrHUQy+3BAld7ofy5EtuTVdbmYyu0sTsxMdyGODLVJIImrfJgyliqGGzY5mJiaiajE0X50Aej1yEFb4EBmZnr\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwBP\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAREAAiAQIf\\/aAAgBAwEBPwBGLlbKpEJ8w8f\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"h1w8zUV1ETzGvCBKJFUmvmm1wbR99MzFLA+r2\\/4Vb2aflwASdX3SCA==\",\"scanLengths\":[12379,33478,20000,42684],\"midQualityFileSha256\":\"Qvdx+nFFk7Q45H1ZCA9Zpsu224G7oT9MwDwWurlG9jc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LyDXegHnaXzA2bs6o1a45jE8R6dzzue2AsU7fUy+gu8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771028285,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:18:06'),
(13490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:06.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:18:06'),
(13491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:56.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:18:57'),
(13492, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:56.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:18:57'),
(13493, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:59.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:18:59'),
(13494, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:18:59.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:18:59'),
(13495, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:04.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:19:04'),
(13496, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:04.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:19:04'),
(13497, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:11.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:19:11'),
(13498, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:11.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:19:11'),
(13499, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:19:12'),
(13500, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:19:12'),
(13501, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDC87809E44780E32FE90F45C05C566\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587358164_1226649869578494_3512570822132494899_n.enc?ccb=11-4&oh=01_Q5Aa3wEzYPh1W8UTv19K-yE8JlnSrKEuec9PCAkSl5kDxVkh9g&oe=69B72965&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vp4YErraDaQpsLleKBuXvCXrtVL7H0pGnrJR5xhE0Gc=\",\"fileLength\":\"16673\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"td0UFN4jy1Jw8TPZxBldEHZSZtgd2fp462JsjKG\\/mEM=\",\"fileEncSha256\":\"xtLODtRhqeqvdcioFoDWFKXExhRHyccos6zWfk3+olM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587358164_1226649869578494_3512570822132494899_n.enc?ccb=11-4&oh=01_Q5Aa3wEzYPh1W8UTv19K-yE8JlnSrKEuec9PCAkSl5kDxVkh9g&oe=69B72965&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771028345\",\"waveform\":\"AAACBAY7RidQVlkkVDgbKypCQTs7OkIWKEYbJyxHThs4PTwvQkJBNkEXAEdHMT0oAAAmNEFIJElDNBUAAAcSFA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Dh+mCI+aSQTyXMtghuP37\\/fZTJvcUI0CjoGpzZCpidg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771028352,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:19:12'),
(13502, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:19:12'),
(13503, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:19:12'),
(13504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:19:13'),
(13505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:19:13'),
(13506, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACDC87809E44780E32FE90F45C05C566\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587358164_1226649869578494_3512570822132494899_n.enc?ccb=11-4&oh=01_Q5Aa3wEzYPh1W8UTv19K-yE8JlnSrKEuec9PCAkSl5kDxVkh9g&oe=69B72965&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vp4YErraDaQpsLleKBuXvCXrtVL7H0pGnrJR5xhE0Gc=\",\"fileLength\":\"16673\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"td0UFN4jy1Jw8TPZxBldEHZSZtgd2fp462JsjKG\\/mEM=\",\"fileEncSha256\":\"xtLODtRhqeqvdcioFoDWFKXExhRHyccos6zWfk3+olM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587358164_1226649869578494_3512570822132494899_n.enc?ccb=11-4&oh=01_Q5Aa3wEzYPh1W8UTv19K-yE8JlnSrKEuec9PCAkSl5kDxVkh9g&oe=69B72965&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771028345\",\"waveform\":\"AAACBAY7RidQVlkkVDgbKypCQTs7OkIWKEYbJyxHThs4PTwvQkJBNkEXAEdHMT0oAAAmNEFIJElDNBUAAAcSFA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Dh+mCI+aSQTyXMtghuP37\\/fZTJvcUI0CjoGpzZCpidg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771028352,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:19:12.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:19:13'),
(13507, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F8146665CBD0A013B948F3482205D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029023971,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:23.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:24'),
(13508, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F8146665CBD0A013B948F3482205D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029023971,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:23.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:24'),
(13509, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F8146665CBD0A013B948F3482205D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Nosso sistema é um plano pré pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029024,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:24.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:24'),
(13510, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:24.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:30:24'),
(13511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:24.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:30:24'),
(13512, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:24.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:30:25'),
(13513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3DwP6beWv04pklvtkwYxYeRPP63rsU-AyZJOIpGLESA&oe=699CCCD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:24.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:30:25'),
(13514, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F8146665CBD0A013B948F3482205D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Nosso sistema é um plano pré pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029024,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:24.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:25'),
(13515, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F8146665CBD0A013B948F3482205D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029032140,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:32.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:32'),
(13516, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F8146665CBD0A013B948F3482205D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029032140,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:32.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:32'),
(13517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:30:33'),
(13518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:30:33'),
(13519, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FFE6835923C28076BA3D6B35D70479\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"O teste é por 3h\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:33'),
(13520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:30:33'),
(13521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:30:33'),
(13522, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5FFE6835923C28076BA3D6B35D70479\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"O teste é por 3h\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:34'),
(13523, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FFE6835923C28076BA3D6B35D70479\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029033629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:34'),
(13524, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5FFE6835923C28076BA3D6B35D70479\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029033629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:33.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:34'),
(13525, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5C8AE852960EE10AC167FB30AF79DB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Após precisa fechar um plano\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029045,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:45'),
(13526, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5C8AE852960EE10AC167FB30AF79DB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029045748,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:30:45'),
(13527, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:30:45'),
(13528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:30:45'),
(13529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5C8AE852960EE10AC167FB30AF79DB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Após precisa fechar um plano\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029045,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:45'),
(13530, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5C8AE852960EE10AC167FB30AF79DB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029045748,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:30:46'),
(13531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:30:46'),
(13532, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:30:45.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:30:46'),
(13533, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:01.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:01'),
(13534, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:01.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:02'),
(13535, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:07.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:07'),
(13536, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:07.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:07'),
(13537, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:08.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:08'),
(13538, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:08.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:08'),
(13539, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:18.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:19'),
(13540, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:18.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:19'),
(13541, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:20'),
(13542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACADBCD163E73536016FA9BD185FA2D9\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Como posso fazer\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mMElKCmjFcLY+0Tn18Guw\\/CdCHaqtA44kMLdIKnnEic=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771029079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:31:20'),
(13543, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:20'),
(13544, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:20'),
(13545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:20'),
(13546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:21'),
(13547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:21'),
(13548, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:21.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:21'),
(13549, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A520082FF236EEF2FEBA0AEBD3832D80\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bora renovar teu acesso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:21.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:31:21'),
(13550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3972911882330@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:21.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:21'),
(13551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5VLj2s7hIsiQLtPBnsGq37Rnb5snQmsRqiVBtLIpNuw&oe=699CC55A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:21.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:31:22'),
(13552, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3972911882330@lid\",\"fromMe\":true,\"id\":\"A520082FF236EEF2FEBA0AEBD3832D80\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bora renovar teu acesso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:21.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:31:22'),
(13553, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACADBCD163E73536016FA9BD185FA2D9\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Como posso fazer\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mMElKCmjFcLY+0Tn18Guw\\/CdCHaqtA44kMLdIKnnEic=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771029079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:20.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:31:22'),
(13554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3972911882330@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534403615_25284247147944476_6031594301330597448_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5VLj2s7hIsiQLtPBnsGq37Rnb5snQmsRqiVBtLIpNuw&oe=699CC55A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:21.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:31:22'),
(13555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A520082FF236EEF2FEBA0AEBD3832D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029085198,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:25.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:31:25'),
(13556, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3972911882330@lid\",\"id\":\"A520082FF236EEF2FEBA0AEBD3832D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029085198,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:31:25.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:31:25'),
(13557, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:08.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:08'),
(13558, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:08.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:08'),
(13559, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:12.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:12'),
(13560, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:12.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:12'),
(13561, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:18.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:18'),
(13562, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:18.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:18'),
(13563, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:19.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:19'),
(13564, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:19.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:19'),
(13565, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACADBCD163E73536016FA9BD185FA2D9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:24.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:35:24'),
(13566, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACADBCD163E73536016FA9BD185FA2D9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:24.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:35:24');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13567, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:24.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:24'),
(13568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:24.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:25'),
(13569, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:32.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:32'),
(13570, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:32.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:32'),
(13571, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:42.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:42'),
(13572, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:42.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:42'),
(13573, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:48.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:48'),
(13574, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:48.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:48'),
(13575, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:48.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:49'),
(13576, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC5DEFE3BAC26FCE458BE92E05A770A1\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635980629_1229062279427725_3972972787947245215_n.enc?ccb=11-4&oh=01_Q5Aa3wEIuoJQrkG4gqzy4kpyq5cP7d3-5XfNdMweEj44iLw9AA&oe=69B72938&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YTbGYDn1uIw8t+XkctnrZr8m2XKs8oJFmJ8vqeOC4sA=\",\"fileLength\":\"36922\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"H0sXRnSLwrJFlZ7CTqgrUACxhFLAt27JPdDKQA7YXHs=\",\"fileEncSha256\":\"4nDaI3fp9Uuu7S50kJwO4Lkyehw4fmUanSdyas8kfdk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635980629_1229062279427725_3972972787947245215_n.enc?ccb=11-4&oh=01_Q5Aa3wEIuoJQrkG4gqzy4kpyq5cP7d3-5XfNdMweEj44iLw9AA&oe=69B72938&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771029334\",\"waveform\":\"AAQcVi4jQCNJGxMnPTFaIi8OSSQAFzUaSzwaKVhVPgRMHUofMSgzKQVMECYALE9QQRIAAA8AADg\\/OSMmFQAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ylFdD3lcIcBR6HV2PkJLHlg+8aB8WjJxl7hQt4TxYnI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771029348,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:48.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:35:49'),
(13577, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:48.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:49'),
(13578, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC5DEFE3BAC26FCE458BE92E05A770A1\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635980629_1229062279427725_3972972787947245215_n.enc?ccb=11-4&oh=01_Q5Aa3wEIuoJQrkG4gqzy4kpyq5cP7d3-5XfNdMweEj44iLw9AA&oe=69B72938&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YTbGYDn1uIw8t+XkctnrZr8m2XKs8oJFmJ8vqeOC4sA=\",\"fileLength\":\"36922\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"H0sXRnSLwrJFlZ7CTqgrUACxhFLAt27JPdDKQA7YXHs=\",\"fileEncSha256\":\"4nDaI3fp9Uuu7S50kJwO4Lkyehw4fmUanSdyas8kfdk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635980629_1229062279427725_3972972787947245215_n.enc?ccb=11-4&oh=01_Q5Aa3wEIuoJQrkG4gqzy4kpyq5cP7d3-5XfNdMweEj44iLw9AA&oe=69B72938&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771029334\",\"waveform\":\"AAQcVi4jQCNJGxMnPTFaIi8OSSQAFzUaSzwaKVhVPgRMHUofMSgzKQVMECYALE9QQRIAAA8AADg\\/OSMmFQAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ylFdD3lcIcBR6HV2PkJLHlg+8aB8WjJxl7hQt4TxYnI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771029348,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:48.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:35:49'),
(13579, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:49.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:49'),
(13580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:49.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:35:49'),
(13581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:49.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:49'),
(13582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:35:49.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:35:49'),
(13583, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:39:45'),
(13584, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A59BD24078782022FC98AEA12E200782\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Usuário:* wg5ujadg\\n*Senha:* tz1kgvyt\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771029584,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:39:45'),
(13585, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:39:45'),
(13586, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59BD24078782022FC98AEA12E200782\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029585263,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:39:45'),
(13587, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A59BD24078782022FC98AEA12E200782\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Usuário:* wg5ujadg\\n*Senha:* tz1kgvyt\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771029584,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:39:45'),
(13588, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59BD24078782022FC98AEA12E200782\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029585263,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:39:46'),
(13589, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:39:46'),
(13590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:39:45.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:39:46'),
(13591, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:40:08'),
(13592, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A50032123DCF28AF668CEAC0693D9E27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029608,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:40:08'),
(13593, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:40:08'),
(13594, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:40:08'),
(13595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:40:08'),
(13596, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A50032123DCF28AF668CEAC0693D9E27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771029608,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:40:09'),
(13597, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A50032123DCF28AF668CEAC0693D9E27\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029608797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:40:09'),
(13598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A50032123DCF28AF668CEAC0693D9E27\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771029608797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:40:08.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:40:09'),
(13599, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A50032123DCF28AF668CEAC0693D9E27\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029776099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:42:56.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:42:56'),
(13600, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A50032123DCF28AF668CEAC0693D9E27\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771029776099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:42:56.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:42:56'),
(13601, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:43:45.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:43:45'),
(13602, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:43:45.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:43:45'),
(13603, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:43:55.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:43:55'),
(13604, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:43:55.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:43:56'),
(13605, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:44:03'),
(13606, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:44:03'),
(13607, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB6381A427CD92A55FE538498D001EB\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Desculpe  não  sabia do horário\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SouMFsORqFKXGSDBMog5BlwhBilpdxrOC4Z+8iZ1i30=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771029842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:44:03'),
(13608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:44:03'),
(13609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:44:03'),
(13610, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:44:03'),
(13611, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:44:03'),
(13612, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACB6381A427CD92A55FE538498D001EB\"},\"pushName\":\"Cida😎\",\"message\":{\"conversation\":\"Desculpe  não  sabia do horário\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SouMFsORqFKXGSDBMog5BlwhBilpdxrOC4Z+8iZ1i30=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771029842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:03.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:44:03'),
(13613, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:05.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:44:05'),
(13614, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:05.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:44:05'),
(13615, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:08.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:44:08'),
(13616, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:44:08.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:44:08');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13617, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcezz9TbGIxN8_5fpNhw_g8mmSjoiFpCY3FISSVH9IGw&oe=699CBE37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGszpvhb-tjZi3BbiZxq1yjRXGn_vzkNwy3qSOBgSrmFQ&oe=699CBC43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQbFgIdZN0jMKs4den2zecdaQ5uGVjfOidgiRj73g8iw&oe=699CBB9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7tr87DKrm-bdeWsOhuIqWW2cDR5OBzG3S3qHWqvWcfQ&oe=699CBF36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvN8Sd0wJJltScK_OCmwC9qiJsucYzlasCDtFSzqANIg&oe=699CC3AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFktLESZ9_C2IwFhBt48BEKsS2DETWMBFP7kD5Z3kZiUA&oe=699CC2AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaeFz5_Y4hoF6Np3rROfOhf14Bmp2N5TjH3NWEG1Zfwg&oe=699CC96E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wG40Lj6CWTSlvCezum-AcEolBk6I307Sq-cj1HcZ3nBpQ&oe=699CBC18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6ZlVtZlYIdLiTZGZ4fd-9LRqvWfbeIrGm2zhp2Laxqg&oe=699CBB61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEEbEpeMnbU80ZyqX0ZLt0aen1bZm64Yfte44hNABuUw&oe=699CBC52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ367Tgu_wB0rdlbw8p9chZE-BtvtBoaq5wY43968cUA&oe=699CBD17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSTw5oLZVXy0XsuXzzufY8FTaoXlfNH5mTrAICDik-8w&oe=699CBDBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgZWkKDtGJye1XBahLfnIyTvoi09w9Cbz-DFs_ScvZkQ&oe=699CBF67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8CgOaTQ-BqabLyDo9dEVhDKbJNnpdxvOOfE0kY-VtAA&oe=699CC21D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdJK5GYp2FW0zrEZwX-vgvOtqwfDBl7tKFYsfGMleiaw&oe=699CBC7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlkJrkt5k39UAzcfut-RoKDSMpqnJkAwSTXNWc4b0aTg&oe=699CC947&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0kHZB3oVoB__IKzwRQhbYhtLWvYc1SLcyZXT3o2FNAg&oe=699CC9E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 21:52:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13618, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcezz9TbGIxN8_5fpNhw_g8mmSjoiFpCY3FISSVH9IGw&oe=699CBE37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGszpvhb-tjZi3BbiZxq1yjRXGn_vzkNwy3qSOBgSrmFQ&oe=699CBC43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQbFgIdZN0jMKs4den2zecdaQ5uGVjfOidgiRj73g8iw&oe=699CBB9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7tr87DKrm-bdeWsOhuIqWW2cDR5OBzG3S3qHWqvWcfQ&oe=699CBF36&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvN8Sd0wJJltScK_OCmwC9qiJsucYzlasCDtFSzqANIg&oe=699CC3AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFktLESZ9_C2IwFhBt48BEKsS2DETWMBFP7kD5Z3kZiUA&oe=699CC2AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaeFz5_Y4hoF6Np3rROfOhf14Bmp2N5TjH3NWEG1Zfwg&oe=699CC96E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wG40Lj6CWTSlvCezum-AcEolBk6I307Sq-cj1HcZ3nBpQ&oe=699CBC18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6ZlVtZlYIdLiTZGZ4fd-9LRqvWfbeIrGm2zhp2Laxqg&oe=699CBB61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEEbEpeMnbU80ZyqX0ZLt0aen1bZm64Yfte44hNABuUw&oe=699CBC52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ367Tgu_wB0rdlbw8p9chZE-BtvtBoaq5wY43968cUA&oe=699CBD17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSTw5oLZVXy0XsuXzzufY8FTaoXlfNH5mTrAICDik-8w&oe=699CBDBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgZWkKDtGJye1XBahLfnIyTvoi09w9Cbz-DFs_ScvZkQ&oe=699CBF67&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8CgOaTQ-BqabLyDo9dEVhDKbJNnpdxvOOfE0kY-VtAA&oe=699CC21D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdJK5GYp2FW0zrEZwX-vgvOtqwfDBl7tKFYsfGMleiaw&oe=699CBC7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlkJrkt5k39UAzcfut-RoKDSMpqnJkAwSTXNWc4b0aTg&oe=699CC947&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0kHZB3oVoB__IKzwRQhbYhtLWvYc1SLcyZXT3o2FNAg&oe=699CC9E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 21:52:35');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13619, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F6A8385FAC5380B922F9293BC56BA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771030568,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:08.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:56:08'),
(13620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:08.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:08'),
(13621, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:08.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:08'),
(13622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:08.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:09'),
(13623, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5F6A8385FAC5380B922F9293BC56BA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771030568,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:08.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:56:09'),
(13624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:08.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:09'),
(13625, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:10.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:10'),
(13626, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A540105B4482B20BFB5EB46AE2CDCBC5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vou mandar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771030570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:10.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:56:10'),
(13627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:10.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:10'),
(13628, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A540105B4482B20BFB5EB46AE2CDCBC5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vou mandar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771030570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:10.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:56:10'),
(13629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:10.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:10'),
(13630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:10.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:11'),
(13631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B3F981A4FE4C913B74B300096DEFB9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ti\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771030571,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:11.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:56:11'),
(13632, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:11.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:11'),
(13633, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:11.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:11'),
(13634, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5B3F981A4FE4C913B74B300096DEFB9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ti\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771030571,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:11.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:56:11'),
(13635, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:11.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:12'),
(13636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:11.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:12'),
(13637, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:27.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:27'),
(13638, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:27.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:27'),
(13639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A52CDFABFBBECC37FC2315D64FEAE389\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wEXdxx8Sr_Vjb7Bl6I-c8civu9se0KT2EAf6qFrWdMfSA&oe=69B72C9D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"YHm4CBG\\/1AF67+MGkJQNBjlctbBHY\\/aIwz5L1uLVWrk=\",\"fileEncSha256\":\"EbC\\/tUAd+edhEVPVCejteKEglJEBvHylnEuDkRU55SM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wEXdxx8Sr_Vjb7Bl6I-c8civu9se0KT2EAf6qFrWdMfSA&oe=69B72C9D&_nc_sid=5e03e0&_nc_hot=1771030587\",\"mediaKeyTimestamp\":\"1770817270\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771030587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:27.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:56:28'),
(13640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:28.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:56:28'),
(13641, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A52CDFABFBBECC37FC2315D64FEAE389\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wEXdxx8Sr_Vjb7Bl6I-c8civu9se0KT2EAf6qFrWdMfSA&oe=69B72C9D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"YHm4CBG\\/1AF67+MGkJQNBjlctbBHY\\/aIwz5L1uLVWrk=\",\"fileEncSha256\":\"EbC\\/tUAd+edhEVPVCejteKEglJEBvHylnEuDkRU55SM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/633965513_1224534003145864_3573900762393826087_n.enc?ccb=11-4&oh=01_Q5Aa3wEXdxx8Sr_Vjb7Bl6I-c8civu9se0KT2EAf6qFrWdMfSA&oe=69B72C9D&_nc_sid=5e03e0&_nc_hot=1771030587\",\"mediaKeyTimestamp\":\"1770817270\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771030587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:27.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:56:28'),
(13642, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:56:28.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:56:28'),
(13643, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:02.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:57:02'),
(13644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:02.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:57:02'),
(13645, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636724323_1582920759706302_7255020779476638774_n.enc?ccb=11-4&oh=01_Q5Aa3wGRK1zhzFK78cAgV36iOP2e3AjshXD8Ra3YHSE-rMPr8A&oe=69B72871&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"NbOSpHzdX6lGFgPUNHmkhh3FXV+GSfaSFF50+YBN5KI=\",\"fileLength\":\"78087\",\"seconds\":33,\"ptt\":true,\"mediaKey\":\"1eIjNPlSR9Evsuofba3Jhbm9039+fmWq0UD3sg1YhMk=\",\"fileEncSha256\":\"nXIEQWfB2ssMzbw9XmEdPrC1Ukin2ZNCVgzhPRFm7aw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636724323_1582920759706302_7255020779476638774_n.enc?ccb=11-4&oh=01_Q5Aa3wGRK1zhzFK78cAgV36iOP2e3AjshXD8Ra3YHSE-rMPr8A&oe=69B72871&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771030589\",\"waveform\":\"AE9iY1ZVIUc3UyZaDA1BOAMMA2BSTVdKWCIfL1xeQFI7TStOUSo7Vw1YKEliPwgRDTdVW09OVwxjGCtiVTZWOg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771030622,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:02.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:57:02'),
(13646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:02.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:57:02'),
(13647, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636724323_1582920759706302_7255020779476638774_n.enc?ccb=11-4&oh=01_Q5Aa3wGRK1zhzFK78cAgV36iOP2e3AjshXD8Ra3YHSE-rMPr8A&oe=69B72871&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"NbOSpHzdX6lGFgPUNHmkhh3FXV+GSfaSFF50+YBN5KI=\",\"fileLength\":\"78087\",\"seconds\":33,\"ptt\":true,\"mediaKey\":\"1eIjNPlSR9Evsuofba3Jhbm9039+fmWq0UD3sg1YhMk=\",\"fileEncSha256\":\"nXIEQWfB2ssMzbw9XmEdPrC1Ukin2ZNCVgzhPRFm7aw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636724323_1582920759706302_7255020779476638774_n.enc?ccb=11-4&oh=01_Q5Aa3wGRK1zhzFK78cAgV36iOP2e3AjshXD8Ra3YHSE-rMPr8A&oe=69B72871&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771030589\",\"waveform\":\"AE9iY1ZVIUc3UyZaDA1BOAMMA2BSTVdKWCIfL1xeQFI7TStOUSo7Vw1YKEliPwgRDTdVW09OVwxjGCtiVTZWOg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771030622,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:02.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:57:02'),
(13648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:02.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:57:03'),
(13649, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:04.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:57:04'),
(13650, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51006C4DA4B5C2AB8AF3CBA0DBC3B95\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDS2DC2X7N\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771030624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:04.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 21:57:04'),
(13651, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:04.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:57:04'),
(13652, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51006C4DA4B5C2AB8AF3CBA0DBC3B95\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDS2DC2X7N\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771030624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:04.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 21:57:04'),
(13653, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:04.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 21:57:04'),
(13654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T21:57:04.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 21:57:05'),
(13655, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A540105B4482B20BFB5EB46AE2CDCBC5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:06:51'),
(13656, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F6A8385FAC5380B922F9293BC56BA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210772,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:06:51'),
(13657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B3F981A4FE4C913B74B300096DEFB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:06:51'),
(13658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52CDFABFBBECC37FC2315D64FEAE389\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:06:51'),
(13659, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210997,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:06:51'),
(13660, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A540105B4482B20BFB5EB46AE2CDCBC5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:06:51'),
(13661, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F6A8385FAC5380B922F9293BC56BA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210772,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:06:51'),
(13662, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B3F981A4FE4C913B74B300096DEFB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210859,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:06:51'),
(13663, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51006C4DA4B5C2AB8AF3CBA0DBC3B95\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031211141,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:51.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:06:51'),
(13664, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52CDFABFBBECC37FC2315D64FEAE389\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:06:51'),
(13665, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031210997,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:50.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:06:51'),
(13666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51006C4DA4B5C2AB8AF3CBA0DBC3B95\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031211141,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:06:51.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:06:51'),
(13667, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A540105B4482B20BFB5EB46AE2CDCBC5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:07:53'),
(13668, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B3F981A4FE4C913B74B300096DEFB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273632,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:07:53'),
(13669, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52CDFABFBBECC37FC2315D64FEAE389\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:07:53'),
(13670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F6A8385FAC5380B922F9293BC56BA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273642,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:07:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13671, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51006C4DA4B5C2AB8AF3CBA0DBC3B95\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273613,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:07:53'),
(13672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5B3F981A4FE4C913B74B300096DEFB9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273632,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:07:54'),
(13673, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A540105B4482B20BFB5EB46AE2CDCBC5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:07:54'),
(13674, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A52CDFABFBBECC37FC2315D64FEAE389\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:07:54'),
(13675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5F6A8385FAC5380B922F9293BC56BA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273642,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:07:54'),
(13676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51006C4DA4B5C2AB8AF3CBA0DBC3B95\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273613,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:07:54'),
(13677, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:07:55'),
(13678, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031273622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:07:53.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:07:56'),
(13679, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A555A2E90FCD28DF345FA29229FBFA45\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40597},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40597},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:18.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:09:18'),
(13680, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:18.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:18'),
(13681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:18.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:18'),
(13682, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:18.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:19'),
(13683, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:18.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:19'),
(13684, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C137C38998D515D0A8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031359,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:19.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:19'),
(13685, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C137C38998D515D0A8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031359,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:19.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:19'),
(13686, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A555A2E90FCD28DF345FA29229FBFA45\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40597},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40597},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:18.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:09:19'),
(13687, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D199D4DBD8A2F10EDC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031360,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:20.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:20'),
(13688, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D199D4DBD8A2F10EDC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031360,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:20.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:20'),
(13689, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:32.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:32'),
(13690, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:32.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:32'),
(13691, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5ADEAE1B17AC520F941A3288449BB8A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"vivi tia gaspar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40609},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40609},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031372,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:32.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:09:32'),
(13692, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:32.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:32'),
(13693, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:32.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:33'),
(13694, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09556AF0A65AA16AD1B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *vivi tia gaspar*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031373,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:33.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:33'),
(13695, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09556AF0A65AA16AD1B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *vivi tia gaspar*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031373,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:33.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:33'),
(13696, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5ADEAE1B17AC520F941A3288449BB8A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"vivi tia gaspar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40609},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40609},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031372,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:32.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:09:33'),
(13697, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB001360CB9479552CB2D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031373,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:34.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:34'),
(13698, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB001360CB9479552CB2D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031373,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:34.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:34'),
(13699, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57FE14639751AF245EECA1923C6B366\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791741091\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40621},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40621},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031384,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:44.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:09:45'),
(13700, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:44.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:45'),
(13701, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:45.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:45'),
(13702, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:44.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:45'),
(13703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:45.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:45'),
(13704, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01A51163D2F9BAA5B49\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9174-1091*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031385,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:45.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:46'),
(13705, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01A51163D2F9BAA5B49\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 9174-1091*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031385,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:45.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:46'),
(13706, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57FE14639751AF245EECA1923C6B366\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"4791741091\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40621},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40621},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031384,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:44.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:09:46'),
(13707, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB047A9088D0AB9037D79\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031387,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:47.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:47'),
(13708, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB047A9088D0AB9037D79\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031387,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:47.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:47'),
(13709, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5671F4C7B0F0D06B718DBDFDE05CF81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"30\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40631},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40631},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031394,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:54.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:09:54'),
(13710, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:54.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:54'),
(13711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:54.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:54'),
(13712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:54.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:55'),
(13713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:54.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:55'),
(13714, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB078513222FF187FCB28\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 30,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031395,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:55.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:55'),
(13715, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB078513222FF187FCB28\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 30,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031395,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:55.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:55'),
(13716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5671F4C7B0F0D06B718DBDFDE05CF81\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"30\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40631},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40631},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031394,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:54.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:09:55'),
(13717, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0062285E938A7CBC247\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031395,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:56.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:09:56'),
(13718, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0062285E938A7CBC247\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031395,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:09:56.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:09:56'),
(13719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A535B527AEF83B8581DE5E31EB7B459B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40638},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40638},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031401,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:01.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:10:01'),
(13720, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:01.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:01'),
(13721, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:01.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:02'),
(13722, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:01.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:02'),
(13723, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:01.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:02'),
(13724, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB010559F7CC266F6FC2A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031402,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:02.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:02'),
(13725, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB010559F7CC266F6FC2A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031402,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:02.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:02'),
(13726, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A535B527AEF83B8581DE5E31EB7B459B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40638},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40638},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031401,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:01.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:10:02'),
(13727, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB059D6A53EBCDBCB7C23\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031402,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:03.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:03'),
(13728, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB059D6A53EBCDBCB7C23\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031402,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:03.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:03'),
(13729, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5FF8134AE24CC30B8FFC994736F2994\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40651},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40651},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031414,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:14.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:10:14'),
(13730, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:14.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:14'),
(13731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:14.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:14'),
(13732, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:14.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:14'),
(13733, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:14.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:14'),
(13734, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D60C64D8E49C4D1D90\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* vivi tia gaspar\\n📱 *WhatsApp:* 47 9174-1091\\n💰 *Valor:* R$ 30,00\\n📅 *Vencimento:* 13\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 40\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031415,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:15.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13735, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D60C64D8E49C4D1D90\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* vivi tia gaspar\\n📱 *WhatsApp:* 47 9174-1091\\n💰 *Valor:* R$ 30,00\\n📅 *Vencimento:* 13\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 40\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031415,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:15.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:15'),
(13736, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5FF8134AE24CC30B8FFC994736F2994\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40651},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":40651},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031414,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:14.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:10:15'),
(13737, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771031417493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:17.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:10:17'),
(13738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A53AEE56F39FB136B1E0BFCA1127F354\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771031417493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:17.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:10:17'),
(13739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A549ECA84E84303CE1C19905232A4EBB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031454700,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:54.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:10:54'),
(13740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A549ECA84E84303CE1C19905232A4EBB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031454700,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:54.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:10:54'),
(13741, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:55.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:55'),
(13742, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:55.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:55'),
(13743, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A549ECA84E84303CE1C19905232A4EBB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"YrLlglqwO2zcuThfjCbvo0+ZY6PeUlPoh6bgf2GEiNQ=\",\"fileLength\":\"11767949\",\"seconds\":67,\"mediaKey\":\"kBGNXDMjQO3dLeZgFjW3SACxd7WeikmFDd6Wsq9BVJk=\",\"height\":850,\"width\":392,\"fileEncSha256\":\"dZ31kUhOdLpo7ng5bulcuHvAutrrRW8m2SEhpTb1bFw=\",\"directPath\":\"\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031450\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMBBgQFAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAAD7bsslNmSWJl0kb+bOa7Osy4G+uR5AZ7J+LJO2OFLqTJSl3MIGA7ANMBQD\\/8QAJxAAAQMCBQMFAQAAAAAAAAAAAQACEQQhAxASIjEUQVMTMlFSYWL\\/2gAIAQEAAT8AqDjbPSAMncgXtcRG1NJI3CFY91ITrBSY5CHF0I7ZYntK9Vvt\\/FraWSHQmEQBJOT7NKab6dFipEAFlgmF0CwAycARdPLDzqsgGu+bKDOQqqnyPXVVPkehVVH3eupqPu9dbUeVyEQDBREgQ0riJBUs+Dk2IG5A2u88In+k6LAO7Xy1EQhikdgnY7ncgLWcv\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAAQARESMP\\/aAAgBAgEBPwCzSl0Z4f\\/EABsRAAEEAwAAAAAAAAAAAAAAAAEAAhAREjAx\\/9oACAEDAQE\\/ACaWUO7JCrR\\/\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"streamingSidecar\":\"PJJDyky19yKiTjq67uU4BZrLlwK9x8ukyR3X+rxSgDPPQFDnoLctzPWSccosGbfyg3AiU+Ty8QcIfmaVG51syiuBloJF54x1m2NY0LIq0mIsVnsXICNVTIt20Lnc7Wd+LWzpm\\/XOsW+4Gxv1kw6nnmvFIX5byRPSgIUgE90x+a6WuZkyjRtvJy3\\/bntebtgQk3JlBC6ZISD1Is38l6FOtIwF2gAa\\/urUHBq2RADpZzHvFBjTHTibz0bTK+iOl9J4jcFTdnX6koib1S\\/N4HyuUPWjBfZGP6EbcE4iKMTSihgVYo\\/zzQa9uMVOCTDx8UOCGmD70jCqwKHj+Ers6lrQPASSa1ZO95RiM62ecu3Iy6cm5zxuhjAtsRp8S9Lj2qSwM1dgmSvMHwA05o0YJYa3CREWQIBXS1hDhVkHA7UsD7\\/LyUgXbAerxp\\/M9za9neVAkbIQ3OZ6uJEnteKkmzmTp61n7r0zSXhbu6c+diJKYDNWdFouzOsJQWX1kRD\\/SGHod+rAFvcXzC723BGw+ncdNyazn2F1QHuox8anw96oQA+vI45i63ljIyPG6FIygCrw8lG83ExRy1UhoiaNM2nGxTAzOvEX2hHP9DamLIR4InwWa9MInTnYoFbfvXwv\\/xLnbFCc\\/IpfXpd1WsOIHZAMDTINrjUN\\/XQII3YmkMObaj6f56GPbNAkMSzIo55NO+nSMUXYnOaxVaIqUkB58MjYWuluOQEDv2KPjKqrncsieTda6zO0r0RdlPrkfksbLoublhSeErX7oXaibwxWpn+AoiGD7xew8Y4CfjTBPD9j8g8vMLPRAU6JtLXNs\\/W0rYOTR5rxc8t2P+stStIf\\/ERS1khks0dW7xRrGM4Vzj6EaqS43ISctD1TahzSVN7w1vl0+kJpAak4ncViYPJUnrqjsSu0PMQhYwACYmLT3QJXA\\/OKGxrmI6LF8cP3x8fS4nPxxJOEJ03cLyngQzWiPxpYhdjyBPaTBPQNWIr8PplMak\\/uXPezvWXIxpG2\\/S0oJNWMYkUWT9CUFcd5hVk+ZGdCzzasLhz\\/Yl+f9aY\\/cI118Ym5UV1wlSK4rfhp+aV\\/YVtXZp5DJKT1dUpjBB+Wu37wcyn93TCsGPkxcOo3x3qU2wMOnOEZfxNngPhMqKVYAPUKyjzd0QIJZCDPKiNn\\/QmaJewrp8f9ptQtjLcMz3xBpSIaVlISpZfsy2i1awuxqsjW\\/WH4wedObyjMoDReNOi0gCe7S2UobVGbYlsGQ+41hGVEsG7RgVHqJo4JsSEcCysPrYKK67krhxO+zT2rggrzzntFBX7CpOVOi5ts4CvdJCW+9MoiHLAd6HiU1PK6NFPJxRbdg+mQU5jc5+8zgyM1mmPpmVI11FuYg9dEPbOvkyGycBGuwOALYqOqw9F3pLLsNYuluVtHOqATNNJZl8hFgymzaC33UVD6DZFeMivzNhsY\\/USoMPdYh0mWIfou+dQvTcuKRZjWfkmPHPQy5Eut1Jfy3OIcyzN8zPAUVnfZyMvIc3SiWzLxXaafpXorugxSj3yFheJgrVeVCfyFzMmyQV0ai3HpgBOHQHGoSTifuKizIwydIp\\/dzrW9hnjDFsxd5GE3gEvV8\\/b1s68EOVbAHLvArfXv7knYbp6Qi80r5JNaXmVc3YYFubh6rCIdm5SFCI9HbgrlCXIdqu1wuMxGlmtGXAGHt5\\/n7ZcX1ARD0uopKXrj4s\\/de9EzKb9yu8mRSTTcpCD8gcy6Vwm5AjROwUc3o6eL1kT5YU3eB4uRKPl45iGJT4hJF6BLXdkYe3tiQ7DP5oPCs4+I17nPBwlodAE2U8kQmpKewja5a9TnKn7FnuZtMr+AjeUsfEyXuLTqZS90yvtA7k1SKlCKcZEHVvAq54BSS8nuJvh7gZheHHgSyeYoATHTnnqya\\/A1vjFOKthNSRQes\\/BadmFNRI0M4RsvAS91JBoTfk2ve\\/rYV6nCbJu9MyX0gdBhF+Deg\\/2jOHrkwE2EpXxvUiejQeZ\\/\\/pR4WJuhVKmrBb23MQklA2htIOpK\\/n\\/ZyEFN1YortnEZVJGeWFIi7tM3x+wznMPvaicBKjzr5Le4+FAr\\/s3eyxES8sYuiwTnOgfaRtV3xALgf3OqWEqTJhFloevN0c8ae7Rx8gVV2mKL72ItxpKhPjekq+EFUksMA044Hb4o0uVDQ6zT8ofT6GdNIiyIPenOkQKE0zYx3FBbUOP+0y63qBC9gc01k0Y7TWMg2K3rm3SSS5z\\/\\/83lirOAxDDYDJUV8tQpV6boa9uwdEG8OR4SGtcI76IksnM3QapHTStNm9WlaR9GphUqm85Q9ygVDp1VJHETl8YlNzHfPblWeDQ70qG1dcmhpPp8+blQtewQ3AI6gNM2ulG7UtnlIhyaBFbW63sXOk7JOb7Q\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"videoMessage\",\"messageTimestamp\":1771031455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:55.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:10:55'),
(13744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:55.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:10:55'),
(13745, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A549ECA84E84303CE1C19905232A4EBB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"YrLlglqwO2zcuThfjCbvo0+ZY6PeUlPoh6bgf2GEiNQ=\",\"fileLength\":\"11767949\",\"seconds\":67,\"mediaKey\":\"kBGNXDMjQO3dLeZgFjW3SACxd7WeikmFDd6Wsq9BVJk=\",\"height\":850,\"width\":392,\"fileEncSha256\":\"dZ31kUhOdLpo7ng5bulcuHvAutrrRW8m2SEhpTb1bFw=\",\"directPath\":\"\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031450\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMBBgQFAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAAD7bsslNmSWJl0kb+bOa7Osy4G+uR5AZ7J+LJO2OFLqTJSl3MIGA7ANMBQD\\/8QAJxAAAQMCBQMFAQAAAAAAAAAAAQACEQQhAxASIjEUQVMTMlFSYWL\\/2gAIAQEAAT8AqDjbPSAMncgXtcRG1NJI3CFY91ITrBSY5CHF0I7ZYntK9Vvt\\/FraWSHQmEQBJOT7NKab6dFipEAFlgmF0CwAycARdPLDzqsgGu+bKDOQqqnyPXVVPkehVVH3eupqPu9dbUeVyEQDBREgQ0riJBUs+Dk2IG5A2u88In+k6LAO7Xy1EQhikdgnY7ncgLWcv\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAAQARESMP\\/aAAgBAgEBPwCzSl0Z4f\\/EABsRAAEEAwAAAAAAAAAAAAAAAAEAAhAREjAx\\/9oACAEDAQE\\/ACaWUO7JCrR\\/\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"streamingSidecar\":\"PJJDyky19yKiTjq67uU4BZrLlwK9x8ukyR3X+rxSgDPPQFDnoLctzPWSccosGbfyg3AiU+Ty8QcIfmaVG51syiuBloJF54x1m2NY0LIq0mIsVnsXICNVTIt20Lnc7Wd+LWzpm\\/XOsW+4Gxv1kw6nnmvFIX5byRPSgIUgE90x+a6WuZkyjRtvJy3\\/bntebtgQk3JlBC6ZISD1Is38l6FOtIwF2gAa\\/urUHBq2RADpZzHvFBjTHTibz0bTK+iOl9J4jcFTdnX6koib1S\\/N4HyuUPWjBfZGP6EbcE4iKMTSihgVYo\\/zzQa9uMVOCTDx8UOCGmD70jCqwKHj+Ers6lrQPASSa1ZO95RiM62ecu3Iy6cm5zxuhjAtsRp8S9Lj2qSwM1dgmSvMHwA05o0YJYa3CREWQIBXS1hDhVkHA7UsD7\\/LyUgXbAerxp\\/M9za9neVAkbIQ3OZ6uJEnteKkmzmTp61n7r0zSXhbu6c+diJKYDNWdFouzOsJQWX1kRD\\/SGHod+rAFvcXzC723BGw+ncdNyazn2F1QHuox8anw96oQA+vI45i63ljIyPG6FIygCrw8lG83ExRy1UhoiaNM2nGxTAzOvEX2hHP9DamLIR4InwWa9MInTnYoFbfvXwv\\/xLnbFCc\\/IpfXpd1WsOIHZAMDTINrjUN\\/XQII3YmkMObaj6f56GPbNAkMSzIo55NO+nSMUXYnOaxVaIqUkB58MjYWuluOQEDv2KPjKqrncsieTda6zO0r0RdlPrkfksbLoublhSeErX7oXaibwxWpn+AoiGD7xew8Y4CfjTBPD9j8g8vMLPRAU6JtLXNs\\/W0rYOTR5rxc8t2P+stStIf\\/ERS1khks0dW7xRrGM4Vzj6EaqS43ISctD1TahzSVN7w1vl0+kJpAak4ncViYPJUnrqjsSu0PMQhYwACYmLT3QJXA\\/OKGxrmI6LF8cP3x8fS4nPxxJOEJ03cLyngQzWiPxpYhdjyBPaTBPQNWIr8PplMak\\/uXPezvWXIxpG2\\/S0oJNWMYkUWT9CUFcd5hVk+ZGdCzzasLhz\\/Yl+f9aY\\/cI118Ym5UV1wlSK4rfhp+aV\\/YVtXZp5DJKT1dUpjBB+Wu37wcyn93TCsGPkxcOo3x3qU2wMOnOEZfxNngPhMqKVYAPUKyjzd0QIJZCDPKiNn\\/QmaJewrp8f9ptQtjLcMz3xBpSIaVlISpZfsy2i1awuxqsjW\\/WH4wedObyjMoDReNOi0gCe7S2UobVGbYlsGQ+41hGVEsG7RgVHqJo4JsSEcCysPrYKK67krhxO+zT2rggrzzntFBX7CpOVOi5ts4CvdJCW+9MoiHLAd6HiU1PK6NFPJxRbdg+mQU5jc5+8zgyM1mmPpmVI11FuYg9dEPbOvkyGycBGuwOALYqOqw9F3pLLsNYuluVtHOqATNNJZl8hFgymzaC33UVD6DZFeMivzNhsY\\/USoMPdYh0mWIfou+dQvTcuKRZjWfkmPHPQy5Eut1Jfy3OIcyzN8zPAUVnfZyMvIc3SiWzLxXaafpXorugxSj3yFheJgrVeVCfyFzMmyQV0ai3HpgBOHQHGoSTifuKizIwydIp\\/dzrW9hnjDFsxd5GE3gEvV8\\/b1s68EOVbAHLvArfXv7knYbp6Qi80r5JNaXmVc3YYFubh6rCIdm5SFCI9HbgrlCXIdqu1wuMxGlmtGXAGHt5\\/n7ZcX1ARD0uopKXrj4s\\/de9EzKb9yu8mRSTTcpCD8gcy6Vwm5AjROwUc3o6eL1kT5YU3eB4uRKPl45iGJT4hJF6BLXdkYe3tiQ7DP5oPCs4+I17nPBwlodAE2U8kQmpKewja5a9TnKn7FnuZtMr+AjeUsfEyXuLTqZS90yvtA7k1SKlCKcZEHVvAq54BSS8nuJvh7gZheHHgSyeYoATHTnnqya\\/A1vjFOKthNSRQes\\/BadmFNRI0M4RsvAS91JBoTfk2ve\\/rYV6nCbJu9MyX0gdBhF+Deg\\/2jOHrkwE2EpXxvUiejQeZ\\/\\/pR4WJuhVKmrBb23MQklA2htIOpK\\/n\\/ZyEFN1YortnEZVJGeWFIi7tM3x+wznMPvaicBKjzr5Le4+FAr\\/s3eyxES8sYuiwTnOgfaRtV3xALgf3OqWEqTJhFloevN0c8ae7Rx8gVV2mKL72ItxpKhPjekq+EFUksMA044Hb4o0uVDQ6zT8ofT6GdNIiyIPenOkQKE0zYx3FBbUOP+0y63qBC9gc01k0Y7TWMg2K3rm3SSS5z\\/\\/83lirOAxDDYDJUV8tQpV6boa9uwdEG8OR4SGtcI76IksnM3QapHTStNm9WlaR9GphUqm85Q9ygVDp1VJHETl8YlNzHfPblWeDQ70qG1dcmhpPp8+blQtewQ3AI6gNM2ulG7UtnlIhyaBFbW63sXOk7JOb7Q\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"videoMessage\",\"messageTimestamp\":1771031455,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:55.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:10:55'),
(13746, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:10:55.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:10:56'),
(13747, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A549ECA84E84303CE1C19905232A4EBB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031464034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:11:04.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:11:04'),
(13748, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A549ECA84E84303CE1C19905232A4EBB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031464034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:11:04.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:11:04'),
(13749, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:23.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:12:23'),
(13750, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:23.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:12:23'),
(13751, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D9C50F904F83783135\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\n\\nOlá, *vivi tia gaspar*! 👋\\n\\nÉ um prazer ter você conosco!\\n\\n📋 *Informações da sua conta:*\\n• Plano: *mensal*\\n• Valor mensal: *R$ 30,00*\\n• Próximo vencimento: *13\\/03\\/2026*\\n\\n💡 *Comandos úteis:*\\n• *\\/pago* - Confirmar pagamento\\n• *\\/vencimento* - Ver próximo vencimento\\n• *\\/status* - Verificar situação\\n• *\\/ajuda* - Lista completa de comandos\\n\\nQualquer dúvida, estamos à disposição!\\n\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031544,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:24.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:12:24'),
(13752, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D9C50F904F83783135\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\n\\nOlá, *vivi tia gaspar*! 👋\\n\\nÉ um prazer ter você conosco!\\n\\n📋 *Informações da sua conta:*\\n• Plano: *mensal*\\n• Valor mensal: *R$ 30,00*\\n• Próximo vencimento: *13\\/03\\/2026*\\n\\n💡 *Comandos úteis:*\\n• *\\/pago* - Confirmar pagamento\\n• *\\/vencimento* - Ver próximo vencimento\\n• *\\/status* - Verificar situação\\n• *\\/ajuda* - Lista completa de comandos\\n\\nQualquer dúvida, estamos à disposição!\\n\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031544,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:24.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:12:24'),
(13753, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"id\":\"3EB0D9C50F904F83783135\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031547600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:27.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:12:27'),
(13754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"id\":\"3EB0D9C50F904F83783135\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031547600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:27.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:12:27'),
(13755, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC3C7AE6098480925FD4544A6C18676B\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634567568_2083679522475760_8471192864340733892_n.enc?ccb=11-4&oh=01_Q5Aa3wH8LPhszJEb7HnCnTOpGkMF5gDUey6zLeb95hhSpa6r0A&oe=69B745C9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ikd+Z6QF39A3a5djrTrYBmdbmnDqvstIIY\\/hcreMIC8=\",\"fileLength\":\"80830\",\"height\":1599,\"width\":690,\"mediaKey\":\"aSNfJ2aylbvCFF4uvI7oB2A4BXip9w7k7aQXgvn2264=\",\"fileEncSha256\":\"gykyUtl8GFdT3nPbhkHWo7OiLFSGvIvAVxfcFltnwcg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634567568_2083679522475760_8471192864340733892_n.enc?ccb=11-4&oh=01_Q5Aa3wH8LPhszJEb7HnCnTOpGkMF5gDUey6zLeb95hhSpa6r0A&oe=69B745C9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031578\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQ6c+xYBnU0NpmLGOgMqhmryZmwCgP\\/xAAgEAACAgEFAAMAAAAAAAAAAAAAAQIREgMQIUFRE1Jh\\/9oACAEBAAE\\/ANOWqtWWTWHRa3am8q9IUqtcl7ZTV8JilLxCb72jKGTy4L0vsKcF3s0rfBS6oxfiFl2Ny\\/CN90ZR9LTHCVijI+N+7ZSsyZkWx3ZT8FfgrP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"upyCZHTdNjJW9WedKLh95UT2MnTLz2M9bHjJjC38aCQJuigFsrbvnw==\",\"scanLengths\":[6685,37495,16799,19851],\"midQualityFileSha256\":\"qVcMiZf5MaG2bZChoZPvltCIt48NPQdmL9GBNoHqL4Q=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"N1p4KwJwJuDZYWCCrjeR1m+GG7KztEgWQqu2OaOBhiA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771031579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:12:59'),
(13756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC3C7AE6098480925FD4544A6C18676B\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634567568_2083679522475760_8471192864340733892_n.enc?ccb=11-4&oh=01_Q5Aa3wH8LPhszJEb7HnCnTOpGkMF5gDUey6zLeb95hhSpa6r0A&oe=69B745C9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ikd+Z6QF39A3a5djrTrYBmdbmnDqvstIIY\\/hcreMIC8=\",\"fileLength\":\"80830\",\"height\":1599,\"width\":690,\"mediaKey\":\"aSNfJ2aylbvCFF4uvI7oB2A4BXip9w7k7aQXgvn2264=\",\"fileEncSha256\":\"gykyUtl8GFdT3nPbhkHWo7OiLFSGvIvAVxfcFltnwcg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634567568_2083679522475760_8471192864340733892_n.enc?ccb=11-4&oh=01_Q5Aa3wH8LPhszJEb7HnCnTOpGkMF5gDUey6zLeb95hhSpa6r0A&oe=69B745C9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031578\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQ6c+xYBnU0NpmLGOgMqhmryZmwCgP\\/xAAgEAACAgEFAAMAAAAAAAAAAAAAAQIREgMQIUFRE1Jh\\/9oACAEBAAE\\/ANOWqtWWTWHRa3am8q9IUqtcl7ZTV8JilLxCb72jKGTy4L0vsKcF3s0rfBS6oxfiFl2Ny\\/CN90ZR9LTHCVijI+N+7ZSsyZkWx3ZT8FfgrP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"upyCZHTdNjJW9WedKLh95UT2MnTLz2M9bHjJjC38aCQJuigFsrbvnw==\",\"scanLengths\":[6685,37495,16799,19851],\"midQualityFileSha256\":\"qVcMiZf5MaG2bZChoZPvltCIt48NPQdmL9GBNoHqL4Q=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"N1p4KwJwJuDZYWCCrjeR1m+GG7KztEgWQqu2OaOBhiA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771031579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:12:59'),
(13757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:00'),
(13758, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:00'),
(13759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:00'),
(13760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:00'),
(13761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:00'),
(13762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:12:59.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:00'),
(13763, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:06'),
(13764, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IZ2x2w\\/I3WrqSLr2OfKhoagBqNp6EDPYmjhsg3cM\\/k4=\",\"fileLength\":\"122091\",\"height\":1600,\"width\":738,\"mediaKey\":\"qfy\\/O\\/oadPojCGf9skijLyytgiACHJMih6DMknZrI44=\",\"fileEncSha256\":\"614oN0h17FBXZyXpOE3RSZ9bQwVbipKbCat\\/P6SVv0w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031583\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMEAQYBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAPRCJl0LClMvYhbsnjkrQhrSoZMupXUa0QHcOmzIFf\\/EACEQAAICAgICAwEAAAAAAAAAAAABAhESIQRBEDETMkJR\\/9oACAEBAAE\\/AHv2Rk4vqiTi9p7E7ZJNmLMWRTXh5Cvwxyd1mVN\\/oipL27JukfIrMpJ9iJK00PHSsjvakK+yf1YoSS3Yk\\/4yLbfZJNoUZdoolKEGsnVmCuxaPZyeHDk43Jqj\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARARACBR\\/9oACAECAQE\\/ALeZbLDp\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgAQETEBEiD\\/2gAIAQMBAT8AhslC2RWxXx\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"gHwfaCF8ITdcRUSqJEMOmvZLR9HqZhaSGHA\\/2X9wgtCv6tQm0kX3Sw==\",\"scanLengths\":[9431,57710,24262,30688],\"midQualityFileSha256\":\"RjClgqT7oLv9oMzo8NnRGbDUtGNP4xYsuLB2rMX8MZ0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771031586,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:13:06'),
(13765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:06'),
(13766, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IZ2x2w\\/I3WrqSLr2OfKhoagBqNp6EDPYmjhsg3cM\\/k4=\",\"fileLength\":\"122091\",\"height\":1600,\"width\":738,\"mediaKey\":\"qfy\\/O\\/oadPojCGf9skijLyytgiACHJMih6DMknZrI44=\",\"fileEncSha256\":\"614oN0h17FBXZyXpOE3RSZ9bQwVbipKbCat\\/P6SVv0w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031583\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMEAQYBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAPRCJl0LClMvYhbsnjkrQhrSoZMupXUa0QHcOmzIFf\\/EACEQAAICAgICAwEAAAAAAAAAAAABAhESIQRBEDETMkJR\\/9oACAEBAAE\\/AHv2Rk4vqiTi9p7E7ZJNmLMWRTXh5Cvwxyd1mVN\\/oipL27JukfIrMpJ9iJK00PHSsjvakK+yf1YoSS3Yk\\/4yLbfZJNoUZdoolKEGsnVmCuxaPZyeHDk43Jqj\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARARACBR\\/9oACAECAQE\\/ALeZbLDp\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgAQETEBEiD\\/2gAIAQMBAT8AhslC2RWxXx\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"gHwfaCF8ITdcRUSqJEMOmvZLR9HqZhaSGHA\\/2X9wgtCv6tQm0kX3Sw==\",\"scanLengths\":[9431,57710,24262,30688],\"midQualityFileSha256\":\"RjClgqT7oLv9oMzo8NnRGbDUtGNP4xYsuLB2rMX8MZ0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771031586,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:13:06'),
(13767, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031586135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:13:06'),
(13768, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031586135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:13:07'),
(13769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:07'),
(13770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:06.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:07'),
(13771, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:08'),
(13772, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🚀🚀🚀🔥\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:13:08'),
(13773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:08'),
(13774, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"🚀🚀🚀🔥\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:13:08'),
(13775, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031588226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:13:08'),
(13776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:09'),
(13777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:09'),
(13778, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031588226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:08.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:13:09'),
(13779, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:39.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:39'),
(13780, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:39.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:39'),
(13781, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:49.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:13:49'),
(13782, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:13:49.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:13:50'),
(13783, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:00.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:14:00'),
(13784, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:00.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:14:00'),
(13785, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:01.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:14:01');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13786, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:01.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:14:01'),
(13787, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:14:02'),
(13788, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACE5306A42C9E1F6A18C3B80688F20D5\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635864843_1656524525708948_4068631203167944539_n.enc?ccb=11-4&oh=01_Q5Aa3wE11OYRrKJudJ7B_GjM0JJbwIKqJKFFrNaIgf5WjuJafw&oe=69B724F9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4E0Z4ywrzqbxHHhphWMVtcetMcXeRfQCun0UOa6I+hQ=\",\"fileLength\":\"47724\",\"seconds\":22,\"ptt\":true,\"mediaKey\":\"sQnBS7Wb3BTXVAMA3Yd4Pzs6k15SVL0LQhcSXXGFDH0=\",\"fileEncSha256\":\"dt78NRf7I4f7qFmXNuSDpoNFr+985r4tSkXlN4sGkdQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635864843_1656524525708948_4068631203167944539_n.enc?ccb=11-4&oh=01_Q5Aa3wE11OYRrKJudJ7B_GjM0JJbwIKqJKFFrNaIgf5WjuJafw&oe=69B724F9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031621\",\"waveform\":\"CkcnPks+IjoxGkRJNENALyc2R0Y2TjxFMTIsUE5QRCUgQhcWFx0VElZFOyc8JC9JUiYdLDJKGhgiRD08PRg2Mw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tuJDIJUIWyRQZXzAvQ\\/qaXLbWpIz9\\/6vzuPNO2c6ICE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031642,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:14:02'),
(13789, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:14:02'),
(13790, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACE5306A42C9E1F6A18C3B80688F20D5\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635864843_1656524525708948_4068631203167944539_n.enc?ccb=11-4&oh=01_Q5Aa3wE11OYRrKJudJ7B_GjM0JJbwIKqJKFFrNaIgf5WjuJafw&oe=69B724F9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4E0Z4ywrzqbxHHhphWMVtcetMcXeRfQCun0UOa6I+hQ=\",\"fileLength\":\"47724\",\"seconds\":22,\"ptt\":true,\"mediaKey\":\"sQnBS7Wb3BTXVAMA3Yd4Pzs6k15SVL0LQhcSXXGFDH0=\",\"fileEncSha256\":\"dt78NRf7I4f7qFmXNuSDpoNFr+985r4tSkXlN4sGkdQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635864843_1656524525708948_4068631203167944539_n.enc?ccb=11-4&oh=01_Q5Aa3wE11OYRrKJudJ7B_GjM0JJbwIKqJKFFrNaIgf5WjuJafw&oe=69B724F9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031621\",\"waveform\":\"CkcnPks+IjoxGkRJNENALyc2R0Y2TjxFMTIsUE5QRCUgQhcWFx0VElZFOyc8JC9JUiYdLDJKGhgiRD08PRg2Mw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tuJDIJUIWyRQZXzAvQ\\/qaXLbWpIz9\\/6vzuPNO2c6ICE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031642,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:14:02'),
(13791, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:14:02'),
(13792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:14:03'),
(13793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:14:03'),
(13794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:14:02.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:14:03'),
(13795, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031703914,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:03.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:04'),
(13796, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031703914,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:03.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:04'),
(13797, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031703908,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:03.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:04'),
(13798, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031703908,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:03.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:04'),
(13799, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:09'),
(13800, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5CCFF8BE66363F8B3B9B16FE915E2F2\"},\"pushName\":\"Erick\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636627907_1283525563822754_7645524917224543252_n.enc?ccb=11-4&oh=01_Q5Aa3wGHw_pKFL3LwadB-u45JMYnW48L3unVPs8Zx5IBBHx3IQ&oe=69B74235&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"MSUKyc6K263r1b3k5P7l1z0DqUMuCrWaIqV7nFxidMY=\",\"fileEncSha256\":\"rNlF2x6Z7gS521\\/8YZCXhOM\\/ytZ4rZ\\/7a\\/z+inVfS1Y=\",\"mediaKey\":\"Bb4ZyGnEW8UXcNIPNznT7Xzd6TFQJhC1YVR6j89NBko=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/636627907_1283525563822754_7645524917224543252_n.enc?ccb=11-4&oh=01_Q5Aa3wGHw_pKFL3LwadB-u45JMYnW48L3unVPs8Zx5IBBHx3IQ&oe=69B74235&_nc_sid=5e03e0\",\"fileLength\":\"13138\",\"mediaKeyTimestamp\":\"1771031707\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771031707821\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8OiY1ekXSlMFI0C35q66lpDnXHT9ehz\\/ia80X6QpEE0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771031709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:09'),
(13801, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:09'),
(13802, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5CCFF8BE66363F8B3B9B16FE915E2F2\"},\"pushName\":\"Erick\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636627907_1283525563822754_7645524917224543252_n.enc?ccb=11-4&oh=01_Q5Aa3wGHw_pKFL3LwadB-u45JMYnW48L3unVPs8Zx5IBBHx3IQ&oe=69B74235&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"MSUKyc6K263r1b3k5P7l1z0DqUMuCrWaIqV7nFxidMY=\",\"fileEncSha256\":\"rNlF2x6Z7gS521\\/8YZCXhOM\\/ytZ4rZ\\/7a\\/z+inVfS1Y=\",\"mediaKey\":\"Bb4ZyGnEW8UXcNIPNznT7Xzd6TFQJhC1YVR6j89NBko=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/636627907_1283525563822754_7645524917224543252_n.enc?ccb=11-4&oh=01_Q5Aa3wGHw_pKFL3LwadB-u45JMYnW48L3unVPs8Zx5IBBHx3IQ&oe=69B74235&_nc_sid=5e03e0\",\"fileLength\":\"13138\",\"mediaKeyTimestamp\":\"1771031707\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771031707821\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8OiY1ekXSlMFI0C35q66lpDnXHT9ehz\\/ia80X6QpEE0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771031709,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:09'),
(13803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:09'),
(13804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:10'),
(13805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:10'),
(13806, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wERMvspwuEVbKFMPUMNoq3GQkFdYWQrJN7_K6Um3VvhQQ&oe=699CDE65&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:09.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:10'),
(13807, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:23.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:24'),
(13808, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636769706_1963266350958323_5729506386511072313_n.enc?ccb=11-4&oh=01_Q5Aa3wF7O4aJ6WoqgnzQcdBRq1W4Qa4mfw394DhE08uH4ffzyw&oe=69B74ED7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OQT5pXxuPG+I5HwNLoLVgzXtvstiHppiIdwpzu2dyCM=\",\"fileLength\":\"91837\",\"seconds\":39,\"ptt\":true,\"mediaKey\":\"2XR+TXDFBIMHzng5VSM4I6X4uVuCru9TorP58juzHvk=\",\"fileEncSha256\":\"XGyxDE7QUq3Kh65KJ2fTO7I5z\\/k+vlGNLFjFBBWF+Tw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636769706_1963266350958323_5729506386511072313_n.enc?ccb=11-4&oh=01_Q5Aa3wF7O4aJ6WoqgnzQcdBRq1W4Qa4mfw394DhE08uH4ffzyw&oe=69B74ED7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031685\",\"waveform\":\"ACJLY0xJXVxcUFNHFU0LU1pfYUkkW1dZOVlbMiY5UV5SSVsQK19dWEYUCFdeWk9QAlBEQV1VX09YPT0HYlJYLg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:23.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:24'),
(13809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:24.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:24'),
(13810, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:23.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:24'),
(13811, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636769706_1963266350958323_5729506386511072313_n.enc?ccb=11-4&oh=01_Q5Aa3wF7O4aJ6WoqgnzQcdBRq1W4Qa4mfw394DhE08uH4ffzyw&oe=69B74ED7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OQT5pXxuPG+I5HwNLoLVgzXtvstiHppiIdwpzu2dyCM=\",\"fileLength\":\"91837\",\"seconds\":39,\"ptt\":true,\"mediaKey\":\"2XR+TXDFBIMHzng5VSM4I6X4uVuCru9TorP58juzHvk=\",\"fileEncSha256\":\"XGyxDE7QUq3Kh65KJ2fTO7I5z\\/k+vlGNLFjFBBWF+Tw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636769706_1963266350958323_5729506386511072313_n.enc?ccb=11-4&oh=01_Q5Aa3wF7O4aJ6WoqgnzQcdBRq1W4Qa4mfw394DhE08uH4ffzyw&oe=69B74ED7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031685\",\"waveform\":\"ACJLY0xJXVxcUFNHFU0LU1pfYUkkW1dZOVlbMiY5UV5SSVsQK19dWEYUCFdeWk9QAlBEQV1VX09YPT0HYlJYLg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031723,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:23.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:24'),
(13812, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031725138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:25.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:25'),
(13813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031725138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:25.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:25'),
(13814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:24.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:25'),
(13815, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636727257_937344845401767_6885467738149260185_n.enc?ccb=11-4&oh=01_Q5Aa3wEkwFdq43WEFakgaIuXq_dVnHe-EdqwWHY8WtLIjxPFvA&oe=69B7248B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Mu1Cz7Du3JeZgeykHn\\/dzh1HuBgNBF2iz5RoVoMCBAk=\",\"fileLength\":\"31325\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"CEuAurqCcUAFQHllq4I3kESzjwz36omNINieaGeXUVs=\",\"fileEncSha256\":\"YvjArGdqZ93xNImQ6tZ82QQrzhDR7XCi8xIYDfN2fA0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636727257_937344845401767_6885467738149260185_n.enc?ccb=11-4&oh=01_Q5Aa3wEkwFdq43WEFakgaIuXq_dVnHe-EdqwWHY8WtLIjxPFvA&oe=69B7248B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031726\",\"waveform\":\"ABAdFyZaYGFdY0dLUUs9VUVUERNeVU9cS1otVVNQQFZdT0c6XmBGV0UmSFhKNzRSSlRfL0ZVWw1QS1EwVFBREQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:38'),
(13816, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:38'),
(13817, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:38'),
(13818, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636727257_937344845401767_6885467738149260185_n.enc?ccb=11-4&oh=01_Q5Aa3wEkwFdq43WEFakgaIuXq_dVnHe-EdqwWHY8WtLIjxPFvA&oe=69B7248B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Mu1Cz7Du3JeZgeykHn\\/dzh1HuBgNBF2iz5RoVoMCBAk=\",\"fileLength\":\"31325\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"CEuAurqCcUAFQHllq4I3kESzjwz36omNINieaGeXUVs=\",\"fileEncSha256\":\"YvjArGdqZ93xNImQ6tZ82QQrzhDR7XCi8xIYDfN2fA0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636727257_937344845401767_6885467738149260185_n.enc?ccb=11-4&oh=01_Q5Aa3wEkwFdq43WEFakgaIuXq_dVnHe-EdqwWHY8WtLIjxPFvA&oe=69B7248B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031726\",\"waveform\":\"ABAdFyZaYGFdY0dLUUs9VUVUERNeVU9cS1otVVNQQFZdT0c6XmBGV0UmSFhKNzRSSlRfL0ZVWw1QS1EwVFBREQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:38'),
(13819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:38'),
(13820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:39'),
(13821, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031738703,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:39'),
(13822, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031738703,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:38.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:40'),
(13823, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"120363024713628084@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"120363081473051158@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:42.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:15:42'),
(13824, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"120363024713628084@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"120363081473051158@g.us\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:42.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:15:42'),
(13825, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031748537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:48.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:48'),
(13826, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031748542,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:48.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:48'),
(13827, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031748537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:48.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:48'),
(13828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031748542,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:48.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:48'),
(13829, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771031750687,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:50.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:15:50'),
(13830, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5AA624F3F43EC84222BC72D9EE2145A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771031750687,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:15:50.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:15:50'),
(13831, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771031794098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:16:34.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:16:34'),
(13832, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5BEACBD4A7DCF65E9762CCA3CF1AB49\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771031794098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:16:34.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:16:34'),
(13833, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:19.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:19'),
(13834, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:19.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:19'),
(13835, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:24.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:24'),
(13836, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:24.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:24'),
(13837, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:28.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:28'),
(13838, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:28.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:28'),
(13839, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:29.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:29'),
(13840, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:29.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:29'),
(13841, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:31.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:31'),
(13842, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:31.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:31'),
(13843, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:32.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:32'),
(13844, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC82277617CE150E5BCA9FFE99E32BF5\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/20099133_1489699855996447_5760302763957187809_n.enc?ccb=11-4&oh=01_Q5Aa3wEsuxMK1HnSrzAqv95Ki4QpEQq1xdCEt3H-D-JNYclQzg&oe=69B728DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"r3fttKdc1hU9XlMQF5AbntP5cjN5Lp2WK6y+XuMiJvI=\",\"fileLength\":\"5141\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"RexnICcLW6XrAt2yCYs81CtYTq\\/dSnGIFQ6v0nh+bU0=\",\"fileEncSha256\":\"zkeyTynSHwzkSfokaNJU2Cv1AYWXDM6oEKnp27cu6bc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/20099133_1489699855996447_5760302763957187809_n.enc?ccb=11-4&oh=01_Q5Aa3wEsuxMK1HnSrzAqv95Ki4QpEQq1xdCEt3H-D-JNYclQzg&oe=69B728DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031851\",\"waveform\":\"AAQIDBAQDQwLCAgJCTBVW1hOOD9RW11bW1pYTUU\\/NzU5OSwRKjo7Q0Y+PTkvO0pOTUtLSklGOioUDhEPDg8LCQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JZSqMTgGwwGIhfJlWaF6fiVPTiPHqcvVakivYFZyvOA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:32.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:17:32'),
(13845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:32.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:32'),
(13846, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC82277617CE150E5BCA9FFE99E32BF5\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/20099133_1489699855996447_5760302763957187809_n.enc?ccb=11-4&oh=01_Q5Aa3wEsuxMK1HnSrzAqv95Ki4QpEQq1xdCEt3H-D-JNYclQzg&oe=69B728DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"r3fttKdc1hU9XlMQF5AbntP5cjN5Lp2WK6y+XuMiJvI=\",\"fileLength\":\"5141\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"RexnICcLW6XrAt2yCYs81CtYTq\\/dSnGIFQ6v0nh+bU0=\",\"fileEncSha256\":\"zkeyTynSHwzkSfokaNJU2Cv1AYWXDM6oEKnp27cu6bc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/20099133_1489699855996447_5760302763957187809_n.enc?ccb=11-4&oh=01_Q5Aa3wEsuxMK1HnSrzAqv95Ki4QpEQq1xdCEt3H-D-JNYclQzg&oe=69B728DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031851\",\"waveform\":\"AAQIDBAQDQwLCAgJCTBVW1hOOD9RW11bW1pYTUU\\/NzU5OSwRKjo7Q0Y+PTkvO0pOTUtLSklGOioUDhEPDg8LCQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JZSqMTgGwwGIhfJlWaF6fiVPTiPHqcvVakivYFZyvOA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771031852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:32.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:17:33'),
(13847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:33.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:33'),
(13848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:32.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:17:33'),
(13849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:33.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:33'),
(13850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:17:32.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:17:33'),
(13851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:12.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:12'),
(13852, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:12.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:12'),
(13853, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5476D58522C24AE64B9004742406F73\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41131},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41131},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:12.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:18:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:12.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:12'),
(13855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:12.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:13'),
(13856, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B0174E93576A70C84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031893,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:13.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:13'),
(13857, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B0174E93576A70C84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031893,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:13.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:13'),
(13858, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5476D58522C24AE64B9004742406F73\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41131},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41131},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:12.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:18:13'),
(13859, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07FEFAEAA1302C0F1FB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031893,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:14.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:14'),
(13860, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07FEFAEAA1302C0F1FB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031893,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:14.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:14'),
(13861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:19'),
(13862, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A55846FECB4D364D5FD38442D751733E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Cida\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41136},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41136},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:18:19'),
(13863, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:19'),
(13864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:19'),
(13865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:19'),
(13866, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FA2DB8B487569602DC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Cida*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031899,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:20'),
(13867, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FA2DB8B487569602DC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Cida*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031899,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:20'),
(13868, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A55846FECB4D364D5FD38442D751733E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Cida\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41136},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41136},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:19.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:18:20'),
(13869, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0252715383D4133B523\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031900,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:20.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:20'),
(13870, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0252715383D4133B523\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031900,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:20.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:20'),
(13871, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EB64A7396D4CEC97F0A6FF01D2440A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"24998762401\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41144},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41144},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031907,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:18:27'),
(13872, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:27'),
(13873, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:27'),
(13874, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:27'),
(13875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:27'),
(13876, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055082F0F83919D412B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *24 99876-2401*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031907,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:28'),
(13877, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055082F0F83919D412B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *24 99876-2401*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031907,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:28'),
(13878, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EB64A7396D4CEC97F0A6FF01D2440A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"24998762401\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41144},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41144},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031907,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:27.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:18:28'),
(13879, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03C7CE855B9B480D045\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031908,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:28.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:28'),
(13880, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03C7CE855B9B480D045\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031908,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:28.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:28'),
(13881, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:32'),
(13882, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A949971CDE4CD8C678FA079812ED01\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41149},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41149},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031912,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:18:32'),
(13883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:32'),
(13884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:32'),
(13885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:32'),
(13886, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04F9D98117A93556515\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031912,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:33'),
(13887, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04F9D98117A93556515\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 40,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031912,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:33'),
(13888, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A949971CDE4CD8C678FA079812ED01\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"40\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41149},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41149},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031912,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:32.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:18:33'),
(13889, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB065AF84AF135D18921F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031913,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:34.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:34'),
(13890, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB065AF84AF135D18921F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031913,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:34.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:34'),
(13891, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:41'),
(13892, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A52BA980CA4A997E55D8EAE81F7B93A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41158},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41158},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031921,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:18:41'),
(13893, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:41'),
(13894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:41'),
(13895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:41'),
(13896, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A7ED11922B5C0A5431\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031921,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:42'),
(13897, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A7ED11922B5C0A5431\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031921,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:42'),
(13898, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A52BA980CA4A997E55D8EAE81F7B93A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41158},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41158},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031921,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:41.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:18:42'),
(13899, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A73E4B43312916AEB3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031922,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:43.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:18:43'),
(13900, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A73E4B43312916AEB3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031922,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:18:43.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:18:43'),
(13901, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58A3B3D80C6464793F8B9A4284C67D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"15\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41182},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41182},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:05.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:19:05'),
(13902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:05.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:19:05'),
(13903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:05.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:19:05'),
(13904, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:05.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:19:06'),
(13905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:05.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:19:06'),
(13906, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04318518104D77621A1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Cida\\n📱 *WhatsApp:* 24 99876-2401\\n💰 *Valor:* R$ 40,00\\n📅 *Vencimento:* 15\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 41\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031946,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:06.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:19:06'),
(13907, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04318518104D77621A1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Cida\\n📱 *WhatsApp:* 24 99876-2401\\n💰 *Valor:* R$ 40,00\\n📅 *Vencimento:* 15\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 41\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031946,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:06.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:19:06'),
(13908, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58A3B3D80C6464793F8B9A4284C67D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"15\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41182},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41182},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771031945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:05.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:19:06'),
(13909, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:30.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:19:31'),
(13910, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:30.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:19:31'),
(13911, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A4B7A7F5F8DDB80BFC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\n\\nOlá, *Cida*! 👋\\n\\nÉ um prazer ter você conosco!\\n\\n📋 *Informações da sua conta:*\\n• Plano: *mensal*\\n• Valor mensal: *R$ 40,00*\\n• Próximo vencimento: *15\\/03\\/2026*\\n\\n💡 *Comandos úteis:*\\n• *\\/pago* - Confirmar pagamento\\n• *\\/vencimento* - Ver próximo vencimento\\n• *\\/status* - Verificar situação\\n• *\\/ajuda* - Lista completa de comandos\\n\\nQualquer dúvida, estamos à disposição!\\n\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031972,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:32.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:19:32'),
(13912, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A4B7A7F5F8DDB80BFC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\n\\nOlá, *Cida*! 👋\\n\\nÉ um prazer ter você conosco!\\n\\n📋 *Informações da sua conta:*\\n• Plano: *mensal*\\n• Valor mensal: *R$ 40,00*\\n• Próximo vencimento: *15\\/03\\/2026*\\n\\n💡 *Comandos úteis:*\\n• *\\/pago* - Confirmar pagamento\\n• *\\/vencimento* - Ver próximo vencimento\\n• *\\/status* - Verificar situação\\n• *\\/ajuda* - Lista completa de comandos\\n\\nQualquer dúvida, estamos à disposição!\\n\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771031972,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:32.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:19:32'),
(13913, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"id\":\"3EB0A4B7A7F5F8DDB80BFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031973818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:33.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:19:33'),
(13914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"id\":\"3EB0A4B7A7F5F8DDB80BFC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771031973818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:33.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:19:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13915, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"3EB0A4B7A7F5F8DDB80BFC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031995483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:55.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:19:55'),
(13916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"3EB0A4B7A7F5F8DDB80BFC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771031995483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:19:55.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:19:55'),
(13917, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:09.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:20:09'),
(13918, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:09.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:20:09'),
(13919, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:15.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:20:15'),
(13920, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:15.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:20:15'),
(13921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:16.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:20:16'),
(13922, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:16.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:20:16'),
(13923, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:16.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:20:16'),
(13924, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:20:16.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:20:17'),
(13925, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59BD24078782022FC98AEA12E200782\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032282335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:42.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:24:42'),
(13926, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A59BD24078782022FC98AEA12E200782\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032282335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:42.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:24:43'),
(13927, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A50CDCE0C3658A9B89CC49D7F1FEEE22\"},\"pushName\":\"carolla\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d51ZBSDE1ifhN9wQDVrHVQs\\/J4L9gW5nr\\/27aqMxeMM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771032297,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:24:57'),
(13928, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:24:57'),
(13929, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:24:57'),
(13930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:24:57'),
(13931, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A50CDCE0C3658A9B89CC49D7F1FEEE22\"},\"pushName\":\"carolla\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d51ZBSDE1ifhN9wQDVrHVQs\\/J4L9gW5nr\\/27aqMxeMM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771032297,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:24:57'),
(13932, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A555104747CB6EC01AB3C918781AA7E4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032298226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:58.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:24:58'),
(13933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:24:58'),
(13934, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A555104747CB6EC01AB3C918781AA7E4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032298226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:58.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:24:58'),
(13935, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:24:58'),
(13936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:57.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:24:59'),
(13937, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A555104747CB6EC01AB3C918781AA7E4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771032299,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:59.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:24:59'),
(13938, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:59.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:24:59'),
(13939, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:59.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:24:59'),
(13940, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A555104747CB6EC01AB3C918781AA7E4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771032299,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:59.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:24:59'),
(13941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:59.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:25:00'),
(13942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:24:59.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:25:02');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13943, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp1X68FFaYBxvuqybHbE-Tjv6T6J87UZYu1oqKpTmhMA&oe=699CCC1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXprVOraopGivM_gpJIt8W6yUdYDj8602LkK4S-PcOdw&oe=699CF318&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvN8Sd0wJJltScK_OCmwC9qiJsucYzlasCDtFSzqANIg&oe=699CC3AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaeFz5_Y4hoF6Np3rROfOhf14Bmp2N5TjH3NWEG1Zfwg&oe=699CC96E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlkJrkt5k39UAzcfut-RoKDSMpqnJkAwSTXNWc4b0aTg&oe=699CC947&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0kHZB3oVoB__IKzwRQhbYhtLWvYc1SLcyZXT3o2FNAg&oe=699CC9E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"prof', 1, '2026-02-13 22:25:02');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13944, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp1X68FFaYBxvuqybHbE-Tjv6T6J87UZYu1oqKpTmhMA&oe=699CCC1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXprVOraopGivM_gpJIt8W6yUdYDj8602LkK4S-PcOdw&oe=699CF318&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvN8Sd0wJJltScK_OCmwC9qiJsucYzlasCDtFSzqANIg&oe=699CC3AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaeFz5_Y4hoF6Np3rROfOhf14Bmp2N5TjH3NWEG1Zfwg&oe=699CC96E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlkJrkt5k39UAzcfut-RoKDSMpqnJkAwSTXNWc4b0aTg&oe=699CC947&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0kHZB3oVoB__IKzwRQhbYhtLWvYc1SLcyZXT3o2FNAg&oe=699CC9E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"prof', 1, '2026-02-13 22:25:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:06.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:06'),
(13946, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:06.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:07'),
(13947, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:07'),
(13948, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:07'),
(13949, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:07'),
(13950, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":false,\"id\":\"AC33F80187007CA3977E367D366EE98C\"},\"pushName\":\"JUNR🦦#R@mBo\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636271119_870877155815193_3568124292729629811_n.enc?ccb=11-4&oh=01_Q5Aa3wF5yF0WN_0Vj_RNkprfHS2GnJMPUOxf-G3HoKWERvCyXw&oe=69B739DA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"CNEdSpaq48f4hWg3SJ9smPp657NRP\\/CIkeJBFAsNYhY=\",\"fileLength\":\"87228\",\"height\":2269,\"width\":635,\"mediaKey\":\"gmxIm7LvM8836o03Dl22RhiqDwFDVGZsx6\\/zTdVl+S4=\",\"fileEncSha256\":\"nxMd9LWBCX6b+gIHZJ229da7QFn58eSBRSuxDEXtqmk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636271119_870877155815193_3568124292729629811_n.enc?ccb=11-4&oh=01_Q5Aa3wF5yF0WN_0Vj_RNkprfHS2GnJMPUOxf-G3HoKWERvCyXw&oe=69B739DA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032544\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEcAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAQAAAAAAAAAAAAAAAQMCBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPpbkNUGV0oBjt5vQUHN56KAAD\\/\\/xAAhEAEAAgIBAwUAAAAAAAAAAAABAhEAECESImEDMUJDUf\\/aAAgBAQABPwAF+W+4vucOftTxhiTv3MhEOZHOuovfpkJsrXAo0wRUvIzQqtUfmUas30Hnf\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":544}},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KEk1e6ZqP39h4\\/DnKlnvKbKLTtQdp3irAQ06LmANRVY=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":544},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771032547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:07'),
(13951, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:07'),
(13952, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:07'),
(13953, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"pushName\":\"JUNR🦦#R@mBo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:07'),
(13954, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:07'),
(13955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":false,\"id\":\"AC33F80187007CA3977E367D366EE98C\"},\"pushName\":\"JUNR🦦#R@mBo\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636271119_870877155815193_3568124292729629811_n.enc?ccb=11-4&oh=01_Q5Aa3wF5yF0WN_0Vj_RNkprfHS2GnJMPUOxf-G3HoKWERvCyXw&oe=69B739DA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"CNEdSpaq48f4hWg3SJ9smPp657NRP\\/CIkeJBFAsNYhY=\",\"fileLength\":\"87228\",\"height\":2269,\"width\":635,\"mediaKey\":\"gmxIm7LvM8836o03Dl22RhiqDwFDVGZsx6\\/zTdVl+S4=\",\"fileEncSha256\":\"nxMd9LWBCX6b+gIHZJ229da7QFn58eSBRSuxDEXtqmk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636271119_870877155815193_3568124292729629811_n.enc?ccb=11-4&oh=01_Q5Aa3wF5yF0WN_0Vj_RNkprfHS2GnJMPUOxf-G3HoKWERvCyXw&oe=69B739DA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032544\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEcAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAQAAAAAAAAAAAAAAAQMCBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPpbkNUGV0oBjt5vQUHN56KAAD\\/\\/xAAhEAEAAgIBAwUAAAAAAAAAAAABAhEAECESImEDMUJDUf\\/aAAgBAQABPwAF+W+4vucOftTxhiTv3MhEOZHOuovfpkJsrXAo0wRUvIzQqtUfmUas30Hnf\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":544}},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KEk1e6ZqP39h4\\/DnKlnvKbKLTtQdp3irAQ06LmANRVY=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":544},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771032547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:07'),
(13956, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":true,\"id\":\"A5BF654FBBACE5DEFB0EE425376D286C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771032547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:07'),
(13957, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"pushName\":\"JUNR🦦#R@mBo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:07'),
(13958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"A5BF654FBBACE5DEFB0EE425376D286C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032547811,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:08'),
(13959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"pushName\":\"JUNR🦦#R@mBo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:08'),
(13960, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":true,\"id\":\"A5BF654FBBACE5DEFB0EE425376D286C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771032547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:08'),
(13961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"pushName\":\"JUNR🦦#R@mBo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:08'),
(13962, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"A5BF654FBBACE5DEFB0EE425376D286C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032547811,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:07.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:08'),
(13963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52476C009ED47937DFE46A265E6D3CE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032570624,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:30'),
(13964, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A52476C009ED47937DFE46A265E6D3CE\"},\"pushName\":\"J T V P L A Y\",\"message\":[],\"messageTimestamp\":1771032570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:30'),
(13965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52476C009ED47937DFE46A265E6D3CE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032570624,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:30'),
(13966, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A52476C009ED47937DFE46A265E6D3CE\"},\"pushName\":\"J T V P L A Y\",\"message\":[],\"messageTimestamp\":1771032570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:30'),
(13967, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:31'),
(13968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:31'),
(13969, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:31'),
(13970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:31'),
(13971, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A537EA6E235B25E588E790147FFF6399\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"YrLlglqwO2zcuThfjCbvo0+ZY6PeUlPoh6bgf2GEiNQ=\",\"fileLength\":\"11767949\",\"seconds\":67,\"mediaKey\":\"kBGNXDMjQO3dLeZgFjW3SACxd7WeikmFDd6Wsq9BVJk=\",\"height\":850,\"width\":392,\"fileEncSha256\":\"dZ31kUhOdLpo7ng5bulcuHvAutrrRW8m2SEhpTb1bFw=\",\"directPath\":\"\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031450\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMBBgQFAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAAD7bsslNmSWJl0kb+bOa7Osy4G+uR5AZ7J+LJO2OFLqTJSl3MIGA7ANMBQD\\/8QAJxAAAQMCBQMFAQAAAAAAAAAAAQACEQQhAxASIjEUQVMTMlFSYWL\\/2gAIAQEAAT8AqDjbPSAMncgXtcRG1NJI3CFY91ITrBSY5CHF0I7ZYntK9Vvt\\/FraWSHQmEQBJOT7NKab6dFipEAFlgmF0CwAycARdPLDzqsgGu+bKDOQqqnyPXVVPkehVVH3eupqPu9dbUeVyEQDBREgQ0riJBUs+Dk2IG5A2u88In+k6LAO7Xy1EQhikdgnY7ncgLWcv\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAAQARESMP\\/aAAgBAgEBPwCzSl0Z4f\\/EABsRAAEEAwAAAAAAAAAAAAAAAAEAAhAREjAx\\/9oACAEDAQE\\/ACaWUO7JCrR\\/\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"PJJDyky19yKiTjq67uU4BZrLlwK9x8ukyR3X+rxSgDPPQFDnoLctzPWSccosGbfyg3AiU+Ty8QcIfmaVG51syiuBloJF54x1m2NY0LIq0mIsVnsXICNVTIt20Lnc7Wd+LWzpm\\/XOsW+4Gxv1kw6nnmvFIX5byRPSgIUgE90x+a6WuZkyjRtvJy3\\/bntebtgQk3JlBC6ZISD1Is38l6FOtIwF2gAa\\/urUHBq2RADpZzHvFBjTHTibz0bTK+iOl9J4jcFTdnX6koib1S\\/N4HyuUPWjBfZGP6EbcE4iKMTSihgVYo\\/zzQa9uMVOCTDx8UOCGmD70jCqwKHj+Ers6lrQPASSa1ZO95RiM62ecu3Iy6cm5zxuhjAtsRp8S9Lj2qSwM1dgmSvMHwA05o0YJYa3CREWQIBXS1hDhVkHA7UsD7\\/LyUgXbAerxp\\/M9za9neVAkbIQ3OZ6uJEnteKkmzmTp61n7r0zSXhbu6c+diJKYDNWdFouzOsJQWX1kRD\\/SGHod+rAFvcXzC723BGw+ncdNyazn2F1QHuox8anw96oQA+vI45i63ljIyPG6FIygCrw8lG83ExRy1UhoiaNM2nGxTAzOvEX2hHP9DamLIR4InwWa9MInTnYoFbfvXwv\\/xLnbFCc\\/IpfXpd1WsOIHZAMDTINrjUN\\/XQII3YmkMObaj6f56GPbNAkMSzIo55NO+nSMUXYnOaxVaIqUkB58MjYWuluOQEDv2KPjKqrncsieTda6zO0r0RdlPrkfksbLoublhSeErX7oXaibwxWpn+AoiGD7xew8Y4CfjTBPD9j8g8vMLPRAU6JtLXNs\\/W0rYOTR5rxc8t2P+stStIf\\/ERS1khks0dW7xRrGM4Vzj6EaqS43ISctD1TahzSVN7w1vl0+kJpAak4ncViYPJUnrqjsSu0PMQhYwACYmLT3QJXA\\/OKGxrmI6LF8cP3x8fS4nPxxJOEJ03cLyngQzWiPxpYhdjyBPaTBPQNWIr8PplMak\\/uXPezvWXIxpG2\\/S0oJNWMYkUWT9CUFcd5hVk+ZGdCzzasLhz\\/Yl+f9aY\\/cI118Ym5UV1wlSK4rfhp+aV\\/YVtXZp5DJKT1dUpjBB+Wu37wcyn93TCsGPkxcOo3x3qU2wMOnOEZfxNngPhMqKVYAPUKyjzd0QIJZCDPKiNn\\/QmaJewrp8f9ptQtjLcMz3xBpSIaVlISpZfsy2i1awuxqsjW\\/WH4wedObyjMoDReNOi0gCe7S2UobVGbYlsGQ+41hGVEsG7RgVHqJo4JsSEcCysPrYKK67krhxO+zT2rggrzzntFBX7CpOVOi5ts4CvdJCW+9MoiHLAd6HiU1PK6NFPJxRbdg+mQU5jc5+8zgyM1mmPpmVI11FuYg9dEPbOvkyGycBGuwOALYqOqw9F3pLLsNYuluVtHOqATNNJZl8hFgymzaC33UVD6DZFeMivzNhsY\\/USoMPdYh0mWIfou+dQvTcuKRZjWfkmPHPQy5Eut1Jfy3OIcyzN8zPAUVnfZyMvIc3SiWzLxXaafpXorugxSj3yFheJgrVeVCfyFzMmyQV0ai3HpgBOHQHGoSTifuKizIwydIp\\/dzrW9hnjDFsxd5GE3gEvV8\\/b1s68EOVbAHLvArfXv7knYbp6Qi80r5JNaXmVc3YYFubh6rCIdm5SFCI9HbgrlCXIdqu1wuMxGlmtGXAGHt5\\/n7ZcX1ARD0uopKXrj4s\\/de9EzKb9yu8mRSTTcpCD8gcy6Vwm5AjROwUc3o6eL1kT5YU3eB4uRKPl45iGJT4hJF6BLXdkYe3tiQ7DP5oPCs4+I17nPBwlodAE2U8kQmpKewja5a9TnKn7FnuZtMr+AjeUsfEyXuLTqZS90yvtA7k1SKlCKcZEHVvAq54BSS8nuJvh7gZheHHgSyeYoATHTnnqya\\/A1vjFOKthNSRQes\\/BadmFNRI0M4RsvAS91JBoTfk2ve\\/rYV6nCbJu9MyX0gdBhF+Deg\\/2jOHrkwE2EpXxvUiejQeZ\\/\\/pR4WJuhVKmrBb23MQklA2htIOpK\\/n\\/ZyEFN1YortnEZVJGeWFIi7tM3x+wznMPvaicBKjzr5Le4+FAr\\/s3eyxES8sYuiwTnOgfaRtV3xALgf3OqWEqTJhFloevN0c8ae7Rx8gVV2mKL72ItxpKhPjekq+EFUksMA044Hb4o0uVDQ6zT8ofT6GdNIiyIPenOkQKE0zYx3FBbUOP+0y63qBC9gc01k0Y7TWMg2K3rm3SSS5z\\/\\/83lirOAxDDYDJUV8tQpV6boa9uwdEG8OR4SGtcI76IksnM3QapHTStNm9WlaR9GphUqm85Q9ygVDp1VJHETl8YlNzHfPblWeDQ70qG1dcmhpPp8+blQtewQ3AI6gNM2ulG7UtnlIhyaBFbW63sXOk7JOb7Q\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771032570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:31'),
(13972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A5186CC2A885CB5A35CC16C78528342C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IZ2x2w\\/I3WrqSLr2OfKhoagBqNp6EDPYmjhsg3cM\\/k4=\",\"fileLength\":\"122091\",\"height\":1600,\"width\":738,\"mediaKey\":\"qfy\\/O\\/oadPojCGf9skijLyytgiACHJMih6DMknZrI44=\",\"fileEncSha256\":\"614oN0h17FBXZyXpOE3RSZ9bQwVbipKbCat\\/P6SVv0w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031583\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMEAQYBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAPRCJl0LClMvYhbsnjkrQhrSoZMupXUa0QHcOmzIFf\\/EACEQAAICAgICAwEAAAAAAAAAAAABAhESIQRBEDETMkJR\\/9oACAEBAAE\\/AHv2Rk4vqiTi9p7E7ZJNmLMWRTXh5Cvwxyd1mVN\\/oipL27JukfIrMpJ9iJK00PHSsjvakK+yf1YoSS3Yk\\/4yLbfZJNoUZdoolKEGsnVmCuxaPZyeHDk43Jqj\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARARACBR\\/9oACAECAQE\\/ALeZbLDp\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgAQETEBEiD\\/2gAIAQMBAT8AhslC2RWxXx\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"gHwfaCF8ITdcRUSqJEMOmvZLR9HqZhaSGHA\\/2X9wgtCv6tQm0kX3Sw==\",\"scanLengths\":[9431,57710,24262,30688],\"midQualityFileSha256\":\"RjClgqT7oLv9oMzo8NnRGbDUtGNP4xYsuLB2rMX8MZ0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771032571,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:32'),
(13973, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A537EA6E235B25E588E790147FFF6399\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"YrLlglqwO2zcuThfjCbvo0+ZY6PeUlPoh6bgf2GEiNQ=\",\"fileLength\":\"11767949\",\"seconds\":67,\"mediaKey\":\"kBGNXDMjQO3dLeZgFjW3SACxd7WeikmFDd6Wsq9BVJk=\",\"height\":850,\"width\":392,\"fileEncSha256\":\"dZ31kUhOdLpo7ng5bulcuHvAutrrRW8m2SEhpTb1bFw=\",\"directPath\":\"\\/v\\/t62.7161-24\\/635017324_2044476239455338_6852334264705526757_n.enc?ccb=11-4&oh=01_Q5Aa3wGqoQeqWoUCunoCSuCrcvGBN8SwrBSQVuJI3pKB_xom9w&oe=69B7576F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031450\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAQAAAAAAAAAAAAAAAgMBBgQFAQEBAQEAAAAAAAAAAAAAAAAAAQID\\/9oADAMBAAIQAxAAAAD7bsslNmSWJl0kb+bOa7Osy4G+uR5AZ7J+LJO2OFLqTJSl3MIGA7ANMBQD\\/8QAJxAAAQMCBQMFAQAAAAAAAAAAAQACEQQhAxASIjEUQVMTMlFSYWL\\/2gAIAQEAAT8AqDjbPSAMncgXtcRG1NJI3CFY91ITrBSY5CHF0I7ZYntK9Vvt\\/FraWSHQmEQBJOT7NKab6dFipEAFlgmF0CwAycARdPLDzqsgGu+bKDOQqqnyPXVVPkehVVH3eupqPu9dbUeVyEQDBREgQ0riJBUs+Dk2IG5A2u88In+k6LAO7Xy1EQhikdgnY7ncgLWcv\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAAQARESMP\\/aAAgBAgEBPwCzSl0Z4f\\/EABsRAAEEAwAAAAAAAAAAAAAAAAEAAhAREjAx\\/9oACAEDAQE\\/ACaWUO7JCrR\\/\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"PJJDyky19yKiTjq67uU4BZrLlwK9x8ukyR3X+rxSgDPPQFDnoLctzPWSccosGbfyg3AiU+Ty8QcIfmaVG51syiuBloJF54x1m2NY0LIq0mIsVnsXICNVTIt20Lnc7Wd+LWzpm\\/XOsW+4Gxv1kw6nnmvFIX5byRPSgIUgE90x+a6WuZkyjRtvJy3\\/bntebtgQk3JlBC6ZISD1Is38l6FOtIwF2gAa\\/urUHBq2RADpZzHvFBjTHTibz0bTK+iOl9J4jcFTdnX6koib1S\\/N4HyuUPWjBfZGP6EbcE4iKMTSihgVYo\\/zzQa9uMVOCTDx8UOCGmD70jCqwKHj+Ers6lrQPASSa1ZO95RiM62ecu3Iy6cm5zxuhjAtsRp8S9Lj2qSwM1dgmSvMHwA05o0YJYa3CREWQIBXS1hDhVkHA7UsD7\\/LyUgXbAerxp\\/M9za9neVAkbIQ3OZ6uJEnteKkmzmTp61n7r0zSXhbu6c+diJKYDNWdFouzOsJQWX1kRD\\/SGHod+rAFvcXzC723BGw+ncdNyazn2F1QHuox8anw96oQA+vI45i63ljIyPG6FIygCrw8lG83ExRy1UhoiaNM2nGxTAzOvEX2hHP9DamLIR4InwWa9MInTnYoFbfvXwv\\/xLnbFCc\\/IpfXpd1WsOIHZAMDTINrjUN\\/XQII3YmkMObaj6f56GPbNAkMSzIo55NO+nSMUXYnOaxVaIqUkB58MjYWuluOQEDv2KPjKqrncsieTda6zO0r0RdlPrkfksbLoublhSeErX7oXaibwxWpn+AoiGD7xew8Y4CfjTBPD9j8g8vMLPRAU6JtLXNs\\/W0rYOTR5rxc8t2P+stStIf\\/ERS1khks0dW7xRrGM4Vzj6EaqS43ISctD1TahzSVN7w1vl0+kJpAak4ncViYPJUnrqjsSu0PMQhYwACYmLT3QJXA\\/OKGxrmI6LF8cP3x8fS4nPxxJOEJ03cLyngQzWiPxpYhdjyBPaTBPQNWIr8PplMak\\/uXPezvWXIxpG2\\/S0oJNWMYkUWT9CUFcd5hVk+ZGdCzzasLhz\\/Yl+f9aY\\/cI118Ym5UV1wlSK4rfhp+aV\\/YVtXZp5DJKT1dUpjBB+Wu37wcyn93TCsGPkxcOo3x3qU2wMOnOEZfxNngPhMqKVYAPUKyjzd0QIJZCDPKiNn\\/QmaJewrp8f9ptQtjLcMz3xBpSIaVlISpZfsy2i1awuxqsjW\\/WH4wedObyjMoDReNOi0gCe7S2UobVGbYlsGQ+41hGVEsG7RgVHqJo4JsSEcCysPrYKK67krhxO+zT2rggrzzntFBX7CpOVOi5ts4CvdJCW+9MoiHLAd6HiU1PK6NFPJxRbdg+mQU5jc5+8zgyM1mmPpmVI11FuYg9dEPbOvkyGycBGuwOALYqOqw9F3pLLsNYuluVtHOqATNNJZl8hFgymzaC33UVD6DZFeMivzNhsY\\/USoMPdYh0mWIfou+dQvTcuKRZjWfkmPHPQy5Eut1Jfy3OIcyzN8zPAUVnfZyMvIc3SiWzLxXaafpXorugxSj3yFheJgrVeVCfyFzMmyQV0ai3HpgBOHQHGoSTifuKizIwydIp\\/dzrW9hnjDFsxd5GE3gEvV8\\/b1s68EOVbAHLvArfXv7knYbp6Qi80r5JNaXmVc3YYFubh6rCIdm5SFCI9HbgrlCXIdqu1wuMxGlmtGXAGHt5\\/n7ZcX1ARD0uopKXrj4s\\/de9EzKb9yu8mRSTTcpCD8gcy6Vwm5AjROwUc3o6eL1kT5YU3eB4uRKPl45iGJT4hJF6BLXdkYe3tiQ7DP5oPCs4+I17nPBwlodAE2U8kQmpKewja5a9TnKn7FnuZtMr+AjeUsfEyXuLTqZS90yvtA7k1SKlCKcZEHVvAq54BSS8nuJvh7gZheHHgSyeYoATHTnnqya\\/A1vjFOKthNSRQes\\/BadmFNRI0M4RsvAS91JBoTfk2ve\\/rYV6nCbJu9MyX0gdBhF+Deg\\/2jOHrkwE2EpXxvUiejQeZ\\/\\/pR4WJuhVKmrBb23MQklA2htIOpK\\/n\\/ZyEFN1YortnEZVJGeWFIi7tM3x+wznMPvaicBKjzr5Le4+FAr\\/s3eyxES8sYuiwTnOgfaRtV3xALgf3OqWEqTJhFloevN0c8ae7Rx8gVV2mKL72ItxpKhPjekq+EFUksMA044Hb4o0uVDQ6zT8ofT6GdNIiyIPenOkQKE0zYx3FBbUOP+0y63qBC9gc01k0Y7TWMg2K3rm3SSS5z\\/\\/83lirOAxDDYDJUV8tQpV6boa9uwdEG8OR4SGtcI76IksnM3QapHTStNm9WlaR9GphUqm85Q9ygVDp1VJHETl8YlNzHfPblWeDQ70qG1dcmhpPp8+blQtewQ3AI6gNM2ulG7UtnlIhyaBFbW63sXOk7JOb7Q\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771032570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:30.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:32'),
(13974, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A5186CC2A885CB5A35CC16C78528342C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IZ2x2w\\/I3WrqSLr2OfKhoagBqNp6EDPYmjhsg3cM\\/k4=\",\"fileLength\":\"122091\",\"height\":1600,\"width\":738,\"mediaKey\":\"qfy\\/O\\/oadPojCGf9skijLyytgiACHJMih6DMknZrI44=\",\"fileEncSha256\":\"614oN0h17FBXZyXpOE3RSZ9bQwVbipKbCat\\/P6SVv0w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/13752756_1263912668941945_2569599661716891855_n.enc?ccb=11-4&oh=01_Q5Aa3wFMoz5AJPw1v2HO-9KF5iyqGrVNNI3BMN2jFhux7pjqMQ&oe=69B742B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771031583\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMEAQYBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAPRCJl0LClMvYhbsnjkrQhrSoZMupXUa0QHcOmzIFf\\/EACEQAAICAgICAwEAAAAAAAAAAAABAhESIQRBEDETMkJR\\/9oACAEBAAE\\/AHv2Rk4vqiTi9p7E7ZJNmLMWRTXh5Cvwxyd1mVN\\/oipL27JukfIrMpJ9iJK00PHSsjvakK+yf1YoSS3Yk\\/4yLbfZJNoUZdoolKEGsnVmCuxaPZyeHDk43Jqj\\/8QAGREBAAIDAAAAAAAAAAAAAAAAARARACBR\\/9oACAECAQE\\/ALeZbLDp\\/8QAGxEAAQQDAAAAAAAAAAAAAAAAAgAQETEBEiD\\/2gAIAQMBAT8AhslC2RWxXx\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"gHwfaCF8ITdcRUSqJEMOmvZLR9HqZhaSGHA\\/2X9wgtCv6tQm0kX3Sw==\",\"scanLengths\":[9431,57710,24262,30688],\"midQualityFileSha256\":\"RjClgqT7oLv9oMzo8NnRGbDUtGNP4xYsuLB2rMX8MZ0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771032571,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:32'),
(13975, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:32'),
(13976, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:32'),
(13977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:33'),
(13978, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:33'),
(13979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:29:33'),
(13980, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5186CC2A885CB5A35CC16C78528342C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032571591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:33'),
(13981, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:29:33'),
(13982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5186CC2A885CB5A35CC16C78528342C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032571591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:34'),
(13983, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A537EA6E235B25E588E790147FFF6399\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032571247,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:29:34'),
(13984, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A537EA6E235B25E588E790147FFF6399\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032571247,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:29:31.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:29:35'),
(13985, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:10'),
(13986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:10'),
(13987, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032610294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:30:10'),
(13988, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635923972_780584531192254_6362911782027854658_n.enc?ccb=11-4&oh=01_Q5Aa3wGWl1ez1-eObxzJDgeQwMcwQS7cYF0o2SbP-tjuftFHrw&oe=69B73428&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"VM5y1cu\\/bmukefooUMgu9ewnUSYb7RhMp7fjZF7hei0=\",\"fileLength\":\"83406\",\"seconds\":37,\"ptt\":true,\"mediaKey\":\"s0q895lSMz+PVykWpWX9NmhwQ2NryU93m+yKCqrkOmw=\",\"fileEncSha256\":\"YMrbagnXHsDqiw\\/EWtxKJA+VHuXoaIEolNpa\\/fcbEWk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635923972_780584531192254_6362911782027854658_n.enc?ccb=11-4&oh=01_Q5Aa3wGWl1ez1-eObxzJDgeQwMcwQS7cYF0o2SbP-tjuftFHrw&oe=69B73428&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032573\",\"waveform\":\"AFgdSlhTREhTJVhWKVkqVVIrVhAJLwgPYSlRVmBSMAAATFc8VEVAVkQuREpADyMkVgFNVloDVGE+TQMXDhUJSA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771032609,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:30:10'),
(13989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:10'),
(13990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:11'),
(13991, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032610294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:30:11'),
(13992, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635923972_780584531192254_6362911782027854658_n.enc?ccb=11-4&oh=01_Q5Aa3wGWl1ez1-eObxzJDgeQwMcwQS7cYF0o2SbP-tjuftFHrw&oe=69B73428&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"VM5y1cu\\/bmukefooUMgu9ewnUSYb7RhMp7fjZF7hei0=\",\"fileLength\":\"83406\",\"seconds\":37,\"ptt\":true,\"mediaKey\":\"s0q895lSMz+PVykWpWX9NmhwQ2NryU93m+yKCqrkOmw=\",\"fileEncSha256\":\"YMrbagnXHsDqiw\\/EWtxKJA+VHuXoaIEolNpa\\/fcbEWk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635923972_780584531192254_6362911782027854658_n.enc?ccb=11-4&oh=01_Q5Aa3wGWl1ez1-eObxzJDgeQwMcwQS7cYF0o2SbP-tjuftFHrw&oe=69B73428&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032573\",\"waveform\":\"AFgdSlhTREhTJVhWKVkqVVIrVhAJLwgPYSlRVmBSMAAATFc8VEVAVkQuREpADyMkVgFNVloDVGE+TQMXDhUJSA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771032609,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:10.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:30:11');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13993, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaeFz5_Y4hoF6Np3rROfOhf14Bmp2N5TjH3NWEG1Zfwg&oe=699CC96E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlkJrkt5k39UAzcfut-RoKDSMpqnJkAwSTXNWc4b0aTg&oe=699CC947&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0kHZB3oVoB__IKzwRQhbYhtLWvYc1SLcyZXT3o2FNAg&oe=699CC9E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 22:30:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13994, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0KT66x2VKlqfID25MLYZEbI-GiHU4oYin955HuSotJg&oe=699CC6CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuBPhCIutObJO7X2z0TrCDHIzxV5005QSeU5oZVkxUFw&oe=699CC710&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaeFz5_Y4hoF6Np3rROfOhf14Bmp2N5TjH3NWEG1Zfwg&oe=699CC96E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wGB9f4MNeRS_wIX73sSBeTpuiV--krwpi2Goby58VZ8pg&oe=699CC6C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-OYWoq6eWvBpLjG8zmzLHHBi__ZIXjPvJQAINhIMJDg&oe=699CC5A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU_hMaAZp_qSKwNwkNnR0Fqd75r_cCxlCBs501UEnS-Q&oe=699CC5F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9QLgO06e3fVDTkyvo-abW6hRap12Adp6rh8NcLIVmSQ&oe=699CC46E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlkJrkt5k39UAzcfut-RoKDSMpqnJkAwSTXNWc4b0aTg&oe=699CC947&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZIKH5KLkpZPMcRsNVzUVoDGIW4YVmuUkEfNbE04bIgw&oe=699CC620&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0kHZB3oVoB__IKzwRQhbYhtLWvYc1SLcyZXT3o2FNAg&oe=699CC9E0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 22:30:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(13995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:38.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:38'),
(13996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A55CFAF436D72C17BE4B3EC256937FEA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41876},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41876},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032638,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:38.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:30:38'),
(13997, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:38.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:38'),
(13998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:38.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:38'),
(13999, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:38.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:38'),
(14000, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00457F2CFEA2A45F938\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032639,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:39.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:39'),
(14001, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00457F2CFEA2A45F938\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032639,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:39.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:39'),
(14002, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A55CFAF436D72C17BE4B3EC256937FEA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41876},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41876},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032638,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:38.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:30:39'),
(14003, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB052997F4011B24B5E15\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032639,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:40.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:40'),
(14004, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB052997F4011B24B5E15\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032639,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:40.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:40'),
(14005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5ED26D05751F98FCDBC60F250BF5DEB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Elviz\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41886},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41886},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032649,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:49.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:30:49'),
(14006, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:49.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:49'),
(14007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:49.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:49'),
(14008, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:49.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:49'),
(14009, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:49.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:49'),
(14010, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A5EBC530D33F8DB12E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Elviz*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032649,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:50.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:50'),
(14011, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A5EBC530D33F8DB12E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *Elviz*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032649,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:50.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:50'),
(14012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5ED26D05751F98FCDBC60F250BF5DEB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Elviz\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41886},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41886},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032649,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:49.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:30:50'),
(14013, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F34690E39354005553\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032650,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:50.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:30:51'),
(14014, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F34690E39354005553\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Telefone inválido! Digite novamente (10 ou 11 dígitos):\\nExemplo: 4799999999 ou 4792083580\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032650,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:50.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:30:51'),
(14015, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A577772F2C2B6E2E9878DFDBE1ABE379\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1596880285\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41896},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41896},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032659,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:59.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:31:00'),
(14016, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:59.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:00'),
(14017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:00.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:00'),
(14018, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:59.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:00'),
(14019, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:00.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:00'),
(14020, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A577772F2C2B6E2E9878DFDBE1ABE379\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1596880285\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41896},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41896},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032659,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:30:59.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:31:01'),
(14021, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB043C57146966DC9D859\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *15 9688-0285*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032660,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:00.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:01'),
(14022, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB043C57146966DC9D859\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *15 9688-0285*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032660,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:00.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:01'),
(14023, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D1E795F1E8FEB8B33A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032661,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:01.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:01'),
(14024, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D1E795F1E8FEB8B33A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Valor inválido! Digite entre R$ 1,00 e R$ 1.000,00\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032661,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:01.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:01'),
(14025, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A594068EAD9D60F7F218F4716533CE39\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"60\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41904},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41904},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032668,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:31:08'),
(14026, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:08'),
(14027, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:08'),
(14028, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:08'),
(14029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:08'),
(14030, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A594068EAD9D60F7F218F4716533CE39\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"60\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41904},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41904},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032668,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:31:09'),
(14031, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05FE273651E92A994B7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 60,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032668,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:09'),
(14032, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05FE273651E92A994B7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 60,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032668,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:08.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:09'),
(14033, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB013F9452EF0793F1287\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032669,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:09.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:09'),
(14034, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB013F9452EF0793F1287\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Opção inválida! Digite 1, 2, 3 ou 4:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032669,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:09.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:09'),
(14035, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:16.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:16'),
(14036, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:16.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:16'),
(14037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D9828EEB9F050675DDD23E9846B217\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41913},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41913},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:16.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:31:16'),
(14038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:16.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:16'),
(14039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:16.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:16'),
(14040, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09D7DF803A0599A137F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032677,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:17.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:17'),
(14041, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09D7DF803A0599A137F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032677,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:17.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:17'),
(14042, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D9828EEB9F050675DDD23E9846B217\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"1\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41913},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41913},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:16.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:31:17'),
(14043, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B6C39377D3359D2CC4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032677,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:18.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:18'),
(14044, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B6C39377D3359D2CC4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ Formato inválido! Use:\\n• DD\\/MM (ex: 15\\/03)\\n• DD\\/MM\\/AAAA (ex: 15\\/03\\/2026)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032677,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:18.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:18'),
(14045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A56B47D44AFDBEAC8E133C1744288DC0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41931},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41931},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032694,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:34.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:31:34'),
(14046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:34.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:34'),
(14047, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:34.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:34'),
(14048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:34.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:34'),
(14049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXrJE5g9BOmTy6cM9vGyH3jJzBkqYCDSxItAJSR9Mnjg&oe=699CCFD4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:34.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:35'),
(14050, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4EBAC2E82D910F170\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Elviz\\n📱 *WhatsApp:* 15 9688-0285\\n💰 *Valor:* R$ 60,00\\n📅 *Vencimento:* 13\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 42\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032694,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:35.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:31:35'),
(14051, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4EBAC2E82D910F170\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* Elviz\\n📱 *WhatsApp:* 15 9688-0285\\n💰 *Valor:* R$ 60,00\\n📅 *Vencimento:* 13\\/03\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 42\\n─────────────────────\\n\\n✅ O cliente já pode usar o comando *\\/vencimento*\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032694,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:35.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:31:35'),
(14052, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A56B47D44AFDBEAC8E133C1744288DC0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"13\\/03\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41931},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":41931},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771032694,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:31:34.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:31:35'),
(14053, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:01.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:32:01'),
(14054, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:01.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:32:01'),
(14055, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0366157C5FE16DEF1E7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\n\\nOlá, *Elviz*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n📋 *Detalhes:*\\n💰 Valor: *R$ 60,00*\\n📅 Novo vencimento: *13\\/03\\/2026*\\n✅ Status: *Em dia*\\n\\nObrigado pela preferência! 🙏\\n\\nSeu acesso está garantido até *13\\/03\\/2026*.\\n\\n_Continue aproveitando nossos serviços!_ 🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032722,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:03.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:32:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14056, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0366157C5FE16DEF1E7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\n\\nOlá, *Elviz*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n📋 *Detalhes:*\\n💰 Valor: *R$ 60,00*\\n📅 Novo vencimento: *13\\/03\\/2026*\\n✅ Status: *Em dia*\\n\\nObrigado pela preferência! 🙏\\n\\nSeu acesso está garantido até *13\\/03\\/2026*.\\n\\n_Continue aproveitando nossos serviços!_ 🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771032722,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:03.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:32:03'),
(14057, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"id\":\"3EB0366157C5FE16DEF1E7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032724175,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:04.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:32:04'),
(14058, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"id\":\"3EB0366157C5FE16DEF1E7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771032724175,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:04.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:32:04'),
(14059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"3EB0366157C5FE16DEF1E7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032772375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:52.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:32:52'),
(14060, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"3EB0366157C5FE16DEF1E7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771032772375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:52.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:32:52'),
(14061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:59.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:32:59'),
(14062, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:32:59.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:33:00'),
(14063, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:33:00'),
(14064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:33:00'),
(14065, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":false,\"id\":\"AC1987CF7F0410E98E956A5F7CA09F58\"},\"pushName\":\"JUNR🦦#R@mBo\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":false,\"id\":\"3EB0366157C5FE16DEF1E7\"},\"text\":\"🙏🏼\",\"senderTimestampMs\":\"1771032777917\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771032780,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:33:00'),
(14066, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":false,\"id\":\"AC1987CF7F0410E98E956A5F7CA09F58\"},\"pushName\":\"JUNR🦦#R@mBo\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":false,\"id\":\"3EB0366157C5FE16DEF1E7\"},\"text\":\"🙏🏼\",\"senderTimestampMs\":\"1771032777917\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771032780,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:33:00'),
(14067, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:33:00'),
(14068, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:33:01'),
(14069, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:33:01'),
(14070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458991940_1058526252422131_6394006646375707451_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjYgS8HC4v7Y-T_Ed9u6s9_2vVYRpm4bUTYgx8nbvnUA&oe=699CEF87&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:33:00.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:33:01'),
(14071, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:39.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:40'),
(14072, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:39.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:40'),
(14073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:40'),
(14074, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:40'),
(14075, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A56CA68BCEC6E9CCB632D2FB2E5389C7\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k\\/g8Iovorsrw1rhTDh8jQEyoxyoqhMGaTvzk7CSCvBU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771033240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:40:40'),
(14076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:40'),
(14077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:41'),
(14078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:41'),
(14079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:41'),
(14080, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A56CA68BCEC6E9CCB632D2FB2E5389C7\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k\\/g8Iovorsrw1rhTDh8jQEyoxyoqhMGaTvzk7CSCvBU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771033240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:40.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:40:41'),
(14081, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:44.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:44'),
(14082, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:44.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:44'),
(14083, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:54.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:54'),
(14084, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:54.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:54'),
(14085, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:56'),
(14086, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:56'),
(14087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5FFC51207DCA52FB23B1715CFB0DF50\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Vou pagar 1100 pra Vanessa em 4 ampolas\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/loUpksmumWIcTr2BnULYDTPlnM1auWjEJjy3rdb7Qc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771033255,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:40:56'),
(14088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:56'),
(14089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5FFC51207DCA52FB23B1715CFB0DF50\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Vou pagar 1100 pra Vanessa em 4 ampolas\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/loUpksmumWIcTr2BnULYDTPlnM1auWjEJjy3rdb7Qc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771033255,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:40:56'),
(14090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:57'),
(14091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:40:57'),
(14092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:40:56.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:40:57'),
(14093, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:01.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:41:01'),
(14094, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:01.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:41:01'),
(14095, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:41:07'),
(14096, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A575003CD17529D5B49663AF056A40BB\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"Essa é a tabela q fiz\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A56CA68BCEC6E9CCB632D2FB2E5389C7\",\"participant\":\"554792012997@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i7SUVu9qtquNMPj4JQ9wj\\/j81WA39Hon7h70wNsebyg=\"}},\"contextInfo\":{\"stanzaId\":\"A56CA68BCEC6E9CCB632D2FB2E5389C7\",\"participant\":\"554792012997@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771033267,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:41:07'),
(14097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:41:07'),
(14098, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:41:07'),
(14099, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:41:07'),
(14100, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wFph0ZVOoc5m3uehLeZ-vVO7-OIH29gtlAMKi3-r4EI9A&oe=699CE972&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:41:08'),
(14101, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A575003CD17529D5B49663AF056A40BB\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"Essa é a tabela q fiz\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A56CA68BCEC6E9CCB632D2FB2E5389C7\",\"participant\":\"554792012997@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i7SUVu9qtquNMPj4JQ9wj\\/j81WA39Hon7h70wNsebyg=\"}},\"contextInfo\":{\"stanzaId\":\"A56CA68BCEC6E9CCB632D2FB2E5389C7\",\"participant\":\"554792012997@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771033267,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:41:08'),
(14102, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:07.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:41:08'),
(14103, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:38.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:41:38'),
(14104, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:38.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:41:38'),
(14105, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:42.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:41:42'),
(14106, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:41:42.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:41:42'),
(14107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:42:03'),
(14108, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52133635DCFCBA8F67508BF5863DD89\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:42:03'),
(14109, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5186CC2A885CB5A35CC16C78528342C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323528,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:42:03'),
(14110, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A537EA6E235B25E588E790147FFF6399\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:42:03'),
(14111, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:42:03'),
(14112, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5186CC2A885CB5A35CC16C78528342C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323528,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:42:04'),
(14113, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A537EA6E235B25E588E790147FFF6399\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:42:04'),
(14114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52133635DCFCBA8F67508BF5863DD89\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:42:04'),
(14115, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52476C009ED47937DFE46A265E6D3CE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:42:04'),
(14116, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A52476C009ED47937DFE46A265E6D3CE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771033323537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:03.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:42:04'),
(14117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771033326452,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:06.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:42:06'),
(14118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A5BE34ADA788A786F7D5BDDD32A95452\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771033326452,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:06.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:42:06'),
(14119, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:58.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:42:59'),
(14120, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"presences\":{\"193973742248049@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:42:58.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:42:59'),
(14121, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:43:00'),
(14122, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"AC58E1BDF5F472A2F81048B2DD3998A9\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"conversation\":\"Parada top\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jUoT1p1qSWz0lmxnzZu9vao2W6scSxly16l+nw2eU98=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771033380,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:43:00'),
(14123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:43:00'),
(14124, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:43:00'),
(14125, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":false,\"id\":\"AC58E1BDF5F472A2F81048B2DD3998A9\"},\"pushName\":\"Adieldson Monteiro\",\"message\":{\"conversation\":\"Parada top\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jUoT1p1qSWz0lmxnzZu9vao2W6scSxly16l+nw2eU98=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771033380,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:43:00'),
(14126, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:43:01'),
(14127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:43:01'),
(14128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:00.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:43:01');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14129, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A51BBB166D4FC28F7D39B576FA2DECD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771033382729,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:02.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:43:02'),
(14130, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193973742248049@lid\",\"id\":\"A51BBB166D4FC28F7D39B576FA2DECD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771033382729,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:02.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:43:02'),
(14131, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:04.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:43:04'),
(14132, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A51BBB166D4FC28F7D39B576FA2DECD5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771033384,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:04.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-13 22:43:04'),
(14133, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193973742248049@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:04.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:43:04'),
(14134, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193973742248049@lid\",\"fromMe\":true,\"id\":\"A51BBB166D4FC28F7D39B576FA2DECD5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771033384,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:04.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-13 22:43:04'),
(14135, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:04.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:43:04'),
(14136, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193973742248049@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/461210326_8557859220937282_5945614726963396674_n.jpg?ccb=11-4&oh=01_Q5Aa3wFRIvudXcg3ipIMfa9py-bYCcH0BOWGe4o3FbTj4WFgIw&oe=699CD723&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:43:04.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:43:05');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14137, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp1X68FFaYBxvuqybHbE-Tjv6T6J87UZYu1oqKpTmhMA&oe=699CCC1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXprVOraopGivM_gpJIt8W6yUdYDj8602LkK4S-PcOdw&oe=699CF318&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"prof', 1, '2026-02-13 22:54:50');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14138, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp1X68FFaYBxvuqybHbE-Tjv6T6J87UZYu1oqKpTmhMA&oe=699CCC1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXprVOraopGivM_gpJIt8W6yUdYDj8602LkK4S-PcOdw&oe=699CF318&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBxG8l0I6ZqcywnUzmE8sGzqUa4cCjv3MV9nqNGoD_g&oe=699CCC38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdMjc5rArUukI_A6PSXsGZsMFIIWXjuig0txuZAf7c3g&oe=699CCDCD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-bUkvHzXdJgmFcJ8QJk_Oc5-mpmTCO6zKz-ZScpBhoA&oe=699CCB45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wHI28ak935UREqk9JQZQMA1pLqinvju80nTPjCOkl9kJQ&oe=699CCCB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcP1xYel0XsDQMJX5UwQtxuQxuwm5aKTBWWoMVofyVFg&oe=699CCDFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJ5Inf7VXE4ucGoE5z1ANRBvKXKp9kLVq86B5RwWLShw&oe=699CCE35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyiixhYPOajwtK1rxkCf0FvEhGQz52OAAE8imymMEt5g&oe=699CCAFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0ffY6dUnStyALgfPpGYdCdEB7cHQQgMg9AOuILMPncg&oe=699CCA07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCjP0wUXWdjC-v8ZKaxHvZmjHywfipOteptxRJ3WN0EA&oe=699CCD17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"prof', 1, '2026-02-13 22:54:51');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14139, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:55:24.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-13 22:55:24'),
(14140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-13T22:55:24.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-13 22:55:24');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14141, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wF23BPJ_uIO4NEJ1qst0epfTblZwRK68bVxXe-vAXvG1w&oe=699D045F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx-pwVppnK-VBJB0B3fuerSQw_-IDaaF765Pe4goYDKQ&oe=699D0478&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6YlUah9Xsze5n-rAkBeCKosVDgsnzRA2AFe84u7FvJg&oe=699D060D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEII8gY3nWgQSuODZ2K_6Rn8OcdFgVRJ_CPlxt4Vs1ldA&oe=699D0385&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE-EL7GJPqDW0fKb8ZdrkdhWw1xcOpIhIPqUa9_anpOg&oe=699D04F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGed5rKCYExWTFcejsBlXmeDhHh_pylIiy_41ftsyHyJg&oe=699D063C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IMRJKhjLAz9DEbTuhXcM-RpeGMrbyWe_vxorFW3jdA&oe=699D0675&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVGXxVTnE_VhDaSorZIfSgvqVSWGI0RB_sb3czYCXMKQ&oe=699D033F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrx8eSDeenQ0VdAbve3PTWs0eXFPHvW_aD16q2zrjFtQ&oe=699D0247&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdoBsFmBKarmIGTjadYLQsHy3aVx8wcloxbWp49-jKCw&oe=699D0557&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5', 1, '2026-02-13 23:15:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14142, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wF23BPJ_uIO4NEJ1qst0epfTblZwRK68bVxXe-vAXvG1w&oe=699D045F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx-pwVppnK-VBJB0B3fuerSQw_-IDaaF765Pe4goYDKQ&oe=699D0478&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6YlUah9Xsze5n-rAkBeCKosVDgsnzRA2AFe84u7FvJg&oe=699D060D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEII8gY3nWgQSuODZ2K_6Rn8OcdFgVRJ_CPlxt4Vs1ldA&oe=699D0385&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE-EL7GJPqDW0fKb8ZdrkdhWw1xcOpIhIPqUa9_anpOg&oe=699D04F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGed5rKCYExWTFcejsBlXmeDhHh_pylIiy_41ftsyHyJg&oe=699D063C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IMRJKhjLAz9DEbTuhXcM-RpeGMrbyWe_vxorFW3jdA&oe=699D0675&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVGXxVTnE_VhDaSorZIfSgvqVSWGI0RB_sb3czYCXMKQ&oe=699D033F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrx8eSDeenQ0VdAbve3PTWs0eXFPHvW_aD16q2zrjFtQ&oe=699D0247&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdoBsFmBKarmIGTjadYLQsHy3aVx8wcloxbWp49-jKCw&oe=699D0557&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5', 1, '2026-02-13 23:15:19');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14143, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx-pwVppnK-VBJB0B3fuerSQw_-IDaaF765Pe4goYDKQ&oe=699D0478&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6YlUah9Xsze5n-rAkBeCKosVDgsnzRA2AFe84u7FvJg&oe=699D060D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEII8gY3nWgQSuODZ2K_6Rn8OcdFgVRJ_CPlxt4Vs1ldA&oe=699D0385&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE-EL7GJPqDW0fKb8ZdrkdhWw1xcOpIhIPqUa9_anpOg&oe=699D04F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGed5rKCYExWTFcejsBlXmeDhHh_pylIiy_41ftsyHyJg&oe=699D063C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IMRJKhjLAz9DEbTuhXcM-RpeGMrbyWe_vxorFW3jdA&oe=699D0675&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVGXxVTnE_VhDaSorZIfSgvqVSWGI0RB_sb3czYCXMKQ&oe=699D033F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrx8eSDeenQ0VdAbve3PTWs0eXFPHvW_aD16q2zrjFtQ&oe=699D0247&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdoBsFmBKarmIGTjadYLQsHy3aVx8wcloxbWp49-jKCw&oe=699D0557&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 23:15:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14144, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx-pwVppnK-VBJB0B3fuerSQw_-IDaaF765Pe4goYDKQ&oe=699D0478&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6YlUah9Xsze5n-rAkBeCKosVDgsnzRA2AFe84u7FvJg&oe=699D060D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEII8gY3nWgQSuODZ2K_6Rn8OcdFgVRJ_CPlxt4Vs1ldA&oe=699D0385&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE-EL7GJPqDW0fKb8ZdrkdhWw1xcOpIhIPqUa9_anpOg&oe=699D04F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGed5rKCYExWTFcejsBlXmeDhHh_pylIiy_41ftsyHyJg&oe=699D063C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IMRJKhjLAz9DEbTuhXcM-RpeGMrbyWe_vxorFW3jdA&oe=699D0675&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVGXxVTnE_VhDaSorZIfSgvqVSWGI0RB_sb3czYCXMKQ&oe=699D033F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrx8eSDeenQ0VdAbve3PTWs0eXFPHvW_aD16q2zrjFtQ&oe=699D0247&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdoBsFmBKarmIGTjadYLQsHy3aVx8wcloxbWp49-jKCw&oe=699D0557&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 23:15:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14145, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx-pwVppnK-VBJB0B3fuerSQw_-IDaaF765Pe4goYDKQ&oe=699D0478&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6YlUah9Xsze5n-rAkBeCKosVDgsnzRA2AFe84u7FvJg&oe=699D060D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEII8gY3nWgQSuODZ2K_6Rn8OcdFgVRJ_CPlxt4Vs1ldA&oe=699D0385&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE-EL7GJPqDW0fKb8ZdrkdhWw1xcOpIhIPqUa9_anpOg&oe=699D04F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGed5rKCYExWTFcejsBlXmeDhHh_pylIiy_41ftsyHyJg&oe=699D063C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IMRJKhjLAz9DEbTuhXcM-RpeGMrbyWe_vxorFW3jdA&oe=699D0675&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVGXxVTnE_VhDaSorZIfSgvqVSWGI0RB_sb3czYCXMKQ&oe=699D033F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrx8eSDeenQ0VdAbve3PTWs0eXFPHvW_aD16q2zrjFtQ&oe=699D0247&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdoBsFmBKarmIGTjadYLQsHy3aVx8wcloxbWp49-jKCw&oe=699D0557&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 23:15:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14146, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPZYs5VAWtXV738mQbZcBkQpMO1DN9sfrTz0ZnvrkLYA&oe=699CD1DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAa0_dpz5sE0fT3aDZmAAQvkVROLgsSGX_hcgjtxgK1Q&oe=699CF1E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0HL1JL6KaSFGA0BKCswYt0BXYQcIJAQ6Oqxlc5yOcFA&oe=699CEC19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGspq7xM_pMmQ9RXzfpaEPYEKXLc1DSXYt7rmNzUYLlSA&oe=699CF677&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRs2wDBLJSZRwnP-dgtov2FeArbUiI6V2bTQztM0NoPg&oe=699CF23B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGrjecYTjbiAvc4xF4R86a2DH1bzeuzq9jmLcjNJk4EQ&oe=699CDB00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmPMa9ylk79IRnXBjFAayTAV1ExpV7MW0444kBLEsZYg&oe=699CF483&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFg9APAOwe8pMN7lwIhLcRBa2eb6APnTY90aos9VTKQAg&oe=699CDB5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeJS7QRdRv3db4I4WdbrcQle74zKLvu1Sz41l_lSveRQ&oe=699CEB95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3qUAGlY1KMDpkZh24rHMc2kf0XB4ty_tgAUQHrDfqfw&oe=699CD995&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1Vv4F_J75iyIVhB_qEtTUOs-TN3vQTK-OkdKAaRfuvQ&oe=699CE716&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNgfnLhU2u_viB2GFViiJma-gU3klaP5Hgak5khl-Vvg&oe=699CE1CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGC-fZ7XE4-uAj1xXyppwwRrV6euyRV-LJW_L_aMLw8VA&oe=699CE4C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0fcMGjA_GxcI1I0KKRTNtuzoiZZgcKWfijMuUz6cKxw&oe=699CE262&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn4b1Vg4yANhHexftcPwYuNnersgOANmzhfUhClc8szg&oe=699CE6CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wECwi6QJpZ6EH7Fx0DqXLlT7l1y0ZBTRBnxYfIiINwfCg&oe=699CDF7B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBnPTbN87SwmO299vzQiSCqtNNzKGyHf0Acc3smzgzeg&oe=699CE11C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEx-pwVppnK-VBJB0B3fuerSQw_-IDaaF765Pe4goYDKQ&oe=699D0478&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTQ9dNgtOOkwE37KG7rCtkmplCQ5322G0TG8QSHT_wmA&oe=699CE089&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEaO7LiN1pHoaUpI6gSRp2NnolOJTamuIPZPv91m1OCbA&oe=699CFF0F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3ut4b6c3xTbt4tgTSbh6v0BDM7ch68gttvwe7lHgNWw&oe=699CE098&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsp7-db6Xz5vuG7YUB7pSFjTtWJ_Cwb28cbof3DnDjoQ&oe=699CD516&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOC0yXi9ZZ3t6Ges89xFxbONlRZ4gSfO_y9uz84ahTRg&oe=699CF3DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLIQl0BZS1guBf5JTqLHLyRxXeOdnuanNGqFZu6R7sYA&oe=699CF776&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsiVAivE7gPW-8grW6F6wEZ6tYCVCXDX4mu2KqGY4avA&oe=699CD06F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqt1g-03Zz3T2v8VrfjgbuJZg3XmxP8fuw6a8WsfzOZg&oe=699CD6EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6YlUah9Xsze5n-rAkBeCKosVDgsnzRA2AFe84u7FvJg&oe=699D060D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7DtruMblKzWIC3COGxK1EbAQ6-SMgRVaZbeVmL5s3bw&oe=699CD2FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHE_TC4Q6MAA6BpHwEfWWZJMFA_lxzKQAW3oRttNZXh2A&oe=699CEC42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEoUOIq1xpjzEca2fKn9YHikbgFWevsD2QC3YbmYI29w&oe=699CD195&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFC9ZhQl19W_WSb7f4bzQkwj_USgNIPQmg9s65M9aSUhQ&oe=699CD94C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_3d5U6-hzBi5qfztytlNcTa3zwQ2Vc36NMVVG6Jdzeg&oe=699CF0DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNXJDtmkzIdel4eWc95aaVi-yq5DfCocn8d20tOhI7A&oe=699CE2AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrEGJ4K0JbNngktCuwhVEPKU8RVM9-vOb_eG_6yDEsqQ&oe=699CE6E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFs-AliFXDBJVO-ZWY9VBUQO0HBWP_NELUkmFoI82Ok7A&oe=699CFF50&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmBxaqDdvVDYKoKhdYNuCsgKm73C33H0sUu8E_fKpjPQ&oe=699CD52A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbfz04rHHcoOSrVCDQerx_1vjlrdCAnqFksgu3gQDL8w&oe=699CCF7B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWBIKF_XuUd_8I617scJj16PQBY1N0_HgQr9b9dFn0Qw&oe=699CD8E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7gCR3hRkyGxJaiE_Xm5hUlP4SO9XWxUlEOw_8bLJqVw&oe=699CDC6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmoEcJKlQNX-jHpb3XIYyuk1-GSCqV4_jAG8XuQEFeKg&oe=699CE5A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEII8gY3nWgQSuODZ2K_6Rn8OcdFgVRJ_CPlxt4Vs1ldA&oe=699D0385&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ6jh435uFtoB2wZkiTYU6RntLHDFAAuprv94EJ261ag&oe=699CD2F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0jgkHzUGRzSrU-gn2tIZFXD4NC8LNgPlAWjgpl0IDZQ&oe=699CF192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_zLzavNZsgkOh7pZJRn9LlLWYP5wrJ5B2IIkCf6qxHw&oe=699CCF15&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP15gFdqsfnFyMLANYwJKsclac-NFK4psLpeuUCvWmNg&oe=699CEB11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjChzGQ51edzq-TJdR-hNANyS7wpBbRwicA3B1OPIn0w&oe=699CF139&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE-EL7GJPqDW0fKb8ZdrkdhWw1xcOpIhIPqUa9_anpOg&oe=699D04F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfC9QDy-7oyNbl9DD02rH64Rd5Ju_VCIbfEFsjbbUl0g&oe=699CDBEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXs8XP2cd2tPymSVNQDoQ-p6W2PcW-7HYB8m4u4tHEA&oe=699CD525&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGtmu_nmf-zVrSdhTb7iV55EcurY0pXpR057TVX5UhIg&oe=699CDA8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFx2kA_NqwxUogVv8isYA01eLzSNSNYgWVNGXA2lmM5CQ&oe=699CDAFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLjJtgmywN2kOAk04d4UdZxydZ4sjQ0GO6gJEdk_hnlA&oe=699CFBEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOea1gCmqDIUFy0NRU-9_5qxPEGuCVG80Gutu0LbttBg&oe=699CFAEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wHz7VXNs9gwhvSDM7NRwF5M6jb-gpZjTT_c4ra-CC7NOg&oe=699CD415&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQpAzl6o7vXi8SXNeelW2cO8X5HuQdEJ0eHMFCTpKGZg&oe=699D01AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHsyuoMai0Rl2-r6vZKwDzyt9KSNJ_XAtJYtK72arUVVw&oe=699CF458&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBXRogCVUdmNZCSVsjk6-lmAx3QF-314AckSozpi2_tQ&oe=699CD113&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiDVpxbSC3_LSpbbblvmXOdm3yZvfh9nO2fzvRWTpQhQ&oe=699CF379&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wFWjkaPO-HwBnSVw0OCWxH_Woz_lCxYzvF48sE215TRZw&oe=699CE606&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEM2_PJhw5cCrZDlVoOJ2f1bzJkTPIlnO95Jq_bBE2erg&oe=699CF3A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIiO5_gjzIL-fRqPWyiGs-9JPd9kUclicb4WXsIB36LQ&oe=699CD338&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5gJfZ5r4GQnGCpCNx7iCcsRsTu9wit_7Yu1xscj9_8g&oe=699CF038&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsUcqXw9P_Tum-JL5vSS45Pp1PNOzQhj-glmv2Ym5-mQ&oe=699CFF00&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrsIvpfywQpcw_VdTGmHoG5VnwebvLkoNqbR_zQbC31Q&oe=699CEBCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8Q3oQ-e7daKDp9EotK_Yw-jLmf3EHM0xvK-_kDTwdWA&oe=699CDEFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFpRvp0wWoyxB8e-0jYdUCST86pSL7LnEt7W8mCx8sGJg&oe=699CE282&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDeYngQXy7diFTWztGl4t8iHvm8MVZ8txhkLh2TfCZyg&oe=699CCFCE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEru2cBubwEqf4HENBBxCKvb54IUPKlQJu7L_WgeAiGFw&oe=699CD6B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJf0_WM03WEENXGzCTfTzLgkizz0bjC6HOlULlVecnog&oe=699CF492&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfVFH9tRB7IySSCIOdnZy4k2bECNg-3EqvlSZbupKxAA&oe=699CE7D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQJC_FyhY4wqbvnYf2mZN_6BpPGgOdcP5lmQR0EHBoMw&oe=699CDBBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKcUx9sLlNxLLZLfz-yHqakcZrHPJ-Sjd7Leyre71SfA&oe=699CDEF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHUi0EGZRncbX8SSH6NdsqQwrHbvfXpACfF5BvhvZvWyQ&oe=699CD96F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGed5rKCYExWTFcejsBlXmeDhHh_pylIiy_41ftsyHyJg&oe=699D063C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUjOdnTUnzFaNZyprS8vox4CECAyGTjQROFT0euzFiEg&oe=699CE39F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvfe67fI964gdGUmnJ7JJVusRyWzi-Oz0gKc6QFSJHNg&oe=699CE79A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEP0h2dKMCreUnC0ssk-BNx5AwPmPo7d4tzTCPshhAzvg&oe=699CD2D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXLPn9UZFyjbE4ojPHIbFREtPegAJkZbyJkaClj85Oqw&oe=699CEEC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzyWV1xRCDDHt360nQhjdvJnwW9BN85z3Fcz1MQ2yt4w&oe=699CF557&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgB6Fi20r32z6BtsCW2Mv7ss78Ztaq68rtX08NHrZPqA&oe=699CF5FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKmg5WPQCjKGJeMlkLGxeyEPfDzehbXLLlD5Kd6v_0oA&oe=699CE415&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlYhCsdM7NUEHqoHFIr5c2y2062SBp4noGrgQ5KHirjw&oe=699CF10E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IMRJKhjLAz9DEbTuhXcM-RpeGMrbyWe_vxorFW3jdA&oe=699D0675&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOoTHMWksO1TG88NSRqb16lMq8UEe8a3FAfr-hUqUaAw&oe=699CDBC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgC9hb4dyoXhqHNODvYxg5ZLgwdLfmckh3YtjIGt17rQ&oe=699CE77D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0BA5s3wXg2haFyuuNuPfvt7-T0g18rx7um1Zf6irMbA&oe=699CEBA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVGXxVTnE_VhDaSorZIfSgvqVSWGI0RB_sb3czYCXMKQ&oe=699D033F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2PU6QLNp0IM7TlntC8kH8zU7P5ncRD95fIpQpYz_gbA&oe=699CE842&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx8gaYU4OT0PaaU8kOPUGeGBDyq9xFhlQzj4QDpdNe2g&oe=699CD6E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqiqMYysx7iLnWzjRCg5Yh5H6RSrik8MVO9dE_oUidVQ&oe=699CD207&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8evS3KsQ2ytGHKE5tZch8OcIKTZSsvsfw73m_k3i6lw&oe=699CF7A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6uPUqEpF1LxBvnN016vnt_vybuaOTLCMGYhrmOWjl4g&oe=699CE2C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcP54hucwtbHIG1iqTvLvfVH0TgqhvzlUHzRyglBglAQ&oe=699CFA5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrx8eSDeenQ0VdAbve3PTWs0eXFPHvW_aD16q2zrjFtQ&oe=699D0247&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsgY0lM5sOuaSXjuzWFId-LVSjiIBf3aVotjMp4L1XcQ&oe=699CFDE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEK_Zf_OKrKVfhN6ssN--KiJWJws46FOKrBZro7uKjoNA&oe=699CD608&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFH6HKZoIN9e1kOU5e3KDiBspINBA4bcmj7AJ4JLt9BEg&oe=699CD74A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-guA_Eertu5vaxGW-ZgJCa2-NNxNL3H3pi91CsV7FQA&oe=699CD251&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-NC2rcJ9blFaC3hdzFrC7kscBxkNUemTfRkAN5MArAA&oe=699CE41C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbNtyGFpUEKTck5jVVZ8RD-1skNAgYceMWMUk2ynGIOg&oe=699CFE36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGov6VHYCj5yt9xOOk_r5ml1PzGwiKwMxmNi6LZ234wMQ&oe=699CE254&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdoBsFmBKarmIGTjadYLQsHy3aVx8wcloxbWp49-jKCw&oe=699D0557&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnryoImbWZIBRzFh1sazrwnThd4i5cHduNRtszMWAYXQ&oe=699CF4BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRvW_tH7p5B9gJrvfDCBRynSfvLxp6EaBjCnZqAPs0Jw&oe=699CFCAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wH15u71Duu_EGz4nXJ9YZXMLiifiiYjcpZeMNdHhre8dw&oe=699CDFDA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSyre1gc2c3ZruNHWJsOY_ApibV7_KbAwPD2j9Ca4Plg&oe=699CDCB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGabc4mXLYgO1tLjYxQBsxA-kSU_sy3g4nccL9c2tIo1w&oe=699CE4DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjaLYbbfg1NnNQ_c4VCy36_26hAT5JuM8miWSpi0klg&oe=699D0187&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKfkPFVnud3xAMRCvH8F5zzuTRS_KrTuorbNCh2iP8mQ&oe=699CDE8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjEFhil4W_9GTaVD2xzYnVty5J2bIoVD5xG6YtKZwPJw&oe=699CE337&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1pji5qVgPo64vd_w-3vPDRxauji0YsVWCMaJMF4G-vw&oe=699CFE60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBcgfBoWfSEdqzcVwUn4B7PPKwxB3z8Eu2BFMMBs1zWg&oe=699CF38B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFQat2caLpmONOnREzwK0aVQ0R9hfH7TxT8o63b-WHQA&oe=699D0220&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_uceKgKlqhjoDoqorDqvWlrPUyF3BG5inG47kZnEnaQ&oe=699CD692&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wHalFIXru0XlLZ0oJxvh2JBzymKqY91qqHn7gBsc9758Q&oe=699CD6A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGryIMyFWeqr4p_B4uFjZhyjch6oCG28O2uOMy5zzH8fw&oe=699CE585&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsmCKyIINnImE22CMcPk0dx5mG4jyNe5UksmqFjYMxNA&oe=699CD263&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4q1lKcI9xvbfbzG37l3Tt0LDsjWfcsRkjVPxjcfWpJw&oe=699CE5F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-13 23:15:57');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14147, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:09:22.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:09:23'),
(14148, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:09:22.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:09:23'),
(14149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXX60qj_JKjStmw54S2IePXcpa094hZxegu2F56n8-uw&oe=699D0517&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:53.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:37:54'),
(14150, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:54.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:37:54'),
(14151, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wGXX60qj_JKjStmw54S2IePXcpa094hZxegu2F56n8-uw&oe=699D0517&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:53.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:37:54'),
(14152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:54.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:37:54'),
(14153, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACF1A96CFAAC1378503B76E60D0C4648\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636064756_789532967498092_8644891687610098773_n.enc?ccb=11-4&oh=01_Q5Aa3wFqcmbM0Q9qJ3W9xVwQjRugqrZM10nxJi3QboHuoHzNjQ&oe=69B76E43&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9HAdyex1se8xkbvN6DJdAo7Ic58\\/7OQfJLg0IrUSZpA=\",\"fileLength\":\"102336\",\"height\":1600,\"width\":900,\"mediaKey\":\"R1\\/LhKlIHpjAGYfGmOYN7Gg2LBnxr13EjiPShD\\/P6t4=\",\"fileEncSha256\":\"ARJx0Wvdsk\\/rTYAW32\\/zgSwYDm07oCwrfDhHC9txUjI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636064756_789532967498092_8644891687610098773_n.enc?ccb=11-4&oh=01_Q5Aa3wFqcmbM0Q9qJ3W9xVwQjRugqrZM10nxJi3QboHuoHzNjQ&oe=69B76E43&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771040261\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAAAwECBAUGAQEBAQEAAAAAAAAAAAAAAAAAAQQD\\/9oADAMBAAIQAxAAAADDv5WrdljLrxSvMJzunsecnho9JzeaQwUEFSLsRYYLC9bxBtRtEDSP\\/8QAIhAAAgIBBAMAAwAAAAAAAAAAAQIAAxEEEBIhBRMyIDFR\\/9oACAEBAAE\\/AKL3rA4r3K9bdyLNmWe92J4HBllTk9VkRL1rULiVah1MsutK\\/Qi2ajj9yy20k5YzM0x0+T7SRFt8YfqG7xi\\/oTVW6RlPqrPKBlA7G4MOxMzFMxMfkw7mIFyYta4HU9SfyHaoDlMbf\\/\\/EABwRAAMAAQUAAAAAAAAAAAAAAAABEQITICFRYf\\/aAAgBAgEBPwBZJrszyq5sNXwpS7\\/\\/xAAfEQACAQIHAAAAAAAAAAAAAAABAgADBBESITAxMnH\\/2gAIAQMBAT8AZGzdR7jEFQHhIbdDqdr\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Vpw8nomHyLZxcIhekuBjfh1uUQTVWj+tS0Q62VyDbyCvpxy4PxN1hQ==\",\"scanLengths\":[10943,28198,16215,46980],\"midQualityFileSha256\":\"FEUS1XMv6Lpppl3OHFgSzQQRtU5aO2Xwp9+u5cvF5LE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t7AUnUgr7UvO8fk0ZticwwXpXSCxV\\/LAg7CLhgASzEI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771040274,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 00:37:55'),
(14154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:37:55'),
(14155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:37:55'),
(14156, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:37:55'),
(14157, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACF1A96CFAAC1378503B76E60D0C4648\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636064756_789532967498092_8644891687610098773_n.enc?ccb=11-4&oh=01_Q5Aa3wFqcmbM0Q9qJ3W9xVwQjRugqrZM10nxJi3QboHuoHzNjQ&oe=69B76E43&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9HAdyex1se8xkbvN6DJdAo7Ic58\\/7OQfJLg0IrUSZpA=\",\"fileLength\":\"102336\",\"height\":1600,\"width\":900,\"mediaKey\":\"R1\\/LhKlIHpjAGYfGmOYN7Gg2LBnxr13EjiPShD\\/P6t4=\",\"fileEncSha256\":\"ARJx0Wvdsk\\/rTYAW32\\/zgSwYDm07oCwrfDhHC9txUjI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636064756_789532967498092_8644891687610098773_n.enc?ccb=11-4&oh=01_Q5Aa3wFqcmbM0Q9qJ3W9xVwQjRugqrZM10nxJi3QboHuoHzNjQ&oe=69B76E43&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771040261\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAAAwECBAUGAQEBAQEAAAAAAAAAAAAAAAAAAQQD\\/9oADAMBAAIQAxAAAADDv5WrdljLrxSvMJzunsecnho9JzeaQwUEFSLsRYYLC9bxBtRtEDSP\\/8QAIhAAAgIBBAMAAwAAAAAAAAAAAQIAAxEEEBIhBRMyIDFR\\/9oACAEBAAE\\/AKL3rA4r3K9bdyLNmWe92J4HBllTk9VkRL1rULiVah1MsutK\\/Qi2ajj9yy20k5YzM0x0+T7SRFt8YfqG7xi\\/oTVW6RlPqrPKBlA7G4MOxMzFMxMfkw7mIFyYta4HU9SfyHaoDlMbf\\/\\/EABwRAAMAAQUAAAAAAAAAAAAAAAABEQITICFRYf\\/aAAgBAgEBPwBZJrszyq5sNXwpS7\\/\\/xAAfEQACAQIHAAAAAAAAAAAAAAABAgADBBESITAxMnH\\/2gAIAQMBAT8AZGzdR7jEFQHhIbdDqdr\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Vpw8nomHyLZxcIhekuBjfh1uUQTVWj+tS0Q62VyDbyCvpxy4PxN1hQ==\",\"scanLengths\":[10943,28198,16215,46980],\"midQualityFileSha256\":\"FEUS1XMv6Lpppl3OHFgSzQQRtU5aO2Xwp9+u5cvF5LE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t7AUnUgr7UvO8fk0ZticwwXpXSCxV\\/LAg7CLhgASzEI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771040274,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 00:37:56'),
(14158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:37:56'),
(14159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:37:56'),
(14160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:37:55.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:37:57'),
(14161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:38:26'),
(14162, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:38:26'),
(14163, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2ACE655D66DC867E446A08FFF3149E\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636285674_1410691250802845_3810689168734575933_n.enc?ccb=11-4&oh=01_Q5Aa3wGeoqMTeRPdF1fTYBbQMSdyHObwZLRoiLd81N8VBL_lrg&oe=69B74F83&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"zEFZTphWa\\/t75wHoVj\\/mBtYDzesiy1DkZ0gmN1o+BlM=\",\"fileLength\":\"106973\",\"height\":1600,\"width\":900,\"mediaKey\":\"rKKxIjlk2NWRd3NTtdd2SrgT5b5nkkX56XYZWV2pPoY=\",\"fileEncSha256\":\"7vVoEyYM2WLFZZHP6fF5L1cUYMd863LpXYSlAisn6K4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636285674_1410691250802845_3810689168734575933_n.enc?ccb=11-4&oh=01_Q5Aa3wGeoqMTeRPdF1fTYBbQMSdyHObwZLRoiLd81N8VBL_lrg&oe=69B74F83&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771040302\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAUBAQEBAQEAAAAAAAAAAAAAAAACBAED\\/9oADAMBAAIQAxAAAACmPFlux+xThx47HnIv2cdr+OjLDr5zy1k9yIlZAAgguSQkf\\/\\/EACoQAAICAQEFBwUAAAAAAAAAAAECAAMEEgURFBUxEBMhQ1FhYiIyQFJT\\/9oACAEBAAE\\/ABh4v9JZXStiKtn0nrOCxm8yPh448ycPR+8VXI6mENvlaWMPAmObAdxJmpvWcvuA+1ouJaGJat4lFq9FeZNJVdRDdibXYdUnOfhBtf4TJ2j36FNMFrD0\\/CDTV7TV7T\\/\\/xAAfEQABAwMFAAAAAAAAAAAAAAABAAISESFRAxMgMVL\\/2gAIAQIBAT8ArHKk3sgqel4U3ZW482Jsq8\\/\\/xAAeEQACAQMFAAAAAAAAAAAAAAAAAQMCERMSMDNBU\\/\\/aAAgBAwEBPwBRV9ytmKW\\/MYpPVlkaUtj\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"aWluNNkl05IH0MDquJXX9Gj2SuuOFCCiN3g6nzyKnkD+vnDWsEJIrA==\",\"scanLengths\":[10298,36093,18549,42033],\"midQualityFileSha256\":\"wbonljdQ+OQNXuzKlFZrTCm2Oc+WoYkxh4DmKstaJWs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mXAAeRfxnFVFz8VAdgg9V3Fn6HmkscUF9kwmOJprHsM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771040306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 00:38:26'),
(14164, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:38:26'),
(14165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 00:38:26'),
(14166, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:38:26'),
(14167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 00:38:27'),
(14168, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2ACE655D66DC867E446A08FFF3149E\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636285674_1410691250802845_3810689168734575933_n.enc?ccb=11-4&oh=01_Q5Aa3wGeoqMTeRPdF1fTYBbQMSdyHObwZLRoiLd81N8VBL_lrg&oe=69B74F83&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"zEFZTphWa\\/t75wHoVj\\/mBtYDzesiy1DkZ0gmN1o+BlM=\",\"fileLength\":\"106973\",\"height\":1600,\"width\":900,\"mediaKey\":\"rKKxIjlk2NWRd3NTtdd2SrgT5b5nkkX56XYZWV2pPoY=\",\"fileEncSha256\":\"7vVoEyYM2WLFZZHP6fF5L1cUYMd863LpXYSlAisn6K4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636285674_1410691250802845_3810689168734575933_n.enc?ccb=11-4&oh=01_Q5Aa3wGeoqMTeRPdF1fTYBbQMSdyHObwZLRoiLd81N8VBL_lrg&oe=69B74F83&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771040302\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAvAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAUBAQEBAQEAAAAAAAAAAAAAAAACBAED\\/9oADAMBAAIQAxAAAACmPFlux+xThx47HnIv2cdr+OjLDr5zy1k9yIlZAAgguSQkf\\/\\/EACoQAAICAQEFBwUAAAAAAAAAAAECAAMEEgURFBUxEBMhQ1FhYiIyQFJT\\/9oACAEBAAE\\/ABh4v9JZXStiKtn0nrOCxm8yPh448ycPR+8VXI6mENvlaWMPAmObAdxJmpvWcvuA+1ouJaGJat4lFq9FeZNJVdRDdibXYdUnOfhBtf4TJ2j36FNMFrD0\\/CDTV7TV7T\\/\\/xAAfEQABAwMFAAAAAAAAAAAAAAABAAISESFRAxMgMVL\\/2gAIAQIBAT8ArHKk3sgqel4U3ZW482Jsq8\\/\\/xAAeEQACAQMFAAAAAAAAAAAAAAAAAQMCERMSMDNBU\\/\\/aAAgBAwEBPwBRV9ytmKW\\/MYpPVlkaUtj\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"aWluNNkl05IH0MDquJXX9Gj2SuuOFCCiN3g6nzyKnkD+vnDWsEJIrA==\",\"scanLengths\":[10298,36093,18549,42033],\"midQualityFileSha256\":\"wbonljdQ+OQNXuzKlFZrTCm2Oc+WoYkxh4DmKstaJWs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mXAAeRfxnFVFz8VAdgg9V3Fn6HmkscUF9kwmOJprHsM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771040306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T00:38:26.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 00:38:27'),
(14169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T03:36:32.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 03:36:32'),
(14170, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T03:36:32.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 03:36:33'),
(14171, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:33.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:33'),
(14172, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:33.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:33'),
(14173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:43.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:43'),
(14174, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:43.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:43'),
(14175, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:46.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:46'),
(14176, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:46.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:46'),
(14177, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:47'),
(14178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:47'),
(14179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2602ADD25E39A4368F6921626B088A\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636820064_1590909538781201_3095901402177206876_n.enc?ccb=11-4&oh=01_Q5Aa3wHbg_YXoD2JBn6racic2kKh0knzC-el-Y4OFyj0vF0etw&oe=69B7C4AB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7zOSeEmlGgNUCAMJgA8bSBxPLfFuoZeGHs\\/v789mf4U=\",\"fileLength\":\"29161\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"gaf2CLU0eCunXN3vzGqThxkDuX8eDANJRH7rbJyGtG4=\",\"fileEncSha256\":\"w4WK737VbpPeGcoooa\\/7QqaMwXEzqndPEyFqsQyPLUU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636820064_1590909538781201_3095901402177206876_n.enc?ccb=11-4&oh=01_Q5Aa3wHbg_YXoD2JBn6racic2kKh0knzC-el-Y4OFyj0vF0etw&oe=69B7C4AB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771061615\",\"waveform\":\"AABFJzQiAAA1RkEuLUYqOjo8KEM6CwAdJjI5ED0mAAAAQRo0MBdDABtGPTc6IzJBAC0AOxkgOkkWOSUAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1NtTJvTMWlDZ5HQQH4sNwqm9j00iaqpKtgHyhE9ajqc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771061627,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 06:33:48'),
(14180, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBTqbC1_GIuuGF8G7WFw5ZLqvxxGd0Umy8THEYiunw0w&oe=699D3D57&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:48'),
(14181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBTqbC1_GIuuGF8G7WFw5ZLqvxxGd0Umy8THEYiunw0w&oe=699D3D57&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:48'),
(14182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBTqbC1_GIuuGF8G7WFw5ZLqvxxGd0Umy8THEYiunw0w&oe=699D3D57&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:48'),
(14183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBTqbC1_GIuuGF8G7WFw5ZLqvxxGd0Umy8THEYiunw0w&oe=699D3D57&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:48'),
(14184, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2602ADD25E39A4368F6921626B088A\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636820064_1590909538781201_3095901402177206876_n.enc?ccb=11-4&oh=01_Q5Aa3wHbg_YXoD2JBn6racic2kKh0knzC-el-Y4OFyj0vF0etw&oe=69B7C4AB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7zOSeEmlGgNUCAMJgA8bSBxPLfFuoZeGHs\\/v789mf4U=\",\"fileLength\":\"29161\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"gaf2CLU0eCunXN3vzGqThxkDuX8eDANJRH7rbJyGtG4=\",\"fileEncSha256\":\"w4WK737VbpPeGcoooa\\/7QqaMwXEzqndPEyFqsQyPLUU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636820064_1590909538781201_3095901402177206876_n.enc?ccb=11-4&oh=01_Q5Aa3wHbg_YXoD2JBn6racic2kKh0knzC-el-Y4OFyj0vF0etw&oe=69B7C4AB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771061615\",\"waveform\":\"AABFJzQiAAA1RkEuLUYqOjo8KEM6CwAdJjI5ED0mAAAAQRo0MBdDABtGPTc6IzJBAC0AOxkgOkkWOSUAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1NtTJvTMWlDZ5HQQH4sNwqm9j00iaqpKtgHyhE9ajqc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771061627,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:47.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 06:33:48'),
(14185, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:56.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:56'),
(14186, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:56.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:56'),
(14187, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:59.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:33:59'),
(14188, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:33:59.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:33:59'),
(14189, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:34:00'),
(14190, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6207FC45B9553051A416A907D159DF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587483430_1269979021692656_925150908827408696_n.enc?ccb=11-4&oh=01_Q5Aa3wGX8_-IzXxPQpj337AsGcbuH0wqSShgWeGPYS4_4n_6-w&oe=69B7CE27&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JijuqerK7BJdB8V3xv\\/y9UqBs2vkVTrLczeRdh9R\\/sg=\",\"fileLength\":\"6393\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"SUQSHDa1L8pNKcffsvUlp1HQtvP6J0skSSCt4Qy2xeQ=\",\"fileEncSha256\":\"BT7xHb+9+YzVFczgQBszMzTkkECwnxw6ILAiC2PddxI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587483430_1269979021692656_925150908827408696_n.enc?ccb=11-4&oh=01_Q5Aa3wGX8_-IzXxPQpj337AsGcbuH0wqSShgWeGPYS4_4n_6-w&oe=69B7CE27&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771061637\",\"waveform\":\"AAAAGiw4NzkvOkJAGTQ8QUY+NjtISEA7OjkYGC8sFB83MjAtMDo7OD4\\/PTUpGgoMCwsAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ocviW7Mm5LoEof55Yi\\/z5TLTKxpp\\/zWu9iGgmZGY2e0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771061640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 06:34:00'),
(14191, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:34:00'),
(14192, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC6207FC45B9553051A416A907D159DF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587483430_1269979021692656_925150908827408696_n.enc?ccb=11-4&oh=01_Q5Aa3wGX8_-IzXxPQpj337AsGcbuH0wqSShgWeGPYS4_4n_6-w&oe=69B7CE27&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"JijuqerK7BJdB8V3xv\\/y9UqBs2vkVTrLczeRdh9R\\/sg=\",\"fileLength\":\"6393\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"SUQSHDa1L8pNKcffsvUlp1HQtvP6J0skSSCt4Qy2xeQ=\",\"fileEncSha256\":\"BT7xHb+9+YzVFczgQBszMzTkkECwnxw6ILAiC2PddxI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587483430_1269979021692656_925150908827408696_n.enc?ccb=11-4&oh=01_Q5Aa3wGX8_-IzXxPQpj337AsGcbuH0wqSShgWeGPYS4_4n_6-w&oe=69B7CE27&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771061637\",\"waveform\":\"AAAAGiw4NzkvOkJAGTQ8QUY+NjtISEA7OjkYGC8sFB83MjAtMDo7OD4\\/PTUpGgoMCwsAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ocviW7Mm5LoEof55Yi\\/z5TLTKxpp\\/zWu9iGgmZGY2e0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771061640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 06:34:00'),
(14193, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:34:00'),
(14194, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:34:01'),
(14195, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 06:34:01'),
(14196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T06:34:00.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 06:34:01'),
(14197, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:30.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 07:54:30'),
(14198, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:30.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 07:54:31'),
(14199, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:32.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 07:54:32'),
(14200, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:32.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 07:54:33'),
(14201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu4wpk4NfnhVMA5E-mImTnD477Ake7ArwpXyG25X1fGg&oe=699D59F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:32.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 07:54:33'),
(14202, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A560BE4AB12B1FAAB8CEFC6E390C3410\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.facebook.com\\/share\\/r\\/1GgKSwUZCG\\/\",\"matchedText\":\"https:\\/\\/www.facebook.com\\/share\\/r\\/1GgKSwUZCG\\/\",\"title\":\"136 mil visualizações | Reel by Dicas do Uille\",\"previewType\":\"VIDEO\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABiAGIDASIAAhEBAxEB\\/8QAHAAAAAcBAQAAAAAAAAAAAAAAAAIDBAUGBwEI\\/8QAPxAAAQMCBAIGBgcGBwAAAAAAAQIDBAARBQYSIRMxByJBUWFxFIGRobHBMjNSYnKS4RUjQlSi0RZTY4LC0vH\\/xAAaAQADAQEBAQAAAAAAAAAAAAAAAQIDBQQG\\/8QAKxEAAgIBAgQFAwUAAAAAAAAAAAECEQQDIRIxM1EFMkHR4RORkhVUYWKh\\/9oADAMBAAIRAxEAPwCJyRiRazhg633w2yzLaW4VEAJRrFyT3W+Fbb0o5bYz1imBNsYnhaYDDUxmWpbiXFpS+zwwW08iobkEnY2NjyrGUZmDbramYyWzbrgAAKt6q5JzPIdaLSWwlChZXWIv5W2Hsrj6M8uG0dHn\\/ZEK16GoO9EmEvysStmdK25oQlTK221WQiQh9INiNW6NJNrkHfe5M1hfRxhOFZpnYpExhEePKjvxEw2G22ktNuIaTZBSbXTwU2Nr997Vi0TNkhtqPwmEJbABUgm+vbtPP\\/yl15zmq16kAlRJ+mfZ5Vq9bxC9tFfl8BcuxqGE9FeE4a9DXMzCzKaYcjKU240hCXEsxlxkoNlcihe\\/iPVSsnopwiRhOEwBj61twojsRDjhCluJWpog6goEFCWG0i3IJ796x9\\/OE6SsBZShLJASlGwVsDc9t7k8rUdWdMTU5q1tjrA2CTa1+XPl4VS1M+unH8vgrc09\\/oZw55wh\\/NMgpMJUPZDaFlJZabuSLA7sIPLlcEnaz7MXRdg2K4BDwqRjyGg3InSirSiynJQcCtKSrqpTxCQN+Q3rGn814k6Os6Ppatri5v27703dzJiSyu7w6ydJNr7Hs35VpF5j80I\\/d+wbmxR+iHCo+NRpzGYwgx5fpSGA2jSLShJCPpbJCrjyPhudnohy0MOw6Azi7SHoyFokOMpQlclKnm3dSrHZYLKAF77DlytiGC4\\/iTUVlbcpSFpKiCEgb3I7qfJxuf6SqQZK\\/SCCC4ANVu69a1k3yj937DpnpfpDdwvEsmYlEfkocadQAUsPALVZQNhbyrG4+GZfaQtiPh8XTI0IQniKcUbkndRO22\\/OqWcRlLSkF9yyb6QDYC\\/dRF4jLSrX6U\\/qPbrN68OZ4fkZck\\/qcK7K\\/glps0r\\/AAdllHVMDDSRtcpJJ9euhWY\\/tCX\\/ADT35zQrwfoGX+5f++4uCXcrWLTXYMbjoIVpKQb9xUAaelx3sUn8v61E5gRxcHlp\\/wBNR9gp3Ge4sZpz7aAr2ivqTVIXjvu8FNtNhdO\\/ht8qRxHEzBiOSH2wptHPQok\\/Cm8BssodRqKgHDbwG1NswjiYNMR9wn2b0BQ8gzvS2hKYbu06kEDUAe3vpyJNuba\\/an+9QGVHNWARgezUP6jUou4oEOjKVf6h+3eEXHuoqpaeZS6B4tq\\/tTLWQaK+vqHe23OgY6w2ewzGS26vSoKURcHkVG1P0YnEuLyGgfFQFV7DpSwx1VKspSzz+8aeIfOu5IPgoXHvoETaMTiK5SGT5LFBUtlauq6hXkoVDlaL\\/VRx5MoHyrgSys2djtK\\/22+FqBk1xkfaHtoVFeiQP5Fn8y\\/+1CiwpnJaQ5HcSeRFqaYC5rwaGTzDYSfVt8qeKGpKrdo2qMwLaG41\\/lPuJ\\/qv86RQ+QbOOjxB936UjiCdcGQnvbUPdRxtJX4pHxNB+xbUO8EUxENlR1LeCq1EBLazcns2B+dJzsxJBKYrWofaWefqqvtylIhuxUkhJd1q8eqLfCrt0TdHEnpInYpDg4gzCkQ4wfRxmypLhKgNJI3SN+dj5VLYmQDOYF6hx2UlPeg2I9tTSZDUmLrZVqBqPzvkPMmSZXBzDhj0dBNkSE9dlz8Kxt6ufeKiMDkFuUWieo4Dt4ihMRYIfUaA7lK+Jp4k3ANR7K7IUO5RpdLnU3NMZIApNqMACumiFXRtzFcS6dRphyJK33qFMOOftUKQ7NnzZ0XcALdy+5q0i\\/orhubfdV8j7axuNEkQMSxOLKYdZWl4K0uJKTukd\\/lXsdXCDVwjv3tc86hMzZSw3MUe8uOhTwHVcQAHOXf2+VRxNDR5WcUBJQLi5SdvWK44d7Ves\\/dFmLYHKblx23ZsJokh1tG6QR\\/En1cxtVHeFjVWBnzrZTJkkDqpXpPgd\\/7Vp3QL0i4d0c4rjM\\/E4sqUZEQNMNMaessLBsok7Dx38qo8JtLmM4nHdF0LGq3r\\/WkJWEPNqPBIcT2b2NDRLReelDpmzJn5l2DILUDBVKCvQY4uFWNxrWd1EEA9g25Vn+Dtlc1KuxAJNdbwuStXXAbHeTf4VMxIzcZrQjcncqPM0AkHaP1n4\\/kKUudNJR91Pfj\\/AOIpRVMY6huXuKCzuTSLCgk0dJ1agaABroUXSnvoUxWexRiGg6UqCWzzJPPx8aO1L1upLSilClHtO+3Ye6qFKzrCiMJcVqS4pQSkDa\\/sqER0jRRJUhiK68EXBu4ADvflY154zvkbamjLTdSNnVPeKNK1ILZvcK3FqzTO\\/R3h2KsmTBKIk1Vz1RZJJ+0KbwekrDkvKamaoSVAAlYsCfPsPqpLMHSTBjtKejMmVBaUlt6QpwpSlalDqkgHYJuTblt31VN7ohfyYXj2UcWy3mWQvEmAlpaLJcSbpVy5H1UyJua3Z7PmVsSC4rLbuKpcO7DEZx4q9WmsxzfGwCLMu03iuEEnrNS4p0gm2w3uNje2+wq4tvmFdiqqoo8as8XBMElrShnMIC1Wtrikb\\/mp7i+RjhkUyHsXhhFrp13SVeQ3vVAUePs68PvA+4Uqabx1pVIf0m9rD404NAjoFhehe1cB2tRFKt50AH1GhSevzoUCNXThkl2IEy1tKKgeHwySbnbtHcTV2ypl6NFjIbbZRe1ySL3NRWlwoacaSOo6ErBG4vtVsw6V6KpKFsqcWOfUOm34uQrlZV2oRZ1cZ8V6k1uxDMWXYsmEtDzDS0kWI01mkvDE4rmfBMsMtJTGbUudLChdK0o2AIuL3Nhz7a2HEcSbdQEsRypJSFHSkqIvWYZgwvGms3Ybi+B6uMg8B1so6vCVckqPdt7bWowpOM6vZizYpwut0XR3L4iNB7C3HUS02AQXdKHQP4Tptbu7h76reLdFOGZhlx58OVKituaXXUOJLxWbi\\/WUrUk9hG\\/urQIT7SWgVuBTZTq1KVpse3eoCFm3DcsQTKxFxTYedW80yganDrUVgW7rqt6rV1EzmC2I5AwJGGqjqw9Y4tgh0rJcKgLDrKNzsPLyrIc4dH+J4QfSImubDIuFJ3UgdxFbdgebcOzSpx7D3FIlpGpxp9vhrA26wFrEeIqReUXpDXEU2lXVIsbjfcHbz+VNiPIDTfClvpIIVYEg991UvXoHOvRtBzBJdmQXEw8RKN1aCG125Ajs58xWIZhwDE8vzDFxWMthzmk80rHeD2ilaZRFqVbzpJW5vXTzotMAXoV2hQSehpRIj2BsNj7xVsSAqO6VAEho2v2bUKFcvK6h2cHyDbBwFShqAP7lR386m8OSDgmJKIGripF+36P60KFPD6yM\\/FegylOknDJIJJBcSkg9xUAR5G5rG8\\/rUczywVKI4yhuezXb4UKFdL1ZyYeVFl6Hm0I6UMMZQhKWVtOamwLJP7tfMeoeyt1k7SlJGyQbADkKFCmMViKPFG5+rTULn2OzLyviHpTTb3DSCjiJCtN1b2vyoUKylzKR5RdFnVgcrmiqoUK1EChQoUGZ\\/9k=\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/636884539_946267257732176_4454635531701956887_n.enc?ccb=11-4&oh=01_Q5Aa3wHf4rnwWK7Aw2sx_lV_-h0uYOxaT9qVQNtvbJSwb2SWfQ&oe=69B7BD1E&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EQYiKaA\\/bOnELYh3uYSoX2ns6217MdHh\\/EhraxhQNVc=\",\"thumbnailEncSha256\":\"gwbeVXUN\\/W34lnxI24bUXq1K9EhrZU4JQot6HXjnVuM=\",\"mediaKey\":\"c9dDVR9UHc5ke9qfrAODu8V8dpMvcCRqS9wfsX8+S2o=\",\"mediaKeyTimestamp\":\"1771066471\",\"thumbnailHeight\":1024,\"thumbnailWidth\":576,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8sG2vTpuFfXFDKT+QwccCTuUSndhGqeCubmOar7F44c=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771066472,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:32.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 07:54:33'),
(14203, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu4wpk4NfnhVMA5E-mImTnD477Ake7ArwpXyG25X1fGg&oe=699D59F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:33.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 07:54:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu4wpk4NfnhVMA5E-mImTnD477Ake7ArwpXyG25X1fGg&oe=699D59F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:32.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 07:54:33'),
(14205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGu4wpk4NfnhVMA5E-mImTnD477Ake7ArwpXyG25X1fGg&oe=699D59F2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:33.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 07:54:33'),
(14206, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A560BE4AB12B1FAAB8CEFC6E390C3410\"},\"pushName\":\"carolla\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.facebook.com\\/share\\/r\\/1GgKSwUZCG\\/\",\"matchedText\":\"https:\\/\\/www.facebook.com\\/share\\/r\\/1GgKSwUZCG\\/\",\"title\":\"136 mil visualizações | Reel by Dicas do Uille\",\"previewType\":\"VIDEO\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABiAGIDASIAAhEBAxEB\\/8QAHAAAAAcBAQAAAAAAAAAAAAAAAAIDBAUGBwEI\\/8QAPxAAAQMCBAIGBgcGBwAAAAAAAQIDBAARBQYSIRMxByJBUWFxFIGRobHBMjNSYnKS4RUjQlSi0RZTY4LC0vH\\/xAAaAQADAQEBAQAAAAAAAAAAAAAAAQIDBQQG\\/8QAKxEAAgIBAgQFAwUAAAAAAAAAAAECEQQDIRIxM1EFMkHR4RORkhVUYWKh\\/9oADAMBAAIRAxEAPwCJyRiRazhg633w2yzLaW4VEAJRrFyT3W+Fbb0o5bYz1imBNsYnhaYDDUxmWpbiXFpS+zwwW08iobkEnY2NjyrGUZmDbramYyWzbrgAAKt6q5JzPIdaLSWwlChZXWIv5W2Hsrj6M8uG0dHn\\/ZEK16GoO9EmEvysStmdK25oQlTK221WQiQh9INiNW6NJNrkHfe5M1hfRxhOFZpnYpExhEePKjvxEw2G22ktNuIaTZBSbXTwU2Nr997Vi0TNkhtqPwmEJbABUgm+vbtPP\\/yl15zmq16kAlRJ+mfZ5Vq9bxC9tFfl8BcuxqGE9FeE4a9DXMzCzKaYcjKU240hCXEsxlxkoNlcihe\\/iPVSsnopwiRhOEwBj61twojsRDjhCluJWpog6goEFCWG0i3IJ796x9\\/OE6SsBZShLJASlGwVsDc9t7k8rUdWdMTU5q1tjrA2CTa1+XPl4VS1M+unH8vgrc09\\/oZw55wh\\/NMgpMJUPZDaFlJZabuSLA7sIPLlcEnaz7MXRdg2K4BDwqRjyGg3InSirSiynJQcCtKSrqpTxCQN+Q3rGn814k6Os6Ppatri5v27703dzJiSyu7w6ydJNr7Hs35VpF5j80I\\/d+wbmxR+iHCo+NRpzGYwgx5fpSGA2jSLShJCPpbJCrjyPhudnohy0MOw6Azi7SHoyFokOMpQlclKnm3dSrHZYLKAF77DlytiGC4\\/iTUVlbcpSFpKiCEgb3I7qfJxuf6SqQZK\\/SCCC4ANVu69a1k3yj937DpnpfpDdwvEsmYlEfkocadQAUsPALVZQNhbyrG4+GZfaQtiPh8XTI0IQniKcUbkndRO22\\/OqWcRlLSkF9yyb6QDYC\\/dRF4jLSrX6U\\/qPbrN68OZ4fkZck\\/qcK7K\\/glps0r\\/AAdllHVMDDSRtcpJJ9euhWY\\/tCX\\/ADT35zQrwfoGX+5f++4uCXcrWLTXYMbjoIVpKQb9xUAaelx3sUn8v61E5gRxcHlp\\/wBNR9gp3Ge4sZpz7aAr2ivqTVIXjvu8FNtNhdO\\/ht8qRxHEzBiOSH2wptHPQok\\/Cm8BssodRqKgHDbwG1NswjiYNMR9wn2b0BQ8gzvS2hKYbu06kEDUAe3vpyJNuba\\/an+9QGVHNWARgezUP6jUou4oEOjKVf6h+3eEXHuoqpaeZS6B4tq\\/tTLWQaK+vqHe23OgY6w2ewzGS26vSoKURcHkVG1P0YnEuLyGgfFQFV7DpSwx1VKspSzz+8aeIfOu5IPgoXHvoETaMTiK5SGT5LFBUtlauq6hXkoVDlaL\\/VRx5MoHyrgSys2djtK\\/22+FqBk1xkfaHtoVFeiQP5Fn8y\\/+1CiwpnJaQ5HcSeRFqaYC5rwaGTzDYSfVt8qeKGpKrdo2qMwLaG41\\/lPuJ\\/qv86RQ+QbOOjxB936UjiCdcGQnvbUPdRxtJX4pHxNB+xbUO8EUxENlR1LeCq1EBLazcns2B+dJzsxJBKYrWofaWefqqvtylIhuxUkhJd1q8eqLfCrt0TdHEnpInYpDg4gzCkQ4wfRxmypLhKgNJI3SN+dj5VLYmQDOYF6hx2UlPeg2I9tTSZDUmLrZVqBqPzvkPMmSZXBzDhj0dBNkSE9dlz8Kxt6ufeKiMDkFuUWieo4Dt4ihMRYIfUaA7lK+Jp4k3ANR7K7IUO5RpdLnU3NMZIApNqMACumiFXRtzFcS6dRphyJK33qFMOOftUKQ7NnzZ0XcALdy+5q0i\\/orhubfdV8j7axuNEkQMSxOLKYdZWl4K0uJKTukd\\/lXsdXCDVwjv3tc86hMzZSw3MUe8uOhTwHVcQAHOXf2+VRxNDR5WcUBJQLi5SdvWK44d7Ves\\/dFmLYHKblx23ZsJokh1tG6QR\\/En1cxtVHeFjVWBnzrZTJkkDqpXpPgd\\/7Vp3QL0i4d0c4rjM\\/E4sqUZEQNMNMaessLBsok7Dx38qo8JtLmM4nHdF0LGq3r\\/WkJWEPNqPBIcT2b2NDRLReelDpmzJn5l2DILUDBVKCvQY4uFWNxrWd1EEA9g25Vn+Dtlc1KuxAJNdbwuStXXAbHeTf4VMxIzcZrQjcncqPM0AkHaP1n4\\/kKUudNJR91Pfj\\/AOIpRVMY6huXuKCzuTSLCgk0dJ1agaABroUXSnvoUxWexRiGg6UqCWzzJPPx8aO1L1upLSilClHtO+3Ye6qFKzrCiMJcVqS4pQSkDa\\/sqER0jRRJUhiK68EXBu4ADvflY154zvkbamjLTdSNnVPeKNK1ILZvcK3FqzTO\\/R3h2KsmTBKIk1Vz1RZJJ+0KbwekrDkvKamaoSVAAlYsCfPsPqpLMHSTBjtKejMmVBaUlt6QpwpSlalDqkgHYJuTblt31VN7ohfyYXj2UcWy3mWQvEmAlpaLJcSbpVy5H1UyJua3Z7PmVsSC4rLbuKpcO7DEZx4q9WmsxzfGwCLMu03iuEEnrNS4p0gm2w3uNje2+wq4tvmFdiqqoo8as8XBMElrShnMIC1Wtrikb\\/mp7i+RjhkUyHsXhhFrp13SVeQ3vVAUePs68PvA+4Uqabx1pVIf0m9rD404NAjoFhehe1cB2tRFKt50AH1GhSevzoUCNXThkl2IEy1tKKgeHwySbnbtHcTV2ypl6NFjIbbZRe1ySL3NRWlwoacaSOo6ErBG4vtVsw6V6KpKFsqcWOfUOm34uQrlZV2oRZ1cZ8V6k1uxDMWXYsmEtDzDS0kWI01mkvDE4rmfBMsMtJTGbUudLChdK0o2AIuL3Nhz7a2HEcSbdQEsRypJSFHSkqIvWYZgwvGms3Ybi+B6uMg8B1so6vCVckqPdt7bWowpOM6vZizYpwut0XR3L4iNB7C3HUS02AQXdKHQP4Tptbu7h76reLdFOGZhlx58OVKituaXXUOJLxWbi\\/WUrUk9hG\\/urQIT7SWgVuBTZTq1KVpse3eoCFm3DcsQTKxFxTYedW80yganDrUVgW7rqt6rV1EzmC2I5AwJGGqjqw9Y4tgh0rJcKgLDrKNzsPLyrIc4dH+J4QfSImubDIuFJ3UgdxFbdgebcOzSpx7D3FIlpGpxp9vhrA26wFrEeIqReUXpDXEU2lXVIsbjfcHbz+VNiPIDTfClvpIIVYEg991UvXoHOvRtBzBJdmQXEw8RKN1aCG125Ajs58xWIZhwDE8vzDFxWMthzmk80rHeD2ilaZRFqVbzpJW5vXTzotMAXoV2hQSehpRIj2BsNj7xVsSAqO6VAEho2v2bUKFcvK6h2cHyDbBwFShqAP7lR386m8OSDgmJKIGripF+36P60KFPD6yM\\/FegylOknDJIJJBcSkg9xUAR5G5rG8\\/rUczywVKI4yhuezXb4UKFdL1ZyYeVFl6Hm0I6UMMZQhKWVtOamwLJP7tfMeoeyt1k7SlJGyQbADkKFCmMViKPFG5+rTULn2OzLyviHpTTb3DSCjiJCtN1b2vyoUKylzKR5RdFnVgcrmiqoUK1EChQoUGZ\\/9k=\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/636884539_946267257732176_4454635531701956887_n.enc?ccb=11-4&oh=01_Q5Aa3wHf4rnwWK7Aw2sx_lV_-h0uYOxaT9qVQNtvbJSwb2SWfQ&oe=69B7BD1E&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EQYiKaA\\/bOnELYh3uYSoX2ns6217MdHh\\/EhraxhQNVc=\",\"thumbnailEncSha256\":\"gwbeVXUN\\/W34lnxI24bUXq1K9EhrZU4JQot6HXjnVuM=\",\"mediaKey\":\"c9dDVR9UHc5ke9qfrAODu8V8dpMvcCRqS9wfsX8+S2o=\",\"mediaKeyTimestamp\":\"1771066471\",\"thumbnailHeight\":1024,\"thumbnailWidth\":576,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8sG2vTpuFfXFDKT+QwccCTuUSndhGqeCubmOar7F44c=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771066472,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T07:54:32.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 07:54:33'),
(14207, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A5CD7BA9EF0DC706A713C267F694A51D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia Jamila\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:51.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:09:51'),
(14208, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:51.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:09:51'),
(14209, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:51.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:09:52'),
(14210, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:51.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:09:52'),
(14211, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5CD7BA9EF0DC706A713C267F694A51D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067392030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:52.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:09:52'),
(14212, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:51.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:09:52'),
(14213, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A5CD7BA9EF0DC706A713C267F694A51D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia Jamila\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067391,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:51.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:09:52'),
(14214, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5CD7BA9EF0DC706A713C267F694A51D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067392030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:52.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:09:52'),
(14215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:09:56'),
(14216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A5EBDDCA7E9C63FB1869021D902F3DCF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771067396,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:09:56'),
(14217, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:09:56'),
(14218, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A5EBDDCA7E9C63FB1869021D902F3DCF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771067396,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:09:56'),
(14219, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5EBDDCA7E9C63FB1869021D902F3DCF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067396435,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:09:56'),
(14220, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:09:57'),
(14221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5EBDDCA7E9C63FB1869021D902F3DCF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067396435,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:09:57'),
(14222, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:09:56.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:09:57'),
(14223, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A505D11F2D22BB5E88B6EF92EDF8D5F0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando meu sistema e vi que seu acesso expirou, vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771067422,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:22.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:10:22'),
(14224, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A505D11F2D22BB5E88B6EF92EDF8D5F0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando meu sistema e vi que seu acesso expirou, vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771067422,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:22.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:10:23'),
(14225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:22.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:10:23'),
(14226, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A505D11F2D22BB5E88B6EF92EDF8D5F0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067423030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:23.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:10:23'),
(14227, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:23.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:10:23'),
(14228, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:22.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:10:23'),
(14229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A505D11F2D22BB5E88B6EF92EDF8D5F0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067423030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:23.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:10:23'),
(14230, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:10:23.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:10:24'),
(14231, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:11.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:11:11'),
(14232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A558055F1E282B8F80F8F084112976DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia Rodrigo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:11.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:11:11'),
(14233, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:11.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:11:11'),
(14234, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:11.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:11:11'),
(14235, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A558055F1E282B8F80F8F084112976DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia Rodrigo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":30,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:11.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:11:11'),
(14236, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:11.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:11:12'),
(14237, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5FD396C7E11E898C7CC2E0BE884A37A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":35,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":35,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067475,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:15.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:11:15'),
(14238, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:15.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:11:15'),
(14239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:15.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:11:16'),
(14240, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5FD396C7E11E898C7CC2E0BE884A37A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":35,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":35,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067475,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:15.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:11:16'),
(14241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:16.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:11:16'),
(14242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:16.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:11:16'),
(14243, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A558055F1E282B8F80F8F084112976DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067502388,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:42.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:11:42'),
(14244, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5FD396C7E11E898C7CC2E0BE884A37A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067502436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:42.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:11:42'),
(14245, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A558055F1E282B8F80F8F084112976DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067502388,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:42.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:11:42'),
(14246, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5FD396C7E11E898C7CC2E0BE884A37A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067502436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:11:42.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:11:43'),
(14247, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:12.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:12:12'),
(14248, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:12.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:12:12'),
(14249, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A507413F44CBC36393438D552536379E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067532,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:12.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:12:12'),
(14250, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:12.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:12:12'),
(14251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:12.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:12:12'),
(14252, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A507413F44CBC36393438D552536379E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067532,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:12.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:12:13'),
(14253, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A507413F44CBC36393438D552536379E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067533423,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:13.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:12:13'),
(14254, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A507413F44CBC36393438D552536379E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067533423,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:13.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:12:13'),
(14255, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:22.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:12:22'),
(14256, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:22.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:12:22'),
(14257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A59A5BCB515C592F3B632F68CEB10CA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ontem vamos renovar?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:22.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:12:22'),
(14258, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:22.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:12:22'),
(14259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:22.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:12:22'),
(14260, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A59A5BCB515C592F3B632F68CEB10CA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067543244,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:23.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:12:23'),
(14261, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A59A5BCB515C592F3B632F68CEB10CA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067543244,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:23.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:12:23'),
(14262, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A59A5BCB515C592F3B632F68CEB10CA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ontem vamos renovar?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:22.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:12:23'),
(14263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:32.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:12:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5A1BF9E7CAE03B420DAFC1B02B38C57\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Podemos ver um app sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC2FD60B7ED9EADB323D088F61A19CCB\",\"participant\":\"148468597284964@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/570625691_1183376890577552_6414501637611134899_n.enc?ccb=11-4&oh=01_Q5Aa3gH2zLpQVxYPP62tlCXv05zRH1nWcEZuz-FD0mkw5EN4IQ&oe=69908C71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P0LKuPPvB4+72J1duc4mdPLbs6RlBKW8A\\/33BvlSIdQ=\",\"fileLength\":\"68806\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"\\/oUjhw5os3AfuKhtRDqlHzxWvj78KkKs8xBBtcH48BA=\",\"fileEncSha256\":\"tE0mCU3Of+9KAiFa7B\\/QCzLQj0IoVpZUDcbGb2MQNTg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586632592_772689395404054_8942627552925832857_n.enc?ccb=11-4&oh=01_Q5Aa3wH-OX7ccr0rdDoQim0DD4D89wtL874wsPhgKhpae1l19A&oe=69B7CB78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1768496181\",\"waveform\":\"ACUwLlU9UQBEAVVGV08HU01THE5FOkVVK0BBFRNCSjhQSTg8TDFOAj0+TC5XQT4AS05GRE1UUUAiQhU3SEsQAA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"AC2FD60B7ED9EADB323D088F61A19CCB\",\"participant\":\"148468597284964@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/570625691_1183376890577552_6414501637611134899_n.enc?ccb=11-4&oh=01_Q5Aa3gH2zLpQVxYPP62tlCXv05zRH1nWcEZuz-FD0mkw5EN4IQ&oe=69908C71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P0LKuPPvB4+72J1duc4mdPLbs6RlBKW8A\\/33BvlSIdQ=\",\"fileLength\":\"68806\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"\\/oUjhw5os3AfuKhtRDqlHzxWvj78KkKs8xBBtcH48BA=\",\"fileEncSha256\":\"tE0mCU3Of+9KAiFa7B\\/QCzLQj0IoVpZUDcbGb2MQNTg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586632592_772689395404054_8942627552925832857_n.enc?ccb=11-4&oh=01_Q5Aa3wH-OX7ccr0rdDoQim0DD4D89wtL874wsPhgKhpae1l19A&oe=69B7CB78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1768496181\",\"waveform\":\"ACUwLlU9UQBEAVVGV08HU01THE5FOkVVK0BBFRNCSjhQSTg8TDFOAj0+TC5XQT4AS05GRE1UUUAiQhU3SEsQAA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067552,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:32.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:12:32'),
(14265, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:32.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:12:32'),
(14266, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5A1BF9E7CAE03B420DAFC1B02B38C57\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Podemos ver um app sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC2FD60B7ED9EADB323D088F61A19CCB\",\"participant\":\"148468597284964@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/570625691_1183376890577552_6414501637611134899_n.enc?ccb=11-4&oh=01_Q5Aa3gH2zLpQVxYPP62tlCXv05zRH1nWcEZuz-FD0mkw5EN4IQ&oe=69908C71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P0LKuPPvB4+72J1duc4mdPLbs6RlBKW8A\\/33BvlSIdQ=\",\"fileLength\":\"68806\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"\\/oUjhw5os3AfuKhtRDqlHzxWvj78KkKs8xBBtcH48BA=\",\"fileEncSha256\":\"tE0mCU3Of+9KAiFa7B\\/QCzLQj0IoVpZUDcbGb2MQNTg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586632592_772689395404054_8942627552925832857_n.enc?ccb=11-4&oh=01_Q5Aa3wH-OX7ccr0rdDoQim0DD4D89wtL874wsPhgKhpae1l19A&oe=69B7CB78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1768496181\",\"waveform\":\"ACUwLlU9UQBEAVVGV08HU01THE5FOkVVK0BBFRNCSjhQSTg8TDFOAj0+TC5XQT4AS05GRE1UUUAiQhU3SEsQAA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"AC2FD60B7ED9EADB323D088F61A19CCB\",\"participant\":\"148468597284964@lid\",\"quotedMessage\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/570625691_1183376890577552_6414501637611134899_n.enc?ccb=11-4&oh=01_Q5Aa3gH2zLpQVxYPP62tlCXv05zRH1nWcEZuz-FD0mkw5EN4IQ&oe=69908C71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P0LKuPPvB4+72J1duc4mdPLbs6RlBKW8A\\/33BvlSIdQ=\",\"fileLength\":\"68806\",\"seconds\":29,\"ptt\":true,\"mediaKey\":\"\\/oUjhw5os3AfuKhtRDqlHzxWvj78KkKs8xBBtcH48BA=\",\"fileEncSha256\":\"tE0mCU3Of+9KAiFa7B\\/QCzLQj0IoVpZUDcbGb2MQNTg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/586632592_772689395404054_8942627552925832857_n.enc?ccb=11-4&oh=01_Q5Aa3wH-OX7ccr0rdDoQim0DD4D89wtL874wsPhgKhpae1l19A&oe=69B7CB78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1768496181\",\"waveform\":\"ACUwLlU9UQBEAVVGV08HU01THE5FOkVVK0BBFRNCSjhQSTg8TDFOAj0+TC5XQT4AS05GRE1UUUAiQhU3SEsQAA==\"}},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067552,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:32.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:12:32'),
(14267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:32.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:12:32'),
(14268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:32.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:12:33'),
(14269, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5A1BF9E7CAE03B420DAFC1B02B38C57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067553545,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:33.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:12:33'),
(14270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5A1BF9E7CAE03B420DAFC1B02B38C57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067553545,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:12:33.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:12:33'),
(14271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":23},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":23},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:18'),
(14272, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:14:18'),
(14273, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFBZ_OHKQSJHJbNxlZZzdf79p2rWneCKA_JYlYQR4cVA&oe=699D7BF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:18.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:18'),
(14274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:14:18'),
(14275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":23},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":23},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:18'),
(14276, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFBZ_OHKQSJHJbNxlZZzdf79p2rWneCKA_JYlYQR4cVA&oe=699D7BF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:18.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:19'),
(14277, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067659550,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:19.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:19'),
(14278, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067659550,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:19.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:19'),
(14279, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067660733,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:20.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:20'),
(14280, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067660733,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:20.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:20'),
(14281, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"223578951790814@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:14:48'),
(14282, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"223578951790814@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:14:48'),
(14283, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIypXegUDarg-qb0gjABPjh6Zovlo4xpXikFhy4GvpzQ&oe=699D65F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:48'),
(14284, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":true,\"id\":\"A5B979DEEE0FE4BF256EB951D2FBF170\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067687,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:48'),
(14285, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIypXegUDarg-qb0gjABPjh6Zovlo4xpXikFhy4GvpzQ&oe=699D65F8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:48'),
(14286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":true,\"id\":\"A5B979DEEE0FE4BF256EB951D2FBF170\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067687,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:49'),
(14287, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814@lid\",\"id\":\"A5B979DEEE0FE4BF256EB951D2FBF170\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067688877,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:14:49'),
(14288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814@lid\",\"id\":\"A5B979DEEE0FE4BF256EB951D2FBF170\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067688877,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:14:48.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:14:49'),
(14289, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"34716270989423@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:07.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:15:07'),
(14290, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"34716270989423@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:07.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:15:07'),
(14291, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"34716270989423@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/598793324_850914527931506_2100243329262711502_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ldSOhaI4WwobMfSvHC9rB8mdbpq_M_Ull5ZrKR9cBw&oe=699D6F86&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:07.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:15:07'),
(14292, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"34716270989423@lid\",\"fromMe\":true,\"id\":\"A5FB5CF338858E3C1D604742BA059246\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710269\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710269\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:07.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:15:07'),
(14293, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"34716270989423@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/598793324_850914527931506_2100243329262711502_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ldSOhaI4WwobMfSvHC9rB8mdbpq_M_Ull5ZrKR9cBw&oe=699D6F86&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:07.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:07'),
(14294, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"34716270989423@lid\",\"fromMe\":true,\"id\":\"A5FB5CF338858E3C1D604742BA059246\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710269\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710269\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:07.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:08'),
(14296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"34716270989423@lid\",\"id\":\"A5FB5CF338858E3C1D604742BA059246\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067708467,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:08.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:08'),
(14297, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":true,\"id\":\"A594961F886196465E9B9961C352330D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067730,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:30.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:15:31'),
(14298, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:30.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:15:31'),
(14299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:30.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:15:31'),
(14300, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLyNKjrn4pqV598r2QlvkIMB1YTFzWap8icZYLzU_vAg&oe=699D5B5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:31.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:15:31'),
(14301, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":true,\"id\":\"A594961F886196465E9B9961C352330D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067730,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:30.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:31'),
(14302, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLyNKjrn4pqV598r2QlvkIMB1YTFzWap8icZYLzU_vAg&oe=699D5B5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:31.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:32'),
(14303, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:55.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:15:55'),
(14304, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:55.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:15:55'),
(14305, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067755,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:55.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:15:55'),
(14306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067755,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:55.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:56'),
(14307, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:55.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:15:56'),
(14308, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:15:55.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:15:56'),
(14309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067760057,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:00.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:00'),
(14310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067760057,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:00.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:00'),
(14311, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178099677315112@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:28.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:16:28'),
(14312, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178099677315112@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:28.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:16:28'),
(14313, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178099677315112@lid\",\"fromMe\":true,\"id\":\"A50038C64A2965DB7BC893935CD37728\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067788,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:28.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:28'),
(14314, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178099677315112@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/596057925_2309919469474571_823855273163274164_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ23E9cWib_F--o3866NUI2gubUDboBpuJPiA2MWi2JA&oe=699D6856&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:28.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:28'),
(14315, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178099677315112@lid\",\"fromMe\":true,\"id\":\"A50038C64A2965DB7BC893935CD37728\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067788,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:28.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:28'),
(14316, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178099677315112@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/596057925_2309919469474571_823855273163274164_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ23E9cWib_F--o3866NUI2gubUDboBpuJPiA2MWi2JA&oe=699D6856&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:28.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:29'),
(14317, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178099677315112@lid\",\"id\":\"A50038C64A2965DB7BC893935CD37728\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067790430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:30.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:30'),
(14318, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178099677315112@lid\",\"id\":\"A50038C64A2965DB7BC893935CD37728\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067790430,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:30.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:30'),
(14319, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178099677315112@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:32.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:16:32'),
(14320, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178099677315112@lid\",\"fromMe\":false,\"id\":\"A5F70B85708F2330ED633DA9C2687039\"},\"pushName\":\"Avm\",\"message\":{\"extendedTextMessage\":{\"text\":\"Allef da Construjota Distribuidora, e sou do setor de especialidade do atendimento a Construtora.\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877778\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"IO+jYuNp0Q8jlw==\",\"senderTimestamp\":\"1770894960\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ge8zxMEfu+oYMVdRMEHrHtfakKqsb2eXvfCRqrEOSnc=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877778\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067792,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:32.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:32'),
(14321, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178099677315112@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:32.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:16:32'),
(14322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178099677315112@lid\",\"pushName\":\"Avm\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/596057925_2309919469474571_823855273163274164_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ23E9cWib_F--o3866NUI2gubUDboBpuJPiA2MWi2JA&oe=699D6856&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:32.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:16:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14323, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178099677315112@lid\",\"fromMe\":false,\"id\":\"A5F70B85708F2330ED633DA9C2687039\"},\"pushName\":\"Avm\",\"message\":{\"extendedTextMessage\":{\"text\":\"Allef da Construjota Distribuidora, e sou do setor de especialidade do atendimento a Construtora.\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877778\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"IO+jYuNp0Q8jlw==\",\"senderTimestamp\":\"1770894960\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ge8zxMEfu+oYMVdRMEHrHtfakKqsb2eXvfCRqrEOSnc=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1729877778\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067792,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:32.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:33'),
(14324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:33.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:16:33'),
(14325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178099677315112@lid\",\"pushName\":\"Avm\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/596057925_2309919469474571_823855273163274164_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ23E9cWib_F--o3866NUI2gubUDboBpuJPiA2MWi2JA&oe=699D6856&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:32.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:16:33'),
(14326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178099677315112@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/596057925_2309919469474571_823855273163274164_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ23E9cWib_F--o3866NUI2gubUDboBpuJPiA2MWi2JA&oe=699D6856&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:33.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:16:33'),
(14327, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:33.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:16:33'),
(14328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178099677315112@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/596057925_2309919469474571_823855273163274164_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ23E9cWib_F--o3866NUI2gubUDboBpuJPiA2MWi2JA&oe=699D6856&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:33.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:16:34'),
(14329, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:42.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:16:42'),
(14330, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":true,\"id\":\"A5B4CDC06AF47BD0F6C8930D7A324402\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067802,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:42.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:42'),
(14331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:42.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:16:42'),
(14332, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRiuhPRVYwpJ2m3SGXJeeZ4WGhiF45EDb0Vem9yadOIg&oe=699D66F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:42.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:16:42'),
(14333, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":true,\"id\":\"A5B4CDC06AF47BD0F6C8930D7A324402\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067802,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:42.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:42'),
(14334, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRiuhPRVYwpJ2m3SGXJeeZ4WGhiF45EDb0Vem9yadOIg&oe=699D66F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:16:42.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:16:43'),
(14335, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"134944114352242@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:03.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:17:03'),
(14336, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"134944114352242@lid\",\"fromMe\":true,\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067823,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:03.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:03'),
(14337, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"134944114352242@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:03.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:17:04'),
(14338, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"134944114352242@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469592719_3915483292106499_2559585622820255091_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDZy2wYoF6ngM4JkJ1sQwQ23y7ZsrCAICXKdY4grDvQ&oe=699D5BCD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:04.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:04'),
(14339, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"134944114352242@lid\",\"fromMe\":true,\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067823,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:03.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:04'),
(14340, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"134944114352242@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469592719_3915483292106499_2559585622820255091_n.jpg?ccb=11-4&oh=01_Q5Aa3wEiDZy2wYoF6ngM4JkJ1sQwQ23y7ZsrCAICXKdY4grDvQ&oe=699D5BCD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:04.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:04'),
(14341, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5B4CDC06AF47BD0F6C8930D7A324402\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067824902,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:04.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:04'),
(14342, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5B4CDC06AF47BD0F6C8930D7A324402\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067824902,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:04.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:05'),
(14343, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"134944114352242:1@lid\",\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067825963,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:05.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:06'),
(14344, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"134944114352242@lid\",\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067826001,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:06.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:06'),
(14345, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"134944114352242:1@lid\",\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067825963,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:05.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:06'),
(14346, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"134944114352242@lid\",\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067826001,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:06.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:06'),
(14347, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"12056174587932@lid\",\"fromMe\":true,\"id\":\"A5CD703FA96DEA550F189D6B905F58B4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:22.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:22'),
(14348, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"12056174587932@lid\",\"fromMe\":true,\"id\":\"A5CD703FA96DEA550F189D6B905F58B4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:22.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:22'),
(14349, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"12056174587932@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:22.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:17:22'),
(14350, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"12056174587932@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:22.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:17:22'),
(14351, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12056174587932@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516827830_1961554617933056_1213050078866537497_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHgadYp3FTtJWtHPWWdNBwCWLGHNsLT6DDr_uTpD8MUw&oe=699D62E7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:22.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:22'),
(14352, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12056174587932@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516827830_1961554617933056_1213050078866537497_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHgadYp3FTtJWtHPWWdNBwCWLGHNsLT6DDr_uTpD8MUw&oe=699D62E7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:22.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:22'),
(14353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"824717627536@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:56.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:17:56'),
(14354, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"824717627536@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:56.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:17:57'),
(14355, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"824717627536@lid\",\"fromMe\":true,\"id\":\"A56CE57EB3FD8E2243B446DB2AE60E8B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1747049\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1747049\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067876,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:56.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:57'),
(14356, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"824717627536@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ9zY3xACNSDHcFdU6MfjhVdOetAFXtBhA8iSOolexBg&oe=699D7F74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:56.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:57'),
(14357, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"824717627536@lid\",\"fromMe\":true,\"id\":\"A56CE57EB3FD8E2243B446DB2AE60E8B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1747049\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1747049\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":15,\"disappearingMode\":{\"initiator\":\"INITIATED_BY_OTHER\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771067876,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:56.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:57'),
(14358, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"824717627536@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ9zY3xACNSDHcFdU6MfjhVdOetAFXtBhA8iSOolexBg&oe=699D7F74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:56.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:57'),
(14359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"824717627536@lid\",\"id\":\"A56CE57EB3FD8E2243B446DB2AE60E8B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067878128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:58.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:17:58'),
(14360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"824717627536@lid\",\"id\":\"A56CE57EB3FD8E2243B446DB2AE60E8B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067878128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:17:58.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:17:58'),
(14361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A5CD703FA96DEA550F189D6B905F58B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067920384,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:18:40.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:18:40'),
(14362, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A5CD703FA96DEA550F189D6B905F58B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067920384,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:18:40.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:18:41'),
(14363, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067970200,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:19:30.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:19:30'),
(14364, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771067970200,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:19:30.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:19:30'),
(14365, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068007413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:07.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:07'),
(14366, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5E3F5A1BD9CD780B10820A015727A11\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068007413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:07.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:08'),
(14367, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:12.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:20:12'),
(14368, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"146729018064953@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:12.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:20:13'),
(14369, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":true,\"id\":\"A52546D188A412BF72156617141C04EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"stickerSentTs\":\"1771068009377\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771068012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:12.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:13'),
(14370, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wH40DNOCfyfbxqXTMD2tK9cFrOs5xKTeHH5mptDA5gPjw&oe=699D7960&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:13.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:20:13'),
(14371, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wH40DNOCfyfbxqXTMD2tK9cFrOs5xKTeHH5mptDA5gPjw&oe=699D7960&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:13.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:20:13'),
(14372, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":true,\"id\":\"A52546D188A412BF72156617141C04EB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"stickerSentTs\":\"1771068009377\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771068012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:12.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:13'),
(14373, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"146729018064953@lid\",\"id\":\"A52546D188A412BF72156617141C04EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068014702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:14.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:14'),
(14374, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"146729018064953@lid\",\"id\":\"A52546D188A412BF72156617141C04EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068014702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:14.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:14'),
(14375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":true,\"id\":\"A56D0321A62092DDAAA99C8C1D818290\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"reactionMessage\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"AC3E2BEF1AADFCDA63DF6763EA40F826\"},\"text\":\"🙏\",\"senderTimestampMs\":\"1771068020886\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771068023,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:23.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:23'),
(14376, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":true,\"id\":\"A56D0321A62092DDAAA99C8C1D818290\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"reactionMessage\":{\"key\":{\"remoteJid\":\"146729018064953@lid\",\"fromMe\":false,\"id\":\"AC3E2BEF1AADFCDA63DF6763EA40F826\"},\"text\":\"🙏\",\"senderTimestampMs\":\"1771068020886\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771068023,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:23.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:24'),
(14377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wH40DNOCfyfbxqXTMD2tK9cFrOs5xKTeHH5mptDA5gPjw&oe=699D7960&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:24.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:20:24'),
(14378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"146729018064953@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414788_3900382800255838_5170464069574871640_n.jpg?ccb=11-4&oh=01_Q5Aa3wH40DNOCfyfbxqXTMD2tK9cFrOs5xKTeHH5mptDA5gPjw&oe=699D7960&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:24.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:20:24'),
(14379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:43.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:20:43'),
(14380, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":true,\"id\":\"A504B5FEAF4484342968419DA46C721C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068043,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:43.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:43'),
(14381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:43.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:20:44'),
(14382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":true,\"id\":\"A504B5FEAF4484342968419DA46C721C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068043,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:43.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:44'),
(14383, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN2IvKzA0-eJr6nCJSY3uqK3Z9x0-CTsxG0QoxuE5xxQ&oe=699D6FBB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:44.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:44'),
(14384, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFN2IvKzA0-eJr6nCJSY3uqK3Z9x0-CTsxG0QoxuE5xxQ&oe=699D6FBB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:44.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:44'),
(14385, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A504B5FEAF4484342968419DA46C721C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068044735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:44.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:20:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A504B5FEAF4484342968419DA46C721C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068044735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:20:44.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:20:45'),
(14387, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A5FF43FEB6C29DF75579BB2603DC0905\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068062125,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:02.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:02'),
(14388, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A5FF43FEB6C29DF75579BB2603DC0905\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068062125,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:02.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:02'),
(14389, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":true,\"id\":\"A57A08A97E7FDFEE82BD4575509B5A53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:21.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:21'),
(14390, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":true,\"id\":\"A57A08A97E7FDFEE82BD4575509B5A53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:21.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:21'),
(14391, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:21.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:21:21'),
(14392, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:21.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:21:21'),
(14393, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKPZien8eOaFZoTMrDQZS8mV0r54A4WdX6B5ulGuRu7g&oe=699D587F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:21.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:21'),
(14394, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A57A08A97E7FDFEE82BD4575509B5A53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068082311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:22.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:22'),
(14395, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKPZien8eOaFZoTMrDQZS8mV0r54A4WdX6B5ulGuRu7g&oe=699D587F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:21.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:22'),
(14396, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A57A08A97E7FDFEE82BD4575509B5A53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068082311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:22.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:22'),
(14397, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:35.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:21:36'),
(14398, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:35.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:21:36'),
(14399, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:36.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:36'),
(14400, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":true,\"id\":\"A50C274480577E895D74AD143AF591D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068095,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:35.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:36'),
(14401, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:36.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:36'),
(14402, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":true,\"id\":\"A50C274480577E895D74AD143AF591D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068095,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:35.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:37'),
(14403, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"114864773144584@lid\",\"id\":\"A50C274480577E895D74AD143AF591D4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068097802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:37.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:37'),
(14404, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"114864773144584@lid\",\"id\":\"A50C274480577E895D74AD143AF591D4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068097802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:37.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:38'),
(14405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A5FF43FEB6C29DF75579BB2603DC0905\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068101607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:41.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:21:41'),
(14406, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A5FF43FEB6C29DF75579BB2603DC0905\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068101607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:41.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:21:41'),
(14407, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180341532831791@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379582419_271000795811507_6934215264591736970_n.jpg?ccb=11-4&oh=01_Q5Aa3wFYEstuG9e-vmerC0cHq1uPHSNiUs9WDBPjGy7PV5oGRQ&oe=699D572C&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:00.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:00'),
(14408, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180341532831791@lid\",\"fromMe\":true,\"id\":\"A5FBE448D93F530D26C4D8422AB83856\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:59.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:00'),
(14409, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180341532831791@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:59.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:22:00'),
(14410, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180341532831791@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:59.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:22:00'),
(14411, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180341532831791@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379582419_271000795811507_6934215264591736970_n.jpg?ccb=11-4&oh=01_Q5Aa3wFYEstuG9e-vmerC0cHq1uPHSNiUs9WDBPjGy7PV5oGRQ&oe=699D572C&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:00.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:00'),
(14412, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180341532831791@lid\",\"fromMe\":true,\"id\":\"A5FBE448D93F530D26C4D8422AB83856\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:21:59.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:01'),
(14413, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"180341532831791@lid\",\"id\":\"A5FBE448D93F530D26C4D8422AB83856\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068120354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:00.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:01'),
(14414, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"180341532831791@lid\",\"id\":\"A5FBE448D93F530D26C4D8422AB83856\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068120354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:00.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:01'),
(14415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:22:33'),
(14416, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:22:33'),
(14417, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"176763791491157@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wEf2Q6X4eJnIdesllGatQ2br6WtWXTwKP7BRh9XQj5b-A&oe=699D5DB6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:33'),
(14418, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"176763791491157@lid\",\"fromMe\":true,\"id\":\"A5A6259F3F6AD9585BECBA4A27678BD2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068153,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:33'),
(14419, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"176763791491157@lid\",\"id\":\"A5A6259F3F6AD9585BECBA4A27678BD2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068153938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:34'),
(14420, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"176763791491157@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wEf2Q6X4eJnIdesllGatQ2br6WtWXTwKP7BRh9XQj5b-A&oe=699D5DB6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:34'),
(14421, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"176763791491157@lid\",\"fromMe\":true,\"id\":\"A5A6259F3F6AD9585BECBA4A27678BD2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068153,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:34'),
(14422, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"176763791491157@lid\",\"id\":\"A5A6259F3F6AD9585BECBA4A27678BD2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068153938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:33.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:34'),
(14423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219009039503427@lid\",\"fromMe\":true,\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068177,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:57.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:57'),
(14424, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219009039503427@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/626506080_1435184037976952_2405671350368907397_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZv263dsB3KahjPQ7Yg-fFi0OQA1sKQXOFCR9U4sHLqw&oe=699D6BAA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:57.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:57'),
(14425, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219009039503427@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:57.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:22:57'),
(14426, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219009039503427@lid\",\"fromMe\":true,\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":13},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068177,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:57.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:57'),
(14427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219009039503427@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:57.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:22:57'),
(14428, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219009039503427@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/626506080_1435184037976952_2405671350368907397_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZv263dsB3KahjPQ7Yg-fFi0OQA1sKQXOFCR9U4sHLqw&oe=699D6BAA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:57.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:58'),
(14429, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219009039503427@lid\",\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068178374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:58.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:22:58'),
(14430, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219009039503427@lid\",\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068178374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:22:58.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:22:58'),
(14431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"16149513269440@lid\",\"fromMe\":true,\"id\":\"A5FC143DA46EE0C6E231637BB658BC06\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1727763\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1727763\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068192,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:12.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:12'),
(14432, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"16149513269440@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:12.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:23:12'),
(14433, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"16149513269440@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:12.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:23:12'),
(14434, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"16149513269440@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842632_771616411879955_1110015472393291357_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdQ0rjd5huYVRK-NkptDuhvQWjq_EQi1JWxJohHN2y6g&oe=699D62D5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:12.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:12'),
(14435, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"16149513269440@lid\",\"fromMe\":true,\"id\":\"A5FC143DA46EE0C6E231637BB658BC06\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1727763\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1727763\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068192,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:12.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:12'),
(14436, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"16149513269440@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842632_771616411879955_1110015472393291357_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdQ0rjd5huYVRK-NkptDuhvQWjq_EQi1JWxJohHN2y6g&oe=699D62D5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:12.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:13'),
(14437, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"16149513269440@lid\",\"id\":\"A5FC143DA46EE0C6E231637BB658BC06\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068193881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:13.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:13'),
(14438, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"16149513269440@lid\",\"id\":\"A5FC143DA46EE0C6E231637BB658BC06\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068193881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:13.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:14'),
(14439, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"97367009263776@lid\",\"fromMe\":true,\"id\":\"A57CF67EF8F2A933F36D5BDD2F3EF416\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:26.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:26'),
(14440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"97367009263776@lid\",\"fromMe\":true,\"id\":\"A57CF67EF8F2A933F36D5BDD2F3EF416\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:26.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:26'),
(14441, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"97367009263776@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:26.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:23:26'),
(14442, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"97367009263776@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:26.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:23:26'),
(14443, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"97367009263776@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:26.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:26'),
(14444, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"97367009263776@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:26.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:27'),
(14445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"97367009263776@lid\",\"id\":\"A57CF67EF8F2A933F36D5BDD2F3EF416\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068208615,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:28.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:28'),
(14446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"97367009263776@lid\",\"id\":\"A57CF67EF8F2A933F36D5BDD2F3EF416\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068208615,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:28.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:28'),
(14447, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:40.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:23:40'),
(14448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:40.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:23:40'),
(14449, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":true,\"id\":\"A57D5D7B7BF21437DAEEF05BA9971A4A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068220,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:40.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14450, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrzjX6cvp_tZtowGHEsQ7QKKD8zXaZbahad_pdBxAUkw&oe=699D5F12&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:40.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:40'),
(14451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":true,\"id\":\"A57D5D7B7BF21437DAEEF05BA9971A4A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068220,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:40.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:41'),
(14452, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrzjX6cvp_tZtowGHEsQ7QKKD8zXaZbahad_pdBxAUkw&oe=699D5F12&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:40.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:41'),
(14453, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A57D5D7B7BF21437DAEEF05BA9971A4A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068223323,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:43.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:23:43'),
(14454, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A57D5D7B7BF21437DAEEF05BA9971A4A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068223323,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:23:43.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:23:43'),
(14455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"248562675900424@lid\",\"fromMe\":true,\"id\":\"A5692A0110194A02D1977871953B270B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 20\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:11.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:11'),
(14456, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"248562675900424@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491844149_1198715515328530_5492775715959178700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4cVBaIc6Xhpx9roV-1xFSxIJfn5p9EBZQqK97pJvXmw&oe=699D887C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:11.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:11'),
(14457, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"248562675900424@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:11.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:11'),
(14458, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"248562675900424@lid\",\"fromMe\":true,\"id\":\"A5692A0110194A02D1977871953B270B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 20\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":22},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:11.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:11'),
(14459, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"248562675900424@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491844149_1198715515328530_5492775715959178700_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4cVBaIc6Xhpx9roV-1xFSxIJfn5p9EBZQqK97pJvXmw&oe=699D887C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:11.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:11'),
(14460, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"248562675900424@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:11.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:12'),
(14461, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:24.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:24'),
(14462, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":true,\"id\":\"A51DD816CEB6A9A58200D0C6AF7B689A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068264,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:24.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:24'),
(14463, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE25FwfRUrBxESm8xtWPatSExF4a5ahizfDfRDYrBuEYQ&oe=699D6750&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:24.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:24'),
(14464, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":true,\"id\":\"A51DD816CEB6A9A58200D0C6AF7B689A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068264,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:24.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:25'),
(14465, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:24.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:25'),
(14466, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE25FwfRUrBxESm8xtWPatSExF4a5ahizfDfRDYrBuEYQ&oe=699D6750&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:24.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:25'),
(14467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8gXt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:39'),
(14468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:39'),
(14469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:39'),
(14470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:39'),
(14471, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:39'),
(14472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:40'),
(14473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:40'),
(14474, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:40'),
(14475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8gXt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:40'),
(14476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:40'),
(14477, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Qk1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14480, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:40'),
(14481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14482, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pkFL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Zs16\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:40'),
(14485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:41'),
(14486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:41'),
(14487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:41'),
(14488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bWT7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:41'),
(14489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1k2E\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:41'),
(14490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1k2E\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:42'),
(14491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"dp\\/s\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:42'),
(14492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.442Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:42'),
(14493, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:42'),
(14494, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:42'),
(14495, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"dp\\/s\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:43'),
(14496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.442Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:43'),
(14497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:43'),
(14498, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:43'),
(14499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"lRjR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:43'),
(14500, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:44'),
(14501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Y15j\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:44'),
(14502, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:44'),
(14503, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Zs16\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:44'),
(14504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:44'),
(14505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bB2G\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:45'),
(14506, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bWT7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:45'),
(14507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"lRjR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:45'),
(14508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:45'),
(14509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:45'),
(14510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Y15j\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:46'),
(14511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:46'),
(14512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5Qk1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:46'),
(14513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:46'),
(14514, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:46'),
(14515, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:47'),
(14516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"bB2G\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:47'),
(14517, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:47'),
(14518, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hi4O\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:47'),
(14519, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:47'),
(14520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:48'),
(14521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:48'),
(14522, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:48'),
(14523, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:48'),
(14524, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:48'),
(14525, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:49'),
(14526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hi4O\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:49'),
(14527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:49'),
(14528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pkFL\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:49'),
(14529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:49'),
(14530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hi4O\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:50'),
(14531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:50'),
(14532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:50'),
(14533, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Y15j\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:50'),
(14534, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:50'),
(14535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:51'),
(14536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:51'),
(14537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Y15j\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:51'),
(14538, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hi4O\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:51'),
(14539, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:51'),
(14540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:52'),
(14541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MS9l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14542, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MS9l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:52'),
(14543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"QPAs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:52'),
(14544, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7Quj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:52'),
(14545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7Quj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:53'),
(14546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"QPAs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:53'),
(14547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tCPB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:53'),
(14548, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:53'),
(14549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:53'),
(14550, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tCPB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:54'),
(14551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Gx5P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:54'),
(14552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:54'),
(14553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:54'),
(14554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"X\\/4w\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:54'),
(14555, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KVHb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:55'),
(14556, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"X\\/4w\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:55'),
(14557, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:55'),
(14558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vlKz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:55'),
(14559, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:55'),
(14560, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"y3Ii\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:56'),
(14561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"4hpU\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:56'),
(14562, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7Quj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:56'),
(14563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"C0ww\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:56'),
(14564, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:56'),
(14565, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"N4+l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:57'),
(14566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:57'),
(14567, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:40.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:24:57'),
(14568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:57'),
(14569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:57'),
(14570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vlKz\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:58'),
(14571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"y3Ii\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:58'),
(14572, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"4hpU\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:58'),
(14573, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"C0ww\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:58'),
(14574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"7Quj\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:58'),
(14575, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:40.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:24:59'),
(14576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:59'),
(14577, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"N4+l\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:59'),
(14578, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:24:59'),
(14579, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:24:59'),
(14580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"odlg\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:25:00'),
(14581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"lCv7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:25:00'),
(14582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"lCv7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:25:00'),
(14583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tN0T\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:25:00'),
(14584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:25:00'),
(14585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"lCv7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:25:01'),
(14586, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"tN0T\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:25:01'),
(14587, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"lCv7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:25:01'),
(14588, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"odlg\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:24:39.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:25:01'),
(14589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:25:59'),
(14590, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:25:59'),
(14591, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A5480A0BC6DF97844B76ECF9267CA093\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:25:59'),
(14593, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM-6F_wbAxllvFikkvI1fVe7nbljmMH-6tfep5x3yNeQ&oe=699D75BC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:25:59'),
(14594, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A5480A0BC6DF97844B76ECF9267CA093\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771068358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:26:00'),
(14595, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wHM-6F_wbAxllvFikkvI1fVe7nbljmMH-6tfep5x3yNeQ&oe=699D75BC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:26:00'),
(14596, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5480A0BC6DF97844B76ECF9267CA093\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068359339,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:25:59.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:26:00'),
(14597, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5480A0BC6DF97844B76ECF9267CA093\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068368889,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:26:08.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:26:09'),
(14598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5480A0BC6DF97844B76ECF9267CA093\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068368889,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:26:08.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:26:09'),
(14599, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"248562675900424@lid\",\"id\":\"A5692A0110194A02D1977871953B270B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068513177,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:28:33.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:28:33'),
(14600, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"248562675900424@lid\",\"id\":\"A5692A0110194A02D1977871953B270B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068513177,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:28:33.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:28:33'),
(14601, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"248562675900424@lid\",\"id\":\"A5692A0110194A02D1977871953B270B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068752375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:32:32.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:32:32'),
(14602, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"248562675900424@lid\",\"id\":\"A5692A0110194A02D1977871953B270B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771068752375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:32:32.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:32:33'),
(14603, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068761398,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:32:41.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:32:41'),
(14604, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068761398,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:32:41.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:32:41'),
(14605, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC1B8220224B732B85AE9CA4E6BCD35E\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635028260_1178282570815474_2590868899825495014_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-G-WMajoOnV73Mlarpgc-cRVaMRMHDrtIRBHDKAE8A&oe=69B7BC28&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eQyvovPMYHxeoBcUfODCk\\/NAjY8fcVTY8VyGZEqpkkU=\",\"fileLength\":\"80264\",\"height\":1280,\"width\":960,\"mediaKey\":\"Nf2xqtofywsTzf2LCoZEq5BGi7Q4Z8y09+\\/3p+Kyi70=\",\"fileEncSha256\":\"Txg5hKGoHrZWSp23iiB\\/6QRCV8CPE\\/P5WgoPQB6njxA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635028260_1178282570815474_2590868899825495014_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-G-WMajoOnV73Mlarpgc-cRVaMRMHDrtIRBHDKAE8A&oe=69B7BC28&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771068934\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4ALgMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAEBQECAwABAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAc9CwZQgtTuqc6GKdmolAJpyivASEPTO1pn2l87pgUGjpU3CQDYzJYFkQ\\/8QAJhAAAgICAQEIAwAAAAAAAAAAAQIAAwQRIRIQExQiMTJCUSBScf\\/aAAgBAQABPwD8CIR2Zjsr8Gd\\/YPmZ4m8a8xnjLl9WiXOVBhmedOIWG5ZdjtSqhTsQNKdGpP5L7e6XepfdVadspmsc\\/FoKsdv2lmJStJsDHiYbhq9fUzfYIV23AllbdOtCIpCttOTLVCYz6mA\\/vEywSohQqvP3OoQHYjaaiwGYXSHbUzfRYz+XiCzpbzSpjYSFG4VZa3D8biLXV6zKTvNDcGIp3zBhostZMYDiPlB+Asusctrjif\\/EABsRAAMAAgMAAAAAAAAAAAAAAAABERAxAhJh\\/9oACAECAQE\\/ACDx3RaPWE9nKF8Ef\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAABEBESIDH\\/2gAIAQMBAT8A0xZVC6WMU\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"HysDTOthriHNDmTbpffBgTOXYhsieon02D0FqYM81ZwovFC6pgdHwA==\",\"scanLengths\":[11609,31730,12708,24217],\"midQualityFileSha256\":\"t9S6lmJUMZ3nqtptfd9Znmrvp8rIYoGdvf2a4sdLyIs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X4mU1TNitjo+mC1kxFRIY+uez\\/0K+74u4qsZM1Mg93A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771068935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:35.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:35:36'),
(14606, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:35.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:35:36'),
(14607, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:35.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:35:36'),
(14608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:35.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:35:36'),
(14609, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:35:36'),
(14610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5F12ED855B4D33E4978A68B9D870AFF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068936289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:35:36'),
(14611, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC1B8220224B732B85AE9CA4E6BCD35E\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635028260_1178282570815474_2590868899825495014_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-G-WMajoOnV73Mlarpgc-cRVaMRMHDrtIRBHDKAE8A&oe=69B7BC28&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eQyvovPMYHxeoBcUfODCk\\/NAjY8fcVTY8VyGZEqpkkU=\",\"fileLength\":\"80264\",\"height\":1280,\"width\":960,\"mediaKey\":\"Nf2xqtofywsTzf2LCoZEq5BGi7Q4Z8y09+\\/3p+Kyi70=\",\"fileEncSha256\":\"Txg5hKGoHrZWSp23iiB\\/6QRCV8CPE\\/P5WgoPQB6njxA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635028260_1178282570815474_2590868899825495014_n.enc?ccb=11-4&oh=01_Q5Aa3wEL-G-WMajoOnV73Mlarpgc-cRVaMRMHDrtIRBHDKAE8A&oe=69B7BC28&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771068934\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4ALgMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAEBQECAwABAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAc9CwZQgtTuqc6GKdmolAJpyivASEPTO1pn2l87pgUGjpU3CQDYzJYFkQ\\/8QAJhAAAgICAQEIAwAAAAAAAAAAAQIAAwQRIRIQExQiMTJCUSBScf\\/aAAgBAQABPwD8CIR2Zjsr8Gd\\/YPmZ4m8a8xnjLl9WiXOVBhmedOIWG5ZdjtSqhTsQNKdGpP5L7e6XepfdVadspmsc\\/FoKsdv2lmJStJsDHiYbhq9fUzfYIV23AllbdOtCIpCttOTLVCYz6mA\\/vEywSohQqvP3OoQHYjaaiwGYXSHbUzfRYz+XiCzpbzSpjYSFG4VZa3D8biLXV6zKTvNDcGIp3zBhostZMYDiPlB+Asusctrjif\\/EABsRAAMAAgMAAAAAAAAAAAAAAAABERAxAhJh\\/9oACAECAQE\\/ACDx3RaPWE9nKF8Ef\\/\\/EABoRAAICAwAAAAAAAAAAAAAAAAABEBESIDH\\/2gAIAQMBAT8A0xZVC6WMU\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"HysDTOthriHNDmTbpffBgTOXYhsieon02D0FqYM81ZwovFC6pgdHwA==\",\"scanLengths\":[11609,31730,12708,24217],\"midQualityFileSha256\":\"t9S6lmJUMZ3nqtptfd9Znmrvp8rIYoGdvf2a4sdLyIs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X4mU1TNitjo+mC1kxFRIY+uez\\/0K+74u4qsZM1Mg93A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771068935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:35.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:35:36'),
(14612, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:35:36'),
(14613, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5F12ED855B4D33E4978A68B9D870AFF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771068936289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:35:36'),
(14614, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:35:37'),
(14615, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:35.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:35:37'),
(14616, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:35:37'),
(14617, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:35:37'),
(14618, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5F12ED855B4D33E4978A68B9D870AFF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771068936,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:35:37'),
(14619, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:35:38'),
(14620, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5F12ED855B4D33E4978A68B9D870AFF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771068936,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:35:36.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:35:38'),
(14621, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:13.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:36:13'),
(14622, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC578BECB89D73923CD5BD287BB595AC\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Estou sem sinal nas duas tvs\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PjAk56CUg+iManVR5XBYFaMsOdkSTp8tpfu9EpzFSII=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771068973,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:13.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:36:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14623, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:13.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:36:13'),
(14624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:13.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:36:14'),
(14625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:13.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:36:14'),
(14626, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC578BECB89D73923CD5BD287BB595AC\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Estou sem sinal nas duas tvs\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PjAk56CUg+iManVR5XBYFaMsOdkSTp8tpfu9EpzFSII=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771068973,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:13.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:36:14'),
(14627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:14.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:36:14'),
(14628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:36:14.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:36:14'),
(14629, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231516101730347@lid\",\"id\":\"A51DD816CEB6A9A58200D0C6AF7B689A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771069248716,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:40:48.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:40:49'),
(14630, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231516101730347@lid\",\"id\":\"A51DD816CEB6A9A58200D0C6AF7B689A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771069248716,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:40:48.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:40:49'),
(14631, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A594961F886196465E9B9961C352330D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771069413331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:43:33.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:43:33'),
(14632, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A594961F886196465E9B9961C352330D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771069413331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:43:33.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:43:34'),
(14633, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219009039503427@lid\",\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771069613743,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:46:53.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:46:54'),
(14634, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219009039503427@lid\",\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771069613743,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:46:53.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:46:54'),
(14635, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219009039503427@lid\",\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771069620654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:47:00.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:47:00'),
(14636, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219009039503427@lid\",\"id\":\"A577A753C99244B9ACE6E0A56EB3DB72\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771069620654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:47:00.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:47:01'),
(14637, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A594961F886196465E9B9961C352330D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771069642532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:47:22.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:47:22'),
(14638, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A594961F886196465E9B9961C352330D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771069642532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:47:22.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:47:23'),
(14639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A594D873BDFBE84443566AF353634259\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070124,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:55:24'),
(14640, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:55:24'),
(14641, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A594D873BDFBE84443566AF353634259\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070124946,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:55:25'),
(14642, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:55:25'),
(14643, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:55:25'),
(14644, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:55:25'),
(14645, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A594D873BDFBE84443566AF353634259\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070124,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:55:25'),
(14646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A594D873BDFBE84443566AF353634259\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070124946,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:55:24.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:55:26'),
(14647, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5A1BA0E99D2A91154061651620372FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Está ativo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:58:24'),
(14648, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:58:24'),
(14649, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A1BA0E99D2A91154061651620372FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070304822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:58:24'),
(14650, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:58:24'),
(14651, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:58:25'),
(14652, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5A1BA0E99D2A91154061651620372FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Está ativo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:58:25'),
(14653, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A1BA0E99D2A91154061651620372FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070304822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:58:25'),
(14654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:24.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:58:25'),
(14655, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:31.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:58:31'),
(14656, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5E71B2E58D4A7458F8738F1D510EBFB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Seus acessos\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070311,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:31.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:58:31'),
(14657, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:31.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:58:31'),
(14658, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5E71B2E58D4A7458F8738F1D510EBFB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Seus acessos\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070311,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:31.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:58:31'),
(14659, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:31.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 08:58:32'),
(14660, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:31.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 08:58:32'),
(14661, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A1BA0E99D2A91154061651620372FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070327263,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:47.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:58:47'),
(14662, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5E71B2E58D4A7458F8738F1D510EBFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070327281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:47.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 08:58:47'),
(14663, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A1BA0E99D2A91154061651620372FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070327263,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:47.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:58:47'),
(14664, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5E71B2E58D4A7458F8738F1D510EBFB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070327281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T08:58:47.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 08:58:47'),
(14665, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA3D029B7845108666\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *19*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771070409,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:09.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:00:09'),
(14666, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA3D029B7845108666\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔒 *Serviço Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\\n\\n📋 *Informações:*\\n📅 Vencimento: *26\\/01\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *19*\\n\\nPara reativar seu acesso:\\n1️⃣ Realize o pagamento\\n2️⃣ Envie o comprovante\\n3️⃣ Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! 🔓\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771070409,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:09.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:00:10'),
(14667, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0BA3D029B7845108666\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070410138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:10.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:00:10'),
(14668, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0BA3D029B7845108666\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070410138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:10.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:00:10'),
(14669, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07435E3D3964DDB0FB5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Pagamento em Atraso*\\n\\nOlá, *Teste16*.\\n\\nIdentificamos que seu pagamento está *em atraso*:\\n📅 Vencimento: *13\\/02\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *1*\\n\\n🚨 Regularize agora para evitar suspensão do serviço!\\n\\nApós pagar, confirme com *\\/pago*\\n\\n_Contamos com sua compreensão._ 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771070413,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:13.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:00:13'),
(14670, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07435E3D3964DDB0FB5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Pagamento em Atraso*\\n\\nOlá, *Teste16*.\\n\\nIdentificamos que seu pagamento está *em atraso*:\\n📅 Vencimento: *13\\/02\\/2026*\\n💰 Valor: *R$ 40,00*\\n⏱️ Dias em atraso: *1*\\n\\n🚨 Regularize agora para evitar suspensão do serviço!\\n\\nApós pagar, confirme com *\\/pago*\\n\\n_Contamos com sua compreensão._ 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771070413,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:13.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:00:13'),
(14671, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB07435E3D3964DDB0FB5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070414127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:14.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:00:14'),
(14672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB07435E3D3964DDB0FB5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070414127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:14.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:00:14'),
(14673, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:00:41'),
(14674, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:00:41'),
(14675, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:00:41'),
(14676, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5B92899A9F6DFBDFED9C02E4A3FA981\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Normalizou ai?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070441,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:00:41'),
(14677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:00:42'),
(14678, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:00:42'),
(14679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:00:42'),
(14680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5B92899A9F6DFBDFED9C02E4A3FA981\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Normalizou ai?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771070441,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:41.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:00:42'),
(14681, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B92899A9F6DFBDFED9C02E4A3FA981\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070455371,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:55.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:00:55'),
(14682, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B92899A9F6DFBDFED9C02E4A3FA981\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771070455371,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:00:55.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:00:55'),
(14683, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:02.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:02'),
(14684, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:02.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:02'),
(14685, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:12.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:12'),
(14686, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:12.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:12'),
(14687, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:19'),
(14688, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:19'),
(14689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoC06eDraGOmyYrauuuLsGc3pA5WbN6lOD6KkFuDGw3w&oe=699D6F32&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:19'),
(14690, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:19'),
(14691, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACA689342D24845201BB22B5C760734E\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Ops bom dia .show vamos renovar sim hj até a tarde já entra Pix Aki e vou enviar ai\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aQvGPqInnOZv4duV9YnZbObYd9naL2WjVb7B7HncvFE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070479,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:01:19'),
(14692, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoC06eDraGOmyYrauuuLsGc3pA5WbN6lOD6KkFuDGw3w&oe=699D6F32&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:20'),
(14693, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:20'),
(14694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:20'),
(14695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:20'),
(14696, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB020EE4BECEA9CA7FA6C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 148468597284964\\nMensagem: \\\"Ops bom dia .show vamos renovar sim hj até a tarde já entra Pix Aki e vou enviar ai\\\"\\n\\nUse: \\/aprovar 148468597284964\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771070480,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:20.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:21'),
(14697, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB020EE4BECEA9CA7FA6C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 148468597284964\\nMensagem: \\\"Ops bom dia .show vamos renovar sim hj até a tarde já entra Pix Aki e vou enviar ai\\\"\\n\\nUse: \\/aprovar 148468597284964\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771070480,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:20.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:21'),
(14698, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACA689342D24845201BB22B5C760734E\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Ops bom dia .show vamos renovar sim hj até a tarde já entra Pix Aki e vou enviar ai\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aQvGPqInnOZv4duV9YnZbObYd9naL2WjVb7B7HncvFE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070479,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:19.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:01:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14699, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B92899A9F6DFBDFED9C02E4A3FA981\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490140,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:01:30'),
(14700, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A594D873BDFBE84443566AF353634259\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490156,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:01:30'),
(14701, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5E71B2E58D4A7458F8738F1D510EBFB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490146,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:01:30'),
(14702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B92899A9F6DFBDFED9C02E4A3FA981\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490140,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:01:30'),
(14703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A1BA0E99D2A91154061651620372FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:01:30'),
(14704, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A1BA0E99D2A91154061651620372FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:01:31'),
(14705, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5E71B2E58D4A7458F8738F1D510EBFB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490146,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:01:31'),
(14706, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A594D873BDFBE84443566AF353634259\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070490156,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:30.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:01:31'),
(14707, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:37.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:37'),
(14708, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:37.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:37'),
(14709, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:41'),
(14710, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACF3BFCAC3C5B22A98CD3737088CE48E\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Não\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GI4V0KI\\/ajyO8i4SZiHjOW\\/Qp8sFuSV3kf7\\/t5\\/bYUQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070501,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:01:41'),
(14711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:41'),
(14712, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACF3BFCAC3C5B22A98CD3737088CE48E\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Não\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GI4V0KI\\/ajyO8i4SZiHjOW\\/Qp8sFuSV3kf7\\/t5\\/bYUQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070501,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:01:41'),
(14713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:41'),
(14714, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:42'),
(14715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:42'),
(14716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:41.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:42'),
(14717, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:57.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:57'),
(14718, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:57.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:57'),
(14719, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:58.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:58'),
(14720, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:58.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:58'),
(14721, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:58.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:01:58'),
(14722, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:01:58.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:01:59'),
(14723, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:02:09'),
(14724, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:02:09'),
(14725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:02:18'),
(14726, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:02:18'),
(14727, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC597E15E87B8A787E1E5952AB417114\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Diz, a conta do usuário está incorreta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9qPT9W3X2PcQmImsJKlUT6kIRvG+Hp8OAYUQ4EOVkfE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070538,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:02:18'),
(14728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:02:18'),
(14729, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:02:18'),
(14730, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC597E15E87B8A787E1E5952AB417114\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Diz, a conta do usuário está incorreta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9qPT9W3X2PcQmImsJKlUT6kIRvG+Hp8OAYUQ4EOVkfE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070538,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:02:19'),
(14731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:02:19'),
(14732, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:02:18.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:02:19'),
(14733, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:32.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:04:32'),
(14734, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:32.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:04:32'),
(14735, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:42.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:04:42'),
(14736, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:42.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:04:42'),
(14737, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:45.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:04:45'),
(14738, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC307F7760FC4CECB6693A04E7FF6366\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Vou vê a conexão da internet\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"49V0e4ABoRGG4aEqNazDyKvSxie8Dyj7SmJ5dR9KUlU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:45.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:04:45'),
(14739, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:45.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:04:45'),
(14740, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC307F7760FC4CECB6693A04E7FF6366\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Vou vê a conexão da internet\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"49V0e4ABoRGG4aEqNazDyKvSxie8Dyj7SmJ5dR9KUlU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771070685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:45.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:04:46'),
(14741, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:45.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:04:46'),
(14742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:46.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:04:46'),
(14743, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:45.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:04:46'),
(14744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wFATKxPNvSCrp1BwcKOU0CdIAyg4ceZeoypC9KQ8YkjgQ&oe=699D60BF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:04:46.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:04:46'),
(14745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"180341532831791@lid\",\"id\":\"A5FBE448D93F530D26C4D8422AB83856\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070747242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:05:47.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:05:47'),
(14746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"180341532831791@lid\",\"id\":\"A5FBE448D93F530D26C4D8422AB83856\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070747242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:05:47.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:05:47'),
(14747, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"134944114352242:1@lid\",\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070868549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:07:48.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:07:48'),
(14748, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"134944114352242:1@lid\",\"id\":\"A53DC419730F1C5A3BF150973C53ED1F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771070868549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:07:48.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:07:49'),
(14749, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A523E09121ECB444B1FF9576AAC34453\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071068,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:08.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:09'),
(14750, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:08.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:09'),
(14751, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:08.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:09'),
(14752, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A523E09121ECB444B1FF9576AAC34453\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071069112,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:09.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:09'),
(14753, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:08.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:09'),
(14754, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A523E09121ECB444B1FF9576AAC34453\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071068,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:08.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:09'),
(14755, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:08.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:09'),
(14756, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A523E09121ECB444B1FF9576AAC34453\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071069112,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:09.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:10'),
(14757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:12.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:12'),
(14758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A59BC108AA9EA230834A7A3AC0179C15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071072,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:12.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:12'),
(14759, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:12.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:12'),
(14760, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A59BC108AA9EA230834A7A3AC0179C15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071072,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:12.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:12'),
(14761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:12.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:12'),
(14762, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A59BC108AA9EA230834A7A3AC0179C15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071073383,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:13.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:13'),
(14763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A59BC108AA9EA230834A7A3AC0179C15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071073383,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:13.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:13'),
(14764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:12.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:13'),
(14765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:26.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:26'),
(14766, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A513ECAA0F3C3173FFCAB126FAC0B114\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071085,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:26.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:26'),
(14767, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:26.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:26'),
(14768, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A513ECAA0F3C3173FFCAB126FAC0B114\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071085,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:26.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:26'),
(14769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:26.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:26'),
(14770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:26.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:26'),
(14771, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A513ECAA0F3C3173FFCAB126FAC0B114\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071087192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:27.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:27'),
(14772, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A513ECAA0F3C3173FFCAB126FAC0B114\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071087192,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:27.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:27'),
(14773, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A5CD5D56560758F5F9AE983FACDF8A31\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071097,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:37.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:37'),
(14774, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:37.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:37'),
(14775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:37.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:38'),
(14776, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:37.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:38'),
(14777, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":true,\"id\":\"A5CD5D56560758F5F9AE983FACDF8A31\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071097,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:37.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:38'),
(14778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:37.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:38'),
(14779, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A5CD5D56560758F5F9AE983FACDF8A31\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071098883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:38.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A5CD5D56560758F5F9AE983FACDF8A31\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071098883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:38.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:39'),
(14781, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:57.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:11:57'),
(14782, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":true,\"id\":\"A519FE948DFF6CF56256D6BDBDDB4954\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:57.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:57'),
(14783, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:57.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:11:58'),
(14784, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":true,\"id\":\"A519FE948DFF6CF56256D6BDBDDB4954\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:57.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:58'),
(14785, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:58.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:58'),
(14786, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:58.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:58'),
(14787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A519FE948DFF6CF56256D6BDBDDB4954\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071118801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:58.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:11:58'),
(14788, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A519FE948DFF6CF56256D6BDBDDB4954\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071118801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:11:58.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:11:59'),
(14789, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:31.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:12:31'),
(14790, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:31.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:12:31'),
(14791, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A5D3A75D88D7DC06458755BB0E02CB23\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071151,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:31.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:12:31'),
(14792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:32.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:12:32'),
(14793, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A5D3A75D88D7DC06458755BB0E02CB23\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071151,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:31.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:12:32'),
(14794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:32.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:12:32'),
(14795, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071152726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:32.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:12:32'),
(14796, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071152726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:12:32.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:12:32'),
(14797, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"128390027821145@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_755421144309525_2984990100165696019_n.jpg?ccb=11-4&oh=01_Q5Aa3wHX3U7Ciu6p5CJjY9kzqm6SUguXmNFMCcOvTZYUQ5RKvw&oe=699D7EC4&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:13:29'),
(14798, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"128390027821145@lid\",\"fromMe\":true,\"id\":\"A5D05270618B946446665BFB3F558E91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071209,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:13:29'),
(14799, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"128390027821145@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:13:29'),
(14800, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"128390027821145@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:13:29'),
(14801, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"128390027821145@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415690_755421144309525_2984990100165696019_n.jpg?ccb=11-4&oh=01_Q5Aa3wHX3U7Ciu6p5CJjY9kzqm6SUguXmNFMCcOvTZYUQ5RKvw&oe=699D7EC4&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:13:29'),
(14802, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"128390027821145@lid\",\"fromMe\":true,\"id\":\"A5D05270618B946446665BFB3F558E91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 16\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":19},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071209,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:13:30'),
(14803, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"128390027821145@lid\",\"id\":\"A5D05270618B946446665BFB3F558E91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071209683,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:13:30'),
(14804, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"128390027821145@lid\",\"id\":\"A5D05270618B946446665BFB3F558E91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071209683,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:13:29.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:13:30'),
(14805, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:21.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:14:21'),
(14806, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":true,\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071261,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:21.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:14:21'),
(14807, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:21.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:14:21'),
(14808, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:21.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:14:21'),
(14809, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":true,\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071261,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:21.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:14:21'),
(14810, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071262310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:22.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:14:22'),
(14811, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071262310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:22.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:14:22'),
(14812, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:14:21.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:14:22'),
(14813, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A51150FAF1D66B2B77E7B4DF2EFF1630\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071312,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:12.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:12'),
(14814, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:12.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:12'),
(14815, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:12.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:13'),
(14816, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:12.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:13'),
(14817, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A51150FAF1D66B2B77E7B4DF2EFF1630\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":12},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071312,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:12.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:13'),
(14818, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:12.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:13'),
(14819, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A51150FAF1D66B2B77E7B4DF2EFF1630\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071313155,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:13'),
(14820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"pushName\":\"Sandro Almada - Instalações de Gás\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:14'),
(14821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"pushName\":\"Sandro Almada - Instalações de Gás\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:14'),
(14822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:14.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:14'),
(14823, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:14.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:14'),
(14824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:14.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:14'),
(14825, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:14.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:15'),
(14826, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A51150FAF1D66B2B77E7B4DF2EFF1630\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071313155,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:15'),
(14827, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:15'),
(14828, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":false,\"id\":\"A55629510573076EFB492405C33175E2\"},\"pushName\":\"Sandro Almada - Instalações de Gás\",\"message\":{\"conversation\":\"‎SP GÁS - Instalações de Gás agradece seu contato. Como podemos ajudar?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"JPbjVeJfOubwYQ==\",\"senderTimestamp\":\"1770659067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hKFRpbRlSeflpADCEB1Wf5JW\\/llBHLDsZIjRj\\/WHhz0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071313,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:15'),
(14829, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:16'),
(14830, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":false,\"id\":\"A55629510573076EFB492405C33175E2\"},\"pushName\":\"Sandro Almada - Instalações de Gás\",\"message\":{\"conversation\":\"‎SP GÁS - Instalações de Gás agradece seu contato. Como podemos ajudar?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"JPbjVeJfOubwYQ==\",\"senderTimestamp\":\"1770659067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hKFRpbRlSeflpADCEB1Wf5JW\\/llBHLDsZIjRj\\/WHhz0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071313,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:13.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:16'),
(14831, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071318168,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:18.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:18'),
(14832, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071318168,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:18.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:18'),
(14833, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"presences\":{\"221190966767835@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:25.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:25'),
(14834, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"presences\":{\"221190966767835@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:25.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:25'),
(14835, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"presences\":{\"221190966767835@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:36.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:36'),
(14836, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"presences\":{\"221190966767835@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:36.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:36'),
(14837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:36.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:36'),
(14838, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:36.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:37'),
(14839, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wEc_4AVtcTf7mQmGWlkZJdngeToSKQWJj_rb_Ewq_YMLQ&oe=699D7B6A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:37.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:37'),
(14840, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":true,\"id\":\"A556F6108C7A7A1B029323AA9C6F2123\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1749238289\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1749238289\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071336,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:36.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:37'),
(14841, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wEc_4AVtcTf7mQmGWlkZJdngeToSKQWJj_rb_Ewq_YMLQ&oe=699D7B6A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:37.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:37'),
(14842, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":true,\"id\":\"A556F6108C7A7A1B029323AA9C6F2123\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1749238289\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1749238289\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071336,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:36.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:37'),
(14843, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":false,\"id\":\"ACB1BB4F2FFD714004D32A827AE0E08A\"},\"pushName\":\"Sueli Ferreira Da Silva\",\"message\":{\"conversation\":\"Bom dia , recebi a cobrança sim ,faço hj ainda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"8ZAB\\/0hUnH4T6Q==\",\"senderTimestamp\":\"1770705968\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vq6qFca4W2SBV7Tzfz5KvAF690opmaRKgX7XfxQypB8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071344,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:15:44'),
(14844, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":false,\"id\":\"ACB1BB4F2FFD714004D32A827AE0E08A\"},\"pushName\":\"Sueli Ferreira Da Silva\",\"message\":{\"conversation\":\"Bom dia , recebi a cobrança sim ,faço hj ainda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"8ZAB\\/0hUnH4T6Q==\",\"senderTimestamp\":\"1770705968\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vq6qFca4W2SBV7Tzfz5KvAF690opmaRKgX7XfxQypB8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071344,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:15:44'),
(14845, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14846, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:44'),
(14847, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:44'),
(14848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:15:45'),
(14849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:45'),
(14850, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:45'),
(14851, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:45'),
(14852, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:15:44.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:15:45'),
(14853, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:05'),
(14854, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"id\":\"A556F6108C7A7A1B029323AA9C6F2123\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071365731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:05'),
(14855, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:05'),
(14856, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:05'),
(14857, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":true,\"id\":\"A5196775B34888CC769644C23E4417DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":218779},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":218779},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071365,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:05'),
(14858, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":true,\"id\":\"A5196775B34888CC769644C23E4417DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 18\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":218779},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":218779},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071365,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:06'),
(14859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5196775B34888CC769644C23E4417DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071365954,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:06'),
(14860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5196775B34888CC769644C23E4417DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071365954,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:06'),
(14861, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"id\":\"A556F6108C7A7A1B029323AA9C6F2123\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071365731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:07'),
(14862, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:05.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:07'),
(14863, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5CD7BA9EF0DC706A713C267F694A51D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071391359,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:31.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:31'),
(14864, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5EBDDCA7E9C63FB1869021D902F3DCF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071391353,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:31.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:31'),
(14865, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A505D11F2D22BB5E88B6EF92EDF8D5F0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071391345,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:31.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:31'),
(14866, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5CD7BA9EF0DC706A713C267F694A51D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071391359,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:31.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:31'),
(14867, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5EBDDCA7E9C63FB1869021D902F3DCF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071391353,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:31.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:31'),
(14868, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A505D11F2D22BB5E88B6EF92EDF8D5F0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071391345,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:31.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:32'),
(14869, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A59BC108AA9EA230834A7A3AC0179C15\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393329,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:33'),
(14870, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A5CD5D56560758F5F9AE983FACDF8A31\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:33'),
(14871, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A513ECAA0F3C3173FFCAB126FAC0B114\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393327,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:33'),
(14872, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A5CD5D56560758F5F9AE983FACDF8A31\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:33'),
(14873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A59BC108AA9EA230834A7A3AC0179C15\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393329,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:33'),
(14874, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A513ECAA0F3C3173FFCAB126FAC0B114\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393327,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:34'),
(14875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A523E09121ECB444B1FF9576AAC34453\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393332,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:34'),
(14876, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"6000287473896@lid\",\"id\":\"A523E09121ECB444B1FF9576AAC34453\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071393332,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:33.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:34'),
(14877, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"presences\":{\"31585407639718@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:34.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:34'),
(14878, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"presences\":{\"31585407639718@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:34.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:34'),
(14879, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"presences\":{\"31585407639718@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:41.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:41'),
(14880, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"presences\":{\"31585407639718@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:41.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:41'),
(14881, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:42'),
(14882, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":false,\"id\":\"AC670B1CD18C2C43DA901149915F79D6\"},\"pushName\":\"Jamila Oliveira\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia jhony\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":310678},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"MHlNjXhhScRtFw==\",\"senderTimestamp\":\"1769958323\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OrtrzqvqmGipS2rH5Ng0G4YXl9rJaAg+TQpTYztm+VM=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":310678},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071402,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:42'),
(14883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:42'),
(14884, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":false,\"id\":\"AC670B1CD18C2C43DA901149915F79D6\"},\"pushName\":\"Jamila Oliveira\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia jhony\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":310678},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"MHlNjXhhScRtFw==\",\"senderTimestamp\":\"1769958323\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OrtrzqvqmGipS2rH5Ng0G4YXl9rJaAg+TQpTYztm+VM=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":310678},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071402,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:42'),
(14885, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:42'),
(14886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:43'),
(14887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:43'),
(14888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:43'),
(14889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:43'),
(14890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:42.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:43'),
(14891, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"presences\":{\"31585407639718@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:44.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:44'),
(14892, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"presences\":{\"31585407639718@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:44.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:44'),
(14893, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:45.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:45'),
(14894, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:45.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:45'),
(14895, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:47'),
(14896, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":false,\"id\":\"ACAB71394BA11D6A9323CD48C44D41EE\"},\"pushName\":\"Adriana Oliveira\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fK4nAr28hThjtQ==\",\"senderTimestamp\":\"1770252067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/GNvesLi5rkx+NeyqWluJnJ5Su5Y7LubrPRm2PJc7t8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071407,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:47'),
(14897, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:47'),
(14898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:47'),
(14899, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":false,\"id\":\"ACAB71394BA11D6A9323CD48C44D41EE\"},\"pushName\":\"Adriana Oliveira\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fK4nAr28hThjtQ==\",\"senderTimestamp\":\"1770252067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/GNvesLi5rkx+NeyqWluJnJ5Su5Y7LubrPRm2PJc7t8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071407,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:47'),
(14900, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:47'),
(14901, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:48'),
(14902, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:48'),
(14903, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:48'),
(14904, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:47.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:49'),
(14905, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:50'),
(14906, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A5CE70D13601C7CFEDEA9DACE29B09E9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia Cleide\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071410,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:50'),
(14907, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:50'),
(14908, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A5CE70D13601C7CFEDEA9DACE29B09E9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia Cleide\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071410,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:50'),
(14909, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:50'),
(14910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5CE70D13601C7CFEDEA9DACE29B09E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071410773,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:51'),
(14911, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:51'),
(14912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5CE70D13601C7CFEDEA9DACE29B09E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071410773,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:50.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:51'),
(14913, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:52'),
(14914, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":false,\"id\":\"AC8FB0563FB59283361BAEAC5E128661\"},\"pushName\":\"Jamila Oliveira\",\"message\":{\"conversation\":\"Vamos, já te faço o pix\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"MHlNjXhhScRtFw==\",\"senderTimestamp\":\"1769958323\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NI3C4gvb7rihuIZEmXjHYgfAuSkALDEMz8odEZlqJ+M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071412,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:52'),
(14915, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:52'),
(14916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:52'),
(14917, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:52'),
(14918, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BCF24B7EFC7F9BF236\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 31585407639718\\nMensagem: \\\"Vamos, já te faço o pix\\\"\\n\\nUse: \\/aprovar 31585407639718\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771071413,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:53.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:53'),
(14919, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BCF24B7EFC7F9BF236\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 31585407639718\\nMensagem: \\\"Vamos, já te faço o pix\\\"\\n\\nUse: \\/aprovar 31585407639718\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771071413,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:53.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:53'),
(14920, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":false,\"id\":\"AC8FB0563FB59283361BAEAC5E128661\"},\"pushName\":\"Jamila Oliveira\",\"message\":{\"conversation\":\"Vamos, já te faço o pix\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"MHlNjXhhScRtFw==\",\"senderTimestamp\":\"1769958323\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NI3C4gvb7rihuIZEmXjHYgfAuSkALDEMz8odEZlqJ+M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071412,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:53'),
(14921, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(14922, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:52.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:54'),
(14923, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5C18DFC7F8581F9E0968FB2B7B1913E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071416578,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:56.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:56'),
(14924, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5C18DFC7F8581F9E0968FB2B7B1913E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071416578,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:56.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:56'),
(14925, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A5C18DFC7F8581F9E0968FB2B7B1913E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:57.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:16:57'),
(14926, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:57.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:57'),
(14927, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:57.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:57'),
(14928, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A5C18DFC7F8581F9E0968FB2B7B1913E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:57.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:16:57'),
(14929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:57.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:16:57'),
(14930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:16:57.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:16:58'),
(14931, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:13.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:13'),
(14932, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:13.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:13'),
(14933, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:13.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:13'),
(14934, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:13.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:13'),
(14935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:18.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:19'),
(14936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A5B866903794F0BBA6BAB8365467D765\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e Vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071438,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:18.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:17:19'),
(14937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:18.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:19'),
(14938, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:19.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:19'),
(14939, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A5B866903794F0BBA6BAB8365467D765\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e Vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071438,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:18.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:17:19'),
(14940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:19.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:19'),
(14941, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5B866903794F0BBA6BAB8365467D765\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071439659,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:19.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:17:20'),
(14942, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5B866903794F0BBA6BAB8365467D765\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071439659,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:19.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:17:21'),
(14943, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A548D4BCB74FF7A040F4209BF22B39DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071452,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:32.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:17:32'),
(14944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":true,\"id\":\"A548D4BCB74FF7A040F4209BF22B39DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071452,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:32.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:17:33'),
(14945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A548D4BCB74FF7A040F4209BF22B39DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071453123,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:33.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:17:33'),
(14946, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:32.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:33'),
(14947, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:33.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:33'),
(14948, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:32.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:33'),
(14949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A548D4BCB74FF7A040F4209BF22B39DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071453123,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:33.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:17:33'),
(14950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:33.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:33'),
(14951, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:46.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:46'),
(14952, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:46.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:46'),
(14953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5196775B34888CC769644C23E4417DB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071468361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:48.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:17:48'),
(14954, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5196775B34888CC769644C23E4417DB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071468361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:48.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:17:48'),
(14955, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:49'),
(14956, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":false,\"id\":\"AC024D09E2CAC8D1004A007C354170C4\"},\"pushName\":\"Adriana Oliveira\",\"message\":{\"conversation\":\"Vamos sim.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fK4nAr28hThjtQ==\",\"senderTimestamp\":\"1770252067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DsxSJOt+kw+GJYLUaFrW5FNNcDBJRiCkQpoUfWpqGlQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:17:49'),
(14957, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:49'),
(14958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":false,\"id\":\"AC024D09E2CAC8D1004A007C354170C4\"},\"pushName\":\"Adriana Oliveira\",\"message\":{\"conversation\":\"Vamos sim.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fK4nAr28hThjtQ==\",\"senderTimestamp\":\"1770252067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DsxSJOt+kw+GJYLUaFrW5FNNcDBJRiCkQpoUfWpqGlQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:17:49'),
(14959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:49'),
(14960, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:50'),
(14961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:50'),
(14962, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:50.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:50'),
(14963, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:49.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:51'),
(14964, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:50.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:51'),
(14965, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:56.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:56'),
(14966, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:56.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:56'),
(14967, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:57.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:17:57'),
(14968, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:17:57.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:17:57'),
(14969, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:05'),
(14970, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:05'),
(14971, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:05'),
(14972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3A1252BA48FB707ABB5F\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Bom dia irmão tranquilo?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5ShYEqR4CNVgFjF3qI4ebOdStrgz5syExfGU4pW2kHs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071485,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:05'),
(14973, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:05'),
(14974, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3A1252BA48FB707ABB5F\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Bom dia irmão tranquilo?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5ShYEqR4CNVgFjF3qI4ebOdStrgz5syExfGU4pW2kHs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071485,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:06'),
(14975, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:06.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:06'),
(14976, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:06.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:06'),
(14977, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:06'),
(14978, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:06.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:06'),
(14979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:05.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:07'),
(14980, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:06.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:08'),
(14981, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:16.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:16'),
(14982, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:16.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:16'),
(14983, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:19'),
(14984, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:19'),
(14985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3A1B44492A30479160E3\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Vou começar a trabalhar segunda feira\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t5oudPJJiKllQq7wa9f\\/hlixXqf8EqvRrIoey5v3TeE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071499,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:19'),
(14986, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"presences\":{\"6000287473896@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:19'),
(14987, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:19'),
(14988, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:20'),
(14989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:20'),
(14990, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3A1B44492A30479160E3\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Vou começar a trabalhar segunda feira\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t5oudPJJiKllQq7wa9f\\/hlixXqf8EqvRrIoey5v3TeE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071499,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:20'),
(14991, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:20'),
(14992, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:19.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:21'),
(14993, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:21.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:21'),
(14994, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:21.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:21'),
(14995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:25'),
(14996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5D896022E1032FBF0AA42D013E06486\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071505,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:25'),
(14997, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:25'),
(14998, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5D896022E1032FBF0AA42D013E06486\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071505,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:25'),
(14999, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:25'),
(15000, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":false,\"id\":\"ACC4BA6A5F88BE3D9B27AC742F67F9D6\"},\"pushName\":\"Adriana Oliveira\",\"message\":{\"conversation\":\"Estou viajando qdo chegar renovo.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fK4nAr28hThjtQ==\",\"senderTimestamp\":\"1770252067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tSos5nKE1QKEeyT7ArzGQ\\/2vOHmTDMxgP7YAwgyVYfY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071506,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:27');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15001, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:27'),
(15002, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"6000287473896@lid\",\"fromMe\":false,\"id\":\"ACC4BA6A5F88BE3D9B27AC742F67F9D6\"},\"pushName\":\"Adriana Oliveira\",\"message\":{\"conversation\":\"Estou viajando qdo chegar renovo.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"fK4nAr28hThjtQ==\",\"senderTimestamp\":\"1770252067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tSos5nKE1QKEeyT7ArzGQ\\/2vOHmTDMxgP7YAwgyVYfY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071506,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:27'),
(15003, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6000287473896@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:27'),
(15004, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:27'),
(15005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D896022E1032FBF0AA42D013E06486\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071505799,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:27'),
(15006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:28'),
(15007, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D896022E1032FBF0AA42D013E06486\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071505799,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:25.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:28'),
(15008, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:28'),
(15009, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:28'),
(15010, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"6000287473896@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:26.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:29'),
(15011, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:29'),
(15012, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5D00887493EF5E3DE15955706ED8F2C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071509,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:29'),
(15013, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:29'),
(15014, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5D00887493EF5E3DE15955706ED8F2C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071509,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:29'),
(15015, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:30'),
(15016, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D00887493EF5E3DE15955706ED8F2C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071509644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:30'),
(15017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:30'),
(15018, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D00887493EF5E3DE15955706ED8F2C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071509644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:29.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:30'),
(15019, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:31.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:31'),
(15020, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:31.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:32'),
(15021, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:37.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:37'),
(15022, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:37.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:37'),
(15023, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A54F8FD1B4C9B8C0E940C8EB76A42761\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:37.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:37'),
(15024, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A54F8FD1B4C9B8C0E940C8EB76A42761\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071517986,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:37.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:38'),
(15025, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A54F8FD1B4C9B8C0E940C8EB76A42761\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:37.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:38'),
(15026, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A54F8FD1B4C9B8C0E940C8EB76A42761\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071517986,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:37.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:38'),
(15027, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:38'),
(15028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:38'),
(15029, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:38'),
(15030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:39'),
(15031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:39'),
(15032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:39'),
(15033, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3AA39BE08056889DD77D\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Lá o pagamento é td dia 15 e 39\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k8CBnIO6u4CV5OTU5YCpvbivKd7c6\\/nc7thfXVOkeG4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071518,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:39'),
(15034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:39'),
(15035, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085F583CC011BFB7269\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 114864773144584\\nMensagem: \\\"Lá o pagamento é td dia 15 e 39\\\"\\n\\nUse: \\/aprovar 114864773144584\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771071520,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:40.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:40'),
(15036, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:40'),
(15037, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085F583CC011BFB7269\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 114864773144584\\nMensagem: \\\"Lá o pagamento é td dia 15 e 39\\\"\\n\\nUse: \\/aprovar 114864773144584\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771071520,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:40.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:40'),
(15038, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3AA39BE08056889DD77D\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Lá o pagamento é td dia 15 e 39\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k8CBnIO6u4CV5OTU5YCpvbivKd7c6\\/nc7thfXVOkeG4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071518,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:38.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:40'),
(15039, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A572DB2B26131BDF748D6FCEE093BB78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071522324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:42'),
(15040, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A572DB2B26131BDF748D6FCEE093BB78\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071522324,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:42'),
(15041, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A572DB2B26131BDF748D6FCEE093BB78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522559,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:42'),
(15042, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D00887493EF5E3DE15955706ED8F2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522566,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:42'),
(15043, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A54F8FD1B4C9B8C0E940C8EB76A42761\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522562,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:42'),
(15044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:43'),
(15045, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:43'),
(15046, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A572DB2B26131BDF748D6FCEE093BB78\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522559,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:43'),
(15047, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D896022E1032FBF0AA42D013E06486\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522569,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:43'),
(15048, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D00887493EF5E3DE15955706ED8F2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522566,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:43'),
(15049, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5D896022E1032FBF0AA42D013E06486\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522569,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:44'),
(15050, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A54F8FD1B4C9B8C0E940C8EB76A42761\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071522562,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:44'),
(15051, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:45'),
(15052, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A572DB2B26131BDF748D6FCEE093BB78\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:45'),
(15053, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:45'),
(15054, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A572DB2B26131BDF748D6FCEE093BB78\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:42.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:45'),
(15055, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:46.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:46'),
(15056, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:46.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:46'),
(15057, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:46.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:46'),
(15058, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:46.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:46'),
(15059, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:47.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:47'),
(15060, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:47.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:47'),
(15061, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"AC3145424580A909CF6CD56CCD5AFAA0\"},\"pushName\":\"Daiane Forte\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6sw98n\\/O9MduYIfuDvibQ8aCGnjTZgVacNhpES9fXPM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:48.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:48'),
(15062, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:48.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:48'),
(15063, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:48.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:49'),
(15064, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:48.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:49'),
(15065, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"AC3145424580A909CF6CD56CCD5AFAA0\"},\"pushName\":\"Daiane Forte\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6sw98n\\/O9MduYIfuDvibQ8aCGnjTZgVacNhpES9fXPM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:48.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:49'),
(15066, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:49.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:49'),
(15067, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:48.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:49'),
(15068, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:49.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:50'),
(15069, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:49.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:50'),
(15070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:49.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:50'),
(15071, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:49.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:50'),
(15072, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:49.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:51'),
(15073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:53'),
(15074, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3AAF0E58D73B7BC448F8\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Daí pago vc\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o7JAuLgnsh4aFJhLgSn1dZX1tJTJdT0eZA2CJMB08lE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071533,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:53'),
(15075, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:53'),
(15076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:53'),
(15077, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:53'),
(15078, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:54'),
(15079, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"presences\":{\"114864773144584@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15080, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09BCE48D16C9481A497\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 114864773144584\\nMensagem: \\\"Daí pago vc\\\"\\n\\nUse: \\/aprovar 114864773144584\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771071534,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:54.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:54'),
(15081, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09BCE48D16C9481A497\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 114864773144584\\nMensagem: \\\"Daí pago vc\\\"\\n\\nUse: \\/aprovar 114864773144584\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771071534,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:54.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:54'),
(15082, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3AAF0E58D73B7BC448F8\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Daí pago vc\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o7JAuLgnsh4aFJhLgSn1dZX1tJTJdT0eZA2CJMB08lE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071533,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:54'),
(15083, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3A1065590CBF332364F5\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZcWAzvAzcGikcSF92MPMao35wsIcWCSi\\/VmkKkNzwyQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071535,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:55.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:55'),
(15084, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:55.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:55'),
(15085, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:55'),
(15086, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:55.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:55'),
(15087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"114864773144584@lid\",\"fromMe\":false,\"id\":\"3A1065590CBF332364F5\"},\"pushName\":\"Rafa Barreiro\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771025573\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZcWAzvAzcGikcSF92MPMao35wsIcWCSi\\/VmkKkNzwyQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071535,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:55.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:55'),
(15088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:53.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:56'),
(15089, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:56.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:56'),
(15090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:56.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:56'),
(15091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:55.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:56'),
(15092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"114864773144584@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/586213338_1522976272576827_8486758999167129566_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIF-di61-ehN07MTsvT-8Xbyb74GXBzMasUFXQyd6fNA&oe=699D6EA4&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:55.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:57'),
(15093, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:57'),
(15094, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:57'),
(15095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"ACCCADA19FAB04D816A1A1768182E7BE\"},\"pushName\":\"Daiane Forte\",\"message\":{\"conversation\":\"Vamos sim até esqueci\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"84hxqdXGGiRvHJNybSTejiZ+TCFVANOAg4DtKlm7eTU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:18:57'),
(15096, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:57'),
(15097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:57'),
(15098, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:58'),
(15099, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:58'),
(15100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"ACCCADA19FAB04D816A1A1768182E7BE\"},\"pushName\":\"Daiane Forte\",\"message\":{\"conversation\":\"Vamos sim até esqueci\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"84hxqdXGGiRvHJNybSTejiZ+TCFVANOAg4DtKlm7eTU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:18:58'),
(15101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:58'),
(15102, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:57.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:59'),
(15103, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:59.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:18:59'),
(15104, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"presences\":{\"209594471170110@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:18:59.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:18:59'),
(15105, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"AC4F680BC647F19D2F32C41433DFD832\"},\"pushName\":\"Daiane Forte\",\"message\":{\"conversation\":\"Já mando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pzCbi1LLDAX2w0yVPrCGxReoqpk\\/c\\/xDsMtkrAEQhRI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:02'),
(15106, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:02'),
(15107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:02'),
(15108, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"AC4F680BC647F19D2F32C41433DFD832\"},\"pushName\":\"Daiane Forte\",\"message\":{\"conversation\":\"Já mando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pzCbi1LLDAX2w0yVPrCGxReoqpk\\/c\\/xDsMtkrAEQhRI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771071542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:02'),
(15109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:02'),
(15110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:03'),
(15111, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:03'),
(15112, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:02.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:03'),
(15113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238800819208336@lid\",\"fromMe\":true,\"id\":\"A59E78845DA1EEE60763E41ACD56351E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768846424\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768846424\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071549,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:09'),
(15114, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238800819208336@lid\",\"fromMe\":true,\"id\":\"A59E78845DA1EEE60763E41ACD56351E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 19\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768846424\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1768846424\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071549,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:09'),
(15115, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238800819208336@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415990_797920996203235_401423061624369754_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2TNHYymuxOhoCEtNyOgbZse1VzdBIuW9XfWBAWS9T9Q&oe=699D723C&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:09'),
(15116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238800819208336@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:09'),
(15117, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238800819208336@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415990_797920996203235_401423061624369754_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2TNHYymuxOhoCEtNyOgbZse1VzdBIuW9XfWBAWS9T9Q&oe=699D723C&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:09'),
(15118, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238800819208336@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:10'),
(15119, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238800819208336@lid\",\"id\":\"A59E78845DA1EEE60763E41ACD56351E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071549758,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:10'),
(15120, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238800819208336@lid\",\"id\":\"A59E78845DA1EEE60763E41ACD56351E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071549758,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:09.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:10'),
(15121, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A54643069DF9C79E3B50C3C9A59C04A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071553,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:13'),
(15122, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:13'),
(15123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:13'),
(15124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A54643069DF9C79E3B50C3C9A59C04A1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071553,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:13'),
(15125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A54643069DF9C79E3B50C3C9A59C04A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071553729,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:13'),
(15126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A54643069DF9C79E3B50C3C9A59C04A1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071553729,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:14'),
(15127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:14'),
(15128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:13.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:14'),
(15129, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:21'),
(15130, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A50EF3B9256538FD632C228418DCF318\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDXAF9LB02\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771071561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:21'),
(15131, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:21'),
(15132, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A50EF3B9256538FD632C228418DCF318\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDXAF9LB02\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771071561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:21'),
(15133, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:21'),
(15134, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A50EF3B9256538FD632C228418DCF318\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071561852,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:22'),
(15135, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A50EF3B9256538FD632C228418DCF318\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071561852,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:22'),
(15136, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:21.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:22'),
(15137, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:49.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:49'),
(15138, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A5AF3F7E0447EF9B60A65DAEB5D31566\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:49.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:49'),
(15139, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:49.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:49'),
(15140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:49.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:49'),
(15141, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:49.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:49'),
(15142, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A5AF3F7E0447EF9B60A65DAEB5D31566\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:49.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:50'),
(15143, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5AF3F7E0447EF9B60A65DAEB5D31566\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071591654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:51.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:51'),
(15144, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5AF3F7E0447EF9B60A65DAEB5D31566\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071591654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:51.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:51'),
(15145, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:53'),
(15146, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A5A469A032A15B94A6C0FC651B2EFFA3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071593,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:53'),
(15147, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:53'),
(15148, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A5A469A032A15B94A6C0FC651B2EFFA3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071593,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:19:53'),
(15150, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:19:54'),
(15151, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5A469A032A15B94A6C0FC651B2EFFA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071593884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:19:54'),
(15152, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5A469A032A15B94A6C0FC651B2EFFA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071593884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:19:53.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:19:54'),
(15153, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:00.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:00'),
(15154, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A5E695BDDCB49FE1A6C87FD76B968025\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071600,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:00.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:00'),
(15155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:00.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:00'),
(15156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A5E695BDDCB49FE1A6C87FD76B968025\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071600,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:00.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:00'),
(15157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:01.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:01'),
(15158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:01.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:01'),
(15159, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5E695BDDCB49FE1A6C87FD76B968025\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071601506,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:01.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:01'),
(15160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5E695BDDCB49FE1A6C87FD76B968025\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071601506,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:01.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:01'),
(15161, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A53511CCA7AA8D88CA668BE7D1133EB8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071604,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:04.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:04'),
(15162, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:04.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:04'),
(15163, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"178614838505579@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:04.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:04'),
(15164, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"178614838505579@lid\",\"fromMe\":true,\"id\":\"A53511CCA7AA8D88CA668BE7D1133EB8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071604,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:04.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:04'),
(15165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:05.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:05'),
(15166, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A53511CCA7AA8D88CA668BE7D1133EB8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071605160,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:05.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:05'),
(15167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"178614838505579@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/488861007_701469518876449_971695858010460128_n.jpg?ccb=11-4&oh=01_Q5Aa3wEes1C48TiNLqDA6ISB6QWkcj7H0L5RgL1RozIESdx6cw&oe=699D8796&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:05.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:05'),
(15168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A53511CCA7AA8D88CA668BE7D1133EB8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071605160,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:05.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:05'),
(15169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:18.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:18'),
(15170, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:18.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:18'),
(15171, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:18.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:18'),
(15172, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5F43FB3627BE09648F7D341F874810C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071618,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:18.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:18'),
(15173, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:18.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:18'),
(15174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5F43FB3627BE09648F7D341F874810C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071618,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:18.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:19'),
(15175, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5F43FB3627BE09648F7D341F874810C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071619783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:19.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:19'),
(15176, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5F43FB3627BE09648F7D341F874810C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071619783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:19.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:19'),
(15177, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5000219F292AE4260A5ABE4212AC314\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem,?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071622,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:22'),
(15178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:22'),
(15179, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:22'),
(15180, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5000219F292AE4260A5ABE4212AC314\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem,?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071622,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:22'),
(15181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:22'),
(15182, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5000219F292AE4260A5ABE4212AC314\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071622761,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:23'),
(15183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:23'),
(15184, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5000219F292AE4260A5ABE4212AC314\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071622761,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:22.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:23'),
(15185, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:30'),
(15186, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A59BB4776B632EBF1766599E0315ABD5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:30'),
(15187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:30'),
(15188, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A59BB4776B632EBF1766599E0315ABD5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:30'),
(15189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:30'),
(15190, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:31'),
(15191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A59BB4776B632EBF1766599E0315ABD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071630352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:31'),
(15192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A59BB4776B632EBF1766599E0315ABD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071630352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:30.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:31'),
(15193, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:36.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:36'),
(15194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:36.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:36'),
(15195, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A53D4F46258B1DA836C980680B0EBADD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vamos renovar?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071636,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:36.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:37'),
(15196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:36.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:37'),
(15197, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A53D4F46258B1DA836C980680B0EBADD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071637097,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:37.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:37'),
(15198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:36.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:37'),
(15199, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A53D4F46258B1DA836C980680B0EBADD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vamos renovar?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071636,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:36.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:37'),
(15200, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A53D4F46258B1DA836C980680B0EBADD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071637097,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:37.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:38'),
(15201, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:46'),
(15202, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"AC0DEBB397AC0496AE852A7CA175AC72\"},\"pushName\":\"Daiane Forte\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/634839892_1236028214707118_6213329355109260623_n.enc?ccb=11-4&oh=01_Q5Aa3wEneEA7MF3-ysq14n3Md2BjzANLYsfea1u-oU2wbMGkCQ&oe=69B7E12F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"WnRlKOlosh1r4vk4aBFcQKxzwCroklC0jOxH+acoEtE=\",\"fileLength\":\"135488\",\"pageCount\":1,\"mediaKey\":\"S+mFSmFoZCMwHQEseZtRK+eJiZg9hAD+7vaRj5noJmQ=\",\"fileName\":\"comprovante2026-02-14_092027.pdf\",\"fileEncSha256\":\"ljdzS9SQsrr3i9hpELh9ippPfBAYBEepldqjm1JT\\/kg=\",\"directPath\":\"\\/v\\/t62.7119-24\\/634839892_1236028214707118_6213329355109260623_n.enc?ccb=11-4&oh=01_Q5Aa3wEneEA7MF3-ysq14n3Md2BjzANLYsfea1u-oU2wbMGkCQ&oe=69B7E12F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771071644\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/606535413_942616121450314_5126975185819881660_n.enc?ccb=11-4&oh=01_Q5Aa3wF5L0lI5QgjvAs-tSz786KxMW1WgMEEnfshcXC4AjSSHA&oe=69B7BDF4&_nc_sid=5e03e0\",\"thumbnailSha256\":\"88Bj\\/C298asIHqEgkb4igT+Ey4Na09VEc+pesfu8POo=\",\"thumbnailEncSha256\":\"BJR7ocRz\\/qcv8ztwQlAxpDp3qtHr6l8AUZNOt5iLYCk=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAGwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAABAwACBAYFAQEBAAMAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAA9HzeiT083g9\\/zPTYZ5qkatt9GfRLmuWEMgti7hkhmfQlyCJoa1d6XR\\/\\/xAAsEAACAgECBQIEBwAAAAAAAAABAgMRAAQQBRITITFRgSNCYnEGM0FTYYKR\\/9oACAEBAAE\\/AOJcR10GrlVGYIuHjev\\/AHWwcZ4lf5+0\\/B4NTPLNKXsnsFOL+H9E3kzDH4Bpafp9Xno8tnaQfEu39vGBb+Z\\/9yv5O0o+L4PscVb88w98CUbs7Sqhc2q+5rIo1o1yg+gN50x67TOvV+T+y82RSQCqIs+g3exLyi6xVr5id5CyzWovAWJopQ9b31RQykt07+qrzTR6V0rliY\\/YYqItlVUfYVtL2fs5GLNQ7sWxZVPYbSNTEVeBvowM1+K2kiZmJAGCA\\/qMEdeBt\\/\\/EABsRAAEEAwAAAAAAAAAAAAAAAAIBAxESADCh\\/9oACAECAQE\\/ABNlBSR5jpAVapGv\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAQIDEQASMEFR\\/9oACAEDAQE\\/AGSYk03fuRK67bG+P\\/\\/Z\",\"thumbnailHeight\":480,\"thumbnailWidth\":135},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P0gvsgHlQ+K9+XJrX4ZlqtBauhhTyfAXSm5TIcEzu4g=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771071646,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:46'),
(15203, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:46'),
(15204, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":false,\"id\":\"AC0DEBB397AC0496AE852A7CA175AC72\"},\"pushName\":\"Daiane Forte\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/634839892_1236028214707118_6213329355109260623_n.enc?ccb=11-4&oh=01_Q5Aa3wEneEA7MF3-ysq14n3Md2BjzANLYsfea1u-oU2wbMGkCQ&oe=69B7E12F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"WnRlKOlosh1r4vk4aBFcQKxzwCroklC0jOxH+acoEtE=\",\"fileLength\":\"135488\",\"pageCount\":1,\"mediaKey\":\"S+mFSmFoZCMwHQEseZtRK+eJiZg9hAD+7vaRj5noJmQ=\",\"fileName\":\"comprovante2026-02-14_092027.pdf\",\"fileEncSha256\":\"ljdzS9SQsrr3i9hpELh9ippPfBAYBEepldqjm1JT\\/kg=\",\"directPath\":\"\\/v\\/t62.7119-24\\/634839892_1236028214707118_6213329355109260623_n.enc?ccb=11-4&oh=01_Q5Aa3wEneEA7MF3-ysq14n3Md2BjzANLYsfea1u-oU2wbMGkCQ&oe=69B7E12F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771071644\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/606535413_942616121450314_5126975185819881660_n.enc?ccb=11-4&oh=01_Q5Aa3wF5L0lI5QgjvAs-tSz786KxMW1WgMEEnfshcXC4AjSSHA&oe=69B7BDF4&_nc_sid=5e03e0\",\"thumbnailSha256\":\"88Bj\\/C298asIHqEgkb4igT+Ey4Na09VEc+pesfu8POo=\",\"thumbnailEncSha256\":\"BJR7ocRz\\/qcv8ztwQlAxpDp3qtHr6l8AUZNOt5iLYCk=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAGwMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAABAwACBAYFAQEBAAMAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAA9HzeiT083g9\\/zPTYZ5qkatt9GfRLmuWEMgti7hkhmfQlyCJoa1d6XR\\/\\/xAAsEAACAgECBQIEBwAAAAAAAAABAgMRAAQQBRITITFRgSNCYnEGM0FTYYKR\\/9oACAEBAAE\\/AOJcR10GrlVGYIuHjev\\/AHWwcZ4lf5+0\\/B4NTPLNKXsnsFOL+H9E3kzDH4Bpafp9Xno8tnaQfEu39vGBb+Z\\/9yv5O0o+L4PscVb88w98CUbs7Sqhc2q+5rIo1o1yg+gN50x67TOvV+T+y82RSQCqIs+g3exLyi6xVr5id5CyzWovAWJopQ9b31RQykt07+qrzTR6V0rliY\\/YYqItlVUfYVtL2fs5GLNQ7sWxZVPYbSNTEVeBvowM1+K2kiZmJAGCA\\/qMEdeBt\\/\\/EABsRAAEEAwAAAAAAAAAAAAAAAAIBAxESADCh\\/9oACAECAQE\\/ABNlBSR5jpAVapGv\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAQIDEQASMEFR\\/9oACAEDAQE\\/AGSYk03fuRK67bG+P\\/\\/Z\",\"thumbnailHeight\":480,\"thumbnailWidth\":135},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"P0gvsgHlQ+K9+XJrX4ZlqtBauhhTyfAXSm5TIcEzu4g=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771071646,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:46'),
(15205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:46'),
(15206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:47'),
(15207, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:47'),
(15208, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:46.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:47'),
(15209, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5A42FB1A6F5A1F824009E4D10EF95CF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071656,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:56'),
(15210, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:20:56'),
(15211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:20:56'),
(15212, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5A42FB1A6F5A1F824009E4D10EF95CF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071656,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15213, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:56'),
(15214, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:57'),
(15215, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5A42FB1A6F5A1F824009E4D10EF95CF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071656912,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:20:57'),
(15216, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5A42FB1A6F5A1F824009E4D10EF95CF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071656912,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:20:56.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:20:58'),
(15217, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5AAFB91886EA43E4FEAB3DCE2997524\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071660,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:00'),
(15218, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:00'),
(15219, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:00'),
(15220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5AAFB91886EA43E4FEAB3DCE2997524\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tudo bem?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071660,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:00'),
(15221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:00'),
(15222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5AAFB91886EA43E4FEAB3DCE2997524\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071660891,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:01'),
(15223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:01'),
(15224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5AAFB91886EA43E4FEAB3DCE2997524\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071660891,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:00.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:01'),
(15225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:07'),
(15226, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:07'),
(15227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5AE8074367B26CA43F63FEE3DDD03C7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071667,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:07'),
(15228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:07'),
(15229, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5AE8074367B26CA43F63FEE3DDD03C7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Estou atualizando o meu sistema e vi que seu acesso expirou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071667,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:07'),
(15230, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5AE8074367B26CA43F63FEE3DDD03C7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071667860,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:08'),
(15231, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5AE8074367B26CA43F63FEE3DDD03C7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071667860,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:08'),
(15232, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:07.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:08'),
(15233, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5A726020093486504501E7CF0EF50EF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071672,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:12'),
(15234, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:12'),
(15235, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"15122697306187@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:12'),
(15236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"15122697306187@lid\",\"fromMe\":true,\"id\":\"A5A726020093486504501E7CF0EF50EF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos renovar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771071672,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:12'),
(15237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:12'),
(15238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"15122697306187@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:13'),
(15239, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5A726020093486504501E7CF0EF50EF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071672866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:13'),
(15240, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5A726020093486504501E7CF0EF50EF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071672866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:12.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:13'),
(15241, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"17742644162781@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:34.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:35'),
(15242, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"17742644162781@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:34.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:35'),
(15243, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"17742644162781@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592232495_906085535189223_2961278126318479409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFolZoxYV9QP782Ox2hTU6smLQFYWJ3AIHEkurHFRncGA&oe=699D8612&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:35.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:35'),
(15244, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"17742644162781@lid\",\"fromMe\":true,\"id\":\"A5485B103C7A5B28495D4EB4B7ECA3E8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071694,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:34.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:35'),
(15245, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"17742644162781@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592232495_906085535189223_2961278126318479409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFolZoxYV9QP782Ox2hTU6smLQFYWJ3AIHEkurHFRncGA&oe=699D8612&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:35.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:35'),
(15246, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"17742644162781@lid\",\"fromMe\":true,\"id\":\"A5485B103C7A5B28495D4EB4B7ECA3E8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira dia 17\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071694,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:34.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:36'),
(15247, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"17742644162781@lid\",\"id\":\"A5485B103C7A5B28495D4EB4B7ECA3E8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071695496,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:35.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:36'),
(15248, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"17742644162781@lid\",\"id\":\"A5485B103C7A5B28495D4EB4B7ECA3E8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071695496,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:35.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:37'),
(15249, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42601830990003@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:59.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:21:59'),
(15250, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42601830990003@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:59.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:21:59'),
(15251, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42601830990003@lid\",\"fromMe\":true,\"id\":\"A5EF842982730C825D73B672AD7C148A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira hoje 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:59.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:59'),
(15252, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42601830990003@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:59.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:21:59'),
(15253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42601830990003@lid\",\"fromMe\":true,\"id\":\"A5EF842982730C825D73B672AD7C148A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia, tudo bem?\\nSeu plano expira hoje 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":14},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771071719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:59.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:21:59'),
(15254, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42601830990003@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:21:59.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:22:00'),
(15255, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42601830990003@lid\",\"id\":\"A5EF842982730C825D73B672AD7C148A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071721161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:22:01.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:22:01'),
(15256, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42601830990003@lid\",\"id\":\"A5EF842982730C825D73B672AD7C148A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771071721161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:22:01.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:22:01'),
(15257, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A51E7D8CFCF43C37A6D8173879E610D7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071912998,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:12.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:25:13'),
(15258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A5CCCEF3B5AE406A46CDC03EE2E1E7D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071912988,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:12.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:25:13'),
(15259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A5CD703FA96DEA550F189D6B905F58B4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071912980,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:12.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:25:13'),
(15260, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A51E7D8CFCF43C37A6D8173879E610D7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071912998,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:12.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:25:13'),
(15261, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A5CCCEF3B5AE406A46CDC03EE2E1E7D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071912988,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:12.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:25:13'),
(15262, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"12056174587932@lid\",\"id\":\"A5CD703FA96DEA550F189D6B905F58B4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071912980,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:12.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:25:14'),
(15263, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0BA3D029B7845108666\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071938808,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:38.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:25:38'),
(15264, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB07435E3D3964DDB0FB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071938803,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:38.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:25:39'),
(15265, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0BA3D029B7845108666\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071938808,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:38.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:25:39'),
(15266, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB07435E3D3964DDB0FB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771071938803,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:25:38.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:25:39'),
(15267, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5F8B220FF114BBB9C9C60571630CCEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072290334,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:30.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:30'),
(15268, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5F8B220FF114BBB9C9C60571630CCEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072290334,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:30.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:31'),
(15269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:31.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:31'),
(15270, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:31.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:31'),
(15271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5F8B220FF114BBB9C9C60571630CCEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771072288881\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771072291,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:31.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:31'),
(15272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:31.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:31'),
(15273, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5F8B220FF114BBB9C9C60571630CCEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771072288881\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771072291,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:31.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:32'),
(15274, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:31.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:32'),
(15275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5EC6DEAC4EC34F01120E31B6A245841\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771072291875\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771072292,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:32'),
(15276, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:32'),
(15277, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209594471170110@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:32'),
(15278, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209594471170110@lid\",\"fromMe\":true,\"id\":\"A5EC6DEAC4EC34F01120E31B6A245841\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771072291875\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771072292,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:32'),
(15279, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5EC6DEAC4EC34F01120E31B6A245841\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072292791,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:33'),
(15280, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5EC6DEAC4EC34F01120E31B6A245841\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072292791,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:33'),
(15281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:33'),
(15282, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209594471170110@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518929195_25363213466664983_2030414872760097991_n.jpg?ccb=11-4&oh=01_Q5Aa3wFFyKH1cpZFCadM1fzCdFG8j8Gi0QluJjErVhRAax-iuA&oe=699D8925&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:32.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:33'),
(15283, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5F8B220FF114BBB9C9C60571630CCEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072304510,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:44.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:44'),
(15284, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5EC6DEAC4EC34F01120E31B6A245841\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072304504,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:44.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15285, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5F8B220FF114BBB9C9C60571630CCEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072304510,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:44.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:44'),
(15286, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209594471170110@lid\",\"id\":\"A5EC6DEAC4EC34F01120E31B6A245841\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072304504,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:44.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:44'),
(15287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:45.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:45'),
(15288, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:45.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:45'),
(15289, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A5F508DEC47E80D5DDACC244D2435804\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Belezaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771072304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:45.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:45'),
(15290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:45.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:45'),
(15291, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A5F508DEC47E80D5DDACC244D2435804\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Belezaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771072304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:45.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:45'),
(15292, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A56B8C2F2D27D2573CADD572F96514A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDXDUO23GB\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771072306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:46.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:46'),
(15293, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:46.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:46'),
(15294, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"31585407639718@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:46.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:46'),
(15295, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"31585407639718@lid\",\"fromMe\":true,\"id\":\"A56B8C2F2D27D2573CADD572F96514A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UDXDUO23GB\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771072306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:46.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:46'),
(15296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:45.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:46'),
(15297, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:46.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:31:47'),
(15298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5F508DEC47E80D5DDACC244D2435804\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072307672,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:47.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:47'),
(15299, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"31585407639718@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/239456358_1069130783627864_982969617489923417_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOhgBpZbmP_n2D6u3koTn1Yd013FJ1PyeKyPqZ6GO-bA&oe=699D6F9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:46.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:31:47'),
(15300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A56B8C2F2D27D2573CADD572F96514A5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072307809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:47.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:31:47'),
(15301, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5F508DEC47E80D5DDACC244D2435804\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072307672,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:47.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:47'),
(15302, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A56B8C2F2D27D2573CADD572F96514A5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072307809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:31:47.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:31:48'),
(15303, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5F43FB3627BE09648F7D341F874810C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398382,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:33:18'),
(15304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A59BB4776B632EBF1766599E0315ABD5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:33:18'),
(15305, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A53D4F46258B1DA836C980680B0EBADD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:33:18'),
(15306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5000219F292AE4260A5ABE4212AC314\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398377,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:33:18'),
(15307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A53D4F46258B1DA836C980680B0EBADD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:33:19'),
(15308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5000219F292AE4260A5ABE4212AC314\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398377,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:33:19'),
(15309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A59BB4776B632EBF1766599E0315ABD5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398370,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:33:19'),
(15310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5F43FB3627BE09648F7D341F874810C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072398382,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:18.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:33:19'),
(15311, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:50.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:33:50'),
(15312, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:33:50.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:33:50'),
(15313, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:00.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:00'),
(15314, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:00.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:00'),
(15315, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:07.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:07'),
(15316, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:07.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:08'),
(15317, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:17.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:17'),
(15318, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:17.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:17'),
(15319, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:27.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:27'),
(15320, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:27.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:28'),
(15321, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A519FE948DFF6CF56256D6BDBDDB4954\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072467824,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:27.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:34:28'),
(15322, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A519FE948DFF6CF56256D6BDBDDB4954\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072467824,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:27.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:34:28'),
(15323, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:29.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:29'),
(15324, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:29.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:29'),
(15325, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:30'),
(15326, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:30'),
(15327, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3A1DBC5499E4D340D6E9\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FXNRV9p2OjjWrWnBjrqcKT\\/O6x58SKZLZDCY5k99Sz8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072470,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:34:30'),
(15328, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:30'),
(15329, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:30'),
(15330, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3A1DBC5499E4D340D6E9\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FXNRV9p2OjjWrWnBjrqcKT\\/O6x58SKZLZDCY5k99Sz8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072470,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:34:31'),
(15331, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:31.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:31'),
(15332, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:31.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:31'),
(15333, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:31'),
(15334, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:30.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:32'),
(15335, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:37.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:38'),
(15336, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:37.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:38'),
(15337, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:38.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:38'),
(15338, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:38.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:38'),
(15339, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:48.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:48'),
(15340, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:48.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:49'),
(15341, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:58.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:34:58'),
(15342, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:34:58.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:34:58'),
(15343, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:08.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:09'),
(15344, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:08.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:09'),
(15345, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:19.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:19'),
(15346, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:19.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:19'),
(15347, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:21.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:21'),
(15348, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:21.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:21'),
(15349, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:25.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:25'),
(15350, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:25.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:25'),
(15351, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:27.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:27'),
(15352, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:27.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:28'),
(15353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:29'),
(15354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5D5BC005672B9B63304B91F9A7C45B7\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"To com mta dor de garganta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7Lhmp9tcFoptQ+quZ5sJi3bBhUe6dVgIVXLFJBECl1k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:35:29'),
(15355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:29'),
(15356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:29'),
(15357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:30'),
(15358, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:30'),
(15359, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:30'),
(15360, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5D5BC005672B9B63304B91F9A7C45B7\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"To com mta dor de garganta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7Lhmp9tcFoptQ+quZ5sJi3bBhUe6dVgIVXLFJBECl1k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:35:30'),
(15361, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:29.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:30'),
(15362, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:31'),
(15363, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:34'),
(15364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A534D05ED043AF769DA204D88CBABD4F\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Já fiz um.cha cedo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9dZFQs9AEp7G\\/C4CfKM3\\/iRgki0M5j0tUg8O3Ckq+cs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:35:34'),
(15365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15366, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:34'),
(15367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:34'),
(15368, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:35.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:35'),
(15369, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:35.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:35'),
(15370, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A534D05ED043AF769DA204D88CBABD4F\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"Já fiz um.cha cedo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9dZFQs9AEp7G\\/C4CfKM3\\/iRgki0M5j0tUg8O3Ckq+cs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:35:35'),
(15371, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:35'),
(15372, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:34.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:36'),
(15373, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:39.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:39'),
(15374, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"presences\":{\"78769717030973@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:39.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:39'),
(15375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":false,\"id\":\"A5CD77EB0DDF31F129E59F0E3FB5098B\"},\"pushName\":\"Carlos Eduardo Fagundes\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia tudo bem.\\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\\nQualquer coisa te aviso.\\nObrigado.\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"71wUHC20L5aEkg==\",\"senderTimestamp\":\"1770123804\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AAyfoPpn+60B4iT\\/ZT2SiqY4IdtA6YX45sMy1o5Qby4=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771072539,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:35:40'),
(15376, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:40'),
(15377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"pushName\":\"Carlos Eduardo Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:40'),
(15378, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:40'),
(15379, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":false,\"id\":\"A5CD77EB0DDF31F129E59F0E3FB5098B\"},\"pushName\":\"Carlos Eduardo Fagundes\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia tudo bem.\\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\\nQualquer coisa te aviso.\\nObrigado.\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"71wUHC20L5aEkg==\",\"senderTimestamp\":\"1770123804\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AAyfoPpn+60B4iT\\/ZT2SiqY4IdtA6YX45sMy1o5Qby4=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771072539,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:35:40'),
(15380, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:41'),
(15381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5FE36B510473808CCC0A864F87007AC\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"To com.dor de cabeça t\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LziASLS7xoNjkohzpQsfUag3yAGpZQIG+ypvDlpRxks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:35:41'),
(15382, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:41'),
(15383, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5FE36B510473808CCC0A864F87007AC\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"To com.dor de cabeça t\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1770986001\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LziASLS7xoNjkohzpQsfUag3yAGpZQIG+ypvDlpRxks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771072541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:35:41'),
(15384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:41'),
(15385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:42'),
(15386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:42'),
(15387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"pushName\":\"Carlos Eduardo Fagundes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:42'),
(15388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQLd75RmgxPBG1sFJfcpBRFAcSuexP356mtml4rCdwyA&oe=699D9232&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:41.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:42'),
(15389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:35:43'),
(15390, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:40.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:35:43'),
(15391, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072546745,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:46.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:35:46'),
(15392, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771072546745,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:35:46.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:35:46'),
(15393, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:01.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:01'),
(15394, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:01.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:01'),
(15395, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:07.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:07'),
(15396, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:07.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:07'),
(15397, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:08.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:08'),
(15398, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:08.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:09'),
(15399, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:13.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:13'),
(15400, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:13.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:13'),
(15401, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:15.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:15'),
(15402, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:15.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:15'),
(15403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:15.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:15'),
(15404, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":false,\"id\":\"AC71948948E1A5A1C57A649604E256F9\"},\"pushName\":\"Mauricio Brisola\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zvkTYt7uutxy11KduDjw7H3ICdy1q71Cg967rS8EzZ0=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771072575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:15.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:36:15'),
(15405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:15.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:16'),
(15406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":false,\"id\":\"AC71948948E1A5A1C57A649604E256F9\"},\"pushName\":\"Mauricio Brisola\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zvkTYt7uutxy11KduDjw7H3ICdy1q71Cg967rS8EzZ0=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":8},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771072575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:15.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:36:16'),
(15407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:16.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:16'),
(15408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:16.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:16'),
(15409, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:19.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:19'),
(15410, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:19.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:19'),
(15411, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:21.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:21'),
(15412, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:21.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:21'),
(15413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:21.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:21'),
(15414, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"AC1832987301C2D0F88CE940816F5D8E\"},\"pushName\":\"Eduardo\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia ... expira dia 18 não dia 15\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5P5zRsqDj0QkrIbsQneMsw7yuOYtOmckR\\/XUPk5+ouY=\"}},\"contextInfo\":{\"stanzaId\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771072581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:21.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:36:21'),
(15415, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:21.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:22'),
(15416, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:22.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:36:22'),
(15417, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"AC1832987301C2D0F88CE940816F5D8E\"},\"pushName\":\"Eduardo\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia ... expira dia 18 não dia 15\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5P5zRsqDj0QkrIbsQneMsw7yuOYtOmckR\\/XUPk5+ouY=\"}},\"contextInfo\":{\"stanzaId\":\"A5D3A75D88D7DC06458755BB0E02CB23\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia, tudo bem?\\nSeu plano expira dia 15\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771072581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:21.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:36:22'),
(15418, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:36:22.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:36:22'),
(15419, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:01.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:37:01'),
(15420, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:01.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:37:01'),
(15421, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:11.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:37:11'),
(15422, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:11.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:37:11'),
(15423, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:19.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:37:19'),
(15424, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:19.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:37:19'),
(15425, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:20.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:37:20'),
(15426, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:20.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:37:21'),
(15427, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":false,\"id\":\"AC7EC034F492D69F96548F3C676F4516\"},\"pushName\":\"Mauricio Brisola\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637004710_1193693399514103_2081205553106197128_n.enc?ccb=11-4&oh=01_Q5Aa3wH7nprQ00xd_gKMDMHusr0VX-K8aFR8eHSaS4H8pPyd_A&oe=69B7DB78&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7NjAEMlfFcZwtpDNP4vM3rJzDmFfPcrjofslui6CUlg=\",\"fileLength\":\"42090\",\"seconds\":18,\"ptt\":true,\"mediaKey\":\"hO\\/ZNjX9jfU047X2Uliku6HNKKA7udnNKef6uIBAhOY=\",\"fileEncSha256\":\"LnEzz0qZ3hKQJ7Xqj3kuyZwRWoBfu6WYSgHUnc10iLY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637004710_1193693399514103_2081205553106197128_n.enc?ccb=11-4&oh=01_Q5Aa3wH7nprQ00xd_gKMDMHusr0VX-K8aFR8eHSaS4H8pPyd_A&oe=69B7DB78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771072623\",\"waveform\":\"ABdFTDFWKV0jA2FWX0BiYVAOAAcpKWFOQyJVRC9EUFZiX1Y0TCQeKF5iVkpfVDg7HzdBUkpdXVxHU0ZENVZGFg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iErqOQZaM6k\\/RNWTyJj\\/8HBd92gYfozcRKSSblqXiC8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771072640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:20.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:37:21'),
(15428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:21.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:37:21'),
(15429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:21.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:37:21'),
(15430, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:21.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:37:21'),
(15431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:21.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:37:21'),
(15432, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":false,\"id\":\"AC7EC034F492D69F96548F3C676F4516\"},\"pushName\":\"Mauricio Brisola\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637004710_1193693399514103_2081205553106197128_n.enc?ccb=11-4&oh=01_Q5Aa3wH7nprQ00xd_gKMDMHusr0VX-K8aFR8eHSaS4H8pPyd_A&oe=69B7DB78&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7NjAEMlfFcZwtpDNP4vM3rJzDmFfPcrjofslui6CUlg=\",\"fileLength\":\"42090\",\"seconds\":18,\"ptt\":true,\"mediaKey\":\"hO\\/ZNjX9jfU047X2Uliku6HNKKA7udnNKef6uIBAhOY=\",\"fileEncSha256\":\"LnEzz0qZ3hKQJ7Xqj3kuyZwRWoBfu6WYSgHUnc10iLY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637004710_1193693399514103_2081205553106197128_n.enc?ccb=11-4&oh=01_Q5Aa3wH7nprQ00xd_gKMDMHusr0VX-K8aFR8eHSaS4H8pPyd_A&oe=69B7DB78&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771072623\",\"waveform\":\"ABdFTDFWKV0jA2FWX0BiYVAOAAcpKWFOQyJVRC9EUFZiX1Y0TCQeKF5iVkpfVDg7HzdBUkpdXVxHU0ZENVZGFg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iErqOQZaM6k\\/RNWTyJj\\/8HBd92gYfozcRKSSblqXiC8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771072640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:37:20.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:37:22'),
(15433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A507413F44CBC36393438D552536379E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893598,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:41:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A558055F1E282B8F80F8F084112976DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893582,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:41:33'),
(15435, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A59A5BCB515C592F3B632F68CEB10CA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:41:33'),
(15436, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5FD396C7E11E898C7CC2E0BE884A37A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893592,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:41:33'),
(15437, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5A1BF9E7CAE03B420DAFC1B02B38C57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893610,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:41:33'),
(15438, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A558055F1E282B8F80F8F084112976DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893582,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:41:34'),
(15439, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A507413F44CBC36393438D552536379E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893598,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:41:34'),
(15440, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A59A5BCB515C592F3B632F68CEB10CA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:41:34'),
(15441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5FD396C7E11E898C7CC2E0BE884A37A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893592,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:41:34'),
(15442, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5A1BF9E7CAE03B420DAFC1B02B38C57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771072893610,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:41:33.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:41:34'),
(15443, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":true,\"id\":\"A5F86F07A66D5572E93CBF218983589D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636766011_1315040587030168_5361170230131655368_n.enc?ccb=11-4&oh=01_Q5Aa3wG0sbeCPHJAN8s6Ae6sjZat0mWnnF07S04SxRxkhfLbpQ&oe=69B7CEF2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HgUPRaPdnT3G1Ukaol1uD5enEkofB1ZXsdnUK+NSwBs=\",\"fileLength\":\"15464\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"CNF3fOPBFnZroZlF\\/DSAUvbWyVNnNY2iSi6M\\/WORdD4=\",\"fileEncSha256\":\"FbNO1T1JFkIcGbVoxBbqnOEO0Wn+4oklZzP+qELrw\\/0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636766011_1315040587030168_5361170230131655368_n.enc?ccb=11-4&oh=01_Q5Aa3wG0sbeCPHJAN8s6Ae6sjZat0mWnnF07S04SxRxkhfLbpQ&oe=69B7CEF2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073026\",\"waveform\":\"AAADSjFQW0xVUCZOQjgxSkpSOkc7P0MAAAIAQjtFNAlPKVxQNjVHSj5QIE8rQDdATUdMST8qLzUhTS5DGD9GSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771073031,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:51.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:43:52'),
(15444, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:51.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:43:52'),
(15445, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:51.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:43:52'),
(15446, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:52.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:43:52'),
(15447, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":true,\"id\":\"A5F86F07A66D5572E93CBF218983589D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636766011_1315040587030168_5361170230131655368_n.enc?ccb=11-4&oh=01_Q5Aa3wG0sbeCPHJAN8s6Ae6sjZat0mWnnF07S04SxRxkhfLbpQ&oe=69B7CEF2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HgUPRaPdnT3G1Ukaol1uD5enEkofB1ZXsdnUK+NSwBs=\",\"fileLength\":\"15464\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"CNF3fOPBFnZroZlF\\/DSAUvbWyVNnNY2iSi6M\\/WORdD4=\",\"fileEncSha256\":\"FbNO1T1JFkIcGbVoxBbqnOEO0Wn+4oklZzP+qELrw\\/0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636766011_1315040587030168_5361170230131655368_n.enc?ccb=11-4&oh=01_Q5Aa3wG0sbeCPHJAN8s6Ae6sjZat0mWnnF07S04SxRxkhfLbpQ&oe=69B7CEF2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073026\",\"waveform\":\"AAADSjFQW0xVUCZOQjgxSkpSOkc7P0MAAAIAQjtFNAlPKVxQNjVHSj5QIE8rQDdATUdMST8qLzUhTS5DGD9GSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771073031,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:51.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:43:52'),
(15448, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F86F07A66D5572E93CBF218983589D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073033209,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:53.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:43:53'),
(15449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:52.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:43:53'),
(15450, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F86F07A66D5572E93CBF218983589D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073033209,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:43:53.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:43:53'),
(15451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635130417_2042312596330575_2595957577635948036_n.enc?ccb=11-4&oh=01_Q5Aa3wHuLU_lkYpR5gYLmSU566UyS2mq_o1ZDr553IPYahIOWg&oe=69B7C9E6&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"D9eoBE7nvvAux2AcVc+InCf4UgoUYztwC\\/Bv+P9A7Jc=\",\"mediaKey\":\"ad308C\\/fA3of\\/2ZHOhHYEE0ABBOVeE3a\\/omoDNZq3AY=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/635130417_2042312596330575_2595957577635948036_n.enc?ccb=11-4&oh=01_Q5Aa3wHuLU_lkYpR5gYLmSU566UyS2mq_o1ZDr553IPYahIOWg&oe=69B7C9E6&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1771073075\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771073075041\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771073075,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:35.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:44:36'),
(15452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:35.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:44:36'),
(15453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:36.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:44:36'),
(15454, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635130417_2042312596330575_2595957577635948036_n.enc?ccb=11-4&oh=01_Q5Aa3wHuLU_lkYpR5gYLmSU566UyS2mq_o1ZDr553IPYahIOWg&oe=69B7C9E6&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"D9eoBE7nvvAux2AcVc+InCf4UgoUYztwC\\/Bv+P9A7Jc=\",\"mediaKey\":\"ad308C\\/fA3of\\/2ZHOhHYEE0ABBOVeE3a\\/omoDNZq3AY=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/635130417_2042312596330575_2595957577635948036_n.enc?ccb=11-4&oh=01_Q5Aa3wHuLU_lkYpR5gYLmSU566UyS2mq_o1ZDr553IPYahIOWg&oe=69B7C9E6&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1771073075\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771073075041\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771073075,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:35.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:44:36'),
(15455, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:35.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:44:36'),
(15456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:36.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:44:38'),
(15457, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073078809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:38.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:44:38'),
(15458, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073078809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:44:38.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:44:39'),
(15459, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5CE70D13601C7CFEDEA9DACE29B09E9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186861,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:27'),
(15460, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5B866903794F0BBA6BAB8365467D765\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:27'),
(15461, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A548D4BCB74FF7A040F4209BF22B39DB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:27'),
(15462, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5C18DFC7F8581F9E0968FB2B7B1913E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:27'),
(15463, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5C18DFC7F8581F9E0968FB2B7B1913E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:27'),
(15464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5CE70D13601C7CFEDEA9DACE29B09E9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186861,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:28'),
(15465, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A5B866903794F0BBA6BAB8365467D765\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:28'),
(15466, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"250886404186362@lid\",\"id\":\"A548D4BCB74FF7A040F4209BF22B39DB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073186840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:26.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:28'),
(15467, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:34'),
(15468, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:34'),
(15469, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:34'),
(15470, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia!\\nTranquilo, testa sim 👍\\n\\nSó não esquece que nem sempre o que começa bem continua estável. Aqui você já conhece a qualidade, suporte e estabilidade desde 2023.\\n\\nSe precisar, estou por aqui.\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5CD77EB0DDF31F129E59F0E3FB5098B\",\"participant\":\"78769717030973@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia tudo bem.\\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\\nQualquer coisa te aviso.\\nObrigado.\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A5CD77EB0DDF31F129E59F0E3FB5098B\",\"participant\":\"78769717030973@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia tudo bem.\\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\\nQualquer coisa te aviso.\\nObrigado.\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771073194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:34'),
(15471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"78769717030973@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:34'),
(15472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:35'),
(15473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"78769717030973@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546516983_1379249724208516_7120300009233636964_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrdnFvpTilu9y0rSgf1wM_Fy3-zxrSu-hmBbGe9LscKQ&oe=699D8232&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:35'),
(15474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"78769717030973@lid\",\"fromMe\":true,\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia!\\nTranquilo, testa sim 👍\\n\\nSó não esquece que nem sempre o que começa bem continua estável. Aqui você já conhece a qualidade, suporte e estabilidade desde 2023.\\n\\nSe precisar, estou por aqui.\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5CD77EB0DDF31F129E59F0E3FB5098B\",\"participant\":\"78769717030973@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia tudo bem.\\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\\nQualquer coisa te aviso.\\nObrigado.\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A5CD77EB0DDF31F129E59F0E3FB5098B\",\"participant\":\"78769717030973@lid\",\"quotedMessage\":{\"conversation\":\"Bom dia tudo bem.\\nEstou testando uns aplicativos de um amigo da minha esposa que ja baixei direto na TV e está indo bem.\\nQualquer coisa te aviso.\\nObrigado.\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1710249930\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771073194,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:34.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:35'),
(15475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073196239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:36.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:36'),
(15476, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073196239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:36.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:36'),
(15477, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":false,\"id\":\"ACD5FF24DBD48EB83744F68A3A254D41\"},\"pushName\":\"Cleide Portela\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"I6bOVk6bZfnrTDf1gV\\/vDXbrmoQSUS8x9KeROSFI7ww=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771073198,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:46:38'),
(15478, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:38'),
(15479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:38'),
(15480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:38'),
(15481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":false,\"id\":\"ACD5FF24DBD48EB83744F68A3A254D41\"},\"pushName\":\"Cleide Portela\",\"message\":{\"conversation\":\"Bom dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"I6bOVk6bZfnrTDf1gV\\/vDXbrmoQSUS8x9KeROSFI7ww=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771073198,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:46:38'),
(15482, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:39'),
(15483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:39'),
(15484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:39'),
(15485, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:39'),
(15486, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:38.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:39'),
(15487, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:40.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:41'),
(15488, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:40.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:41'),
(15489, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:52.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:52'),
(15490, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:52.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:52'),
(15491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:53.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:46:53'),
(15492, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:46:53.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:46:53'),
(15493, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:04.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:04'),
(15494, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:04.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:04'),
(15495, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:05.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:05'),
(15496, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":true,\"id\":\"A504D1EF14B7699B7B08874D172B2D26\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771073225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:05.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:47:05'),
(15497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:05.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:05'),
(15498, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":true,\"id\":\"A504D1EF14B7699B7B08874D172B2D26\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771073225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:05.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:47:05'),
(15499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:05.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:05'),
(15500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:05.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:06'),
(15501, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:14.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:14'),
(15502, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:14.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:14'),
(15503, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208580858916881@lid\",\"id\":\"A504D1EF14B7699B7B08874D172B2D26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073237579,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:17.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:47:17'),
(15504, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208580858916881@lid\",\"id\":\"A504D1EF14B7699B7B08874D172B2D26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073237579,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:17.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:47:17'),
(15505, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:18.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:18');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15506, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:18.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:18'),
(15507, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:19.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:20'),
(15508, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":true,\"id\":\"A5808618FE5DC86A715381B28BE4CD6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635088220_1579763446639242_3738493946532405607_n.enc?ccb=11-4&oh=01_Q5Aa3wEJWEj4QXWDKfnxXRoUH0R9jfS8yzgbFwdhe_45QUQROw&oe=69B7E23D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"b6x73Kzz3L8q\\/+zLBBW5T5LSBBs4vIAmQdTjm\\/su1is=\",\"fileLength\":\"16517\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"0\\/k0EBrMopgN517Cf\\/1w476giLO3xny4XPVQ5a2RNNA=\",\"fileEncSha256\":\"yEW+CFh3vHh\\/fuLftwv0+rurEJ5Z3qKt0QCW6fps9b0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635088220_1579763446639242_3738493946532405607_n.enc?ccb=11-4&oh=01_Q5Aa3wEJWEj4QXWDKfnxXRoUH0R9jfS8yzgbFwdhe_45QUQROw&oe=69B7E23D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073233\",\"waveform\":\"AAAAKVVPP0pOVTk7U0FNQklHJkVGRAs4IE5ZR1RLQEVFO0w0E1ZVIUE7TS09PCBGQwYOCgU8SEZTRk1GRDElOA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771073239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:19.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:47:20'),
(15509, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:19.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:20'),
(15510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":true,\"id\":\"A5808618FE5DC86A715381B28BE4CD6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635088220_1579763446639242_3738493946532405607_n.enc?ccb=11-4&oh=01_Q5Aa3wEJWEj4QXWDKfnxXRoUH0R9jfS8yzgbFwdhe_45QUQROw&oe=69B7E23D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"b6x73Kzz3L8q\\/+zLBBW5T5LSBBs4vIAmQdTjm\\/su1is=\",\"fileLength\":\"16517\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"0\\/k0EBrMopgN517Cf\\/1w476giLO3xny4XPVQ5a2RNNA=\",\"fileEncSha256\":\"yEW+CFh3vHh\\/fuLftwv0+rurEJ5Z3qKt0QCW6fps9b0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635088220_1579763446639242_3738493946532405607_n.enc?ccb=11-4&oh=01_Q5Aa3wEJWEj4QXWDKfnxXRoUH0R9jfS8yzgbFwdhe_45QUQROw&oe=69B7E23D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073233\",\"waveform\":\"AAAAKVVPP0pOVTk7U0FNQklHJkVGRAs4IE5ZR1RLQEVFO0w0E1ZVIUE7TS09PCBGQwYOCgU8SEZTRk1GRDElOA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771073239,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:19.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:47:20'),
(15511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:20.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:20'),
(15512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:20.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:20'),
(15513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:20.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:20'),
(15514, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208580858916881@lid\",\"id\":\"A5808618FE5DC86A715381B28BE4CD6A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073240816,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:20.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:47:21'),
(15515, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208580858916881@lid\",\"id\":\"A5808618FE5DC86A715381B28BE4CD6A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771073240816,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:20.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:47:21'),
(15516, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:20.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:21'),
(15517, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:25'),
(15518, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:25'),
(15519, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:29.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:29'),
(15520, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:29.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:29'),
(15521, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:31.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:31'),
(15522, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:31.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:32'),
(15523, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:32.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:32'),
(15524, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"presences\":{\"250886404186362@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:32.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:32'),
(15525, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:38'),
(15526, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":false,\"id\":\"ACA8C1D0DE239632F288B7F3D43BF0A9\"},\"pushName\":\"Cleide Portela\",\"message\":{\"conversation\":\"Edyou em viagem assim chegar renovarei obrigadão pela atenção\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CQ2y3OBEyUXHNfj90EKwUA4F9ReRujSb1JZFpoJ1xvg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771073258,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:47:38'),
(15527, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:38'),
(15528, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"250886404186362@lid\",\"fromMe\":false,\"id\":\"ACA8C1D0DE239632F288B7F3D43BF0A9\"},\"pushName\":\"Cleide Portela\",\"message\":{\"conversation\":\"Edyou em viagem assim chegar renovarei obrigadão pela atenção\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CQ2y3OBEyUXHNfj90EKwUA4F9ReRujSb1JZFpoJ1xvg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771073258,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:47:38'),
(15529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:38'),
(15530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:47:39'),
(15531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"250886404186362@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:39'),
(15532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"250886404186362@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538343377_1304757367850024_1221158476989136558_n.jpg?ccb=11-4&oh=01_Q5Aa3wECQNFEJVOPwds-gfKbYsjChAqrlJOIHqdrHgrvJrykWg&oe=699D795A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:47:38.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:47:40'),
(15533, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"presences\":{\"68904210669749@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:51:47.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:51:48'),
(15534, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"presences\":{\"68904210669749@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:51:47.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:51:48'),
(15535, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A57A08A97E7FDFEE82BD4575509B5A53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073518080,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:51:58.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:51:58'),
(15536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A57A08A97E7FDFEE82BD4575509B5A53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073518080,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:51:58.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:51:58'),
(15537, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073556612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:36.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:52:36'),
(15538, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073556619,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:36.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:52:36'),
(15539, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073556612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:36.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:52:37'),
(15540, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973@lid\",\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073556619,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:36.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:52:37'),
(15541, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:42.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:52:42'),
(15542, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:42.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:52:42'),
(15543, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:52:43'),
(15544, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:52:43'),
(15545, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":false,\"id\":\"AC3F916463305C865FDBBA3EA8414487\"},\"pushName\":\"Talita Barbosa\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/636954368_2107381473410820_7878845124960612544_n.enc?ccb=11-4&oh=01_Q5Aa3wHPZg8TB1PBEvqnK_0P6FMcV9_4GOxPrGD85OXkivBIfg&oe=69B7E4D7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"Lq1vevz+C4UwyQg4Ye5nS\\/AKDrigeI\\/pZeVKTn2Wdlw=\",\"fileLength\":\"6041\",\"pageCount\":2,\"mediaKey\":\"Pi2MpmI60MEbFAJy0a3Wmi\\/cCNtzGlbGWSWrXExCZrE=\",\"fileName\":\"1771073546529.pdf\",\"fileEncSha256\":\"yUKVub9JN4hHqZpUssj37GkTKT+vLNprPNblDGYedl0=\",\"directPath\":\"\\/v\\/t62.7119-24\\/636954368_2107381473410820_7878845124960612544_n.enc?ccb=11-4&oh=01_Q5Aa3wHPZg8TB1PBEvqnK_0P6FMcV9_4GOxPrGD85OXkivBIfg&oe=69B7E4D7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073560\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/636669701_2060650841459645_2842054643348090005_n.enc?ccb=11-4&oh=01_Q5Aa3wHfXHpeNePEzA6B_JjdKFYRRuCFx8OwUww1SF1nfKw4tA&oe=69B7F753&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Wk5Zt+FAmY5ZQhM88qPXt7H+TJInaDQY2pbmby+9p10=\",\"thumbnailEncSha256\":\"U7aaE9KmOpVIv9oZd5QubUkml5BoclR8DzHT7u\\/POKM=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGGcL6EqASzB0AAAiGgAAI4nagAAjJqgAA5dRm0AAf\\/EAC0QAAEDAQQJBAMBAAAAAAAAAAECAxEAEiAhMQQQEyJhcYGCkTNRU6EUMkFU\\/9oACAEBAAE\\/ANTjzbZSFGJmOlI0piUpC8TwvONm1uurjhFWF\\/I59UgWRisnnc7a7a7a7a6anRu\\/sRjTLqGptOFU0lSVDA3VptCIB51sTHpteKSlKckgchdeiziSOIoZA\\/ldMK2bhHrq8Cg0sKBLyiPbC47NnBFozlRMgKOjyeQoGQDEXXRKcyMf5QBTk874pKSM1k3VlQEpTNbZz4F\\/VJUVDFJTzuvFIRvGBNNLSTKtKw9lECtq18iPIoEHIzcdmzgi1jlSSud7RPAFSP8AH9CkOEEDYKSOlwgGtkjj5NyMQdX\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AEf\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAIUBR\\/9oACAEDAQE\\/ABZP\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Sbw\\/f7dDI+1PAuqYhC1MZRO30drvNvNmJAxIPgwGkDU=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771073563,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:52:43'),
(15546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:52:43'),
(15547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:52:43'),
(15548, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:52:44'),
(15549, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":false,\"id\":\"AC3F916463305C865FDBBA3EA8414487\"},\"pushName\":\"Talita Barbosa\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/636954368_2107381473410820_7878845124960612544_n.enc?ccb=11-4&oh=01_Q5Aa3wHPZg8TB1PBEvqnK_0P6FMcV9_4GOxPrGD85OXkivBIfg&oe=69B7E4D7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"Lq1vevz+C4UwyQg4Ye5nS\\/AKDrigeI\\/pZeVKTn2Wdlw=\",\"fileLength\":\"6041\",\"pageCount\":2,\"mediaKey\":\"Pi2MpmI60MEbFAJy0a3Wmi\\/cCNtzGlbGWSWrXExCZrE=\",\"fileName\":\"1771073546529.pdf\",\"fileEncSha256\":\"yUKVub9JN4hHqZpUssj37GkTKT+vLNprPNblDGYedl0=\",\"directPath\":\"\\/v\\/t62.7119-24\\/636954368_2107381473410820_7878845124960612544_n.enc?ccb=11-4&oh=01_Q5Aa3wHPZg8TB1PBEvqnK_0P6FMcV9_4GOxPrGD85OXkivBIfg&oe=69B7E4D7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073560\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/636669701_2060650841459645_2842054643348090005_n.enc?ccb=11-4&oh=01_Q5Aa3wHfXHpeNePEzA6B_JjdKFYRRuCFx8OwUww1SF1nfKw4tA&oe=69B7F753&_nc_sid=5e03e0\",\"thumbnailSha256\":\"Wk5Zt+FAmY5ZQhM88qPXt7H+TJInaDQY2pbmby+9p10=\",\"thumbnailEncSha256\":\"U7aaE9KmOpVIv9oZd5QubUkml5BoclR8DzHT7u\\/POKM=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGGcL6EqASzB0AAAiGgAAI4nagAAjJqgAA5dRm0AAf\\/EAC0QAAEDAQQJBAMBAAAAAAAAAAECAxEAEiAhMQQQEyJhcYGCkTNRU6EUMkFU\\/9oACAEBAAE\\/ANTjzbZSFGJmOlI0piUpC8TwvONm1uurjhFWF\\/I59UgWRisnnc7a7a7a7a6anRu\\/sRjTLqGptOFU0lSVDA3VptCIB51sTHpteKSlKckgchdeiziSOIoZA\\/ldMK2bhHrq8Cg0sKBLyiPbC47NnBFozlRMgKOjyeQoGQDEXXRKcyMf5QBTk874pKSM1k3VlQEpTNbZz4F\\/VJUVDFJTzuvFIRvGBNNLSTKtKw9lECtq18iPIoEHIzcdmzgi1jlSSud7RPAFSP8AH9CkOEEDYKSOlwgGtkjj5NyMQdX\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AEf\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAIUBR\\/9oACAEDAQE\\/ABZP\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Sbw\\/f7dDI+1PAuqYhC1MZRO30drvNvNmJAxIPgwGkDU=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771073563,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:52:44'),
(15550, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:43.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:52:44'),
(15551, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"presences\":{\"68904210669749@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:49.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:52:49'),
(15552, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"presences\":{\"68904210669749@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:49.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:52:49'),
(15553, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"presences\":{\"68904210669749@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:59.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:52:59'),
(15554, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"presences\":{\"68904210669749@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:52:59.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:52:59'),
(15555, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:53:01'),
(15556, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:53:01'),
(15557, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":false,\"id\":\"ACECB79C0A2AEC3F866B3A741E98E966\"},\"pushName\":\"Talita Barbosa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636989198_1445315880319194_167411298513422928_n.enc?ccb=11-4&oh=01_Q5Aa3wFBSIsauMHLFrRxZ0yLXWkcqmieRp_NtCGpCHOOnJ9ylA&oe=69B7E27D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Wppn65RkglzD3fh1EYgBr+m0bDOvxARbhbPkLZr\\/BGA=\",\"fileLength\":\"23183\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"4wIS\\/lqqdeiSq9uv0MwMFwl4GMYNmN8fzxyTegk+fpk=\",\"fileEncSha256\":\"ff52AAMwbDI\\/i5wgQhKQA4L06v\\/Y2q8bfm8Is08Oz3Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636989198_1445315880319194_167411298513422928_n.enc?ccb=11-4&oh=01_Q5Aa3wFBSIsauMHLFrRxZ0yLXWkcqmieRp_NtCGpCHOOnJ9ylA&oe=69B7E27D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073571\",\"waveform\":\"AAEeOjJMXFFUTUtQXF0mWldNSUBHTVohM1pXV1hKUkxNT1pSWVMeU1FGIxAOCwNUUU4BAAgHJVdXXVMkLDEQCg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kBD51zdpCxbXgOeEN5MamWoQlGQay3tq4VXmJbKAcN4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771073581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:53:01'),
(15558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:53:01'),
(15559, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 09:53:01'),
(15560, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":false,\"id\":\"ACECB79C0A2AEC3F866B3A741E98E966\"},\"pushName\":\"Talita Barbosa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636989198_1445315880319194_167411298513422928_n.enc?ccb=11-4&oh=01_Q5Aa3wFBSIsauMHLFrRxZ0yLXWkcqmieRp_NtCGpCHOOnJ9ylA&oe=69B7E27D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Wppn65RkglzD3fh1EYgBr+m0bDOvxARbhbPkLZr\\/BGA=\",\"fileLength\":\"23183\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"4wIS\\/lqqdeiSq9uv0MwMFwl4GMYNmN8fzxyTegk+fpk=\",\"fileEncSha256\":\"ff52AAMwbDI\\/i5wgQhKQA4L06v\\/Y2q8bfm8Is08Oz3Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636989198_1445315880319194_167411298513422928_n.enc?ccb=11-4&oh=01_Q5Aa3wFBSIsauMHLFrRxZ0yLXWkcqmieRp_NtCGpCHOOnJ9ylA&oe=69B7E27D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771073571\",\"waveform\":\"AAEeOjJMXFFUTUtQXF0mWldNSUBHTVohM1pXV1hKUkxNT1pSWVMeU1FGIxAOCwNUUU4BAAgHJVdXXVMkLDEQCg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kBD51zdpCxbXgOeEN5MamWoQlGQay3tq4VXmJbKAcN4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771073581,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:53:02'),
(15561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:53:02'),
(15562, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wFp9k8YWZx096zGvWtXSby7qq_zjKQELDXN3clKTRq7Pw&oe=699D67E9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:53:01.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 09:53:02'),
(15563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"17742644162781@lid\",\"id\":\"A5485B103C7A5B28495D4EB4B7ECA3E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073812173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:56:52.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:56:52'),
(15564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"17742644162781@lid\",\"id\":\"A5485B103C7A5B28495D4EB4B7ECA3E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073812173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:56:52.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:56:52'),
(15565, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A57D5D7B7BF21437DAEEF05BA9971A4A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073968975,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:59:28.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 09:59:29'),
(15566, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A57D5D7B7BF21437DAEEF05BA9971A4A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771073968975,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T09:59:28.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 09:59:29'),
(15567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"34716270989423:92@lid\",\"id\":\"A5FB5CF338858E3C1D604742BA059246\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074067482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:01:07.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:01:07'),
(15568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"34716270989423:92@lid\",\"id\":\"A5FB5CF338858E3C1D604742BA059246\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074067482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:01:07.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:01:08'),
(15569, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:01.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:01'),
(15570, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:01.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:01'),
(15571, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238800819208336@lid\",\"id\":\"A59E78845DA1EEE60763E41ACD56351E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074125205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:05.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:02:05'),
(15572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238800819208336@lid\",\"id\":\"A59E78845DA1EEE60763E41ACD56351E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074125205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:05.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:02:05'),
(15573, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:11.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:11'),
(15574, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:11.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15575, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:13'),
(15576, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:13'),
(15577, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACE73F6EEFC4C27DF0433D852CBEEED1\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Internet perfeita\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L7eoN9ND5ik41ImaI220GrRreYrZIesDxUQc35KWS3M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771074133,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:02:13'),
(15578, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACE73F6EEFC4C27DF0433D852CBEEED1\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Internet perfeita\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"L7eoN9ND5ik41ImaI220GrRreYrZIesDxUQc35KWS3M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771074133,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:02:13'),
(15579, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:13'),
(15580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:13'),
(15581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:13'),
(15582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:13.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:14'),
(15583, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:28.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:29'),
(15584, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:28.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:29'),
(15585, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:29.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:30'),
(15586, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC62988A242C68465D1971AC7897C2A4\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"extendedTextMessage\":{\"text\":\"?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC597E15E87B8A787E1E5952AB417114\",\"participant\":\"554799868459@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Diz, a conta do usuário está incorreta\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GVhncuI0itV\\/odk9OFmaxlbfO8zf3CixpWswMqyP15A=\"}},\"contextInfo\":{\"stanzaId\":\"AC597E15E87B8A787E1E5952AB417114\",\"participant\":\"554799868459@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Diz, a conta do usuário está incorreta\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771074149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:29.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:02:30'),
(15587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:29.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:30'),
(15588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC62988A242C68465D1971AC7897C2A4\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"extendedTextMessage\":{\"text\":\"?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC597E15E87B8A787E1E5952AB417114\",\"participant\":\"554799868459@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Diz, a conta do usuário está incorreta\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GVhncuI0itV\\/odk9OFmaxlbfO8zf3CixpWswMqyP15A=\"}},\"contextInfo\":{\"stanzaId\":\"AC597E15E87B8A787E1E5952AB417114\",\"participant\":\"554799868459@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Diz, a conta do usuário está incorreta\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771074149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:29.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:02:30'),
(15589, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:30.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:30'),
(15590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:30.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:02:30'),
(15591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:30.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:30'),
(15592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:02:30.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:02:30'),
(15593, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:07.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:04:08'),
(15594, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A547274E316938F6478930AB1163C7D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:07.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:04:08'),
(15595, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:07.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:04:08'),
(15596, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:08.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:04:08'),
(15597, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:08.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:04:08'),
(15598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A547274E316938F6478930AB1163C7D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074248104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:08.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:04:09'),
(15599, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A547274E316938F6478930AB1163C7D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074248104,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:08.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:04:09'),
(15600, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A547274E316938F6478930AB1163C7D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:07.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:04:10'),
(15601, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5B4CDC06AF47BD0F6C8930D7A324402\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074279413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:39.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:04:39'),
(15602, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5B4CDC06AF47BD0F6C8930D7A324402\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074279413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:39.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:04:40'),
(15603, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:04:40'),
(15604, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:04:40'),
(15605, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A5F4E161BC149592C670FC61D1B46F2C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"📅 Data inicial: 18\\/11\\n➕ 90 dias\\n\\nNovembro tem 30 dias.\\n\\nDo dia 18\\/11 até 30\\/11 = 12 dias\\n(90 - 12 = 78 dias restantes)\\n\\nDezembro = 31 dias\\n(78 - 31 = 47 dias restantes)\\n\\nJaneiro = 31 dias\\n(47 - 31 = 16 dias restantes)\\n\\nRestam 16 dias em fevereiro.\\n\\n✅ Resultado: 16 de fevereiro (do ano seguinte 2026 no caso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074280,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:04:40'),
(15606, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5F4E161BC149592C670FC61D1B46F2C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074280793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:04:40'),
(15607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:04:40'),
(15608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:04:41'),
(15609, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A5F4E161BC149592C670FC61D1B46F2C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"📅 Data inicial: 18\\/11\\n➕ 90 dias\\n\\nNovembro tem 30 dias.\\n\\nDo dia 18\\/11 até 30\\/11 = 12 dias\\n(90 - 12 = 78 dias restantes)\\n\\nDezembro = 31 dias\\n(78 - 31 = 47 dias restantes)\\n\\nJaneiro = 31 dias\\n(47 - 31 = 16 dias restantes)\\n\\nRestam 16 dias em fevereiro.\\n\\n✅ Resultado: 16 de fevereiro (do ano seguinte 2026 no caso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074280,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:04:41'),
(15610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5F4E161BC149592C670FC61D1B46F2C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074280793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:04:40.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:04:41'),
(15611, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:19.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:05:20'),
(15612, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A538912517CE8AD2BEE299860DED375C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633507333_1587404839245223_581686357235762063_n.enc?ccb=11-4&oh=01_Q5Aa3wE9IM40YM4lXuYY7O5xF4Zj6tXbXV7z_v8YjfFD1j7ekg&oe=69B7F767&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OwmzFMmVatYj+eLR5hiAjbkM061AKjwUfkECIXZMnVU=\",\"fileLength\":\"34995\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"pacXvrI\\/jwWdMM24S3mrgqoz4wr7ku4WhX0M1R3qsuA=\",\"fileEncSha256\":\"yIROLlfBGe+4DbStGxAnCZZiSmI8bzDoyvCYghB3whM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633507333_1587404839245223_581686357235762063_n.enc?ccb=11-4&oh=01_Q5Aa3wE9IM40YM4lXuYY7O5xF4Zj6tXbXV7z_v8YjfFD1j7ekg&oe=69B7F767&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074304\",\"waveform\":\"ABRYVUVJLjZTIR5JRzs9T1ULAgELRDNZU1NOP00EBR5MU0BFUkpMLzAMCg88VkIgYjpOXlNEUy1KRB0SH0VCVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:19.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:05:20'),
(15614, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:19.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:05:20'),
(15615, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:20.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:05:20'),
(15616, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A538912517CE8AD2BEE299860DED375C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633507333_1587404839245223_581686357235762063_n.enc?ccb=11-4&oh=01_Q5Aa3wE9IM40YM4lXuYY7O5xF4Zj6tXbXV7z_v8YjfFD1j7ekg&oe=69B7F767&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OwmzFMmVatYj+eLR5hiAjbkM061AKjwUfkECIXZMnVU=\",\"fileLength\":\"34995\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"pacXvrI\\/jwWdMM24S3mrgqoz4wr7ku4WhX0M1R3qsuA=\",\"fileEncSha256\":\"yIROLlfBGe+4DbStGxAnCZZiSmI8bzDoyvCYghB3whM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633507333_1587404839245223_581686357235762063_n.enc?ccb=11-4&oh=01_Q5Aa3wE9IM40YM4lXuYY7O5xF4Zj6tXbXV7z_v8YjfFD1j7ekg&oe=69B7F767&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074304\",\"waveform\":\"ABRYVUVJLjZTIR5JRzs9T1ULAgELRDNZU1NOP00EBR5MU0BFUkpMLzAMCg88VkIgYjpOXlNEUy1KRB0SH0VCVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:19.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:05:21'),
(15617, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wFe_AaxGu8cpok2HBUSi-Y7VgkHdU9SgQ93g8OLzTFBmQ&oe=699D87B5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:20.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:05:21'),
(15618, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A538912517CE8AD2BEE299860DED375C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074320093,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:20.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:05:21'),
(15619, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:56.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:05:56'),
(15620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:56.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:05:57'),
(15621, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":false,\"id\":\"A53F2635CAA1FD7B8D26C4C293055E9C\"},\"pushName\":\"Cacau (Claudia)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636927827_883606677775436_904708838679795358_n.enc?ccb=11-4&oh=01_Q5Aa3wFvfRWQnVSGfBE3ljVlaLt8Z1ly8-m3FyyoFYhHLdC82g&oe=69B7FCBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"uiP2J8AqNae8nZLb7XOeZpjM79zFbE2ShgVPMeV1tkA=\",\"fileLength\":\"48917\",\"height\":1600,\"width\":350,\"mediaKey\":\"\\/mq0\\/\\/28BJq7DycjsguqG\\/W6X\\/NGUA3PFNIo2w1ymo0=\",\"fileEncSha256\":\"hjw1Ws1+utkRd9lb4VhlEhLstkXwQqXsFDIf\\/SKU9QY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636927827_883606677775436_904708838679795358_n.enc?ccb=11-4&oh=01_Q5Aa3wFvfRWQnVSGfBE3ljVlaLt8Z1ly8-m3FyyoFYhHLdC82g&oe=69B7FCBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074355\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgADwMBIgACEQEDEQH\\/xAAqAAEBAQEBAAAAAAAAAAAAAAABAAIDBQEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9\\/tQTg0gOBObR\\/\\/EACIQAAICAgEDBQAAAAAAAAAAAAECABEDEiEQIoETMTJBcf\\/aAAgBAQABPwAZMiM2qCpibIwtlAnE8xfT7qMBQGUDY1qaUflcQ8klvEqaJZCip3A8sIuWrmyt9Q\\/nS3v2gLXzP\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQIBAT8AP\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQMBAT8AP\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"5A5\\/7lduUu8l7am0EVaTT8zBeqtbIEt35ocvIaA9JAuMT+fCtPPs3g==\",\"scanLengths\":[3651,21731,11034,12501],\"midQualityFileSha256\":\"cGOWqBI30DQdtviq5+uN4S8R9HPLs9CoPQgwlA9jgvk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Be4EF0bN6eGjgUabFBcVevP7D1W3d9RdzMothq8pyoE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771074356,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:56.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:05:57'),
(15622, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:56.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:05:57'),
(15623, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:56.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:05:57'),
(15624, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":false,\"id\":\"A53F2635CAA1FD7B8D26C4C293055E9C\"},\"pushName\":\"Cacau (Claudia)\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636927827_883606677775436_904708838679795358_n.enc?ccb=11-4&oh=01_Q5Aa3wFvfRWQnVSGfBE3ljVlaLt8Z1ly8-m3FyyoFYhHLdC82g&oe=69B7FCBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"uiP2J8AqNae8nZLb7XOeZpjM79zFbE2ShgVPMeV1tkA=\",\"fileLength\":\"48917\",\"height\":1600,\"width\":350,\"mediaKey\":\"\\/mq0\\/\\/28BJq7DycjsguqG\\/W6X\\/NGUA3PFNIo2w1ymo0=\",\"fileEncSha256\":\"hjw1Ws1+utkRd9lb4VhlEhLstkXwQqXsFDIf\\/SKU9QY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636927827_883606677775436_904708838679795358_n.enc?ccb=11-4&oh=01_Q5Aa3wFvfRWQnVSGfBE3ljVlaLt8Z1ly8-m3FyyoFYhHLdC82g&oe=69B7FCBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074355\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgADwMBIgACEQEDEQH\\/xAAqAAEBAQEBAAAAAAAAAAAAAAABAAIDBQEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9\\/tQTg0gOBObR\\/\\/EACIQAAICAgEDBQAAAAAAAAAAAAECABEDEiEQIoETMTJBcf\\/aAAgBAQABPwAZMiM2qCpibIwtlAnE8xfT7qMBQGUDY1qaUflcQ8klvEqaJZCip3A8sIuWrmyt9Q\\/nS3v2gLXzP\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQIBAT8AP\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAACD\\/2gAIAQMBAT8AP\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"5A5\\/7lduUu8l7am0EVaTT8zBeqtbIEt35ocvIaA9JAuMT+fCtPPs3g==\",\"scanLengths\":[3651,21731,11034,12501],\"midQualityFileSha256\":\"cGOWqBI30DQdtviq5+uN4S8R9HPLs9CoPQgwlA9jgvk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Be4EF0bN6eGjgUabFBcVevP7D1W3d9RdzMothq8pyoE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771074356,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:56.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:05:57'),
(15625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"pushName\":\"Cacau (Claudia)\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:57.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:05:58'),
(15626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"pushName\":\"Cacau (Claudia)\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:57.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:05:58'),
(15627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:57.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:05:58'),
(15628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:05:57.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:05:58'),
(15629, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5E695BDDCB49FE1A6C87FD76B968025\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074599281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:09:59.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:09:59'),
(15630, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5A469A032A15B94A6C0FC651B2EFFA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074599268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:09:59.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:09:59'),
(15631, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A53511CCA7AA8D88CA668BE7D1133EB8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074599286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:09:59.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:09:59'),
(15632, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5E695BDDCB49FE1A6C87FD76B968025\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074599281,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:09:59.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:09:59'),
(15633, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A53511CCA7AA8D88CA668BE7D1133EB8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074599286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:09:59.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:09:59'),
(15634, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178614838505579@lid\",\"id\":\"A5A469A032A15B94A6C0FC651B2EFFA3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074599268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:09:59.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:09:59'),
(15635, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A51168B26B9C38494690F306EB6FFCBD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636902032_781192711092521_2740739821902579421_n.enc?ccb=11-4&oh=01_Q5Aa3wEWrLyVR4eIrl27T9KIckpj_hVwO8gcfPU2cezif9y9Ug&oe=69B7D3A1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"56vKIuyx3OGholQCMRSpRcZu\\/W6tX7UlIPbhZgqA5vE=\",\"fileLength\":\"6196\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"KukPzOtImF2a4ONHiVnedhPUxvDBN9BVFWw2x8pIoUc=\",\"fileEncSha256\":\"YgNEY8cQR40gkf2JSZN249586kio1OBpEbxeEtK0aXY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636902032_781192711092521_2740739821902579421_n.enc?ccb=11-4&oh=01_Q5Aa3wEWrLyVR4eIrl27T9KIckpj_hVwO8gcfPU2cezif9y9Ug&oe=69B7D3A1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074612\",\"waveform\":\"ABESCQYiEhMOAARCV1dWVlZUTktcW1lYV0daY19UOypDYWBJSU1ORCsvOkJBTVBSU1JIRU5aVlFXUT4tRD9GXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074613,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:13.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:10:13'),
(15636, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:13.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:10:13'),
(15637, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:13.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:10:14'),
(15638, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A51168B26B9C38494690F306EB6FFCBD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636902032_781192711092521_2740739821902579421_n.enc?ccb=11-4&oh=01_Q5Aa3wEWrLyVR4eIrl27T9KIckpj_hVwO8gcfPU2cezif9y9Ug&oe=69B7D3A1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"56vKIuyx3OGholQCMRSpRcZu\\/W6tX7UlIPbhZgqA5vE=\",\"fileLength\":\"6196\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"KukPzOtImF2a4ONHiVnedhPUxvDBN9BVFWw2x8pIoUc=\",\"fileEncSha256\":\"YgNEY8cQR40gkf2JSZN249586kio1OBpEbxeEtK0aXY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636902032_781192711092521_2740739821902579421_n.enc?ccb=11-4&oh=01_Q5Aa3wEWrLyVR4eIrl27T9KIckpj_hVwO8gcfPU2cezif9y9Ug&oe=69B7D3A1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074612\",\"waveform\":\"ABESCQYiEhMOAARCV1dWVlZUTktcW1lYV0daY19UOypDYWBJSU1ORCsvOkJBTVBSU1JIRU5aVlFXUT4tRD9GXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074613,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:13.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:10:14'),
(15639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:13.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:10:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:13.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:10:14'),
(15641, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A51168B26B9C38494690F306EB6FFCBD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074615137,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:15.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:10:15'),
(15642, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A51168B26B9C38494690F306EB6FFCBD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074615137,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:15.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:10:15'),
(15643, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:40.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:10:40'),
(15644, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:40.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:10:40'),
(15645, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A51168B26B9C38494690F306EB6FFCBD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074659048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:59.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:10:59'),
(15646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A51168B26B9C38494690F306EB6FFCBD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074659048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:10:59.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:10:59'),
(15647, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A51168B26B9C38494690F306EB6FFCBD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074660927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:00.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:00'),
(15648, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A51168B26B9C38494690F306EB6FFCBD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074660927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:00.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:01'),
(15649, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:07.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:07'),
(15650, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:07.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:07'),
(15651, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:17.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:17'),
(15652, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:17.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:17'),
(15653, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:17.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:17'),
(15654, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:17.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:17'),
(15655, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACA41C83A9BD164969B2C40F15FBAD02\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35012405_1634914937874772_8966162672763497098_n.enc?ccb=11-4&oh=01_Q5Aa3wHsNChnOjrE3xmQgpL2IQCHokSstqC1IwQVQzUHLqjxYw&oe=69B7F720&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yw5JC+mbInBnoMJnNPgl3j6Su7SRWJjdGKt\\/2DVQMtc=\",\"fileLength\":\"24171\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"e6ivmzz2RIt\\/piSWJrOj4OBjxosmVyOhGgSfvW4V3X0=\",\"fileEncSha256\":\"E99Oh6DJp1ZKsG6eRSH6QuxnsFUOwTrsepRM6fSjzt8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35012405_1634914937874772_8966162672763497098_n.enc?ccb=11-4&oh=01_Q5Aa3wHsNChnOjrE3xmQgpL2IQCHokSstqC1IwQVQzUHLqjxYw&oe=69B7F720&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074668\",\"waveform\":\"ACAjHlVTMy08RDw6UEYtFyIMDg0qPjNPLTYlMkRDJh1BTjtNTDIYGhQYGhwcJRA+PTs0MzYPFBwwFSg9IR8HGg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tpCvl1aA8S\\/V0TCOLkDvbiZ3i7DXdapi7nG7VqrBUGE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074678,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:18'),
(15656, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:18'),
(15657, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:18'),
(15658, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACA41C83A9BD164969B2C40F15FBAD02\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35012405_1634914937874772_8966162672763497098_n.enc?ccb=11-4&oh=01_Q5Aa3wHsNChnOjrE3xmQgpL2IQCHokSstqC1IwQVQzUHLqjxYw&oe=69B7F720&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yw5JC+mbInBnoMJnNPgl3j6Su7SRWJjdGKt\\/2DVQMtc=\",\"fileLength\":\"24171\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"e6ivmzz2RIt\\/piSWJrOj4OBjxosmVyOhGgSfvW4V3X0=\",\"fileEncSha256\":\"E99Oh6DJp1ZKsG6eRSH6QuxnsFUOwTrsepRM6fSjzt8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35012405_1634914937874772_8966162672763497098_n.enc?ccb=11-4&oh=01_Q5Aa3wHsNChnOjrE3xmQgpL2IQCHokSstqC1IwQVQzUHLqjxYw&oe=69B7F720&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074668\",\"waveform\":\"ACAjHlVTMy08RDw6UEYtFyIMDg0qPjNPLTYlMkRDJh1BTjtNTDIYGhQYGhwcJRA+PTs0MzYPFBwwFSg9IR8HGg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tpCvl1aA8S\\/V0TCOLkDvbiZ3i7DXdapi7nG7VqrBUGE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074678,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:18'),
(15659, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:18'),
(15660, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:19'),
(15661, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:19'),
(15662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:18.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:19'),
(15663, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:25.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:25'),
(15664, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:25.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:25'),
(15665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":true,\"id\":\"A5EDC883FC7A4FEA240FE42B4674C848\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:25.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:25'),
(15666, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:25.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:25'),
(15667, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":true,\"id\":\"A5EDC883FC7A4FEA240FE42B4674C848\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:25.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:25'),
(15668, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:25.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:26'),
(15669, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":true,\"id\":\"A59D9AD56F6F896B3E089153A7F586B5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771074685905\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771074686,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:26.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:26'),
(15670, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:26.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:26'),
(15671, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:26.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:27'),
(15672, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":true,\"id\":\"A59D9AD56F6F896B3E089153A7F586B5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771074685905\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771074686,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:26.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:27'),
(15673, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:27.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:27'),
(15674, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:27.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:27'),
(15675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5EDC883FC7A4FEA240FE42B4674C848\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074688376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:28.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:28'),
(15676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A59D9AD56F6F896B3E089153A7F586B5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074688470,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:28.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:28'),
(15677, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5EDC883FC7A4FEA240FE42B4674C848\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074688376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:28.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:28'),
(15678, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A59D9AD56F6F896B3E089153A7F586B5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074688470,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:28.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:28'),
(15679, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5B2C2548E8226670093B0F73731B74D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/627355659_1262571762427138_1540613433241023148_n.enc?ccb=11-4&oh=01_Q5Aa3wFY2Ysk3ojG_ih9mRwyH2trKe1btu05L8N5PPAej0dDbQ&oe=69B7F6DD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FiKM7OD+Uf+KcQVgRkehVZ71uOujBL8gPmXBhY6SHJY=\",\"fileLength\":\"5290\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"Yav73X4rhyYucnc2yp2mbwz1zULtR7DmY6u+c+A9n40=\",\"fileEncSha256\":\"CEIywTekwRANjKJK+aK\\/CJJA3mwdaN7in5hlsCNvH4s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/627355659_1262571762427138_1540613433241023148_n.enc?ccb=11-4&oh=01_Q5Aa3wFY2Ysk3ojG_ih9mRwyH2trKe1btu05L8N5PPAej0dDbQ&oe=69B7F6DD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074697\",\"waveform\":\"AAERLkVVXl9hY2NjYlxdYmJdV1peYmJFKU5QQjhGWFhPRUVSX19dVT9JVVVVVFRYWlU8Kyw+TVVWSCsZIUhFQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074698,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:38'),
(15680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5B2C2548E8226670093B0F73731B74D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/627355659_1262571762427138_1540613433241023148_n.enc?ccb=11-4&oh=01_Q5Aa3wFY2Ysk3ojG_ih9mRwyH2trKe1btu05L8N5PPAej0dDbQ&oe=69B7F6DD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FiKM7OD+Uf+KcQVgRkehVZ71uOujBL8gPmXBhY6SHJY=\",\"fileLength\":\"5290\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"Yav73X4rhyYucnc2yp2mbwz1zULtR7DmY6u+c+A9n40=\",\"fileEncSha256\":\"CEIywTekwRANjKJK+aK\\/CJJA3mwdaN7in5hlsCNvH4s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/627355659_1262571762427138_1540613433241023148_n.enc?ccb=11-4&oh=01_Q5Aa3wFY2Ysk3ojG_ih9mRwyH2trKe1btu05L8N5PPAej0dDbQ&oe=69B7F6DD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074697\",\"waveform\":\"AAERLkVVXl9hY2NjYlxdYmJdV1peYmJFKU5QQjhGWFhPRUVSX19dVT9JVVVVVFRYWlU8Kyw+TVVWSCsZIUhFQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074698,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:38'),
(15681, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:38'),
(15682, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B2C2548E8226670093B0F73731B74D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074698901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:38'),
(15683, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:39'),
(15684, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B2C2548E8226670093B0F73731B74D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074698901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:39'),
(15685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:11:39'),
(15686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:38.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:11:39'),
(15687, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F86F07A66D5572E93CBF218983589D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074711325,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:51.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:51'),
(15688, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F86F07A66D5572E93CBF218983589D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074711325,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:51.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:51'),
(15689, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F86F07A66D5572E93CBF218983589D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074712616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:52.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:11:52'),
(15690, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F86F07A66D5572E93CBF218983589D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074712616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:11:52.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:11:52'),
(15691, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B2C2548E8226670093B0F73731B74D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074786135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:13:06.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:13:06'),
(15692, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B2C2548E8226670093B0F73731B74D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074786135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:13:06.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:13:06'),
(15693, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B2C2548E8226670093B0F73731B74D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074786782,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:13:06.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:13:07'),
(15694, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B2C2548E8226670093B0F73731B74D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074786782,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:13:06.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:13:07'),
(15695, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5A265F3D7B16890223584993DD55E57\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11237731_25995581876741915_4044777766868918883_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ8MJocP63VvZgk5ZcTBLEB5rDXKPu1xJI6Jveenf1AA&oe=69B7FE63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YveEO6hqbAezwZsRk8OYXluMs8owMsByvB3hULcjiy4=\",\"fileLength\":\"33032\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"xov6ICmiAH3l9r77SJ\\/24q3jNG3fHze0amhk93dHO1U=\",\"fileEncSha256\":\"hfuue7scA3njPI9q21JrGeOJHfxPpp4n+kI8ulovXuY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11237731_25995581876741915_4044777766868918883_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ8MJocP63VvZgk5ZcTBLEB5rDXKPu1xJI6Jveenf1AA&oe=69B7FE63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074910\",\"waveform\":\"ACpfS0tZUzdOHFNXUVtdSV06STNVUyNVSFRCT0w6BAAlW1pJETE6R1dfJl5ZWFRPSBszW1A+Jj8CBgJcLGI7Tw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:23'),
(15696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:15:23'),
(15697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:15:23'),
(15698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:15:23'),
(15699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:15:23'),
(15700, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5A265F3D7B16890223584993DD55E57\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11237731_25995581876741915_4044777766868918883_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ8MJocP63VvZgk5ZcTBLEB5rDXKPu1xJI6Jveenf1AA&oe=69B7FE63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YveEO6hqbAezwZsRk8OYXluMs8owMsByvB3hULcjiy4=\",\"fileLength\":\"33032\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"xov6ICmiAH3l9r77SJ\\/24q3jNG3fHze0amhk93dHO1U=\",\"fileEncSha256\":\"hfuue7scA3njPI9q21JrGeOJHfxPpp4n+kI8ulovXuY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11237731_25995581876741915_4044777766868918883_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ8MJocP63VvZgk5ZcTBLEB5rDXKPu1xJI6Jveenf1AA&oe=69B7FE63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074910\",\"waveform\":\"ACpfS0tZUzdOHFNXUVtdSV06STNVUyNVSFRCT0w6BAAlW1pJETE6R1dfJl5ZWFRPSBszW1A+Jj8CBgJcLGI7Tw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771074923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:24'),
(15701, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A265F3D7B16890223584993DD55E57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074923705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:24'),
(15702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A265F3D7B16890223584993DD55E57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074923705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:23.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:25'),
(15703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A265F3D7B16890223584993DD55E57\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074928176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:28.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:28'),
(15704, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A265F3D7B16890223584993DD55E57\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074928176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:28.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:28'),
(15705, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:30.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:15:30'),
(15706, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5CA860CD14B3D48A5C273C40447FE01\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:30.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:30'),
(15707, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:30.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:15:30'),
(15708, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5CA860CD14B3D48A5C273C40447FE01\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:30.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:30'),
(15709, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:30.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:15:30');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15710, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:31.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:15:31'),
(15711, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5BADEAF6B11E777C0A052B76C8B1BE1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Show\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:31.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:31'),
(15712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:30.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:15:31'),
(15713, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:31.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:15:31'),
(15714, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5BADEAF6B11E777C0A052B76C8B1BE1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Show\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771074931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:31.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:31'),
(15715, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:32.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:15:32'),
(15716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:32.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:15:32'),
(15717, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A265F3D7B16890223584993DD55E57\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074932953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:32.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:33'),
(15718, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5A265F3D7B16890223584993DD55E57\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771074932953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:32.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:33'),
(15719, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5CA860CD14B3D48A5C273C40447FE01\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074936478,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:36.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:36'),
(15720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5BADEAF6B11E777C0A052B76C8B1BE1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074936575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:36.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:15:36'),
(15721, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5CA860CD14B3D48A5C273C40447FE01\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074936478,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:36.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:36'),
(15722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5BADEAF6B11E777C0A052B76C8B1BE1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771074936575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:15:36.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:15:36'),
(15723, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:04'),
(15724, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"4A73259B0C539086A368\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQOPGTh3Q62szkSSuRcdfAcPlVWxdDVzTrX2NKyL7Ia8NT4XhZKPrnwEcJylUEcrm3XaxsUqHMoPACtgsIO9frp9_Cj82xUNAOTk--tTPg?ccb=9-4&oh=01_Q5Aa3wEC42Qdpe3P5V9pLyuClusaM3uHHGx-oCrXWZZovW0YGg&oe=69B7FFA6&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"vT75wZfzfUZ+hRxFyeFQBosVstcc2fID1KS6Ss\\/a3R4=\",\"fileLength\":\"67584\",\"height\":1280,\"width\":698,\"mediaKey\":\"kUR2tA8UBBCeZMvt44BG4iTAcAkkalFsmqmjjT+5cL0=\",\"fileEncSha256\":\"i9v9taa1z85WBQfZVDUVRyKR1FgPQfXl34gJGma8Mpw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQOPGTh3Q62szkSSuRcdfAcPlVWxdDVzTrX2NKyL7Ia8NT4XhZKPrnwEcJylUEcrm3XaxsUqHMoPACtgsIO9frp9_Cj82xUNAOTk--tTPg?ccb=9-4&oh=01_Q5Aa3wEC42Qdpe3P5V9pLyuClusaM3uHHGx-oCrXWZZovW0YGg&oe=69B7FFA6&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771074962\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACcDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPtezh0rYgDjvnTpVAONQu1KDilK0NMjkDWgA\\/\\/EABURAQEAAAAAAAAAAAAAAAAAAAEw\\/9oACAECAQE\\/AG\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AH\\/\\/xAAlEAACAgEBCAMBAAAAAAAAAAABAgAREkEDBBATITFRUiAiYUL\\/2gAIAQEAAT8Abf1XfRu2DWf60+LHZjaZYrkNYrluoAr4cu2a0UjSKCooAAT7eBBevAhgxpqgzrq9QGxxO0pyCtzmr6mc0epinIXVcGZcu\\/WWhNZQCteLD7GdPXrLHiBgD2gIPaF1s2DFdb7TIHQS\\/wAmX5CDfaAHxAT4rj\\/\\/\\/gADAP\\/Z\",\"scansSidecar\":\"7rVZAjnRz6qPliJC5hkgjiVYPP43WgmlrHX\\/tCvcJWdBhU8ZnQkWGg==\",\"scanLengths\":[5052,28996,13297,20237],\"midQualityFileSha256\":\"u0crI7BDKf2bvUvdrL5FT3fH6BA1QvB3JG+\\/qRfzm+M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1visv+1iH+8y7oU8Vv25gGODYeknIss8daMWXR1VPoE=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771074964,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:04'),
(15725, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:04'),
(15726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:05'),
(15727, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"4A73259B0C539086A368\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQOPGTh3Q62szkSSuRcdfAcPlVWxdDVzTrX2NKyL7Ia8NT4XhZKPrnwEcJylUEcrm3XaxsUqHMoPACtgsIO9frp9_Cj82xUNAOTk--tTPg?ccb=9-4&oh=01_Q5Aa3wEC42Qdpe3P5V9pLyuClusaM3uHHGx-oCrXWZZovW0YGg&oe=69B7FFA6&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"vT75wZfzfUZ+hRxFyeFQBosVstcc2fID1KS6Ss\\/a3R4=\",\"fileLength\":\"67584\",\"height\":1280,\"width\":698,\"mediaKey\":\"kUR2tA8UBBCeZMvt44BG4iTAcAkkalFsmqmjjT+5cL0=\",\"fileEncSha256\":\"i9v9taa1z85WBQfZVDUVRyKR1FgPQfXl34gJGma8Mpw=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQOPGTh3Q62szkSSuRcdfAcPlVWxdDVzTrX2NKyL7Ia8NT4XhZKPrnwEcJylUEcrm3XaxsUqHMoPACtgsIO9frp9_Cj82xUNAOTk--tTPg?ccb=9-4&oh=01_Q5Aa3wEC42Qdpe3P5V9pLyuClusaM3uHHGx-oCrXWZZovW0YGg&oe=69B7FFA6&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771074962\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACcDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPtezh0rYgDjvnTpVAONQu1KDilK0NMjkDWgA\\/\\/EABURAQEAAAAAAAAAAAAAAAAAAAEw\\/9oACAECAQE\\/AG\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AH\\/\\/xAAlEAACAgEBCAMBAAAAAAAAAAABAgAREkEDBBATITFRUiAiYUL\\/2gAIAQEAAT8Abf1XfRu2DWf60+LHZjaZYrkNYrluoAr4cu2a0UjSKCooAAT7eBBevAhgxpqgzrq9QGxxO0pyCtzmr6mc0epinIXVcGZcu\\/WWhNZQCteLD7GdPXrLHiBgD2gIPaF1s2DFdb7TIHQS\\/wAmX5CDfaAHxAT4rj\\/\\/\\/gADAP\\/Z\",\"scansSidecar\":\"7rVZAjnRz6qPliJC5hkgjiVYPP43WgmlrHX\\/tCvcJWdBhU8ZnQkWGg==\",\"scanLengths\":[5052,28996,13297,20237],\"midQualityFileSha256\":\"u0crI7BDKf2bvUvdrL5FT3fH6BA1QvB3JG+\\/qRfzm+M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1visv+1iH+8y7oU8Vv25gGODYeknIss8daMWXR1VPoE=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771074964,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:05'),
(15728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:05'),
(15729, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:05'),
(15730, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:04.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:05'),
(15731, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:11.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:11'),
(15732, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:11.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:11'),
(15733, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:14.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:14'),
(15734, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:14.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:14'),
(15735, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:15.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:15'),
(15736, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:15.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:16'),
(15737, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5CA860CD14B3D48A5C273C40447FE01\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074983961,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:23.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:24'),
(15738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5BADEAF6B11E777C0A052B76C8B1BE1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074983956,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:23.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:24'),
(15739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5CA860CD14B3D48A5C273C40447FE01\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074983961,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:23.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:24'),
(15740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5BADEAF6B11E777C0A052B76C8B1BE1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771074983956,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:23.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:24'),
(15741, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:24.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:25'),
(15742, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:24.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:25'),
(15743, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:25.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:25'),
(15744, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:25.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:25'),
(15745, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:29.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:29'),
(15746, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:29.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:30'),
(15747, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:36.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:37'),
(15748, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:36.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:37'),
(15749, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:37.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:37'),
(15750, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:37.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:37'),
(15751, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:39.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:39'),
(15752, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:39.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:39'),
(15753, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:39.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:40'),
(15754, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:39.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:40'),
(15755, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:42'),
(15756, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:42'),
(15757, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3A10180D0548FA76E5A3\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Johnny fiz dia 29\\/12 3 meses\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LJkwXp0+sbhv+gCJaz9NVg\\/s+cPiOhVNXZIcyzVYpCg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771075002,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:42'),
(15758, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:42'),
(15759, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3A10180D0548FA76E5A3\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Johnny fiz dia 29\\/12 3 meses\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LJkwXp0+sbhv+gCJaz9NVg\\/s+cPiOhVNXZIcyzVYpCg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771075002,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:42'),
(15760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:43'),
(15761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:43'),
(15762, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:43.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:43'),
(15763, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:42.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:43'),
(15764, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:43.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:43'),
(15765, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:47.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:47'),
(15766, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:47.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:47'),
(15767, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:49.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:49'),
(15768, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:49.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:49'),
(15769, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:49.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:49'),
(15770, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:49.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:49'),
(15771, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:50.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:50'),
(15772, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:50.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:50'),
(15773, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:52.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:53'),
(15774, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"presences\":{\"208580858916881@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:52.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:53'),
(15775, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:53'),
(15776, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:53'),
(15777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:53'),
(15778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:54.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:54'),
(15779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:54'),
(15780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:54.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:54'),
(15781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:54'),
(15782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:54.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:54'),
(15783, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:54'),
(15784, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:55.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:55'),
(15785, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:55.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:55'),
(15786, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:55'),
(15787, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:54.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:55');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15788, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:55'),
(15789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:56'),
(15790, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:56'),
(15791, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:56'),
(15792, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3A0573FB41608388BF73\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Para vender\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"I6IgJPS1XflmPXpkLIewJVRaYlY3EzyqFztSEU5QZpI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771075016,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:56'),
(15793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:56'),
(15794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:57'),
(15795, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A520B6F9121B338CF9B5895D99DF3337\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075017085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:57'),
(15796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:57'),
(15797, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A520B6F9121B338CF9B5895D99DF3337\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075017085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:57'),
(15798, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:57'),
(15799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:58'),
(15800, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:16:58'),
(15801, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC225BE8403B9E6520CBE0E3DC15A906\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636681769_1832417554139297_5524744610041850761_n.enc?ccb=11-4&oh=01_Q5Aa3wFBG63hbx61SlfyvkV-9lAwyiZlFg7EetA1_68XgvfPkg&oe=69B7EE31&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1t1xm\\/JU6zQEYrqCvdCbKoZy56534ZOcZE297akSP7Q=\",\"fileLength\":\"29676\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"bdkBfSovb68Y\\/\\/Bl6hHv3YrwddzmjJ5ucEmJ2W3YCj4=\",\"fileEncSha256\":\"HzWm4s1HtBBRpQGXzxT2mkz0G6S7M+va2S\\/1m\\/yZ42w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636681769_1832417554139297_5524744610041850761_n.enc?ccb=11-4&oh=01_Q5Aa3wFBG63hbx61SlfyvkV-9lAwyiZlFg7EetA1_68XgvfPkg&oe=69B7EE31&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075001\",\"waveform\":\"AAAAGFZQQE40WUgjVFtPUUVJR1hHSAAAAEVRSEBKPj08MxgxORUNAAYAPD1BNS4EEQIAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"g2+wpKkKO917LJqBZWLGTVglpM2W7IhvPzevWgXW39g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:55.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:58'),
(15802, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A520B6F9121B338CF9B5895D99DF3337\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771075015685\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075016,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:58'),
(15803, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:58'),
(15804, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A520B6F9121B338CF9B5895D99DF3337\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771075015685\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075016,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:59'),
(15805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:59'),
(15806, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"AC225BE8403B9E6520CBE0E3DC15A906\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636681769_1832417554139297_5524744610041850761_n.enc?ccb=11-4&oh=01_Q5Aa3wFBG63hbx61SlfyvkV-9lAwyiZlFg7EetA1_68XgvfPkg&oe=69B7EE31&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1t1xm\\/JU6zQEYrqCvdCbKoZy56534ZOcZE297akSP7Q=\",\"fileLength\":\"29676\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"bdkBfSovb68Y\\/\\/Bl6hHv3YrwddzmjJ5ucEmJ2W3YCj4=\",\"fileEncSha256\":\"HzWm4s1HtBBRpQGXzxT2mkz0G6S7M+va2S\\/1m\\/yZ42w=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636681769_1832417554139297_5524744610041850761_n.enc?ccb=11-4&oh=01_Q5Aa3wFBG63hbx61SlfyvkV-9lAwyiZlFg7EetA1_68XgvfPkg&oe=69B7EE31&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075001\",\"waveform\":\"AAAAGFZQQE40WUgjVFtPUUVJR1hHSAAAAEVRSEBKPj08MxgxORUNAAYAPD1BNS4EEQIAAAAAAAAAAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"g2+wpKkKO917LJqBZWLGTVglpM2W7IhvPzevWgXW39g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075015,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:55.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:16:59'),
(15807, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:16:59'),
(15808, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5A2C11B4B39A62EE0C652E04B521E71\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075017662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:16:59'),
(15809, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5A2C11B4B39A62EE0C652E04B521E71\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075017662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:00'),
(15810, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3AE3B8602BF2E8055296\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Não é só 29\\/03\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2GYIGw6ASUzK8O6oRSqVg6WfKd2kXH1wc7dOTuGZ2Ag=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771075013,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:00'),
(15811, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:55.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:00'),
(15812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:00'),
(15813, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3A0573FB41608388BF73\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Para vender\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"I6IgJPS1XflmPXpkLIewJVRaYlY3EzyqFztSEU5QZpI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771075016,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:00'),
(15814, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:55.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:01'),
(15815, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3AE3B8602BF2E8055296\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Não é só 29\\/03\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2GYIGw6ASUzK8O6oRSqVg6WfKd2kXH1wc7dOTuGZ2Ag=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771075013,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:01'),
(15816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:01'),
(15817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:01'),
(15818, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":false,\"id\":\"AC1083DD1729135D7E4E43A65A8D4196\"},\"pushName\":\"Mauricio Brisola\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636333555_897179959694850_8459721724492134481_n.enc?ccb=11-4&oh=01_Q5Aa3wHRjoh-U3fxFMxt2_BjSIl2vYgrbi_26Rb9GZoeovRP-Q&oe=69B7E200&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"5uPd6\\/4E8r+cuC\\/4TYyp1mddATUbQeF9wRb0iGiLh3g=\",\"fileLength\":\"53930\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"1ytSqqzNGuTVQmurJZtrMEpug46H4sXCSUpyeMGFMNo=\",\"fileEncSha256\":\"k29YARb7XTTHAWewNsGyUvLJlDqpofzwQN54Tj65r7I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636333555_897179959694850_8459721724492134481_n.enc?ccb=11-4&oh=01_Q5Aa3wHRjoh-U3fxFMxt2_BjSIl2vYgrbi_26Rb9GZoeovRP-Q&oe=69B7E200&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074991\",\"waveform\":\"AGEUUV4xQ01eVScVKFslUUwQRkMtV1Y5YFlWT0NMNSsOR09XR1Q3T1EZAAQYQTszXzEACAZYPU09P04kKgBbAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EhD96hwgGpCc4xTjyHbAhzUJ2JHwrlpOz2UWkb+7gqE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075013,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:01'),
(15819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"68904210669749@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/587841812_882512691372204_1563450658575431625_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCmODk4uJOBmnjjTXtbYY0wbs1tpFKmHTWMw93-1l7-A&oe=699DA029&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:02'),
(15820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:56.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:02'),
(15821, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":false,\"id\":\"AC1083DD1729135D7E4E43A65A8D4196\"},\"pushName\":\"Mauricio Brisola\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636333555_897179959694850_8459721724492134481_n.enc?ccb=11-4&oh=01_Q5Aa3wHRjoh-U3fxFMxt2_BjSIl2vYgrbi_26Rb9GZoeovRP-Q&oe=69B7E200&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"5uPd6\\/4E8r+cuC\\/4TYyp1mddATUbQeF9wRb0iGiLh3g=\",\"fileLength\":\"53930\",\"seconds\":23,\"ptt\":true,\"mediaKey\":\"1ytSqqzNGuTVQmurJZtrMEpug46H4sXCSUpyeMGFMNo=\",\"fileEncSha256\":\"k29YARb7XTTHAWewNsGyUvLJlDqpofzwQN54Tj65r7I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636333555_897179959694850_8459721724492134481_n.enc?ccb=11-4&oh=01_Q5Aa3wHRjoh-U3fxFMxt2_BjSIl2vYgrbi_26Rb9GZoeovRP-Q&oe=69B7E200&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771074991\",\"waveform\":\"AGEUUV4xQ01eVScVKFslUUwQRkMtV1Y5YFlWT0NMNSsOR09XR1Q3T1EZAAQYQTszXzEACAZYPU09P04kKgBbAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EhD96hwgGpCc4xTjyHbAhzUJ2JHwrlpOz2UWkb+7gqE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075013,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:53.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:02'),
(15822, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:54.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:02'),
(15823, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5A2C11B4B39A62EE0C652E04B521E71\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771075016669\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075017,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:02'),
(15824, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:54.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:03'),
(15825, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"68904210669749@lid\",\"fromMe\":true,\"id\":\"A5A2C11B4B39A62EE0C652E04B521E71\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"A4mEdwhlux7Wcp72yyjesHUs0ph3dsLU2pNR316rkPM=\",\"mediaKey\":\"H3QsjOcE0q4DkHwNP8OmTSFLHLBZz2kFjywFcxDFzRE=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/31813862_1667225604431456_629086286819304357_n.enc?ccb=11-4&oh=01_Q5Aa3wHuK6TV3z7pmBQ9w3fWOlo5SexGh4wp8FaLJFBY7fjeOA&oe=69B7DDE8&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1770849291\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"lVcA9v\\/JqKOWFg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771075016669\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075017,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:03'),
(15826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:03.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:03'),
(15827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:03.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:03'),
(15828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"68904210669749@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:16:57.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:03'),
(15829, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5A2C11B4B39A62EE0C652E04B521E71\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075026055,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:06.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:06'),
(15830, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A520B6F9121B338CF9B5895D99DF3337\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075026057,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:06.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:06'),
(15831, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A5A2C11B4B39A62EE0C652E04B521E71\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075026055,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:06.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:06'),
(15832, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"68904210669749@lid\",\"id\":\"A520B6F9121B338CF9B5895D99DF3337\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075026057,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:06.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:06'),
(15833, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:18.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:18'),
(15834, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:18.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:18'),
(15835, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:28.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:28'),
(15836, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:28.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:29'),
(15837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:33'),
(15838, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208580858916881@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:33'),
(15839, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":true,\"id\":\"A5573947D753AC285DA03897C09D9328\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595895725_1985169005428387_3550550138196411997_n.enc?ccb=11-4&oh=01_Q5Aa3wFMphnMZJYvTeEF4wFMEF2VVfIaRlz5ihODPLXgE8e9FA&oe=69B7F1CF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wSmwvGBBT9+9lsb+yita+YeHw192Idn+sdPy+5ydK7U=\",\"fileLength\":\"5132\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"eQ4ERqQnDYnzYRdoSWkxu0k2kHd2HQsmN9vFCPQT\\/uk=\",\"fileEncSha256\":\"kvsc3vzSfVRopdgYUdv\\/ofjjjZT\\/BtblNrKI5c9v7YU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595895725_1985169005428387_3550550138196411997_n.enc?ccb=11-4&oh=01_Q5Aa3wFMphnMZJYvTeEF4wFMEF2VVfIaRlz5ihODPLXgE8e9FA&oe=69B7F1CF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075052\",\"waveform\":\"ADtbXFlZXFlXWVpWTTYpQVBYU1BMPEVYXl9dVlNUXF1YTDURERkoHiVNU0s1Q1NTUlJST0xMT1RUVFRVTT4pHw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075053,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:33'),
(15840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:33'),
(15841, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208580858916881@lid\",\"fromMe\":true,\"id\":\"A5573947D753AC285DA03897C09D9328\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595895725_1985169005428387_3550550138196411997_n.enc?ccb=11-4&oh=01_Q5Aa3wFMphnMZJYvTeEF4wFMEF2VVfIaRlz5ihODPLXgE8e9FA&oe=69B7F1CF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wSmwvGBBT9+9lsb+yita+YeHw192Idn+sdPy+5ydK7U=\",\"fileLength\":\"5132\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"eQ4ERqQnDYnzYRdoSWkxu0k2kHd2HQsmN9vFCPQT\\/uk=\",\"fileEncSha256\":\"kvsc3vzSfVRopdgYUdv\\/ofjjjZT\\/BtblNrKI5c9v7YU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595895725_1985169005428387_3550550138196411997_n.enc?ccb=11-4&oh=01_Q5Aa3wFMphnMZJYvTeEF4wFMEF2VVfIaRlz5ihODPLXgE8e9FA&oe=69B7F1CF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075052\",\"waveform\":\"ADtbXFlZXFlXWVpWTTYpQVBYU1BMPEVYXl9dVlNUXF1YTDURERkoHiVNU0s1Q1NTUlJST0xMT1RUVFRVTT4pHw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075053,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:33'),
(15842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208580858916881@lid\",\"id\":\"A5573947D753AC285DA03897C09D9328\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075053616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:34'),
(15843, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208580858916881@lid\",\"pushName\":\"Mauricio Brisola\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/390703916_661086809565261_5201968605645842859_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_O9O_K6r7ARB70UJiHR0csKe3h7oq0Mm59AlYjuWSMQ&oe=699D86BA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:34'),
(15844, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208580858916881@lid\",\"id\":\"A5573947D753AC285DA03897C09D9328\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075053616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:33.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:34'),
(15845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:38'),
(15846, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":false,\"id\":\"AC8D178FAB405864BB8F2D85A62B16E5\"},\"pushName\":\"Lucas Ortolan\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPAV0zAyDR4IYyQDUtqM1rpgk1g1ElVD-JqkSamtyj-vp99XdzkzUyoaXJF0BMi4fpGmqm3yoKI0--OZtMs4xCLJN77lB-salbM-04Gfg?ccb=9-4&oh=01_Q5Aa3wEcsanUg6NBZvWcuJgcoID8RwwwaBMup_UNDc5yY3lPRw&oe=69B7E21B&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"heFxramuIQuJ+xRjiOUmz0D8G84qoAJjA6OrblWdeZY=\",\"fileLength\":\"22781\",\"height\":1030,\"width\":270,\"mediaKey\":\"LH8KG8Cxd\\/\\/OOTXIxgtU+ACYP+PfoNnQ5ChO3YAom28=\",\"fileEncSha256\":\"A5jURIf7SXBisX3wIdRb7dhRLCYqKcKDs3NR6K39JAU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPAV0zAyDR4IYyQDUtqM1rpgk1g1ElVD-JqkSamtyj-vp99XdzkzUyoaXJF0BMi4fpGmqm3yoKI0--OZtMs4xCLJN77lB-salbM-04Gfg?ccb=9-4&oh=01_Q5Aa3wEcsanUg6NBZvWcuJgcoID8RwwwaBMup_UNDc5yY3lPRw&oe=69B7E21B&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771075056\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAAEAMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAQIGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADpKpAAYZp\\/\\/8QAHhAAAgIBBQEAAAAAAAAAAAAAAQIAERIDECEjQWH\\/2gAIAQEAAT8AUMt4C4H1hjkqgewV5CAYmKsVC1A4LEbUIAAT9jqzVRndm4vjydgHJuZGZGXzW3\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ty5AJwrYjXtMG4BTe3hFw0HO5P\\/AOdcXnpDjMhIGqGkrbO9pUqFppQ==\",\"scanLengths\":[1613,8905,5805,6458],\"midQualityFileSha256\":\"GxjTJ0mPm9wT6\\/c\\/czq1PTFnsjndNlpbg5vB7OFVGV8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HuQasA\\/dWWQFYFrqhcHzHv1CUjombTremqsp+c9erts=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771075057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:17:38'),
(15847, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15848, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":false,\"id\":\"AC8D178FAB405864BB8F2D85A62B16E5\"},\"pushName\":\"Lucas Ortolan\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPAV0zAyDR4IYyQDUtqM1rpgk1g1ElVD-JqkSamtyj-vp99XdzkzUyoaXJF0BMi4fpGmqm3yoKI0--OZtMs4xCLJN77lB-salbM-04Gfg?ccb=9-4&oh=01_Q5Aa3wEcsanUg6NBZvWcuJgcoID8RwwwaBMup_UNDc5yY3lPRw&oe=69B7E21B&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"heFxramuIQuJ+xRjiOUmz0D8G84qoAJjA6OrblWdeZY=\",\"fileLength\":\"22781\",\"height\":1030,\"width\":270,\"mediaKey\":\"LH8KG8Cxd\\/\\/OOTXIxgtU+ACYP+PfoNnQ5ChO3YAom28=\",\"fileEncSha256\":\"A5jURIf7SXBisX3wIdRb7dhRLCYqKcKDs3NR6K39JAU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPAV0zAyDR4IYyQDUtqM1rpgk1g1ElVD-JqkSamtyj-vp99XdzkzUyoaXJF0BMi4fpGmqm3yoKI0--OZtMs4xCLJN77lB-salbM-04Gfg?ccb=9-4&oh=01_Q5Aa3wEcsanUg6NBZvWcuJgcoID8RwwwaBMup_UNDc5yY3lPRw&oe=69B7E21B&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771075056\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAAEAMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAQIGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADpKpAAYZp\\/\\/8QAHhAAAgIBBQEAAAAAAAAAAAAAAQIAERIDECEjQWH\\/2gAIAQEAAT8AUMt4C4H1hjkqgewV5CAYmKsVC1A4LEbUIAAT9jqzVRndm4vjydgHJuZGZGXzW3\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Ty5AJwrYjXtMG4BTe3hFw0HO5P\\/AOdcXnpDjMhIGqGkrbO9pUqFppQ==\",\"scanLengths\":[1613,8905,5805,6458],\"midQualityFileSha256\":\"GxjTJ0mPm9wT6\\/c\\/czq1PTFnsjndNlpbg5vB7OFVGV8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HuQasA\\/dWWQFYFrqhcHzHv1CUjombTremqsp+c9erts=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771075057,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:17:38'),
(15849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:38'),
(15850, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:39.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:39'),
(15851, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:39.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:39'),
(15852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:39'),
(15853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:39'),
(15854, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:39'),
(15855, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:40'),
(15856, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:38.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:40'),
(15857, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:49.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:49'),
(15858, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:49.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:49'),
(15859, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:59.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:17:59'),
(15860, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:17:59.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:17:59'),
(15861, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:02.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:18:02'),
(15862, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:02.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:18:02'),
(15863, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":true,\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/33458585_2052811851928420_7596931758989999738_n.enc?ccb=11-4&oh=01_Q5Aa3wG6TkJop548nkIWIvpj2d4fFzWjMUqJ2nDpwRe1eo8kMw&oe=69B7CF5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"p7\\/jKQKESV23KEAuA3fqU7WyEFI9R12\\/+X3TMnWTNaw=\",\"fileLength\":\"15970\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"cRqoTVWX2DkTLFT0J5GY04FAbe3phyTzdlEUOnjkZSo=\",\"fileEncSha256\":\"ob23qVNwHcfa6s\\/vTVQNYEuv5quPMGtmdim5NQeOCAY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/33458585_2052811851928420_7596931758989999738_n.enc?ccb=11-4&oh=01_Q5Aa3wG6TkJop548nkIWIvpj2d4fFzWjMUqJ2nDpwRe1eo8kMw&oe=69B7CF5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075099\",\"waveform\":\"AAQADVpEUmFBNFIjUk1ATFVPU1dTO1wuTlFJMEtcVkgqIkkcFDBHNVJWXU1KUlhKLiJQNxUJIioeEg4QKj1SMQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075105,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:25.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:18:25'),
(15864, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:25.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:18:25'),
(15865, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:25.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:18:25'),
(15866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:25.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:18:25'),
(15867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:25.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:18:26'),
(15868, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":true,\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/33458585_2052811851928420_7596931758989999738_n.enc?ccb=11-4&oh=01_Q5Aa3wG6TkJop548nkIWIvpj2d4fFzWjMUqJ2nDpwRe1eo8kMw&oe=69B7CF5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"p7\\/jKQKESV23KEAuA3fqU7WyEFI9R12\\/+X3TMnWTNaw=\",\"fileLength\":\"15970\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"cRqoTVWX2DkTLFT0J5GY04FAbe3phyTzdlEUOnjkZSo=\",\"fileEncSha256\":\"ob23qVNwHcfa6s\\/vTVQNYEuv5quPMGtmdim5NQeOCAY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/33458585_2052811851928420_7596931758989999738_n.enc?ccb=11-4&oh=01_Q5Aa3wG6TkJop548nkIWIvpj2d4fFzWjMUqJ2nDpwRe1eo8kMw&oe=69B7CF5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075099\",\"waveform\":\"AAQADVpEUmFBNFIjUk1ATFVPU1dTO1wuTlFJMEtcVkgqIkkcFDBHNVJWXU1KUlhKLiJQNxUJIioeEg4QKj1SMQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075105,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:25.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:18:26'),
(15869, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075106237,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:26.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:18:26'),
(15870, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075106237,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:18:26.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:18:26'),
(15871, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:19:20'),
(15872, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:19:20'),
(15873, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A58C40741B79B48C2B26072851D29151\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/604010675_1801087690565243_2663313308630771170_n.enc?ccb=11-4&oh=01_Q5Aa3wGVVSaKe_EJkySc5gLi6Dv9h3ptoby6vyUz_7ywjLWNDw&oe=69B7E6A1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"y0n06JxWrJNb\\/v9xrIjnNYaGJkyXMaRHFsItS1OBENY=\",\"fileLength\":\"15831\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"tyGX054al5qS9tMbGMgdGFhrtrzLQ54QVYWhoUldR1c=\",\"fileEncSha256\":\"TsG+iP8tE2sWb31ALQtWln9r3\\/EAutkfupRyrljHhj0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/604010675_1801087690565243_2663313308630771170_n.enc?ccb=11-4&oh=01_Q5Aa3wGVVSaKe_EJkySc5gLi6Dv9h3ptoby6vyUz_7ywjLWNDw&oe=69B7E6A1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075154\",\"waveform\":\"AFpMVVNHUWBYXGFJW0lUVFZcUE1SWlY4SEtSVUdWVFlZVE1JXF1XSU9dT1JXSEBWUEhQTVhVTVJTX1BgTT9QSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075160,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:19:20'),
(15874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:19:20'),
(15875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:19:20'),
(15876, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A58C40741B79B48C2B26072851D29151\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/604010675_1801087690565243_2663313308630771170_n.enc?ccb=11-4&oh=01_Q5Aa3wGVVSaKe_EJkySc5gLi6Dv9h3ptoby6vyUz_7ywjLWNDw&oe=69B7E6A1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"y0n06JxWrJNb\\/v9xrIjnNYaGJkyXMaRHFsItS1OBENY=\",\"fileLength\":\"15831\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"tyGX054al5qS9tMbGMgdGFhrtrzLQ54QVYWhoUldR1c=\",\"fileEncSha256\":\"TsG+iP8tE2sWb31ALQtWln9r3\\/EAutkfupRyrljHhj0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/604010675_1801087690565243_2663313308630771170_n.enc?ccb=11-4&oh=01_Q5Aa3wGVVSaKe_EJkySc5gLi6Dv9h3ptoby6vyUz_7ywjLWNDw&oe=69B7E6A1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075154\",\"waveform\":\"AFpMVVNHUWBYXGFJW0lUVFZcUE1SWlY4SEtSVUdWVFlZVE1JXF1XSU9dT1JXSEBWUEhQTVhVTVJTX1BgTT9QSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075160,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:19:20'),
(15877, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A58C40741B79B48C2B26072851D29151\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075160599,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:19:20'),
(15878, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A58C40741B79B48C2B26072851D29151\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075160599,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:20.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:19:21'),
(15879, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A58C40741B79B48C2B26072851D29151\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075168286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:28.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:19:28'),
(15880, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A58C40741B79B48C2B26072851D29151\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075168286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:28.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:19:28'),
(15881, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A58C40741B79B48C2B26072851D29151\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771075169148,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:29.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:19:29'),
(15882, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A58C40741B79B48C2B26072851D29151\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771075169148,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:19:29.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:19:29'),
(15883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:06.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:20:06'),
(15884, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":true,\"id\":\"A5DC2CBDC5BD3DEAB993D923BBECF1A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771075205486\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:06.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:06'),
(15886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:06.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:20:06'),
(15887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:06.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:20:06'),
(15888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:06.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:20:07'),
(15889, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":true,\"id\":\"A5DC2CBDC5BD3DEAB993D923BBECF1A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/586806421_1510559090044180_6071772280259474442_n.enc?ccb=11-4&oh=01_Q5Aa3wGZt-vHutk0IPKcCITCBr4GUtJDZXlRH-Vs8D2PZTTQDA&oe=69B7CDCC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771075205486\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075206,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:06.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:07'),
(15891, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:07.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:20:07'),
(15892, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":true,\"id\":\"A5F477A007DD19EF57D551D7CCE5896D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771075206920\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075207,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:07.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:07'),
(15893, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"168551730135098@lid\",\"fromMe\":true,\"id\":\"A5F477A007DD19EF57D551D7CCE5896D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771075206920\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771075207,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:07.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:09'),
(15894, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"168551730135098@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:07.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:20:09'),
(15895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:08.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:20:09'),
(15896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"168551730135098@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/464496640_936111378142181_827234196967743152_n.jpg?ccb=11-4&oh=01_Q5Aa3wENGAkOPU3W5V07M5zl62IsPVDCPSkS9IA6iMO9EsCRaw&oe=699D6F39&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:08.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:20:09'),
(15897, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5F477A007DD19EF57D551D7CCE5896D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075207951,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:07.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:10'),
(15898, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5F477A007DD19EF57D551D7CCE5896D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075207951,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:07.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:10'),
(15899, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":true,\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/18924693_2108807306561549_6080919350323650207_n.enc?ccb=11-4&oh=01_Q5Aa3wH83As_EiQjf4MAhPOq0kQSbeYeHC3wU4_AqmKF_RDy3Q&oe=69B7F0B1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tsFGgM+z6\\/mv8mKjw1mstHKinYErZxvOJdRBD4jIwM0=\",\"fileLength\":\"4774\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"I89+Kho838jB2XyTrQeKldYkG1er36w9cLntiTkUJgA=\",\"fileEncSha256\":\"qqJHlTk5nNQG8y17RoT\\/NmFyIoa7OArIT66X\\/u8rTVw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/18924693_2108807306561549_6080919350323650207_n.enc?ccb=11-4&oh=01_Q5Aa3wH83As_EiQjf4MAhPOq0kQSbeYeHC3wU4_AqmKF_RDy3Q&oe=69B7F0B1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075222\",\"waveform\":\"ADRZVVRUUlFWVk1OVldWUU5LUVlWVFZUUE5MTE5UVlZWVVRTUFBQTUtLTVNXWVhXWlpYWFlWU1FTWVJLUFRYWg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075222,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:22.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:22'),
(15900, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:22.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:20:22'),
(15901, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:22.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:20:22'),
(15902, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":true,\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/18924693_2108807306561549_6080919350323650207_n.enc?ccb=11-4&oh=01_Q5Aa3wH83As_EiQjf4MAhPOq0kQSbeYeHC3wU4_AqmKF_RDy3Q&oe=69B7F0B1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"tsFGgM+z6\\/mv8mKjw1mstHKinYErZxvOJdRBD4jIwM0=\",\"fileLength\":\"4774\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"I89+Kho838jB2XyTrQeKldYkG1er36w9cLntiTkUJgA=\",\"fileEncSha256\":\"qqJHlTk5nNQG8y17RoT\\/NmFyIoa7OArIT66X\\/u8rTVw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/18924693_2108807306561549_6080919350323650207_n.enc?ccb=11-4&oh=01_Q5Aa3wH83As_EiQjf4MAhPOq0kQSbeYeHC3wU4_AqmKF_RDy3Q&oe=69B7F0B1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771075222\",\"waveform\":\"ADRZVVRUUlFWVk1OVldWUU5LUVlWVFZUUE5MTE5UVlZWVVRTUFBQTUtLTVNXWVhXWlpYWFlWU1FTWVJLUFRYWg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771075222,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:22.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:23'),
(15903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:23.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:20:23'),
(15904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7kyBXGsvnr8tfC72oTaU-PckV-9ALl1TPed4cxjBVYg&oe=699D72FA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:23.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:20:23'),
(15905, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075225439,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:25.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:25'),
(15906, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771075225439,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:25.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:25'),
(15907, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5DC2CBDC5BD3DEAB993D923BBECF1A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075227941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:27.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:28'),
(15908, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5F477A007DD19EF57D551D7CCE5896D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075227939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:27.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:20:28'),
(15909, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5DC2CBDC5BD3DEAB993D923BBECF1A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075227941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:27.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:28'),
(15910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"168551730135098@lid\",\"id\":\"A5F477A007DD19EF57D551D7CCE5896D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075227939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:20:27.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:20:28'),
(15911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178099677315112@lid\",\"id\":\"A50038C64A2965DB7BC893935CD37728\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075408335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:23:28.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:23:28'),
(15912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178099677315112@lid\",\"id\":\"A50038C64A2965DB7BC893935CD37728\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075408335,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:23:28.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:23:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15913, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcqzDwVj_VtWofWS2i7pXN3Y5nsY4zx6IEtkKam-f8ng&oe=699D7A9B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLvbtD0zqMLTkee9qZ5aEbvRby7-xdKkOHB-QJWKHy7w&oe=699D9AA6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H3qlwdKcpevXr1swUiXcK9tC4awToKG32Uc4V0odYQ&oe=699D94D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUEerjawND73iP6S0e6NXs6MVNjxkYqa1Rw6s_2fxjA&oe=699D9AFB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJBXXiuMfYdHfXL2sIs_xlxgpx3Nob2YuyK4EECRPzrg&oe=699D83C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIwSdonBDmGWgDslLW_OvwBQcBans8JGPH-m3Oq5pDUg&oe=699D9D43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wECXfD2fnwq8PsAXeoWBlhVXtU3pUAYXZE9uvGRQmyQHQ&oe=699D841C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8CjKS3WkhLyX3XnMEZkm_3_3La1JH4YwUblwj1B3N8A&oe=699D9455&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHljw6PZyZKn7iLJ0tzcyPQ_-__jiQTptT4L5NrOsS_yg&oe=699D8255&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0irGk0-rSONOzN5_8UIBLdxC5ChUnuts92OQg5PHrzg&oe=699D8FD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF10O_YcFB3fw7Ks_5xSsU-5sskopU4d0LDU6GBL7HJw&oe=699D8A8B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVU46BKOfWCWBLSjF-E2ObtV-0NSDZyAVawskALgyyRQ&oe=699D8D86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzbfScdQN5YyhOtsc4u9PDDz3h23W9xMSOdVlHzNu-Hg&oe=699D8B22&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHludRevAEISQk9_5DoydIHOHrY_8-ULTJ5bDUar0KFdA&oe=699D8F8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wF48uKexNFwujZGd82uUGd-soi9Orh19fa0pA5-hOx-xg&oe=699D883B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7_sGEQQCuPz6IjgSQdurBrKcEhjlKkZQ_4bsANLQ35A&oe=699D89DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7LHEzk-Tetg7Q_UzhnvsA70TLsyBFTZtbzHj4JZL3lA&oe=699D74F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBPi0aXsoHi09LZzSpVteImzHqW6kfSaF2-ZhephvQQ&oe=699D8949&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYAb2tpkS1yAVvCovMbzGQEhfnxQJ6YMkRmmO1e-szaw&oe=699D6F8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsYg_UaT2B7xoA9E-IYtlfIBDVg22Ml1sLgKJk-uX0Ag&oe=699D8958&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoMnl8-m-iViK2HXU2Wqp3JwS95YCKSoE5FytB6M6r2w&oe=699D7DD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDEd0skqoH83WOx5gZnjhRdbRowbKpEXFkNiQEjh7s6Q&oe=699D9C9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFT3j25ZgXkwXFjRP_cgKAO0l9NVlXK6zjdCcB_wUoz8A&oe=699DA036&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhEnITD8TVMnCtQpYF-9Ja-eppyyXH_iv15junRtJ_wA&oe=699D792F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlCQmWCApDp5m_jJrbbyItktRsdpruaBVva5yXVpKF2Q&oe=699D7FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfua6s6R48acviFNq5lkgFpEB3KxGVknHRBdoIevw63A&oe=699D768D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg9iv05pMaAiNq16ip4Wx-8pxx6CFvRZySvM9IS8UFxg&oe=699D7BBB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmVI_EkQ65zIuP7S5Uc4qIW1Y5hTPf_wRlpqGOTUbsPA&oe=699D9502&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wETl9bv3REzEbB6JX0Xpdff4VbVM3OX9RUYWjxlAnS7cw&oe=699D7A55&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1HvN5E1BzNlTi6igf9V0FGPGtL-Kxy725VjgF0vwxQ&oe=699D820C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVfyFPks7K-ir6kyC9opDZG7Hf2cw3LTNAlVyDAkzuJg&oe=699D999A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wFl9IJV8emffqG-NCcRLlysVsmzVrHmQ9ZG-h258_lT9A&oe=699D8B6F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-Aj4FAXex5XzG4bex_TtOVepz-vHybUmC0fIlYyDLw&oe=699D8FA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV_RBS0J7hjnqGrg7oNw-xG_cpczeMzXa8MohxSAHSug&oe=699D6FD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGRSGTCWJp7sx_0xDESdBNxyShyvEcmd4UlYJEUCkPMw&oe=699D7DEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1k6vg4Eid271ApR-kLfA3U265hJeAYTkssQT8oZa-BQ&oe=699D783B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTtepYZBGJ1-V2QNCJy6gfdeemJP0h--aTkC51o9RpPw&oe=699D81A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNznJ2OoafqV8ve-mRoF_kQCLo8O7mBcQA-lOO_2WZXA&oe=699D852B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1jJZcoois4GrsNb0_lGZ2wrHLH6AEvVFYvlcVWkddWA&oe=699D8E64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1b_SvZC9MNyJOtoOcQx_k8PHWbnUHtN-SEs8rrJ938w&oe=699D7405&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKEtn_T0oMvsq9iAJMR0vs-oyIIjOOrysUteDVb6zhnw&oe=699D7BB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOGg00SR0y9Yc_TQmcb07sjLXGkNT-i3RbirznznWWXg&oe=699D9A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7yRJFhW2laGO5qGZewyr-bM_36XIhBJWtgQd-9brvXg&oe=699D93D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH_uo6JRwCZ_zPFqmJYmSBDcUkbUeUgdmHBByACvOpzw&oe=699D99F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IzuqpR3Y7_cGXKNjWmevLAmxaIvGEntWlqgyNZvUwQ&oe=699D7577&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSlamDXInftLNR6MAUJCyCbwDeoO1uoFh98n8spNHY3w&oe=699D84AA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRfrU4SISYyhrDJfBv3b-2D3JokCNjxiC8hDGw6dNKtg&oe=699D7DE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGaHz8nTWaouQ2HkIY1uIAreIj-SaAp3Lk5VnCtvaHBg&oe=699D834A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQMkLy3jJxa8Is_G9ftbWYfXV-ZSB9eOaaUrg-wPpeMQ&oe=699D6C6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjQA4LW39EqcPgn0Q0LEX6T386Z-HyJJkspbxtaLdjfw&oe=699D6B6B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmwABlY6ZBymmAriC3Kbu9j2Y6tk70giWbr25zSKHE2w&oe=699D7CD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg4mvzGA5oqDToSeVgKMnOzKp2jLu7M8sPRj-6SGXBXQ&oe=699D722E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-xDPMwiaMY7wDhFN1JieJHd9IXvX_WLcwVs9HqIJeA&oe=699D9D18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3nuvJbFvZZmB_H27T8Q1iOtUYJQbta7-dciLJ-tTQDg&oe=699D79D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_-f9oXDLnytRbQKMsk66zMYByCAXx5KJnrhl24ChSYw&oe=699D9C39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEytNxq3PktK8R_g7I5eaR0zplvmOL9vJIrFel1W8E8tA&oe=699D8EC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7t79yDhe-WMZvN8XdLQSyvgcOi0paltbjRPYAeRf6sA&oe=699D9C61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHysaSYwzmeVQ18EQyOAGfBsrWuIjQATJsUHGJDarjIXA&oe=699D7BF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbD7bTfjIpCT8tFLUa4N2wr-cmoOIabeeV-7_qpLWUlw&oe=699D98F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJT4mGOJmIvw7f4l5Lg64wTG3Vmtt98hpr1CWSDXp5Dg&oe=699D6F80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wExRgZe423Vw3WMX062mPhzU-zepeLHLyYgB1PEF3gJSA&oe=699D948F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPpYQJUxL_OaiUBkQEw8RNsLUuoZDuzjhDYstb3pG2kg&oe=699D87BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5s4m8qw438CCyuW0_GQHFvCDcAec5vwXMVSZ9DDaG0Q&oe=699D8B42&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfkhuUImIljxA_-dB_m4OP-KryInLrKsxiTPoPuPuGQA&oe=699D788E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ9zY3xACNSDHcFdU6MfjhVdOetAFXtBhA8iSOolexBg&oe=699D7F74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYRosW8X2ugMOdePzlzNbA2Cyqtu-_sPeSv3TFGt5AMA&oe=699D9D52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgrt2pHYG5DNZmuTFBO1KAwush7X--s_eb6PVVFJ8zAQ&oe=699D9090&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxmYslZC_DIaxBx-8EC7nBUJXhKKgx_K66NIjzk3_1g&oe=699D847C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHFilawP4njuQiJD3DZsG9q_-KumCuK6xJDj4xCAieuQ&oe=699D87B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoyOth4wtfcgA4jDYrovhEeomAkAHSv1BwV6gSLBsPmw&oe=699D822F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8i0Uh5cXtXu8eD1wR3C5rp-IxahRdaqwxA5oJM6BYSQ&oe=699D76BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfHSxeY8HaP3UJrV2OrFhksG09898v2sjXwwJDmbpV2g&oe=699D8C5F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wExN8x-5EU4hr1KI8_MGGOa3Cx6o1anEcbUz1k79MkFBg&oe=699D905A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHG4jaHSol1VkHYpUaozzGcb0LJ_NQg_t3TFORYn3Hh8A&oe=699D7B90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFnGYT8SZoSgRXZ6HtTfxIagYL7tg8Y5dh3i56ZZ6stw&oe=699D9784&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ4bhtj0WShUKgNQHlr9HA8xTs5aN9zSDkBIDRxEESUw&oe=699D9E17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGpw30XcgdNnJ7P2KqGM3KXrRVD2qQckmPWlOxaAZnBg&oe=699D9EBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfhtaFtnXQJ0diofAPP_XjIP0mtAA4E-Zv0kQDdXqojg&oe=699D8CD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS1nsKe-srrDrvGd_Ovgds0_RCOIT_nI2cXYZfey5FQQ&oe=699D99CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDOfhTXz0XqLBLAPQl9u7qY3XDoNxVDPd9N_KFIHOQCg&oe=699D76F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX1hKlso5o-IIS4dYhrk5jZ2en3V4IG8C-OUTfGRqY2A&oe=699D8484&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQIC_0mD6fWYEpTbPEV3iZXSdP-UseBo0JPBBZcytZlw&oe=699D903D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOsUdhSMhKMseRGZUCDoTHZ9DmKAf-ASpxLuRPQAwcGA&oe=699D9465&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPQ3ADE6Se9wFfGN9HmK4UfNGdBF8iFQu4i_vQnhdgWA&oe=699D73BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4dJJqp79w9zv426M1j4MWwJmtq7CED7saP03LlZOWLQ&oe=699D9102&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHb2QCA6oXgwEJbTsU5KFdz2uyvRLOCrM6uNC2QQZe0IQ&oe=699D7FA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmO8JIFhWUkA38BUrQh7ShZQSKFmWH7UcsEkKHqBMgJg&oe=699D7AC7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkByyuZsxH1LWVW7o0hCezQnbrOEUp6T1q8bGGtjLJSQ&oe=699DA067&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0h-aiaVBZXZWxV3CzI1VRCyLVoDwxDRzk2a5xNs1BIg&oe=699D8B80&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ9RP7CeX8LCAx7FE1Fn0sTY_Puky99fwxXLBaif_OUQ&oe=699DA31D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1djGVe8AQEpmfIjrJIdwMABe-wTLsplbzRpeDVpVgkA&oe=699D72C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGxNlHqvWWOfuxA5FPjz7FD0jRLZA6vTa8rt_CpUazFw&oe=699D6E63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXA2y0auEPxxJakZB6tAJFwoAqsq4Vj8iK7J2X4EtEUQ&oe=699D7EC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8KVPP3ed5ZTs4u6XIvdbdgCrRzSbIwQ9Wbk187LZD_A&oe=699D800A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wErefCWXG17DLNVUEFSR1bKUTJBFfQZdUmASFdVk3xtLQ&oe=699D7B11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS3XCNTTGrPYhMuexxNgNuzKWJVn6jwOZ41CO5A4hUOQ&oe=699D8CDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg-i25DlGiYG-gH5-ISjNXIji1dx07wrG2luHWucZKWQ&oe=699D6EB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNq2oggfLeGdDeB88lJ5sHOMA9yi7_NFKu6IswP84BwQ&oe=699D8B14&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9cmHZ1jkw6du9zgumpqRdYZnE6ZS6qwoShpPslMrZgw&oe=699D75D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3jGHwalybA_A-P7cAKUykQU4NxGMkyDOAH7qlFyD5Bg&oe=699D9D7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGYGCjfj5irYoFT4e_zeNf2k-dKp_V1bCEPLUCBACV8w&oe=699D6D2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ0O44SFjhuXl7XvZ3MTl2p84Ra4CTD1-mz4p6D5h2BQ&oe=699D889A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvE4Bre8bhuBD--_dcx7Un15RJQJ1oO2iY2wBJHad3IA&oe=699D8576&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVe_lypZjFmR_Zz1tNYR9go6u0Np-WeADwG68J0ThOWQ&oe=699D8D9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFX40yJg0e2Bm4mfz1yyA60POTuporFvRZYpV4nK-TTiQ&oe=699D7207&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRTXlVne37YDXduAWrUczsa0XbxZMP-sKcZZwYLIpKOg&oe=699D874E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF60f0dsv4mB3pdkTXutYaI6fyYhLC2Dh28zBhLIti-g&oe=699D8BF7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL9Vmp-pnhoImlM9Wwthy4M6lxdm2lLqYfk5VtR8TXHg&oe=699D6EE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE71y5dQsJXChAF9qbIfwtMk5hnJaeD9q5_htRyJ5tM2w&oe=699D9C4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhSSilZsd_RNdrYRzwpBIIYxycYwJaxag6AmL_9CNEaA&oe=699D72A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUXKtO4AQUF-rGcAvtsAesj0WMWXJjaLJ23FrieGJfhA&oe=699D7F52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFq6WQE5i1JEbIryVv8rqRM8iqdVuCamOd68XhRKfS2kg&oe=699D7F65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzBp7BKxWeHahL6irNZBBJtW2wllks8vuhyHMJv985bQ&oe=699D8E45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkzZkJ0o8UcWkQG4R0vIZ4v39sH-z1kI5ShGoKvSUsxQ&oe=699D7B23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5lHUGF7Pk0zAa0gkXCXSy6d1_tbeM7TRelwB7JBsnWA&oe=699D8EB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-14 10:25:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15914, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcqzDwVj_VtWofWS2i7pXN3Y5nsY4zx6IEtkKam-f8ng&oe=699D7A9B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLvbtD0zqMLTkee9qZ5aEbvRby7-xdKkOHB-QJWKHy7w&oe=699D9AA6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H3qlwdKcpevXr1swUiXcK9tC4awToKG32Uc4V0odYQ&oe=699D94D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUEerjawND73iP6S0e6NXs6MVNjxkYqa1Rw6s_2fxjA&oe=699D9AFB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJBXXiuMfYdHfXL2sIs_xlxgpx3Nob2YuyK4EECRPzrg&oe=699D83C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIwSdonBDmGWgDslLW_OvwBQcBans8JGPH-m3Oq5pDUg&oe=699D9D43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wECXfD2fnwq8PsAXeoWBlhVXtU3pUAYXZE9uvGRQmyQHQ&oe=699D841C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8CjKS3WkhLyX3XnMEZkm_3_3La1JH4YwUblwj1B3N8A&oe=699D9455&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHljw6PZyZKn7iLJ0tzcyPQ_-__jiQTptT4L5NrOsS_yg&oe=699D8255&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0irGk0-rSONOzN5_8UIBLdxC5ChUnuts92OQg5PHrzg&oe=699D8FD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF10O_YcFB3fw7Ks_5xSsU-5sskopU4d0LDU6GBL7HJw&oe=699D8A8B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVU46BKOfWCWBLSjF-E2ObtV-0NSDZyAVawskALgyyRQ&oe=699D8D86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzbfScdQN5YyhOtsc4u9PDDz3h23W9xMSOdVlHzNu-Hg&oe=699D8B22&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHludRevAEISQk9_5DoydIHOHrY_8-ULTJ5bDUar0KFdA&oe=699D8F8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wF48uKexNFwujZGd82uUGd-soi9Orh19fa0pA5-hOx-xg&oe=699D883B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7_sGEQQCuPz6IjgSQdurBrKcEhjlKkZQ_4bsANLQ35A&oe=699D89DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7LHEzk-Tetg7Q_UzhnvsA70TLsyBFTZtbzHj4JZL3lA&oe=699D74F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBPi0aXsoHi09LZzSpVteImzHqW6kfSaF2-ZhephvQQ&oe=699D8949&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYAb2tpkS1yAVvCovMbzGQEhfnxQJ6YMkRmmO1e-szaw&oe=699D6F8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsYg_UaT2B7xoA9E-IYtlfIBDVg22Ml1sLgKJk-uX0Ag&oe=699D8958&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoMnl8-m-iViK2HXU2Wqp3JwS95YCKSoE5FytB6M6r2w&oe=699D7DD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDEd0skqoH83WOx5gZnjhRdbRowbKpEXFkNiQEjh7s6Q&oe=699D9C9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFT3j25ZgXkwXFjRP_cgKAO0l9NVlXK6zjdCcB_wUoz8A&oe=699DA036&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhEnITD8TVMnCtQpYF-9Ja-eppyyXH_iv15junRtJ_wA&oe=699D792F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlCQmWCApDp5m_jJrbbyItktRsdpruaBVva5yXVpKF2Q&oe=699D7FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfua6s6R48acviFNq5lkgFpEB3KxGVknHRBdoIevw63A&oe=699D768D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg9iv05pMaAiNq16ip4Wx-8pxx6CFvRZySvM9IS8UFxg&oe=699D7BBB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmVI_EkQ65zIuP7S5Uc4qIW1Y5hTPf_wRlpqGOTUbsPA&oe=699D9502&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wETl9bv3REzEbB6JX0Xpdff4VbVM3OX9RUYWjxlAnS7cw&oe=699D7A55&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1HvN5E1BzNlTi6igf9V0FGPGtL-Kxy725VjgF0vwxQ&oe=699D820C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVfyFPks7K-ir6kyC9opDZG7Hf2cw3LTNAlVyDAkzuJg&oe=699D999A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wFl9IJV8emffqG-NCcRLlysVsmzVrHmQ9ZG-h258_lT9A&oe=699D8B6F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-Aj4FAXex5XzG4bex_TtOVepz-vHybUmC0fIlYyDLw&oe=699D8FA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV_RBS0J7hjnqGrg7oNw-xG_cpczeMzXa8MohxSAHSug&oe=699D6FD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGRSGTCWJp7sx_0xDESdBNxyShyvEcmd4UlYJEUCkPMw&oe=699D7DEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1k6vg4Eid271ApR-kLfA3U265hJeAYTkssQT8oZa-BQ&oe=699D783B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTtepYZBGJ1-V2QNCJy6gfdeemJP0h--aTkC51o9RpPw&oe=699D81A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNznJ2OoafqV8ve-mRoF_kQCLo8O7mBcQA-lOO_2WZXA&oe=699D852B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1jJZcoois4GrsNb0_lGZ2wrHLH6AEvVFYvlcVWkddWA&oe=699D8E64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1b_SvZC9MNyJOtoOcQx_k8PHWbnUHtN-SEs8rrJ938w&oe=699D7405&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKEtn_T0oMvsq9iAJMR0vs-oyIIjOOrysUteDVb6zhnw&oe=699D7BB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOGg00SR0y9Yc_TQmcb07sjLXGkNT-i3RbirznznWWXg&oe=699D9A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7yRJFhW2laGO5qGZewyr-bM_36XIhBJWtgQd-9brvXg&oe=699D93D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH_uo6JRwCZ_zPFqmJYmSBDcUkbUeUgdmHBByACvOpzw&oe=699D99F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IzuqpR3Y7_cGXKNjWmevLAmxaIvGEntWlqgyNZvUwQ&oe=699D7577&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSlamDXInftLNR6MAUJCyCbwDeoO1uoFh98n8spNHY3w&oe=699D84AA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRfrU4SISYyhrDJfBv3b-2D3JokCNjxiC8hDGw6dNKtg&oe=699D7DE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGaHz8nTWaouQ2HkIY1uIAreIj-SaAp3Lk5VnCtvaHBg&oe=699D834A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQMkLy3jJxa8Is_G9ftbWYfXV-ZSB9eOaaUrg-wPpeMQ&oe=699D6C6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFjQA4LW39EqcPgn0Q0LEX6T386Z-HyJJkspbxtaLdjfw&oe=699D6B6B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmwABlY6ZBymmAriC3Kbu9j2Y6tk70giWbr25zSKHE2w&oe=699D7CD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg4mvzGA5oqDToSeVgKMnOzKp2jLu7M8sPRj-6SGXBXQ&oe=699D722E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-xDPMwiaMY7wDhFN1JieJHd9IXvX_WLcwVs9HqIJeA&oe=699D9D18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3nuvJbFvZZmB_H27T8Q1iOtUYJQbta7-dciLJ-tTQDg&oe=699D79D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_-f9oXDLnytRbQKMsk66zMYByCAXx5KJnrhl24ChSYw&oe=699D9C39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEytNxq3PktK8R_g7I5eaR0zplvmOL9vJIrFel1W8E8tA&oe=699D8EC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7t79yDhe-WMZvN8XdLQSyvgcOi0paltbjRPYAeRf6sA&oe=699D9C61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHysaSYwzmeVQ18EQyOAGfBsrWuIjQATJsUHGJDarjIXA&oe=699D7BF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbD7bTfjIpCT8tFLUa4N2wr-cmoOIabeeV-7_qpLWUlw&oe=699D98F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJT4mGOJmIvw7f4l5Lg64wTG3Vmtt98hpr1CWSDXp5Dg&oe=699D6F80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wExRgZe423Vw3WMX062mPhzU-zepeLHLyYgB1PEF3gJSA&oe=699D948F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPpYQJUxL_OaiUBkQEw8RNsLUuoZDuzjhDYstb3pG2kg&oe=699D87BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5s4m8qw438CCyuW0_GQHFvCDcAec5vwXMVSZ9DDaG0Q&oe=699D8B42&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfkhuUImIljxA_-dB_m4OP-KryInLrKsxiTPoPuPuGQA&oe=699D788E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ9zY3xACNSDHcFdU6MfjhVdOetAFXtBhA8iSOolexBg&oe=699D7F74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYRosW8X2ugMOdePzlzNbA2Cyqtu-_sPeSv3TFGt5AMA&oe=699D9D52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgrt2pHYG5DNZmuTFBO1KAwush7X--s_eb6PVVFJ8zAQ&oe=699D9090&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxmYslZC_DIaxBx-8EC7nBUJXhKKgx_K66NIjzk3_1g&oe=699D847C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHFilawP4njuQiJD3DZsG9q_-KumCuK6xJDj4xCAieuQ&oe=699D87B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoyOth4wtfcgA4jDYrovhEeomAkAHSv1BwV6gSLBsPmw&oe=699D822F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8i0Uh5cXtXu8eD1wR3C5rp-IxahRdaqwxA5oJM6BYSQ&oe=699D76BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfHSxeY8HaP3UJrV2OrFhksG09898v2sjXwwJDmbpV2g&oe=699D8C5F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wExN8x-5EU4hr1KI8_MGGOa3Cx6o1anEcbUz1k79MkFBg&oe=699D905A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHG4jaHSol1VkHYpUaozzGcb0LJ_NQg_t3TFORYn3Hh8A&oe=699D7B90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFnGYT8SZoSgRXZ6HtTfxIagYL7tg8Y5dh3i56ZZ6stw&oe=699D9784&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ4bhtj0WShUKgNQHlr9HA8xTs5aN9zSDkBIDRxEESUw&oe=699D9E17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGpw30XcgdNnJ7P2KqGM3KXrRVD2qQckmPWlOxaAZnBg&oe=699D9EBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfhtaFtnXQJ0diofAPP_XjIP0mtAA4E-Zv0kQDdXqojg&oe=699D8CD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS1nsKe-srrDrvGd_Ovgds0_RCOIT_nI2cXYZfey5FQQ&oe=699D99CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDOfhTXz0XqLBLAPQl9u7qY3XDoNxVDPd9N_KFIHOQCg&oe=699D76F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX1hKlso5o-IIS4dYhrk5jZ2en3V4IG8C-OUTfGRqY2A&oe=699D8484&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQIC_0mD6fWYEpTbPEV3iZXSdP-UseBo0JPBBZcytZlw&oe=699D903D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOsUdhSMhKMseRGZUCDoTHZ9DmKAf-ASpxLuRPQAwcGA&oe=699D9465&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPQ3ADE6Se9wFfGN9HmK4UfNGdBF8iFQu4i_vQnhdgWA&oe=699D73BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4dJJqp79w9zv426M1j4MWwJmtq7CED7saP03LlZOWLQ&oe=699D9102&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHb2QCA6oXgwEJbTsU5KFdz2uyvRLOCrM6uNC2QQZe0IQ&oe=699D7FA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmO8JIFhWUkA38BUrQh7ShZQSKFmWH7UcsEkKHqBMgJg&oe=699D7AC7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkByyuZsxH1LWVW7o0hCezQnbrOEUp6T1q8bGGtjLJSQ&oe=699DA067&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0h-aiaVBZXZWxV3CzI1VRCyLVoDwxDRzk2a5xNs1BIg&oe=699D8B80&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ9RP7CeX8LCAx7FE1Fn0sTY_Puky99fwxXLBaif_OUQ&oe=699DA31D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1djGVe8AQEpmfIjrJIdwMABe-wTLsplbzRpeDVpVgkA&oe=699D72C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGxNlHqvWWOfuxA5FPjz7FD0jRLZA6vTa8rt_CpUazFw&oe=699D6E63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXA2y0auEPxxJakZB6tAJFwoAqsq4Vj8iK7J2X4EtEUQ&oe=699D7EC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8KVPP3ed5ZTs4u6XIvdbdgCrRzSbIwQ9Wbk187LZD_A&oe=699D800A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wErefCWXG17DLNVUEFSR1bKUTJBFfQZdUmASFdVk3xtLQ&oe=699D7B11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS3XCNTTGrPYhMuexxNgNuzKWJVn6jwOZ41CO5A4hUOQ&oe=699D8CDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg-i25DlGiYG-gH5-ISjNXIji1dx07wrG2luHWucZKWQ&oe=699D6EB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNq2oggfLeGdDeB88lJ5sHOMA9yi7_NFKu6IswP84BwQ&oe=699D8B14&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9cmHZ1jkw6du9zgumpqRdYZnE6ZS6qwoShpPslMrZgw&oe=699D75D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3jGHwalybA_A-P7cAKUykQU4NxGMkyDOAH7qlFyD5Bg&oe=699D9D7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGYGCjfj5irYoFT4e_zeNf2k-dKp_V1bCEPLUCBACV8w&oe=699D6D2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ0O44SFjhuXl7XvZ3MTl2p84Ra4CTD1-mz4p6D5h2BQ&oe=699D889A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvE4Bre8bhuBD--_dcx7Un15RJQJ1oO2iY2wBJHad3IA&oe=699D8576&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVe_lypZjFmR_Zz1tNYR9go6u0Np-WeADwG68J0ThOWQ&oe=699D8D9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFX40yJg0e2Bm4mfz1yyA60POTuporFvRZYpV4nK-TTiQ&oe=699D7207&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRTXlVne37YDXduAWrUczsa0XbxZMP-sKcZZwYLIpKOg&oe=699D874E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF60f0dsv4mB3pdkTXutYaI6fyYhLC2Dh28zBhLIti-g&oe=699D8BF7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL9Vmp-pnhoImlM9Wwthy4M6lxdm2lLqYfk5VtR8TXHg&oe=699D6EE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE71y5dQsJXChAF9qbIfwtMk5hnJaeD9q5_htRyJ5tM2w&oe=699D9C4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhSSilZsd_RNdrYRzwpBIIYxycYwJaxag6AmL_9CNEaA&oe=699D72A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUXKtO4AQUF-rGcAvtsAesj0WMWXJjaLJ23FrieGJfhA&oe=699D7F52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFq6WQE5i1JEbIryVv8rqRM8iqdVuCamOd68XhRKfS2kg&oe=699D7F65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzBp7BKxWeHahL6irNZBBJtW2wllks8vuhyHMJv985bQ&oe=699D8E45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkzZkJ0o8UcWkQG4R0vIZ4v39sH-z1kI5ShGoKvSUsxQ&oe=699D7B23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5lHUGF7Pk0zAa0gkXCXSy6d1_tbeM7TRelwB7JBsnWA&oe=699D8EB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-14 10:25:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15915, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcqzDwVj_VtWofWS2i7pXN3Y5nsY4zx6IEtkKam-f8ng&oe=699D7A9B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLvbtD0zqMLTkee9qZ5aEbvRby7-xdKkOHB-QJWKHy7w&oe=699D9AA6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H3qlwdKcpevXr1swUiXcK9tC4awToKG32Uc4V0odYQ&oe=699D94D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUEerjawND73iP6S0e6NXs6MVNjxkYqa1Rw6s_2fxjA&oe=699D9AFB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJBXXiuMfYdHfXL2sIs_xlxgpx3Nob2YuyK4EECRPzrg&oe=699D83C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIwSdonBDmGWgDslLW_OvwBQcBans8JGPH-m3Oq5pDUg&oe=699D9D43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wECXfD2fnwq8PsAXeoWBlhVXtU3pUAYXZE9uvGRQmyQHQ&oe=699D841C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8CjKS3WkhLyX3XnMEZkm_3_3La1JH4YwUblwj1B3N8A&oe=699D9455&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHljw6PZyZKn7iLJ0tzcyPQ_-__jiQTptT4L5NrOsS_yg&oe=699D8255&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0irGk0-rSONOzN5_8UIBLdxC5ChUnuts92OQg5PHrzg&oe=699D8FD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF10O_YcFB3fw7Ks_5xSsU-5sskopU4d0LDU6GBL7HJw&oe=699D8A8B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVU46BKOfWCWBLSjF-E2ObtV-0NSDZyAVawskALgyyRQ&oe=699D8D86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzbfScdQN5YyhOtsc4u9PDDz3h23W9xMSOdVlHzNu-Hg&oe=699D8B22&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHludRevAEISQk9_5DoydIHOHrY_8-ULTJ5bDUar0KFdA&oe=699D8F8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wF48uKexNFwujZGd82uUGd-soi9Orh19fa0pA5-hOx-xg&oe=699D883B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7_sGEQQCuPz6IjgSQdurBrKcEhjlKkZQ_4bsANLQ35A&oe=699D89DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7LHEzk-Tetg7Q_UzhnvsA70TLsyBFTZtbzHj4JZL3lA&oe=699D74F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBPi0aXsoHi09LZzSpVteImzHqW6kfSaF2-ZhephvQQ&oe=699D8949&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYAb2tpkS1yAVvCovMbzGQEhfnxQJ6YMkRmmO1e-szaw&oe=699D6F8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsYg_UaT2B7xoA9E-IYtlfIBDVg22Ml1sLgKJk-uX0Ag&oe=699D8958&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoMnl8-m-iViK2HXU2Wqp3JwS95YCKSoE5FytB6M6r2w&oe=699D7DD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDEd0skqoH83WOx5gZnjhRdbRowbKpEXFkNiQEjh7s6Q&oe=699D9C9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFT3j25ZgXkwXFjRP_cgKAO0l9NVlXK6zjdCcB_wUoz8A&oe=699DA036&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhEnITD8TVMnCtQpYF-9Ja-eppyyXH_iv15junRtJ_wA&oe=699D792F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlCQmWCApDp5m_jJrbbyItktRsdpruaBVva5yXVpKF2Q&oe=699D7FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfua6s6R48acviFNq5lkgFpEB3KxGVknHRBdoIevw63A&oe=699D768D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg9iv05pMaAiNq16ip4Wx-8pxx6CFvRZySvM9IS8UFxg&oe=699D7BBB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmVI_EkQ65zIuP7S5Uc4qIW1Y5hTPf_wRlpqGOTUbsPA&oe=699D9502&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wETl9bv3REzEbB6JX0Xpdff4VbVM3OX9RUYWjxlAnS7cw&oe=699D7A55&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1HvN5E1BzNlTi6igf9V0FGPGtL-Kxy725VjgF0vwxQ&oe=699D820C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVfyFPks7K-ir6kyC9opDZG7Hf2cw3LTNAlVyDAkzuJg&oe=699D999A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wFl9IJV8emffqG-NCcRLlysVsmzVrHmQ9ZG-h258_lT9A&oe=699D8B6F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-Aj4FAXex5XzG4bex_TtOVepz-vHybUmC0fIlYyDLw&oe=699D8FA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV_RBS0J7hjnqGrg7oNw-xG_cpczeMzXa8MohxSAHSug&oe=699D6FD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGRSGTCWJp7sx_0xDESdBNxyShyvEcmd4UlYJEUCkPMw&oe=699D7DEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1k6vg4Eid271ApR-kLfA3U265hJeAYTkssQT8oZa-BQ&oe=699D783B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTtepYZBGJ1-V2QNCJy6gfdeemJP0h--aTkC51o9RpPw&oe=699D81A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNznJ2OoafqV8ve-mRoF_kQCLo8O7mBcQA-lOO_2WZXA&oe=699D852B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1jJZcoois4GrsNb0_lGZ2wrHLH6AEvVFYvlcVWkddWA&oe=699D8E64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1b_SvZC9MNyJOtoOcQx_k8PHWbnUHtN-SEs8rrJ938w&oe=699D7405&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKEtn_T0oMvsq9iAJMR0vs-oyIIjOOrysUteDVb6zhnw&oe=699D7BB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOGg00SR0y9Yc_TQmcb07sjLXGkNT-i3RbirznznWWXg&oe=699D9A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7yRJFhW2laGO5qGZewyr-bM_36XIhBJWtgQd-9brvXg&oe=699D93D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH_uo6JRwCZ_zPFqmJYmSBDcUkbUeUgdmHBByACvOpzw&oe=699D99F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IzuqpR3Y7_cGXKNjWmevLAmxaIvGEntWlqgyNZvUwQ&oe=699D7577&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSlamDXInftLNR6MAUJCyCbwDeoO1uoFh98n8spNHY3w&oe=699D84AA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRfrU4SISYyhrDJfBv3b-2D3JokCNjxiC8hDGw6dNKtg&oe=699D7DE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGaHz8nTWaouQ2HkIY1uIAreIj-SaAp3Lk5VnCtvaHBg&oe=699D834A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZlrIUTfO3Zm9QDOzJV8eRRMwxgvuRub435YQmeWskDA&oe=699DA4AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxte9Gu86EYCnk_pxnoWrdYs9LCZ-L-3TI3-1YVvmmxg&oe=699DA3AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmwABlY6ZBymmAriC3Kbu9j2Y6tk70giWbr25zSKHE2w&oe=699D7CD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg4mvzGA5oqDToSeVgKMnOzKp2jLu7M8sPRj-6SGXBXQ&oe=699D722E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-xDPMwiaMY7wDhFN1JieJHd9IXvX_WLcwVs9HqIJeA&oe=699D9D18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3nuvJbFvZZmB_H27T8Q1iOtUYJQbta7-dciLJ-tTQDg&oe=699D79D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_-f9oXDLnytRbQKMsk66zMYByCAXx5KJnrhl24ChSYw&oe=699D9C39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEytNxq3PktK8R_g7I5eaR0zplvmOL9vJIrFel1W8E8tA&oe=699D8EC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7t79yDhe-WMZvN8XdLQSyvgcOi0paltbjRPYAeRf6sA&oe=699D9C61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHysaSYwzmeVQ18EQyOAGfBsrWuIjQATJsUHGJDarjIXA&oe=699D7BF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbD7bTfjIpCT8tFLUa4N2wr-cmoOIabeeV-7_qpLWUlw&oe=699D98F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJT4mGOJmIvw7f4l5Lg64wTG3Vmtt98hpr1CWSDXp5Dg&oe=699D6F80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wExRgZe423Vw3WMX062mPhzU-zepeLHLyYgB1PEF3gJSA&oe=699D948F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPpYQJUxL_OaiUBkQEw8RNsLUuoZDuzjhDYstb3pG2kg&oe=699D87BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5s4m8qw438CCyuW0_GQHFvCDcAec5vwXMVSZ9DDaG0Q&oe=699D8B42&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfkhuUImIljxA_-dB_m4OP-KryInLrKsxiTPoPuPuGQA&oe=699D788E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ9zY3xACNSDHcFdU6MfjhVdOetAFXtBhA8iSOolexBg&oe=699D7F74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYRosW8X2ugMOdePzlzNbA2Cyqtu-_sPeSv3TFGt5AMA&oe=699D9D52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgrt2pHYG5DNZmuTFBO1KAwush7X--s_eb6PVVFJ8zAQ&oe=699D9090&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxmYslZC_DIaxBx-8EC7nBUJXhKKgx_K66NIjzk3_1g&oe=699D847C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHFilawP4njuQiJD3DZsG9q_-KumCuK6xJDj4xCAieuQ&oe=699D87B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoyOth4wtfcgA4jDYrovhEeomAkAHSv1BwV6gSLBsPmw&oe=699D822F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8i0Uh5cXtXu8eD1wR3C5rp-IxahRdaqwxA5oJM6BYSQ&oe=699D76BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfHSxeY8HaP3UJrV2OrFhksG09898v2sjXwwJDmbpV2g&oe=699D8C5F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wExN8x-5EU4hr1KI8_MGGOa3Cx6o1anEcbUz1k79MkFBg&oe=699D905A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHG4jaHSol1VkHYpUaozzGcb0LJ_NQg_t3TFORYn3Hh8A&oe=699D7B90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFnGYT8SZoSgRXZ6HtTfxIagYL7tg8Y5dh3i56ZZ6stw&oe=699D9784&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ4bhtj0WShUKgNQHlr9HA8xTs5aN9zSDkBIDRxEESUw&oe=699D9E17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGpw30XcgdNnJ7P2KqGM3KXrRVD2qQckmPWlOxaAZnBg&oe=699D9EBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfhtaFtnXQJ0diofAPP_XjIP0mtAA4E-Zv0kQDdXqojg&oe=699D8CD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS1nsKe-srrDrvGd_Ovgds0_RCOIT_nI2cXYZfey5FQQ&oe=699D99CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDOfhTXz0XqLBLAPQl9u7qY3XDoNxVDPd9N_KFIHOQCg&oe=699D76F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX1hKlso5o-IIS4dYhrk5jZ2en3V4IG8C-OUTfGRqY2A&oe=699D8484&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQIC_0mD6fWYEpTbPEV3iZXSdP-UseBo0JPBBZcytZlw&oe=699D903D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOsUdhSMhKMseRGZUCDoTHZ9DmKAf-ASpxLuRPQAwcGA&oe=699D9465&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPQ3ADE6Se9wFfGN9HmK4UfNGdBF8iFQu4i_vQnhdgWA&oe=699D73BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4dJJqp79w9zv426M1j4MWwJmtq7CED7saP03LlZOWLQ&oe=699D9102&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHb2QCA6oXgwEJbTsU5KFdz2uyvRLOCrM6uNC2QQZe0IQ&oe=699D7FA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmO8JIFhWUkA38BUrQh7ShZQSKFmWH7UcsEkKHqBMgJg&oe=699D7AC7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkByyuZsxH1LWVW7o0hCezQnbrOEUp6T1q8bGGtjLJSQ&oe=699DA067&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0h-aiaVBZXZWxV3CzI1VRCyLVoDwxDRzk2a5xNs1BIg&oe=699D8B80&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ9RP7CeX8LCAx7FE1Fn0sTY_Puky99fwxXLBaif_OUQ&oe=699DA31D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1djGVe8AQEpmfIjrJIdwMABe-wTLsplbzRpeDVpVgkA&oe=699D72C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGxNlHqvWWOfuxA5FPjz7FD0jRLZA6vTa8rt_CpUazFw&oe=699D6E63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXA2y0auEPxxJakZB6tAJFwoAqsq4Vj8iK7J2X4EtEUQ&oe=699D7EC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8KVPP3ed5ZTs4u6XIvdbdgCrRzSbIwQ9Wbk187LZD_A&oe=699D800A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wErefCWXG17DLNVUEFSR1bKUTJBFfQZdUmASFdVk3xtLQ&oe=699D7B11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS3XCNTTGrPYhMuexxNgNuzKWJVn6jwOZ41CO5A4hUOQ&oe=699D8CDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg-i25DlGiYG-gH5-ISjNXIji1dx07wrG2luHWucZKWQ&oe=699D6EB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNq2oggfLeGdDeB88lJ5sHOMA9yi7_NFKu6IswP84BwQ&oe=699D8B14&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9cmHZ1jkw6du9zgumpqRdYZnE6ZS6qwoShpPslMrZgw&oe=699D75D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3jGHwalybA_A-P7cAKUykQU4NxGMkyDOAH7qlFyD5Bg&oe=699D9D7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGYGCjfj5irYoFT4e_zeNf2k-dKp_V1bCEPLUCBACV8w&oe=699D6D2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ0O44SFjhuXl7XvZ3MTl2p84Ra4CTD1-mz4p6D5h2BQ&oe=699D889A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvE4Bre8bhuBD--_dcx7Un15RJQJ1oO2iY2wBJHad3IA&oe=699D8576&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVe_lypZjFmR_Zz1tNYR9go6u0Np-WeADwG68J0ThOWQ&oe=699D8D9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFX40yJg0e2Bm4mfz1yyA60POTuporFvRZYpV4nK-TTiQ&oe=699D7207&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRTXlVne37YDXduAWrUczsa0XbxZMP-sKcZZwYLIpKOg&oe=699D874E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF60f0dsv4mB3pdkTXutYaI6fyYhLC2Dh28zBhLIti-g&oe=699D8BF7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL9Vmp-pnhoImlM9Wwthy4M6lxdm2lLqYfk5VtR8TXHg&oe=699D6EE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE71y5dQsJXChAF9qbIfwtMk5hnJaeD9q5_htRyJ5tM2w&oe=699D9C4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhSSilZsd_RNdrYRzwpBIIYxycYwJaxag6AmL_9CNEaA&oe=699D72A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUXKtO4AQUF-rGcAvtsAesj0WMWXJjaLJ23FrieGJfhA&oe=699D7F52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFq6WQE5i1JEbIryVv8rqRM8iqdVuCamOd68XhRKfS2kg&oe=699D7F65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzBp7BKxWeHahL6irNZBBJtW2wllks8vuhyHMJv985bQ&oe=699D8E45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkzZkJ0o8UcWkQG4R0vIZ4v39sH-z1kI5ShGoKvSUsxQ&oe=699D7B23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5lHUGF7Pk0zAa0gkXCXSy6d1_tbeM7TRelwB7JBsnWA&oe=699D8EB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-14 10:31:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15916, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcqzDwVj_VtWofWS2i7pXN3Y5nsY4zx6IEtkKam-f8ng&oe=699D7A9B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLvbtD0zqMLTkee9qZ5aEbvRby7-xdKkOHB-QJWKHy7w&oe=699D9AA6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H3qlwdKcpevXr1swUiXcK9tC4awToKG32Uc4V0odYQ&oe=699D94D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUEerjawND73iP6S0e6NXs6MVNjxkYqa1Rw6s_2fxjA&oe=699D9AFB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJBXXiuMfYdHfXL2sIs_xlxgpx3Nob2YuyK4EECRPzrg&oe=699D83C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIwSdonBDmGWgDslLW_OvwBQcBans8JGPH-m3Oq5pDUg&oe=699D9D43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wECXfD2fnwq8PsAXeoWBlhVXtU3pUAYXZE9uvGRQmyQHQ&oe=699D841C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8CjKS3WkhLyX3XnMEZkm_3_3La1JH4YwUblwj1B3N8A&oe=699D9455&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHljw6PZyZKn7iLJ0tzcyPQ_-__jiQTptT4L5NrOsS_yg&oe=699D8255&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0irGk0-rSONOzN5_8UIBLdxC5ChUnuts92OQg5PHrzg&oe=699D8FD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF10O_YcFB3fw7Ks_5xSsU-5sskopU4d0LDU6GBL7HJw&oe=699D8A8B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wFVU46BKOfWCWBLSjF-E2ObtV-0NSDZyAVawskALgyyRQ&oe=699D8D86&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzbfScdQN5YyhOtsc4u9PDDz3h23W9xMSOdVlHzNu-Hg&oe=699D8B22&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHludRevAEISQk9_5DoydIHOHrY_8-ULTJ5bDUar0KFdA&oe=699D8F8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wF48uKexNFwujZGd82uUGd-soi9Orh19fa0pA5-hOx-xg&oe=699D883B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7_sGEQQCuPz6IjgSQdurBrKcEhjlKkZQ_4bsANLQ35A&oe=699D89DC&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7LHEzk-Tetg7Q_UzhnvsA70TLsyBFTZtbzHj4JZL3lA&oe=699D74F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoBPi0aXsoHi09LZzSpVteImzHqW6kfSaF2-ZhephvQQ&oe=699D8949&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYAb2tpkS1yAVvCovMbzGQEhfnxQJ6YMkRmmO1e-szaw&oe=699D6F8F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsYg_UaT2B7xoA9E-IYtlfIBDVg22Ml1sLgKJk-uX0Ag&oe=699D8958&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoMnl8-m-iViK2HXU2Wqp3JwS95YCKSoE5FytB6M6r2w&oe=699D7DD6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDEd0skqoH83WOx5gZnjhRdbRowbKpEXFkNiQEjh7s6Q&oe=699D9C9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFT3j25ZgXkwXFjRP_cgKAO0l9NVlXK6zjdCcB_wUoz8A&oe=699DA036&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhEnITD8TVMnCtQpYF-9Ja-eppyyXH_iv15junRtJ_wA&oe=699D792F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlCQmWCApDp5m_jJrbbyItktRsdpruaBVva5yXVpKF2Q&oe=699D7FAB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfua6s6R48acviFNq5lkgFpEB3KxGVknHRBdoIevw63A&oe=699D768D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg9iv05pMaAiNq16ip4Wx-8pxx6CFvRZySvM9IS8UFxg&oe=699D7BBB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmVI_EkQ65zIuP7S5Uc4qIW1Y5hTPf_wRlpqGOTUbsPA&oe=699D9502&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wETl9bv3REzEbB6JX0Xpdff4VbVM3OX9RUYWjxlAnS7cw&oe=699D7A55&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wHw1HvN5E1BzNlTi6igf9V0FGPGtL-Kxy725VjgF0vwxQ&oe=699D820C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVfyFPks7K-ir6kyC9opDZG7Hf2cw3LTNAlVyDAkzuJg&oe=699D999A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wFl9IJV8emffqG-NCcRLlysVsmzVrHmQ9ZG-h258_lT9A&oe=699D8B6F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-Aj4FAXex5XzG4bex_TtOVepz-vHybUmC0fIlYyDLw&oe=699D8FA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV_RBS0J7hjnqGrg7oNw-xG_cpczeMzXa8MohxSAHSug&oe=699D6FD0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGRSGTCWJp7sx_0xDESdBNxyShyvEcmd4UlYJEUCkPMw&oe=699D7DEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1k6vg4Eid271ApR-kLfA3U265hJeAYTkssQT8oZa-BQ&oe=699D783B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTtepYZBGJ1-V2QNCJy6gfdeemJP0h--aTkC51o9RpPw&oe=699D81A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNznJ2OoafqV8ve-mRoF_kQCLo8O7mBcQA-lOO_2WZXA&oe=699D852B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1jJZcoois4GrsNb0_lGZ2wrHLH6AEvVFYvlcVWkddWA&oe=699D8E64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1b_SvZC9MNyJOtoOcQx_k8PHWbnUHtN-SEs8rrJ938w&oe=699D7405&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wGKEtn_T0oMvsq9iAJMR0vs-oyIIjOOrysUteDVb6zhnw&oe=699D7BB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOGg00SR0y9Yc_TQmcb07sjLXGkNT-i3RbirznznWWXg&oe=699D9A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMrzjc3iSilrUDhPAvdtxiO7iwFC9DhjtjcseJ20j0Uw&oe=699D77D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7yRJFhW2laGO5qGZewyr-bM_36XIhBJWtgQd-9brvXg&oe=699D93D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH_uo6JRwCZ_zPFqmJYmSBDcUkbUeUgdmHBByACvOpzw&oe=699D99F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7IzuqpR3Y7_cGXKNjWmevLAmxaIvGEntWlqgyNZvUwQ&oe=699D7577&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSlamDXInftLNR6MAUJCyCbwDeoO1uoFh98n8spNHY3w&oe=699D84AA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRfrU4SISYyhrDJfBv3b-2D3JokCNjxiC8hDGw6dNKtg&oe=699D7DE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGaHz8nTWaouQ2HkIY1uIAreIj-SaAp3Lk5VnCtvaHBg&oe=699D834A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUlcTGZYGOQNyjhmaOebC1fZkchSzV-6qFBrZMTLnu2A&oe=699D83BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZlrIUTfO3Zm9QDOzJV8eRRMwxgvuRub435YQmeWskDA&oe=699DA4AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxte9Gu86EYCnk_pxnoWrdYs9LCZ-L-3TI3-1YVvmmxg&oe=699DA3AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmwABlY6ZBymmAriC3Kbu9j2Y6tk70giWbr25zSKHE2w&oe=699D7CD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHg4mvzGA5oqDToSeVgKMnOzKp2jLu7M8sPRj-6SGXBXQ&oe=699D722E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-xDPMwiaMY7wDhFN1JieJHd9IXvX_WLcwVs9HqIJeA&oe=699D9D18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3nuvJbFvZZmB_H27T8Q1iOtUYJQbta7-dciLJ-tTQDg&oe=699D79D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_-f9oXDLnytRbQKMsk66zMYByCAXx5KJnrhl24ChSYw&oe=699D9C39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEytNxq3PktK8R_g7I5eaR0zplvmOL9vJIrFel1W8E8tA&oe=699D8EC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7t79yDhe-WMZvN8XdLQSyvgcOi0paltbjRPYAeRf6sA&oe=699D9C61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wHysaSYwzmeVQ18EQyOAGfBsrWuIjQATJsUHGJDarjIXA&oe=699D7BF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbD7bTfjIpCT8tFLUa4N2wr-cmoOIabeeV-7_qpLWUlw&oe=699D98F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJT4mGOJmIvw7f4l5Lg64wTG3Vmtt98hpr1CWSDXp5Dg&oe=699D6F80&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wExRgZe423Vw3WMX062mPhzU-zepeLHLyYgB1PEF3gJSA&oe=699D948F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPpYQJUxL_OaiUBkQEw8RNsLUuoZDuzjhDYstb3pG2kg&oe=699D87BE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5s4m8qw438CCyuW0_GQHFvCDcAec5vwXMVSZ9DDaG0Q&oe=699D8B42&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfkhuUImIljxA_-dB_m4OP-KryInLrKsxiTPoPuPuGQA&oe=699D788E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJ9zY3xACNSDHcFdU6MfjhVdOetAFXtBhA8iSOolexBg&oe=699D7F74&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYRosW8X2ugMOdePzlzNbA2Cyqtu-_sPeSv3TFGt5AMA&oe=699D9D52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgrt2pHYG5DNZmuTFBO1KAwush7X--s_eb6PVVFJ8zAQ&oe=699D9090&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxmYslZC_DIaxBx-8EC7nBUJXhKKgx_K66NIjzk3_1g&oe=699D847C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHFilawP4njuQiJD3DZsG9q_-KumCuK6xJDj4xCAieuQ&oe=699D87B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoyOth4wtfcgA4jDYrovhEeomAkAHSv1BwV6gSLBsPmw&oe=699D822F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wH8i0Uh5cXtXu8eD1wR3C5rp-IxahRdaqwxA5oJM6BYSQ&oe=699D76BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wEfHSxeY8HaP3UJrV2OrFhksG09898v2sjXwwJDmbpV2g&oe=699D8C5F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wExN8x-5EU4hr1KI8_MGGOa3Cx6o1anEcbUz1k79MkFBg&oe=699D905A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wHG4jaHSol1VkHYpUaozzGcb0LJ_NQg_t3TFORYn3Hh8A&oe=699D7B90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFnGYT8SZoSgRXZ6HtTfxIagYL7tg8Y5dh3i56ZZ6stw&oe=699D9784&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ4bhtj0WShUKgNQHlr9HA8xTs5aN9zSDkBIDRxEESUw&oe=699D9E17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGpw30XcgdNnJ7P2KqGM3KXrRVD2qQckmPWlOxaAZnBg&oe=699D9EBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfhtaFtnXQJ0diofAPP_XjIP0mtAA4E-Zv0kQDdXqojg&oe=699D8CD5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS1nsKe-srrDrvGd_Ovgds0_RCOIT_nI2cXYZfey5FQQ&oe=699D99CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDOfhTXz0XqLBLAPQl9u7qY3XDoNxVDPd9N_KFIHOQCg&oe=699D76F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX1hKlso5o-IIS4dYhrk5jZ2en3V4IG8C-OUTfGRqY2A&oe=699D8484&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQIC_0mD6fWYEpTbPEV3iZXSdP-UseBo0JPBBZcytZlw&oe=699D903D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOsUdhSMhKMseRGZUCDoTHZ9DmKAf-ASpxLuRPQAwcGA&oe=699D9465&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPQ3ADE6Se9wFfGN9HmK4UfNGdBF8iFQu4i_vQnhdgWA&oe=699D73BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4dJJqp79w9zv426M1j4MWwJmtq7CED7saP03LlZOWLQ&oe=699D9102&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHb2QCA6oXgwEJbTsU5KFdz2uyvRLOCrM6uNC2QQZe0IQ&oe=699D7FA1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmO8JIFhWUkA38BUrQh7ShZQSKFmWH7UcsEkKHqBMgJg&oe=699D7AC7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkByyuZsxH1LWVW7o0hCezQnbrOEUp6T1q8bGGtjLJSQ&oe=699DA067&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0h-aiaVBZXZWxV3CzI1VRCyLVoDwxDRzk2a5xNs1BIg&oe=699D8B80&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ9RP7CeX8LCAx7FE1Fn0sTY_Puky99fwxXLBaif_OUQ&oe=699DA31D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1djGVe8AQEpmfIjrJIdwMABe-wTLsplbzRpeDVpVgkA&oe=699D72C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGxNlHqvWWOfuxA5FPjz7FD0jRLZA6vTa8rt_CpUazFw&oe=699D6E63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wHXA2y0auEPxxJakZB6tAJFwoAqsq4Vj8iK7J2X4EtEUQ&oe=699D7EC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8KVPP3ed5ZTs4u6XIvdbdgCrRzSbIwQ9Wbk187LZD_A&oe=699D800A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wErefCWXG17DLNVUEFSR1bKUTJBFfQZdUmASFdVk3xtLQ&oe=699D7B11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS3XCNTTGrPYhMuexxNgNuzKWJVn6jwOZ41CO5A4hUOQ&oe=699D8CDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wGg-i25DlGiYG-gH5-ISjNXIji1dx07wrG2luHWucZKWQ&oe=699D6EB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNq2oggfLeGdDeB88lJ5sHOMA9yi7_NFKu6IswP84BwQ&oe=699D8B14&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wG9cmHZ1jkw6du9zgumpqRdYZnE6ZS6qwoShpPslMrZgw&oe=699D75D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3jGHwalybA_A-P7cAKUykQU4NxGMkyDOAH7qlFyD5Bg&oe=699D9D7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGYGCjfj5irYoFT4e_zeNf2k-dKp_V1bCEPLUCBACV8w&oe=699D6D2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ0O44SFjhuXl7XvZ3MTl2p84Ra4CTD1-mz4p6D5h2BQ&oe=699D889A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFvE4Bre8bhuBD--_dcx7Un15RJQJ1oO2iY2wBJHad3IA&oe=699D8576&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVe_lypZjFmR_Zz1tNYR9go6u0Np-WeADwG68J0ThOWQ&oe=699D8D9B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wFX40yJg0e2Bm4mfz1yyA60POTuporFvRZYpV4nK-TTiQ&oe=699D7207&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGRTXlVne37YDXduAWrUczsa0XbxZMP-sKcZZwYLIpKOg&oe=699D874E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF60f0dsv4mB3pdkTXutYaI6fyYhLC2Dh28zBhLIti-g&oe=699D8BF7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHL9Vmp-pnhoImlM9Wwthy4M6lxdm2lLqYfk5VtR8TXHg&oe=699D6EE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE71y5dQsJXChAF9qbIfwtMk5hnJaeD9q5_htRyJ5tM2w&oe=699D9C4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhSSilZsd_RNdrYRzwpBIIYxycYwJaxag6AmL_9CNEaA&oe=699D72A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUXKtO4AQUF-rGcAvtsAesj0WMWXJjaLJ23FrieGJfhA&oe=699D7F52&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wFq6WQE5i1JEbIryVv8rqRM8iqdVuCamOd68XhRKfS2kg&oe=699D7F65&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzBp7BKxWeHahL6irNZBBJtW2wllks8vuhyHMJv985bQ&oe=699D8E45&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkzZkJ0o8UcWkQG4R0vIZ4v39sH-z1kI5ShGoKvSUsxQ&oe=699D7B23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wG5lHUGF7Pk0zAa0gkXCXSy6d1_tbeM7TRelwB7JBsnWA&oe=699D8EB3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-14 10:31:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075924064,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:32:04.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:32:04'),
(15918, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771075924608,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:32:04.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:32:04'),
(15919, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771075924064,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:32:04.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:32:04'),
(15920, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771075924608,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:32:04.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:32:04'),
(15921, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"id\":\"A556F6108C7A7A1B029323AA9C6F2123\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771076525248,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:42:05.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:42:05'),
(15922, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"id\":\"A556F6108C7A7A1B029323AA9C6F2123\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771076525248,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:42:05.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:42:05'),
(15923, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A51150FAF1D66B2B77E7B4DF2EFF1630\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771077350516,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:55:50.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:55:50'),
(15924, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A51150FAF1D66B2B77E7B4DF2EFF1630\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771077350516,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:55:50.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:55:51'),
(15925, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:17'),
(15926, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":false,\"id\":\"A5DF8019696E52271C28610F40CC5357\"},\"pushName\":\"Sandro Almada - Instalações de Gás\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/19965545_1442559527569475_2733254900813815667_n.enc?ccb=11-4&oh=01_Q5Aa3wEumUntuTB-F6mjNy3gDaJAt7dcH8hyx5_TF1YP7zTAPw&oe=69B80848&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9BfmfAbpogHOXAt7W9g1bOV5ohSXSI\\/NlzJnfWsUGt0=\",\"fileLength\":\"70111\",\"height\":1600,\"width\":460,\"mediaKey\":\"eOVP0KZP2Z\\/orIPuuESTF7Hs4i\\/rrlrqvA\\/yZNbFupw=\",\"fileEncSha256\":\"+90J3gYSFW2RnXLNCOB7nWa72NvqbInN5XlLEygfAcU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/19965545_1442559527569475_2733254900813815667_n.enc?ccb=11-4&oh=01_Q5Aa3wEumUntuTB-F6mjNy3gDaJAt7dcH8hyx5_TF1YP7zTAPw&oe=69B80848&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771077436\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAQAAAAAAAAAAAAAAAwECBAUBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPuenNAJVmKNEupVOmiXcdLNEQVB\\/8QAIBAAAgICAgMBAQAAAAAAAAAAAQIAEQMhEBIiMUETMv\\/aAAgBAQABPwDEuXHnyu2S1n6rYFHgaPlrlVS2bfudgOLUE3AyWPfBCb3FOqvg40Ukn6YExBr+1BVajdTd0ZjKVsC+D\\/TDWp4g+xMbFgbNzq9mdTqhAKE\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"u0e7abxq0V5ClA7Sby246JT0ZejTGjyqkOOvHh+IieLdlykygFWlgQ==\",\"scanLengths\":[4713,32893,15413,17092],\"midQualityFileSha256\":\"lyc032Pp1NP5F0dLsEOaFJuNe4PLfES8l+UlcSMsQrM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"JPbjVeJfOubwYQ==\",\"senderTimestamp\":\"1770659067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"la1j10jXVoKlENiFgNaO0d35tVF7ndj1qfkGSnkXpmg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771077437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:57:17'),
(15927, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"pushName\":\"Sandro Almada - Instalações de Gás\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:17'),
(15928, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:17'),
(15929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:18'),
(15930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"pushName\":\"Sandro Almada - Instalações de Gás\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:18'),
(15931, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":false,\"id\":\"A5DF8019696E52271C28610F40CC5357\"},\"pushName\":\"Sandro Almada - Instalações de Gás\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/19965545_1442559527569475_2733254900813815667_n.enc?ccb=11-4&oh=01_Q5Aa3wEumUntuTB-F6mjNy3gDaJAt7dcH8hyx5_TF1YP7zTAPw&oe=69B80848&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"9BfmfAbpogHOXAt7W9g1bOV5ohSXSI\\/NlzJnfWsUGt0=\",\"fileLength\":\"70111\",\"height\":1600,\"width\":460,\"mediaKey\":\"eOVP0KZP2Z\\/orIPuuESTF7Hs4i\\/rrlrqvA\\/yZNbFupw=\",\"fileEncSha256\":\"+90J3gYSFW2RnXLNCOB7nWa72NvqbInN5XlLEygfAcU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/19965545_1442559527569475_2733254900813815667_n.enc?ccb=11-4&oh=01_Q5Aa3wEumUntuTB-F6mjNy3gDaJAt7dcH8hyx5_TF1YP7zTAPw&oe=69B80848&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771077436\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAQAAAAAAAAAAAAAAAwECBAUBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPuenNAJVmKNEupVOmiXcdLNEQVB\\/8QAIBAAAgICAgMBAQAAAAAAAAAAAQIAEQMhEBIiMUETMv\\/aAAgBAQABPwDEuXHnyu2S1n6rYFHgaPlrlVS2bfudgOLUE3AyWPfBCb3FOqvg40Ukn6YExBr+1BVajdTd0ZjKVsC+D\\/TDWp4g+xMbFgbNzq9mdTqhAKE\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"u0e7abxq0V5ClA7Sby246JT0ZejTGjyqkOOvHh+IieLdlykygFWlgQ==\",\"scanLengths\":[4713,32893,15413,17092],\"midQualityFileSha256\":\"lyc032Pp1NP5F0dLsEOaFJuNe4PLfES8l+UlcSMsQrM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"JPbjVeJfOubwYQ==\",\"senderTimestamp\":\"1770659067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"la1j10jXVoKlENiFgNaO0d35tVF7ndj1qfkGSnkXpmg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771077437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:57:18'),
(15932, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:17.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:18'),
(15933, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"presences\":{\"52660711477460@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:18.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:18'),
(15934, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"presences\":{\"52660711477460@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:18.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:19'),
(15935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:22'),
(15936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":false,\"id\":\"A574AA2A862139E2F6BB2C45375786BE\"},\"pushName\":\"Sandro Almada - Instalações de Gás\",\"message\":{\"conversation\":\"Feito 👍🏻\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"JPbjVeJfOubwYQ==\",\"senderTimestamp\":\"1770659067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XERHym2vVvw3jpeH28fNbXc8l0R2xlEfRk4WH23Fguc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771077442,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 10:57:22'),
(15937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"pushName\":\"Sandro Almada - Instalações de Gás\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:22'),
(15938, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:22'),
(15939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 10:57:23'),
(15940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"pushName\":\"Sandro Almada - Instalações de Gás\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:23'),
(15941, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":false,\"id\":\"A574AA2A862139E2F6BB2C45375786BE\"},\"pushName\":\"Sandro Almada - Instalações de Gás\",\"message\":{\"conversation\":\"Feito 👍🏻\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"JPbjVeJfOubwYQ==\",\"senderTimestamp\":\"1770659067\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XERHym2vVvw3jpeH28fNbXc8l0R2xlEfRk4WH23Fguc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771077442,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 10:57:23'),
(15942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T10:57:22.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 10:57:23'),
(15943, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:17'),
(15944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A514F3117F637AEA713F1725D7F90CA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771078937,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:17'),
(15945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:17'),
(15946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:17'),
(15947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A514F3117F637AEA713F1725D7F90CA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078937757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:17'),
(15948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A514F3117F637AEA713F1725D7F90CA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078937757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:18'),
(15949, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A514F3117F637AEA713F1725D7F90CA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771078937,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:18'),
(15950, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:17.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:18'),
(15951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:19.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:19'),
(15952, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A53C3178F4243BFF1DF1DE7CA5B91942\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771078937969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771078939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:19.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:19'),
(15953, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:19.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:19'),
(15954, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:19.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:20'),
(15955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A53C3178F4243BFF1DF1DE7CA5B91942\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771078937969\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771078939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:19.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:20'),
(15956, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"52660711477460@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:19.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:20'),
(15957, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:20'),
(15958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A5EDC32C8E827FD1F0D560475994EC6C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771078938600\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771078939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:20'),
(15959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:20'),
(15960, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:20'),
(15961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"52660711477460@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580967899_906974498522766_2365493037245728581_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6qfe2A0W_WtIYLtFWruiMJfg-76QfeUcaMX-i7a6r_g&oe=699D7C89&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:20'),
(15962, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"52660711477460@lid\",\"fromMe\":true,\"id\":\"A5EDC32C8E827FD1F0D560475994EC6C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"stickerSentTs\":\"1771078938600\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771078939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:20'),
(15963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A514F3117F637AEA713F1725D7F90CA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078940938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:21'),
(15964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A514F3117F637AEA713F1725D7F90CA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078940938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:20.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:21'),
(15965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A53C3178F4243BFF1DF1DE7CA5B91942\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078941495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:21.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:21'),
(15966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A5EDC32C8E827FD1F0D560475994EC6C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078941504,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:21.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:21'),
(15967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A53C3178F4243BFF1DF1DE7CA5B91942\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078941495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:21.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:21'),
(15968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A5EDC32C8E827FD1F0D560475994EC6C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078941504,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:21.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:22'),
(15969, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A56179CDA21B90093E6A0DEA174F4C5E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771078945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:25.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:26'),
(15970, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:25.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:26'),
(15971, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:25.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:26'),
(15972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A56179CDA21B90093E6A0DEA174F4C5E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771078945,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:25.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:26'),
(15973, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:26.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:26'),
(15974, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:26.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:27'),
(15975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A56179CDA21B90093E6A0DEA174F4C5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078947276,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:27.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:27'),
(15976, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A56179CDA21B90093E6A0DEA174F4C5E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078947276,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:27.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:27'),
(15977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:28'),
(15978, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5B5F919B2DC96AE069C81E158A2C80D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Deu certo?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771078948,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:28'),
(15979, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:28'),
(15980, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":true,\"id\":\"A5B5F919B2DC96AE069C81E158A2C80D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Deu certo?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771078948,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:28'),
(15981, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B5F919B2DC96AE069C81E158A2C80D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078948636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:22:28'),
(15982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B5F919B2DC96AE069C81E158A2C80D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771078948636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:22:29'),
(15983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:22:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(15984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:22:28.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:22:29'),
(15985, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A5EDC32C8E827FD1F0D560475994EC6C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079043533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:24:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:24:03'),
(15986, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A53C3178F4243BFF1DF1DE7CA5B91942\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079043539,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:24:03.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:24:03'),
(15987, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A514F3117F637AEA713F1725D7F90CA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079043544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:24:03.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:24:03'),
(15988, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A5EDC32C8E827FD1F0D560475994EC6C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079043533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:24:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:24:04'),
(15989, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A53C3178F4243BFF1DF1DE7CA5B91942\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079043539,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:24:03.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:24:04'),
(15990, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"52660711477460@lid\",\"id\":\"A514F3117F637AEA713F1725D7F90CA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079043544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:24:03.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:24:04'),
(15991, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B5F919B2DC96AE069C81E158A2C80D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079164847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:04.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:26:05'),
(15992, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A56179CDA21B90093E6A0DEA174F4C5E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079164855,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:04.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:26:05'),
(15993, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:07.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:07'),
(15994, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:07.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:07'),
(15995, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A5B5F919B2DC96AE069C81E158A2C80D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079164847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:04.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:26:08'),
(15996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"227693480124635@lid\",\"id\":\"A56179CDA21B90093E6A0DEA174F4C5E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079164855,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:04.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:26:08'),
(15997, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:17.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:17'),
(15998, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:17.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:17'),
(15999, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:24.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:24'),
(16000, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:24.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:24'),
(16001, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:26.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:26'),
(16002, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"presences\":{\"227693480124635@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:26.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:26'),
(16003, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:27'),
(16004, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:27'),
(16005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACB6C03E8044149DC37BEE9C762E5B8E\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Oi,  agora estou sem internet 😧\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AqJoWYJIOweulevnsGy+V1\\/DhAtmhZetEce80ImMVhA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771079187,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:26:27'),
(16006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:27'),
(16007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:26:27'),
(16008, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"227693480124635@lid\",\"pushName\":\"RossianeFalcão\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:28'),
(16009, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"227693480124635@lid\",\"fromMe\":false,\"id\":\"ACB6C03E8044149DC37BEE9C762E5B8E\"},\"pushName\":\"RossianeFalcão\",\"message\":{\"conversation\":\"Oi,  agora estou sem internet 😧\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AqJoWYJIOweulevnsGy+V1\\/DhAtmhZetEce80ImMVhA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771079187,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:26:28'),
(16010, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"227693480124635@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345054775_5635415043225877_1024556235519483456_n.jpg?ccb=11-4&oh=01_Q5Aa3wGwa1doTtNpF2TKWc0sB3KbHWuIM6yRunRVHKZI3gUHTg&oe=699D98FF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:26:27.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:26:28'),
(16011, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04342F247EF256E1173\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Renovação Concluída com Sucesso!*\\n\\nOlá, *jou*!\\nSua assinatura foi renovada e está ativa até:\\n\\n📅 *Data de expiração:*\\n26\\/01\\/2026\\n\\nAgradecemos sua confiança em nossos serviços!\\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\\n\\nAproveite o entretenimento sem limites! 🎁🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771079372,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:29:32.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:29:32'),
(16012, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04342F247EF256E1173\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Renovação Concluída com Sucesso!*\\n\\nOlá, *jou*!\\nSua assinatura foi renovada e está ativa até:\\n\\n📅 *Data de expiração:*\\n26\\/01\\/2026\\n\\nAgradecemos sua confiança em nossos serviços!\\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\\n\\nAproveite o entretenimento sem limites! 🎁🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771079372,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:29:32.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:29:32'),
(16013, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB04342F247EF256E1173\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771079373895,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:29:33.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:29:33'),
(16014, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB04342F247EF256E1173\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771079373895,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:29:33.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:29:34'),
(16015, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB04342F247EF256E1173\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079384394,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:29:44.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:29:44'),
(16016, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB04342F247EF256E1173\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079384394,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:29:44.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:29:44'),
(16017, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5EDC883FC7A4FEA240FE42B4674C848\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079405798,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:05.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:30:06'),
(16018, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A59D9AD56F6F896B3E089153A7F586B5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079405793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:05.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:30:06'),
(16019, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A59D9AD56F6F896B3E089153A7F586B5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079405793,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:05.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:30:06'),
(16020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"54030789287976@lid\",\"id\":\"A5EDC883FC7A4FEA240FE42B4674C848\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771079405798,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:05.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:30:06'),
(16021, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"presences\":{\"54030789287976@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:07.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:30:07'),
(16022, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"presences\":{\"54030789287976@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:07.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:30:07'),
(16023, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":false,\"id\":\"A50621FCD6AECE7E52AFF41D2B8B55C7\"},\"pushName\":\"Cacau (Claudia)\",\"message\":{\"conversation\":\"Bom dia! Eu que agradeço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Xte4FqzGUjQhvCZacj6QOtrHBIQ3+Dxm9iA6ktmCYr8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771079417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:17.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:30:17'),
(16024, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:17.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:30:17'),
(16025, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"pushName\":\"Cacau (Claudia)\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:18.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:30:18'),
(16026, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:17.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:30:18'),
(16027, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"54030789287976@lid\",\"pushName\":\"Cacau (Claudia)\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:18.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:30:18'),
(16028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:18.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:30:18'),
(16029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"54030789287976@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:18.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:30:18'),
(16030, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"54030789287976@lid\",\"fromMe\":false,\"id\":\"A50621FCD6AECE7E52AFF41D2B8B55C7\"},\"pushName\":\"Cacau (Claudia)\",\"message\":{\"conversation\":\"Bom dia! Eu que agradeço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Xte4FqzGUjQhvCZacj6QOtrHBIQ3+Dxm9iA6ktmCYr8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771079417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:30:17.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:30:19'),
(16031, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:05.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:05'),
(16032, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:05.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:05'),
(16033, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:10'),
(16034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:10'),
(16035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:10'),
(16036, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:10'),
(16037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC6359350D2ED5D272C03EEF00EED1D4\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago 4791063914\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cc+4dRcWjJp6uCeKqX66uKGSC3XUaO19Dstr23hbNyk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771079470,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:31:10'),
(16038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:11.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:11'),
(16039, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:11'),
(16040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:11.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:11'),
(16041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:11'),
(16042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:11.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:11'),
(16043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC6359350D2ED5D272C03EEF00EED1D4\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago 4791063914\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cc+4dRcWjJp6uCeKqX66uKGSC3XUaO19Dstr23hbNyk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771079470,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:10.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:31:11'),
(16044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:11.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:12'),
(16045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EDB8BFB5B913AFC99B4D76A9B1E8C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88736},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88736},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771079499,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:40.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:31:40'),
(16046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:40.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:40'),
(16047, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:40.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:40'),
(16048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:40.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:31:40'),
(16049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:40.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:31:40'),
(16050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EDB8BFB5B913AFC99B4D76A9B1E8C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88736},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88736},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771079499,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:31:40.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:31:41'),
(16051, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58E52F7AF8077DE4D8C2ECDB6A5B0C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88759},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88759},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771079521,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:32:01.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:32:01'),
(16052, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:32:01.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:32:01'),
(16053, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:32:01.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:32:01'),
(16054, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:32:01.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:32:02'),
(16055, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:32:01.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:32:02'),
(16056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58E52F7AF8077DE4D8C2ECDB6A5B0C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88759},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88759},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771079521,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:32:01.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:32:04'),
(16057, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:33:07');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16058, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A58DC6133709DBA5305BB8A69F9B0E2E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771079587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:33:07'),
(16059, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:33:08'),
(16060, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:33:08'),
(16061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A58DC6133709DBA5305BB8A69F9B0E2E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771079587981,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:33:08'),
(16062, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:33:08'),
(16063, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A58DC6133709DBA5305BB8A69F9B0E2E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771079587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:33:09'),
(16064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A58DC6133709DBA5305BB8A69F9B0E2E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771079587981,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:33:07.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:33:09'),
(16065, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:21.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:21'),
(16066, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:21.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:21'),
(16067, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:28.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:28'),
(16068, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:28.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:28'),
(16069, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:38.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:38'),
(16070, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:38.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:39'),
(16071, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:43'),
(16072, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:43'),
(16073, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:43'),
(16074, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:43'),
(16075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:43'),
(16076, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACA7F6A3361B0451566AFC5FE666E3F2\"},\"pushName\":\"Daniele\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oi Jhony ou Carol qual valor?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EZsSYZx+W9GVhUy4p5fu7s65QbB+rgigV4H4XaiRm7g=\"}},\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771079923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:38:44'),
(16077, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:38:44'),
(16078, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:38:44'),
(16079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:44'),
(16080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:38:45'),
(16081, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACA7F6A3361B0451566AFC5FE666E3F2\"},\"pushName\":\"Daniele\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oi Jhony ou Carol qual valor?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EZsSYZx+W9GVhUy4p5fu7s65QbB+rgigV4H4XaiRm7g=\"}},\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771079923,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:38:45'),
(16082, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:38:43.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:38:45'),
(16083, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:41:26'),
(16084, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A50F3B84FFC78292B0E8087CDCBC9CED\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080086,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:41:26'),
(16085, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:41:26'),
(16086, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A50F3B84FFC78292B0E8087CDCBC9CED\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080086570,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:41:26'),
(16087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A50F3B84FFC78292B0E8087CDCBC9CED\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080086,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:41:26'),
(16088, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A50F3B84FFC78292B0E8087CDCBC9CED\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080086570,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:41:27'),
(16089, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:41:27'),
(16090, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5116D6C2E4746146B5C3B26850A41C1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td bem\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080087,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:41:27'),
(16091, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:41:27'),
(16092, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5116D6C2E4746146B5C3B26850A41C1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td bem\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080087,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:41:27'),
(16093, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:41:28'),
(16094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:41:28'),
(16095, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:41:28'),
(16096, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5116D6C2E4746146B5C3B26850A41C1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080087599,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:41:28'),
(16097, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A544C10EA201F2C363186EB35673590D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080088,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:28.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:41:28'),
(16098, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:29.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:41:29'),
(16099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:28.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:41:29'),
(16100, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:29.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:41:29'),
(16101, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A544C10EA201F2C363186EB35673590D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080088,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:28.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:41:29'),
(16102, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:28.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:41:29'),
(16103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A544C10EA201F2C363186EB35673590D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080089163,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:29.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:41:30'),
(16104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A544C10EA201F2C363186EB35673590D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080089163,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:29.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:41:30'),
(16105, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5116D6C2E4746146B5C3B26850A41C1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080087599,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:27.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:41:30'),
(16106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:41:26.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:41:30'),
(16107, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5006E74FB794AA61D4ED03AFF360C6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89416},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89416},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080178,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:42:58.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:42:59'),
(16108, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:42:58.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:42:59'),
(16109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:42:59.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:42:59'),
(16110, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:42:58.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:42:59'),
(16111, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:42:59.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:42:59'),
(16112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5006E74FB794AA61D4ED03AFF360C6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89416},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89416},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080178,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:42:58.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:42:59'),
(16113, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A58DC6133709DBA5305BB8A69F9B0E2E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771080249283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:09.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:44:09'),
(16114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A58DC6133709DBA5305BB8A69F9B0E2E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771080249283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:09.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:44:10'),
(16115, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:10.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:10'),
(16116, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:10.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:10'),
(16117, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:13'),
(16118, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:13'),
(16119, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC53A159EC154385DB39DBD1047F0F38\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/Pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T9F5J2A4ZoF9DQB+4gAT2bBs8E9DVc6aSYsdRb\\/5yiU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771080253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:44:13'),
(16120, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:13'),
(16121, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:13'),
(16122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:14'),
(16124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC53A159EC154385DB39DBD1047F0F38\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/Pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"T9F5J2A4ZoF9DQB+4gAT2bBs8E9DVc6aSYsdRb\\/5yiU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771080253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:13.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:44:14'),
(16125, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:22'),
(16126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:22'),
(16127, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A53AB7B2111F414CF6BB6E8B449B5A89\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080262,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:44:22'),
(16128, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53AB7B2111F414CF6BB6E8B449B5A89\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080262828,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:44:22'),
(16129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:23'),
(16130, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wHyLzHCDleYVyUsFTk3XLWljWJ3Ej4BKPuWgEBgnHNklg&oe=699D8E87&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:23'),
(16131, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53AB7B2111F414CF6BB6E8B449B5A89\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771080262828,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:44:23'),
(16132, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A53AB7B2111F414CF6BB6E8B449B5A89\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771080262,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:22.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:44:23'),
(16133, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:32.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:32'),
(16134, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:32.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:32'),
(16135, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:32.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:44:33'),
(16136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D862904EAED535E5E71E04A03B8E6C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89510},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89510},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080272,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:32.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:44:33'),
(16137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:32.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:44:33'),
(16138, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D862904EAED535E5E71E04A03B8E6C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89510},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89510},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080272,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:44:32.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:44:33'),
(16139, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A524D635CE16B2CDF3A54A0AA3A217B7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89602},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89602},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080363,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:46:04.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:46:04'),
(16140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:46:04.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:46:04'),
(16141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:46:04.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:46:04'),
(16142, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:46:04.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:46:04'),
(16143, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:46:04.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:46:04'),
(16144, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A524D635CE16B2CDF3A54A0AA3A217B7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89602},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":89602},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080363,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:46:04.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:46:07'),
(16145, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208520813277405@lid\",\"presences\":{\"208520813277405@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:31.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:53:32'),
(16146, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208520813277405@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:53:32'),
(16147, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208520813277405@lid\",\"fromMe\":false,\"id\":\"ACD10CA399FBF751172E2CFC6ABAFCDD\"},\"pushName\":\"Luana\",\"message\":{\"extendedTextMessage\":{\"text\":\"😮\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G9gRJWqmbPjCGJLvxTdISdEmdiB\\/qZ\\/dpp1hTueCOhY=\"}},\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080811,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:53:32'),
(16148, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208520813277405@lid\",\"presences\":{\"208520813277405@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:31.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:53:32'),
(16149, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208520813277405@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:53:32'),
(16150, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208520813277405@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516447440_803904285580315_7715802813702708178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSnW58BtDMeISsU1oafJZ9gBoQzqh5Xei0BGsQQttUVg&oe=699D892F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:53:32'),
(16151, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208520813277405@lid\",\"pushName\":\"Luana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516447440_803904285580315_7715802813702708178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSnW58BtDMeISsU1oafJZ9gBoQzqh5Xei0BGsQQttUVg&oe=699D892F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:53:32'),
(16152, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:53:32'),
(16153, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208520813277405@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516447440_803904285580315_7715802813702708178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSnW58BtDMeISsU1oafJZ9gBoQzqh5Xei0BGsQQttUVg&oe=699D892F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:53:32'),
(16154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:53:32'),
(16155, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208520813277405@lid\",\"fromMe\":false,\"id\":\"ACD10CA399FBF751172E2CFC6ABAFCDD\"},\"pushName\":\"Luana\",\"message\":{\"extendedTextMessage\":{\"text\":\"😮\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G9gRJWqmbPjCGJLvxTdISdEmdiB\\/qZ\\/dpp1hTueCOhY=\"}},\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771080811,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:53:32'),
(16156, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208520813277405@lid\",\"pushName\":\"Luana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516447440_803904285580315_7715802813702708178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSnW58BtDMeISsU1oafJZ9gBoQzqh5Xei0BGsQQttUVg&oe=699D892F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:53:32.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:53:33'),
(16157, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208520813277405@lid\",\"fromMe\":true,\"id\":\"A506AA763964B355A7171ACF94F1395D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635043541_1393280772007193_6020315122628423710_n.enc?ccb=11-4&oh=01_Q5Aa3wFaPn_2v_YivZ67e6bZ2IIDpVa4Do4bxlzZngcaXU3spQ&oe=69B8047E&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"\\/T+qtku5TpNxCdlm2rPBVP+Tfcw9iwAWfD\\/k2Q1LcxU=\",\"mediaKey\":\"NUkIBmqff\\/ye13GAfhE5fTslQ4\\/2XhOPyDxkV+U\\/XsA=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635043541_1393280772007193_6020315122628423710_n.enc?ccb=11-4&oh=01_Q5Aa3wFaPn_2v_YivZ67e6bZ2IIDpVa4Do4bxlzZngcaXU3spQ&oe=69B8047E&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1771081151\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"3f0bFuqpUE81Ow==\",\"isAnimated\":true,\"stickerSentTs\":\"1771081151085\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771081152,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:12.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:59:12'),
(16158, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208520813277405@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:12.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:12'),
(16159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208520813277405@lid\",\"pushName\":\"Luana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516447440_803904285580315_7715802813702708178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSnW58BtDMeISsU1oafJZ9gBoQzqh5Xei0BGsQQttUVg&oe=699D892F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:12.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:12'),
(16160, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"208520813277405@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:12.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:12'),
(16161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208520813277405@lid\",\"pushName\":\"Luana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516447440_803904285580315_7715802813702708178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSnW58BtDMeISsU1oafJZ9gBoQzqh5Xei0BGsQQttUVg&oe=699D892F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:12.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:13'),
(16162, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"208520813277405@lid\",\"fromMe\":true,\"id\":\"A506AA763964B355A7171ACF94F1395D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635043541_1393280772007193_6020315122628423710_n.enc?ccb=11-4&oh=01_Q5Aa3wFaPn_2v_YivZ67e6bZ2IIDpVa4Do4bxlzZngcaXU3spQ&oe=69B8047E&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"\\/T+qtku5TpNxCdlm2rPBVP+Tfcw9iwAWfD\\/k2Q1LcxU=\",\"mediaKey\":\"NUkIBmqff\\/ye13GAfhE5fTslQ4\\/2XhOPyDxkV+U\\/XsA=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635043541_1393280772007193_6020315122628423710_n.enc?ccb=11-4&oh=01_Q5Aa3wFaPn_2v_YivZ67e6bZ2IIDpVa4Do4bxlzZngcaXU3spQ&oe=69B8047E&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1771081151\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"3f0bFuqpUE81Ow==\",\"isAnimated\":true,\"stickerSentTs\":\"1771081151085\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771081152,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:12.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:59:13'),
(16163, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208520813277405@lid\",\"id\":\"A506AA763964B355A7171ACF94F1395D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771081154863,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:14.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:59:14'),
(16164, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208520813277405@lid\",\"id\":\"A506AA763964B355A7171ACF94F1395D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771081154863,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:14.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:59:15'),
(16165, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A50F3B84FFC78292B0E8087CDCBC9CED\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081166662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:26.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:59:26'),
(16166, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5116D6C2E4746146B5C3B26850A41C1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081166657,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:26.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:59:27'),
(16167, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A544C10EA201F2C363186EB35673590D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081166652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:26.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:59:27'),
(16168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A50F3B84FFC78292B0E8087CDCBC9CED\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081166662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:26.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:59:27'),
(16169, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5116D6C2E4746146B5C3B26850A41C1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081166657,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:26.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:59:27'),
(16170, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A544C10EA201F2C363186EB35673590D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081166652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:26.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:59:27'),
(16171, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:33.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:33'),
(16172, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:33.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:33'),
(16173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:42.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:42'),
(16174, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:42.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:42'),
(16175, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:43.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:43'),
(16176, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:43.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:43'),
(16177, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:49'),
(16178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:49'),
(16179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACD653C8FE95DBB4F5317F0D701D9C78\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Tem desconto  pagando a vista?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2U7F+MBwNBQEpqcKVuJGL54GPkGZ2WDaeCyVSC\\/iP64=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771081189,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 11:59:49'),
(16180, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:49'),
(16181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 11:59:50'),
(16182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:50');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACD653C8FE95DBB4F5317F0D701D9C78\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Tem desconto  pagando a vista?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2U7F+MBwNBQEpqcKVuJGL54GPkGZ2WDaeCyVSC\\/iP64=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771081189,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 11:59:50'),
(16184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T11:59:49.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 11:59:50'),
(16185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208520813277405@lid\",\"id\":\"A506AA763964B355A7171ACF94F1395D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081378571,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:02:58.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:02:58'),
(16186, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208520813277405@lid\",\"id\":\"A506AA763964B355A7171ACF94F1395D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081378571,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:02:58.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:02:59'),
(16187, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5848EE82051222148EA5A7FBAB776EE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771081386174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:06.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:03:06'),
(16188, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:06.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:03:06'),
(16189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5848EE82051222148EA5A7FBAB776EE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771081386174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:06.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:03:06'),
(16190, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:06.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:03:06'),
(16191, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5848EE82051222148EA5A7FBAB776EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Quantas ampolas?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771081386,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:06.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:03:07'),
(16192, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:07.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:03:07'),
(16193, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5848EE82051222148EA5A7FBAB776EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Quantas ampolas?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771081386,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:06.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:03:07'),
(16194, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:03:07.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:03:07'),
(16195, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"146729018064953@lid\",\"id\":\"A52546D188A412BF72156617141C04EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081614833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:06:54.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:06:55'),
(16196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"146729018064953@lid\",\"id\":\"A52546D188A412BF72156617141C04EB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771081614833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:06:54.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:06:55'),
(16197, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:18:59'),
(16198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":false,\"id\":\"ACCDF59995B29AC556811B76F6065B78\"},\"pushName\":\"Elizei\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636396106_878059491733194_4674793176869490166_n.enc?ccb=11-4&oh=01_Q5Aa3wFCBDCJLCmSxzG3WBNpduOblRM6mKO-vn15PVODZEp02w&oe=69B80CF3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"V2tGwDMyGhLeogLqHz8zcBvatBRqrS1OygNHvo94xUo=\",\"fileLength\":\"50412\",\"height\":1383,\"width\":553,\"mediaKey\":\"l6QPNu2ENBFHYPA9BZfnUs254599g9kwIs7l00Us98E=\",\"fileEncSha256\":\"Trg8wsAzAYK9L\\/C5RgbZNCLoohZQQMwyBPEChjS1uLE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636396106_878059491733194_4674793176869490166_n.enc?ccb=11-4&oh=01_Q5Aa3wFCBDCJLCmSxzG3WBNpduOblRM6mKO-vn15PVODZEp02w&oe=69B80CF3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771082336\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAQIDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPd621oRlmV0SxympXSZ6xCgAAH\\/xAAhEAACAgEEAgMAAAAAAAAAAAABAgAREgMQEyEgMDFBUf\\/aAAgBAQABPwBnNspevyaGK3blt3bSvsSgPgQS5qOmVV4HH7ilF6uWNnC5KSYUUsGuVACLs3GALlmE5Fo9GDUUkCjtn4cfd+j\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"d6pzOtyYbJPBQhSDsMxkT\\/C0HVe1wdGoqDVQNBo9NvE3ePLFdrtJLg==\",\"scanLengths\":[4489,24872,9984,11067],\"midQualityFileSha256\":\"HL+LvAzaMP8\\/xJbpbTfQ5uEX4i2uDoZRiTbb3lsLLQA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770249548\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Lm8N2iAMQrEhe9KzIwY2ENrAp7E7SNP4BSN5JJQ0VL8=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771082339,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:18:59'),
(16199, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:18:59'),
(16200, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:18:59'),
(16201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:18:59'),
(16202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:18:59'),
(16203, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":false,\"id\":\"ACCDF59995B29AC556811B76F6065B78\"},\"pushName\":\"Elizei\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636396106_878059491733194_4674793176869490166_n.enc?ccb=11-4&oh=01_Q5Aa3wFCBDCJLCmSxzG3WBNpduOblRM6mKO-vn15PVODZEp02w&oe=69B80CF3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"V2tGwDMyGhLeogLqHz8zcBvatBRqrS1OygNHvo94xUo=\",\"fileLength\":\"50412\",\"height\":1383,\"width\":553,\"mediaKey\":\"l6QPNu2ENBFHYPA9BZfnUs254599g9kwIs7l00Us98E=\",\"fileEncSha256\":\"Trg8wsAzAYK9L\\/C5RgbZNCLoohZQQMwyBPEChjS1uLE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636396106_878059491733194_4674793176869490166_n.enc?ccb=11-4&oh=01_Q5Aa3wFCBDCJLCmSxzG3WBNpduOblRM6mKO-vn15PVODZEp02w&oe=69B80CF3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771082336\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAQIDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPd621oRlmV0SxympXSZ6xCgAAH\\/xAAhEAACAgEEAgMAAAAAAAAAAAABAgAREgMQEyEgMDFBUf\\/aAAgBAQABPwBnNspevyaGK3blt3bSvsSgPgQS5qOmVV4HH7ilF6uWNnC5KSYUUsGuVACLs3GALlmE5Fo9GDUUkCjtn4cfd+j\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"d6pzOtyYbJPBQhSDsMxkT\\/C0HVe1wdGoqDVQNBo9NvE3ePLFdrtJLg==\",\"scanLengths\":[4489,24872,9984,11067],\"midQualityFileSha256\":\"HL+LvAzaMP8\\/xJbpbTfQ5uEX4i2uDoZRiTbb3lsLLQA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770249548\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Lm8N2iAMQrEhe9KzIwY2ENrAp7E7SNP4BSN5JJQ0VL8=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771082339,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:19:00'),
(16204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:18:59.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:19:00'),
(16205, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"presences\":{\"83378317557940@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:20:44'),
(16206, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"presences\":{\"83378317557940@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.840Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:20:44'),
(16207, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":false,\"id\":\"ACECBD24F136EEC5E3C49E0A76014320\"},\"pushName\":\"Elizei\",\"message\":{\"extendedTextMessage\":{\"text\":\"Segue no Comprovante do mês de Fevereiro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770249548\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"l1W6Fh+fKhVI13faY0wYm9D1cwUcPjbioyhn7JvRldM=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771082443,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:20:44'),
(16208, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:20:44'),
(16209, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"presences\":{\"83378317557940@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:20:44'),
(16210, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"presences\":{\"83378317557940@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.840Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:20:44'),
(16211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:44.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:20:44'),
(16212, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:44.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:20:45'),
(16213, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:44.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:20:45'),
(16214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:44.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:20:45'),
(16215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:20:46'),
(16216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":false,\"id\":\"ACECBD24F136EEC5E3C49E0A76014320\"},\"pushName\":\"Elizei\",\"message\":{\"extendedTextMessage\":{\"text\":\"Segue no Comprovante do mês de Fevereiro\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770249548\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"l1W6Fh+fKhVI13faY0wYm9D1cwUcPjbioyhn7JvRldM=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392891\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771082443,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:20:43.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:20:46'),
(16217, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5848EE82051222148EA5A7FBAB776EE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771082506967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:46.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:21:47'),
(16218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5848EE82051222148EA5A7FBAB776EE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771082506967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:46.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:21:47'),
(16219, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:49.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:21:49'),
(16220, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:49.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:21:49'),
(16221, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:50.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:21:50'),
(16222, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:50.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:21:51'),
(16223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:51.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:21:51'),
(16224, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC3E1F350189CE6CA73BD337B9C5341C\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"04\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H52IpwItHNUNiFs81t+aT7CcP4J4o8mcMZc8uiMg9lY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771082510,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:50.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:21:51'),
(16225, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:51.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:21:51'),
(16226, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:51.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:21:51'),
(16227, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:51.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:21:52'),
(16228, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC3E1F350189CE6CA73BD337B9C5341C\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"04\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H52IpwItHNUNiFs81t+aT7CcP4J4o8mcMZc8uiMg9lY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771082510,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:21:50.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:21:53'),
(16229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083556363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:39:16'),
(16230, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636946844_1353339193505412_549726831079027572_n.enc?ccb=11-4&oh=01_Q5Aa3wHo9BhhliJal6FCsf-l3PiEVNIF_TYo_ykpY9GNOXbsIg&oe=69B7F43E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UPhpnzJk19ofWRzMuNZlCv0Sk3eoGVwtHakd6Apblow=\",\"fileLength\":\"16734\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"KkEcRapBn4icW3a7KRbEkWUFtbCbr2PaD6+5hncfxcg=\",\"fileEncSha256\":\"KMsZQuicFpwKm5NLUjaCvD8NwY85mnr9+Rr19MEpQcY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636946844_1353339193505412_549726831079027572_n.enc?ccb=11-4&oh=01_Q5Aa3wHo9BhhliJal6FCsf-l3PiEVNIF_TYo_ykpY9GNOXbsIg&oe=69B7F43E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771083549\",\"waveform\":\"AC1QTTRYRU9TQRgeOy0nSE4\\/QkUrQDs+SChSNkYwQC1aPkBBRWFMVFNKPDhcSls1Tz9YSTohHhorPBxeEiEdFg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771083555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:39:16'),
(16231, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:16'),
(16232, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:16'),
(16233, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:17'),
(16234, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:17'),
(16235, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083556363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:39:18'),
(16236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636946844_1353339193505412_549726831079027572_n.enc?ccb=11-4&oh=01_Q5Aa3wHo9BhhliJal6FCsf-l3PiEVNIF_TYo_ykpY9GNOXbsIg&oe=69B7F43E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UPhpnzJk19ofWRzMuNZlCv0Sk3eoGVwtHakd6Apblow=\",\"fileLength\":\"16734\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"KkEcRapBn4icW3a7KRbEkWUFtbCbr2PaD6+5hncfxcg=\",\"fileEncSha256\":\"KMsZQuicFpwKm5NLUjaCvD8NwY85mnr9+Rr19MEpQcY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636946844_1353339193505412_549726831079027572_n.enc?ccb=11-4&oh=01_Q5Aa3wHo9BhhliJal6FCsf-l3PiEVNIF_TYo_ykpY9GNOXbsIg&oe=69B7F43E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771083549\",\"waveform\":\"AC1QTTRYRU9TQRgeOy0nSE4\\/QkUrQDs+SChSNkYwQC1aPkBBRWFMVFNKPDhcSls1Tz9YSTohHhorPBxeEiEdFg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771083555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:16.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:39:18'),
(16237, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:21'),
(16238, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5C2E690FF568EC996AC6912F0361E3F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"No pix nw\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771083560,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:39:21'),
(16239, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:21'),
(16240, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C2E690FF568EC996AC6912F0361E3F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083561302,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:39:21'),
(16241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:21'),
(16242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:22'),
(16243, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C2E690FF568EC996AC6912F0361E3F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083561302,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:39:22'),
(16244, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D6FFE9E77DD14996A1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 74582207811789\\nMensagem: \\\"No pix nw\\\"\\n\\nUse: \\/aprovar 74582207811789  (para automático)\\nUse: \\/pago 74582207811789  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771083562,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:22.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:22'),
(16245, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D6FFE9E77DD14996A1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 74582207811789\\nMensagem: \\\"No pix nw\\\"\\n\\nUse: \\/aprovar 74582207811789  (para automático)\\nUse: \\/pago 74582207811789  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771083562,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:22.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:22'),
(16246, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5C2E690FF568EC996AC6912F0361E3F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"No pix nw\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771083560,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:21.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:39:22'),
(16247, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5164883F1443DE50190471400932ABB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083569438,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:29.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:39:29'),
(16248, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5164883F1443DE50190471400932ABB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083569438,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:29.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:39:30');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16249, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:30.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:30'),
(16250, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5164883F1443DE50190471400932ABB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual teu endereço\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771083570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:30.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:39:30'),
(16251, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:30.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:30'),
(16252, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5164883F1443DE50190471400932ABB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual teu endereço\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771083570,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:30.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:39:30'),
(16253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:30.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:39:31'),
(16254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:39:30.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:39:31'),
(16255, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:17'),
(16256, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:17'),
(16257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A500A11688388F71273C91110AC9C44D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boatarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771083616,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:17'),
(16258, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:17'),
(16259, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A5898BC6A21579C40E3499BB59281AA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771083616350\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771083617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:17'),
(16260, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:17'),
(16261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:17'),
(16262, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:18'),
(16263, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A500A11688388F71273C91110AC9C44D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boatarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771083616,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:18'),
(16264, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:18'),
(16265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:18'),
(16266, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A5898BC6A21579C40E3499BB59281AA5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFrcwAfHo9uOILH8a6s6-6UsUcnIxK7gxQv7bOnYcOONw&oe=69B7EDFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771083616350\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771083617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:18'),
(16267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83378317557940@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/212300782_5501168506578795_5422196966983247192_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhws2faxyzrgpKpeicucDnLCG2lVV27otFQOu30kaK3g&oe=699DADFC&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:19'),
(16268, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:19'),
(16269, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5527CE42828087974E70857E9F9F3FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083617818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:19'),
(16270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5527CE42828087974E70857E9F9F3FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083617818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:19'),
(16271, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:19'),
(16272, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83378317557940@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:20'),
(16273, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A5527CE42828087974E70857E9F9F3FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771083616965\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771083617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:20'),
(16274, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5898BC6A21579C40E3499BB59281AA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083617575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:20'),
(16275, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5898BC6A21579C40E3499BB59281AA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083617575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:21'),
(16276, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83378317557940@lid\",\"fromMe\":true,\"id\":\"A5527CE42828087974E70857E9F9F3FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"cXr2gGgeKa0VnBjMMF2DQqXwFl3\\/+GDaxWwjWTSVBeE=\",\"mediaKey\":\"VPCexenWj0sD1tISiE89uLwVnAuJqhMeb4wSt6JRuxM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634952981_907599244975224_3229481108113257873_n.enc?ccb=11-4&oh=01_Q5Aa3wEJ3iN3t5q94rZ59CcrJk1WthGsxVPqOu6FXnX2RxfTkw&oe=69B802E3&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1770905587\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771083616965\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1755392890\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771083617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:17.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:21'),
(16277, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC5A136CBFE78D1E36DD78F2F0D53127\"},\"pushName\":\"Carol Schultz\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634217255_2022228321840229_4723080812714290082_n.enc?ccb=11-4&oh=01_Q5Aa3wEfsMirmUyU1f6kGKQBTVtzBgPn5Fb_L7qQAuac6ufslw&oe=69B73AF4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jykECAMrcL7LwDGEASneiRJ\\/gE4A+YzsVlHjWsiL4O4=\",\"fileLength\":\"51316\",\"height\":1268,\"width\":582,\"mediaKey\":\"5G1CPY8WNqqdFPEcuqc04Pec1q4DcRFvBVLCX\\/RG2Aw=\",\"fileEncSha256\":\"vWm8zeaEkJ4jGKJaRqcJp7BnZLKzEnS+yGxNpo4v11Q=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634217255_2022228321840229_4723080812714290082_n.enc?ccb=11-4&oh=01_Q5Aa3wEfsMirmUyU1f6kGKQBTVtzBgPn5Fb_L7qQAuac6ufslw&oe=69B73AF4&_nc_sid=5e03e0&_nc_hot=1771083620\",\"mediaKeyTimestamp\":\"1771031547\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAAMBAAAAAAAAAAAAAAAABAUBAgMGAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAHEn52XSkuzWZlQWRWUpFDrQcNQd80+M1+fy1lzVTtHRUIGQr\\/\\/EACMQAAIDAAIBAwUAAAAAAAAAAAECAAMRBBIhBRAxEzJCUmH\\/2gAIAQEAAT8AA8Tm2lFVVPkyi19UWTPEEtRTye9pxRL7ePcoWvO0HhYJ6l+M4dHVu2giH4leEbOZTqq3XclP0VO5hMsANeiPyTXYv8i+o8Yp905fJ4zMpr+ZRyBYnVpaisM3X2DgXkbseixTkXtWimLYVftDzQyx+R+srZ7MUtLl6vk32oOPOSD3J96F+TP\\/xAAZEQADAAMAAAAAAAAAAAAAAAAAESABIWH\\/2gAIAQIBAT8AjSM8E4\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAREQIWH\\/2gAIAQMBAT8AyEO0XpY2N7\\/\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"entryPointConversionSource\":\"phone_number_hyperlink\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":134105},\"scansSidecar\":\"TO8GKfV5UeZXY4Vy752Sns1cydsR2e2yjgdYibt+LHwD0mcXf\\/\\/xEA==\",\"scanLengths\":[7608,16639,9445,17624],\"midQualityFileSha256\":\"lTW+nvJwqzd+oZcQIjbkHAJLqZel2WSRS5VsgEfFiW8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wyVQ3qT8q2EcqFZTE+7ybE1UP3toBXCBrW8D8LnAR1w=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"entryPointConversionSource\":\"phone_number_hyperlink\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":134105},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771083621,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:21'),
(16278, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:21'),
(16279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:21'),
(16280, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:21'),
(16281, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:40:22'),
(16282, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:22'),
(16283, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:22'),
(16284, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:22'),
(16285, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC5A136CBFE78D1E36DD78F2F0D53127\"},\"pushName\":\"Carol Schultz\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634217255_2022228321840229_4723080812714290082_n.enc?ccb=11-4&oh=01_Q5Aa3wEfsMirmUyU1f6kGKQBTVtzBgPn5Fb_L7qQAuac6ufslw&oe=69B73AF4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jykECAMrcL7LwDGEASneiRJ\\/gE4A+YzsVlHjWsiL4O4=\",\"fileLength\":\"51316\",\"height\":1268,\"width\":582,\"mediaKey\":\"5G1CPY8WNqqdFPEcuqc04Pec1q4DcRFvBVLCX\\/RG2Aw=\",\"fileEncSha256\":\"vWm8zeaEkJ4jGKJaRqcJp7BnZLKzEnS+yGxNpo4v11Q=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634217255_2022228321840229_4723080812714290082_n.enc?ccb=11-4&oh=01_Q5Aa3wEfsMirmUyU1f6kGKQBTVtzBgPn5Fb_L7qQAuac6ufslw&oe=69B73AF4&_nc_sid=5e03e0&_nc_hot=1771083620\",\"mediaKeyTimestamp\":\"1771031547\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAAMBAAAAAAAAAAAAAAAABAUBAgMGAQEBAQAAAAAAAAAAAAAAAAABAAL\\/2gAMAwEAAhADEAAAAHEn52XSkuzWZlQWRWUpFDrQcNQd80+M1+fy1lzVTtHRUIGQr\\/\\/EACMQAAIDAAIBAwUAAAAAAAAAAAECAAMRBBIhBRAxEzJCUmH\\/2gAIAQEAAT8AA8Tm2lFVVPkyi19UWTPEEtRTye9pxRL7ePcoWvO0HhYJ6l+M4dHVu2giH4leEbOZTqq3XclP0VO5hMsANeiPyTXYv8i+o8Yp905fJ4zMpr+ZRyBYnVpaisM3X2DgXkbseixTkXtWimLYVftDzQyx+R+srZ7MUtLl6vk32oOPOSD3J96F+TP\\/xAAZEQADAAMAAAAAAAAAAAAAAAAAESABIWH\\/2gAIAQIBAT8AjSM8E4\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAREQIWH\\/2gAIAQMBAT8AyEO0XpY2N7\\/\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"entryPointConversionSource\":\"phone_number_hyperlink\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":134105},\"scansSidecar\":\"TO8GKfV5UeZXY4Vy752Sns1cydsR2e2yjgdYibt+LHwD0mcXf\\/\\/xEA==\",\"scanLengths\":[7608,16639,9445,17624],\"midQualityFileSha256\":\"lTW+nvJwqzd+oZcQIjbkHAJLqZel2WSRS5VsgEfFiW8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wyVQ3qT8q2EcqFZTE+7ybE1UP3toBXCBrW8D8LnAR1w=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"entryPointConversionSource\":\"phone_number_hyperlink\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":134105},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771083621,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:22'),
(16286, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:21.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:40:23'),
(16287, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5898BC6A21579C40E3499BB59281AA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083626273,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:26.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:26'),
(16288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5527CE42828087974E70857E9F9F3FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083626279,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:26.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:40:26'),
(16289, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5898BC6A21579C40E3499BB59281AA5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083626273,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:26.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:26'),
(16290, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5527CE42828087974E70857E9F9F3FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083626279,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:40:26.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:40:26'),
(16291, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A500A11688388F71273C91110AC9C44D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083770329,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:42:50.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:42:50'),
(16292, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5527CE42828087974E70857E9F9F3FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083770316,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:42:50.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:42:50'),
(16293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A500A11688388F71273C91110AC9C44D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083770329,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:42:50.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:42:51'),
(16294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5527CE42828087974E70857E9F9F3FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083770316,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:42:50.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:42:51'),
(16295, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5898BC6A21579C40E3499BB59281AA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083770323,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:42:50.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:42:58'),
(16296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83378317557940@lid\",\"id\":\"A5898BC6A21579C40E3499BB59281AA5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083770323,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:42:50.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:42:58'),
(16297, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A512296A8C020E6AC7535F5385053E70\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083814915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:43:34.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:43:35'),
(16298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A512296A8C020E6AC7535F5385053E70\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083814915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:43:34.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:43:35'),
(16299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083824476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:43:44.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:43:44'),
(16300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083824476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:43:44.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:43:44'),
(16301, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:07.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:44:07');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16302, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5FEDA5E019DDDF9FF3D76B835C968B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Aqui 2 meses atrás com 85.9 kg\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A512296A8C020E6AC7535F5385053E70\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jykECAMrcL7LwDGEASneiRJ\\/gE4A+YzsVlHjWsiL4O4=\",\"fileLength\":\"51316\",\"height\":1268,\"width\":582,\"mediaKey\":\"\\/Z5fP+1qJaIaW8I5c4qF1gMkZdwd640pfwdIHFEqTb8=\",\"fileEncSha256\":\"KxLvUKekns1m6prnU2xncTMYN5CUgeq1NmJEqTJMBFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083811\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAC0DASIAAhEBAxEB\\/8QAHAAAAgMAAwEAAAAAAAAAAAAABgcABAUCAwgB\\/8QAOBAAAQMDAwEEBwcDBQAAAAAAAQIDBAAFEQYSITEHE0FxFDJRYYGRoRYiIzNywdEVJCVCUmKCsf\\/EABgBAAMBAQAAAAAAAAAAAAAAAAECAwQA\\/8QAHxEAAgICAwEBAQAAAAAAAAAAAAECEQMSITFBURNh\\/9oADAMBAAIRAxEAPwA2jp4X+o13NI5X+v8Aivscfm\\/qNV7zMFttc+WSB3KCsZ6Zxx9cVnSGYn+0vWNzhaoVEtveMiMQoK3EBfHJIHh1re0jrCPe5luE4Fmc22tG5RwlwqBzj5Cgfs90\\/dNaaqe2uZceXukSnfVSnOT5k9AKZGuezaVp22enQHm5yWUkuhLYSpIA4Unnw64FVahVN8jR2rqwybbytfmquqQ3+J8BVbR8xVxsMGU4crdb3E+04FaEofjf9RUqo6zujfmPj\\/lWdrGAbjpy5xkkhSm9wx7Rz+1aMY\\/3Lw8j9KsrKU96VqSlIxkk4FMhX2Jm19oULQRdtsCzpkNoXhT5ewtxQ6nGMYrVc7XEaliSIDdveiLWnanDgXvJB4I44pW6uaRI1pLisLQG1yS2halhKRk4BJ6Ac9aYWg9CXKxXN\\/8AqsVBZe2rblNOpebO3JKQpORk8cdaM4R1v0rCcrrwZWmoSrbaIENQAWwyG1Ae0JAP1qzLOHz+kVYRj0geav2qrL5kK8hSE2WIScvOu8qSClGxAypSjjiiSzsxbhHnQZMN3Dquq0eqNoTj5pPxzQBZ9QJscaK7N5L0gpWc527icftTJ0Nc27tYGJ7JBbkLdWD7u8VRjK0+C7hrX087an0TpuFqKfFvc+8RpiV7u9bg96xtIBGCDk\\/PrRD2eaTdjEot+ood2sK1Jdca71TSk45wWzkBXs5PNNTWGhRd5Tk+1XaZbLivBVscJaWQMDKOg8DkfWljqmVqmz\\/4q9PJcQ4crcLCdroBGClXU9PnQm7VDRSuxtW+zIXbEKdabQpSN6VBRKsq5OTnpzgeVCM9BamOoV6yTg0R9n8tb9pjF91Z3tDYlfh1\\/n6VlaxYW3dAtCSQtPh7qTenyCeO1wIzWF5kWpaUMuJKnUFvceSgHgke\\/GRn31q9mPayrSUMW6fFVLt28rQppQDjeeoAPBGeeoqmrTSpzd\\/cv6UhxlnDPdrBKcfe3D5J+tK9qy3V58NwmXJBPQNjJrTi1UNZEckpSyNx8PULvbpplySy4G7ilKUkqSWRnPGP9XnQH2m9s32iii3WmB6PGCkqL8jBcODnCQMhI465pVr0Zq5DZUbNPwec90TWFKgXFl4tyWXGnAeQsYIporEnYreRroe2h9TyWA2pEhSo6gFIQTnb5U4G7tGucdp10pCwMHjOa8zaFiSEadkSQ6VLjP4Uj\\/alQGD5ZBonj6lfjI2ZWD44rDlg0+DbimpLnsWt\\/vkiRqqU9ypDSyjOT97HGM+zrTg7MbjbUQFvw3QFq5WlXrA+ykJOLu4uueq4SpJxjPPNcYVxkwXO9hvrbUeu08HzFbZweSK\\/hlUvym0ejb5q+d3TiIqgltQ2kgcil\\/OkspfK7sr0mKRlwqVyke0HwNBH2xuSW9qksq95B\\/msO43aZcOJTpUgHIQkYSPhUVhfo7zx8GTp7XUGC9d40W3tiNIYKYqHBuCnEhRBVn25GPIVkwbtIfYy9FUVjg7SB\\/7QNHdSjCx64UCPgacmnYsGbBCnHVtrGDkHhQI4q7gqSMrytO\\/oA68iIgTYsdCt6W2tmcYyQcZx7+tCZO0kUZ9prYauUQcEhkZUBweT8\\/Og1Q3DFNHlFM095uRxKyfGuJricggV9riRBTGsMoptjAyc7E5x5UAR21OPIQnkqIAphxoobZShIOEjHXFBuhJKyxrFCFvv94hKh6KTgjocHB+GBSzqVK5BXR1ujgVKlSiE2NNNpXd2s+AJHyo8B4HToDUqVOXYrP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"rQymP5d1urovTrm842\\/er8jYjv8yb\\/+5qFuRuEsRgYtz7LufohbSAQ==\",\"scanLengths\":[7608,16639,9445,17624],\"midQualityFileSha256\":\"lTW+nvJwqzd+oZcQIjbkHAJLqZel2WSRS5VsgEfFiW8=\",\"viewOnce\":true}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A512296A8C020E6AC7535F5385053E70\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jykECAMrcL7LwDGEASneiRJ\\/gE4A+YzsVlHjWsiL4O4=\",\"fileLength\":\"51316\",\"height\":1268,\"width\":582,\"mediaKey\":\"\\/Z5fP+1qJaIaW8I5c4qF1gMkZdwd640pfwdIHFEqTb8=\",\"fileEncSha256\":\"KxLvUKekns1m6prnU2xncTMYN5CUgeq1NmJEqTJMBFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083811\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAC0DASIAAhEBAxEB\\/8QAHAAAAgMAAwEAAAAAAAAAAAAABgcABAUCAwgB\\/8QAOBAAAQMDAwEEBwcDBQAAAAAAAQIDBAAFEQYSITEHE0FxFDJRYYGRoRYiIzNywdEVJCVCUmKCsf\\/EABgBAAMBAQAAAAAAAAAAAAAAAAECAwQA\\/8QAHxEAAgICAwEBAQAAAAAAAAAAAAECEQMSITFBURNh\\/9oADAMBAAIRAxEAPwA2jp4X+o13NI5X+v8Aivscfm\\/qNV7zMFttc+WSB3KCsZ6Zxx9cVnSGYn+0vWNzhaoVEtveMiMQoK3EBfHJIHh1re0jrCPe5luE4Fmc22tG5RwlwqBzj5Cgfs90\\/dNaaqe2uZceXukSnfVSnOT5k9AKZGuezaVp22enQHm5yWUkuhLYSpIA4Unnw64FVahVN8jR2rqwybbytfmquqQ3+J8BVbR8xVxsMGU4crdb3E+04FaEofjf9RUqo6zujfmPj\\/lWdrGAbjpy5xkkhSm9wx7Rz+1aMY\\/3Lw8j9KsrKU96VqSlIxkk4FMhX2Jm19oULQRdtsCzpkNoXhT5ewtxQ6nGMYrVc7XEaliSIDdveiLWnanDgXvJB4I44pW6uaRI1pLisLQG1yS2halhKRk4BJ6Ac9aYWg9CXKxXN\\/8AqsVBZe2rblNOpebO3JKQpORk8cdaM4R1v0rCcrrwZWmoSrbaIENQAWwyG1Ae0JAP1qzLOHz+kVYRj0geav2qrL5kK8hSE2WIScvOu8qSClGxAypSjjiiSzsxbhHnQZMN3Dquq0eqNoTj5pPxzQBZ9QJscaK7N5L0gpWc527icftTJ0Nc27tYGJ7JBbkLdWD7u8VRjK0+C7hrX087an0TpuFqKfFvc+8RpiV7u9bg96xtIBGCDk\\/PrRD2eaTdjEot+ood2sK1Jdca71TSk45wWzkBXs5PNNTWGhRd5Tk+1XaZbLivBVscJaWQMDKOg8DkfWljqmVqmz\\/4q9PJcQ4crcLCdroBGClXU9PnQm7VDRSuxtW+zIXbEKdabQpSN6VBRKsq5OTnpzgeVCM9BamOoV6yTg0R9n8tb9pjF91Z3tDYlfh1\\/n6VlaxYW3dAtCSQtPh7qTenyCeO1wIzWF5kWpaUMuJKnUFvceSgHgke\\/GRn31q9mPayrSUMW6fFVLt28rQppQDjeeoAPBGeeoqmrTSpzd\\/cv6UhxlnDPdrBKcfe3D5J+tK9qy3V58NwmXJBPQNjJrTi1UNZEckpSyNx8PULvbpplySy4G7ilKUkqSWRnPGP9XnQH2m9s32iii3WmB6PGCkqL8jBcODnCQMhI465pVr0Zq5DZUbNPwec90TWFKgXFl4tyWXGnAeQsYIporEnYreRroe2h9TyWA2pEhSo6gFIQTnb5U4G7tGucdp10pCwMHjOa8zaFiSEadkSQ6VLjP4Uj\\/alQGD5ZBonj6lfjI2ZWD44rDlg0+DbimpLnsWt\\/vkiRqqU9ypDSyjOT97HGM+zrTg7MbjbUQFvw3QFq5WlXrA+ykJOLu4uueq4SpJxjPPNcYVxkwXO9hvrbUeu08HzFbZweSK\\/hlUvym0ejb5q+d3TiIqgltQ2kgcil\\/OkspfK7sr0mKRlwqVyke0HwNBH2xuSW9qksq95B\\/msO43aZcOJTpUgHIQkYSPhUVhfo7zx8GTp7XUGC9d40W3tiNIYKYqHBuCnEhRBVn25GPIVkwbtIfYy9FUVjg7SB\\/7QNHdSjCx64UCPgacmnYsGbBCnHVtrGDkHhQI4q7gqSMrytO\\/oA68iIgTYsdCt6W2tmcYyQcZx7+tCZO0kUZ9prYauUQcEhkZUBweT8\\/Og1Q3DFNHlFM095uRxKyfGuJricggV9riRBTGsMoptjAyc7E5x5UAR21OPIQnkqIAphxoobZShIOEjHXFBuhJKyxrFCFvv94hKh6KTgjocHB+GBSzqVK5BXR1ujgVKlSiE2NNNpXd2s+AJHyo8B4HToDUqVOXYrP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"rQymP5d1urovTrm842\\/er8jYjv8yb\\/+5qFuRuEsRgYtz7LufohbSAQ==\",\"scanLengths\":[7608,16639,9445,17624],\"midQualityFileSha256\":\"lTW+nvJwqzd+oZcQIjbkHAJLqZel2WSRS5VsgEfFiW8=\",\"viewOnce\":true}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771083847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:07.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:44:07'),
(16303, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:07.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:44:07'),
(16304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:07.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:44:08'),
(16305, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5FEDA5E019DDDF9FF3D76B835C968B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Aqui 2 meses atrás com 85.9 kg\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A512296A8C020E6AC7535F5385053E70\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jykECAMrcL7LwDGEASneiRJ\\/gE4A+YzsVlHjWsiL4O4=\",\"fileLength\":\"51316\",\"height\":1268,\"width\":582,\"mediaKey\":\"\\/Z5fP+1qJaIaW8I5c4qF1gMkZdwd640pfwdIHFEqTb8=\",\"fileEncSha256\":\"KxLvUKekns1m6prnU2xncTMYN5CUgeq1NmJEqTJMBFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083811\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAC0DASIAAhEBAxEB\\/8QAHAAAAgMAAwEAAAAAAAAAAAAABgcABAUCAwgB\\/8QAOBAAAQMDAwEEBwcDBQAAAAAAAQIDBAAFEQYSITEHE0FxFDJRYYGRoRYiIzNywdEVJCVCUmKCsf\\/EABgBAAMBAQAAAAAAAAAAAAAAAAECAwQA\\/8QAHxEAAgICAwEBAQAAAAAAAAAAAAECEQMSITFBURNh\\/9oADAMBAAIRAxEAPwA2jp4X+o13NI5X+v8Aivscfm\\/qNV7zMFttc+WSB3KCsZ6Zxx9cVnSGYn+0vWNzhaoVEtveMiMQoK3EBfHJIHh1re0jrCPe5luE4Fmc22tG5RwlwqBzj5Cgfs90\\/dNaaqe2uZceXukSnfVSnOT5k9AKZGuezaVp22enQHm5yWUkuhLYSpIA4Unnw64FVahVN8jR2rqwybbytfmquqQ3+J8BVbR8xVxsMGU4crdb3E+04FaEofjf9RUqo6zujfmPj\\/lWdrGAbjpy5xkkhSm9wx7Rz+1aMY\\/3Lw8j9KsrKU96VqSlIxkk4FMhX2Jm19oULQRdtsCzpkNoXhT5ewtxQ6nGMYrVc7XEaliSIDdveiLWnanDgXvJB4I44pW6uaRI1pLisLQG1yS2halhKRk4BJ6Ac9aYWg9CXKxXN\\/8AqsVBZe2rblNOpebO3JKQpORk8cdaM4R1v0rCcrrwZWmoSrbaIENQAWwyG1Ae0JAP1qzLOHz+kVYRj0geav2qrL5kK8hSE2WIScvOu8qSClGxAypSjjiiSzsxbhHnQZMN3Dquq0eqNoTj5pPxzQBZ9QJscaK7N5L0gpWc527icftTJ0Nc27tYGJ7JBbkLdWD7u8VRjK0+C7hrX087an0TpuFqKfFvc+8RpiV7u9bg96xtIBGCDk\\/PrRD2eaTdjEot+ood2sK1Jdca71TSk45wWzkBXs5PNNTWGhRd5Tk+1XaZbLivBVscJaWQMDKOg8DkfWljqmVqmz\\/4q9PJcQ4crcLCdroBGClXU9PnQm7VDRSuxtW+zIXbEKdabQpSN6VBRKsq5OTnpzgeVCM9BamOoV6yTg0R9n8tb9pjF91Z3tDYlfh1\\/n6VlaxYW3dAtCSQtPh7qTenyCeO1wIzWF5kWpaUMuJKnUFvceSgHgke\\/GRn31q9mPayrSUMW6fFVLt28rQppQDjeeoAPBGeeoqmrTSpzd\\/cv6UhxlnDPdrBKcfe3D5J+tK9qy3V58NwmXJBPQNjJrTi1UNZEckpSyNx8PULvbpplySy4G7ilKUkqSWRnPGP9XnQH2m9s32iii3WmB6PGCkqL8jBcODnCQMhI465pVr0Zq5DZUbNPwec90TWFKgXFl4tyWXGnAeQsYIporEnYreRroe2h9TyWA2pEhSo6gFIQTnb5U4G7tGucdp10pCwMHjOa8zaFiSEadkSQ6VLjP4Uj\\/alQGD5ZBonj6lfjI2ZWD44rDlg0+DbimpLnsWt\\/vkiRqqU9ypDSyjOT97HGM+zrTg7MbjbUQFvw3QFq5WlXrA+ykJOLu4uueq4SpJxjPPNcYVxkwXO9hvrbUeu08HzFbZweSK\\/hlUvym0ejb5q+d3TiIqgltQ2kgcil\\/OkspfK7sr0mKRlwqVyke0HwNBH2xuSW9qksq95B\\/msO43aZcOJTpUgHIQkYSPhUVhfo7zx8GTp7XUGC9d40W3tiNIYKYqHBuCnEhRBVn25GPIVkwbtIfYy9FUVjg7SB\\/7QNHdSjCx64UCPgacmnYsGbBCnHVtrGDkHhQI4q7gqSMrytO\\/oA68iIgTYsdCt6W2tmcYyQcZx7+tCZO0kUZ9prYauUQcEhkZUBweT8\\/Og1Q3DFNHlFM095uRxKyfGuJricggV9riRBTGsMoptjAyc7E5x5UAR21OPIQnkqIAphxoobZShIOEjHXFBuhJKyxrFCFvv94hKh6KTgjocHB+GBSzqVK5BXR1ujgVKlSiE2NNNpXd2s+AJHyo8B4HToDUqVOXYrP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"rQymP5d1urovTrm842\\/er8jYjv8yb\\/+5qFuRuEsRgYtz7LufohbSAQ==\",\"scanLengths\":[7608,16639,9445,17624],\"midQualityFileSha256\":\"lTW+nvJwqzd+oZcQIjbkHAJLqZel2WSRS5VsgEfFiW8=\",\"viewOnce\":true}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A512296A8C020E6AC7535F5385053E70\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jykECAMrcL7LwDGEASneiRJ\\/gE4A+YzsVlHjWsiL4O4=\",\"fileLength\":\"51316\",\"height\":1268,\"width\":582,\"mediaKey\":\"\\/Z5fP+1qJaIaW8I5c4qF1gMkZdwd640pfwdIHFEqTb8=\",\"fileEncSha256\":\"KxLvUKekns1m6prnU2xncTMYN5CUgeq1NmJEqTJMBFI=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQOBXXBgchmZpnPj_5DI9CGlKOm1TEU6IxcNFSaWxqUv5KENr2coHFyMB4kqQK51-FOsRMh65c5Dg6enWoKTgkqijWpUo_iPoFyGzlamMw?ccb=9-4&oh=01_Q5Aa3wHepEDmnVk-E3Rqo0UDYRdFksftE8GREnazkXo5WOBQvA&oe=69B7FD6D&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083811\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAC0DASIAAhEBAxEB\\/8QAHAAAAgMAAwEAAAAAAAAAAAAABgcABAUCAwgB\\/8QAOBAAAQMDAwEEBwcDBQAAAAAAAQIDBAAFEQYSITEHE0FxFDJRYYGRoRYiIzNywdEVJCVCUmKCsf\\/EABgBAAMBAQAAAAAAAAAAAAAAAAECAwQA\\/8QAHxEAAgICAwEBAQAAAAAAAAAAAAECEQMSITFBURNh\\/9oADAMBAAIRAxEAPwA2jp4X+o13NI5X+v8Aivscfm\\/qNV7zMFttc+WSB3KCsZ6Zxx9cVnSGYn+0vWNzhaoVEtveMiMQoK3EBfHJIHh1re0jrCPe5luE4Fmc22tG5RwlwqBzj5Cgfs90\\/dNaaqe2uZceXukSnfVSnOT5k9AKZGuezaVp22enQHm5yWUkuhLYSpIA4Unnw64FVahVN8jR2rqwybbytfmquqQ3+J8BVbR8xVxsMGU4crdb3E+04FaEofjf9RUqo6zujfmPj\\/lWdrGAbjpy5xkkhSm9wx7Rz+1aMY\\/3Lw8j9KsrKU96VqSlIxkk4FMhX2Jm19oULQRdtsCzpkNoXhT5ewtxQ6nGMYrVc7XEaliSIDdveiLWnanDgXvJB4I44pW6uaRI1pLisLQG1yS2halhKRk4BJ6Ac9aYWg9CXKxXN\\/8AqsVBZe2rblNOpebO3JKQpORk8cdaM4R1v0rCcrrwZWmoSrbaIENQAWwyG1Ae0JAP1qzLOHz+kVYRj0geav2qrL5kK8hSE2WIScvOu8qSClGxAypSjjiiSzsxbhHnQZMN3Dquq0eqNoTj5pPxzQBZ9QJscaK7N5L0gpWc527icftTJ0Nc27tYGJ7JBbkLdWD7u8VRjK0+C7hrX087an0TpuFqKfFvc+8RpiV7u9bg96xtIBGCDk\\/PrRD2eaTdjEot+ood2sK1Jdca71TSk45wWzkBXs5PNNTWGhRd5Tk+1XaZbLivBVscJaWQMDKOg8DkfWljqmVqmz\\/4q9PJcQ4crcLCdroBGClXU9PnQm7VDRSuxtW+zIXbEKdabQpSN6VBRKsq5OTnpzgeVCM9BamOoV6yTg0R9n8tb9pjF91Z3tDYlfh1\\/n6VlaxYW3dAtCSQtPh7qTenyCeO1wIzWF5kWpaUMuJKnUFvceSgHgke\\/GRn31q9mPayrSUMW6fFVLt28rQppQDjeeoAPBGeeoqmrTSpzd\\/cv6UhxlnDPdrBKcfe3D5J+tK9qy3V58NwmXJBPQNjJrTi1UNZEckpSyNx8PULvbpplySy4G7ilKUkqSWRnPGP9XnQH2m9s32iii3WmB6PGCkqL8jBcODnCQMhI465pVr0Zq5DZUbNPwec90TWFKgXFl4tyWXGnAeQsYIporEnYreRroe2h9TyWA2pEhSo6gFIQTnb5U4G7tGucdp10pCwMHjOa8zaFiSEadkSQ6VLjP4Uj\\/alQGD5ZBonj6lfjI2ZWD44rDlg0+DbimpLnsWt\\/vkiRqqU9ypDSyjOT97HGM+zrTg7MbjbUQFvw3QFq5WlXrA+ykJOLu4uueq4SpJxjPPNcYVxkwXO9hvrbUeu08HzFbZweSK\\/hlUvym0ejb5q+d3TiIqgltQ2kgcil\\/OkspfK7sr0mKRlwqVyke0HwNBH2xuSW9qksq95B\\/msO43aZcOJTpUgHIQkYSPhUVhfo7zx8GTp7XUGC9d40W3tiNIYKYqHBuCnEhRBVn25GPIVkwbtIfYy9FUVjg7SB\\/7QNHdSjCx64UCPgacmnYsGbBCnHVtrGDkHhQI4q7gqSMrytO\\/oA68iIgTYsdCt6W2tmcYyQcZx7+tCZO0kUZ9prYauUQcEhkZUBweT8\\/Og1Q3DFNHlFM095uRxKyfGuJricggV9riRBTGsMoptjAyc7E5x5UAR21OPIQnkqIAphxoobZShIOEjHXFBuhJKyxrFCFvv94hKh6KTgjocHB+GBSzqVK5BXR1ujgVKlSiE2NNNpXd2s+AJHyo8B4HToDUqVOXYrP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"rQymP5d1urovTrm842\\/er8jYjv8yb\\/+5qFuRuEsRgYtz7LufohbSAQ==\",\"scanLengths\":[7608,16639,9445,17624],\"midQualityFileSha256\":\"lTW+nvJwqzd+oZcQIjbkHAJLqZel2WSRS5VsgEfFiW8=\",\"viewOnce\":true}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771083847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:07.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:44:08'),
(16306, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:07.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:44:08'),
(16307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5FEDA5E019DDDF9FF3D76B835C968B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083848484,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:08.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:44:08'),
(16308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5FEDA5E019DDDF9FF3D76B835C968B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083848484,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:08.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:44:08'),
(16309, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A53F5F9BBD1F431D0686959D49F7FED3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Aqui com 73kg\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Agora\",\"fileSha256\":\"Sxy9EY1fnBaGyG6Rlgm5oF3JvUf1psJa8iF48iE\\/LiE=\",\"fileLength\":\"27061\",\"height\":512,\"width\":374,\"mediaKey\":\"Mja6SeqLp+Gsk0SLyCv2Nt2gvgES1f5dZqz2dN3TYbE=\",\"fileEncSha256\":\"xnFpfIgrFyiKw57Xp9Xp0y+p7033BsMbO7qxJhZ3qtU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083822\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAEkDASIAAhEBAxEB\\/8QAGwAAAQUBAQAAAAAAAAAAAAAABgADBAUHAgH\\/xABAEAACAQMCAgYFCAgHAQAAAAABAgMABBEFIRIxBhMUIkFRYXGBkbEHFSMyVJOh0RYlUmJygpLhM0JVY7LB0sL\\/xAAZAQADAQEBAAAAAAAAAAAAAAACAwQBAAX\\/xAAiEQEAAgEDBQADAAAAAAAAAAABAAIRAyExEhMyQVEEQmH\\/2gAMAwEAAhEDEQA\\/ABe9tGUErKx\\/nY\\/GibojqhvLc2lwR2iAbHOeNfP2cqotTdZAeF1znPMZ+NUsNxNZXsVzA8okjbPhgjxFRE9JrkmtKMj1Vlvyq6b+so5whIkj5gcsVpmk3kWpWUV1bnuONweanxBoa+VC24tJgnAyY3KnHkR\\/au4YFMcMxfs3CRs499WuiWytexqzzDJyADSTKnZD7TVnpk0yzoeNlX1KR8KNWGVrNB6NytbwkJkPjmyOT8at1dmJaYKfSYyPiaHLC5TqxxMxP8IFWCypzA95pDRXM3Ylr1sBUiaKF18uJD8Qahfq\\/wCxx+6L\\/wA0yZV4D3k971Gyn7nueiK4mYkm46Mh90uyp9MYNVNx0UuyTwXsPthx8DRdqGsabEQsM\\/WH91TtUVdXs2H12\\/pNUIEmrezKvonZahot68c88EtnN9YAEFW8CP8Aur\\/pVYHUdCuLcFVdh3S3IEVFa\\/sXGOtwfUa7m1m1azMLSgvsAaGx8mmfczr9DdRXlLaH+dh\\/80\\/b9FNQU7mL7w\\/lRl221xvOgqRYzQ3U3VwyK788A1hlh56YOW2gX0ajdT6mqWNJvhyVvYw\\/OjJNOm4R3TXbWMoXdTTO2xbrwLawv0X\\/AAXb1FT\\/AN0z2S++yy+4fnRybN0TJX8Kb7O\\/lXdud3p78pGmrY3luoIyeMnHhyoIuXS3iaWVuFF5kjOK0b5T24taC7EBSQD6ayrWra6j064aeaORCN8DHiMYrqGakxsjG313TuXbIQfIgimn1S0JGZod9udAN0AZhjzqwQcd9Zoi8ZMyDh8+8NqJ0wnV1GFd3Jf2d3AL6yjitZm4FYNlg3hnyol6K2MF3c3qXMSvGLZjj08S4pu9jUaaI5ohI6tmMkf5uYzUzoWzdbdlxhjCqn18a5+FLrvmO1BrL8dDLTs7yRWxIUsMqTzHhXo6KQoATFIoP+6dvLxoyglxpEYU4Mrs2fLJAx+NOmcvbqzYG2APYMfGh94GJWAz9HFFu7KJzgbcMp8\\/XVX81j9uf71vzrS726K2kqjPCobx8jkfAUO\\/Nk\\/7cdDmzxCEDeU\\/yn6xbw9IpYAGaRGCNkYAoOur6zuYmhuEJRgOIYOOe249Nd9NmTVekF5cG7B45DuBnONs\\/hVGYCYZIxcoVcYOVydvLyqpCtQIqqrvOrrQtIPe7My+kM351CXR7C1l7biVltyHC9YRxNnYU1P0lW3t5LBkkcx5UyALk58sn0110eQatcy27vKIRHvkDOfA7E0pUMsdQq2DELtK1q11Epbll42TJGcb+IwatdMtH7ZcJFIYxKE7yjfPF\\/bNBMmiW9ldxOl\\/mVTxKoADEjfzohsek0VtGJHVywZSe6PP10ugZzWUatkMWmuy2zQ6LbhGBbhXfHI5zn8BTlxFI1wqLw4GNtxzYflQa\\/To3bW0VnGrQgfSB4+E5Gd9mPnT8nTbjuYxwRxgDBIOc7+Xtou3b5JOoYR6kJFs7kBQT9U4bwPjUfiP7NcRa1De2siqCZWK5C45Z9NO9oi8xTfx685iddxjEzm\\/0zTo7q3terSeeVsF4nJ8d258hTN\\/0ctI5JUspIpgq7Sni4FY8gay7ojfzwa0Ft5SnHFIGx6FJH4iia16SXVzYxBJZBKB9IWx3j6KzVcbEZpHuWf6K6fLI7XNlCzk5LBzv7KbvNAt9O0u6kso0iUIxZeInO1U761qXHjrGx\\/Cv5V1qF3fPo108rvwcGCCB5+gVLm2QZXXpNyD1vdG1uYZ0PfjYMPZRLqMUb6Yb21VzE5V+HwVSfz2oGWQySLGm7MQAB4mjhUW00eezuc5VFA3I35+7entiiMFr3DBC7RnhW0h7LNZQmeLrFEknVkjJGCxPMEcq9uNCvbk8UdxpxfOQy3SnPo51l91eEOkYcFV5Y5DxpyO7PnTAfIZNZ\\/WabcWmraZatISjAL9aKQNihv541L7Tc\\/1mh0XWfGve0emmH9i0+TrQNE+bruWeZhP9Gyrw90gkYqzgK20Dxx6ecOApzKCRv4ErVvbWcssXWohRSSAsncYgeOD4VGvLjsBXtEbsuNjGVIGTjzqSyWd+ZTU6TbiV3Wsh2spPvR\\/5r2W9lmtZbZrFikilTmXz9lNy9M7GGd4WtrhmQkHAXw5+PopQ9OtOTrJTZXRCEKdl257c\\/XQuk\\/IRqH2DWlWaxa9aqQwkWZQAx2BzRd0htmkEjJJl1V5XHqwAB7KG7rU4tS16PUbSNoYxKo+k55G\\/hnyottZLa5mnM75XJgIBx47+3umisPLN66+mZpcSSo4M0fVuTuPCu47k+daDe9EYL5eKO6tRGGJHEzKRgkb7eg1EfoT1aBg9sw5d1zzzjxFONQk7SD2iQnUtRhtBMkPWHHG52G1GP6CSf6xa\\/0\\/3qg1XQJNN0rt3CoiEnV8auDg+VVHzhcfaZvvDRDniZscwqi1W8uH45Zcl8hsDGcVD1O4kjs7icEGRULLnfBpUq848pc+MBYCez3Up3kWMAE+HEwBP4n306gC9GS4HeluW4j\\/AAquP+bUqVenPOk7Sjw28IAGJJ0RvUQQfjU3TrybO75LXG588rv8T76VKgYRLV7yZrNsudzKD7WY1M0O9uJZJ7d5CUHEwPiO6CR6s0qVBCJRa7cSTIUc9xW2GdhtQ\\/xN50qVMrxAZ\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"uiiBhdgCq+hg9SuYe1H8kgP5FpU=\",\"scanLengths\":[2486,24575],\"viewOnce\":true}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Agora\",\"fileSha256\":\"Sxy9EY1fnBaGyG6Rlgm5oF3JvUf1psJa8iF48iE\\/LiE=\",\"fileLength\":\"27061\",\"height\":512,\"width\":374,\"mediaKey\":\"Mja6SeqLp+Gsk0SLyCv2Nt2gvgES1f5dZqz2dN3TYbE=\",\"fileEncSha256\":\"xnFpfIgrFyiKw57Xp9Xp0y+p7033BsMbO7qxJhZ3qtU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083822\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAEkDASIAAhEBAxEB\\/8QAGwAAAQUBAQAAAAAAAAAAAAAABgADBAUHAgH\\/xABAEAACAQMCAgYFCAgHAQAAAAABAgMABBEFIRIxBhMUIkFRYXGBkbEHFSMyVJOh0RYlUmJygpLhM0JVY7LB0sL\\/xAAZAQADAQEBAAAAAAAAAAAAAAACAwQBAAX\\/xAAiEQEAAgEDBQADAAAAAAAAAAABAAIRAyExEhMyQVEEQmH\\/2gAMAwEAAhEDEQA\\/ABe9tGUErKx\\/nY\\/GibojqhvLc2lwR2iAbHOeNfP2cqotTdZAeF1znPMZ+NUsNxNZXsVzA8okjbPhgjxFRE9JrkmtKMj1Vlvyq6b+so5whIkj5gcsVpmk3kWpWUV1bnuONweanxBoa+VC24tJgnAyY3KnHkR\\/au4YFMcMxfs3CRs499WuiWytexqzzDJyADSTKnZD7TVnpk0yzoeNlX1KR8KNWGVrNB6NytbwkJkPjmyOT8at1dmJaYKfSYyPiaHLC5TqxxMxP8IFWCypzA95pDRXM3Ylr1sBUiaKF18uJD8Qahfq\\/wCxx+6L\\/wA0yZV4D3k971Gyn7nueiK4mYkm46Mh90uyp9MYNVNx0UuyTwXsPthx8DRdqGsabEQsM\\/WH91TtUVdXs2H12\\/pNUIEmrezKvonZahot68c88EtnN9YAEFW8CP8Aur\\/pVYHUdCuLcFVdh3S3IEVFa\\/sXGOtwfUa7m1m1azMLSgvsAaGx8mmfczr9DdRXlLaH+dh\\/80\\/b9FNQU7mL7w\\/lRl221xvOgqRYzQ3U3VwyK788A1hlh56YOW2gX0ajdT6mqWNJvhyVvYw\\/OjJNOm4R3TXbWMoXdTTO2xbrwLawv0X\\/AAXb1FT\\/AN0z2S++yy+4fnRybN0TJX8Kb7O\\/lXdud3p78pGmrY3luoIyeMnHhyoIuXS3iaWVuFF5kjOK0b5T24taC7EBSQD6ayrWra6j064aeaORCN8DHiMYrqGakxsjG313TuXbIQfIgimn1S0JGZod9udAN0AZhjzqwQcd9Zoi8ZMyDh8+8NqJ0wnV1GFd3Jf2d3AL6yjitZm4FYNlg3hnyol6K2MF3c3qXMSvGLZjj08S4pu9jUaaI5ohI6tmMkf5uYzUzoWzdbdlxhjCqn18a5+FLrvmO1BrL8dDLTs7yRWxIUsMqTzHhXo6KQoATFIoP+6dvLxoyglxpEYU4Mrs2fLJAx+NOmcvbqzYG2APYMfGh94GJWAz9HFFu7KJzgbcMp8\\/XVX81j9uf71vzrS726K2kqjPCobx8jkfAUO\\/Nk\\/7cdDmzxCEDeU\\/yn6xbw9IpYAGaRGCNkYAoOur6zuYmhuEJRgOIYOOe249Nd9NmTVekF5cG7B45DuBnONs\\/hVGYCYZIxcoVcYOVydvLyqpCtQIqqrvOrrQtIPe7My+kM351CXR7C1l7biVltyHC9YRxNnYU1P0lW3t5LBkkcx5UyALk58sn0110eQatcy27vKIRHvkDOfA7E0pUMsdQq2DELtK1q11Epbll42TJGcb+IwatdMtH7ZcJFIYxKE7yjfPF\\/bNBMmiW9ldxOl\\/mVTxKoADEjfzohsek0VtGJHVywZSe6PP10ugZzWUatkMWmuy2zQ6LbhGBbhXfHI5zn8BTlxFI1wqLw4GNtxzYflQa\\/To3bW0VnGrQgfSB4+E5Gd9mPnT8nTbjuYxwRxgDBIOc7+Xtou3b5JOoYR6kJFs7kBQT9U4bwPjUfiP7NcRa1De2siqCZWK5C45Z9NO9oi8xTfx685iddxjEzm\\/0zTo7q3terSeeVsF4nJ8d258hTN\\/0ctI5JUspIpgq7Sni4FY8gay7ojfzwa0Ft5SnHFIGx6FJH4iia16SXVzYxBJZBKB9IWx3j6KzVcbEZpHuWf6K6fLI7XNlCzk5LBzv7KbvNAt9O0u6kso0iUIxZeInO1U761qXHjrGx\\/Cv5V1qF3fPo108rvwcGCCB5+gVLm2QZXXpNyD1vdG1uYZ0PfjYMPZRLqMUb6Yb21VzE5V+HwVSfz2oGWQySLGm7MQAB4mjhUW00eezuc5VFA3I35+7entiiMFr3DBC7RnhW0h7LNZQmeLrFEknVkjJGCxPMEcq9uNCvbk8UdxpxfOQy3SnPo51l91eEOkYcFV5Y5DxpyO7PnTAfIZNZ\\/WabcWmraZatISjAL9aKQNihv541L7Tc\\/1mh0XWfGve0emmH9i0+TrQNE+bruWeZhP9Gyrw90gkYqzgK20Dxx6ecOApzKCRv4ErVvbWcssXWohRSSAsncYgeOD4VGvLjsBXtEbsuNjGVIGTjzqSyWd+ZTU6TbiV3Wsh2spPvR\\/5r2W9lmtZbZrFikilTmXz9lNy9M7GGd4WtrhmQkHAXw5+PopQ9OtOTrJTZXRCEKdl257c\\/XQuk\\/IRqH2DWlWaxa9aqQwkWZQAx2BzRd0htmkEjJJl1V5XHqwAB7KG7rU4tS16PUbSNoYxKo+k55G\\/hnyottZLa5mnM75XJgIBx47+3umisPLN66+mZpcSSo4M0fVuTuPCu47k+daDe9EYL5eKO6tRGGJHEzKRgkb7eg1EfoT1aBg9sw5d1zzzjxFONQk7SD2iQnUtRhtBMkPWHHG52G1GP6CSf6xa\\/0\\/3qg1XQJNN0rt3CoiEnV8auDg+VVHzhcfaZvvDRDniZscwqi1W8uH45Zcl8hsDGcVD1O4kjs7icEGRULLnfBpUq848pc+MBYCez3Up3kWMAE+HEwBP4n306gC9GS4HeluW4j\\/AAquP+bUqVenPOk7Sjw28IAGJJ0RvUQQfjU3TrybO75LXG588rv8T76VKgYRLV7yZrNsudzKD7WY1M0O9uJZJ7d5CUHEwPiO6CR6s0qVBCJRa7cSTIUc9xW2GdhtQ\\/xN50qVMrxAZ\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"uiiBhdgCq+hg9SuYe1H8kgP5FpU=\",\"scanLengths\":[2486,24575],\"viewOnce\":true}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771083858,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:44:18'),
(16310, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:44:18'),
(16311, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:44:18'),
(16312, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A53F5F9BBD1F431D0686959D49F7FED3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Aqui com 73kg\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Agora\",\"fileSha256\":\"Sxy9EY1fnBaGyG6Rlgm5oF3JvUf1psJa8iF48iE\\/LiE=\",\"fileLength\":\"27061\",\"height\":512,\"width\":374,\"mediaKey\":\"Mja6SeqLp+Gsk0SLyCv2Nt2gvgES1f5dZqz2dN3TYbE=\",\"fileEncSha256\":\"xnFpfIgrFyiKw57Xp9Xp0y+p7033BsMbO7qxJhZ3qtU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083822\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAEkDASIAAhEBAxEB\\/8QAGwAAAQUBAQAAAAAAAAAAAAAABgADBAUHAgH\\/xABAEAACAQMCAgYFCAgHAQAAAAABAgMABBEFIRIxBhMUIkFRYXGBkbEHFSMyVJOh0RYlUmJygpLhM0JVY7LB0sL\\/xAAZAQADAQEBAAAAAAAAAAAAAAACAwQBAAX\\/xAAiEQEAAgEDBQADAAAAAAAAAAABAAIRAyExEhMyQVEEQmH\\/2gAMAwEAAhEDEQA\\/ABe9tGUErKx\\/nY\\/GibojqhvLc2lwR2iAbHOeNfP2cqotTdZAeF1znPMZ+NUsNxNZXsVzA8okjbPhgjxFRE9JrkmtKMj1Vlvyq6b+so5whIkj5gcsVpmk3kWpWUV1bnuONweanxBoa+VC24tJgnAyY3KnHkR\\/au4YFMcMxfs3CRs499WuiWytexqzzDJyADSTKnZD7TVnpk0yzoeNlX1KR8KNWGVrNB6NytbwkJkPjmyOT8at1dmJaYKfSYyPiaHLC5TqxxMxP8IFWCypzA95pDRXM3Ylr1sBUiaKF18uJD8Qahfq\\/wCxx+6L\\/wA0yZV4D3k971Gyn7nueiK4mYkm46Mh90uyp9MYNVNx0UuyTwXsPthx8DRdqGsabEQsM\\/WH91TtUVdXs2H12\\/pNUIEmrezKvonZahot68c88EtnN9YAEFW8CP8Aur\\/pVYHUdCuLcFVdh3S3IEVFa\\/sXGOtwfUa7m1m1azMLSgvsAaGx8mmfczr9DdRXlLaH+dh\\/80\\/b9FNQU7mL7w\\/lRl221xvOgqRYzQ3U3VwyK788A1hlh56YOW2gX0ajdT6mqWNJvhyVvYw\\/OjJNOm4R3TXbWMoXdTTO2xbrwLawv0X\\/AAXb1FT\\/AN0z2S++yy+4fnRybN0TJX8Kb7O\\/lXdud3p78pGmrY3luoIyeMnHhyoIuXS3iaWVuFF5kjOK0b5T24taC7EBSQD6ayrWra6j064aeaORCN8DHiMYrqGakxsjG313TuXbIQfIgimn1S0JGZod9udAN0AZhjzqwQcd9Zoi8ZMyDh8+8NqJ0wnV1GFd3Jf2d3AL6yjitZm4FYNlg3hnyol6K2MF3c3qXMSvGLZjj08S4pu9jUaaI5ohI6tmMkf5uYzUzoWzdbdlxhjCqn18a5+FLrvmO1BrL8dDLTs7yRWxIUsMqTzHhXo6KQoATFIoP+6dvLxoyglxpEYU4Mrs2fLJAx+NOmcvbqzYG2APYMfGh94GJWAz9HFFu7KJzgbcMp8\\/XVX81j9uf71vzrS726K2kqjPCobx8jkfAUO\\/Nk\\/7cdDmzxCEDeU\\/yn6xbw9IpYAGaRGCNkYAoOur6zuYmhuEJRgOIYOOe249Nd9NmTVekF5cG7B45DuBnONs\\/hVGYCYZIxcoVcYOVydvLyqpCtQIqqrvOrrQtIPe7My+kM351CXR7C1l7biVltyHC9YRxNnYU1P0lW3t5LBkkcx5UyALk58sn0110eQatcy27vKIRHvkDOfA7E0pUMsdQq2DELtK1q11Epbll42TJGcb+IwatdMtH7ZcJFIYxKE7yjfPF\\/bNBMmiW9ldxOl\\/mVTxKoADEjfzohsek0VtGJHVywZSe6PP10ugZzWUatkMWmuy2zQ6LbhGBbhXfHI5zn8BTlxFI1wqLw4GNtxzYflQa\\/To3bW0VnGrQgfSB4+E5Gd9mPnT8nTbjuYxwRxgDBIOc7+Xtou3b5JOoYR6kJFs7kBQT9U4bwPjUfiP7NcRa1De2siqCZWK5C45Z9NO9oi8xTfx685iddxjEzm\\/0zTo7q3terSeeVsF4nJ8d258hTN\\/0ctI5JUspIpgq7Sni4FY8gay7ojfzwa0Ft5SnHFIGx6FJH4iia16SXVzYxBJZBKB9IWx3j6KzVcbEZpHuWf6K6fLI7XNlCzk5LBzv7KbvNAt9O0u6kso0iUIxZeInO1U761qXHjrGx\\/Cv5V1qF3fPo108rvwcGCCB5+gVLm2QZXXpNyD1vdG1uYZ0PfjYMPZRLqMUb6Yb21VzE5V+HwVSfz2oGWQySLGm7MQAB4mjhUW00eezuc5VFA3I35+7entiiMFr3DBC7RnhW0h7LNZQmeLrFEknVkjJGCxPMEcq9uNCvbk8UdxpxfOQy3SnPo51l91eEOkYcFV5Y5DxpyO7PnTAfIZNZ\\/WabcWmraZatISjAL9aKQNihv541L7Tc\\/1mh0XWfGve0emmH9i0+TrQNE+bruWeZhP9Gyrw90gkYqzgK20Dxx6ecOApzKCRv4ErVvbWcssXWohRSSAsncYgeOD4VGvLjsBXtEbsuNjGVIGTjzqSyWd+ZTU6TbiV3Wsh2spPvR\\/5r2W9lmtZbZrFikilTmXz9lNy9M7GGd4WtrhmQkHAXw5+PopQ9OtOTrJTZXRCEKdl257c\\/XQuk\\/IRqH2DWlWaxa9aqQwkWZQAx2BzRd0htmkEjJJl1V5XHqwAB7KG7rU4tS16PUbSNoYxKo+k55G\\/hnyottZLa5mnM75XJgIBx47+3umisPLN66+mZpcSSo4M0fVuTuPCu47k+daDe9EYL5eKO6tRGGJHEzKRgkb7eg1EfoT1aBg9sw5d1zzzjxFONQk7SD2iQnUtRhtBMkPWHHG52G1GP6CSf6xa\\/0\\/3qg1XQJNN0rt3CoiEnV8auDg+VVHzhcfaZvvDRDniZscwqi1W8uH45Zcl8hsDGcVD1O4kjs7icEGRULLnfBpUq848pc+MBYCez3Up3kWMAE+HEwBP4n306gC9GS4HeluW4j\\/AAquP+bUqVenPOk7Sjw28IAGJJ0RvUQQfjU3TrybO75LXG588rv8T76VKgYRLV7yZrNsudzKD7WY1M0O9uJZJ7d5CUHEwPiO6CR6s0qVBCJRa7cSTIUc9xW2GdhtQ\\/xN50qVMrxAZ\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"uiiBhdgCq+hg9SuYe1H8kgP5FpU=\",\"scanLengths\":[2486,24575],\"viewOnce\":true}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Agora\",\"fileSha256\":\"Sxy9EY1fnBaGyG6Rlgm5oF3JvUf1psJa8iF48iE\\/LiE=\",\"fileLength\":\"27061\",\"height\":512,\"width\":374,\"mediaKey\":\"Mja6SeqLp+Gsk0SLyCv2Nt2gvgES1f5dZqz2dN3TYbE=\",\"fileEncSha256\":\"xnFpfIgrFyiKw57Xp9Xp0y+p7033BsMbO7qxJhZ3qtU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQPtIt2nUVzeys2EnqiHWUpEs0WZEDEef1XSktENguVtajXBDherzbbRufuXBxSBgITqzaBiNcaJelK0ueE64Gikv8pn4mN87YzBrCoNtQ?ccb=9-4&oh=01_Q5Aa3wGrL4NYqhRCqjav9G_Qu8LU-o89xzALGh_ZfYLQ8_rpig&oe=69B801AA&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771083822\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAEkDASIAAhEBAxEB\\/8QAGwAAAQUBAQAAAAAAAAAAAAAABgADBAUHAgH\\/xABAEAACAQMCAgYFCAgHAQAAAAABAgMABBEFIRIxBhMUIkFRYXGBkbEHFSMyVJOh0RYlUmJygpLhM0JVY7LB0sL\\/xAAZAQADAQEBAAAAAAAAAAAAAAACAwQBAAX\\/xAAiEQEAAgEDBQADAAAAAAAAAAABAAIRAyExEhMyQVEEQmH\\/2gAMAwEAAhEDEQA\\/ABe9tGUErKx\\/nY\\/GibojqhvLc2lwR2iAbHOeNfP2cqotTdZAeF1znPMZ+NUsNxNZXsVzA8okjbPhgjxFRE9JrkmtKMj1Vlvyq6b+so5whIkj5gcsVpmk3kWpWUV1bnuONweanxBoa+VC24tJgnAyY3KnHkR\\/au4YFMcMxfs3CRs499WuiWytexqzzDJyADSTKnZD7TVnpk0yzoeNlX1KR8KNWGVrNB6NytbwkJkPjmyOT8at1dmJaYKfSYyPiaHLC5TqxxMxP8IFWCypzA95pDRXM3Ylr1sBUiaKF18uJD8Qahfq\\/wCxx+6L\\/wA0yZV4D3k971Gyn7nueiK4mYkm46Mh90uyp9MYNVNx0UuyTwXsPthx8DRdqGsabEQsM\\/WH91TtUVdXs2H12\\/pNUIEmrezKvonZahot68c88EtnN9YAEFW8CP8Aur\\/pVYHUdCuLcFVdh3S3IEVFa\\/sXGOtwfUa7m1m1azMLSgvsAaGx8mmfczr9DdRXlLaH+dh\\/80\\/b9FNQU7mL7w\\/lRl221xvOgqRYzQ3U3VwyK788A1hlh56YOW2gX0ajdT6mqWNJvhyVvYw\\/OjJNOm4R3TXbWMoXdTTO2xbrwLawv0X\\/AAXb1FT\\/AN0z2S++yy+4fnRybN0TJX8Kb7O\\/lXdud3p78pGmrY3luoIyeMnHhyoIuXS3iaWVuFF5kjOK0b5T24taC7EBSQD6ayrWra6j064aeaORCN8DHiMYrqGakxsjG313TuXbIQfIgimn1S0JGZod9udAN0AZhjzqwQcd9Zoi8ZMyDh8+8NqJ0wnV1GFd3Jf2d3AL6yjitZm4FYNlg3hnyol6K2MF3c3qXMSvGLZjj08S4pu9jUaaI5ohI6tmMkf5uYzUzoWzdbdlxhjCqn18a5+FLrvmO1BrL8dDLTs7yRWxIUsMqTzHhXo6KQoATFIoP+6dvLxoyglxpEYU4Mrs2fLJAx+NOmcvbqzYG2APYMfGh94GJWAz9HFFu7KJzgbcMp8\\/XVX81j9uf71vzrS726K2kqjPCobx8jkfAUO\\/Nk\\/7cdDmzxCEDeU\\/yn6xbw9IpYAGaRGCNkYAoOur6zuYmhuEJRgOIYOOe249Nd9NmTVekF5cG7B45DuBnONs\\/hVGYCYZIxcoVcYOVydvLyqpCtQIqqrvOrrQtIPe7My+kM351CXR7C1l7biVltyHC9YRxNnYU1P0lW3t5LBkkcx5UyALk58sn0110eQatcy27vKIRHvkDOfA7E0pUMsdQq2DELtK1q11Epbll42TJGcb+IwatdMtH7ZcJFIYxKE7yjfPF\\/bNBMmiW9ldxOl\\/mVTxKoADEjfzohsek0VtGJHVywZSe6PP10ugZzWUatkMWmuy2zQ6LbhGBbhXfHI5zn8BTlxFI1wqLw4GNtxzYflQa\\/To3bW0VnGrQgfSB4+E5Gd9mPnT8nTbjuYxwRxgDBIOc7+Xtou3b5JOoYR6kJFs7kBQT9U4bwPjUfiP7NcRa1De2siqCZWK5C45Z9NO9oi8xTfx685iddxjEzm\\/0zTo7q3terSeeVsF4nJ8d258hTN\\/0ctI5JUspIpgq7Sni4FY8gay7ojfzwa0Ft5SnHFIGx6FJH4iia16SXVzYxBJZBKB9IWx3j6KzVcbEZpHuWf6K6fLI7XNlCzk5LBzv7KbvNAt9O0u6kso0iUIxZeInO1U761qXHjrGx\\/Cv5V1qF3fPo108rvwcGCCB5+gVLm2QZXXpNyD1vdG1uYZ0PfjYMPZRLqMUb6Yb21VzE5V+HwVSfz2oGWQySLGm7MQAB4mjhUW00eezuc5VFA3I35+7entiiMFr3DBC7RnhW0h7LNZQmeLrFEknVkjJGCxPMEcq9uNCvbk8UdxpxfOQy3SnPo51l91eEOkYcFV5Y5DxpyO7PnTAfIZNZ\\/WabcWmraZatISjAL9aKQNihv541L7Tc\\/1mh0XWfGve0emmH9i0+TrQNE+bruWeZhP9Gyrw90gkYqzgK20Dxx6ecOApzKCRv4ErVvbWcssXWohRSSAsncYgeOD4VGvLjsBXtEbsuNjGVIGTjzqSyWd+ZTU6TbiV3Wsh2spPvR\\/5r2W9lmtZbZrFikilTmXz9lNy9M7GGd4WtrhmQkHAXw5+PopQ9OtOTrJTZXRCEKdl257c\\/XQuk\\/IRqH2DWlWaxa9aqQwkWZQAx2BzRd0htmkEjJJl1V5XHqwAB7KG7rU4tS16PUbSNoYxKo+k55G\\/hnyottZLa5mnM75XJgIBx47+3umisPLN66+mZpcSSo4M0fVuTuPCu47k+daDe9EYL5eKO6tRGGJHEzKRgkb7eg1EfoT1aBg9sw5d1zzzjxFONQk7SD2iQnUtRhtBMkPWHHG52G1GP6CSf6xa\\/0\\/3qg1XQJNN0rt3CoiEnV8auDg+VVHzhcfaZvvDRDniZscwqi1W8uH45Zcl8hsDGcVD1O4kjs7icEGRULLnfBpUq848pc+MBYCez3Up3kWMAE+HEwBP4n306gC9GS4HeluW4j\\/AAquP+bUqVenPOk7Sjw28IAGJJ0RvUQQfjU3TrybO75LXG588rv8T76VKgYRLV7yZrNsudzKD7WY1M0O9uJZJ7d5CUHEwPiO6CR6s0qVBCJRa7cSTIUc9xW2GdhtQ\\/xN50qVMrxAZ\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"uiiBhdgCq+hg9SuYe1H8kgP5FpU=\",\"scanLengths\":[2486,24575],\"viewOnce\":true}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771083858,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:44:18'),
(16313, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A53F5F9BBD1F431D0686959D49F7FED3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083858643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:44:18'),
(16314, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:44:19'),
(16315, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A53F5F9BBD1F431D0686959D49F7FED3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083858643,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:44:19'),
(16316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:18.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:44:19'),
(16317, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:25.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:44:25'),
(16318, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5D041BCC556828A55D18C5FD574EDFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Apenas com 2 ampolas\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771083865,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:25.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:44:25'),
(16319, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:25.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:44:25'),
(16320, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5D041BCC556828A55D18C5FD574EDFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Apenas com 2 ampolas\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771083865,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:25.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:44:25'),
(16321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:25.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:44:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:25.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:44:26'),
(16323, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5D041BCC556828A55D18C5FD574EDFE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083866106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:26.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:44:26'),
(16324, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5D041BCC556828A55D18C5FD574EDFE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771083866106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:44:26.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:44:26'),
(16325, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A53F5F9BBD1F431D0686959D49F7FED3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979615,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:19'),
(16326, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979661,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:20'),
(16327, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5164883F1443DE50190471400932ABB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979647,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:20'),
(16328, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5D041BCC556828A55D18C5FD574EDFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:20'),
(16329, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979628,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:20'),
(16330, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5FEDA5E019DDDF9FF3D76B835C968B0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979620,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:20'),
(16331, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A53F5F9BBD1F431D0686959D49F7FED3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979615,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:20'),
(16332, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979661,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:20'),
(16333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5164883F1443DE50190471400932ABB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979647,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:20'),
(16334, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5D041BCC556828A55D18C5FD574EDFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979607,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:20'),
(16335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A512296A8C020E6AC7535F5385053E70\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979634,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:21'),
(16336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5FEDA5E019DDDF9FF3D76B835C968B0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979620,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:21'),
(16337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C2E690FF568EC996AC6912F0361E3F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:46:21'),
(16338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979628,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:21'),
(16339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A512296A8C020E6AC7535F5385053E70\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979634,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:22'),
(16340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C2E690FF568EC996AC6912F0361E3F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771083979652,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:46:19.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:46:22'),
(16341, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A56DDEDAC8CB8370206DAF28A408A7ED\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165485,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16342, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5809EDD612AE2F3E3DD256F25C8E567\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165509,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16343, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A54C0760E393A4C9ACED3E021F118111\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165469,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16344, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A58CC4D5082CB55A81C651EB82A2A33B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16345, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A51F20556AB1F3ACF832745467F737EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16346, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5085B9EEC3C2C749BC27DB385072208\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16347, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A519E1B8A5BCF7A02033355D7B94F730\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165505,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5DF2EFA8E640386D4BE91583CA72B33\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165480,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:25'),
(16349, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A58CC4D5082CB55A81C651EB82A2A33B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:26'),
(16350, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A56DDEDAC8CB8370206DAF28A408A7ED\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165485,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:26'),
(16351, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A54C0760E393A4C9ACED3E021F118111\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165469,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:26'),
(16352, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A51F20556AB1F3ACF832745467F737EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:26'),
(16353, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5085B9EEC3C2C749BC27DB385072208\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:26'),
(16354, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5DF2EFA8E640386D4BE91583CA72B33\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165480,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:27'),
(16355, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A519E1B8A5BCF7A02033355D7B94F730\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165505,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:27'),
(16356, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5809EDD612AE2F3E3DD256F25C8E567\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165509,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:28'),
(16357, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5905D0C34940DC3294536A91E5D82FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165494,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:49:28'),
(16358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"38573185196250:7@lid\",\"id\":\"A5905D0C34940DC3294536A91E5D82FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084165494,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:49:25.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:49:28'),
(16359, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:08.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:08'),
(16360, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:08.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:08'),
(16361, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:11.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:11'),
(16362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:11.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:11'),
(16363, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC19C1C6822C41810ECA8A57B444DBA2\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Fala mano boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Uv2RPrsuSY\\/Pcun+vvW5UbPefzn5ZDQEyH9tYoPbuY4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084451,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:11.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:54:11'),
(16364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:12.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:12'),
(16365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:11.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:12'),
(16366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:12.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:12'),
(16367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:11.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:12'),
(16368, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC19C1C6822C41810ECA8A57B444DBA2\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Fala mano boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Uv2RPrsuSY\\/Pcun+vvW5UbPefzn5ZDQEyH9tYoPbuY4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084451,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:11.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:54:12'),
(16369, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:12.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:13'),
(16370, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:12.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:14'),
(16371, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC71250DDFF4E288DBBA35A5F44CEBD5\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Agora to por casa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ERzMmEAC3bVB60DNAbTpqlGM7OuDklvbVjnGUBeUNdY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084456,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:54:16'),
(16372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:16'),
(16373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:16'),
(16374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:16'),
(16375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:16'),
(16376, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:17.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:17'),
(16377, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:17.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:17'),
(16378, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC71250DDFF4E288DBBA35A5F44CEBD5\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Agora to por casa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ERzMmEAC3bVB60DNAbTpqlGM7OuDklvbVjnGUBeUNdY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084456,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:54:17'),
(16379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:17'),
(16380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:16.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:18'),
(16381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACC45235F145BCCF7908AA0237B1E3DC\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Se vc conseguir me ajudar agradeço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X+n45w2ZJ2UCwNnbTykDQytOy0zReiLtJBa1rTe1W5A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084463,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:54:24'),
(16382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACC45235F145BCCF7908AA0237B1E3DC\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Se vc conseguir me ajudar agradeço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"X+n45w2ZJ2UCwNnbTykDQytOy0zReiLtJBa1rTe1W5A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084463,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:54:24'),
(16383, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:24'),
(16384, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:24'),
(16385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:24'),
(16386, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:25'),
(16387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:25'),
(16388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:24.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:26'),
(16389, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACB8C4064D94BC21D4E640781CED9499\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636886263_877841968579042_5897482509228646145_n.enc?ccb=11-4&oh=01_Q5Aa3wFZe2aC2EwEpZaRFOuSM-D7iS7STDDtBnY9Gc0ksN6rMw&oe=69B8073B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"RFnr5LZoaPL2t9U2dC1bUamVKM\\/5IwRgcBazOdr3ZwM=\",\"fileLength\":\"107788\",\"height\":1600,\"width\":900,\"mediaKey\":\"yLeIk9xIEhULeKsYiEITm3R8bXcbHA89YOqxSu7NLxY=\",\"fileEncSha256\":\"0OzI3oEbys1RFg\\/z9A9oB7f8RfHqSqRs8l0ThFdcnns=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636886263_877841968579042_5897482509228646145_n.enc?ccb=11-4&oh=01_Q5Aa3wFZe2aC2EwEpZaRFOuSM-D7iS7STDDtBnY9Gc0ksN6rMw&oe=69B8073B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771084485\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAwAAADAQEBAQAAAAAAAAAAAAAABAUDAgEGAQADAQEAAAAAAAAAAAAAAAAAAgMEAf\\/aAAwDAQACEAMQAAAAw0mbtygI5Mv0IsRpAdxoVRXGovSexwZtExuW1eTuHnLo8eGW53d9bkbqtyCowB\\/\\/xAAqEAACAQMDAgMJAAAAAAAAAAABAgADBBESITEFIhVBUhAgIzNCQ2Fjcf\\/aAAgBAQABPwAX9wOcGJfVzvpEN64+1Bfr9SEQMCAYWlLOkmF2hJit2j+QA5lBdSmMhEfYGU2yin8RsA4MswuhiW841KkSSXlSjR0t3yl8tZUII2aWrYpnu844HIbJjcGUW1U1MYmUGKod5qBPMZhg7y1HwVnhB9cXpH7J4TS9TRemUF5yYlulNQqjb3D7P\\/\\/EABsRAQACAgMAAAAAAAAAAAAAAAEAAhAhESAx\\/9oACAECAQE\\/AKlV8jSuKgOnIV51Hr\\/\\/xAAaEQACAwEBAAAAAAAAAAAAAAABAgAQESAx\\/9oACAEDAQE\\/AG0CBjTMSLbyZz\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"e+G5YfCqC8kDbo6MYpHKnFgBW9zAg1r7edL8JDy7xExdu51cnRJsXw==\",\"scanLengths\":[10601,33434,16512,47241],\"midQualityFileSha256\":\"++KWDjBwVUF2zP1rw24Tdg\\/ISH0dsMi8zp\\/MAgvl7OE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cX\\/Xv1AplLJq0k7ZTNtVqVHq6edw2byeenYYJZwCCmo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771084487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:54:47'),
(16390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:47'),
(16391, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:47'),
(16392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:47'),
(16393, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACB8C4064D94BC21D4E640781CED9499\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636886263_877841968579042_5897482509228646145_n.enc?ccb=11-4&oh=01_Q5Aa3wFZe2aC2EwEpZaRFOuSM-D7iS7STDDtBnY9Gc0ksN6rMw&oe=69B8073B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"RFnr5LZoaPL2t9U2dC1bUamVKM\\/5IwRgcBazOdr3ZwM=\",\"fileLength\":\"107788\",\"height\":1600,\"width\":900,\"mediaKey\":\"yLeIk9xIEhULeKsYiEITm3R8bXcbHA89YOqxSu7NLxY=\",\"fileEncSha256\":\"0OzI3oEbys1RFg\\/z9A9oB7f8RfHqSqRs8l0ThFdcnns=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636886263_877841968579042_5897482509228646145_n.enc?ccb=11-4&oh=01_Q5Aa3wFZe2aC2EwEpZaRFOuSM-D7iS7STDDtBnY9Gc0ksN6rMw&oe=69B8073B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771084485\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAwAAADAQEBAQAAAAAAAAAAAAAABAUDAgEGAQADAQEAAAAAAAAAAAAAAAAAAgMEAf\\/aAAwDAQACEAMQAAAAw0mbtygI5Mv0IsRpAdxoVRXGovSexwZtExuW1eTuHnLo8eGW53d9bkbqtyCowB\\/\\/xAAqEAACAQMDAgMJAAAAAAAAAAABAgADBBESITEFIhVBUhAgIzNCQ2Fjcf\\/aAAgBAQABPwAX9wOcGJfVzvpEN64+1Bfr9SEQMCAYWlLOkmF2hJit2j+QA5lBdSmMhEfYGU2yin8RsA4MswuhiW841KkSSXlSjR0t3yl8tZUII2aWrYpnu844HIbJjcGUW1U1MYmUGKod5qBPMZhg7y1HwVnhB9cXpH7J4TS9TRemUF5yYlulNQqjb3D7P\\/\\/EABsRAQACAgMAAAAAAAAAAAAAAAEAAhAhESAx\\/9oACAECAQE\\/AKlV8jSuKgOnIV51Hr\\/\\/xAAaEQACAwEBAAAAAAAAAAAAAAABAgAQESAx\\/9oACAEDAQE\\/AG0CBjTMSLbyZz\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"e+G5YfCqC8kDbo6MYpHKnFgBW9zAg1r7edL8JDy7xExdu51cnRJsXw==\",\"scanLengths\":[10601,33434,16512,47241],\"midQualityFileSha256\":\"++KWDjBwVUF2zP1rw24Tdg\\/ISH0dsMi8zp\\/MAgvl7OE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cX\\/Xv1AplLJq0k7ZTNtVqVHq6edw2byeenYYJZwCCmo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771084487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:54:47'),
(16394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16395, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:54:48'),
(16396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:54:47.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:54:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16397, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZwFyowntSEQrzuRNsTNpzZaT7qBlOViRGrSYQYOQXGA&oe=699DAD1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzzy3lsu8wo64tUJkdYCB-Z2sAVwkEMlbjrRPkTBBLog&oe=699D9BD8&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcZOK7s6dVXPKRveoPXyLgEQXMTo1zDzqM7YpY4ty3Ig&oe=699DB2DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLvbtD0zqMLTkee9qZ5aEbvRby7-xdKkOHB-QJWKHy7w&oe=699D9AA6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H3qlwdKcpevXr1swUiXcK9tC4awToKG32Uc4V0odYQ&oe=699D94D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUEerjawND73iP6S0e6NXs6MVNjxkYqa1Rw6s_2fxjA&oe=699D9AFB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUCgI1iTKpPQ1el9QgYcmRg-s-7kWR32WGo4YuudIoBg&oe=699DBC00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIwSdonBDmGWgDslLW_OvwBQcBans8JGPH-m3Oq5pDUg&oe=699D9D43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIqxm3McFbhjVWPSn0pD4wnVdJ1AWWMbE0taPFaPG9LQ&oe=699DBC5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8CjKS3WkhLyX3XnMEZkm_3_3La1JH4YwUblwj1B3N8A&oe=699D9455&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMeL9o1OFQV75ueZfmgs6uuH6iddmwmGEBwx-lstUO6Q&oe=699DBA95&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0irGk0-rSONOzN5_8UIBLdxC5ChUnuts92OQg5PHrzg&oe=699D8FD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHludRevAEISQk9_5DoydIHOHrY_8-ULTJ5bDUar0KFdA&oe=699D8F8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOy5XRkG3xP8S6cmcRNAlIYrX-GkZ6bCQpRj1z6kmXaQ&oe=699DC07B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEeCYLJxDgwuMLsx8OGp92Kec2YSwYyb_gD1fcPXP8liw&oe=699DAD38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa5Tdgc3PmNS8szgBrhygso_Mcx_KcSc9XzGvDywzdqA&oe=699DA7CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxM_nvCW6GUty6PPpHI4XuEHWbVCjhT4w8s2b3FBMgIw&oe=699DB616&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDEd0skqoH83WOx5gZnjhRdbRowbKpEXFkNiQEjh7s6Q&oe=699D9C9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFT3j25ZgXkwXFjRP_cgKAO0l9NVlXK6zjdCcB_wUoz8A&oe=699DA036&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzJrDdYCcCQCnAQAGA-CD8eSJXSZuyDC3irxahh4pcyQ&oe=699DB16F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAlTAvvSEVaerqdifxu4E4YScIGrAjbgYYEgG3r9YAfw&oe=699DB7EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk4Il5utpAuW2xmxzswYTZJ1kpoCj91p2n7jhuB-Tw2g&oe=699DAECD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3z0d8wAdVA07m1c7nhNwjFRPkWLHpQtd3PQ9c7XIjIQ&oe=699DB3FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmVI_EkQ65zIuP7S5Uc4qIW1Y5hTPf_wRlpqGOTUbsPA&oe=699D9502&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6jQTCHbKguuHQLIyWBkW2vtewvbs-kZWoJ6YAyJf_GA&oe=699DB295&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKHB25Um7spalwLmDbdIuQommbEqIa-Taz9tdEZyQb4Q&oe=699DBA4C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVfyFPks7K-ir6kyC9opDZG7Hf2cw3LTNAlVyDAkzuJg&oe=699D999A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-Aj4FAXex5XzG4bex_TtOVepz-vHybUmC0fIlYyDLw&oe=699D8FA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOmBCZ1xbm6XAaUdC81oX2l9jANwQogC1gBSTHVD1--Q&oe=699DA810&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbD3nc7yy5fsKRN3Q9EUIrPrHn0zHN71uYh5NmompRPQ&oe=699DB62A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoPVVmym7QTB4CWho30XQrfAe6RotxIOil5i-zfjfV0Q&oe=699DB07B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqVB-3AoGcjMEi_XCVxZHXXx4sWBb4l8uWCqVuCdmspg&oe=699DB9E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4x_tIcdLzgyLSzhOlG9P-tw0RPa0W73-SQBa2k-32Zw&oe=699DBD6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1jJZcoois4GrsNb0_lGZ2wrHLH6AEvVFYvlcVWkddWA&oe=699D8E64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvFzrhDJYF2jC2LgzmBZGnscnWYi913SvBSq7C8uRALw&oe=699DAC45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo5sEXydvnBOUHybDDSOgGfWKm1c3hkDJ9qrq7bl6tKg&oe=699DB3F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOGg00SR0y9Yc_TQmcb07sjLXGkNT-i3RbirznznWWXg&oe=699D9A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7yRJFhW2laGO5qGZewyr-bM_36XIhBJWtgQd-9brvXg&oe=699D93D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH_uo6JRwCZ_zPFqmJYmSBDcUkbUeUgdmHBByACvOpzw&oe=699D99F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNKhGNn-kPBl4Wya0luiAr4zlvaTxXT79-9P2w-1kzow&oe=699DADB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV44f1k3CCOkOqLdLw4P0yf-ckbhlxdNoeaLxLuLHSzw&oe=699DBCEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtpdfmiECWBrr3sqQZkcOwR6bvTWfHof7b1Txbyd85Hw&oe=699DB625&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdftAmzbJL6jZnR9ae5_fLXlOMxt6Chs8eusOhdCToQ&oe=699DBB8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbEV-4K_TVHqvpgEQnz5R4_RU3h54OgKndV91_FgYatA&oe=699DBBFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZlrIUTfO3Zm9QDOzJV8eRRMwxgvuRub435YQmeWskDA&oe=699DA4AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxte9Gu86EYCnk_pxnoWrdYs9LCZ-L-3TI3-1YVvmmxg&oe=699DA3AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFAg8v0m3boit-DxxF4JriA-8G8_sTjQ2s1QqADGE80A&oe=699DB515&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_UD6n95VUexhCbCPzw6kNgStIXvEeJain0H3yGfBrng&oe=699DAA6E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-xDPMwiaMY7wDhFN1JieJHd9IXvX_WLcwVs9HqIJeA&oe=699D9D18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI88SAFZXc-7AhF0kYqIHVJgoue3Hiy5SiVr3yu3kw9Q&oe=699DB213&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_-f9oXDLnytRbQKMsk66zMYByCAXx5KJnrhl24ChSYw&oe=699D9C39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEytNxq3PktK8R_g7I5eaR0zplvmOL9vJIrFel1W8E8tA&oe=699D8EC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7t79yDhe-WMZvN8XdLQSyvgcOi0paltbjRPYAeRf6sA&oe=699D9C61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFnDHgRI1hHNyf4aGUSsUsEzC2ch35yPsNY5BNZ1aDQ&oe=699DB438&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbD7bTfjIpCT8tFLUa4N2wr-cmoOIabeeV-7_qpLWUlw&oe=699D98F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiikgdcEO_0d9QY9aVCCjuVDZfPBT9h_diHuPTIK9qvw&oe=699DA7C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wExRgZe423Vw3WMX062mPhzU-zepeLHLyYgB1PEF3gJSA&oe=699D948F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVQRLsOr_FS9uJqGXjN-JTG0rMCJmwrOiHob-kiKWBw&oe=699DBFFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT3fDJNhfhb2RSBUTkZqPCbODweeaAsJ3yQR_KjPDjbg&oe=699DB0CE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYy-Rz_T3JLASssTuDUS6vg0_beDxsGQNAhIWb558bDA&oe=699DB7B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYRosW8X2ugMOdePzlzNbA2Cyqtu-_sPeSv3TFGt5AMA&oe=699D9D52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgrt2pHYG5DNZmuTFBO1KAwush7X--s_eb6PVVFJ8zAQ&oe=699D9090&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyCFgDRuWUO3d_6jEOc2h5TJHg11TZSRUE1Iwi4F9i4w&oe=699DBCBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdpZ1wvwOmQGKqW-bIjhTXq035CsApALGDH712IQX9g&oe=699DBFF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMAIBUxcQx9rG9cdCXLvVH7ysoIO4NG6Hbur4FJwNv0g&oe=699DBA6F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGByRmVyXpzWFowag_DkkqHZ3jWzsM2EUgTqKjhr5OhqA&oe=699DAEFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wExN8x-5EU4hr1KI8_MGGOa3Cx6o1anEcbUz1k79MkFBg&oe=699D905A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJFsVrxBwH253Js_Aojfl7hzINQoBRcp3xr1ibEe9bjQ&oe=699DB3D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFnGYT8SZoSgRXZ6HtTfxIagYL7tg8Y5dh3i56ZZ6stw&oe=699D9784&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ4bhtj0WShUKgNQHlr9HA8xTs5aN9zSDkBIDRxEESUw&oe=699D9E17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGpw30XcgdNnJ7P2KqGM3KXrRVD2qQckmPWlOxaAZnBg&oe=699D9EBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS1nsKe-srrDrvGd_Ovgds0_RCOIT_nI2cXYZfey5FQQ&oe=699D99CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-p0PAA_5FeozZ2oev4icWDWJXUghT9NgZkMzrvocAeQ&oe=699DAF35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKSTApqQaX8qFSkJwWI6ong2rkF-a14cSBrSEa-ltTkw&oe=699DBCC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQIC_0mD6fWYEpTbPEV3iZXSdP-UseBo0JPBBZcytZlw&oe=699D903D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOsUdhSMhKMseRGZUCDoTHZ9DmKAf-ASpxLuRPQAwcGA&oe=699D9465&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEvuOcn9ZMnlpJeylpa9-jJLZ3G5x9bSpkE3z08EKIQw&oe=699DABFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4dJJqp79w9zv426M1j4MWwJmtq7CED7saP03LlZOWLQ&oe=699D9102&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYkdmYBNc_8PYc4D0q9MZ-Wr2H1opXIiEB8hQh_cnJzg&oe=699DB7E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmf1uAJxGSbjqpzi4v-cTZMM4Kgit2tStIp4hvVNEJIg&oe=699DB307&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkByyuZsxH1LWVW7o0hCezQnbrOEUp6T1q8bGGtjLJSQ&oe=699DA067&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ9RP7CeX8LCAx7FE1Fn0sTY_Puky99fwxXLBaif_OUQ&oe=699DA31D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ2hYkQ_MzP-9ehYcwryFspMpdNk0msgu-u0dH4sgN-A&oe=699DAB07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHu7NNsGVQAYvTj2IsDYzSvZvLEnrBh3Ac0Rh1ezSzUg&oe=699DA6A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkEENi7L7RIHcq2hCg8S17euPMGyIeA9YJAY3u96268A&oe=699DB708&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfBmZ8htdAsCUXUq7z4jqMOCIPmK9mmksYwodvcxqxA&oe=699DB84A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNB_5jQnbFVaB28hi6AQ43qeA_uhhygnTd5noDP8Ojog&oe=699DB351&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvoVYtDx1KOS_uXFHBsNhnOE19elEWc9s4XGlz6ay9Bg&oe=699DA6F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVUgnpcdnJffCkwhrFQ9n4NnFNd-y2oa8vICxDkcNusA&oe=699DAE17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3jGHwalybA_A-P7cAKUykQU4NxGMkyDOAH7qlFyD5Bg&oe=699D9D7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGn2J7-YiQ7eL-0vzZKjr4pv8EeAXcIcDjvlqgmxleU9A&oe=699DA56E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsb9aSHTaHfbFUaQEfwIqmz82zfIv4l1_1oUGjKIQ6yw&oe=699DC0DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8k8o0AVI2fM9b-l0La2qiDPAaLPe84h4rLCKuUeulEg&oe=699DBDB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJs9t11CNWLurxz76SvwTFPonq0pmt3420Fh-22cQXLw&oe=699DAA47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWfmhNHpge8k_TpLy5RxvEXDxHf9zdJEFKEO5-vFfBwg&oe=699DBF8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdmGvsUN5H1d0uxZKKvp1XtrKOAZiaIBNffccf-vJsyQ&oe=699DA720&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE71y5dQsJXChAF9qbIfwtMk5hnJaeD9q5_htRyJ5tM2w&oe=699D9C4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYBmw8eb-qxNAkOk0UxPGv1wUafCNgNHcmfX_GbLJN9A&oe=699DAAE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2PIGfXZESb3noR7Uq2M3QV2efHUiEBjIfXuldoG9rog&oe=699DB792&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkn-Jwwo6lw1QXshcIC2ncg8qRDkhd8mawhV862q3auw&oe=699DB7A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFohSDjba56XyTSM371bkXwAfMxq7rVaNHi9QgYrKt_wA&oe=699DB363&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"prof', 1, '2026-02-14 12:54:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16398, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZwFyowntSEQrzuRNsTNpzZaT7qBlOViRGrSYQYOQXGA&oe=699DAD1F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzzy3lsu8wo64tUJkdYCB-Z2sAVwkEMlbjrRPkTBBLog&oe=699D9BD8&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcZOK7s6dVXPKRveoPXyLgEQXMTo1zDzqM7YpY4ty3Ig&oe=699DB2DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLvbtD0zqMLTkee9qZ5aEbvRby7-xdKkOHB-QJWKHy7w&oe=699D9AA6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wG1H3qlwdKcpevXr1swUiXcK9tC4awToKG32Uc4V0odYQ&oe=699D94D9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7GkEXWzyKP6D2T_GsXknaCX54diVq9s1eP0P2z9gFGg&oe=699D9F37&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIUEerjawND73iP6S0e6NXs6MVNjxkYqa1Rw6s_2fxjA&oe=699D9AFB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUCgI1iTKpPQ1el9QgYcmRg-s-7kWR32WGo4YuudIoBg&oe=699DBC00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIwSdonBDmGWgDslLW_OvwBQcBans8JGPH-m3Oq5pDUg&oe=699D9D43&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIqxm3McFbhjVWPSn0pD4wnVdJ1AWWMbE0taPFaPG9LQ&oe=699DBC5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8CjKS3WkhLyX3XnMEZkm_3_3La1JH4YwUblwj1B3N8A&oe=699D9455&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMeL9o1OFQV75ueZfmgs6uuH6iddmwmGEBwx-lstUO6Q&oe=699DBA95&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0irGk0-rSONOzN5_8UIBLdxC5ChUnuts92OQg5PHrzg&oe=699D8FD6&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHludRevAEISQk9_5DoydIHOHrY_8-ULTJ5bDUar0KFdA&oe=699D8F8C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOy5XRkG3xP8S6cmcRNAlIYrX-GkZ6bCQpRj1z6kmXaQ&oe=699DC07B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEeCYLJxDgwuMLsx8OGp92Kec2YSwYyb_gD1fcPXP8liw&oe=699DAD38&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEa5Tdgc3PmNS8szgBrhygso_Mcx_KcSc9XzGvDywzdqA&oe=699DA7CF&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxM_nvCW6GUty6PPpHI4XuEHWbVCjhT4w8s2b3FBMgIw&oe=699DB616&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDEd0skqoH83WOx5gZnjhRdbRowbKpEXFkNiQEjh7s6Q&oe=699D9C9A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFT3j25ZgXkwXFjRP_cgKAO0l9NVlXK6zjdCcB_wUoz8A&oe=699DA036&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzJrDdYCcCQCnAQAGA-CD8eSJXSZuyDC3irxahh4pcyQ&oe=699DB16F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAlTAvvSEVaerqdifxu4E4YScIGrAjbgYYEgG3r9YAfw&oe=699DB7EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk4Il5utpAuW2xmxzswYTZJ1kpoCj91p2n7jhuB-Tw2g&oe=699DAECD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3z0d8wAdVA07m1c7nhNwjFRPkWLHpQtd3PQ9c7XIjIQ&oe=699DB3FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmVI_EkQ65zIuP7S5Uc4qIW1Y5hTPf_wRlpqGOTUbsPA&oe=699D9502&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6jQTCHbKguuHQLIyWBkW2vtewvbs-kZWoJ6YAyJf_GA&oe=699DB295&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKHB25Um7spalwLmDbdIuQommbEqIa-Taz9tdEZyQb4Q&oe=699DBA4C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVfyFPks7K-ir6kyC9opDZG7Hf2cw3LTNAlVyDAkzuJg&oe=699D999A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-Aj4FAXex5XzG4bex_TtOVepz-vHybUmC0fIlYyDLw&oe=699D8FA5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOmBCZ1xbm6XAaUdC81oX2l9jANwQogC1gBSTHVD1--Q&oe=699DA810&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbD3nc7yy5fsKRN3Q9EUIrPrHn0zHN71uYh5NmompRPQ&oe=699DB62A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoPVVmym7QTB4CWho30XQrfAe6RotxIOil5i-zfjfV0Q&oe=699DB07B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqVB-3AoGcjMEi_XCVxZHXXx4sWBb4l8uWCqVuCdmspg&oe=699DB9E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4x_tIcdLzgyLSzhOlG9P-tw0RPa0W73-SQBa2k-32Zw&oe=699DBD6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1jJZcoois4GrsNb0_lGZ2wrHLH6AEvVFYvlcVWkddWA&oe=699D8E64&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvFzrhDJYF2jC2LgzmBZGnscnWYi913SvBSq7C8uRALw&oe=699DAC45&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo5sEXydvnBOUHybDDSOgGfWKm1c3hkDJ9qrq7bl6tKg&oe=699DB3F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOGg00SR0y9Yc_TQmcb07sjLXGkNT-i3RbirznznWWXg&oe=699D9A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7yRJFhW2laGO5qGZewyr-bM_36XIhBJWtgQd-9brvXg&oe=699D93D1&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEH_uo6JRwCZ_zPFqmJYmSBDcUkbUeUgdmHBByACvOpzw&oe=699D99F9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNKhGNn-kPBl4Wya0luiAr4zlvaTxXT79-9P2w-1kzow&oe=699DADB7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV44f1k3CCOkOqLdLw4P0yf-ckbhlxdNoeaLxLuLHSzw&oe=699DBCEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtpdfmiECWBrr3sqQZkcOwR6bvTWfHof7b1Txbyd85Hw&oe=699DB625&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdftAmzbJL6jZnR9ae5_fLXlOMxt6Chs8eusOhdCToQ&oe=699DBB8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbEV-4K_TVHqvpgEQnz5R4_RU3h54OgKndV91_FgYatA&oe=699DBBFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZlrIUTfO3Zm9QDOzJV8eRRMwxgvuRub435YQmeWskDA&oe=699DA4AE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGxte9Gu86EYCnk_pxnoWrdYs9LCZ-L-3TI3-1YVvmmxg&oe=699DA3AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFAg8v0m3boit-DxxF4JriA-8G8_sTjQ2s1QqADGE80A&oe=699DB515&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_UD6n95VUexhCbCPzw6kNgStIXvEeJain0H3yGfBrng&oe=699DAA6E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu-xDPMwiaMY7wDhFN1JieJHd9IXvX_WLcwVs9HqIJeA&oe=699D9D18&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI88SAFZXc-7AhF0kYqIHVJgoue3Hiy5SiVr3yu3kw9Q&oe=699DB213&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_-f9oXDLnytRbQKMsk66zMYByCAXx5KJnrhl24ChSYw&oe=699D9C39&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEytNxq3PktK8R_g7I5eaR0zplvmOL9vJIrFel1W8E8tA&oe=699D8EC6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wF7t79yDhe-WMZvN8XdLQSyvgcOi0paltbjRPYAeRf6sA&oe=699D9C61&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFnDHgRI1hHNyf4aGUSsUsEzC2ch35yPsNY5BNZ1aDQ&oe=699DB438&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbD7bTfjIpCT8tFLUa4N2wr-cmoOIabeeV-7_qpLWUlw&oe=699D98F8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wHiikgdcEO_0d9QY9aVCCjuVDZfPBT9h_diHuPTIK9qvw&oe=699DA7C0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wExRgZe423Vw3WMX062mPhzU-zepeLHLyYgB1PEF3gJSA&oe=699D948F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVQRLsOr_FS9uJqGXjN-JTG0rMCJmwrOiHob-kiKWBw&oe=699DBFFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT3fDJNhfhb2RSBUTkZqPCbODweeaAsJ3yQR_KjPDjbg&oe=699DB0CE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYy-Rz_T3JLASssTuDUS6vg0_beDxsGQNAhIWb558bDA&oe=699DB7B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYRosW8X2ugMOdePzlzNbA2Cyqtu-_sPeSv3TFGt5AMA&oe=699D9D52&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgrt2pHYG5DNZmuTFBO1KAwush7X--s_eb6PVVFJ8zAQ&oe=699D9090&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyCFgDRuWUO3d_6jEOc2h5TJHg11TZSRUE1Iwi4F9i4w&oe=699DBCBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdpZ1wvwOmQGKqW-bIjhTXq035CsApALGDH712IQX9g&oe=699DBFF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMAIBUxcQx9rG9cdCXLvVH7ysoIO4NG6Hbur4FJwNv0g&oe=699DBA6F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGByRmVyXpzWFowag_DkkqHZ3jWzsM2EUgTqKjhr5OhqA&oe=699DAEFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wExN8x-5EU4hr1KI8_MGGOa3Cx6o1anEcbUz1k79MkFBg&oe=699D905A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJFsVrxBwH253Js_Aojfl7hzINQoBRcp3xr1ibEe9bjQ&oe=699DB3D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFnGYT8SZoSgRXZ6HtTfxIagYL7tg8Y5dh3i56ZZ6stw&oe=699D9784&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ4bhtj0WShUKgNQHlr9HA8xTs5aN9zSDkBIDRxEESUw&oe=699D9E17&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGpw30XcgdNnJ7P2KqGM3KXrRVD2qQckmPWlOxaAZnBg&oe=699D9EBA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGS1nsKe-srrDrvGd_Ovgds0_RCOIT_nI2cXYZfey5FQQ&oe=699D99CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-p0PAA_5FeozZ2oev4icWDWJXUghT9NgZkMzrvocAeQ&oe=699DAF35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKSTApqQaX8qFSkJwWI6ong2rkF-a14cSBrSEa-ltTkw&oe=699DBCC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wFQIC_0mD6fWYEpTbPEV3iZXSdP-UseBo0JPBBZcytZlw&oe=699D903D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOsUdhSMhKMseRGZUCDoTHZ9DmKAf-ASpxLuRPQAwcGA&oe=699D9465&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHEvuOcn9ZMnlpJeylpa9-jJLZ3G5x9bSpkE3z08EKIQw&oe=699DABFF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4dJJqp79w9zv426M1j4MWwJmtq7CED7saP03LlZOWLQ&oe=699D9102&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYkdmYBNc_8PYc4D0q9MZ-Wr2H1opXIiEB8hQh_cnJzg&oe=699DB7E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmf1uAJxGSbjqpzi4v-cTZMM4Kgit2tStIp4hvVNEJIg&oe=699DB307&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkByyuZsxH1LWVW7o0hCezQnbrOEUp6T1q8bGGtjLJSQ&oe=699DA067&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJ9RP7CeX8LCAx7FE1Fn0sTY_Puky99fwxXLBaif_OUQ&oe=699DA31D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ2hYkQ_MzP-9ehYcwryFspMpdNk0msgu-u0dH4sgN-A&oe=699DAB07&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHu7NNsGVQAYvTj2IsDYzSvZvLEnrBh3Ac0Rh1ezSzUg&oe=699DA6A3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkEENi7L7RIHcq2hCg8S17euPMGyIeA9YJAY3u96268A&oe=699DB708&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfBmZ8htdAsCUXUq7z4jqMOCIPmK9mmksYwodvcxqxA&oe=699DB84A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNB_5jQnbFVaB28hi6AQ43qeA_uhhygnTd5noDP8Ojog&oe=699DB351&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHvoVYtDx1KOS_uXFHBsNhnOE19elEWc9s4XGlz6ay9Bg&oe=699DA6F6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVUgnpcdnJffCkwhrFQ9n4NnFNd-y2oa8vICxDkcNusA&oe=699DAE17&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3jGHwalybA_A-P7cAKUykQU4NxGMkyDOAH7qlFyD5Bg&oe=699D9D7E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wGn2J7-YiQ7eL-0vzZKjr4pv8EeAXcIcDjvlqgmxleU9A&oe=699DA56E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsb9aSHTaHfbFUaQEfwIqmz82zfIv4l1_1oUGjKIQ6yw&oe=699DC0DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8k8o0AVI2fM9b-l0La2qiDPAaLPe84h4rLCKuUeulEg&oe=699DBDB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJs9t11CNWLurxz76SvwTFPonq0pmt3420Fh-22cQXLw&oe=699DAA47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWfmhNHpge8k_TpLy5RxvEXDxHf9zdJEFKEO5-vFfBwg&oe=699DBF8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wGdmGvsUN5H1d0uxZKKvp1XtrKOAZiaIBNffccf-vJsyQ&oe=699DA720&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wE71y5dQsJXChAF9qbIfwtMk5hnJaeD9q5_htRyJ5tM2w&oe=699D9C4B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYBmw8eb-qxNAkOk0UxPGv1wUafCNgNHcmfX_GbLJN9A&oe=699DAAE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2PIGfXZESb3noR7Uq2M3QV2efHUiEBjIfXuldoG9rog&oe=699DB792&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkn-Jwwo6lw1QXshcIC2ncg8qRDkhd8mawhV862q3auw&oe=699DB7A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFohSDjba56XyTSM371bkXwAfMxq7rVaNHi9QgYrKt_wA&oe=699DB363&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"prof', 1, '2026-02-14 12:54:55');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16399, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:55:26'),
(16400, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACF615EE240BA38E12C76B255D4EE584\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636902020_902561019291973_959924259800238964_n.enc?ccb=11-4&oh=01_Q5Aa3wGPUpSXPlsE11qTZOE-mx5VEzQ2_d52UHdWXroqb7PR9Q&oe=69B802B5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"Xu9MbgxXpCtNNFgMX8SnZaaazHSWeEBfj0WLU1eERdA=\",\"fileLength\":\"3681901\",\"seconds\":16,\"mediaKey\":\"h+JhsRbPYJPiyQB5ZjFkHjeeWtgky0\\/e6j\\/cyAgJ97o=\",\"height\":474,\"width\":848,\"fileEncSha256\":\"R0Lc3HCMQotf4TZvkqd7ybCDiGKIqURrB6ycVURA44Y=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636902020_902561019291973_959924259800238964_n.enc?ccb=11-4&oh=01_Q5Aa3wGPUpSXPlsE11qTZOE-mx5VEzQ2_d52UHdWXroqb7PR9Q&oe=69B802B5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771084524\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACgASAMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAECAwUBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAF6soC1ZJmNM3EoisUdSUI7nH7KKJMbaJlg4Vz6dGJ5Z0CNrB0zaoNMAMWDLgBm\\/\\/8QAJRAAAgIBAwMEAwAAAAAAAAAAAAECEQMEEyESMTIQQVFhFCJS\\/9oACAEBAAE\\/AJ3QsrQsh1WJN9hsbGxu0Z8bhaJIjZjTbQ8VrjuTu+fRjNZ3ZIiQdG5J+4xjJM1C6mzYT+RaZL5Fp4\\/ZtR7UzYi\\/Zn40boek+iWl+iOZt25LljyW76kbirzFl58ieRJ+Q8vC\\/YjnXV5Es3PEieV\\/0f\\/EABsRAAIDAAMAAAAAAAAAAAAAAAABAhASERMh\\/9oACAECAQE\\/AK9tRbMM65GGYdcmhyNH\\/8QAGREAAwEBAQAAAAAAAAAAAAAAAAESEAIR\\/9oACAEDAQE\\/AMTe0ikXyUis8JFyeH\\/\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"mRGiX1lV9RnPv3zP8jDRMAEcNLBBAUmJ+Y31IkD1PMZsy4dYD7pmKeRceDe5EUrR1Sc49EImGrQtPoGgXiTxTrTrAiUbUgQsfyM0tob0Em4J46tetJkSsaZy31yh4J\\/yLLoZtFZg38O\\/zqrgse0kr1WlAgCxpp9iKb4\\/KRLn6VOChHwwG6Z6drQjy3enfQKRV9+\\/35cZ0RD3692mpHXVz2GgUTvXqMykadf9d+zyDr9h5iL2\\/pTUFESEr4k2arKnJWCkmqvt5jxqu1nP097F\\/mP2fDWJPHAWubE5Mc\\/23AVB8xVn6PuwuWg9X1kItJ7hay87KIe84BjsCJKzJMcuCRs+J40OWfnSDDTXMJphyEKA5dvpn308ROS+7+9V8ulVQXelFmPEYEFH9qU03fj1wgfUtbJ\\/YykLdefBADi60OXlwS74Mm58CUjrTHy\\/ko9YhEvJm8e5zsfKo\\/H8pXpyhHtpMYbWQKZLneX9BIKdeobTrjbxO4mamflxWInB1BezIuASbzWS7D\\/wI7qUmjT8\\/RTr1U844BWxPa0ediDjAFSiIt2lUgTYNx2xf+pmGzRJuGaOAQ7NfXdCYjXkvm6EJwd72sjCn2B\\/eqpPIyOfTOUkW48uQy7kYpwl1X96W7gandO0kf2YPQARb2zUwvAD\\/HtkQLlSydkvbXn8cypyZydhV12NsBXPymo3PllVQS5HUzMnR3jXJhzkcipkBCm9\\/6kngat38WO90dAlWkKdJ+B1Zy51Pa0hvAEn\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aZkCsXYUDA8vmPRmZ1Tp3Ls0ruDc80zFNMrcwfNri0A=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771084525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:55:26'),
(16401, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:55:26'),
(16402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:55:26'),
(16403, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACF615EE240BA38E12C76B255D4EE584\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636902020_902561019291973_959924259800238964_n.enc?ccb=11-4&oh=01_Q5Aa3wGPUpSXPlsE11qTZOE-mx5VEzQ2_d52UHdWXroqb7PR9Q&oe=69B802B5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"Xu9MbgxXpCtNNFgMX8SnZaaazHSWeEBfj0WLU1eERdA=\",\"fileLength\":\"3681901\",\"seconds\":16,\"mediaKey\":\"h+JhsRbPYJPiyQB5ZjFkHjeeWtgky0\\/e6j\\/cyAgJ97o=\",\"height\":474,\"width\":848,\"fileEncSha256\":\"R0Lc3HCMQotf4TZvkqd7ybCDiGKIqURrB6ycVURA44Y=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636902020_902561019291973_959924259800238964_n.enc?ccb=11-4&oh=01_Q5Aa3wGPUpSXPlsE11qTZOE-mx5VEzQ2_d52UHdWXroqb7PR9Q&oe=69B802B5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771084524\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACgASAMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAECAwUBAQEBAQAAAAAAAAAAAAAAAAEAAgP\\/2gAMAwEAAhADEAAAAF6soC1ZJmNM3EoisUdSUI7nH7KKJMbaJlg4Vz6dGJ5Z0CNrB0zaoNMAMWDLgBm\\/\\/8QAJRAAAgIBAwMEAwAAAAAAAAAAAAECEQMEEyESMTIQQVFhFCJS\\/9oACAEBAAE\\/AJ3QsrQsh1WJN9hsbGxu0Z8bhaJIjZjTbQ8VrjuTu+fRjNZ3ZIiQdG5J+4xjJM1C6mzYT+RaZL5Fp4\\/ZtR7UzYi\\/Zn40boek+iWl+iOZt25LljyW76kbirzFl58ieRJ+Q8vC\\/YjnXV5Es3PEieV\\/0f\\/EABsRAAIDAAMAAAAAAAAAAAAAAAABAhASERMh\\/9oACAECAQE\\/AK9tRbMM65GGYdcmhyNH\\/8QAGREAAwEBAQAAAAAAAAAAAAAAAAESEAIR\\/9oACAEDAQE\\/AMTe0ikXyUis8JFyeH\\/\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"mRGiX1lV9RnPv3zP8jDRMAEcNLBBAUmJ+Y31IkD1PMZsy4dYD7pmKeRceDe5EUrR1Sc49EImGrQtPoGgXiTxTrTrAiUbUgQsfyM0tob0Em4J46tetJkSsaZy31yh4J\\/yLLoZtFZg38O\\/zqrgse0kr1WlAgCxpp9iKb4\\/KRLn6VOChHwwG6Z6drQjy3enfQKRV9+\\/35cZ0RD3692mpHXVz2GgUTvXqMykadf9d+zyDr9h5iL2\\/pTUFESEr4k2arKnJWCkmqvt5jxqu1nP097F\\/mP2fDWJPHAWubE5Mc\\/23AVB8xVn6PuwuWg9X1kItJ7hay87KIe84BjsCJKzJMcuCRs+J40OWfnSDDTXMJphyEKA5dvpn308ROS+7+9V8ulVQXelFmPEYEFH9qU03fj1wgfUtbJ\\/YykLdefBADi60OXlwS74Mm58CUjrTHy\\/ko9YhEvJm8e5zsfKo\\/H8pXpyhHtpMYbWQKZLneX9BIKdeobTrjbxO4mamflxWInB1BezIuASbzWS7D\\/wI7qUmjT8\\/RTr1U844BWxPa0ediDjAFSiIt2lUgTYNx2xf+pmGzRJuGaOAQ7NfXdCYjXkvm6EJwd72sjCn2B\\/eqpPIyOfTOUkW48uQy7kYpwl1X96W7gandO0kf2YPQARb2zUwvAD\\/HtkQLlSydkvbXn8cypyZydhV12NsBXPymo3PllVQS5HUzMnR3jXJhzkcipkBCm9\\/6kngat38WO90dAlWkKdJ+B1Zy51Pa0hvAEn\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aZkCsXYUDA8vmPRmZ1Tp3Ls0ruDc80zFNMrcwfNri0A=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771084525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:55:26'),
(16404, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:55:27'),
(16405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:55:27'),
(16406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:55:26.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:55:27'),
(16407, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084593617,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:33.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:56:33'),
(16408, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A55CFBE7BD39E54A43CE6B408D9BF68F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084593617,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:33.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:56:34'),
(16409, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:42.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:56:42'),
(16410, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:42.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:56:42'),
(16411, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A512296A8C020E6AC7535F5385053E70\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084602662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:42.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:56:43'),
(16412, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A512296A8C020E6AC7535F5385053E70\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084602662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:42.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:56:43'),
(16413, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:44.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:56:44'),
(16414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:44.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:56:45'),
(16415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:45.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:56:45'),
(16416, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:45.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:56:45'),
(16417, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB077C57185747A99C6AB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084605,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:45.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:56:45'),
(16418, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:45.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:56:45'),
(16419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:45.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:56:45'),
(16420, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB094A45652B1DD7EF797\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📚 *AJUDA - Comandos Admin*\\n\\n─────────────────────\\n📝 *\\/cadastro*\\nInicia cadastro interativo\\n\\n💰 *\\/pago TELEFONE*\\nConfirma pagamento PIX Manual\\n\\n✅ *\\/aprovar TELEFONE*\\nAprova pagamento automático\\n\\n⏸️ *\\/pausar TELEFONE*\\nPausa serviço do cliente\\n\\n▶️ *\\/reativar TELEFONE*\\nReativa serviço do cliente\\n\\n🔍 *\\/buscar TELEFONE*\\nBusca informações do cliente\\n\\n📋 *\\/pendentes*\\nLista clientes pendentes\\n\\n📅 *\\/vencimento*\\nConsulta seu vencimento\\n\\n❓ *\\/ajuda*\\nMostra esta mensagem\\n─────────────────────\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771084605,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:46.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:56:46'),
(16421, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB094A45652B1DD7EF797\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📚 *AJUDA - Comandos Admin*\\n\\n─────────────────────\\n📝 *\\/cadastro*\\nInicia cadastro interativo\\n\\n💰 *\\/pago TELEFONE*\\nConfirma pagamento PIX Manual\\n\\n✅ *\\/aprovar TELEFONE*\\nAprova pagamento automático\\n\\n⏸️ *\\/pausar TELEFONE*\\nPausa serviço do cliente\\n\\n▶️ *\\/reativar TELEFONE*\\nReativa serviço do cliente\\n\\n🔍 *\\/buscar TELEFONE*\\nBusca informações do cliente\\n\\n📋 *\\/pendentes*\\nLista clientes pendentes\\n\\n📅 *\\/vencimento*\\nConsulta seu vencimento\\n\\n❓ *\\/ajuda*\\nMostra esta mensagem\\n─────────────────────\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771084605,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:46.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:56:46'),
(16422, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB077C57185747A99C6AB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084605,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:45.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:56:46'),
(16423, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084611245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:51.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:56:51'),
(16424, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A589AAE2AABF11D54F15AF9FA1F4E4D1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084611245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:56:51.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:56:51'),
(16425, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:01.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:01'),
(16426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:01.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:01'),
(16427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:04.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:04'),
(16428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACBB5429681DB778429A2BDDEA584871\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Que diferença\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bDj2rtZ0xJqQiQGtLVuingKdVxk3fAFUgI6K4bQl39Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:04.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:57:05'),
(16429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:05.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:05'),
(16430, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:04.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:05'),
(16431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:05.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:05'),
(16432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:05.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:05'),
(16433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:05.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:05'),
(16434, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACBB5429681DB778429A2BDDEA584871\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Que diferença\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bDj2rtZ0xJqQiQGtLVuingKdVxk3fAFUgI6K4bQl39Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:04.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:57:06'),
(16435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:32.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:32'),
(16436, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791063914@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:32.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:32'),
(16437, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005B2DB19A8D6CA72E2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084652,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:32.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:57:32'),
(16438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791063914@s.whatsapp.net\",\"pushName\":\"Jou Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:32.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:32'),
(16439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791063914@s.whatsapp.net\",\"pushName\":\"Jou Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:32.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:33'),
(16440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005B2DB19A8D6CA72E2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084652,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:32.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:57:33'),
(16441, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB005B2DB19A8D6CA72E2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084653789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:33.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:57:33'),
(16442, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB005B2DB19A8D6CA72E2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084653789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:33.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:57:34'),
(16443, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:41.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:41'),
(16444, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:41.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:42'),
(16445, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:42.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:42'),
(16446, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB053CBA3461399FEA187\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084662,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:42.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:57:42'),
(16447, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:42.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:42'),
(16448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:42.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:43'),
(16449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:42.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:43'),
(16450, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0536AF38E001B537148\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771084663,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:43.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:57:43'),
(16451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB053CBA3461399FEA187\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084662,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:42.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:57:43'),
(16452, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0536AF38E001B537148\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771084663,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:57:43.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:57:43'),
(16453, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5F488C29C8CDF6BCBE01BC49C8D8276\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084781115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:41.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:59:41'),
(16454, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5F488C29C8CDF6BCBE01BC49C8D8276\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084781115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:41.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:59:41'),
(16455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5F488C29C8CDF6BCBE01BC49C8D8276\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Essa aí sou eu\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:41.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:59:41'),
(16456, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5F488C29C8CDF6BCBE01BC49C8D8276\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Essa aí sou eu\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084781,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:41.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:59:42'),
(16457, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:41.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:59:42'),
(16458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:42.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:59:42'),
(16459, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:41.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:59:42'),
(16460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:42.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:59:42'),
(16461, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5C6E277A019B4C2C47843D7129CF02F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Desincha bastante\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:59:45'),
(16462, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:59:45'),
(16463, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C6E277A019B4C2C47843D7129CF02F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084785584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:59:45'),
(16464, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:59:45'),
(16465, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5C6E277A019B4C2C47843D7129CF02F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Desincha bastante\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084785,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:59:45'),
(16466, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C6E277A019B4C2C47843D7129CF02F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084785584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:59:46'),
(16467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:59:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:45.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:59:47'),
(16469, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:59:53'),
(16470, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A54E9D996E591E01154458C23C146572\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Perdi 12kg\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084793,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:59:53'),
(16471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:59:53'),
(16472, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A54E9D996E591E01154458C23C146572\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Perdi 12kg\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084793,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:59:53'),
(16473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 12:59:53'),
(16474, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A54E9D996E591E01154458C23C146572\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084793321,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 12:59:54'),
(16475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A54E9D996E591E01154458C23C146572\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084793321,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 12:59:54'),
(16476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T12:59:53.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 12:59:54'),
(16477, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:00:02'),
(16478, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5BECC73EAD0F646112CD73BC108A5DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ainda faltam 10kg\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084802,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:00:02'),
(16479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:00:02'),
(16480, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5BECC73EAD0F646112CD73BC108A5DB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ainda faltam 10kg\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084802,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:00:03'),
(16481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:00:03'),
(16482, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:00:03'),
(16483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BECC73EAD0F646112CD73BC108A5DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084802911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:00:03'),
(16484, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BECC73EAD0F646112CD73BC108A5DB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084802911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:02.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:00:03'),
(16485, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:49.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:00:50'),
(16486, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:49.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:00:50'),
(16487, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D1537B56B4DABC1DDD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084851,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:51.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:00:51'),
(16488, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:51.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:00:51'),
(16489, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:51.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:00:51'),
(16490, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:51.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:00:52'),
(16491, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06140079038B67ED820\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771084852,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:52.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:00:52'),
(16492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:51.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:00:52'),
(16493, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06140079038B67ED820\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771084852,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:52.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:00:52'),
(16494, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D1537B56B4DABC1DDD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084851,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:00:51.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:00:52'),
(16495, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084868475,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:08.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:01:08'),
(16496, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084868397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:08.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:01:08'),
(16497, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771084868475,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:08.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:01:11'),
(16498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"10054635921414@lid\",\"id\":\"A5F5CE22383F7CA60937F1692E1A5AD8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084868397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:08.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:01:11'),
(16499, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:17.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:01:17'),
(16500, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"presences\":{\"10054635921414@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:17.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:01:17'),
(16501, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:01:19'),
(16502, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3AEC9B77FE2B16431AB0\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iFB9HoMx7lgVkcJNsgQZe+5KpHVeS\\/VJ\\/yXmnQ49GI0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084879,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:01:19'),
(16503, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:01:19'),
(16504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:01:19'),
(16505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:01:19'),
(16506, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:01:20'),
(16507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"10054635921414@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:01:20'),
(16508, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"10054635921414@lid\",\"fromMe\":false,\"id\":\"3AEC9B77FE2B16431AB0\"},\"pushName\":\"Edgar Lopes\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771072455\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iFB9HoMx7lgVkcJNsgQZe+5KpHVeS\\/VJ\\/yXmnQ49GI0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084879,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:19.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:01:21'),
(16509, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084883715,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:23.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:01:23'),
(16510, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084883715,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:23.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:01:24'),
(16511, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636757060_4306809842911969_3429813338788653862_n.enc?ccb=11-4&oh=01_Q5Aa3wFQMO0MEMlyPwxJuCx2qspn8aG2bgmUogiN_xtKQKazmg&oe=69B8101B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"a+b4yIt1XqcTh\\/WqwbokwgNi3+3t\\/1O0aLc5dQqcd0E=\",\"fileLength\":\"178836\",\"seconds\":76,\"ptt\":true,\"mediaKey\":\"6bgNVoeree4GPvAWMttiJotoqZ4CaX9yTeAJljC9gFg=\",\"fileEncSha256\":\"74KWrBm9pz5+MJPnu0qh7H2cHvlqzW6E5IERH+z+5jk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636757060_4306809842911969_3429813338788653862_n.enc?ccb=11-4&oh=01_Q5Aa3wFQMO0MEMlyPwxJuCx2qspn8aG2bgmUogiN_xtKQKazmg&oe=69B8101B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771084807\",\"waveform\":\"AA0cND43LQMqRic6RCFFSklTQE5RTBhAJSFGQilBKkIxRD4\\/SRktTDEcUk41Szc6LEY9TjpRQRBLPRdIVDYRBQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771084884,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:24.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:01:24'),
(16512, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:24.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:01:24'),
(16513, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:24.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:01:24'),
(16514, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636757060_4306809842911969_3429813338788653862_n.enc?ccb=11-4&oh=01_Q5Aa3wFQMO0MEMlyPwxJuCx2qspn8aG2bgmUogiN_xtKQKazmg&oe=69B8101B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"a+b4yIt1XqcTh\\/WqwbokwgNi3+3t\\/1O0aLc5dQqcd0E=\",\"fileLength\":\"178836\",\"seconds\":76,\"ptt\":true,\"mediaKey\":\"6bgNVoeree4GPvAWMttiJotoqZ4CaX9yTeAJljC9gFg=\",\"fileEncSha256\":\"74KWrBm9pz5+MJPnu0qh7H2cHvlqzW6E5IERH+z+5jk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636757060_4306809842911969_3429813338788653862_n.enc?ccb=11-4&oh=01_Q5Aa3wFQMO0MEMlyPwxJuCx2qspn8aG2bgmUogiN_xtKQKazmg&oe=69B8101B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771084807\",\"waveform\":\"AA0cND43LQMqRic6RCFFSklTQE5RTBhAJSFGQilBKkIxRD4\\/SRktTDEcUk41Szc6LEY9TjpRQRBLPRdIVDYRBQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771084884,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:24.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:01:24'),
(16515, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:24.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:01:25'),
(16516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:01:24.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:01:25'),
(16517, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5F488C29C8CDF6BCBE01BC49C8D8276\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922102,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:02'),
(16518, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A54E9D996E591E01154458C23C146572\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922094,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:02'),
(16519, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BECC73EAD0F646112CD73BC108A5DB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:02'),
(16520, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C6E277A019B4C2C47843D7129CF02F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:02'),
(16521, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:02'),
(16522, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BECC73EAD0F646112CD73BC108A5DB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:04'),
(16523, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A54E9D996E591E01154458C23C146572\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922094,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:04'),
(16524, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C6E277A019B4C2C47843D7129CF02F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:04'),
(16525, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5F488C29C8CDF6BCBE01BC49C8D8276\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922102,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:04'),
(16526, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084922085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:02.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:04'),
(16527, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:07.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:07'),
(16528, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:07.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:07'),
(16529, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:09'),
(16530, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC108434F5BF78C95749055567EDE07F\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Muito\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j6MJ5KY4YYaX26PmmKG3sH0JU2NMQYK9t3g\\/YHq599M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084928,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:09'),
(16531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:09'),
(16532, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:09'),
(16533, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC108434F5BF78C95749055567EDE07F\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Muito\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j6MJ5KY4YYaX26PmmKG3sH0JU2NMQYK9t3g\\/YHq599M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084928,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:09'),
(16534, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:10'),
(16535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:10'),
(16536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:10'),
(16537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:10'),
(16538, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:09.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:10'),
(16539, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC96AAA1429ACB26D6E68288B97A3DED\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Eu fico com medo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5gNrF+Cmq8\\/j0zvboKi4Wohyqz3XmxPglmjG1e3T23U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:15'),
(16540, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:15'),
(16541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:15'),
(16542, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:15'),
(16543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16544, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC96AAA1429ACB26D6E68288B97A3DED\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Eu fico com medo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5gNrF+Cmq8\\/j0zvboKi4Wohyqz3XmxPglmjG1e3T23U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084935,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:16'),
(16545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:16'),
(16546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:15.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:16'),
(16547, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:17.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:17'),
(16548, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:17.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:17'),
(16549, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00DC1905BDACF1A5CCC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"slv negao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084938,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:18'),
(16550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:18'),
(16551, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:18'),
(16552, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00DC1905BDACF1A5CCC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"slv negao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084938,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:18'),
(16553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:18'),
(16554, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB00DC1905BDACF1A5CCC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084938979,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:19'),
(16555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB00DC1905BDACF1A5CCC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084938979,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:19'),
(16556, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:19'),
(16557, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:18.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:19'),
(16558, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC606691C13998C76C16D7A3B8EC4D2D\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Sabia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3kblDLcOlTYzC6shu2xY6aA12yXS8d\\/fTt4sj0ckofM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:19'),
(16559, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC606691C13998C76C16D7A3B8EC4D2D\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Sabia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3kblDLcOlTYzC6shu2xY6aA12yXS8d\\/fTt4sj0ckofM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:20'),
(16560, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:20'),
(16561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:20'),
(16562, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:20'),
(16563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:20'),
(16564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB0A8296C8ED35B63FC21\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084940899,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:20.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:21'),
(16565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A8296C8ED35B63FC21\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bora ageitar isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084940,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:20.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:21'),
(16566, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:20.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:21'),
(16567, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:21.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:21'),
(16568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB0A8296C8ED35B63FC21\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084940899,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:20.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:21'),
(16569, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A8296C8ED35B63FC21\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bora ageitar isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084940,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:20.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:22'),
(16570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:21.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:22'),
(16571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:20.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:22'),
(16572, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:19.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:22'),
(16573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB00DC1905BDACF1A5CCC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084944938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:24.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:25'),
(16574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB0A8296C8ED35B63FC21\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084944936,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:24.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:25'),
(16575, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB00DC1905BDACF1A5CCC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084944938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:24.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:25'),
(16576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB0A8296C8ED35B63FC21\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084944936,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:24.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:25'),
(16577, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB089AEC6741596A17CA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"podes excluir esse app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084946,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:26'),
(16578, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:26'),
(16579, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:26'),
(16580, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB089AEC6741596A17CA9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"podes excluir esse app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084946,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:26'),
(16581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB089AEC6741596A17CA9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084946441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:26'),
(16582, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB089AEC6741596A17CA9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084946441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:27'),
(16583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:27'),
(16584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:26.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:27'),
(16585, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:28.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:28'),
(16586, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005F60CEF8CE4CBF598\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vamo baixa outro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084948,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:28.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:28'),
(16587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:28.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:28'),
(16588, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB005F60CEF8CE4CBF598\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084948896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:28.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:28'),
(16589, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005F60CEF8CE4CBF598\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vamo baixa outro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084948,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:28.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:29'),
(16590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:29.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:29'),
(16591, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB005F60CEF8CE4CBF598\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084948896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:28.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:29'),
(16592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:29.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:29'),
(16593, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:31.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:31'),
(16594, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:31.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:31'),
(16595, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:32.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:32'),
(16596, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04357403FB2A666C92C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"parece q bugo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084952,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:32.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:32'),
(16597, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:32.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:32'),
(16598, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04357403FB2A666C92C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"parece q bugo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084952,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:32.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:32'),
(16600, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:32.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:33'),
(16601, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:33'),
(16602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC8C878CFEAB47D884C9D4F190A5558F\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Blza mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nszOf0mHu6T5QQ6nBsPbX0bvdvi6wLN8yGXd0MRumCQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:33'),
(16604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:32.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:33'),
(16605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:34'),
(16606, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:34'),
(16607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:34'),
(16608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:34'),
(16609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:34'),
(16610, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC8C878CFEAB47D884C9D4F190A5558F\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Blza mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nszOf0mHu6T5QQ6nBsPbX0bvdvi6wLN8yGXd0MRumCQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771084953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:33.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:35'),
(16611, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:48.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:48'),
(16612, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:48.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:48'),
(16613, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F5423C0A8019F7F5DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"podes baixar pela loja no navegador\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084968,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:48.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:49'),
(16614, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:49.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:02:49'),
(16615, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:49.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:02:49'),
(16616, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB0F5423C0A8019F7F5DA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084968967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:48.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:49'),
(16617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F5423C0A8019F7F5DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"podes baixar pela loja no navegador\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084968,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:48.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:49'),
(16618, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB0F5423C0A8019F7F5DA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084968967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:48.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:50'),
(16619, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB0F5423C0A8019F7F5DA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084978696,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:58.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:02:58'),
(16620, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB0F5423C0A8019F7F5DA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084978696,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:02:58.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:02:59'),
(16621, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:07.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:03:07'),
(16622, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01E63C09BBE847C3795\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"store1.voidpla.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084987,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:07.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:03:07'),
(16623, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554799410718@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:07.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:03:07');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16624, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01E63C09BBE847C3795\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"store1.voidpla.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771084987,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:07.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:03:07'),
(16625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:07.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:03:07'),
(16626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554799410718@s.whatsapp.net\",\"pushName\":\"Giovani0718 Clt Iptv RodoNaves\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:07.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:03:08'),
(16627, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB01E63C09BBE847C3795\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084988120,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:08.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:03:08'),
(16628, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB01E63C09BBE847C3795\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771084988120,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:08.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:03:08'),
(16629, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB0918EAB70BBD27F30\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084997401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:17.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:03:17'),
(16630, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554799410718@s.whatsapp.net\",\"id\":\"3EB0918EAB70BBD27F30\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771084997401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:17.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:03:17'),
(16631, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB0918EAB70BBD27F30\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085002310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:22.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:03:22'),
(16632, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"3EB0918EAB70BBD27F30\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085002310,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:03:22.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:03:22'),
(16633, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:18'),
(16634, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:18'),
(16635, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC6FA5597BF0EE98E2891AC9C2FC5064\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"extendedTextMessage\":{\"text\":\"Eu coloco como está aqui ne\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"3EB01E63C09BBE847C3795\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"store1.voidplay.com.br\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ok87cTRN4gFBSMqUh1MB\\/EH2cVXjZAPwzrsDYBvVI\\/U=\"}},\"contextInfo\":{\"stanzaId\":\"3EB01E63C09BBE847C3795\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"store1.voidplay.com.br\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085063,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:23.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:04:24'),
(16636, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:23.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:24'),
(16637, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:24.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:24'),
(16638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:24.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:24'),
(16639, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:23.867Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:24'),
(16640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:24.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:25'),
(16641, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:25'),
(16642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:25'),
(16643, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC0E56598E078C8106707B52A3677E1D\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AfnIvPIg99k03Z9WLD25f7Yk1tK\\/dYLChiQb2hI65rI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:04:25'),
(16644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:25'),
(16645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:24.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:26'),
(16646, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:26'),
(16647, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC0E56598E078C8106707B52A3677E1D\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AfnIvPIg99k03Z9WLD25f7Yk1tK\\/dYLChiQb2hI65rI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:04:26'),
(16648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:26.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:26'),
(16649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:26'),
(16650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:25.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:27'),
(16651, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:26.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:27'),
(16652, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC6FA5597BF0EE98E2891AC9C2FC5064\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"extendedTextMessage\":{\"text\":\"Eu coloco como está aqui ne\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"3EB01E63C09BBE847C3795\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"store1.voidplay.com.br\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ok87cTRN4gFBSMqUh1MB\\/EH2cVXjZAPwzrsDYBvVI\\/U=\"}},\"contextInfo\":{\"stanzaId\":\"3EB01E63C09BBE847C3795\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"store1.voidplay.com.br\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085063,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:23.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:04:28'),
(16653, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:33.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:33'),
(16654, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:33.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:34'),
(16655, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:34.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:04:34'),
(16656, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:04:34.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:04:34'),
(16657, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085133107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:05:33.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:05:33'),
(16658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5581EDEB0883C1DB66FC6651FF9A661\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085133107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:05:33.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:05:33'),
(16659, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:53.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:09:54'),
(16660, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5280420BA75A5D681A6AFD579A64F27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Medo de que\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:53.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:09:54'),
(16661, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:53.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:09:54'),
(16662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:54.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:09:54'),
(16663, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5280420BA75A5D681A6AFD579A64F27\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Medo de que\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085393,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:53.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:09:54'),
(16664, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:54.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:09:54'),
(16665, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5280420BA75A5D681A6AFD579A64F27\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085396514,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:56.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:09:56'),
(16666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5280420BA75A5D681A6AFD579A64F27\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085396514,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:56.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:09:56'),
(16667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:09:57'),
(16668, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A543E0FB93AD0EDA9103507836DD7E9D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra eu entender\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:09:57'),
(16669, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:09:57'),
(16670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A543E0FB93AD0EDA9103507836DD7E9D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085397699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:09:57'),
(16671, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A543E0FB93AD0EDA9103507836DD7E9D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra eu entender\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:09:57'),
(16672, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:09:58'),
(16673, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:09:58'),
(16674, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A543E0FB93AD0EDA9103507836DD7E9D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085397699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:09:57.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:09:58'),
(16675, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:10:04'),
(16676, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:10:04'),
(16677, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5C14D3E10493040EB06BDE32937D39B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085404,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:10:04'),
(16679, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:10:04'),
(16680, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:10:05'),
(16681, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C14D3E10493040EB06BDE32937D39B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085404726,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:10:05'),
(16682, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5C14D3E10493040EB06BDE32937D39B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085404,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:04.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:10:05'),
(16683, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A543E0FB93AD0EDA9103507836DD7E9D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085437848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:37.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:10:38'),
(16684, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5280420BA75A5D681A6AFD579A64F27\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085437854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:37.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:10:38'),
(16685, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A543E0FB93AD0EDA9103507836DD7E9D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085437848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:37.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:10:38'),
(16686, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5280420BA75A5D681A6AFD579A64F27\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085437854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:37.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:10:38'),
(16687, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:44.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:10:44'),
(16688, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:44.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:10:45'),
(16689, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:54.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:10:54'),
(16690, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:10:54.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:10:55'),
(16691, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:05.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:05'),
(16692, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:05.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:05'),
(16693, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:08.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:08'),
(16694, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:08.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:08'),
(16695, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:08.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:08'),
(16696, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:08.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:08'),
(16697, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACB2038EBEB016294B160802DC02C126\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Dizem que está dando pancriatite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3urZaadtCNzfN49bskYpR1wvicXkRa2nhrOv+tZHd4I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:11:11'),
(16698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:11'),
(16699, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:11'),
(16700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:11'),
(16701, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACB2038EBEB016294B160802DC02C126\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Dizem que está dando pancriatite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3urZaadtCNzfN49bskYpR1wvicXkRa2nhrOv+tZHd4I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085471,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:11:11'),
(16702, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:12'),
(16703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:11.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:12'),
(16705, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:13.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:13'),
(16706, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:13.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:13'),
(16707, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:16.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:17'),
(16708, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:16.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:17'),
(16709, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:16.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:17'),
(16710, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:16.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:17'),
(16711, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:21.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:21'),
(16712, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:21.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:21'),
(16713, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:22.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:22'),
(16714, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:22.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:22'),
(16715, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:32.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:32'),
(16716, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:32.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:32'),
(16717, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC8D5B78D6FB4BB4CEED0E8B76DD2791\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Eu estou com vontade mas fico insegura\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7T2souOKfsZpNZX87e5+lMe3O8FMHfNL1lzt+EPlgik=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085498,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:11:39'),
(16718, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:39'),
(16719, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:39'),
(16720, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:39'),
(16721, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:39'),
(16722, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:11:40'),
(16723, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC8D5B78D6FB4BB4CEED0E8B76DD2791\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Eu estou com vontade mas fico insegura\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7T2souOKfsZpNZX87e5+lMe3O8FMHfNL1lzt+EPlgik=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085498,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:11:40'),
(16724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:11:39.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:11:40'),
(16725, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:38.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:12:39'),
(16726, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5B65839996E637C7A15E05D610265C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Hmmm entendi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085558,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:38.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:12:39'),
(16727, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:38.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:12:39'),
(16728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:39.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:12:39'),
(16729, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5B65839996E637C7A15E05D610265C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Hmmm entendi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085558,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:38.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:12:39'),
(16730, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5B65839996E637C7A15E05D610265C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085559188,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:39.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:12:40'),
(16731, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5B65839996E637C7A15E05D610265C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085559188,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:39.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:12:40'),
(16732, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:12:39.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:12:40'),
(16733, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:34'),
(16734, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:34'),
(16735, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A58BECCBF309911CC6219B2AE9FC1B15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Entendi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085613,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:34'),
(16736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:34'),
(16737, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A58BECCBF309911CC6219B2AE9FC1B15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Entendi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085613,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:34'),
(16738, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:35'),
(16739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A58BECCBF309911CC6219B2AE9FC1B15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085614533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:35'),
(16740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A58BECCBF309911CC6219B2AE9FC1B15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085614533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:34.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:35'),
(16741, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5B65839996E637C7A15E05D610265C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085619668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:39.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:39'),
(16742, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A58BECCBF309911CC6219B2AE9FC1B15\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085619666,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:39.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:39'),
(16743, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5B65839996E637C7A15E05D610265C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085619668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:39.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:39'),
(16744, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A58BECCBF309911CC6219B2AE9FC1B15\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085619666,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:39.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:39'),
(16745, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:41.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:41'),
(16746, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:41.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:41'),
(16747, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:43.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:43'),
(16748, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:43.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:43'),
(16749, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:49.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:49'),
(16750, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:49.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:49'),
(16751, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:49.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:50'),
(16752, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:49.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:50'),
(16753, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:50'),
(16754, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":false,\"id\":\"AC936A98F5B8D3272D7066FB216602D0\"},\"pushName\":\"Richard\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635907294_893337690220515_8016503709200007740_n.enc?ccb=11-4&oh=01_Q5Aa3wFdMCv5FlBAO7BEg6pNvuxMTSsTac2lPTyBINUKoQQM7g&oe=69B81D6B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Id7iC2UUXA7ZSmfpSFf7H7kxIcrjLkaY\\/15MAjjTwOY=\",\"fileLength\":\"16154\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"ddk4vZ4MAY+YHuRtzTNeqaq\\/ASsMZixfFn6Chy9rnwo=\",\"fileEncSha256\":\"9RdCZTe+935n\\/RKNGLqFWoPDWHRFVe7N4\\/\\/T1nIFEu0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635907294_893337690220515_8016503709200007740_n.enc?ccb=11-4&oh=01_Q5Aa3wFdMCv5FlBAO7BEg6pNvuxMTSsTac2lPTyBINUKoQQM7g&oe=69B81D6B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085623\",\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\"},\"waveform\":\"AAcBBRBSVEFbXENOT1IkJ1BBSEIDAQEDAAQhVEE4TCNVVTtYTVNOPQMAAh40PlE1ShQBAAAAAAgFBgYFDw4VAw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pKCkLJtjRoqusLxF46pagn3OQsnV5ETR8euu7eIHAbA=\"}},\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:50'),
(16755, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:50'),
(16756, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:50'),
(16757, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:51'),
(16758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":false,\"id\":\"AC936A98F5B8D3272D7066FB216602D0\"},\"pushName\":\"Richard\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635907294_893337690220515_8016503709200007740_n.enc?ccb=11-4&oh=01_Q5Aa3wFdMCv5FlBAO7BEg6pNvuxMTSsTac2lPTyBINUKoQQM7g&oe=69B81D6B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Id7iC2UUXA7ZSmfpSFf7H7kxIcrjLkaY\\/15MAjjTwOY=\",\"fileLength\":\"16154\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"ddk4vZ4MAY+YHuRtzTNeqaq\\/ASsMZixfFn6Chy9rnwo=\",\"fileEncSha256\":\"9RdCZTe+935n\\/RKNGLqFWoPDWHRFVe7N4\\/\\/T1nIFEu0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635907294_893337690220515_8016503709200007740_n.enc?ccb=11-4&oh=01_Q5Aa3wFdMCv5FlBAO7BEg6pNvuxMTSsTac2lPTyBINUKoQQM7g&oe=69B81D6B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085623\",\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\"},\"waveform\":\"AAcBBRBSVEFbXENOT1IkJ1BBSEIDAQEDAAQhVEE4TCNVVTtYTVNOPQMAAh40PlE1ShQBAAAAAAgFBgYFDw4VAw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pKCkLJtjRoqusLxF46pagn3OQsnV5ETR8euu7eIHAbA=\"}},\"contextInfo\":{\"stanzaId\":\"A5E9FDF052634AF3108D58A88FD8B42C\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"74HvE+yDeC1ALTPplYgk4Ja8Q2MxosTGiRNXYK+YKIk=\",\"fileLength\":\"69918\",\"height\":1600,\"width\":738,\"mediaKey\":\"PsR4HHaxIeQR6RsB6acfAkd\\/oN79doxKboIclDaabVI=\",\"fileEncSha256\":\"neFEbrCnI3urSC4vYc+e0ytBLKRINAl250tqY9KJZdI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634967690_2659376027752975_8414042349604345940_n.enc?ccb=11-4&oh=01_Q5Aa3wF5bnKAghKKQLSB8DDO8QR1MHYbjIMMHAb1-1tf02lklg&oe=69B6C785&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771003513\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEAAAAAAAAAAAAAAAAABQIDBgEBAQEBAAAAAAAAAAAAAAAAAAACAf\\/aAAwDAQACEAMQAAAAzJaFRbwdlzCLTxZLM1i0Rt6meY0eVxoIZ2CnyimGzECoAD\\/\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgADEQQSEyAxUhRCUyEiQVGB\\/9oACAEBAAE\\/AOjgt8DOC3wM4bPEzhsHtMDnEzHbI\\/stOFMqrqADOCcjMs09JqDgYldFN30KkTUjazoJoNlgIbukOMgQgAHAxLWzYxP7mgDrbv8AbGsRSSTLHDUswP4jn7jK69oxDYC3YYmp1Z2mtRGB3T1N\\/wAhnLYe7mFz8hm9\\/I9P\\/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQASEBH\\/2gAIAQIBAT8A5lk8hmzZe\\/\\/EABgRAAMBAQAAAAAAAAAAAAAAAAABEhAR\\/9oACAEDAQE\\/AMoT6cYiylv\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"7JrdDB9guazRbCO\\/pP7zSwiwA+H4TYUq4ZqQnjlZ2vKS7bfEZBg+ug==\",\"scanLengths\":[10289,27347,11937,20345],\"midQualityFileSha256\":\"0cZgPKQJbBGhlPWg1DXeSh7slWzqSWazkE0baTUUiJo=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:51'),
(16759, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC242713EFDAB825EAA35487A0EEDDDE\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Mas vontade tenho\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f3OzBjq2HLx4bn7IyXTpeWnstzffPcPuoyp+\\/6WFCC8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085631,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:51.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:13:51'),
(16760, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:51.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:51'),
(16761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:51'),
(16762, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:51.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:52'),
(16763, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC242713EFDAB825EAA35487A0EEDDDE\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Mas vontade tenho\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f3OzBjq2HLx4bn7IyXTpeWnstzffPcPuoyp+\\/6WFCC8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085631,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:51.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:13:52'),
(16764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:52.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:52'),
(16765, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:52.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:52'),
(16766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:51.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:13:52'),
(16767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:50.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:52'),
(16768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:13:51.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:13:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16769, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635009701_1989415321980104_6084582985366879042_n.enc?ccb=11-4&oh=01_Q5Aa3wETVFjnGq-WYnoZz4KyUYc6qYglRCCOwjgXH0hmIY8XXw&oe=69B8056A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YygD8RwUOwDTf082nG6ELVp4vT\\/jhE7i1dNXU2KI3oc=\",\"fileLength\":\"32193\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"okORAdooIdLLTkUULZcbK\\/TS5ZbCHndg8xNXrd4uD1k=\",\"fileEncSha256\":\"t\\/WYbILJ0JhVgaEJRp6hTib5tJHeFlIpU\\/kUaKEMntc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635009701_1989415321980104_6084582985366879042_n.enc?ccb=11-4&oh=01_Q5Aa3wETVFjnGq-WYnoZz4KyUYc6qYglRCCOwjgXH0hmIY8XXw&oe=69B8056A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085664\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085666,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:14:26'),
(16770, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:14:26'),
(16771, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:14:26'),
(16772, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635009701_1989415321980104_6084582985366879042_n.enc?ccb=11-4&oh=01_Q5Aa3wETVFjnGq-WYnoZz4KyUYc6qYglRCCOwjgXH0hmIY8XXw&oe=69B8056A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YygD8RwUOwDTf082nG6ELVp4vT\\/jhE7i1dNXU2KI3oc=\",\"fileLength\":\"32193\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"okORAdooIdLLTkUULZcbK\\/TS5ZbCHndg8xNXrd4uD1k=\",\"fileEncSha256\":\"t\\/WYbILJ0JhVgaEJRp6hTib5tJHeFlIpU\\/kUaKEMntc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635009701_1989415321980104_6084582985366879042_n.enc?ccb=11-4&oh=01_Q5Aa3wETVFjnGq-WYnoZz4KyUYc6qYglRCCOwjgXH0hmIY8XXw&oe=69B8056A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085664\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085666,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:14:26'),
(16773, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:14:26'),
(16774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:14:27'),
(16775, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085666684,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:14:27'),
(16776, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085666684,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:26.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:14:27'),
(16777, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085691704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:14:51'),
(16778, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636973162_1415152476767398_8119633951386895952_n.enc?ccb=11-4&oh=01_Q5Aa3wFkKuGSd5aQo_AzjImugrkr1nAPzC9_wagDQ5swxW6YUA&oe=69B811FC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"e8bzWpYj6u\\/wFdn1bWQYMF\\/kzvF0oPtXxz11fGG5BaU=\",\"fileLength\":\"56405\",\"seconds\":24,\"ptt\":true,\"mediaKey\":\"uPaTdfdGCCohORux\\/+F1cmlddkSRW4Ng64KdfzV5azU=\",\"fileEncSha256\":\"6EwPHWm8QY6YUwo72Sfn1iUylt\\/HKuullXbck2mijx4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636973162_1415152476767398_8119633951386895952_n.enc?ccb=11-4&oh=01_Q5Aa3wFkKuGSd5aQo_AzjImugrkr1nAPzC9_wagDQ5swxW6YUA&oe=69B811FC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085667\",\"waveform\":\"AEVLSDkuPDw7OjoxNUBAIipANQ8pIyMgMDYVHDYVKB8rMidBNCcfLUo1SSMuOUA7PjxDOUA8Bj1WODxHMS1MMQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085691,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:14:51'),
(16779, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:14:51'),
(16780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085691704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:14:51'),
(16781, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:14:51'),
(16782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:14:52'),
(16783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:14:52'),
(16784, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636973162_1415152476767398_8119633951386895952_n.enc?ccb=11-4&oh=01_Q5Aa3wFkKuGSd5aQo_AzjImugrkr1nAPzC9_wagDQ5swxW6YUA&oe=69B811FC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"e8bzWpYj6u\\/wFdn1bWQYMF\\/kzvF0oPtXxz11fGG5BaU=\",\"fileLength\":\"56405\",\"seconds\":24,\"ptt\":true,\"mediaKey\":\"uPaTdfdGCCohORux\\/+F1cmlddkSRW4Ng64KdfzV5azU=\",\"fileEncSha256\":\"6EwPHWm8QY6YUwo72Sfn1iUylt\\/HKuullXbck2mijx4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636973162_1415152476767398_8119633951386895952_n.enc?ccb=11-4&oh=01_Q5Aa3wFkKuGSd5aQo_AzjImugrkr1nAPzC9_wagDQ5swxW6YUA&oe=69B811FC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085667\",\"waveform\":\"AEVLSDkuPDw7OjoxNUBAIipANQ8pIyMgMDYVHDYVKB8rMidBNCcfLUo1SSMuOUA7PjxDOUA8Bj1WODxHMS1MMQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085691,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:14:51.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:14:52'),
(16785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085744305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:44.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:15:44'),
(16786, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085744305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:44.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:15:44'),
(16787, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:45.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:15:45'),
(16788, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:45.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:15:45'),
(16789, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":true,\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35591356_2123804708388291_175834432209242322_n.enc?ccb=11-4&oh=01_Q5Aa3wHmrOEOwBKpq9wQOFlXlXuEWXtMNX32yArc4o42o_-VsA&oe=69B7F78A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GkwayUKUKaUwvzVRoSRbZMnB\\/hpnaL423rCnXgCGvsg=\",\"fileLength\":\"31867\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"Iq563jASYKZ\\/Q3QlYwUGEEHmBQ3g8VwILC6hKvJ6Vvg=\",\"fileEncSha256\":\"GGBcSvABGdwbSQ7IhP\\/Ns5GuepXmuuq1\\/KwLLWhFaWs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35591356_2123804708388291_175834432209242322_n.enc?ccb=11-4&oh=01_Q5Aa3wHmrOEOwBKpq9wQOFlXlXuEWXtMNX32yArc4o42o_-VsA&oe=69B7F78A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085730\",\"waveform\":\"AAA+W0ZJUgQyWFFOVgAEAC1RWlxAQSRKSlVFMVFRJjZGTAEAAEwyW1pIQSw9SlJRVE87QyE4TFFOWlAdACVYTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085745,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:45.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:15:45'),
(16790, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:45.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:15:45'),
(16791, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:45.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:15:45'),
(16792, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":true,\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35591356_2123804708388291_175834432209242322_n.enc?ccb=11-4&oh=01_Q5Aa3wHmrOEOwBKpq9wQOFlXlXuEWXtMNX32yArc4o42o_-VsA&oe=69B7F78A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GkwayUKUKaUwvzVRoSRbZMnB\\/hpnaL423rCnXgCGvsg=\",\"fileLength\":\"31867\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"Iq563jASYKZ\\/Q3QlYwUGEEHmBQ3g8VwILC6hKvJ6Vvg=\",\"fileEncSha256\":\"GGBcSvABGdwbSQ7IhP\\/Ns5GuepXmuuq1\\/KwLLWhFaWs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35591356_2123804708388291_175834432209242322_n.enc?ccb=11-4&oh=01_Q5Aa3wHmrOEOwBKpq9wQOFlXlXuEWXtMNX32yArc4o42o_-VsA&oe=69B7F78A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085730\",\"waveform\":\"AAA+W0ZJUgQyWFFOVgAEAC1RWlxAQSRKSlVFMVFRJjZGTAEAAEwyW1pIQSw9SlJRVE87QyE4TFFOWlAdACVYTQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085745,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:45.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:15:46'),
(16793, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085756492,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:56.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:15:56'),
(16794, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085756492,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:56.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:15:56'),
(16795, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085756483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:56.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:15:56'),
(16796, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085756483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:56.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:15:56'),
(16797, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085757939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:57.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:15:58'),
(16798, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5C886231FE9154ADBF1347EBB2A1688\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085757939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:15:57.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:15:58'),
(16799, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085765333,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:05.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:05'),
(16800, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085765333,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:05.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:06'),
(16801, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085765979,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:05.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:06'),
(16802, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A5E181623337DD1416BB3500AF8B8E2A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085765979,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:05.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:06'),
(16803, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C14D3E10493040EB06BDE32937D39B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085769532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:09.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:09'),
(16804, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C14D3E10493040EB06BDE32937D39B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085769532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:09.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:09'),
(16805, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085772355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:12.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:12'),
(16806, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A538F67FCE2735271B9F28D9E291E2F6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771085772355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:12.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:12'),
(16807, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:23.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:23'),
(16808, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:23.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:23'),
(16809, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:24.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:24'),
(16810, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:24.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:25'),
(16811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:29.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:29'),
(16812, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:29.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:29'),
(16813, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:29.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:30'),
(16814, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:29.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:30'),
(16815, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":false,\"id\":\"ACC7FB90FB1034F1647F929A17381D12\"},\"pushName\":\"Richard\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635680308_3386450728196274_5820327851898729129_n.enc?ccb=11-4&oh=01_Q5Aa3wE4rBwEgvvMN001pNcubmLGXsRy7d3FcutGuL1Lu2Kv5A&oe=69B7FF09&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ioG25AjESOUYlT9xDljW3BJ4LJ+BGsgmmxMzxaVfJjE=\",\"fileLength\":\"8667\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"Ml8ZktRoeODHiQ\\/T5Nl7dT5+plZxyAgPs3JdY+yp0gM=\",\"fileEncSha256\":\"BVb8tTbX3blIN3zc1nO9\\/ShVQSUsUmGItJuTFmybm4k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635680308_3386450728196274_5820327851898729129_n.enc?ccb=11-4&oh=01_Q5Aa3wE4rBwEgvvMN001pNcubmLGXsRy7d3FcutGuL1Lu2Kv5A&oe=69B7FF09&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085786\",\"waveform\":\"AAMDAQAFDw8HCBg\\/VVM\\/HFdbQhgtT0UuLRsfRFtQVGBERlBPUCNYVVlUVlo5PEA8MxUHBwMBAQAABAMCAQIAAQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nPMwoJo0rAozC5V9j+XfHo6zN0QowjbwPpDh1kjGYic=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085789,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:29.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:30'),
(16816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:30.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:30'),
(16817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:30.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:30'),
(16818, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":false,\"id\":\"ACC7FB90FB1034F1647F929A17381D12\"},\"pushName\":\"Richard\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635680308_3386450728196274_5820327851898729129_n.enc?ccb=11-4&oh=01_Q5Aa3wE4rBwEgvvMN001pNcubmLGXsRy7d3FcutGuL1Lu2Kv5A&oe=69B7FF09&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ioG25AjESOUYlT9xDljW3BJ4LJ+BGsgmmxMzxaVfJjE=\",\"fileLength\":\"8667\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"Ml8ZktRoeODHiQ\\/T5Nl7dT5+plZxyAgPs3JdY+yp0gM=\",\"fileEncSha256\":\"BVb8tTbX3blIN3zc1nO9\\/ShVQSUsUmGItJuTFmybm4k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635680308_3386450728196274_5820327851898729129_n.enc?ccb=11-4&oh=01_Q5Aa3wE4rBwEgvvMN001pNcubmLGXsRy7d3FcutGuL1Lu2Kv5A&oe=69B7FF09&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771085786\",\"waveform\":\"AAMDAQAFDw8HCBg\\/VVM\\/HFdbQhgtT0UuLRsfRFtQVGBERlBPUCNYVVlUVlo5PEA8MxUHBwMBAQAABAMCAQIAAQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nPMwoJo0rAozC5V9j+XfHo6zN0QowjbwPpDh1kjGYic=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771085789,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:29.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:31'),
(16819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:30.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:31'),
(16820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:30.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:31'),
(16821, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:33.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:33'),
(16822, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:33.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:33'),
(16823, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:36.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:37'),
(16824, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC8937A3DD0D186FC467AAB8AEB1C6C7\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"E tantos comentários\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PU3rlv9zjLON2+ellHR+vh72ovXy34iXjTF57Sa1KJ8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085796,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:37.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:37'),
(16825, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:36.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:37'),
(16826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:37.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:37'),
(16827, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC8937A3DD0D186FC467AAB8AEB1C6C7\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"E tantos comentários\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PU3rlv9zjLON2+ellHR+vh72ovXy34iXjTF57Sa1KJ8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085796,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:37.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:37'),
(16828, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:37.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:38'),
(16829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:37.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:38'),
(16830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:37.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:38'),
(16831, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:40.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:40'),
(16832, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:40.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:40'),
(16833, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACCFBD9197A72A4A8AC7FF61BF0741B3\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Que não ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zgPIzzj\\/dsFNBWMtWNmfWmjCjHJ4qmZ6jBRvXzujgr8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085807,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:48'),
(16834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:48'),
(16835, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:48'),
(16836, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACCFBD9197A72A4A8AC7FF61BF0741B3\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Que não ajuda\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zgPIzzj\\/dsFNBWMtWNmfWmjCjHJ4qmZ6jBRvXzujgr8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085807,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:48'),
(16837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16838, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:49'),
(16839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:49'),
(16840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:48.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:49'),
(16841, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:50.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:50'),
(16842, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:50.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:50'),
(16843, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:57'),
(16844, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACE235C877BBAB3D100B285D6CAD4DC4\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Nas redes  sociais\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t0I1H4lRNpHPraJJxjRpxZYoe70FsnLB0oPuAyToq60=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085817,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:16:57'),
(16845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:57'),
(16846, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"ACE235C877BBAB3D100B285D6CAD4DC4\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Nas redes  sociais\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"t0I1H4lRNpHPraJJxjRpxZYoe70FsnLB0oPuAyToq60=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085817,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:16:57'),
(16847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:58'),
(16848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:16:58'),
(16849, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:58'),
(16850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:16:57.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:16:58'),
(16851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:19'),
(16852, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A534470D5F07C0E283450C28EBBCB542\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"tirzepatida é um medicamento injetável usado para diabetes tipo 2 e emagrecimento. Ela é vendida como:\\nMounjaro\\nZepbound\\nEla age imitando dois hormônios intestinais (GLP-1 e GIP), que regulam açúcar no sangue e apetite.\\n✅ O que a tirzepatida pode fazer (efeitos esperados)\\n🩸 1. Diminuir a glicose\\nReduz o açúcar no sangue\\nMelhora a hemoglobina glicada (HbA1c)\\nAjuda no controle do diabetes tipo 2\\n⚖️ 2. Promover emagrecimento\\nReduz o apetite\\nAumenta a saciedade\\nPode levar a perda de 10% a 20% do peso corporal, dependendo da dose\\n❤️ 3. Melhorar fatores metabólicos\\nPode reduzir triglicerídeos\\nPode melhorar pressão arterial\\nPode reduzir gordura no fígado\\n⚠️ Efeitos colaterais mais comuns\\nNáuseas\\nVômitos\\nDiarreia ou prisão de ventre\\nAzia\\nSensação de estômago cheio\\nPerda de apetite\\nEsses sintomas costumam ser mais fortes no início e melhoram com o tempo.\\n⚠️ Riscos menos comuns, mas importantes\\nPancreatite (raro)\\nProblemas na vesícula (principalmente com perda rápida de peso)\\nDesidratação se houver muito vômito\\nHipoglicemia (principalmente se usar junto com insulina ou sulfonilureias)\\n🚫 Quem precisa ter cuidado\\nQuem já teve pancreatite\\nQuem tem histórico de câncer medular de tireoide\\nGestantes ou tentando engravidar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085839,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:17:19'),
(16853, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:19'),
(16854, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A534470D5F07C0E283450C28EBBCB542\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"tirzepatida é um medicamento injetável usado para diabetes tipo 2 e emagrecimento. Ela é vendida como:\\nMounjaro\\nZepbound\\nEla age imitando dois hormônios intestinais (GLP-1 e GIP), que regulam açúcar no sangue e apetite.\\n✅ O que a tirzepatida pode fazer (efeitos esperados)\\n🩸 1. Diminuir a glicose\\nReduz o açúcar no sangue\\nMelhora a hemoglobina glicada (HbA1c)\\nAjuda no controle do diabetes tipo 2\\n⚖️ 2. Promover emagrecimento\\nReduz o apetite\\nAumenta a saciedade\\nPode levar a perda de 10% a 20% do peso corporal, dependendo da dose\\n❤️ 3. Melhorar fatores metabólicos\\nPode reduzir triglicerídeos\\nPode melhorar pressão arterial\\nPode reduzir gordura no fígado\\n⚠️ Efeitos colaterais mais comuns\\nNáuseas\\nVômitos\\nDiarreia ou prisão de ventre\\nAzia\\nSensação de estômago cheio\\nPerda de apetite\\nEsses sintomas costumam ser mais fortes no início e melhoram com o tempo.\\n⚠️ Riscos menos comuns, mas importantes\\nPancreatite (raro)\\nProblemas na vesícula (principalmente com perda rápida de peso)\\nDesidratação se houver muito vômito\\nHipoglicemia (principalmente se usar junto com insulina ou sulfonilureias)\\n🚫 Quem precisa ter cuidado\\nQuem já teve pancreatite\\nQuem tem histórico de câncer medular de tireoide\\nGestantes ou tentando engravidar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085839,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:17:19'),
(16855, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A534470D5F07C0E283450C28EBBCB542\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085839409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:17:19'),
(16856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:19'),
(16857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A534470D5F07C0E283450C28EBBCB542\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771085839409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:17:19'),
(16858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:19.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:20'),
(16859, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":true,\"id\":\"A567F30623F7EBC68D00D3BFE6F8F09E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pix ou cartao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085845,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:25.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:17:26'),
(16860, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:25.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:26'),
(16861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:25.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:26'),
(16862, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A567F30623F7EBC68D00D3BFE6F8F09E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085846186,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:26.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:17:26'),
(16863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:26.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:26'),
(16864, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"160468618498205@lid\",\"id\":\"A567F30623F7EBC68D00D3BFE6F8F09E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085846186,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:26.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:17:26'),
(16865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:26.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:26'),
(16866, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB054DE73C710EA363908\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 160468618498205\\nMensagem: \\\"Pix ou cartao\\\"\\n\\nUse: \\/aprovar 160468618498205  (para automático)\\nUse: \\/pago 160468618498205  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771085847,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:27.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:27'),
(16867, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":true,\"id\":\"A567F30623F7EBC68D00D3BFE6F8F09E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pix ou cartao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771085845,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:25.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:17:28'),
(16868, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB054DE73C710EA363908\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 160468618498205\\nMensagem: \\\"Pix ou cartao\\\"\\n\\nUse: \\/aprovar 160468618498205  (para automático)\\nUse: \\/pago 160468618498205  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771085847,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:27.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:28'),
(16869, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:35.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:35'),
(16870, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"presences\":{\"160468618498205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:35.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:35'),
(16871, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:37'),
(16872, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":false,\"id\":\"AC7BEAD68189C5F7EF07871783442F36\"},\"pushName\":\"Richard\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"axLDJa3piptt\\/YUIFJ3s9cvzZMqp+5X7gE4T9ha6V3I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085857,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:17:37'),
(16873, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:37'),
(16874, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"160468618498205@lid\",\"fromMe\":false,\"id\":\"AC7BEAD68189C5F7EF07871783442F36\"},\"pushName\":\"Richard\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"axLDJa3piptt\\/YUIFJ3s9cvzZMqp+5X7gE4T9ha6V3I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085857,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:17:37'),
(16875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:37'),
(16876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"160468618498205@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:38'),
(16877, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:17:38'),
(16878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"160468618498205@lid\",\"pushName\":\"Richard\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538487722_1312983450618422_9210766981001686517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFsffTBHd3IPVZIdgY35oX_FWt_UiskQYazrSUPyWc-A&oe=699DCDE9&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:17:37.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:17:38'),
(16879, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:04.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:04'),
(16880, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:04.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:04'),
(16881, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:07.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:07'),
(16882, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC974ABF9B8A85BBDF208E9D2CC64E23\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Tira uma foto\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4aq9+LI\\/pvblr357KUBO+kb0pHZGWrK9VlYZUB5DB\\/Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:07.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:18:07'),
(16883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:07.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:08'),
(16884, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC974ABF9B8A85BBDF208E9D2CC64E23\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Tira uma foto\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4aq9+LI\\/pvblr357KUBO+kb0pHZGWrK9VlYZUB5DB\\/Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:07.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:18:08'),
(16885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:07.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:08'),
(16886, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:08.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:08'),
(16887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:07.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:08'),
(16888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:08.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:09'),
(16889, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:08.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:09'),
(16890, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:08.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:09'),
(16891, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACBD1F0C88895EE02932489EF125D4CC\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Aq e manda pra tua mae\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3GyrseNs24avobCK3V7\\/MTp7wASeI50YNXdxvE\\/zpCY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:18:12'),
(16892, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:12'),
(16893, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:12'),
(16894, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACBD1F0C88895EE02932489EF125D4CC\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Aq e manda pra tua mae\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3GyrseNs24avobCK3V7\\/MTp7wASeI50YNXdxvE\\/zpCY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:18:12'),
(16895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:12'),
(16896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:13'),
(16897, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:13'),
(16898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:12.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:13'),
(16899, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:15.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:15'),
(16900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:15.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:15'),
(16901, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:20'),
(16902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:20'),
(16903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:20'),
(16904, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACF837373FFB089129E9A97942072394\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Print da camera\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W8iXVfYmm9duf2RMgsE+HetYYEf2qr7TjRFdKOeyZxw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085900,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:18:20'),
(16905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:20'),
(16906, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACF837373FFB089129E9A97942072394\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Print da camera\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W8iXVfYmm9duf2RMgsE+HetYYEf2qr7TjRFdKOeyZxw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085900,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:18:21'),
(16907, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:21'),
(16908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16909, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:21'),
(16910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:20.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:21'),
(16911, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC908CDE8209E567FBF3D72307890A27\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Pra ela vê a folgada da dindinha\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BS\\/5wTQWodKtAt3xbk7cLSJzmhqY0cyMuHWj9Bk3c3A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085908,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:18:28'),
(16912, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC908CDE8209E567FBF3D72307890A27\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Pra ela vê a folgada da dindinha\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BS\\/5wTQWodKtAt3xbk7cLSJzmhqY0cyMuHWj9Bk3c3A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771085908,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:18:28'),
(16913, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:28'),
(16914, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:29'),
(16915, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:29'),
(16916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:18:29'),
(16917, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:29'),
(16918, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:28.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:18:29'),
(16919, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A534470D5F07C0E283450C28EBBCB542\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085932521,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:52.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:18:52'),
(16920, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A534470D5F07C0E283450C28EBBCB542\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771085932521,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:18:52.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:18:53'),
(16921, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:52'),
(16922, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACBECC765C4821C961F2BB9B85F3CBC7\"},\"pushName\":\"Carol Schultz\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"title\":\"Dr. Elifas Rodrigues no Instagram: \\\"A Tizerpatida não é só sobre emagrecer. É sobre como seu corpo passa a responder melhor à fome, à saciedade e à energia. Seu corpo muda por dentro antes de mudar por fora. ✅ Este conteúdo tem caráter exclusivamente informativo e educativo. Ele não substitui uma consulta médica nem serve como indicação de diagnóstico ou tratamento. Para avaliação individual, procure um médico de sua confiança.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAABAAIDAQEBAAAAAAAAAAAAAAYHBAUIAwEC\\/8QAPBAAAQMEAQMDAgQEBAMJAAAAAQIDBAAFBhEhBxIxE0FRImEUcYGRCDJSoRUjQtEWM3I3Q3WSsbPB4fD\\/xAAaAQEAAwEBAQAAAAAAAAAAAAAAAQIDBQQG\\/8QAIxEAAwABBAICAwEAAAAAAAAAAAECEQMEITESQVGhExQiYf\\/aAAwDAQACEQMRAD8A6dpSlUApSlAKUpQClKUApSlAKUpQClKUApSlAKUpQClQSPJcjxbvHfv8RTa2nUtpU4QYqiFLA3rZASock+E+PasJVjvDDzfffYyGx6RUhTpPcdhI\\/wBI8qHj9KYBZFKr+bFvMyxpjyshhJlLeadbeb2kBBChrgc7IOvHg815T2r76sVb2TQUISS8gAFJAUn00nej3DuJ8++vPswCxaVBW7fmX495pq4MtxU6U28spUF7UCR29u\\/BI3xz+hrfY9DvcZwm8z2ZSS0BpCdfX3EkjgcaI4+3n3IG8pSlAKUpQClKUApSlAKUpQClKUBBHbeh8SlO406tx5HcrucKu5fYRyd8+AN+ea20Jr\\/EZCG7jZ3mdaWl1SjpJSruTzve9kmpLSgNeqzwlAbaVwEj+c\\/6SSPf2KiaGywCppRYCi0AEkknwQR+fIFbClAKUpQClKUApSlAKUpQClKUApSlAKUpQClVdbiYmK5PMgZfJvS24DhSS7v0FBCiFA74P+1YmHwbzleCQpZyO4xH2nHu9aHCS4N8bO\\/avP8Any0kuezzrXy0kucZ9FuUqkelkS+5Oy\\/Ok5Pc0JiSg2WvUKg4AAeeayGZuQ9QssukW23Z+1Wi3K7CWFFKlHZA2RySe0\\/biqrc5lNT30VW5zKfj30XNSqjxi733GOoLeL32eu5RZSAth507WN70dnnyCNH4qf5bZZl7iMtQbvKta219ynI50VDWtGtI1fOW0uV6NI1fOW0uV6N7SqJwCHf8nuF2Ydyq6siA72Ah0nv5I55+1SO03K5TOsORWpVwkphpjKDTfee1tRQ39QHsdkmqTuPJJ47eCk7nySeO3gtOlUJnTF8x2dAttvyy7T7rLWAlgOEaB4G+fc1ndR5t5sjuK292+yoqlshMuQh0jZ7htR+dVV7rGcz0Ve68c5nou2lVji6EIVcpEPNpF6WzDcV6Bd7gjjhfn2NV\\/ZrleZWGzr47mUqPLivFDcVx\\/Zd0EkaBOzvuI8e1TW58ccfa9E1uvHHHz7Xo6OpVF5Zll7k9OcYuSZj8OZJfW264yoo7wkqSCdfOt16\\/wCLXXGc1scOLkzl9jzlpQ80tYcKAVAexOvO\\/wBKj9uc9ccfZD3c5644+y76VRPVfKb0rKpcbH5kpmNa2UqkegspGyRsnXn+YD96nr7MvNcYtNztt6l2slorcEY671a0QfyINXncKqqZXKLzuFVVMrlE5pVIdMYd+ycSpUjKLo2mHJDfp+oVBwDR55qIZtlmQRcuu7Ea8z2mW5K0oQh5QCRvwBWVbxTCtzwzOt4phW54ZZsF83DFMoiQcPmWRa4DoSFMkF9RQoBKR2jZ\\/wB62vSKBLgdP0Rp0V+NI73T6TqChXPjg81N5UhmJGdkSnUMsNJK1uLOkpSPJJ9hXlbbhDucVMm3SWZUdRIDjKwtJP5it50cUqb6WDWdHxpU30sFfdC7ZOttlurdxhyIi1yypKX2ygqHaORv2rRNxb\\/05yy6SoFofutnuKu\\/\\/IBJSdkjegdEdx8jR3Vtxbtb5U+RBjTY7syP\\/wA5lDgK2\\/8AqHkVj3vIrLYgk3m6wYHd\\/L+IeSjf7mq\\/rpTMp8rpkfrpTMp8rplb4var5lfUFvKb3b3LbDioCI7ToIUdb0ADz5UTvXvVu1hWq62+7xhItU2PMYP\\/AHjDgWP3FZtX09P8a+cmmlprTT5zkq7o5a59vu+TLnwpMZD0jubU80pAWO5XI2Oa8rTAuMPrFkd0NulKimKotOekoIcUEN6SlWtEkgirAveS2SxFIvN2gwCrwJD6Ub\\/c1lWu6QLtGEi1zI8xg+HGHAtP7iqLbpTM56eTNbdKZnPTyUVjM6+wMpmZBecRvFwuL2\\/SIZWlLIPHAKT7cVtuqDNzvc7GLojHrg8hLfqPxEsqWUfVvsVocHXyKt273e22aN692nRoTH9b7gQP3NeNkyCz3xClWa6QpyU+THeSvX7GqLa\\/w4dcMotr\\/Dh1wQXGZqJJuUaJhEyyKdhuj11slIXxwj+Uck1XcPAJz\\/TyRO\\/wqW3e484kNLZUFus9iOAk+Rsk+Pmr+u2QWezvIautzhw3Vp7kofeSgkeNgE1+7VfLVdu4Wu4xJZT5DDqV6\\/Y1NbVWv6ZNbVWkqfyVP1Eh3G\\/4NjH4ayzUPIc7XoqIygWtJKT9OuBxx9jU7gYfYMZZdudttHdMZaUtASFOLJA8JHPJ8VtbhlNhtsxyLcLzb40lvXe06+lKk7GxsE\\/BBrOttzg3Rn1bbMjymv6mXAsf2q86CVOnyy86EqnT5fBSmIYDfr3DutwuM6TaX7g4tD7LkfSnUnk7CuQNmpT0cYutstd1st1hSmRGdUWHHGlJQ4DsHtJGjyN\\/rU8vN8tVkZDt4uMSC0fCpDqUA\\/uaWa+Wq9sl2z3GJObHlUd1KwP2NVjbTptUn19ldPbTptUnyvsgnQ+2zrbb7ym4w5EVTkvuQHmygqGhyN+RVU5xjF+k5fd3o9luTrLklakLRGWpKhvyCBXUVKre0m4UZ6K3tFemtPPRD+sX\\/ZTl3\\/hcj\\/21Vzn\\/AA65TOwKVaYt\\/VrGMkBMWQT9LD4V26PxvWj+YPzXR\\/Vtpx\\/pflbTDa3HV2yQlKEJJUols6AA8mqywXAG8x\\/hyt9iujDkWckOORnHEFK2HgslKtHnXsfkE17Ees1WBXBNr679WbgR3JjRVva+e0pNePRDALd1Its3Ns7C7rMnyXEstOLPptISdeB99\\/kAK1v8OOP3pWd5pEyyLKQ8\\/AMV551sgOHuCeFa0eBWdguSXvoh+OxjJ8fuVwswfU9BnQW\\/U+knkH20fPyDv9APuTWNno11dxWbirjrFkvrpjSYJWVICgUgkb9vrBHwQfmuh8juQs+PXO5FPf8Ag4zj\\/b89qSdf2qgYyL71n6nWK8P2aXaMSsSi60Zae1x5ewSdfJKU+NgAeea6Eu8Bq6WqZb5G\\/RlMrYXrzpSSD\\/61DBzn0L6fW3qLap+aZ2ld2nTpTiW0OrPY2lJ54H3JAHsBU8w7pK9hHUV274xc0x8bkNlMi1udyj3aPKT44Ojz9xVfYBlF46INz8Xy2w3CXakyFPQ58JvvSQr52QNHQPnYO6yZnWu\\/zMiVJtfox7SEgNwn2krKuOStQ5B+wPt71W9RR2aaelWo8SeWE2CP1l6l5TectU7JtNqkmJDg95CBokbOvsN\\/cn7V862YRB6WItOb4J32x+PMQxJjoWS24hQJ3o\\/9OiPB39qi\\/TnP3On+XXuYqA5NtV3eL70aKP8AMZcKiQUAn6hzrX5fHMnzW9XvrpMtePY\\/YbhbcfZkpkzZs5vs3oEAAfABPGySdeNVM0qWURcVDxRjdcXbRd+sPTx\\/IfRRZ5UBtyQHldqAhS1E7PxzWFeomLW7rFhY6RPIXKcdP49EJwraDe0637eO\\/f5CpR1YxtMzrp08iLtrky0MxUMO9zJW2EhahpR1rxrzXnaLK70u\\/iFUmBbXFY1kDX0LZYKkxlE+NgfTpQ\\/8qhVihob9FxWX\\/FFlLecKhi2CMyU\\/i19qO\\/0Gtc\\/Pmsvp6LPB\\/iKVH6bPFzGlQSqcGVlbCV6Pg+P6f1JraN4lFv8A\\/FJlH+P2UTbUqI0pCpLBU0VBhocEjW\\/NXrYMcsuPMLZsdrhwGl\\/zJjtBHd+eqA546TY5D6zZDf8AMMz9SZFbkliFBUshttHkcD4Gh+ezTq5i8bo9f8ey\\/CO+Cy5KEeXCCyW3ARvWj7EBQ+3BFe2Pybx0Hye9QJdjn3TEbg+ZEWRCR3qa+AR+XB8eN1+cklXrrxktkt9vsk+1YpAfEiTKmo7FOH30PnWwAN+dmgLbGXZE51OiWNnG3F42\\/G9Y3XZ0klBUPt50nXnnf2qfVBl5u\\/H6nRsORj04xFR\\/UFzH\\/JTpJOvHjjW9+T4qc1AHmgAHjilKAaG96G6+KSlY0tIUPgjdfaUAAAGgAB8ClKjfUTIBjOIT7kkj1kI7Gd\\/1q4H+\\/wClQ3hZJSbeEQbrRnFtRa7hjbCPxMp5BbeWlWksfr7n7VzS+ERUj0HnSpPuE7FZb0p6Y4S8sqKiVrUTsqJ5JNTO3dOpN0isvOTlRWlAH00o8fnzzXO1dZZzR2dHb+M4gryyXt213uFcS0h8xn0PdiuAvtUDon9K7N6d5lb8ytH4mCj0H29etHVrbZPj8wfmuS82xMY1cmmO9Tsd5G23lDW1e4NSnodkarLnFsjOKKW5avwax7KCv5f2UE\\/3rXR1VxjpmG40W0\\/LtHW2hvehuhAPkA0pXtOYNDe9DdKUoD4pIUNKAI+DRKQkaSAB8AV9pQDQ3vXNKUoBSq2Xe81ivyUJtIdHa+6juQtWyEKKUJIGtdwSBsgndbq33bIjkMiFKt6VxG4qnEvpaUhKnR26SCeCD3K99\\/TQEvpWhw6fdLjbVu3mIYzwXpILZbJGhv6Tzwdjfvrdb6gFc8\\/xFZWia\\/GsMQgtsq9Z1QPk+APy8\\/2PgiugJylJhSFNntWG1FJ+DquH8juhkXeXMfBU466T58DwAPyA1WGvTSwvZ6trCdeT9GTYYLkiWjtMdISoKUZDnpo+dE1e1hfkPQE\\/i4rcZSfpSG3Q4lY\\/qBqOYzYbFdMYKER2X23m1I9XQK09wGyD7GpNa7dFtNvjQoafTZZSAAT548\\/nXG1rm1\\/p24ipePRE87bfuyXLdMi25iJ3D0n5MsIWo\\/KRrj45qr5EWXi9\\/YMlO1xXG3UugbSDvY2fnirzm45a515j3OVFQ8+02tvtWO5CwoaPcD54PFQHq7MjRYSbfHLYcdW2kNI19CE++vbwBWmlqJNTJS4bVOjpyxXFF1tMaagAB1AUR8H3FZ9QvpIy7Gw+My8sqKEoI37AtpVr+9TSu1Lysnz9LDaQpSlWKio01nFgckxmBNSlx+RIjJCx2hK2EqU53E+AAhXJrfPTIzLhbekNNrCSspUsAhI8n8vvUPkYhiEgqLnoeo76ryliQO5YWh1Kj58drzn9vigNm9m2Psy2WXLnGCHtdkj1E+idhRH171\\/oVWVJyzHYz62ZN+tTLyD2qQ5MbSpJ+CCajbVnxFm5NRTJWJS2llKlKKUuAp7VEK0Ek6fHg+\\/2NaW72zBhKCJtwuLK0DSWwHAEDZOh9HjZJ\\/WgNrFy6\\/lMVC7SXe51DZdEd1Id2UBQAI+kp7lEqVwe0+OdY8LKsjiMxhJtj8lbi1JVtlRV\\/KNeNADZ5PJ48e4sulAV9\\/xVkrKFGTaGdKQpQW206Q1pxlJKh5I7XVK0Of8ALV+k0ssp+baosmXHMd91AUto72k\\/rWbSgPOS0H4zrROg4gp3+Y1XG3WCysW3LZTUNaT3gPLaHllZ33I\\/cEj7EV2POdUxCkPIAKm21LG\\/GwN1w9k1ylXS6T7hNc9SU84pa1ff\\/b2rz674R69ostkk6M5Gzbpr9qmOBtuUQppSjoBY41+v\\/wAVcRXFbKk3MXNQ3tC4iELBHwQfBrlaR9L5KePB4+a6NtNykNxG2yUrCUDRXyfFcvcJRSvHZ2dq205fo2k25R7ZCk3CY46xCQnaEvkd+vvr3PwK5ymzzd8hlz3Rr1nC52\\/A3wKsHrK+4\\/ZrW44o\\/W8vaR44A9qq2ESHuP8A9z\\/91ptpXi7+TPc0\\/Px+DuzDEAY3BdHb\\/nNJc4OwNpGhv7DQrd1XHQOa\\/LwBhEhfeI7haQT5CdA6\\/vVj11peUmcLUWKaFKVrmZzq72\\/DKUekhsKBAO91LeChqckwu35BOMqW4+hZZ9EhsgAjewT86Pt4rUqw7HUMSWVPK7oiFKeOh3JCmnUEka8EOrOvmp7VfixMrvWVurkyiZcZbKk9ydJBT\\/p488++6kH1WA2RaUqNwdJSgtKKloO0rCARyOCQgffzXpKwGxLWkuy3UnXALo8bNai74tC\\/D97bshtwuIUVpKdk97g3ynz9Z5+wqMZbhUW5XMevc7mkRklhsNrbGkhalc\\/RydqPNSD\\/2Q==\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tEBUGv1Q73Z2rSsxHR5JEVHvxNFk1uDokemu43Pfa4A=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:19:52'),
(16923, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:53'),
(16924, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:53'),
(16925, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:53'),
(16926, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACB848CF835086D4D8B0D2E298FF23E2\"},\"pushName\":\"Carol Schultz\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"title\":\"Emanuella Gasparini | Nutricionista no Instagram: \\\"Por isso a tizerpatida não deve ser vista apenas como uma medicação voltada para emagrecimento ou estética, ela representa uma estratégica terapeuta que atua em múltiplos sistemas do organism, impactando no metabolismo, sistema hormonal, cardiovascular, neurológico e inflamatório. Quando bem indicada e associada a uma estratégia alimentar adequada, treino e acompanhamento profissional, seus efeitos vão muito além da perda de peso. Isso facilita o tratamento de diversas condições metabólicas inflamatórias e promove a saúde de forma mais completa e sustentável. TEXTO CERTO DA ÚLTIMA FOTO ( saúde cardiovascular): A tirzepatida apresenta impacto positivo em marcadores metabólicos, glicêmicos e lipídicos, contribuindo para a melhora da função endotelial e redução da inflamação vascular. Esses efeitos promovem maior estabilidade das placas ateroscleróticas e estão associados à diminuição do risco de eventos cardiovasculares, como infarto e AVC.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHQAAAQUBAQEBAAAAAAAAAAAABAEDBQYHAggACf\\/EADkQAAIBAwMCBAQFAwIGAwAAAAECAwAEEQUSIQYxE0FRYQcicYEUFTJCkSNSoWLwJDNTscHRgpLh\\/8QAGwEAAgMBAQEAAAAAAAAAAAAAAQMAAgQFBgf\\/xAAnEQACAgIDAAEDBAMAAAAAAAAAAQIRAyEEEjFBBSJRE2Gh8DJx4f\\/aAAwDAQACEQMRAD8AhtB6mu\\/wD6LfS77ZyrozckYPf3+laNq7\\/lHQt9LE6GS7uYwpJzvVFXt684P81jVxp9zb3NteJGzQqSr7R\\/yz7jv3q46\\/fk9O6Jo4cs1sjPKe+WYkj\\/GK4WZJxZ05rSQx0raSS3FxfPn+iN4bH7z2\\/wDf2rRtJ1FLqBhO4W4hwsgPGc9mHsajun7BbHpwRMAJJl3MCP3EZVT9QDj3+tAwmWwuvGQlggDKf70P7T\\/vuKr9L5suHnWR\\/wCL9\\/v7f8MHNxfrR6\\/K8LX4yAFhIMdu9NrceJhoVLgjv2FE2zx3MCSxEFHGRXywSJEplQLnng5H819DjOMqaen4eeae9AmZSSQEHNKEkDhmlxj2p8DkbRkUrKCpyMjtS+v2UyyewVIQ8Sl3MwJzuY5BrhY1V5QFUcjGB24o4BQgACrgAADgYpkqBIT5GkrHppr+0Mct6EZec+1TWkT28WlXGDGt4rb03n9WBwPpUL7DsaIsf6d5GWGMHzFTPj\\/UhKL+SY59ZJl0hkAmO9EKSbZRjnnaM4\\/+tSDLEFCtbIyK+9MgHGef+9DWu3chdty47kUXeXMEaqEDE+1cZQ6s6Xbsgu3RJUZfCQKw5XHrVV1TR511V0soGEbfMD5VZNPufFAGMNRl4xjj8QAll8qZjyODtAlBTWzyxrf\\/AA+rXqy4VlmcEH61BS63bxuV3Zx6DNW7rvoXX31e\\/wBTvYWGnTXDuvgncdueCwHaq7FYWkSBFhXA9a4GeLjN2jv4HGUFTBdK6mthcNsieN3OSjHeG9j5j61JQMt\\/rvj3pWKIvvlPko7mqB0dELvVZLhiSIRu7+flV0uzbRaawvZGjSc7A6kAjzzz5Zxn2NL5MdqC+Snbstl5TUY5TLMszNBKNip\\/bzkYHtiirq3ebToLiJQMkjGex7kffuPes00rXtOsgI7nWrYKWVSm7sM9wfIirzoPVehzJJZ\\/nFnKsgyCZAMOOxx\\/vvWaeGUdNaK5IxdSTC7HU3gcIpaJSDww4z61bbXqGymjVgASSPccZ47dufXy7VWdOt47qdDDLG4GSpVgRS6xpVmbhJrZPDEq7iEO1o2Bwy8e4z961cPm5uPHrdpfDKS4eLK6ap\\/lF2t7qFfCmURPIpUgg98bc+Xnt\\/zTAn3fLHEu7G1Scce\\/aqLGuoWjZtLzcP7JlyP5H\\/7UnYdQTLMkWoWTxs7BRLC29Bn18x\\/Fei431Tj5dZPtf8HK5H03Pi3B9l\\/JexYu1u0xhh3Me24YHzZHl9qi7\\/ER8N4o2cqQXU8DIAzjHtRuoaffWsKNK2YzzlTUQxLHLEkmuljxp7uznTyNao6gnECbFjSQcksRjOSvqP8ASR\\/8qKgvoWlUzQhQoznhj+3gcf6T\\/NAba+2EnimSxRZSOSSJG01V1kRZCRGDVjtb21uYyoI8U9s1SypHByDTsJZDkEik5cEZeDYZXE0C2TwgMMoJ880VNdeHb7kKyHzGccVSJ71nMQjkcKFAP1qTdHlt4oLVw7ynkk\\/p+tY3grbNKzX4PXOvxMTGUJHYhhVUvukdJ1S5e6S3aLf3WNwoz64qzR9NEyRhp+WyWwO1CT6fPazPEY3bB4IHcVZ48M1Xv+wLJlhtaPJNpfW3Teg+KFBu7j5lQny7AmqVq+s3Wpy7rmdnA7L2UfQULql9JeTs8pySaALe9YMWCMPufp0cmVy0vB4yfSvllIPFD5Jr7zp9CbLFonU2q6ROsmn3kkRHlnI\\/ir9pHxa1TxR+aWkFwh\\/U8YKt9e+KyRXxREcuCO9JycfHP1DYZpw8Z6e6d6o03qCENaybZfONuCDUpcoQMivNWiXlzb3CTWs2yVftW39JdT\\/m1kEvQEmXAJPFcrkcR4\\/uj4dLDyFkVS9PQVjfQXOlRLct\\/TmiDAny4qKh0eGaWVmuUC91ANQGiXTvpkce7\\/lZSidxByDivTcVOWJTi\\/TzHJko5HCS8J38ns1tWElwFlxkN5VGCBY4fFhKsyHvnv8AamDI7DBYn70gzWiKkvXYltPxCXId5S0oAY88VwqU+i7mAPn709LB4LbXGD39RVnKtAS+QZV5qw6NJBFZSO4USL2J7moqC3DsCzqqeZNdyoiybIXLL6mkzqWhkG4uyf066kMxc\\/Me2M9qlVvIyP6gAbzqpHfCV8Obcx77a7Esy8EkH3rM8Nu0zRHNXp+erE+feuSaVjSGlGtick0opK+NQB13Ip+MgGhgea7U1GQPt3YOChINaN0DeySXW1vmY8HnlgfbzrMonxUno2rTafeLNAxDD\\/NUlFSVMZGTW0ewumbCKG3DQTyMkoGUf9p9qlriF4WAdSMnj3rOPhr1ZPf2dusoUJ2C5y24+ntWlmY3NixcZ28g+\\/nWjFlUIqMVowZsUpycpPYPx5V2MHsaZwygEggeVOw72PyjJp7yCFjYd4USxqRIrHuR2rvxSsZA2tu45GcU1I2+0DyLtkBxn1FMI\\/NLU7GOFD0fB5Gafj2E\\/OvHtTUAVz8zbacbCuQpyB51HksCgw9ZYF8IxpsdD+r1qQkvoHILQo5xySKhEz6UatrKVB296XJp+jY38H51CkJpc\\/KaQdqUbD4UlLnmk86hKFpQaTNJUAOhuKftgWkCryTQg7Zqb6YtGubsHHC0G6Vloq3Rs\\/wmiSOOPdxIDkqPIVssF4scOzcO3asTt2NjawRW0LhgBukX93rUvpXUdzagrcRyyJ79xVY+C5+msLqICfOPl88mmvxafpj5B96z636q+X+vBJnPkPKp6y1WB4FuLl\\/wtqeQ8wI3eyqMk\\/YYq1lKLY2oJ4KxnjP+Kdju4tybnBxVU6h1rS7TS1ntJpzds3FuyfqX+71X7964brXT4roIbQPCGgG+OLJMZQeIc+uc\\/wAULDX5LktxF4n6uD70TFcRu8aLgnOBjzqjHqXTYdJlBuo3IBQf0nDs+8YYEgfLtz3\\/AIos9W6Xd6rJbxbIwt6Ft1RCVmjLY4I\\/nn1qWw9UXeO\\/RnKErjuKIS6AB\\/qMOfI1luhdd6fcJdW088HiGDhY4X3xurZbcxGOeAu3PnnFW7TurelIoXW6kmmcuSGWCQjB7AceXaqp34Fxo8YdO9I671LBdSaHps13FbAGaRAAqZ7ZJ86ga9JWl1pHTnwj+IFlpdhb31laaqtvFNI7q0yv+h2xj5kBHpyKN1HoTofTGHTN\\/BpMcf5WJzqImla\\/8crkSbQNvh58u2KvYyzzrP09q8FtptxJp9wIdSybNghPj4IB2479xUXPHJBM8UyMkiMVZWGCCO4Nelfh7Z6fpWp\\/B25WxjnuNQS5R3d2O1wVw6jOMjn+ahDZ9PDTeu+u73pq1vprLVBYQaYZH8CM5G6Z\\/M5J+mc\\/aWAwKkHJr0U\\/SPRUfU\\/Smt3ummw03W9JlvH05xJLDbTrjDPt+YRHd\\/iqn8aumoLHStF1bT9J0SC0uGeJr\\/RblmtrhhkgeEwyhAHqc81LIZKozWiaHoWoaItv+ZWklvJdRrcRBxjfGw+Vh7GpnovTdF0X4R3nVl\\/oVtrd\\/NqP4BIrpm8OBAoJbCkHJz39q2Pqawhn6o0uaPRY7i0sunophDeXJjitVC\\/KZTjLBexHc4pWTaoZj0ygxyhYkAIOAPKpzT+mdc1KzS6sdLuZ4JP0yIuQaT4iRafZaR03qenQ2UTahHJ434Ev4DFWxlA3NHfBbVrhuqrmB2fwV0+dwA5xwB5U5ZFVIzyxO7Yxa9L6omrLb32mXCeHH+IlVlAxGDjcfbIxVc1R49SvGnud29uwDkBQOwAHkKlPh3q9r1NYdVu8k73Fppjyxs7kFSGGDnNWvXTo+i6b07FDoEF7f6hZxyu7M3fPkB5nnP2qdrYOnVWUa3k8JNqycerZY\\/zRCzjHM2PouK0PqCy0SNNJ0iXS7ay1q+lj8YW7MRbIT2JP7iK76p0vQIbTWrRILG2l09R+HaF3aViO4kyMc0bK9TP1a3JUSsrE9g2TRj6q2laddzWgg3rGWRmjBKMAcFfQ81oH5focWv6FpD6HFINRtEd59zblYrnK+nvQNhpOn2lmYdS0\\/T5bea+a0FxfSsfGUPtwiqOD71VvRZLZk3wtt5Hn1G52MyRogd9pIGT5n+K0uXTDGsbTWpXxEEikp3U9j\\/ijelrfT9A0fr+xtNPiNtZ6gsa7mJLqSu0E\\/wCnPFSerWlvHb6WUUjfZI7fMeSS1Ux6jRfLuVnlBpur20bVNLe6gey1O4F1dq9zbs0soOQxYtuH2NTadW\\/ENNA\\/KBqNr+GEH4YSGW18YQ\\/2eLndj71lxGcVpvSGj3l9p2ix6DollqdvOzfmTzW0crL8+CpdhmL5eRtKk9+aJdojYdT62ibQPCvLZBoJLafie2\\/okkE+fzdh+rNSlv1f8QbXqC\\/1iC\\/sEub8Kt1HvtTDKFGFzHnbkeuM+9cRfD3T59QkdJrqHSGEPhXcgwu57hY2GSO4UnjuD3qG1npSwtertI01Dd28N2gaWO4GJIzuYYGQDyAMZA7+dEBJN1F1\\/J1UvUT6rAdUWPwQ5uLbYI\\/+n4edu32xTXVGodX9XR2sGs3Ng1rbEmG2glt4YkJ7kKhAyfU0Wvw8huJLBILPU7eeYWsk9rLhpIY5JZ0dj8owAI05I\\/dz3o\\/Tfh\\/YDT7aadL4OxiYtGdwlV88L8oGRx2LHuMZ4oMK9BejdS6v6VjmtNFvbKK1uSDLDJJbyoSOzBWJAPvVvn6o6xgvfzL81tpr0262ZMrwMrxf2sp4b6nn3qKi+H+mxzXkkj3a7VUqi5ZrdTHu3SZUEDPk23io7RNE07U9Ms5bxrj8TcySW6FHAWMrFuDEEHPOBjikybsfBKiU1XU+peooLWDWb2znitixhVXgQR7u4G3HHA4oC21HXunriW50S8s7e5aJoS5mhf5GHIw2RUm\\/TelmeOJmmW4mtZZ1kUqqJ4VuJOVA5zgjy9eaE174fwPZyizt9Q\\/FH8SturMH\\/E+GYcOgAzgq7nHPA71Rel3XhUenH6i0CLUY9LvrKBNQgNtcjxoW3xk5I5zj6jBq4aR1R1Gt5pMt9qFlI+mRrFaN4sI8JR2GBw33zTqfD3TLTTr2ImeRnZlebww34cxkYQnGFLeZyDggDPIMXqfSmhW9lM1sLxZx+LRC8ykZgCNuxt\\/dvxjyx3NM7C3BM0i+6t6l1+ykgudVsponILGMwI2Qcj5lAI7etdanr\\/Uupae1ne39o8LgCQholaQDtuYDJrNOkunorjT9NuVN2PxLkTXcbqsVsRJtCMCOWIwe4\\/UOO9aNY6PY\\/lsV3f2l9bSsyxtau4V1y+3eSV7Ec9vKrqf5EyxV4WnXusNTLWceg6jbQQJZRwOX2FlcDDFSeR9qq15r3Umk9PG3sdYskVZA8Zfw2aNieSrMCQalDoWlXEtpZu3gSRqqyXGQFIM7ISR6488+VQ3V\\/TFmtmogtdQuZd6ZtI22yKCWBc5XO0YHkB8w5qSkqdFYxfZWFdG611IsOpXsmpafJPqUha54jw5HAOAMA\\/QVMyahq08cCz3MDCGMRJhk4UZwO3Pc1C2vS8em9KWktlczlyEO84KOWBJAPbIx5E0ykOoKuBOn3jqRkkgSi2zzOq5rhyQ3Bxj0og\\/KnFDOOaKY1nzMzEsxJJOSTzk0iDJJroj5RXargUQUP3F3cXUdslxIXW3i8GIYHypuZsfyzH707ZAkmhlGTUlpMe4kkVST0XgtklaQBlm55GAKIWMtEiHnbS2igRk+RNPqMHiss2bYRpDUcZRgR3BzV0a7\\/OdPtlv7i3TYSdqxrHknGWOAMk4HPtVfggEi8DmjVvpNJ0u6Ah3mTARj2Q+tLUvgM4WtAGtRW2lx53JIz58NUbOfc+1VQlp5yX5Y1cdM6ZlvI2v9bn\\/D2pG7LH52HrjyFVu8S3ivJRZbjbhjsLdyKYq+CjTemE6dZM0iceea0LR7Zo9NX5GaN859B5VWemjHdTpEv6yAGq\\/XCTWBRbe1uZYgONuRx9DQsrkVEYtl4rRlospn5lLdvQ4qB6y+S4t4WUKMHHOc1ZVS5LlxGLPxDgPKCe\\/pTsHTS3GoI16EvCDw7y4x9BUbFrTE0uOP8stUEzCVEGI89\\/tUjC2peGNhXaO2QTRlxJptmwgknETJ\\/wBQk4x6CgBLBOS6TWu3OATcbc\\/agpBo864+Q0wwyaeH6DTRreIZ8BlgB5CuiecCvuykjv2pB3FAg8gwKmNKQnCJ3PFRCDMhHlkVZ+n41Ks3mCKVkdIbjVsOEIjgxj6VyifMKN1ABe3rQ0AywrG2boomdJi3MM0Vdwm6gligCtuG1QRkf7\\/8ChA5itRsOCxCk+xqyWUSQJKYxgowiX2BGSfqaVKVbDL8FIn6d142yzm0kkgYY3RHfwPI4\\/7GutN6T1O\\/kUG2eCHOGkmBVR9T\\/wCBWzaA5t0Ph8K6\\/MvkaH6muHsJESAArIu4h8tVlmbFNuyvad0VZ6TbNLeT+IQMmSAk4+gxUzZwRralbO5e6BHG9yrL7e1C2t7dOLQrcSR72IITAGM+mKv9jFHqMDQXcaugGDgYJ+uKHZlH+5VrFYpIil+k8QJ+XxlDIp9m\\/wDdJPYSx3CvHa2l5GBkKGCNRunMsmrtphjQWciMCmPQ8VXtR1m7029FtaGNIYmIVdgo9idSxzW\\/5kAtzZRRhVGORuX25riPSIwgB0OKTH7ldcH+aO0jUHvbuzS6hgk8WHexKYOc1PXUMdrL4cKgJjPNDsyUf\\/\\/Z\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"84uulDRlvZab1xCtGaMBnZBV6uYHEjMhG\\/tzf6sjW6Y=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:19:53'),
(16927, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:53'),
(16928, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC39077605A069C1709895F64F69ECD4\"},\"pushName\":\"Carol Schultz\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"title\":\"Iasmin T. - EMAGRECIMENTO SEM TERRORISMO no Instagram: \\\"✨ Guia do Monjauro: o que você precisa saber! Se você começou o tratamento com Monjauro, este carrossel é pra você 💚 Separei dicas práticas para aliviar sintomas, ajustar a alimentação e tornar essa fase muito mais tranquila e segura 👉 Passe para o lado para descobrir: • Como lidar com náuseas e desconfortos • Estratégias alimentares que fazem diferença • O que evitar e o que priorizar no dia a dia • E hábitos simples que ajudam MUITO no processo Lembre-se: cada corpo responde de um jeito e um acompanhamento nutricional + médico faz toda a diferença 🩺✨ #emagrecimento #monjauro #tizerpatida #deficitcalorico #nutri #dicadanutri\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAAAAgMBAQEBAAAAAAAAAAAABAUDBgcCAQAI\\/8QANhAAAgEDAwIFAgQFAwUAAAAAAQIDAAQRBRIhMUEGEyJRcQdhIzKBsRQVQlKRFqHBMzRicuH\\/xAAZAQACAwEAAAAAAAAAAAAAAAACAwABBAX\\/xAAiEQACAwACAgIDAQAAAAAAAAAAAQIDERIhBDEyQRMiQlH\\/2gAMAwEAAhEDEQA\\/ANGtZQL0H2U1zdzliQDQrsbacmZ154Bz1rwkMcg0hsM5Jya8cYGRXhFcknoaEhGzY3fFZj9R9f3SHTrR84\\/6rA9D7Vb\\/ABjrC6TpjyAjzW9KD3NYncStI7yOSWY5J96OK0gNL6VP370N1OK7ncnrXMS5IppQVbR7yPYVzdMScLwKY6faGVcAHJ6V7daZPvKqhyKDktCxiIxN1yP1rtJHjPOMUQdOnMmGVq+urWWBR6cr3FXyRMPYmjl6+lveiYg0bbT39uhoGMZH2o+1kDRhJO3Q+1WgWSlMgY61b\\/p1rjadqYtZjiCchcn+luxqlXLvDtbqvv7URby71EkZwwOfg1GT2fpWGUOoIPFdhFkJZmxzxVW8E6r\\/ADTSIZCw8xBtcd80xv5We4IRsKg2jmrBzDjV5d0qg9KBEjxnMbkV3qDb5yR2OKHHSkBhSai6keauR7ipnv4TGW3Yx70rkbAPvSLxRfmy0qVwfU3pX5NTCym+M9UfVdalAfdBCSiY6fNVKaRpbjapwopiHEUW+Q8vk1HpNkbqZmA6mmaooiWvCCCxluHAjBP6VZ9G8K3FwVMi7R9xVs8KaJHDHvkUE9sirfDbquAoArLZ5D9I11+PvbK3pPhqK3UbgpYfamY0KBny6gn3p7FCM0QkAPWsrsbZqjVFIrEnhu1Z92zn4pRrPhyDyHCqOlaLHbr3HFB6lZK6EAdaJTaKdcX9H5+vtPNrM6HgA8fFChMbgf0NaB4z0loD5u3jGKomSAy9z0rfTPkjnXV8HgKX3RsjnIxXGmSGO48pzw3Gf2qF2KSkdq+PDAjqORThWGkfTrVTYarJbuSEnU7f\\/cdK0VPy8nJrFrSYoYriM4ZSrg1s2nQzXVlDPFtdHUHINRFSIJWz6vck\\/wC9QtJik0vi3SGICTnhcfkNL5\\/FenuWWJnYgE\\/l9qTjCH886L+ZgPk1RPHt8Jbi3tY2BVRvbHuelVnUdWuLm6aRpW9RzjPQe1DrI0knmOSSO5q1Es71HlkH9IGKsXg6FWUEjvSAlJYizH1KO9WfwSAyiguf6jKvkaVpkY2KR\\/inEKg0q08bQADTiGue0dKIRHGOwomOOo46KjFRIM7jjGOlQXkQ2jHWjUHFQ3KnFE10UVHX7Fby0kjI5I4+aw7WLZ7O7ljYFSrcV+hbpfUeKzn6haJ5sRvYVG5fz49qbRPi8EX18lpk87eYxbHNco2VGe3X4qSdSjkGoD6SG7Hg10Ec5rCx6WQ9myk5IOP0rS\\/B+t+VocUTvgxsV5rKtEkP4i\\/BptHcPBuRHIG7NQFrSovEAcrkfBo6xL\\/wtwSxPRRmp3teCa8XatlEFGWLsxH7VC8F7580g0QPTHUexjJlhXk787RQlnLyEIQO+avfgMZCD7Vnc74Bx1NX7wK0vkxeQMysMDPak3fEdT8jWLNAAOKYx4GKqn8FrbIClxGO\\/WvRca5aN+KvnIOpxmsnHfs3Kee0XWLmjI+KrumaibhASCj45Bp1BJvXrzVZg1PQ0TKgyxpfq\\/iKwso9jYeUjhF5JqHUC3llUOCe9V9NPtbR2uro+ZIffnNWmgZb9Ey6rdakT\\/B6e4T+5jih7\\/SL24iYNLGu4flzSW\\/+o9vZzvBbWbuIztLdB+lH23iWSS4igvbd7d5VDx5OVZTyCDTHGSW4JUot5plXinRptLv2t51wreqNh0+KrWMgqa2X6gWS6hpXnquZYDu++O9ZHfxeW4kUeh\\/3rRTPkjNfXxZLorFZ2GM4A\\/enLgs2cUl0n\\/umP\\/iP3p0cnH2p5mBpHHlP8UFCoKxZPc1I7fhP8VDGoIjweeaEskulEaEilLtyST1o6\\/fJ254ApPcyccVCzm5lIdSvatQ+nY224k\\/tQmspl5rUfpzMGtYyMkYKkUm\\/4j\\/H7kXG616ZL2Oysl3TsccnAHzSH\\/XOoid1mig2xsVZDkMeccVZotKh8\\/zfLXce+OaKg0WxV9\\/8PEXPJJUEms0ZQS9GuVdj9M5NwwVZFASbYJMA9QRmrBot2JkViaUy2cSjKouffHSu9Kk8hWXoM8UDf2g4proa30uWbFKZ2lFyH8tZFXpubii5JN0hrtEU9qFPHobjvTKKPBQnvJ5XuJEhlYsY1PHJzg+9WJNKiiRA2ZDGoVS5zgAYFOWGOgqJwe9Mdkpeyo0Rj2kLJohsZCoKkYIrJPGGlSabcSIq5tpDvjPsfatimFVbxzbpL4cvHKgtGm5T7GiplkgfIrTgZZo\\/Lse\\/Ap6QeuetIdIyFLZ6nNPA\\/sOtdA5Amd\\/wyB7VAjncK8kchcL1NdsgQA9M0AQNeScn78UvnBIFMJoi8o\\/zUdzbsgUEVCAB4YfFaD9Ln\\/CuU\\/skBH6j\\/wCVQJsZXHbir79OmWJJFx6yfUf2pd\\/wHeP80a9Y+tAaYpHSzSj+GvNO4sECsB2EtQFdIRH04FL429RIo\\/Xbkx26RwjDSMEJ9h3pdbrlgoP+ajQKWSCkPNG2xQqQWwa5e1EKqWdTn2r4IjDABB96oJ+wpYQ54NSSWYEJJ7UvEskB5yV9xUv8w3rtJq0WmA3KYY1WvGy7fCmpnv5X\\/NWqQ7zkVWfHxEfha8B\\/r2oP1IplfyQjyJLgzI9Pi226nvxTHBbvihrRM7F+TRKjjr0ronFFB2Rqeufeh5HyPTnNTyKNhdug4H3qNclSduKWMwNJgjjR92WKgEe1L9Quke39GS7MQPsKDuZXwKjUZxz0HFFpWETKen3qyeELs21\\/EHOA52mk8cW4ZNdruiYMvbv7UMlyWBRePTf9Jm\\/DGTzTjz9o9yao\\/gvV49RsY3yBKuFkX2PvVzEIlj3K3bt2rBJcX2dWFnKPRFNKWzu5qFIVaQMCVYdwaU6xNd2QYqVcduK40R9S1e1imtGjYMSpjDAMpHYijjW5dkcl\\/TwtUZyAHYHFSySLGuWO354pfZeH\\/EFx5Uip5aucKxb96dXHhcW0Ek\\/iHUAEiK5C8Ar89aP8JJW1x\\/rRRNqFtHktMgx981Assd7E8kGRtzh8YyaWa61tean\\/AAelQiKxSQ7SDkycAZJPOKsKwLHbLEi4CjAoJxUC+\\/b6IrQl4UZ+pFUb6o34KW2nxn1M3mN9vardqd\\/Do2mNPcsAsaf5PtWPXt7Lqt\\/Jdz\\/mkPA\\/tHYUfjw18jJ5VmLie2yBUYk9FyBXEb53fNSuwVZwMDjH7UFEfSSO5raYDiGNJIMlc4qXTI0e7RGAw2VGenI4oCDeAFUnLZ4ptp1o5ELj8wbt1yDWdvB+aJtYhQrHsXayjaw+9LFhYDirV4mtlj1WdFG0bydp7UkvcJEqgerimiiCMFG2kg55wDXwcJIVboKgXlwR1BzUt229VfHJ4NWQN0fU7nTLg3Vo3T8yHow9q1rwn4wttRiwMpKvDxt\\/xWN2vqgen3haPOoGNThnXj5FKtgmtGVTcXiNf1VVuoC8RBVhVXtJZtPusxyPbyhs5Xox9\\/vXVjfzWEgjuQ3lng5qxLbW96g3hWB5BpEJcTfCe9MNtfFetR2sUUUkB287yKFu7iXVpnn1e8kkkVcIiDgnsAP1qW30a3Tpux7bjTa0soYSGRFz745o3ajRH8cO4xxi7RtMMT+dKMOfyj2FMr65is7d5ZnVEUZLHjFGOVjUk8DrWNfVDxI13ObG1kIgX8+P6jSlF2SEXW8e2JvF3iOTxBqOyJitlG3oH933NBRSiPYF+aV24CYz1xUyyZbGevArdFKKxHLm3J6w+SXIYfb\\/AJFd2ke+HP3oAv8AnwaNsXxbijXbAYRYWsSyTQ3QKT5Iwexpr4ZeP+YQQ3LbWEuST0xmm+t2ME2qyl05K5yOOaj8I2NtfXV3DdxLKiIxXd1B+axRfI2S\\/VMq\\/wBQLlW16aWFgysc8Gqpc3JdtzH25p\\/48sotPu447cvtZdxDNnmqmxyhzzxWlGUlilIf\\/bNGyjzImUdxkUsQnANMLdj6QeRVkOrNyEBHGRz8irDoWY7yGZeCjjJ+1V2MbenvVo0pQLEv\\/VuHP60E30HBdmrXdpHeaMzFAW25BxzQukI0MIVGyvse1N9PONKQdttKYz5cpVelYtNy\\/wBHdvcgDD5U\\/ejVulA4NJYnYkAnivdUuHis2dMAgVNC5tCjxz4oGn2rQxt+LIMAZ6fesalla5uGkc5yck1zreoXF5qc73D7mLkfArhTsBx2FbK4cUYbLHJ9nTvtB981zHL6gRQysWgJJ5ya8QkdKYKGCPkGi4ZMRgA0ujJ5+KmVjjrRIprT\\/9k=\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/636717113_1180060870875062_1256163359642073115_n.enc?ccb=11-4&oh=01_Q5Aa3wFW7eSIkqLFZwdSMp3JQBuziRMamEovofb5nI_YR7udAw&oe=69B73F92&_nc_sid=5e03e0\",\"thumbnailSha256\":\"W9kapuCuoF2Q1VbkV6dLjJVGP4Zl+gcZIYs65\\/pT\\/VQ=\",\"thumbnailEncSha256\":\"EZePBMlwNqgy2S2DWDS0ACdylIV1yY++nApfkZof2oE=\",\"mediaKey\":\"LQrhJVUU5GUbrkv8p55vE4LLCdWBZHz1NQ\\/EQ3a00NE=\",\"mediaKeyTimestamp\":\"1771032214\",\"thumbnailHeight\":639,\"thumbnailWidth\":640,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wjk1poG13EBJ2NRMgO8EQVvHOTtPnWhGOy09BiRiNZg=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:19:54'),
(16929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:54'),
(16930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACB848CF835086D4D8B0D2E298FF23E2\"},\"pushName\":\"Carol Schultz\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"title\":\"Emanuella Gasparini | Nutricionista no Instagram: \\\"Por isso a tizerpatida não deve ser vista apenas como uma medicação voltada para emagrecimento ou estética, ela representa uma estratégica terapeuta que atua em múltiplos sistemas do organism, impactando no metabolismo, sistema hormonal, cardiovascular, neurológico e inflamatório. Quando bem indicada e associada a uma estratégia alimentar adequada, treino e acompanhamento profissional, seus efeitos vão muito além da perda de peso. Isso facilita o tratamento de diversas condições metabólicas inflamatórias e promove a saúde de forma mais completa e sustentável. TEXTO CERTO DA ÚLTIMA FOTO ( saúde cardiovascular): A tirzepatida apresenta impacto positivo em marcadores metabólicos, glicêmicos e lipídicos, contribuindo para a melhora da função endotelial e redução da inflamação vascular. Esses efeitos promovem maior estabilidade das placas ateroscleróticas e estão associados à diminuição do risco de eventos cardiovasculares, como infarto e AVC.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHQAAAQUBAQEBAAAAAAAAAAAABAEDBQYHAggACf\\/EADkQAAIBAwMCBAQFAwIGAwAAAAECAwAEEQUSIQYxE0FRYQcicYEUFTJCkSNSoWLwJDNTscHRgpLh\\/8QAGwEAAgMBAQEAAAAAAAAAAAAAAQMAAgQFBgf\\/xAAnEQACAgIDAAEDBAMAAAAAAAAAAQIRAyEEEjFBBSJRE2Gh8DJx4f\\/aAAwDAQACEQMRAD8AhtB6mu\\/wD6LfS77ZyrozckYPf3+laNq7\\/lHQt9LE6GS7uYwpJzvVFXt684P81jVxp9zb3NteJGzQqSr7R\\/yz7jv3q46\\/fk9O6Jo4cs1sjPKe+WYkj\\/GK4WZJxZ05rSQx0raSS3FxfPn+iN4bH7z2\\/wDf2rRtJ1FLqBhO4W4hwsgPGc9mHsajun7BbHpwRMAJJl3MCP3EZVT9QDj3+tAwmWwuvGQlggDKf70P7T\\/vuKr9L5suHnWR\\/wCL9\\/v7f8MHNxfrR6\\/K8LX4yAFhIMdu9NrceJhoVLgjv2FE2zx3MCSxEFHGRXywSJEplQLnng5H819DjOMqaen4eeae9AmZSSQEHNKEkDhmlxj2p8DkbRkUrKCpyMjtS+v2UyyewVIQ8Sl3MwJzuY5BrhY1V5QFUcjGB24o4BQgACrgAADgYpkqBIT5GkrHppr+0Mct6EZec+1TWkT28WlXGDGt4rb03n9WBwPpUL7DsaIsf6d5GWGMHzFTPj\\/UhKL+SY59ZJl0hkAmO9EKSbZRjnnaM4\\/+tSDLEFCtbIyK+9MgHGef+9DWu3chdty47kUXeXMEaqEDE+1cZQ6s6Xbsgu3RJUZfCQKw5XHrVV1TR511V0soGEbfMD5VZNPufFAGMNRl4xjj8QAll8qZjyODtAlBTWzyxrf\\/AA+rXqy4VlmcEH61BS63bxuV3Zx6DNW7rvoXX31e\\/wBTvYWGnTXDuvgncdueCwHaq7FYWkSBFhXA9a4GeLjN2jv4HGUFTBdK6mthcNsieN3OSjHeG9j5j61JQMt\\/rvj3pWKIvvlPko7mqB0dELvVZLhiSIRu7+flV0uzbRaawvZGjSc7A6kAjzzz5Zxn2NL5MdqC+Snbstl5TUY5TLMszNBKNip\\/bzkYHtiirq3ebToLiJQMkjGex7kffuPes00rXtOsgI7nWrYKWVSm7sM9wfIirzoPVehzJJZ\\/nFnKsgyCZAMOOxx\\/vvWaeGUdNaK5IxdSTC7HU3gcIpaJSDww4z61bbXqGymjVgASSPccZ47dufXy7VWdOt47qdDDLG4GSpVgRS6xpVmbhJrZPDEq7iEO1o2Bwy8e4z961cPm5uPHrdpfDKS4eLK6ap\\/lF2t7qFfCmURPIpUgg98bc+Xnt\\/zTAn3fLHEu7G1Scce\\/aqLGuoWjZtLzcP7JlyP5H\\/7UnYdQTLMkWoWTxs7BRLC29Bn18x\\/Fei431Tj5dZPtf8HK5H03Pi3B9l\\/JexYu1u0xhh3Me24YHzZHl9qi7\\/ER8N4o2cqQXU8DIAzjHtRuoaffWsKNK2YzzlTUQxLHLEkmuljxp7uznTyNao6gnECbFjSQcksRjOSvqP8ASR\\/8qKgvoWlUzQhQoznhj+3gcf6T\\/NAba+2EnimSxRZSOSSJG01V1kRZCRGDVjtb21uYyoI8U9s1SypHByDTsJZDkEik5cEZeDYZXE0C2TwgMMoJ880VNdeHb7kKyHzGccVSJ71nMQjkcKFAP1qTdHlt4oLVw7ynkk\\/p+tY3grbNKzX4PXOvxMTGUJHYhhVUvukdJ1S5e6S3aLf3WNwoz64qzR9NEyRhp+WyWwO1CT6fPazPEY3bB4IHcVZ48M1Xv+wLJlhtaPJNpfW3Teg+KFBu7j5lQny7AmqVq+s3Wpy7rmdnA7L2UfQULql9JeTs8pySaALe9YMWCMPufp0cmVy0vB4yfSvllIPFD5Jr7zp9CbLFonU2q6ROsmn3kkRHlnI\\/ir9pHxa1TxR+aWkFwh\\/U8YKt9e+KyRXxREcuCO9JycfHP1DYZpw8Z6e6d6o03qCENaybZfONuCDUpcoQMivNWiXlzb3CTWs2yVftW39JdT\\/m1kEvQEmXAJPFcrkcR4\\/uj4dLDyFkVS9PQVjfQXOlRLct\\/TmiDAny4qKh0eGaWVmuUC91ANQGiXTvpkce7\\/lZSidxByDivTcVOWJTi\\/TzHJko5HCS8J38ns1tWElwFlxkN5VGCBY4fFhKsyHvnv8AamDI7DBYn70gzWiKkvXYltPxCXId5S0oAY88VwqU+i7mAPn709LB4LbXGD39RVnKtAS+QZV5qw6NJBFZSO4USL2J7moqC3DsCzqqeZNdyoiybIXLL6mkzqWhkG4uyf066kMxc\\/Me2M9qlVvIyP6gAbzqpHfCV8Obcx77a7Esy8EkH3rM8Nu0zRHNXp+erE+feuSaVjSGlGtick0opK+NQB13Ip+MgGhgea7U1GQPt3YOChINaN0DeySXW1vmY8HnlgfbzrMonxUno2rTafeLNAxDD\\/NUlFSVMZGTW0ewumbCKG3DQTyMkoGUf9p9qlriF4WAdSMnj3rOPhr1ZPf2dusoUJ2C5y24+ntWlmY3NixcZ28g+\\/nWjFlUIqMVowZsUpycpPYPx5V2MHsaZwygEggeVOw72PyjJp7yCFjYd4USxqRIrHuR2rvxSsZA2tu45GcU1I2+0DyLtkBxn1FMI\\/NLU7GOFD0fB5Gafj2E\\/OvHtTUAVz8zbacbCuQpyB51HksCgw9ZYF8IxpsdD+r1qQkvoHILQo5xySKhEz6UatrKVB296XJp+jY38H51CkJpc\\/KaQdqUbD4UlLnmk86hKFpQaTNJUAOhuKftgWkCryTQg7Zqb6YtGubsHHC0G6Vloq3Rs\\/wmiSOOPdxIDkqPIVssF4scOzcO3asTt2NjawRW0LhgBukX93rUvpXUdzagrcRyyJ79xVY+C5+msLqICfOPl88mmvxafpj5B96z636q+X+vBJnPkPKp6y1WB4FuLl\\/wtqeQ8wI3eyqMk\\/YYq1lKLY2oJ4KxnjP+Kdju4tybnBxVU6h1rS7TS1ntJpzds3FuyfqX+71X7964brXT4roIbQPCGgG+OLJMZQeIc+uc\\/wAULDX5LktxF4n6uD70TFcRu8aLgnOBjzqjHqXTYdJlBuo3IBQf0nDs+8YYEgfLtz3\\/AIos9W6Xd6rJbxbIwt6Ft1RCVmjLY4I\\/nn1qWw9UXeO\\/RnKErjuKIS6AB\\/qMOfI1luhdd6fcJdW088HiGDhY4X3xurZbcxGOeAu3PnnFW7TurelIoXW6kmmcuSGWCQjB7AceXaqp34Fxo8YdO9I671LBdSaHps13FbAGaRAAqZ7ZJ86ga9JWl1pHTnwj+IFlpdhb31laaqtvFNI7q0yv+h2xj5kBHpyKN1HoTofTGHTN\\/BpMcf5WJzqImla\\/8crkSbQNvh58u2KvYyzzrP09q8FtptxJp9wIdSybNghPj4IB2479xUXPHJBM8UyMkiMVZWGCCO4Nelfh7Z6fpWp\\/B25WxjnuNQS5R3d2O1wVw6jOMjn+ahDZ9PDTeu+u73pq1vprLVBYQaYZH8CM5G6Z\\/M5J+mc\\/aWAwKkHJr0U\\/SPRUfU\\/Smt3ummw03W9JlvH05xJLDbTrjDPt+YRHd\\/iqn8aumoLHStF1bT9J0SC0uGeJr\\/RblmtrhhkgeEwyhAHqc81LIZKozWiaHoWoaItv+ZWklvJdRrcRBxjfGw+Vh7GpnovTdF0X4R3nVl\\/oVtrd\\/NqP4BIrpm8OBAoJbCkHJz39q2Pqawhn6o0uaPRY7i0sunophDeXJjitVC\\/KZTjLBexHc4pWTaoZj0ygxyhYkAIOAPKpzT+mdc1KzS6sdLuZ4JP0yIuQaT4iRafZaR03qenQ2UTahHJ434Ev4DFWxlA3NHfBbVrhuqrmB2fwV0+dwA5xwB5U5ZFVIzyxO7Yxa9L6omrLb32mXCeHH+IlVlAxGDjcfbIxVc1R49SvGnud29uwDkBQOwAHkKlPh3q9r1NYdVu8k73Fppjyxs7kFSGGDnNWvXTo+i6b07FDoEF7f6hZxyu7M3fPkB5nnP2qdrYOnVWUa3k8JNqycerZY\\/zRCzjHM2PouK0PqCy0SNNJ0iXS7ay1q+lj8YW7MRbIT2JP7iK76p0vQIbTWrRILG2l09R+HaF3aViO4kyMc0bK9TP1a3JUSsrE9g2TRj6q2laddzWgg3rGWRmjBKMAcFfQ81oH5focWv6FpD6HFINRtEd59zblYrnK+nvQNhpOn2lmYdS0\\/T5bea+a0FxfSsfGUPtwiqOD71VvRZLZk3wtt5Hn1G52MyRogd9pIGT5n+K0uXTDGsbTWpXxEEikp3U9j\\/ijelrfT9A0fr+xtNPiNtZ6gsa7mJLqSu0E\\/wCnPFSerWlvHb6WUUjfZI7fMeSS1Ux6jRfLuVnlBpur20bVNLe6gey1O4F1dq9zbs0soOQxYtuH2NTadW\\/ENNA\\/KBqNr+GEH4YSGW18YQ\\/2eLndj71lxGcVpvSGj3l9p2ix6DollqdvOzfmTzW0crL8+CpdhmL5eRtKk9+aJdojYdT62ibQPCvLZBoJLafie2\\/okkE+fzdh+rNSlv1f8QbXqC\\/1iC\\/sEub8Kt1HvtTDKFGFzHnbkeuM+9cRfD3T59QkdJrqHSGEPhXcgwu57hY2GSO4UnjuD3qG1npSwtertI01Dd28N2gaWO4GJIzuYYGQDyAMZA7+dEBJN1F1\\/J1UvUT6rAdUWPwQ5uLbYI\\/+n4edu32xTXVGodX9XR2sGs3Ng1rbEmG2glt4YkJ7kKhAyfU0Wvw8huJLBILPU7eeYWsk9rLhpIY5JZ0dj8owAI05I\\/dz3o\\/Tfh\\/YDT7aadL4OxiYtGdwlV88L8oGRx2LHuMZ4oMK9BejdS6v6VjmtNFvbKK1uSDLDJJbyoSOzBWJAPvVvn6o6xgvfzL81tpr0262ZMrwMrxf2sp4b6nn3qKi+H+mxzXkkj3a7VUqi5ZrdTHu3SZUEDPk23io7RNE07U9Ms5bxrj8TcySW6FHAWMrFuDEEHPOBjikybsfBKiU1XU+peooLWDWb2znitixhVXgQR7u4G3HHA4oC21HXunriW50S8s7e5aJoS5mhf5GHIw2RUm\\/TelmeOJmmW4mtZZ1kUqqJ4VuJOVA5zgjy9eaE174fwPZyizt9Q\\/FH8SturMH\\/E+GYcOgAzgq7nHPA71Rel3XhUenH6i0CLUY9LvrKBNQgNtcjxoW3xk5I5zj6jBq4aR1R1Gt5pMt9qFlI+mRrFaN4sI8JR2GBw33zTqfD3TLTTr2ImeRnZlebww34cxkYQnGFLeZyDggDPIMXqfSmhW9lM1sLxZx+LRC8ykZgCNuxt\\/dvxjyx3NM7C3BM0i+6t6l1+ykgudVsponILGMwI2Qcj5lAI7etdanr\\/Uupae1ne39o8LgCQholaQDtuYDJrNOkunorjT9NuVN2PxLkTXcbqsVsRJtCMCOWIwe4\\/UOO9aNY6PY\\/lsV3f2l9bSsyxtau4V1y+3eSV7Ec9vKrqf5EyxV4WnXusNTLWceg6jbQQJZRwOX2FlcDDFSeR9qq15r3Umk9PG3sdYskVZA8Zfw2aNieSrMCQalDoWlXEtpZu3gSRqqyXGQFIM7ISR6488+VQ3V\\/TFmtmogtdQuZd6ZtI22yKCWBc5XO0YHkB8w5qSkqdFYxfZWFdG611IsOpXsmpafJPqUha54jw5HAOAMA\\/QVMyahq08cCz3MDCGMRJhk4UZwO3Pc1C2vS8em9KWktlczlyEO84KOWBJAPbIx5E0ykOoKuBOn3jqRkkgSi2zzOq5rhyQ3Bxj0og\\/KnFDOOaKY1nzMzEsxJJOSTzk0iDJJroj5RXargUQUP3F3cXUdslxIXW3i8GIYHypuZsfyzH707ZAkmhlGTUlpMe4kkVST0XgtklaQBlm55GAKIWMtEiHnbS2igRk+RNPqMHiss2bYRpDUcZRgR3BzV0a7\\/OdPtlv7i3TYSdqxrHknGWOAMk4HPtVfggEi8DmjVvpNJ0u6Ah3mTARj2Q+tLUvgM4WtAGtRW2lx53JIz58NUbOfc+1VQlp5yX5Y1cdM6ZlvI2v9bn\\/D2pG7LH52HrjyFVu8S3ivJRZbjbhjsLdyKYq+CjTemE6dZM0iceea0LR7Zo9NX5GaN859B5VWemjHdTpEv6yAGq\\/XCTWBRbe1uZYgONuRx9DQsrkVEYtl4rRlospn5lLdvQ4qB6y+S4t4WUKMHHOc1ZVS5LlxGLPxDgPKCe\\/pTsHTS3GoI16EvCDw7y4x9BUbFrTE0uOP8stUEzCVEGI89\\/tUjC2peGNhXaO2QTRlxJptmwgknETJ\\/wBQk4x6CgBLBOS6TWu3OATcbc\\/agpBo864+Q0wwyaeH6DTRreIZ8BlgB5CuiecCvuykjv2pB3FAg8gwKmNKQnCJ3PFRCDMhHlkVZ+n41Ks3mCKVkdIbjVsOEIjgxj6VyifMKN1ABe3rQ0AywrG2boomdJi3MM0Vdwm6gligCtuG1QRkf7\\/8ChA5itRsOCxCk+xqyWUSQJKYxgowiX2BGSfqaVKVbDL8FIn6d142yzm0kkgYY3RHfwPI4\\/7GutN6T1O\\/kUG2eCHOGkmBVR9T\\/wCBWzaA5t0Ph8K6\\/MvkaH6muHsJESAArIu4h8tVlmbFNuyvad0VZ6TbNLeT+IQMmSAk4+gxUzZwRralbO5e6BHG9yrL7e1C2t7dOLQrcSR72IITAGM+mKv9jFHqMDQXcaugGDgYJ+uKHZlH+5VrFYpIil+k8QJ+XxlDIp9m\\/wDdJPYSx3CvHa2l5GBkKGCNRunMsmrtphjQWciMCmPQ8VXtR1m7029FtaGNIYmIVdgo9idSxzW\\/5kAtzZRRhVGORuX25riPSIwgB0OKTH7ldcH+aO0jUHvbuzS6hgk8WHexKYOc1PXUMdrL4cKgJjPNDsyUf\\/\\/Z\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"84uulDRlvZab1xCtGaMBnZBV6uYHEjMhG\\/tzf6sjW6Y=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:19:54'),
(16931, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16932, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC39077605A069C1709895F64F69ECD4\"},\"pushName\":\"Carol Schultz\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"title\":\"Iasmin T. - EMAGRECIMENTO SEM TERRORISMO no Instagram: \\\"✨ Guia do Monjauro: o que você precisa saber! Se você começou o tratamento com Monjauro, este carrossel é pra você 💚 Separei dicas práticas para aliviar sintomas, ajustar a alimentação e tornar essa fase muito mais tranquila e segura 👉 Passe para o lado para descobrir: • Como lidar com náuseas e desconfortos • Estratégias alimentares que fazem diferença • O que evitar e o que priorizar no dia a dia • E hábitos simples que ajudam MUITO no processo Lembre-se: cada corpo responde de um jeito e um acompanhamento nutricional + médico faz toda a diferença 🩺✨ #emagrecimento #monjauro #tizerpatida #deficitcalorico #nutri #dicadanutri\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAAAAgMBAQEBAAAAAAAAAAAABAUDBgcCAQAI\\/8QANhAAAgEDAwIFAgQFAwUAAAAAAQIDAAQRBRIhMUEGEyJRcQdhIzKBsRQVQlKRFqHBMzRicuH\\/xAAZAQACAwEAAAAAAAAAAAAAAAACAwABBAX\\/xAAiEQACAwACAgIDAQAAAAAAAAAAAQIDERIhBDEyQRMiQlH\\/2gAMAwEAAhEDEQA\\/ANGtZQL0H2U1zdzliQDQrsbacmZ154Bz1rwkMcg0hsM5Jya8cYGRXhFcknoaEhGzY3fFZj9R9f3SHTrR84\\/6rA9D7Vb\\/ABjrC6TpjyAjzW9KD3NYncStI7yOSWY5J96OK0gNL6VP370N1OK7ncnrXMS5IppQVbR7yPYVzdMScLwKY6faGVcAHJ6V7daZPvKqhyKDktCxiIxN1yP1rtJHjPOMUQdOnMmGVq+urWWBR6cr3FXyRMPYmjl6+lveiYg0bbT39uhoGMZH2o+1kDRhJO3Q+1WgWSlMgY61b\\/p1rjadqYtZjiCchcn+luxqlXLvDtbqvv7URby71EkZwwOfg1GT2fpWGUOoIPFdhFkJZmxzxVW8E6r\\/ADTSIZCw8xBtcd80xv5We4IRsKg2jmrBzDjV5d0qg9KBEjxnMbkV3qDb5yR2OKHHSkBhSai6keauR7ipnv4TGW3Yx70rkbAPvSLxRfmy0qVwfU3pX5NTCym+M9UfVdalAfdBCSiY6fNVKaRpbjapwopiHEUW+Q8vk1HpNkbqZmA6mmaooiWvCCCxluHAjBP6VZ9G8K3FwVMi7R9xVs8KaJHDHvkUE9sirfDbquAoArLZ5D9I11+PvbK3pPhqK3UbgpYfamY0KBny6gn3p7FCM0QkAPWsrsbZqjVFIrEnhu1Z92zn4pRrPhyDyHCqOlaLHbr3HFB6lZK6EAdaJTaKdcX9H5+vtPNrM6HgA8fFChMbgf0NaB4z0loD5u3jGKomSAy9z0rfTPkjnXV8HgKX3RsjnIxXGmSGO48pzw3Gf2qF2KSkdq+PDAjqORThWGkfTrVTYarJbuSEnU7f\\/cdK0VPy8nJrFrSYoYriM4ZSrg1s2nQzXVlDPFtdHUHINRFSIJWz6vck\\/wC9QtJik0vi3SGICTnhcfkNL5\\/FenuWWJnYgE\\/l9qTjCH886L+ZgPk1RPHt8Jbi3tY2BVRvbHuelVnUdWuLm6aRpW9RzjPQe1DrI0knmOSSO5q1Es71HlkH9IGKsXg6FWUEjvSAlJYizH1KO9WfwSAyiguf6jKvkaVpkY2KR\\/inEKg0q08bQADTiGue0dKIRHGOwomOOo46KjFRIM7jjGOlQXkQ2jHWjUHFQ3KnFE10UVHX7Fby0kjI5I4+aw7WLZ7O7ljYFSrcV+hbpfUeKzn6haJ5sRvYVG5fz49qbRPi8EX18lpk87eYxbHNco2VGe3X4qSdSjkGoD6SG7Hg10Ec5rCx6WQ9myk5IOP0rS\\/B+t+VocUTvgxsV5rKtEkP4i\\/BptHcPBuRHIG7NQFrSovEAcrkfBo6xL\\/wtwSxPRRmp3teCa8XatlEFGWLsxH7VC8F7580g0QPTHUexjJlhXk787RQlnLyEIQO+avfgMZCD7Vnc74Bx1NX7wK0vkxeQMysMDPak3fEdT8jWLNAAOKYx4GKqn8FrbIClxGO\\/WvRca5aN+KvnIOpxmsnHfs3Kee0XWLmjI+KrumaibhASCj45Bp1BJvXrzVZg1PQ0TKgyxpfq\\/iKwso9jYeUjhF5JqHUC3llUOCe9V9NPtbR2uro+ZIffnNWmgZb9Ey6rdakT\\/B6e4T+5jih7\\/SL24iYNLGu4flzSW\\/+o9vZzvBbWbuIztLdB+lH23iWSS4igvbd7d5VDx5OVZTyCDTHGSW4JUot5plXinRptLv2t51wreqNh0+KrWMgqa2X6gWS6hpXnquZYDu++O9ZHfxeW4kUeh\\/3rRTPkjNfXxZLorFZ2GM4A\\/enLgs2cUl0n\\/umP\\/iP3p0cnH2p5mBpHHlP8UFCoKxZPc1I7fhP8VDGoIjweeaEskulEaEilLtyST1o6\\/fJ254ApPcyccVCzm5lIdSvatQ+nY224k\\/tQmspl5rUfpzMGtYyMkYKkUm\\/4j\\/H7kXG616ZL2Oysl3TsccnAHzSH\\/XOoid1mig2xsVZDkMeccVZotKh8\\/zfLXce+OaKg0WxV9\\/8PEXPJJUEms0ZQS9GuVdj9M5NwwVZFASbYJMA9QRmrBot2JkViaUy2cSjKouffHSu9Kk8hWXoM8UDf2g4proa30uWbFKZ2lFyH8tZFXpubii5JN0hrtEU9qFPHobjvTKKPBQnvJ5XuJEhlYsY1PHJzg+9WJNKiiRA2ZDGoVS5zgAYFOWGOgqJwe9Mdkpeyo0Rj2kLJohsZCoKkYIrJPGGlSabcSIq5tpDvjPsfatimFVbxzbpL4cvHKgtGm5T7GiplkgfIrTgZZo\\/Lse\\/Ap6QeuetIdIyFLZ6nNPA\\/sOtdA5Amd\\/wyB7VAjncK8kchcL1NdsgQA9M0AQNeScn78UvnBIFMJoi8o\\/zUdzbsgUEVCAB4YfFaD9Ln\\/CuU\\/skBH6j\\/wCVQJsZXHbir79OmWJJFx6yfUf2pd\\/wHeP80a9Y+tAaYpHSzSj+GvNO4sECsB2EtQFdIRH04FL429RIo\\/Xbkx26RwjDSMEJ9h3pdbrlgoP+ajQKWSCkPNG2xQqQWwa5e1EKqWdTn2r4IjDABB96oJ+wpYQ54NSSWYEJJ7UvEskB5yV9xUv8w3rtJq0WmA3KYY1WvGy7fCmpnv5X\\/NWqQ7zkVWfHxEfha8B\\/r2oP1IplfyQjyJLgzI9Pi226nvxTHBbvihrRM7F+TRKjjr0ronFFB2Rqeufeh5HyPTnNTyKNhdug4H3qNclSduKWMwNJgjjR92WKgEe1L9Quke39GS7MQPsKDuZXwKjUZxz0HFFpWETKen3qyeELs21\\/EHOA52mk8cW4ZNdruiYMvbv7UMlyWBRePTf9Jm\\/DGTzTjz9o9yao\\/gvV49RsY3yBKuFkX2PvVzEIlj3K3bt2rBJcX2dWFnKPRFNKWzu5qFIVaQMCVYdwaU6xNd2QYqVcduK40R9S1e1imtGjYMSpjDAMpHYijjW5dkcl\\/TwtUZyAHYHFSySLGuWO354pfZeH\\/EFx5Uip5aucKxb96dXHhcW0Ek\\/iHUAEiK5C8Ar89aP8JJW1x\\/rRRNqFtHktMgx981Assd7E8kGRtzh8YyaWa61tean\\/AAelQiKxSQ7SDkycAZJPOKsKwLHbLEi4CjAoJxUC+\\/b6IrQl4UZ+pFUb6o34KW2nxn1M3mN9vardqd\\/Do2mNPcsAsaf5PtWPXt7Lqt\\/Jdz\\/mkPA\\/tHYUfjw18jJ5VmLie2yBUYk9FyBXEb53fNSuwVZwMDjH7UFEfSSO5raYDiGNJIMlc4qXTI0e7RGAw2VGenI4oCDeAFUnLZ4ptp1o5ELj8wbt1yDWdvB+aJtYhQrHsXayjaw+9LFhYDirV4mtlj1WdFG0bydp7UkvcJEqgerimiiCMFG2kg55wDXwcJIVboKgXlwR1BzUt229VfHJ4NWQN0fU7nTLg3Vo3T8yHow9q1rwn4wttRiwMpKvDxt\\/xWN2vqgen3haPOoGNThnXj5FKtgmtGVTcXiNf1VVuoC8RBVhVXtJZtPusxyPbyhs5Xox9\\/vXVjfzWEgjuQ3lng5qxLbW96g3hWB5BpEJcTfCe9MNtfFetR2sUUUkB287yKFu7iXVpnn1e8kkkVcIiDgnsAP1qW30a3Tpux7bjTa0soYSGRFz745o3ajRH8cO4xxi7RtMMT+dKMOfyj2FMr65is7d5ZnVEUZLHjFGOVjUk8DrWNfVDxI13ObG1kIgX8+P6jSlF2SEXW8e2JvF3iOTxBqOyJitlG3oH933NBRSiPYF+aV24CYz1xUyyZbGevArdFKKxHLm3J6w+SXIYfb\\/AJFd2ke+HP3oAv8AnwaNsXxbijXbAYRYWsSyTQ3QKT5Iwexpr4ZeP+YQQ3LbWEuST0xmm+t2ME2qyl05K5yOOaj8I2NtfXV3DdxLKiIxXd1B+axRfI2S\\/VMq\\/wBQLlW16aWFgysc8Gqpc3JdtzH25p\\/48sotPu447cvtZdxDNnmqmxyhzzxWlGUlilIf\\/bNGyjzImUdxkUsQnANMLdj6QeRVkOrNyEBHGRz8irDoWY7yGZeCjjJ+1V2MbenvVo0pQLEv\\/VuHP60E30HBdmrXdpHeaMzFAW25BxzQukI0MIVGyvse1N9PONKQdttKYz5cpVelYtNy\\/wBHdvcgDD5U\\/ejVulA4NJYnYkAnivdUuHis2dMAgVNC5tCjxz4oGn2rQxt+LIMAZ6fesalla5uGkc5yck1zreoXF5qc73D7mLkfArhTsBx2FbK4cUYbLHJ9nTvtB981zHL6gRQysWgJJ5ya8QkdKYKGCPkGi4ZMRgA0ujJ5+KmVjjrRIprT\\/9k=\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/636717113_1180060870875062_1256163359642073115_n.enc?ccb=11-4&oh=01_Q5Aa3wFW7eSIkqLFZwdSMp3JQBuziRMamEovofb5nI_YR7udAw&oe=69B73F92&_nc_sid=5e03e0\",\"thumbnailSha256\":\"W9kapuCuoF2Q1VbkV6dLjJVGP4Zl+gcZIYs65\\/pT\\/VQ=\",\"thumbnailEncSha256\":\"EZePBMlwNqgy2S2DWDS0ACdylIV1yY++nApfkZof2oE=\",\"mediaKey\":\"LQrhJVUU5GUbrkv8p55vE4LLCdWBZHz1NQ\\/EQ3a00NE=\",\"mediaKeyTimestamp\":\"1771032214\",\"thumbnailHeight\":639,\"thumbnailWidth\":640,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wjk1poG13EBJ2NRMgO8EQVvHOTtPnWhGOy09BiRiNZg=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:19:54'),
(16933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:55'),
(16934, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"pushName\":\"Carol Schultz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:55'),
(16935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:55'),
(16936, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:55'),
(16937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:55'),
(16938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACBECC765C4821C961F2BB9B85F3CBC7\"},\"pushName\":\"Carol Schultz\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"title\":\"Dr. Elifas Rodrigues no Instagram: \\\"A Tizerpatida não é só sobre emagrecer. É sobre como seu corpo passa a responder melhor à fome, à saciedade e à energia. Seu corpo muda por dentro antes de mudar por fora. ✅ Este conteúdo tem caráter exclusivamente informativo e educativo. Ele não substitui uma consulta médica nem serve como indicação de diagnóstico ou tratamento. Para avaliação individual, procure um médico de sua confiança.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAABAAIDAQEBAAAAAAAAAAAAAAYHBAUIAwEC\\/8QAPBAAAQMEAQMDAgQEBAMJAAAAAQIDBAAFBhEhBxIxE0FRImEUcYGRCDJSoRUjQtEWM3I3Q3WSsbPB4fD\\/xAAaAQEAAwEBAQAAAAAAAAAAAAAAAQIDBQQG\\/8QAIxEAAwABBAICAwEAAAAAAAAAAAECEQMEITESQVGhExQiYf\\/aAAwDAQACEQMRAD8A6dpSlUApSlAKUpQClKUApSlAKUpQClKUApSlAKUpQClQSPJcjxbvHfv8RTa2nUtpU4QYqiFLA3rZASock+E+PasJVjvDDzfffYyGx6RUhTpPcdhI\\/wBI8qHj9KYBZFKr+bFvMyxpjyshhJlLeadbeb2kBBChrgc7IOvHg815T2r76sVb2TQUISS8gAFJAUn00nej3DuJ8++vPswCxaVBW7fmX495pq4MtxU6U28spUF7UCR29u\\/BI3xz+hrfY9DvcZwm8z2ZSS0BpCdfX3EkjgcaI4+3n3IG8pSlAKUpQClKUApSlAKUpQClKUBBHbeh8SlO406tx5HcrucKu5fYRyd8+AN+ea20Jr\\/EZCG7jZ3mdaWl1SjpJSruTzve9kmpLSgNeqzwlAbaVwEj+c\\/6SSPf2KiaGywCppRYCi0AEkknwQR+fIFbClAKUpQClKUApSlAKUpQClKUApSlAKUpQClVdbiYmK5PMgZfJvS24DhSS7v0FBCiFA74P+1YmHwbzleCQpZyO4xH2nHu9aHCS4N8bO\\/avP8Any0kuezzrXy0kucZ9FuUqkelkS+5Oy\\/Ok5Pc0JiSg2WvUKg4AAeeayGZuQ9QssukW23Z+1Wi3K7CWFFKlHZA2RySe0\\/biqrc5lNT30VW5zKfj30XNSqjxi733GOoLeL32eu5RZSAth507WN70dnnyCNH4qf5bZZl7iMtQbvKta219ynI50VDWtGtI1fOW0uV6NI1fOW0uV6N7SqJwCHf8nuF2Ydyq6siA72Ah0nv5I55+1SO03K5TOsORWpVwkphpjKDTfee1tRQ39QHsdkmqTuPJJ47eCk7nySeO3gtOlUJnTF8x2dAttvyy7T7rLWAlgOEaB4G+fc1ndR5t5sjuK292+yoqlshMuQh0jZ7htR+dVV7rGcz0Ve68c5nou2lVji6EIVcpEPNpF6WzDcV6Bd7gjjhfn2NV\\/ZrleZWGzr47mUqPLivFDcVx\\/Zd0EkaBOzvuI8e1TW58ccfa9E1uvHHHz7Xo6OpVF5Zll7k9OcYuSZj8OZJfW264yoo7wkqSCdfOt16\\/wCLXXGc1scOLkzl9jzlpQ80tYcKAVAexOvO\\/wBKj9uc9ccfZD3c5644+y76VRPVfKb0rKpcbH5kpmNa2UqkegspGyRsnXn+YD96nr7MvNcYtNztt6l2slorcEY671a0QfyINXncKqqZXKLzuFVVMrlE5pVIdMYd+ycSpUjKLo2mHJDfp+oVBwDR55qIZtlmQRcuu7Ea8z2mW5K0oQh5QCRvwBWVbxTCtzwzOt4phW54ZZsF83DFMoiQcPmWRa4DoSFMkF9RQoBKR2jZ\\/wB62vSKBLgdP0Rp0V+NI73T6TqChXPjg81N5UhmJGdkSnUMsNJK1uLOkpSPJJ9hXlbbhDucVMm3SWZUdRIDjKwtJP5it50cUqb6WDWdHxpU30sFfdC7ZOttlurdxhyIi1yypKX2ygqHaORv2rRNxb\\/05yy6SoFofutnuKu\\/\\/IBJSdkjegdEdx8jR3Vtxbtb5U+RBjTY7syP\\/wA5lDgK2\\/8AqHkVj3vIrLYgk3m6wYHd\\/L+IeSjf7mq\\/rpTMp8rpkfrpTMp8rplb4var5lfUFvKb3b3LbDioCI7ToIUdb0ADz5UTvXvVu1hWq62+7xhItU2PMYP\\/AHjDgWP3FZtX09P8a+cmmlprTT5zkq7o5a59vu+TLnwpMZD0jubU80pAWO5XI2Oa8rTAuMPrFkd0NulKimKotOekoIcUEN6SlWtEkgirAveS2SxFIvN2gwCrwJD6Ub\\/c1lWu6QLtGEi1zI8xg+HGHAtP7iqLbpTM56eTNbdKZnPTyUVjM6+wMpmZBecRvFwuL2\\/SIZWlLIPHAKT7cVtuqDNzvc7GLojHrg8hLfqPxEsqWUfVvsVocHXyKt273e22aN692nRoTH9b7gQP3NeNkyCz3xClWa6QpyU+THeSvX7GqLa\\/w4dcMotr\\/Dh1wQXGZqJJuUaJhEyyKdhuj11slIXxwj+Uck1XcPAJz\\/TyRO\\/wqW3e484kNLZUFus9iOAk+Rsk+Pmr+u2QWezvIautzhw3Vp7kofeSgkeNgE1+7VfLVdu4Wu4xJZT5DDqV6\\/Y1NbVWv6ZNbVWkqfyVP1Eh3G\\/4NjH4ayzUPIc7XoqIygWtJKT9OuBxx9jU7gYfYMZZdudttHdMZaUtASFOLJA8JHPJ8VtbhlNhtsxyLcLzb40lvXe06+lKk7GxsE\\/BBrOttzg3Rn1bbMjymv6mXAsf2q86CVOnyy86EqnT5fBSmIYDfr3DutwuM6TaX7g4tD7LkfSnUnk7CuQNmpT0cYutstd1st1hSmRGdUWHHGlJQ4DsHtJGjyN\\/rU8vN8tVkZDt4uMSC0fCpDqUA\\/uaWa+Wq9sl2z3GJObHlUd1KwP2NVjbTptUn19ldPbTptUnyvsgnQ+2zrbb7ym4w5EVTkvuQHmygqGhyN+RVU5xjF+k5fd3o9luTrLklakLRGWpKhvyCBXUVKre0m4UZ6K3tFemtPPRD+sX\\/ZTl3\\/hcj\\/21Vzn\\/AA65TOwKVaYt\\/VrGMkBMWQT9LD4V26PxvWj+YPzXR\\/Vtpx\\/pflbTDa3HV2yQlKEJJUols6AA8mqywXAG8x\\/hyt9iujDkWckOORnHEFK2HgslKtHnXsfkE17Ees1WBXBNr679WbgR3JjRVva+e0pNePRDALd1Its3Ns7C7rMnyXEstOLPptISdeB99\\/kAK1v8OOP3pWd5pEyyLKQ8\\/AMV551sgOHuCeFa0eBWdguSXvoh+OxjJ8fuVwswfU9BnQW\\/U+knkH20fPyDv9APuTWNno11dxWbirjrFkvrpjSYJWVICgUgkb9vrBHwQfmuh8juQs+PXO5FPf8Ag4zj\\/b89qSdf2qgYyL71n6nWK8P2aXaMSsSi60Zae1x5ewSdfJKU+NgAeea6Eu8Bq6WqZb5G\\/RlMrYXrzpSSD\\/61DBzn0L6fW3qLap+aZ2ld2nTpTiW0OrPY2lJ54H3JAHsBU8w7pK9hHUV274xc0x8bkNlMi1udyj3aPKT44Ojz9xVfYBlF46INz8Xy2w3CXakyFPQ58JvvSQr52QNHQPnYO6yZnWu\\/zMiVJtfox7SEgNwn2krKuOStQ5B+wPt71W9RR2aaelWo8SeWE2CP1l6l5TectU7JtNqkmJDg95CBokbOvsN\\/cn7V862YRB6WItOb4J32x+PMQxJjoWS24hQJ3o\\/9OiPB39qi\\/TnP3On+XXuYqA5NtV3eL70aKP8AMZcKiQUAn6hzrX5fHMnzW9XvrpMtePY\\/YbhbcfZkpkzZs5vs3oEAAfABPGySdeNVM0qWURcVDxRjdcXbRd+sPTx\\/IfRRZ5UBtyQHldqAhS1E7PxzWFeomLW7rFhY6RPIXKcdP49EJwraDe0637eO\\/f5CpR1YxtMzrp08iLtrky0MxUMO9zJW2EhahpR1rxrzXnaLK70u\\/iFUmBbXFY1kDX0LZYKkxlE+NgfTpQ\\/8qhVihob9FxWX\\/FFlLecKhi2CMyU\\/i19qO\\/0Gtc\\/Pmsvp6LPB\\/iKVH6bPFzGlQSqcGVlbCV6Pg+P6f1JraN4lFv8A\\/FJlH+P2UTbUqI0pCpLBU0VBhocEjW\\/NXrYMcsuPMLZsdrhwGl\\/zJjtBHd+eqA546TY5D6zZDf8AMMz9SZFbkliFBUshttHkcD4Gh+ezTq5i8bo9f8ey\\/CO+Cy5KEeXCCyW3ARvWj7EBQ+3BFe2Pybx0Hye9QJdjn3TEbg+ZEWRCR3qa+AR+XB8eN1+cklXrrxktkt9vsk+1YpAfEiTKmo7FOH30PnWwAN+dmgLbGXZE51OiWNnG3F42\\/G9Y3XZ0klBUPt50nXnnf2qfVBl5u\\/H6nRsORj04xFR\\/UFzH\\/JTpJOvHjjW9+T4qc1AHmgAHjilKAaG96G6+KSlY0tIUPgjdfaUAAAGgAB8ClKjfUTIBjOIT7kkj1kI7Gd\\/1q4H+\\/wClQ3hZJSbeEQbrRnFtRa7hjbCPxMp5BbeWlWksfr7n7VzS+ERUj0HnSpPuE7FZb0p6Y4S8sqKiVrUTsqJ5JNTO3dOpN0isvOTlRWlAH00o8fnzzXO1dZZzR2dHb+M4gryyXt213uFcS0h8xn0PdiuAvtUDon9K7N6d5lb8ytH4mCj0H29etHVrbZPj8wfmuS82xMY1cmmO9Tsd5G23lDW1e4NSnodkarLnFsjOKKW5avwax7KCv5f2UE\\/3rXR1VxjpmG40W0\\/LtHW2hvehuhAPkA0pXtOYNDe9DdKUoD4pIUNKAI+DRKQkaSAB8AV9pQDQ3vXNKUoBSq2Xe81ivyUJtIdHa+6juQtWyEKKUJIGtdwSBsgndbq33bIjkMiFKt6VxG4qnEvpaUhKnR26SCeCD3K99\\/TQEvpWhw6fdLjbVu3mIYzwXpILZbJGhv6Tzwdjfvrdb6gFc8\\/xFZWia\\/GsMQgtsq9Z1QPk+APy8\\/2PgiugJylJhSFNntWG1FJ+DquH8juhkXeXMfBU466T58DwAPyA1WGvTSwvZ6trCdeT9GTYYLkiWjtMdISoKUZDnpo+dE1e1hfkPQE\\/i4rcZSfpSG3Q4lY\\/qBqOYzYbFdMYKER2X23m1I9XQK09wGyD7GpNa7dFtNvjQoafTZZSAAT548\\/nXG1rm1\\/p24ipePRE87bfuyXLdMi25iJ3D0n5MsIWo\\/KRrj45qr5EWXi9\\/YMlO1xXG3UugbSDvY2fnirzm45a515j3OVFQ8+02tvtWO5CwoaPcD54PFQHq7MjRYSbfHLYcdW2kNI19CE++vbwBWmlqJNTJS4bVOjpyxXFF1tMaagAB1AUR8H3FZ9QvpIy7Gw+My8sqKEoI37AtpVr+9TSu1Lysnz9LDaQpSlWKio01nFgckxmBNSlx+RIjJCx2hK2EqU53E+AAhXJrfPTIzLhbekNNrCSspUsAhI8n8vvUPkYhiEgqLnoeo76ryliQO5YWh1Kj58drzn9vigNm9m2Psy2WXLnGCHtdkj1E+idhRH171\\/oVWVJyzHYz62ZN+tTLyD2qQ5MbSpJ+CCajbVnxFm5NRTJWJS2llKlKKUuAp7VEK0Ek6fHg+\\/2NaW72zBhKCJtwuLK0DSWwHAEDZOh9HjZJ\\/WgNrFy6\\/lMVC7SXe51DZdEd1Id2UBQAI+kp7lEqVwe0+OdY8LKsjiMxhJtj8lbi1JVtlRV\\/KNeNADZ5PJ48e4sulAV9\\/xVkrKFGTaGdKQpQW206Q1pxlJKh5I7XVK0Of8ALV+k0ssp+baosmXHMd91AUto72k\\/rWbSgPOS0H4zrROg4gp3+Y1XG3WCysW3LZTUNaT3gPLaHllZ33I\\/cEj7EV2POdUxCkPIAKm21LG\\/GwN1w9k1ylXS6T7hNc9SU84pa1ff\\/b2rz674R69ostkk6M5Gzbpr9qmOBtuUQppSjoBY41+v\\/wAVcRXFbKk3MXNQ3tC4iELBHwQfBrlaR9L5KePB4+a6NtNykNxG2yUrCUDRXyfFcvcJRSvHZ2dq205fo2k25R7ZCk3CY46xCQnaEvkd+vvr3PwK5ymzzd8hlz3Rr1nC52\\/A3wKsHrK+4\\/ZrW44o\\/W8vaR44A9qq2ESHuP8A9z\\/91ptpXi7+TPc0\\/Px+DuzDEAY3BdHb\\/nNJc4OwNpGhv7DQrd1XHQOa\\/LwBhEhfeI7haQT5CdA6\\/vVj11peUmcLUWKaFKVrmZzq72\\/DKUekhsKBAO91LeChqckwu35BOMqW4+hZZ9EhsgAjewT86Pt4rUqw7HUMSWVPK7oiFKeOh3JCmnUEka8EOrOvmp7VfixMrvWVurkyiZcZbKk9ydJBT\\/p488++6kH1WA2RaUqNwdJSgtKKloO0rCARyOCQgffzXpKwGxLWkuy3UnXALo8bNai74tC\\/D97bshtwuIUVpKdk97g3ynz9Z5+wqMZbhUW5XMevc7mkRklhsNrbGkhalc\\/RydqPNSD\\/2Q==\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tEBUGv1Q73Z2rSsxHR5JEVHvxNFk1uDokemu43Pfa4A=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771085992,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:19:56'),
(16939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:56'),
(16940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:56'),
(16941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:19:56'),
(16942, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:52.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:56'),
(16943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:57'),
(16944, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:19:53.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:19:57'),
(16945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A530CF89A47DC5E6B6A9A35971D57AA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086010952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:10.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:11'),
(16946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A530CF89A47DC5E6B6A9A35971D57AA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086010952,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:10.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:11'),
(16947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A527942C72E7164927FA8771038B50A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086011656,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:11.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:11'),
(16948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A527942C72E7164927FA8771038B50A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086011656,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:11.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:12'),
(16949, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:13'),
(16950, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5BE43A037A357777E2D3F4BC8BE5E3F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"title\":\"Iasmin T. - EMAGRECIMENTO SEM TERRORISMO no Instagram: \\\"✨ Guia do Monjauro: o que você precisa saber! Se você começou o tratamento com Monjauro, este carrossel é pra você 💚 Separei dicas práticas para aliviar sintomas, ajustar a alimentação e tornar essa fase muito mais tranquila e segura 👉 Passe para o lado para descobrir: • Como lidar com náuseas e desconfortos • Estratégias alimentares que fazem diferença • O que evitar e o que priorizar no dia a dia • E hábitos simples que ajudam MUITO no processo Lembre-se: cada corpo responde de um jeito e um acompanhamento nutricional + médico faz toda a diferença 🩺✨ #emagrecimento #monjauro #tizerpatida #deficitcalorico #nutri #dicadanutri\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAAAAgMBAQEBAAAAAAAAAAAABAUDBgcCAQAI\\/8QANhAAAgEDAwIFAgQFAwUAAAAAAQIDAAQRBRIhMUEGEyJRcQdhIzKBsRQVQlKRFqHBMzRicuH\\/xAAZAQACAwEAAAAAAAAAAAAAAAACAwABBAX\\/xAAiEQACAwACAgIDAQAAAAAAAAAAAQIDERIhBDEyQRMiQlH\\/2gAMAwEAAhEDEQA\\/ANGtZQL0H2U1zdzliQDQrsbacmZ154Bz1rwkMcg0hsM5Jya8cYGRXhFcknoaEhGzY3fFZj9R9f3SHTrR84\\/6rA9D7Vb\\/ABjrC6TpjyAjzW9KD3NYncStI7yOSWY5J96OK0gNL6VP370N1OK7ncnrXMS5IppQVbR7yPYVzdMScLwKY6faGVcAHJ6V7daZPvKqhyKDktCxiIxN1yP1rtJHjPOMUQdOnMmGVq+urWWBR6cr3FXyRMPYmjl6+lveiYg0bbT39uhoGMZH2o+1kDRhJO3Q+1WgWSlMgY61b\\/p1rjadqYtZjiCchcn+luxqlXLvDtbqvv7URby71EkZwwOfg1GT2fpWGUOoIPFdhFkJZmxzxVW8E6r\\/ADTSIZCw8xBtcd80xv5We4IRsKg2jmrBzDjV5d0qg9KBEjxnMbkV3qDb5yR2OKHHSkBhSai6keauR7ipnv4TGW3Yx70rkbAPvSLxRfmy0qVwfU3pX5NTCym+M9UfVdalAfdBCSiY6fNVKaRpbjapwopiHEUW+Q8vk1HpNkbqZmA6mmaooiWvCCCxluHAjBP6VZ9G8K3FwVMi7R9xVs8KaJHDHvkUE9sirfDbquAoArLZ5D9I11+PvbK3pPhqK3UbgpYfamY0KBny6gn3p7FCM0QkAPWsrsbZqjVFIrEnhu1Z92zn4pRrPhyDyHCqOlaLHbr3HFB6lZK6EAdaJTaKdcX9H5+vtPNrM6HgA8fFChMbgf0NaB4z0loD5u3jGKomSAy9z0rfTPkjnXV8HgKX3RsjnIxXGmSGO48pzw3Gf2qF2KSkdq+PDAjqORThWGkfTrVTYarJbuSEnU7f\\/cdK0VPy8nJrFrSYoYriM4ZSrg1s2nQzXVlDPFtdHUHINRFSIJWz6vck\\/wC9QtJik0vi3SGICTnhcfkNL5\\/FenuWWJnYgE\\/l9qTjCH886L+ZgPk1RPHt8Jbi3tY2BVRvbHuelVnUdWuLm6aRpW9RzjPQe1DrI0knmOSSO5q1Es71HlkH9IGKsXg6FWUEjvSAlJYizH1KO9WfwSAyiguf6jKvkaVpkY2KR\\/inEKg0q08bQADTiGue0dKIRHGOwomOOo46KjFRIM7jjGOlQXkQ2jHWjUHFQ3KnFE10UVHX7Fby0kjI5I4+aw7WLZ7O7ljYFSrcV+hbpfUeKzn6haJ5sRvYVG5fz49qbRPi8EX18lpk87eYxbHNco2VGe3X4qSdSjkGoD6SG7Hg10Ec5rCx6WQ9myk5IOP0rS\\/B+t+VocUTvgxsV5rKtEkP4i\\/BptHcPBuRHIG7NQFrSovEAcrkfBo6xL\\/wtwSxPRRmp3teCa8XatlEFGWLsxH7VC8F7580g0QPTHUexjJlhXk787RQlnLyEIQO+avfgMZCD7Vnc74Bx1NX7wK0vkxeQMysMDPak3fEdT8jWLNAAOKYx4GKqn8FrbIClxGO\\/WvRca5aN+KvnIOpxmsnHfs3Kee0XWLmjI+KrumaibhASCj45Bp1BJvXrzVZg1PQ0TKgyxpfq\\/iKwso9jYeUjhF5JqHUC3llUOCe9V9NPtbR2uro+ZIffnNWmgZb9Ey6rdakT\\/B6e4T+5jih7\\/SL24iYNLGu4flzSW\\/+o9vZzvBbWbuIztLdB+lH23iWSS4igvbd7d5VDx5OVZTyCDTHGSW4JUot5plXinRptLv2t51wreqNh0+KrWMgqa2X6gWS6hpXnquZYDu++O9ZHfxeW4kUeh\\/3rRTPkjNfXxZLorFZ2GM4A\\/enLgs2cUl0n\\/umP\\/iP3p0cnH2p5mBpHHlP8UFCoKxZPc1I7fhP8VDGoIjweeaEskulEaEilLtyST1o6\\/fJ254ApPcyccVCzm5lIdSvatQ+nY224k\\/tQmspl5rUfpzMGtYyMkYKkUm\\/4j\\/H7kXG616ZL2Oysl3TsccnAHzSH\\/XOoid1mig2xsVZDkMeccVZotKh8\\/zfLXce+OaKg0WxV9\\/8PEXPJJUEms0ZQS9GuVdj9M5NwwVZFASbYJMA9QRmrBot2JkViaUy2cSjKouffHSu9Kk8hWXoM8UDf2g4proa30uWbFKZ2lFyH8tZFXpubii5JN0hrtEU9qFPHobjvTKKPBQnvJ5XuJEhlYsY1PHJzg+9WJNKiiRA2ZDGoVS5zgAYFOWGOgqJwe9Mdkpeyo0Rj2kLJohsZCoKkYIrJPGGlSabcSIq5tpDvjPsfatimFVbxzbpL4cvHKgtGm5T7GiplkgfIrTgZZo\\/Lse\\/Ap6QeuetIdIyFLZ6nNPA\\/sOtdA5Amd\\/wyB7VAjncK8kchcL1NdsgQA9M0AQNeScn78UvnBIFMJoi8o\\/zUdzbsgUEVCAB4YfFaD9Ln\\/CuU\\/skBH6j\\/wCVQJsZXHbir79OmWJJFx6yfUf2pd\\/wHeP80a9Y+tAaYpHSzSj+GvNO4sECsB2EtQFdIRH04FL429RIo\\/Xbkx26RwjDSMEJ9h3pdbrlgoP+ajQKWSCkPNG2xQqQWwa5e1EKqWdTn2r4IjDABB96oJ+wpYQ54NSSWYEJJ7UvEskB5yV9xUv8w3rtJq0WmA3KYY1WvGy7fCmpnv5X\\/NWqQ7zkVWfHxEfha8B\\/r2oP1IplfyQjyJLgzI9Pi226nvxTHBbvihrRM7F+TRKjjr0ronFFB2Rqeufeh5HyPTnNTyKNhdug4H3qNclSduKWMwNJgjjR92WKgEe1L9Quke39GS7MQPsKDuZXwKjUZxz0HFFpWETKen3qyeELs21\\/EHOA52mk8cW4ZNdruiYMvbv7UMlyWBRePTf9Jm\\/DGTzTjz9o9yao\\/gvV49RsY3yBKuFkX2PvVzEIlj3K3bt2rBJcX2dWFnKPRFNKWzu5qFIVaQMCVYdwaU6xNd2QYqVcduK40R9S1e1imtGjYMSpjDAMpHYijjW5dkcl\\/TwtUZyAHYHFSySLGuWO354pfZeH\\/EFx5Uip5aucKxb96dXHhcW0Ek\\/iHUAEiK5C8Ar89aP8JJW1x\\/rRRNqFtHktMgx981Assd7E8kGRtzh8YyaWa61tean\\/AAelQiKxSQ7SDkycAZJPOKsKwLHbLEi4CjAoJxUC+\\/b6IrQl4UZ+pFUb6o34KW2nxn1M3mN9vardqd\\/Do2mNPcsAsaf5PtWPXt7Lqt\\/Jdz\\/mkPA\\/tHYUfjw18jJ5VmLie2yBUYk9FyBXEb53fNSuwVZwMDjH7UFEfSSO5raYDiGNJIMlc4qXTI0e7RGAw2VGenI4oCDeAFUnLZ4ptp1o5ELj8wbt1yDWdvB+aJtYhQrHsXayjaw+9LFhYDirV4mtlj1WdFG0bydp7UkvcJEqgerimiiCMFG2kg55wDXwcJIVboKgXlwR1BzUt229VfHJ4NWQN0fU7nTLg3Vo3T8yHow9q1rwn4wttRiwMpKvDxt\\/xWN2vqgen3haPOoGNThnXj5FKtgmtGVTcXiNf1VVuoC8RBVhVXtJZtPusxyPbyhs5Xox9\\/vXVjfzWEgjuQ3lng5qxLbW96g3hWB5BpEJcTfCe9MNtfFetR2sUUUkB287yKFu7iXVpnn1e8kkkVcIiDgnsAP1qW30a3Tpux7bjTa0soYSGRFz745o3ajRH8cO4xxi7RtMMT+dKMOfyj2FMr65is7d5ZnVEUZLHjFGOVjUk8DrWNfVDxI13ObG1kIgX8+P6jSlF2SEXW8e2JvF3iOTxBqOyJitlG3oH933NBRSiPYF+aV24CYz1xUyyZbGevArdFKKxHLm3J6w+SXIYfb\\/AJFd2ke+HP3oAv8AnwaNsXxbijXbAYRYWsSyTQ3QKT5Iwexpr4ZeP+YQQ3LbWEuST0xmm+t2ME2qyl05K5yOOaj8I2NtfXV3DdxLKiIxXd1B+axRfI2S\\/VMq\\/wBQLlW16aWFgysc8Gqpc3JdtzH25p\\/48sotPu447cvtZdxDNnmqmxyhzzxWlGUlilIf\\/bNGyjzImUdxkUsQnANMLdj6QeRVkOrNyEBHGRz8irDoWY7yGZeCjjJ+1V2MbenvVo0pQLEv\\/VuHP60E30HBdmrXdpHeaMzFAW25BxzQukI0MIVGyvse1N9PONKQdttKYz5cpVelYtNy\\/wBHdvcgDD5U\\/ejVulA4NJYnYkAnivdUuHis2dMAgVNC5tCjxz4oGn2rQxt+LIMAZ6fesalla5uGkc5yck1zreoXF5qc73D7mLkfArhTsBx2FbK4cUYbLHJ9nTvtB981zHL6gRQysWgJJ5ya8QkdKYKGCPkGi4ZMRgA0ujJ5+KmVjjrRIprT\\/9k=\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/636717113_1180060870875062_1256163359642073115_n.enc?ccb=11-4&oh=01_Q5Aa3wFW7eSIkqLFZwdSMp3JQBuziRMamEovofb5nI_YR7udAw&oe=69B73F92&_nc_sid=5e03e0\",\"thumbnailSha256\":\"W9kapuCuoF2Q1VbkV6dLjJVGP4Zl+gcZIYs65\\/pT\\/VQ=\",\"thumbnailEncSha256\":\"EZePBMlwNqgy2S2DWDS0ACdylIV1yY++nApfkZof2oE=\",\"mediaKey\":\"LQrhJVUU5GUbrkv8p55vE4LLCdWBZHz1NQ\\/EQ3a00NE=\",\"mediaKeyTimestamp\":\"1771032214\",\"thumbnailHeight\":639,\"thumbnailWidth\":640,\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:13'),
(16951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:13'),
(16952, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:13'),
(16953, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:13'),
(16954, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A530CF89A47DC5E6B6A9A35971D57AA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"title\":\"Dr. Elifas Rodrigues no Instagram: \\\"A Tizerpatida não é só sobre emagrecer. É sobre como seu corpo passa a responder melhor à fome, à saciedade e à energia. Seu corpo muda por dentro antes de mudar por fora. ✅ Este conteúdo tem caráter exclusivamente informativo e educativo. Ele não substitui uma consulta médica nem serve como indicação de diagnóstico ou tratamento. Para avaliação individual, procure um médico de sua confiança.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAABAAIDAQEBAAAAAAAAAAAAAAYHBAUIAwEC\\/8QAPBAAAQMEAQMDAgQEBAMJAAAAAQIDBAAFBhEhBxIxE0FRImEUcYGRCDJSoRUjQtEWM3I3Q3WSsbPB4fD\\/xAAaAQEAAwEBAQAAAAAAAAAAAAAAAQIDBQQG\\/8QAIxEAAwABBAICAwEAAAAAAAAAAAECEQMEITESQVGhExQiYf\\/aAAwDAQACEQMRAD8A6dpSlUApSlAKUpQClKUApSlAKUpQClKUApSlAKUpQClQSPJcjxbvHfv8RTa2nUtpU4QYqiFLA3rZASock+E+PasJVjvDDzfffYyGx6RUhTpPcdhI\\/wBI8qHj9KYBZFKr+bFvMyxpjyshhJlLeadbeb2kBBChrgc7IOvHg815T2r76sVb2TQUISS8gAFJAUn00nej3DuJ8++vPswCxaVBW7fmX495pq4MtxU6U28spUF7UCR29u\\/BI3xz+hrfY9DvcZwm8z2ZSS0BpCdfX3EkjgcaI4+3n3IG8pSlAKUpQClKUApSlAKUpQClKUBBHbeh8SlO406tx5HcrucKu5fYRyd8+AN+ea20Jr\\/EZCG7jZ3mdaWl1SjpJSruTzve9kmpLSgNeqzwlAbaVwEj+c\\/6SSPf2KiaGywCppRYCi0AEkknwQR+fIFbClAKUpQClKUApSlAKUpQClKUApSlAKUpQClVdbiYmK5PMgZfJvS24DhSS7v0FBCiFA74P+1YmHwbzleCQpZyO4xH2nHu9aHCS4N8bO\\/avP8Any0kuezzrXy0kucZ9FuUqkelkS+5Oy\\/Ok5Pc0JiSg2WvUKg4AAeeayGZuQ9QssukW23Z+1Wi3K7CWFFKlHZA2RySe0\\/biqrc5lNT30VW5zKfj30XNSqjxi733GOoLeL32eu5RZSAth507WN70dnnyCNH4qf5bZZl7iMtQbvKta219ynI50VDWtGtI1fOW0uV6NI1fOW0uV6N7SqJwCHf8nuF2Ydyq6siA72Ah0nv5I55+1SO03K5TOsORWpVwkphpjKDTfee1tRQ39QHsdkmqTuPJJ47eCk7nySeO3gtOlUJnTF8x2dAttvyy7T7rLWAlgOEaB4G+fc1ndR5t5sjuK292+yoqlshMuQh0jZ7htR+dVV7rGcz0Ve68c5nou2lVji6EIVcpEPNpF6WzDcV6Bd7gjjhfn2NV\\/ZrleZWGzr47mUqPLivFDcVx\\/Zd0EkaBOzvuI8e1TW58ccfa9E1uvHHHz7Xo6OpVF5Zll7k9OcYuSZj8OZJfW264yoo7wkqSCdfOt16\\/wCLXXGc1scOLkzl9jzlpQ80tYcKAVAexOvO\\/wBKj9uc9ccfZD3c5644+y76VRPVfKb0rKpcbH5kpmNa2UqkegspGyRsnXn+YD96nr7MvNcYtNztt6l2slorcEY671a0QfyINXncKqqZXKLzuFVVMrlE5pVIdMYd+ycSpUjKLo2mHJDfp+oVBwDR55qIZtlmQRcuu7Ea8z2mW5K0oQh5QCRvwBWVbxTCtzwzOt4phW54ZZsF83DFMoiQcPmWRa4DoSFMkF9RQoBKR2jZ\\/wB62vSKBLgdP0Rp0V+NI73T6TqChXPjg81N5UhmJGdkSnUMsNJK1uLOkpSPJJ9hXlbbhDucVMm3SWZUdRIDjKwtJP5it50cUqb6WDWdHxpU30sFfdC7ZOttlurdxhyIi1yypKX2ygqHaORv2rRNxb\\/05yy6SoFofutnuKu\\/\\/IBJSdkjegdEdx8jR3Vtxbtb5U+RBjTY7syP\\/wA5lDgK2\\/8AqHkVj3vIrLYgk3m6wYHd\\/L+IeSjf7mq\\/rpTMp8rpkfrpTMp8rplb4var5lfUFvKb3b3LbDioCI7ToIUdb0ADz5UTvXvVu1hWq62+7xhItU2PMYP\\/AHjDgWP3FZtX09P8a+cmmlprTT5zkq7o5a59vu+TLnwpMZD0jubU80pAWO5XI2Oa8rTAuMPrFkd0NulKimKotOekoIcUEN6SlWtEkgirAveS2SxFIvN2gwCrwJD6Ub\\/c1lWu6QLtGEi1zI8xg+HGHAtP7iqLbpTM56eTNbdKZnPTyUVjM6+wMpmZBecRvFwuL2\\/SIZWlLIPHAKT7cVtuqDNzvc7GLojHrg8hLfqPxEsqWUfVvsVocHXyKt273e22aN692nRoTH9b7gQP3NeNkyCz3xClWa6QpyU+THeSvX7GqLa\\/w4dcMotr\\/Dh1wQXGZqJJuUaJhEyyKdhuj11slIXxwj+Uck1XcPAJz\\/TyRO\\/wqW3e484kNLZUFus9iOAk+Rsk+Pmr+u2QWezvIautzhw3Vp7kofeSgkeNgE1+7VfLVdu4Wu4xJZT5DDqV6\\/Y1NbVWv6ZNbVWkqfyVP1Eh3G\\/4NjH4ayzUPIc7XoqIygWtJKT9OuBxx9jU7gYfYMZZdudttHdMZaUtASFOLJA8JHPJ8VtbhlNhtsxyLcLzb40lvXe06+lKk7GxsE\\/BBrOttzg3Rn1bbMjymv6mXAsf2q86CVOnyy86EqnT5fBSmIYDfr3DutwuM6TaX7g4tD7LkfSnUnk7CuQNmpT0cYutstd1st1hSmRGdUWHHGlJQ4DsHtJGjyN\\/rU8vN8tVkZDt4uMSC0fCpDqUA\\/uaWa+Wq9sl2z3GJObHlUd1KwP2NVjbTptUn19ldPbTptUnyvsgnQ+2zrbb7ym4w5EVTkvuQHmygqGhyN+RVU5xjF+k5fd3o9luTrLklakLRGWpKhvyCBXUVKre0m4UZ6K3tFemtPPRD+sX\\/ZTl3\\/hcj\\/21Vzn\\/AA65TOwKVaYt\\/VrGMkBMWQT9LD4V26PxvWj+YPzXR\\/Vtpx\\/pflbTDa3HV2yQlKEJJUols6AA8mqywXAG8x\\/hyt9iujDkWckOORnHEFK2HgslKtHnXsfkE17Ees1WBXBNr679WbgR3JjRVva+e0pNePRDALd1Its3Ns7C7rMnyXEstOLPptISdeB99\\/kAK1v8OOP3pWd5pEyyLKQ8\\/AMV551sgOHuCeFa0eBWdguSXvoh+OxjJ8fuVwswfU9BnQW\\/U+knkH20fPyDv9APuTWNno11dxWbirjrFkvrpjSYJWVICgUgkb9vrBHwQfmuh8juQs+PXO5FPf8Ag4zj\\/b89qSdf2qgYyL71n6nWK8P2aXaMSsSi60Zae1x5ewSdfJKU+NgAeea6Eu8Bq6WqZb5G\\/RlMrYXrzpSSD\\/61DBzn0L6fW3qLap+aZ2ld2nTpTiW0OrPY2lJ54H3JAHsBU8w7pK9hHUV274xc0x8bkNlMi1udyj3aPKT44Ojz9xVfYBlF46INz8Xy2w3CXakyFPQ58JvvSQr52QNHQPnYO6yZnWu\\/zMiVJtfox7SEgNwn2krKuOStQ5B+wPt71W9RR2aaelWo8SeWE2CP1l6l5TectU7JtNqkmJDg95CBokbOvsN\\/cn7V862YRB6WItOb4J32x+PMQxJjoWS24hQJ3o\\/9OiPB39qi\\/TnP3On+XXuYqA5NtV3eL70aKP8AMZcKiQUAn6hzrX5fHMnzW9XvrpMtePY\\/YbhbcfZkpkzZs5vs3oEAAfABPGySdeNVM0qWURcVDxRjdcXbRd+sPTx\\/IfRRZ5UBtyQHldqAhS1E7PxzWFeomLW7rFhY6RPIXKcdP49EJwraDe0637eO\\/f5CpR1YxtMzrp08iLtrky0MxUMO9zJW2EhahpR1rxrzXnaLK70u\\/iFUmBbXFY1kDX0LZYKkxlE+NgfTpQ\\/8qhVihob9FxWX\\/FFlLecKhi2CMyU\\/i19qO\\/0Gtc\\/Pmsvp6LPB\\/iKVH6bPFzGlQSqcGVlbCV6Pg+P6f1JraN4lFv8A\\/FJlH+P2UTbUqI0pCpLBU0VBhocEjW\\/NXrYMcsuPMLZsdrhwGl\\/zJjtBHd+eqA546TY5D6zZDf8AMMz9SZFbkliFBUshttHkcD4Gh+ezTq5i8bo9f8ey\\/CO+Cy5KEeXCCyW3ARvWj7EBQ+3BFe2Pybx0Hye9QJdjn3TEbg+ZEWRCR3qa+AR+XB8eN1+cklXrrxktkt9vsk+1YpAfEiTKmo7FOH30PnWwAN+dmgLbGXZE51OiWNnG3F42\\/G9Y3XZ0klBUPt50nXnnf2qfVBl5u\\/H6nRsORj04xFR\\/UFzH\\/JTpJOvHjjW9+T4qc1AHmgAHjilKAaG96G6+KSlY0tIUPgjdfaUAAAGgAB8ClKjfUTIBjOIT7kkj1kI7Gd\\/1q4H+\\/wClQ3hZJSbeEQbrRnFtRa7hjbCPxMp5BbeWlWksfr7n7VzS+ERUj0HnSpPuE7FZb0p6Y4S8sqKiVrUTsqJ5JNTO3dOpN0isvOTlRWlAH00o8fnzzXO1dZZzR2dHb+M4gryyXt213uFcS0h8xn0PdiuAvtUDon9K7N6d5lb8ytH4mCj0H29etHVrbZPj8wfmuS82xMY1cmmO9Tsd5G23lDW1e4NSnodkarLnFsjOKKW5avwax7KCv5f2UE\\/3rXR1VxjpmG40W0\\/LtHW2hvehuhAPkA0pXtOYNDe9DdKUoD4pIUNKAI+DRKQkaSAB8AV9pQDQ3vXNKUoBSq2Xe81ivyUJtIdHa+6juQtWyEKKUJIGtdwSBsgndbq33bIjkMiFKt6VxG4qnEvpaUhKnR26SCeCD3K99\\/TQEvpWhw6fdLjbVu3mIYzwXpILZbJGhv6Tzwdjfvrdb6gFc8\\/xFZWia\\/GsMQgtsq9Z1QPk+APy8\\/2PgiugJylJhSFNntWG1FJ+DquH8juhkXeXMfBU466T58DwAPyA1WGvTSwvZ6trCdeT9GTYYLkiWjtMdISoKUZDnpo+dE1e1hfkPQE\\/i4rcZSfpSG3Q4lY\\/qBqOYzYbFdMYKER2X23m1I9XQK09wGyD7GpNa7dFtNvjQoafTZZSAAT548\\/nXG1rm1\\/p24ipePRE87bfuyXLdMi25iJ3D0n5MsIWo\\/KRrj45qr5EWXi9\\/YMlO1xXG3UugbSDvY2fnirzm45a515j3OVFQ8+02tvtWO5CwoaPcD54PFQHq7MjRYSbfHLYcdW2kNI19CE++vbwBWmlqJNTJS4bVOjpyxXFF1tMaagAB1AUR8H3FZ9QvpIy7Gw+My8sqKEoI37AtpVr+9TSu1Lysnz9LDaQpSlWKio01nFgckxmBNSlx+RIjJCx2hK2EqU53E+AAhXJrfPTIzLhbekNNrCSspUsAhI8n8vvUPkYhiEgqLnoeo76ryliQO5YWh1Kj58drzn9vigNm9m2Psy2WXLnGCHtdkj1E+idhRH171\\/oVWVJyzHYz62ZN+tTLyD2qQ5MbSpJ+CCajbVnxFm5NRTJWJS2llKlKKUuAp7VEK0Ek6fHg+\\/2NaW72zBhKCJtwuLK0DSWwHAEDZOh9HjZJ\\/WgNrFy6\\/lMVC7SXe51DZdEd1Id2UBQAI+kp7lEqVwe0+OdY8LKsjiMxhJtj8lbi1JVtlRV\\/KNeNADZ5PJ48e4sulAV9\\/xVkrKFGTaGdKQpQW206Q1pxlJKh5I7XVK0Of8ALV+k0ssp+baosmXHMd91AUto72k\\/rWbSgPOS0H4zrROg4gp3+Y1XG3WCysW3LZTUNaT3gPLaHllZ33I\\/cEj7EV2POdUxCkPIAKm21LG\\/GwN1w9k1ylXS6T7hNc9SU84pa1ff\\/b2rz674R69ostkk6M5Gzbpr9qmOBtuUQppSjoBY41+v\\/wAVcRXFbKk3MXNQ3tC4iELBHwQfBrlaR9L5KePB4+a6NtNykNxG2yUrCUDRXyfFcvcJRSvHZ2dq205fo2k25R7ZCk3CY46xCQnaEvkd+vvr3PwK5ymzzd8hlz3Rr1nC52\\/A3wKsHrK+4\\/ZrW44o\\/W8vaR44A9qq2ESHuP8A9z\\/91ptpXi7+TPc0\\/Px+DuzDEAY3BdHb\\/nNJc4OwNpGhv7DQrd1XHQOa\\/LwBhEhfeI7haQT5CdA6\\/vVj11peUmcLUWKaFKVrmZzq72\\/DKUekhsKBAO91LeChqckwu35BOMqW4+hZZ9EhsgAjewT86Pt4rUqw7HUMSWVPK7oiFKeOh3JCmnUEka8EOrOvmp7VfixMrvWVurkyiZcZbKk9ydJBT\\/p488++6kH1WA2RaUqNwdJSgtKKloO0rCARyOCQgffzXpKwGxLWkuy3UnXALo8bNai74tC\\/D97bshtwuIUVpKdk97g3ynz9Z5+wqMZbhUW5XMevc7mkRklhsNrbGkhalc\\/RydqPNSD\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086013,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:14'),
(16955, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:14.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16956, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A530CF89A47DC5E6B6A9A35971D57AA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DQHXCAaE3Z0\\/?igsh=cmtsYXBrbWp0MWpo\",\"title\":\"Dr. Elifas Rodrigues no Instagram: \\\"A Tizerpatida não é só sobre emagrecer. É sobre como seu corpo passa a responder melhor à fome, à saciedade e à energia. Seu corpo muda por dentro antes de mudar por fora. ✅ Este conteúdo tem caráter exclusivamente informativo e educativo. Ele não substitui uma consulta médica nem serve como indicação de diagnóstico ou tratamento. Para avaliação individual, procure um médico de sua confiança.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAABAAIDAQEBAAAAAAAAAAAAAAYHBAUIAwEC\\/8QAPBAAAQMEAQMDAgQEBAMJAAAAAQIDBAAFBhEhBxIxE0FRImEUcYGRCDJSoRUjQtEWM3I3Q3WSsbPB4fD\\/xAAaAQEAAwEBAQAAAAAAAAAAAAAAAQIDBQQG\\/8QAIxEAAwABBAICAwEAAAAAAAAAAAECEQMEITESQVGhExQiYf\\/aAAwDAQACEQMRAD8A6dpSlUApSlAKUpQClKUApSlAKUpQClKUApSlAKUpQClQSPJcjxbvHfv8RTa2nUtpU4QYqiFLA3rZASock+E+PasJVjvDDzfffYyGx6RUhTpPcdhI\\/wBI8qHj9KYBZFKr+bFvMyxpjyshhJlLeadbeb2kBBChrgc7IOvHg815T2r76sVb2TQUISS8gAFJAUn00nej3DuJ8++vPswCxaVBW7fmX495pq4MtxU6U28spUF7UCR29u\\/BI3xz+hrfY9DvcZwm8z2ZSS0BpCdfX3EkjgcaI4+3n3IG8pSlAKUpQClKUApSlAKUpQClKUBBHbeh8SlO406tx5HcrucKu5fYRyd8+AN+ea20Jr\\/EZCG7jZ3mdaWl1SjpJSruTzve9kmpLSgNeqzwlAbaVwEj+c\\/6SSPf2KiaGywCppRYCi0AEkknwQR+fIFbClAKUpQClKUApSlAKUpQClKUApSlAKUpQClVdbiYmK5PMgZfJvS24DhSS7v0FBCiFA74P+1YmHwbzleCQpZyO4xH2nHu9aHCS4N8bO\\/avP8Any0kuezzrXy0kucZ9FuUqkelkS+5Oy\\/Ok5Pc0JiSg2WvUKg4AAeeayGZuQ9QssukW23Z+1Wi3K7CWFFKlHZA2RySe0\\/biqrc5lNT30VW5zKfj30XNSqjxi733GOoLeL32eu5RZSAth507WN70dnnyCNH4qf5bZZl7iMtQbvKta219ynI50VDWtGtI1fOW0uV6NI1fOW0uV6N7SqJwCHf8nuF2Ydyq6siA72Ah0nv5I55+1SO03K5TOsORWpVwkphpjKDTfee1tRQ39QHsdkmqTuPJJ47eCk7nySeO3gtOlUJnTF8x2dAttvyy7T7rLWAlgOEaB4G+fc1ndR5t5sjuK292+yoqlshMuQh0jZ7htR+dVV7rGcz0Ve68c5nou2lVji6EIVcpEPNpF6WzDcV6Bd7gjjhfn2NV\\/ZrleZWGzr47mUqPLivFDcVx\\/Zd0EkaBOzvuI8e1TW58ccfa9E1uvHHHz7Xo6OpVF5Zll7k9OcYuSZj8OZJfW264yoo7wkqSCdfOt16\\/wCLXXGc1scOLkzl9jzlpQ80tYcKAVAexOvO\\/wBKj9uc9ccfZD3c5644+y76VRPVfKb0rKpcbH5kpmNa2UqkegspGyRsnXn+YD96nr7MvNcYtNztt6l2slorcEY671a0QfyINXncKqqZXKLzuFVVMrlE5pVIdMYd+ycSpUjKLo2mHJDfp+oVBwDR55qIZtlmQRcuu7Ea8z2mW5K0oQh5QCRvwBWVbxTCtzwzOt4phW54ZZsF83DFMoiQcPmWRa4DoSFMkF9RQoBKR2jZ\\/wB62vSKBLgdP0Rp0V+NI73T6TqChXPjg81N5UhmJGdkSnUMsNJK1uLOkpSPJJ9hXlbbhDucVMm3SWZUdRIDjKwtJP5it50cUqb6WDWdHxpU30sFfdC7ZOttlurdxhyIi1yypKX2ygqHaORv2rRNxb\\/05yy6SoFofutnuKu\\/\\/IBJSdkjegdEdx8jR3Vtxbtb5U+RBjTY7syP\\/wA5lDgK2\\/8AqHkVj3vIrLYgk3m6wYHd\\/L+IeSjf7mq\\/rpTMp8rpkfrpTMp8rplb4var5lfUFvKb3b3LbDioCI7ToIUdb0ADz5UTvXvVu1hWq62+7xhItU2PMYP\\/AHjDgWP3FZtX09P8a+cmmlprTT5zkq7o5a59vu+TLnwpMZD0jubU80pAWO5XI2Oa8rTAuMPrFkd0NulKimKotOekoIcUEN6SlWtEkgirAveS2SxFIvN2gwCrwJD6Ub\\/c1lWu6QLtGEi1zI8xg+HGHAtP7iqLbpTM56eTNbdKZnPTyUVjM6+wMpmZBecRvFwuL2\\/SIZWlLIPHAKT7cVtuqDNzvc7GLojHrg8hLfqPxEsqWUfVvsVocHXyKt273e22aN692nRoTH9b7gQP3NeNkyCz3xClWa6QpyU+THeSvX7GqLa\\/w4dcMotr\\/Dh1wQXGZqJJuUaJhEyyKdhuj11slIXxwj+Uck1XcPAJz\\/TyRO\\/wqW3e484kNLZUFus9iOAk+Rsk+Pmr+u2QWezvIautzhw3Vp7kofeSgkeNgE1+7VfLVdu4Wu4xJZT5DDqV6\\/Y1NbVWv6ZNbVWkqfyVP1Eh3G\\/4NjH4ayzUPIc7XoqIygWtJKT9OuBxx9jU7gYfYMZZdudttHdMZaUtASFOLJA8JHPJ8VtbhlNhtsxyLcLzb40lvXe06+lKk7GxsE\\/BBrOttzg3Rn1bbMjymv6mXAsf2q86CVOnyy86EqnT5fBSmIYDfr3DutwuM6TaX7g4tD7LkfSnUnk7CuQNmpT0cYutstd1st1hSmRGdUWHHGlJQ4DsHtJGjyN\\/rU8vN8tVkZDt4uMSC0fCpDqUA\\/uaWa+Wq9sl2z3GJObHlUd1KwP2NVjbTptUn19ldPbTptUnyvsgnQ+2zrbb7ym4w5EVTkvuQHmygqGhyN+RVU5xjF+k5fd3o9luTrLklakLRGWpKhvyCBXUVKre0m4UZ6K3tFemtPPRD+sX\\/ZTl3\\/hcj\\/21Vzn\\/AA65TOwKVaYt\\/VrGMkBMWQT9LD4V26PxvWj+YPzXR\\/Vtpx\\/pflbTDa3HV2yQlKEJJUols6AA8mqywXAG8x\\/hyt9iujDkWckOORnHEFK2HgslKtHnXsfkE17Ees1WBXBNr679WbgR3JjRVva+e0pNePRDALd1Its3Ns7C7rMnyXEstOLPptISdeB99\\/kAK1v8OOP3pWd5pEyyLKQ8\\/AMV551sgOHuCeFa0eBWdguSXvoh+OxjJ8fuVwswfU9BnQW\\/U+knkH20fPyDv9APuTWNno11dxWbirjrFkvrpjSYJWVICgUgkb9vrBHwQfmuh8juQs+PXO5FPf8Ag4zj\\/b89qSdf2qgYyL71n6nWK8P2aXaMSsSi60Zae1x5ewSdfJKU+NgAeea6Eu8Bq6WqZb5G\\/RlMrYXrzpSSD\\/61DBzn0L6fW3qLap+aZ2ld2nTpTiW0OrPY2lJ54H3JAHsBU8w7pK9hHUV274xc0x8bkNlMi1udyj3aPKT44Ojz9xVfYBlF46INz8Xy2w3CXakyFPQ58JvvSQr52QNHQPnYO6yZnWu\\/zMiVJtfox7SEgNwn2krKuOStQ5B+wPt71W9RR2aaelWo8SeWE2CP1l6l5TectU7JtNqkmJDg95CBokbOvsN\\/cn7V862YRB6WItOb4J32x+PMQxJjoWS24hQJ3o\\/9OiPB39qi\\/TnP3On+XXuYqA5NtV3eL70aKP8AMZcKiQUAn6hzrX5fHMnzW9XvrpMtePY\\/YbhbcfZkpkzZs5vs3oEAAfABPGySdeNVM0qWURcVDxRjdcXbRd+sPTx\\/IfRRZ5UBtyQHldqAhS1E7PxzWFeomLW7rFhY6RPIXKcdP49EJwraDe0637eO\\/f5CpR1YxtMzrp08iLtrky0MxUMO9zJW2EhahpR1rxrzXnaLK70u\\/iFUmBbXFY1kDX0LZYKkxlE+NgfTpQ\\/8qhVihob9FxWX\\/FFlLecKhi2CMyU\\/i19qO\\/0Gtc\\/Pmsvp6LPB\\/iKVH6bPFzGlQSqcGVlbCV6Pg+P6f1JraN4lFv8A\\/FJlH+P2UTbUqI0pCpLBU0VBhocEjW\\/NXrYMcsuPMLZsdrhwGl\\/zJjtBHd+eqA546TY5D6zZDf8AMMz9SZFbkliFBUshttHkcD4Gh+ezTq5i8bo9f8ey\\/CO+Cy5KEeXCCyW3ARvWj7EBQ+3BFe2Pybx0Hye9QJdjn3TEbg+ZEWRCR3qa+AR+XB8eN1+cklXrrxktkt9vsk+1YpAfEiTKmo7FOH30PnWwAN+dmgLbGXZE51OiWNnG3F42\\/G9Y3XZ0klBUPt50nXnnf2qfVBl5u\\/H6nRsORj04xFR\\/UFzH\\/JTpJOvHjjW9+T4qc1AHmgAHjilKAaG96G6+KSlY0tIUPgjdfaUAAAGgAB8ClKjfUTIBjOIT7kkj1kI7Gd\\/1q4H+\\/wClQ3hZJSbeEQbrRnFtRa7hjbCPxMp5BbeWlWksfr7n7VzS+ERUj0HnSpPuE7FZb0p6Y4S8sqKiVrUTsqJ5JNTO3dOpN0isvOTlRWlAH00o8fnzzXO1dZZzR2dHb+M4gryyXt213uFcS0h8xn0PdiuAvtUDon9K7N6d5lb8ytH4mCj0H29etHVrbZPj8wfmuS82xMY1cmmO9Tsd5G23lDW1e4NSnodkarLnFsjOKKW5avwax7KCv5f2UE\\/3rXR1VxjpmG40W0\\/LtHW2hvehuhAPkA0pXtOYNDe9DdKUoD4pIUNKAI+DRKQkaSAB8AV9pQDQ3vXNKUoBSq2Xe81ivyUJtIdHa+6juQtWyEKKUJIGtdwSBsgndbq33bIjkMiFKt6VxG4qnEvpaUhKnR26SCeCD3K99\\/TQEvpWhw6fdLjbVu3mIYzwXpILZbJGhv6Tzwdjfvrdb6gFc8\\/xFZWia\\/GsMQgtsq9Z1QPk+APy8\\/2PgiugJylJhSFNntWG1FJ+DquH8juhkXeXMfBU466T58DwAPyA1WGvTSwvZ6trCdeT9GTYYLkiWjtMdISoKUZDnpo+dE1e1hfkPQE\\/i4rcZSfpSG3Q4lY\\/qBqOYzYbFdMYKER2X23m1I9XQK09wGyD7GpNa7dFtNvjQoafTZZSAAT548\\/nXG1rm1\\/p24ipePRE87bfuyXLdMi25iJ3D0n5MsIWo\\/KRrj45qr5EWXi9\\/YMlO1xXG3UugbSDvY2fnirzm45a515j3OVFQ8+02tvtWO5CwoaPcD54PFQHq7MjRYSbfHLYcdW2kNI19CE++vbwBWmlqJNTJS4bVOjpyxXFF1tMaagAB1AUR8H3FZ9QvpIy7Gw+My8sqKEoI37AtpVr+9TSu1Lysnz9LDaQpSlWKio01nFgckxmBNSlx+RIjJCx2hK2EqU53E+AAhXJrfPTIzLhbekNNrCSspUsAhI8n8vvUPkYhiEgqLnoeo76ryliQO5YWh1Kj58drzn9vigNm9m2Psy2WXLnGCHtdkj1E+idhRH171\\/oVWVJyzHYz62ZN+tTLyD2qQ5MbSpJ+CCajbVnxFm5NRTJWJS2llKlKKUuAp7VEK0Ek6fHg+\\/2NaW72zBhKCJtwuLK0DSWwHAEDZOh9HjZJ\\/WgNrFy6\\/lMVC7SXe51DZdEd1Id2UBQAI+kp7lEqVwe0+OdY8LKsjiMxhJtj8lbi1JVtlRV\\/KNeNADZ5PJ48e4sulAV9\\/xVkrKFGTaGdKQpQW206Q1pxlJKh5I7XVK0Of8ALV+k0ssp+baosmXHMd91AUto72k\\/rWbSgPOS0H4zrROg4gp3+Y1XG3WCysW3LZTUNaT3gPLaHllZ33I\\/cEj7EV2POdUxCkPIAKm21LG\\/GwN1w9k1ylXS6T7hNc9SU84pa1ff\\/b2rz674R69ostkk6M5Gzbpr9qmOBtuUQppSjoBY41+v\\/wAVcRXFbKk3MXNQ3tC4iELBHwQfBrlaR9L5KePB4+a6NtNykNxG2yUrCUDRXyfFcvcJRSvHZ2dq205fo2k25R7ZCk3CY46xCQnaEvkd+vvr3PwK5ymzzd8hlz3Rr1nC52\\/A3wKsHrK+4\\/ZrW44o\\/W8vaR44A9qq2ESHuP8A9z\\/91ptpXi7+TPc0\\/Px+DuzDEAY3BdHb\\/nNJc4OwNpGhv7DQrd1XHQOa\\/LwBhEhfeI7haQT5CdA6\\/vVj11peUmcLUWKaFKVrmZzq72\\/DKUekhsKBAO91LeChqckwu35BOMqW4+hZZ9EhsgAjewT86Pt4rUqw7HUMSWVPK7oiFKeOh3JCmnUEka8EOrOvmp7VfixMrvWVurkyiZcZbKk9ydJBT\\/p488++6kH1WA2RaUqNwdJSgtKKloO0rCARyOCQgffzXpKwGxLWkuy3UnXALo8bNai74tC\\/D97bshtwuIUVpKdk97g3ynz9Z5+wqMZbhUW5XMevc7mkRklhsNrbGkhalc\\/RydqPNSD\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086013,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:14'),
(16957, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:14.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:14'),
(16958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A527942C72E7164927FA8771038B50A9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"title\":\"Emanuella Gasparini | Nutricionista no Instagram: \\\"Por isso a tizerpatida não deve ser vista apenas como uma medicação voltada para emagrecimento ou estética, ela representa uma estratégica terapeuta que atua em múltiplos sistemas do organism, impactando no metabolismo, sistema hormonal, cardiovascular, neurológico e inflamatório. Quando bem indicada e associada a uma estratégia alimentar adequada, treino e acompanhamento profissional, seus efeitos vão muito além da perda de peso. Isso facilita o tratamento de diversas condições metabólicas inflamatórias e promove a saúde de forma mais completa e sustentável. TEXTO CERTO DA ÚLTIMA FOTO ( saúde cardiovascular): A tirzepatida apresenta impacto positivo em marcadores metabólicos, glicêmicos e lipídicos, contribuindo para a melhora da função endotelial e redução da inflamação vascular. Esses efeitos promovem maior estabilidade das placas ateroscleróticas e estão associados à diminuição do risco de eventos cardiovasculares, como infarto e AVC.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHQAAAQUBAQEBAAAAAAAAAAAABAEDBQYHAggACf\\/EADkQAAIBAwMCBAQFAwIGAwAAAAECAwAEEQUSIQYxE0FRYQcicYEUFTJCkSNSoWLwJDNTscHRgpLh\\/8QAGwEAAgMBAQEAAAAAAAAAAAAAAQMAAgQFBgf\\/xAAnEQACAgIDAAEDBAMAAAAAAAAAAQIRAyEEEjFBBSJRE2Gh8DJx4f\\/aAAwDAQACEQMRAD8AhtB6mu\\/wD6LfS77ZyrozckYPf3+laNq7\\/lHQt9LE6GS7uYwpJzvVFXt684P81jVxp9zb3NteJGzQqSr7R\\/yz7jv3q46\\/fk9O6Jo4cs1sjPKe+WYkj\\/GK4WZJxZ05rSQx0raSS3FxfPn+iN4bH7z2\\/wDf2rRtJ1FLqBhO4W4hwsgPGc9mHsajun7BbHpwRMAJJl3MCP3EZVT9QDj3+tAwmWwuvGQlggDKf70P7T\\/vuKr9L5suHnWR\\/wCL9\\/v7f8MHNxfrR6\\/K8LX4yAFhIMdu9NrceJhoVLgjv2FE2zx3MCSxEFHGRXywSJEplQLnng5H819DjOMqaen4eeae9AmZSSQEHNKEkDhmlxj2p8DkbRkUrKCpyMjtS+v2UyyewVIQ8Sl3MwJzuY5BrhY1V5QFUcjGB24o4BQgACrgAADgYpkqBIT5GkrHppr+0Mct6EZec+1TWkT28WlXGDGt4rb03n9WBwPpUL7DsaIsf6d5GWGMHzFTPj\\/UhKL+SY59ZJl0hkAmO9EKSbZRjnnaM4\\/+tSDLEFCtbIyK+9MgHGef+9DWu3chdty47kUXeXMEaqEDE+1cZQ6s6Xbsgu3RJUZfCQKw5XHrVV1TR511V0soGEbfMD5VZNPufFAGMNRl4xjj8QAll8qZjyODtAlBTWzyxrf\\/AA+rXqy4VlmcEH61BS63bxuV3Zx6DNW7rvoXX31e\\/wBTvYWGnTXDuvgncdueCwHaq7FYWkSBFhXA9a4GeLjN2jv4HGUFTBdK6mthcNsieN3OSjHeG9j5j61JQMt\\/rvj3pWKIvvlPko7mqB0dELvVZLhiSIRu7+flV0uzbRaawvZGjSc7A6kAjzzz5Zxn2NL5MdqC+Snbstl5TUY5TLMszNBKNip\\/bzkYHtiirq3ebToLiJQMkjGex7kffuPes00rXtOsgI7nWrYKWVSm7sM9wfIirzoPVehzJJZ\\/nFnKsgyCZAMOOxx\\/vvWaeGUdNaK5IxdSTC7HU3gcIpaJSDww4z61bbXqGymjVgASSPccZ47dufXy7VWdOt47qdDDLG4GSpVgRS6xpVmbhJrZPDEq7iEO1o2Bwy8e4z961cPm5uPHrdpfDKS4eLK6ap\\/lF2t7qFfCmURPIpUgg98bc+Xnt\\/zTAn3fLHEu7G1Scce\\/aqLGuoWjZtLzcP7JlyP5H\\/7UnYdQTLMkWoWTxs7BRLC29Bn18x\\/Fei431Tj5dZPtf8HK5H03Pi3B9l\\/JexYu1u0xhh3Me24YHzZHl9qi7\\/ER8N4o2cqQXU8DIAzjHtRuoaffWsKNK2YzzlTUQxLHLEkmuljxp7uznTyNao6gnECbFjSQcksRjOSvqP8ASR\\/8qKgvoWlUzQhQoznhj+3gcf6T\\/NAba+2EnimSxRZSOSSJG01V1kRZCRGDVjtb21uYyoI8U9s1SypHByDTsJZDkEik5cEZeDYZXE0C2TwgMMoJ880VNdeHb7kKyHzGccVSJ71nMQjkcKFAP1qTdHlt4oLVw7ynkk\\/p+tY3grbNKzX4PXOvxMTGUJHYhhVUvukdJ1S5e6S3aLf3WNwoz64qzR9NEyRhp+WyWwO1CT6fPazPEY3bB4IHcVZ48M1Xv+wLJlhtaPJNpfW3Teg+KFBu7j5lQny7AmqVq+s3Wpy7rmdnA7L2UfQULql9JeTs8pySaALe9YMWCMPufp0cmVy0vB4yfSvllIPFD5Jr7zp9CbLFonU2q6ROsmn3kkRHlnI\\/ir9pHxa1TxR+aWkFwh\\/U8YKt9e+KyRXxREcuCO9JycfHP1DYZpw8Z6e6d6o03qCENaybZfONuCDUpcoQMivNWiXlzb3CTWs2yVftW39JdT\\/m1kEvQEmXAJPFcrkcR4\\/uj4dLDyFkVS9PQVjfQXOlRLct\\/TmiDAny4qKh0eGaWVmuUC91ANQGiXTvpkce7\\/lZSidxByDivTcVOWJTi\\/TzHJko5HCS8J38ns1tWElwFlxkN5VGCBY4fFhKsyHvnv8AamDI7DBYn70gzWiKkvXYltPxCXId5S0oAY88VwqU+i7mAPn709LB4LbXGD39RVnKtAS+QZV5qw6NJBFZSO4USL2J7moqC3DsCzqqeZNdyoiybIXLL6mkzqWhkG4uyf066kMxc\\/Me2M9qlVvIyP6gAbzqpHfCV8Obcx77a7Esy8EkH3rM8Nu0zRHNXp+erE+feuSaVjSGlGtick0opK+NQB13Ip+MgGhgea7U1GQPt3YOChINaN0DeySXW1vmY8HnlgfbzrMonxUno2rTafeLNAxDD\\/NUlFSVMZGTW0ewumbCKG3DQTyMkoGUf9p9qlriF4WAdSMnj3rOPhr1ZPf2dusoUJ2C5y24+ntWlmY3NixcZ28g+\\/nWjFlUIqMVowZsUpycpPYPx5V2MHsaZwygEggeVOw72PyjJp7yCFjYd4USxqRIrHuR2rvxSsZA2tu45GcU1I2+0DyLtkBxn1FMI\\/NLU7GOFD0fB5Gafj2E\\/OvHtTUAVz8zbacbCuQpyB51HksCgw9ZYF8IxpsdD+r1qQkvoHILQo5xySKhEz6UatrKVB296XJp+jY38H51CkJpc\\/KaQdqUbD4UlLnmk86hKFpQaTNJUAOhuKftgWkCryTQg7Zqb6YtGubsHHC0G6Vloq3Rs\\/wmiSOOPdxIDkqPIVssF4scOzcO3asTt2NjawRW0LhgBukX93rUvpXUdzagrcRyyJ79xVY+C5+msLqICfOPl88mmvxafpj5B96z636q+X+vBJnPkPKp6y1WB4FuLl\\/wtqeQ8wI3eyqMk\\/YYq1lKLY2oJ4KxnjP+Kdju4tybnBxVU6h1rS7TS1ntJpzds3FuyfqX+71X7964brXT4roIbQPCGgG+OLJMZQeIc+uc\\/wAULDX5LktxF4n6uD70TFcRu8aLgnOBjzqjHqXTYdJlBuo3IBQf0nDs+8YYEgfLtz3\\/AIos9W6Xd6rJbxbIwt6Ft1RCVmjLY4I\\/nn1qWw9UXeO\\/RnKErjuKIS6AB\\/qMOfI1luhdd6fcJdW088HiGDhY4X3xurZbcxGOeAu3PnnFW7TurelIoXW6kmmcuSGWCQjB7AceXaqp34Fxo8YdO9I671LBdSaHps13FbAGaRAAqZ7ZJ86ga9JWl1pHTnwj+IFlpdhb31laaqtvFNI7q0yv+h2xj5kBHpyKN1HoTofTGHTN\\/BpMcf5WJzqImla\\/8crkSbQNvh58u2KvYyzzrP09q8FtptxJp9wIdSybNghPj4IB2479xUXPHJBM8UyMkiMVZWGCCO4Nelfh7Z6fpWp\\/B25WxjnuNQS5R3d2O1wVw6jOMjn+ahDZ9PDTeu+u73pq1vprLVBYQaYZH8CM5G6Z\\/M5J+mc\\/aWAwKkHJr0U\\/SPRUfU\\/Smt3ummw03W9JlvH05xJLDbTrjDPt+YRHd\\/iqn8aumoLHStF1bT9J0SC0uGeJr\\/RblmtrhhkgeEwyhAHqc81LIZKozWiaHoWoaItv+ZWklvJdRrcRBxjfGw+Vh7GpnovTdF0X4R3nVl\\/oVtrd\\/NqP4BIrpm8OBAoJbCkHJz39q2Pqawhn6o0uaPRY7i0sunophDeXJjitVC\\/KZTjLBexHc4pWTaoZj0ygxyhYkAIOAPKpzT+mdc1KzS6sdLuZ4JP0yIuQaT4iRafZaR03qenQ2UTahHJ434Ev4DFWxlA3NHfBbVrhuqrmB2fwV0+dwA5xwB5U5ZFVIzyxO7Yxa9L6omrLb32mXCeHH+IlVlAxGDjcfbIxVc1R49SvGnud29uwDkBQOwAHkKlPh3q9r1NYdVu8k73Fppjyxs7kFSGGDnNWvXTo+i6b07FDoEF7f6hZxyu7M3fPkB5nnP2qdrYOnVWUa3k8JNqycerZY\\/zRCzjHM2PouK0PqCy0SNNJ0iXS7ay1q+lj8YW7MRbIT2JP7iK76p0vQIbTWrRILG2l09R+HaF3aViO4kyMc0bK9TP1a3JUSsrE9g2TRj6q2laddzWgg3rGWRmjBKMAcFfQ81oH5focWv6FpD6HFINRtEd59zblYrnK+nvQNhpOn2lmYdS0\\/T5bea+a0FxfSsfGUPtwiqOD71VvRZLZk3wtt5Hn1G52MyRogd9pIGT5n+K0uXTDGsbTWpXxEEikp3U9j\\/ijelrfT9A0fr+xtNPiNtZ6gsa7mJLqSu0E\\/wCnPFSerWlvHb6WUUjfZI7fMeSS1Ux6jRfLuVnlBpur20bVNLe6gey1O4F1dq9zbs0soOQxYtuH2NTadW\\/ENNA\\/KBqNr+GEH4YSGW18YQ\\/2eLndj71lxGcVpvSGj3l9p2ix6DollqdvOzfmTzW0crL8+CpdhmL5eRtKk9+aJdojYdT62ibQPCvLZBoJLafie2\\/okkE+fzdh+rNSlv1f8QbXqC\\/1iC\\/sEub8Kt1HvtTDKFGFzHnbkeuM+9cRfD3T59QkdJrqHSGEPhXcgwu57hY2GSO4UnjuD3qG1npSwtertI01Dd28N2gaWO4GJIzuYYGQDyAMZA7+dEBJN1F1\\/J1UvUT6rAdUWPwQ5uLbYI\\/+n4edu32xTXVGodX9XR2sGs3Ng1rbEmG2glt4YkJ7kKhAyfU0Wvw8huJLBILPU7eeYWsk9rLhpIY5JZ0dj8owAI05I\\/dz3o\\/Tfh\\/YDT7aadL4OxiYtGdwlV88L8oGRx2LHuMZ4oMK9BejdS6v6VjmtNFvbKK1uSDLDJJbyoSOzBWJAPvVvn6o6xgvfzL81tpr0262ZMrwMrxf2sp4b6nn3qKi+H+mxzXkkj3a7VUqi5ZrdTHu3SZUEDPk23io7RNE07U9Ms5bxrj8TcySW6FHAWMrFuDEEHPOBjikybsfBKiU1XU+peooLWDWb2znitixhVXgQR7u4G3HHA4oC21HXunriW50S8s7e5aJoS5mhf5GHIw2RUm\\/TelmeOJmmW4mtZZ1kUqqJ4VuJOVA5zgjy9eaE174fwPZyizt9Q\\/FH8SturMH\\/E+GYcOgAzgq7nHPA71Rel3XhUenH6i0CLUY9LvrKBNQgNtcjxoW3xk5I5zj6jBq4aR1R1Gt5pMt9qFlI+mRrFaN4sI8JR2GBw33zTqfD3TLTTr2ImeRnZlebww34cxkYQnGFLeZyDggDPIMXqfSmhW9lM1sLxZx+LRC8ykZgCNuxt\\/dvxjyx3NM7C3BM0i+6t6l1+ykgudVsponILGMwI2Qcj5lAI7etdanr\\/Uupae1ne39o8LgCQholaQDtuYDJrNOkunorjT9NuVN2PxLkTXcbqsVsRJtCMCOWIwe4\\/UOO9aNY6PY\\/lsV3f2l9bSsyxtau4V1y+3eSV7Ec9vKrqf5EyxV4WnXusNTLWceg6jbQQJZRwOX2FlcDDFSeR9qq15r3Umk9PG3sdYskVZA8Zfw2aNieSrMCQalDoWlXEtpZu3gSRqqyXGQFIM7ISR6488+VQ3V\\/TFmtmogtdQuZd6ZtI22yKCWBc5XO0YHkB8w5qSkqdFYxfZWFdG611IsOpXsmpafJPqUha54jw5HAOAMA\\/QVMyahq08cCz3MDCGMRJhk4UZwO3Pc1C2vS8em9KWktlczlyEO84KOWBJAPbIx5E0ykOoKuBOn3jqRkkgSi2zzOq5rhyQ3Bxj0og\\/KnFDOOaKY1nzMzEsxJJOSTzk0iDJJroj5RXargUQUP3F3cXUdslxIXW3i8GIYHypuZsfyzH707ZAkmhlGTUlpMe4kkVST0XgtklaQBlm55GAKIWMtEiHnbS2igRk+RNPqMHiss2bYRpDUcZRgR3BzV0a7\\/OdPtlv7i3TYSdqxrHknGWOAMk4HPtVfggEi8DmjVvpNJ0u6Ah3mTARj2Q+tLUvgM4WtAGtRW2lx53JIz58NUbOfc+1VQlp5yX5Y1cdM6ZlvI2v9bn\\/D2pG7LH52HrjyFVu8S3ivJRZbjbhjsLdyKYq+CjTemE6dZM0iceea0LR7Zo9NX5GaN859B5VWemjHdTpEv6yAGq\\/XCTWBRbe1uZYgONuRx9DQsrkVEYtl4rRlospn5lLdvQ4qB6y+S4t4WUKMHHOc1ZVS5LlxGLPxDgPKCe\\/pTsHTS3GoI16EvCDw7y4x9BUbFrTE0uOP8stUEzCVEGI89\\/tUjC2peGNhXaO2QTRlxJptmwgknETJ\\/wBQk4x6CgBLBOS6TWu3OATcbc\\/agpBo864+Q0wwyaeH6DTRreIZ8BlgB5CuiecCvuykjv2pB3FAg8gwKmNKQnCJ3PFRCDMhHlkVZ+n41Ks3mCKVkdIbjVsOEIjgxj6VyifMKN1ABe3rQ0AywrG2boomdJi3MM0Vdwm6gligCtuG1QRkf7\\/8ChA5itRsOCxCk+xqyWUSQJKYxgowiX2BGSfqaVKVbDL8FIn6d142yzm0kkgYY3RHfwPI4\\/7GutN6T1O\\/kUG2eCHOGkmBVR9T\\/wCBWzaA5t0Ph8K6\\/MvkaH6muHsJESAArIu4h8tVlmbFNuyvad0VZ6TbNLeT+IQMmSAk4+gxUzZwRralbO5e6BHG9yrL7e1C2t7dOLQrcSR72IITAGM+mKv9jFHqMDQXcaugGDgYJ+uKHZlH+5VrFYpIil+k8QJ+XxlDIp9m\\/wDdJPYSx3CvHa2l5GBkKGCNRunMsmrtphjQWciMCmPQ8VXtR1m7029FtaGNIYmIVdgo9idSxzW\\/5kAtzZRRhVGORuX25riPSIwgB0OKTH7ldcH+aO0jUHvbuzS6hgk8WHexKYOc1PXUMdrL4cKgJjPNDsyUf\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086014,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:14.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:14'),
(16959, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A527942C72E7164927FA8771038B50A9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DUEQUvYFUkF\\/?img_index=1&igsh=aWI2MnNla3o4YWFw\",\"title\":\"Emanuella Gasparini | Nutricionista no Instagram: \\\"Por isso a tizerpatida não deve ser vista apenas como uma medicação voltada para emagrecimento ou estética, ela representa uma estratégica terapeuta que atua em múltiplos sistemas do organism, impactando no metabolismo, sistema hormonal, cardiovascular, neurológico e inflamatório. Quando bem indicada e associada a uma estratégia alimentar adequada, treino e acompanhamento profissional, seus efeitos vão muito além da perda de peso. Isso facilita o tratamento de diversas condições metabólicas inflamatórias e promove a saúde de forma mais completa e sustentável. TEXTO CERTO DA ÚLTIMA FOTO ( saúde cardiovascular): A tirzepatida apresenta impacto positivo em marcadores metabólicos, glicêmicos e lipídicos, contribuindo para a melhora da função endotelial e redução da inflamação vascular. Esses efeitos promovem maior estabilidade das placas ateroscleróticas e estão associados à diminuição do risco de eventos cardiovasculares, como infarto e AVC.\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHQAAAQUBAQEBAAAAAAAAAAAABAEDBQYHAggACf\\/EADkQAAIBAwMCBAQFAwIGAwAAAAECAwAEEQUSIQYxE0FRYQcicYEUFTJCkSNSoWLwJDNTscHRgpLh\\/8QAGwEAAgMBAQEAAAAAAAAAAAAAAQMAAgQFBgf\\/xAAnEQACAgIDAAEDBAMAAAAAAAAAAQIRAyEEEjFBBSJRE2Gh8DJx4f\\/aAAwDAQACEQMRAD8AhtB6mu\\/wD6LfS77ZyrozckYPf3+laNq7\\/lHQt9LE6GS7uYwpJzvVFXt684P81jVxp9zb3NteJGzQqSr7R\\/yz7jv3q46\\/fk9O6Jo4cs1sjPKe+WYkj\\/GK4WZJxZ05rSQx0raSS3FxfPn+iN4bH7z2\\/wDf2rRtJ1FLqBhO4W4hwsgPGc9mHsajun7BbHpwRMAJJl3MCP3EZVT9QDj3+tAwmWwuvGQlggDKf70P7T\\/vuKr9L5suHnWR\\/wCL9\\/v7f8MHNxfrR6\\/K8LX4yAFhIMdu9NrceJhoVLgjv2FE2zx3MCSxEFHGRXywSJEplQLnng5H819DjOMqaen4eeae9AmZSSQEHNKEkDhmlxj2p8DkbRkUrKCpyMjtS+v2UyyewVIQ8Sl3MwJzuY5BrhY1V5QFUcjGB24o4BQgACrgAADgYpkqBIT5GkrHppr+0Mct6EZec+1TWkT28WlXGDGt4rb03n9WBwPpUL7DsaIsf6d5GWGMHzFTPj\\/UhKL+SY59ZJl0hkAmO9EKSbZRjnnaM4\\/+tSDLEFCtbIyK+9MgHGef+9DWu3chdty47kUXeXMEaqEDE+1cZQ6s6Xbsgu3RJUZfCQKw5XHrVV1TR511V0soGEbfMD5VZNPufFAGMNRl4xjj8QAll8qZjyODtAlBTWzyxrf\\/AA+rXqy4VlmcEH61BS63bxuV3Zx6DNW7rvoXX31e\\/wBTvYWGnTXDuvgncdueCwHaq7FYWkSBFhXA9a4GeLjN2jv4HGUFTBdK6mthcNsieN3OSjHeG9j5j61JQMt\\/rvj3pWKIvvlPko7mqB0dELvVZLhiSIRu7+flV0uzbRaawvZGjSc7A6kAjzzz5Zxn2NL5MdqC+Snbstl5TUY5TLMszNBKNip\\/bzkYHtiirq3ebToLiJQMkjGex7kffuPes00rXtOsgI7nWrYKWVSm7sM9wfIirzoPVehzJJZ\\/nFnKsgyCZAMOOxx\\/vvWaeGUdNaK5IxdSTC7HU3gcIpaJSDww4z61bbXqGymjVgASSPccZ47dufXy7VWdOt47qdDDLG4GSpVgRS6xpVmbhJrZPDEq7iEO1o2Bwy8e4z961cPm5uPHrdpfDKS4eLK6ap\\/lF2t7qFfCmURPIpUgg98bc+Xnt\\/zTAn3fLHEu7G1Scce\\/aqLGuoWjZtLzcP7JlyP5H\\/7UnYdQTLMkWoWTxs7BRLC29Bn18x\\/Fei431Tj5dZPtf8HK5H03Pi3B9l\\/JexYu1u0xhh3Me24YHzZHl9qi7\\/ER8N4o2cqQXU8DIAzjHtRuoaffWsKNK2YzzlTUQxLHLEkmuljxp7uznTyNao6gnECbFjSQcksRjOSvqP8ASR\\/8qKgvoWlUzQhQoznhj+3gcf6T\\/NAba+2EnimSxRZSOSSJG01V1kRZCRGDVjtb21uYyoI8U9s1SypHByDTsJZDkEik5cEZeDYZXE0C2TwgMMoJ880VNdeHb7kKyHzGccVSJ71nMQjkcKFAP1qTdHlt4oLVw7ynkk\\/p+tY3grbNKzX4PXOvxMTGUJHYhhVUvukdJ1S5e6S3aLf3WNwoz64qzR9NEyRhp+WyWwO1CT6fPazPEY3bB4IHcVZ48M1Xv+wLJlhtaPJNpfW3Teg+KFBu7j5lQny7AmqVq+s3Wpy7rmdnA7L2UfQULql9JeTs8pySaALe9YMWCMPufp0cmVy0vB4yfSvllIPFD5Jr7zp9CbLFonU2q6ROsmn3kkRHlnI\\/ir9pHxa1TxR+aWkFwh\\/U8YKt9e+KyRXxREcuCO9JycfHP1DYZpw8Z6e6d6o03qCENaybZfONuCDUpcoQMivNWiXlzb3CTWs2yVftW39JdT\\/m1kEvQEmXAJPFcrkcR4\\/uj4dLDyFkVS9PQVjfQXOlRLct\\/TmiDAny4qKh0eGaWVmuUC91ANQGiXTvpkce7\\/lZSidxByDivTcVOWJTi\\/TzHJko5HCS8J38ns1tWElwFlxkN5VGCBY4fFhKsyHvnv8AamDI7DBYn70gzWiKkvXYltPxCXId5S0oAY88VwqU+i7mAPn709LB4LbXGD39RVnKtAS+QZV5qw6NJBFZSO4USL2J7moqC3DsCzqqeZNdyoiybIXLL6mkzqWhkG4uyf066kMxc\\/Me2M9qlVvIyP6gAbzqpHfCV8Obcx77a7Esy8EkH3rM8Nu0zRHNXp+erE+feuSaVjSGlGtick0opK+NQB13Ip+MgGhgea7U1GQPt3YOChINaN0DeySXW1vmY8HnlgfbzrMonxUno2rTafeLNAxDD\\/NUlFSVMZGTW0ewumbCKG3DQTyMkoGUf9p9qlriF4WAdSMnj3rOPhr1ZPf2dusoUJ2C5y24+ntWlmY3NixcZ28g+\\/nWjFlUIqMVowZsUpycpPYPx5V2MHsaZwygEggeVOw72PyjJp7yCFjYd4USxqRIrHuR2rvxSsZA2tu45GcU1I2+0DyLtkBxn1FMI\\/NLU7GOFD0fB5Gafj2E\\/OvHtTUAVz8zbacbCuQpyB51HksCgw9ZYF8IxpsdD+r1qQkvoHILQo5xySKhEz6UatrKVB296XJp+jY38H51CkJpc\\/KaQdqUbD4UlLnmk86hKFpQaTNJUAOhuKftgWkCryTQg7Zqb6YtGubsHHC0G6Vloq3Rs\\/wmiSOOPdxIDkqPIVssF4scOzcO3asTt2NjawRW0LhgBukX93rUvpXUdzagrcRyyJ79xVY+C5+msLqICfOPl88mmvxafpj5B96z636q+X+vBJnPkPKp6y1WB4FuLl\\/wtqeQ8wI3eyqMk\\/YYq1lKLY2oJ4KxnjP+Kdju4tybnBxVU6h1rS7TS1ntJpzds3FuyfqX+71X7964brXT4roIbQPCGgG+OLJMZQeIc+uc\\/wAULDX5LktxF4n6uD70TFcRu8aLgnOBjzqjHqXTYdJlBuo3IBQf0nDs+8YYEgfLtz3\\/AIos9W6Xd6rJbxbIwt6Ft1RCVmjLY4I\\/nn1qWw9UXeO\\/RnKErjuKIS6AB\\/qMOfI1luhdd6fcJdW088HiGDhY4X3xurZbcxGOeAu3PnnFW7TurelIoXW6kmmcuSGWCQjB7AceXaqp34Fxo8YdO9I671LBdSaHps13FbAGaRAAqZ7ZJ86ga9JWl1pHTnwj+IFlpdhb31laaqtvFNI7q0yv+h2xj5kBHpyKN1HoTofTGHTN\\/BpMcf5WJzqImla\\/8crkSbQNvh58u2KvYyzzrP09q8FtptxJp9wIdSybNghPj4IB2479xUXPHJBM8UyMkiMVZWGCCO4Nelfh7Z6fpWp\\/B25WxjnuNQS5R3d2O1wVw6jOMjn+ahDZ9PDTeu+u73pq1vprLVBYQaYZH8CM5G6Z\\/M5J+mc\\/aWAwKkHJr0U\\/SPRUfU\\/Smt3ummw03W9JlvH05xJLDbTrjDPt+YRHd\\/iqn8aumoLHStF1bT9J0SC0uGeJr\\/RblmtrhhkgeEwyhAHqc81LIZKozWiaHoWoaItv+ZWklvJdRrcRBxjfGw+Vh7GpnovTdF0X4R3nVl\\/oVtrd\\/NqP4BIrpm8OBAoJbCkHJz39q2Pqawhn6o0uaPRY7i0sunophDeXJjitVC\\/KZTjLBexHc4pWTaoZj0ygxyhYkAIOAPKpzT+mdc1KzS6sdLuZ4JP0yIuQaT4iRafZaR03qenQ2UTahHJ434Ev4DFWxlA3NHfBbVrhuqrmB2fwV0+dwA5xwB5U5ZFVIzyxO7Yxa9L6omrLb32mXCeHH+IlVlAxGDjcfbIxVc1R49SvGnud29uwDkBQOwAHkKlPh3q9r1NYdVu8k73Fppjyxs7kFSGGDnNWvXTo+i6b07FDoEF7f6hZxyu7M3fPkB5nnP2qdrYOnVWUa3k8JNqycerZY\\/zRCzjHM2PouK0PqCy0SNNJ0iXS7ay1q+lj8YW7MRbIT2JP7iK76p0vQIbTWrRILG2l09R+HaF3aViO4kyMc0bK9TP1a3JUSsrE9g2TRj6q2laddzWgg3rGWRmjBKMAcFfQ81oH5focWv6FpD6HFINRtEd59zblYrnK+nvQNhpOn2lmYdS0\\/T5bea+a0FxfSsfGUPtwiqOD71VvRZLZk3wtt5Hn1G52MyRogd9pIGT5n+K0uXTDGsbTWpXxEEikp3U9j\\/ijelrfT9A0fr+xtNPiNtZ6gsa7mJLqSu0E\\/wCnPFSerWlvHb6WUUjfZI7fMeSS1Ux6jRfLuVnlBpur20bVNLe6gey1O4F1dq9zbs0soOQxYtuH2NTadW\\/ENNA\\/KBqNr+GEH4YSGW18YQ\\/2eLndj71lxGcVpvSGj3l9p2ix6DollqdvOzfmTzW0crL8+CpdhmL5eRtKk9+aJdojYdT62ibQPCvLZBoJLafie2\\/okkE+fzdh+rNSlv1f8QbXqC\\/1iC\\/sEub8Kt1HvtTDKFGFzHnbkeuM+9cRfD3T59QkdJrqHSGEPhXcgwu57hY2GSO4UnjuD3qG1npSwtertI01Dd28N2gaWO4GJIzuYYGQDyAMZA7+dEBJN1F1\\/J1UvUT6rAdUWPwQ5uLbYI\\/+n4edu32xTXVGodX9XR2sGs3Ng1rbEmG2glt4YkJ7kKhAyfU0Wvw8huJLBILPU7eeYWsk9rLhpIY5JZ0dj8owAI05I\\/dz3o\\/Tfh\\/YDT7aadL4OxiYtGdwlV88L8oGRx2LHuMZ4oMK9BejdS6v6VjmtNFvbKK1uSDLDJJbyoSOzBWJAPvVvn6o6xgvfzL81tpr0262ZMrwMrxf2sp4b6nn3qKi+H+mxzXkkj3a7VUqi5ZrdTHu3SZUEDPk23io7RNE07U9Ms5bxrj8TcySW6FHAWMrFuDEEHPOBjikybsfBKiU1XU+peooLWDWb2znitixhVXgQR7u4G3HHA4oC21HXunriW50S8s7e5aJoS5mhf5GHIw2RUm\\/TelmeOJmmW4mtZZ1kUqqJ4VuJOVA5zgjy9eaE174fwPZyizt9Q\\/FH8SturMH\\/E+GYcOgAzgq7nHPA71Rel3XhUenH6i0CLUY9LvrKBNQgNtcjxoW3xk5I5zj6jBq4aR1R1Gt5pMt9qFlI+mRrFaN4sI8JR2GBw33zTqfD3TLTTr2ImeRnZlebww34cxkYQnGFLeZyDggDPIMXqfSmhW9lM1sLxZx+LRC8ykZgCNuxt\\/dvxjyx3NM7C3BM0i+6t6l1+ykgudVsponILGMwI2Qcj5lAI7etdanr\\/Uupae1ne39o8LgCQholaQDtuYDJrNOkunorjT9NuVN2PxLkTXcbqsVsRJtCMCOWIwe4\\/UOO9aNY6PY\\/lsV3f2l9bSsyxtau4V1y+3eSV7Ec9vKrqf5EyxV4WnXusNTLWceg6jbQQJZRwOX2FlcDDFSeR9qq15r3Umk9PG3sdYskVZA8Zfw2aNieSrMCQalDoWlXEtpZu3gSRqqyXGQFIM7ISR6488+VQ3V\\/TFmtmogtdQuZd6ZtI22yKCWBc5XO0YHkB8w5qSkqdFYxfZWFdG611IsOpXsmpafJPqUha54jw5HAOAMA\\/QVMyahq08cCz3MDCGMRJhk4UZwO3Pc1C2vS8em9KWktlczlyEO84KOWBJAPbIx5E0ykOoKuBOn3jqRkkgSi2zzOq5rhyQ3Bxj0og\\/KnFDOOaKY1nzMzEsxJJOSTzk0iDJJroj5RXargUQUP3F3cXUdslxIXW3i8GIYHypuZsfyzH707ZAkmhlGTUlpMe4kkVST0XgtklaQBlm55GAKIWMtEiHnbS2igRk+RNPqMHiss2bYRpDUcZRgR3BzV0a7\\/OdPtlv7i3TYSdqxrHknGWOAMk4HPtVfggEi8DmjVvpNJ0u6Ah3mTARj2Q+tLUvgM4WtAGtRW2lx53JIz58NUbOfc+1VQlp5yX5Y1cdM6ZlvI2v9bn\\/D2pG7LH52HrjyFVu8S3ivJRZbjbhjsLdyKYq+CjTemE6dZM0iceea0LR7Zo9NX5GaN859B5VWemjHdTpEv6yAGq\\/XCTWBRbe1uZYgONuRx9DQsrkVEYtl4rRlospn5lLdvQ4qB6y+S4t4WUKMHHOc1ZVS5LlxGLPxDgPKCe\\/pTsHTS3GoI16EvCDw7y4x9BUbFrTE0uOP8stUEzCVEGI89\\/tUjC2peGNhXaO2QTRlxJptmwgknETJ\\/wBQk4x6CgBLBOS6TWu3OATcbc\\/agpBo864+Q0wwyaeH6DTRreIZ8BlgB5CuiecCvuykjv2pB3FAg8gwKmNKQnCJ3PFRCDMhHlkVZ+n41Ks3mCKVkdIbjVsOEIjgxj6VyifMKN1ABe3rQ0AywrG2boomdJi3MM0Vdwm6gligCtuG1QRkf7\\/8ChA5itRsOCxCk+xqyWUSQJKYxgowiX2BGSfqaVKVbDL8FIn6d142yzm0kkgYY3RHfwPI4\\/7GutN6T1O\\/kUG2eCHOGkmBVR9T\\/wCBWzaA5t0Ph8K6\\/MvkaH6muHsJESAArIu4h8tVlmbFNuyvad0VZ6TbNLeT+IQMmSAk4+gxUzZwRralbO5e6BHG9yrL7e1C2t7dOLQrcSR72IITAGM+mKv9jFHqMDQXcaugGDgYJ+uKHZlH+5VrFYpIil+k8QJ+XxlDIp9m\\/wDdJPYSx3CvHa2l5GBkKGCNRunMsmrtphjQWciMCmPQ8VXtR1m7029FtaGNIYmIVdgo9idSxzW\\/5kAtzZRRhVGORuX25riPSIwgB0OKTH7ldcH+aO0jUHvbuzS6hgk8WHexKYOc1PXUMdrL4cKgJjPNDsyUf\\/\\/Z\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086014,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:14.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:15'),
(16960, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":true,\"id\":\"A5BE43A037A357777E2D3F4BC8BE5E3F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"matchedText\":\"https:\\/\\/www.instagram.com\\/p\\/DRzdg66Dlrj\\/?img_index=7&igsh=M2cxNjFqcjd4bnJ6\",\"title\":\"Iasmin T. - EMAGRECIMENTO SEM TERRORISMO no Instagram: \\\"✨ Guia do Monjauro: o que você precisa saber! Se você começou o tratamento com Monjauro, este carrossel é pra você 💚 Separei dicas práticas para aliviar sintomas, ajustar a alimentação e tornar essa fase muito mais tranquila e segura 👉 Passe para o lado para descobrir: • Como lidar com náuseas e desconfortos • Estratégias alimentares que fazem diferença • O que evitar e o que priorizar no dia a dia • E hábitos simples que ajudam MUITO no processo Lembre-se: cada corpo responde de um jeito e um acompanhamento nutricional + médico faz toda a diferença 🩺✨ #emagrecimento #monjauro #tizerpatida #deficitcalorico #nutri #dicadanutri\\\"\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCACMAIwDASIAAhEBAxEB\\/8QAHAAAAgMBAQEBAAAAAAAAAAAABAUDBgcCAQAI\\/8QANhAAAgEDAwIFAgQFAwUAAAAAAQIDAAQRBRIhMUEGEyJRcQdhIzKBsRQVQlKRFqHBMzRicuH\\/xAAZAQACAwEAAAAAAAAAAAAAAAACAwABBAX\\/xAAiEQACAwACAgIDAQAAAAAAAAAAAQIDERIhBDEyQRMiQlH\\/2gAMAwEAAhEDEQA\\/ANGtZQL0H2U1zdzliQDQrsbacmZ154Bz1rwkMcg0hsM5Jya8cYGRXhFcknoaEhGzY3fFZj9R9f3SHTrR84\\/6rA9D7Vb\\/ABjrC6TpjyAjzW9KD3NYncStI7yOSWY5J96OK0gNL6VP370N1OK7ncnrXMS5IppQVbR7yPYVzdMScLwKY6faGVcAHJ6V7daZPvKqhyKDktCxiIxN1yP1rtJHjPOMUQdOnMmGVq+urWWBR6cr3FXyRMPYmjl6+lveiYg0bbT39uhoGMZH2o+1kDRhJO3Q+1WgWSlMgY61b\\/p1rjadqYtZjiCchcn+luxqlXLvDtbqvv7URby71EkZwwOfg1GT2fpWGUOoIPFdhFkJZmxzxVW8E6r\\/ADTSIZCw8xBtcd80xv5We4IRsKg2jmrBzDjV5d0qg9KBEjxnMbkV3qDb5yR2OKHHSkBhSai6keauR7ipnv4TGW3Yx70rkbAPvSLxRfmy0qVwfU3pX5NTCym+M9UfVdalAfdBCSiY6fNVKaRpbjapwopiHEUW+Q8vk1HpNkbqZmA6mmaooiWvCCCxluHAjBP6VZ9G8K3FwVMi7R9xVs8KaJHDHvkUE9sirfDbquAoArLZ5D9I11+PvbK3pPhqK3UbgpYfamY0KBny6gn3p7FCM0QkAPWsrsbZqjVFIrEnhu1Z92zn4pRrPhyDyHCqOlaLHbr3HFB6lZK6EAdaJTaKdcX9H5+vtPNrM6HgA8fFChMbgf0NaB4z0loD5u3jGKomSAy9z0rfTPkjnXV8HgKX3RsjnIxXGmSGO48pzw3Gf2qF2KSkdq+PDAjqORThWGkfTrVTYarJbuSEnU7f\\/cdK0VPy8nJrFrSYoYriM4ZSrg1s2nQzXVlDPFtdHUHINRFSIJWz6vck\\/wC9QtJik0vi3SGICTnhcfkNL5\\/FenuWWJnYgE\\/l9qTjCH886L+ZgPk1RPHt8Jbi3tY2BVRvbHuelVnUdWuLm6aRpW9RzjPQe1DrI0knmOSSO5q1Es71HlkH9IGKsXg6FWUEjvSAlJYizH1KO9WfwSAyiguf6jKvkaVpkY2KR\\/inEKg0q08bQADTiGue0dKIRHGOwomOOo46KjFRIM7jjGOlQXkQ2jHWjUHFQ3KnFE10UVHX7Fby0kjI5I4+aw7WLZ7O7ljYFSrcV+hbpfUeKzn6haJ5sRvYVG5fz49qbRPi8EX18lpk87eYxbHNco2VGe3X4qSdSjkGoD6SG7Hg10Ec5rCx6WQ9myk5IOP0rS\\/B+t+VocUTvgxsV5rKtEkP4i\\/BptHcPBuRHIG7NQFrSovEAcrkfBo6xL\\/wtwSxPRRmp3teCa8XatlEFGWLsxH7VC8F7580g0QPTHUexjJlhXk787RQlnLyEIQO+avfgMZCD7Vnc74Bx1NX7wK0vkxeQMysMDPak3fEdT8jWLNAAOKYx4GKqn8FrbIClxGO\\/WvRca5aN+KvnIOpxmsnHfs3Kee0XWLmjI+KrumaibhASCj45Bp1BJvXrzVZg1PQ0TKgyxpfq\\/iKwso9jYeUjhF5JqHUC3llUOCe9V9NPtbR2uro+ZIffnNWmgZb9Ey6rdakT\\/B6e4T+5jih7\\/SL24iYNLGu4flzSW\\/+o9vZzvBbWbuIztLdB+lH23iWSS4igvbd7d5VDx5OVZTyCDTHGSW4JUot5plXinRptLv2t51wreqNh0+KrWMgqa2X6gWS6hpXnquZYDu++O9ZHfxeW4kUeh\\/3rRTPkjNfXxZLorFZ2GM4A\\/enLgs2cUl0n\\/umP\\/iP3p0cnH2p5mBpHHlP8UFCoKxZPc1I7fhP8VDGoIjweeaEskulEaEilLtyST1o6\\/fJ254ApPcyccVCzm5lIdSvatQ+nY224k\\/tQmspl5rUfpzMGtYyMkYKkUm\\/4j\\/H7kXG616ZL2Oysl3TsccnAHzSH\\/XOoid1mig2xsVZDkMeccVZotKh8\\/zfLXce+OaKg0WxV9\\/8PEXPJJUEms0ZQS9GuVdj9M5NwwVZFASbYJMA9QRmrBot2JkViaUy2cSjKouffHSu9Kk8hWXoM8UDf2g4proa30uWbFKZ2lFyH8tZFXpubii5JN0hrtEU9qFPHobjvTKKPBQnvJ5XuJEhlYsY1PHJzg+9WJNKiiRA2ZDGoVS5zgAYFOWGOgqJwe9Mdkpeyo0Rj2kLJohsZCoKkYIrJPGGlSabcSIq5tpDvjPsfatimFVbxzbpL4cvHKgtGm5T7GiplkgfIrTgZZo\\/Lse\\/Ap6QeuetIdIyFLZ6nNPA\\/sOtdA5Amd\\/wyB7VAjncK8kchcL1NdsgQA9M0AQNeScn78UvnBIFMJoi8o\\/zUdzbsgUEVCAB4YfFaD9Ln\\/CuU\\/skBH6j\\/wCVQJsZXHbir79OmWJJFx6yfUf2pd\\/wHeP80a9Y+tAaYpHSzSj+GvNO4sECsB2EtQFdIRH04FL429RIo\\/Xbkx26RwjDSMEJ9h3pdbrlgoP+ajQKWSCkPNG2xQqQWwa5e1EKqWdTn2r4IjDABB96oJ+wpYQ54NSSWYEJJ7UvEskB5yV9xUv8w3rtJq0WmA3KYY1WvGy7fCmpnv5X\\/NWqQ7zkVWfHxEfha8B\\/r2oP1IplfyQjyJLgzI9Pi226nvxTHBbvihrRM7F+TRKjjr0ronFFB2Rqeufeh5HyPTnNTyKNhdug4H3qNclSduKWMwNJgjjR92WKgEe1L9Quke39GS7MQPsKDuZXwKjUZxz0HFFpWETKen3qyeELs21\\/EHOA52mk8cW4ZNdruiYMvbv7UMlyWBRePTf9Jm\\/DGTzTjz9o9yao\\/gvV49RsY3yBKuFkX2PvVzEIlj3K3bt2rBJcX2dWFnKPRFNKWzu5qFIVaQMCVYdwaU6xNd2QYqVcduK40R9S1e1imtGjYMSpjDAMpHYijjW5dkcl\\/TwtUZyAHYHFSySLGuWO354pfZeH\\/EFx5Uip5aucKxb96dXHhcW0Ek\\/iHUAEiK5C8Ar89aP8JJW1x\\/rRRNqFtHktMgx981Assd7E8kGRtzh8YyaWa61tean\\/AAelQiKxSQ7SDkycAZJPOKsKwLHbLEi4CjAoJxUC+\\/b6IrQl4UZ+pFUb6o34KW2nxn1M3mN9vardqd\\/Do2mNPcsAsaf5PtWPXt7Lqt\\/Jdz\\/mkPA\\/tHYUfjw18jJ5VmLie2yBUYk9FyBXEb53fNSuwVZwMDjH7UFEfSSO5raYDiGNJIMlc4qXTI0e7RGAw2VGenI4oCDeAFUnLZ4ptp1o5ELj8wbt1yDWdvB+aJtYhQrHsXayjaw+9LFhYDirV4mtlj1WdFG0bydp7UkvcJEqgerimiiCMFG2kg55wDXwcJIVboKgXlwR1BzUt229VfHJ4NWQN0fU7nTLg3Vo3T8yHow9q1rwn4wttRiwMpKvDxt\\/xWN2vqgen3haPOoGNThnXj5FKtgmtGVTcXiNf1VVuoC8RBVhVXtJZtPusxyPbyhs5Xox9\\/vXVjfzWEgjuQ3lng5qxLbW96g3hWB5BpEJcTfCe9MNtfFetR2sUUUkB287yKFu7iXVpnn1e8kkkVcIiDgnsAP1qW30a3Tpux7bjTa0soYSGRFz745o3ajRH8cO4xxi7RtMMT+dKMOfyj2FMr65is7d5ZnVEUZLHjFGOVjUk8DrWNfVDxI13ObG1kIgX8+P6jSlF2SEXW8e2JvF3iOTxBqOyJitlG3oH933NBRSiPYF+aV24CYz1xUyyZbGevArdFKKxHLm3J6w+SXIYfb\\/AJFd2ke+HP3oAv8AnwaNsXxbijXbAYRYWsSyTQ3QKT5Iwexpr4ZeP+YQQ3LbWEuST0xmm+t2ME2qyl05K5yOOaj8I2NtfXV3DdxLKiIxXd1B+axRfI2S\\/VMq\\/wBQLlW16aWFgysc8Gqpc3JdtzH25p\\/48sotPu447cvtZdxDNnmqmxyhzzxWlGUlilIf\\/bNGyjzImUdxkUsQnANMLdj6QeRVkOrNyEBHGRz8irDoWY7yGZeCjjJ+1V2MbenvVo0pQLEv\\/VuHP60E30HBdmrXdpHeaMzFAW25BxzQukI0MIVGyvse1N9PONKQdttKYz5cpVelYtNy\\/wBHdvcgDD5U\\/ejVulA4NJYnYkAnivdUuHis2dMAgVNC5tCjxz4oGn2rQxt+LIMAZ6fesalla5uGkc5yck1zreoXF5qc73D7mLkfArhTsBx2FbK4cUYbLHJ9nTvtB981zHL6gRQysWgJJ5ya8QkdKYKGCPkGi4ZMRgA0ujJ5+KmVjjrRIprT\\/9k=\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/636717113_1180060870875062_1256163359642073115_n.enc?ccb=11-4&oh=01_Q5Aa3wFW7eSIkqLFZwdSMp3JQBuziRMamEovofb5nI_YR7udAw&oe=69B73F92&_nc_sid=5e03e0\",\"thumbnailSha256\":\"W9kapuCuoF2Q1VbkV6dLjJVGP4Zl+gcZIYs65\\/pT\\/VQ=\",\"thumbnailEncSha256\":\"EZePBMlwNqgy2S2DWDS0ACdylIV1yY++nApfkZof2oE=\",\"mediaKey\":\"LQrhJVUU5GUbrkv8p55vE4LLCdWBZHz1NQ\\/EQ3a00NE=\",\"mediaKeyTimestamp\":\"1771032214\",\"thumbnailHeight\":639,\"thumbnailWidth\":640,\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:15'),
(16961, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BE43A037A357777E2D3F4BC8BE5E3F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086013482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:15'),
(16962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:15'),
(16963, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:15'),
(16964, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:16'),
(16965, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:16'),
(16966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BE43A037A357777E2D3F4BC8BE5E3F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086013482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:13.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:16'),
(16967, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:14.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:16'),
(16968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:14.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:17'),
(16969, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:30.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:30'),
(16970, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:30.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:30'),
(16971, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:40.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:40'),
(16972, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:40.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:40'),
(16973, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:41'),
(16974, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACC334947883DC4EAC5F4C53673EA7F0\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Ela viu a Lívia procurando lugar pra sentar e não ofereceu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vwq1QhmYoKZ2fqXnst+Pf+v84RGIyQtn0Bhj1IpWpF4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771086041,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:20:41'),
(16975, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:41'),
(16976, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:41'),
(16977, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:41'),
(16978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:42'),
(16979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(16980, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"ACC334947883DC4EAC5F4C53673EA7F0\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Ela viu a Lívia procurando lugar pra sentar e não ofereceu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vwq1QhmYoKZ2fqXnst+Pf+v84RGIyQtn0Bhj1IpWpF4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771086041,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:20:42'),
(16981, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:42'),
(16982, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:41.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:43'),
(16983, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:43.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:20:43'),
(16984, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:20:43.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:20:43'),
(16985, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:12.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:12'),
(16986, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:12.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:12'),
(16987, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:22.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:22'),
(16988, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:22.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:22'),
(16989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:23.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:23'),
(16990, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0673CFA6507F1FDB805\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/vencimento 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086083,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:23.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:21:23'),
(16991, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:23.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:23'),
(16992, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:23.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:24'),
(16993, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0857EDA0EF84C2167BE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📚 *AJUDA - Comandos Admin*\\n\\n─────────────────────\\n📝 *\\/cadastro*\\nInicia cadastro interativo\\n\\n💰 *\\/pago TELEFONE*\\nConfirma pagamento PIX Manual\\n\\n✅ *\\/aprovar TELEFONE*\\nAprova pagamento automático\\n\\n⏸️ *\\/pausar TELEFONE*\\nPausa serviço do cliente\\n\\n▶️ *\\/reativar TELEFONE*\\nReativa serviço do cliente\\n\\n🔍 *\\/buscar TELEFONE*\\nBusca informações do cliente\\n\\n📋 *\\/pendentes*\\nLista clientes pendentes\\n\\n📅 *\\/vencimento*\\nConsulta seu vencimento\\n\\n❓ *\\/ajuda*\\nMostra esta mensagem\\n─────────────────────\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086084,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:24.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:24'),
(16994, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:23.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:24'),
(16995, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0857EDA0EF84C2167BE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📚 *AJUDA - Comandos Admin*\\n\\n─────────────────────\\n📝 *\\/cadastro*\\nInicia cadastro interativo\\n\\n💰 *\\/pago TELEFONE*\\nConfirma pagamento PIX Manual\\n\\n✅ *\\/aprovar TELEFONE*\\nAprova pagamento automático\\n\\n⏸️ *\\/pausar TELEFONE*\\nPausa serviço do cliente\\n\\n▶️ *\\/reativar TELEFONE*\\nReativa serviço do cliente\\n\\n🔍 *\\/buscar TELEFONE*\\nBusca informações do cliente\\n\\n📋 *\\/pendentes*\\nLista clientes pendentes\\n\\n📅 *\\/vencimento*\\nConsulta seu vencimento\\n\\n❓ *\\/ajuda*\\nMostra esta mensagem\\n─────────────────────\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086084,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:24.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:24'),
(16996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0673CFA6507F1FDB805\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/vencimento 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086083,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:23.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:21:24'),
(16997, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:29.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:29'),
(16998, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:29.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:29'),
(16999, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:31'),
(17000, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:31'),
(17001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01982AF9C151CEAAA58\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086091,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:21:31'),
(17002, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:31'),
(17003, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:31'),
(17004, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01982AF9C151CEAAA58\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/vencimento\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086091,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:21:32'),
(17005, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E75F870892673F52B6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Admin*\\n\\nUse \\/ajuda para ver os comandos disponíveis.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086091,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:32'),
(17006, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E75F870892673F52B6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *Admin*\\n\\nUse \\/ajuda para ver os comandos disponíveis.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086091,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:31.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:33'),
(17007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:45.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:45'),
(17008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:45.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:45'),
(17009, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:46.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:46'),
(17010, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:46.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:47'),
(17011, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00663F1BC6BF95AEF05\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pausar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086106,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:46.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:21:47'),
(17012, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:47.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:47'),
(17013, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:47.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:47'),
(17014, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B6E2775FA4AB0088BE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pausar TELEFONE\\n\\nExemplo: \\/pausar 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086107,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:47.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:47'),
(17015, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00663F1BC6BF95AEF05\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pausar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086106,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:46.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:21:48'),
(17016, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B6E2775FA4AB0088BE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pausar TELEFONE\\n\\nExemplo: \\/pausar 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086107,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:47.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:48'),
(17017, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:57.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:21:57'),
(17018, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:21:57.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:21:57'),
(17019, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:01.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:22:01'),
(17020, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB081C8893D08AADB2D60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086121,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:01.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:22:01'),
(17021, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:01.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:22:01'),
(17022, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:01.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:22:01'),
(17023, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:01.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:22:02'),
(17024, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0718125EE6F455CF642\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086122,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:02.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:22:02'),
(17025, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0718125EE6F455CF642\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086122,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:02.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:22:02'),
(17026, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB081C8893D08AADB2D60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086121,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:22:01.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:22:02'),
(17027, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:12.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:23:12'),
(17028, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:12.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:23:12'),
(17029, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:22.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:23:22'),
(17030, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:22.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:23:22'),
(17031, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:23:23'),
(17032, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:23:23'),
(17033, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACFA9CC270F5945C39062F40B3705576\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Qual dos downloads e pra fazer mano?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cM3MbKIosVsPV2eI5DW2Z11Ipeb2AHzEY7GyHDyM0PY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771086203,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:23:23'),
(17034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:23:23'),
(17035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:23:23'),
(17036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACFA9CC270F5945C39062F40B3705576\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Qual dos downloads e pra fazer mano?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cM3MbKIosVsPV2eI5DW2Z11Ipeb2AHzEY7GyHDyM0PY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771086203,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:23:24'),
(17037, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:23:24'),
(17038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:23:23.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:23:24'),
(17039, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:39.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:24:40'),
(17040, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC763A39DC8212F360E13CCFF539DB72\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/35155635_958744149817030_7796196997625067248_n.enc?ccb=11-4&oh=01_Q5Aa3wEWeWXEo409R0-oycHR2LYU5k4G8zDDtKbZ167v3UfMtA&oe=69B82CE4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Esse aqui?\",\"fileSha256\":\"5cm1G54Fg8fODYeWDc7J3NLJ9vuWPxqLcdMsEpRPTb4=\",\"fileLength\":\"130817\",\"height\":1600,\"width\":900,\"mediaKey\":\"NfTZfpjl0Eb5kIjsLa4CofQ\\/ZfqpSqFZf3v\\/lsC\\/FYY=\",\"fileEncSha256\":\"ugeBmPbxlLLF3q+XrNx2W2OS1PsmTTZdDMpo1+Yvhvw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/35155635_958744149817030_7796196997625067248_n.enc?ccb=11-4&oh=01_Q5Aa3wEWeWXEo409R0-oycHR2LYU5k4G8zDDtKbZ167v3UfMtA&oe=69B82CE4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771086279\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgQFAwEBAAMBAQAAAAAAAAAAAAAAAAABAwIE\\/9oADAMBAAIQAxAAAADOEL46NNzC0zjDsty+lZ6Ms7PMZ1Oe7vwaismVWKeCNufX5x1k8NmUIDXA\\/8QALBAAAQQABAQDCQAAAAAAAAAAAQACAxEEEiExBRNBURQiMhAzQkNSYWJjcf\\/aAAgBAQABPwABpO68g3cqjPxICLuVli7lGUsfcZXPk121Xmkd904kA6rMe5UDIX3zHUhhsIR71eGwo+asVDDHHbH2fY68xoUqDg3UkpzSDo11fxEZmAWnxljqKYQbslNcGvvOQnYgsZbJrPYhF91bkXElRuo+ohZumbqnyF+9InQahWjwuH6ijwz9iPDvzTsFI0jULwMvcIuRKcVK70a9UNl\\/\\/8QAGREAAwEBAQAAAAAAAAAAAAAAAAEREhBh\\/9oACAECAQE\\/AEiGhMbqIURj3lKz\\/8QAGxEBAQABBQAAAAAAAAAAAAAAAQIAEBESMDL\\/2gAIAQMBAT8A02yoV9phFCPN6P\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"zLnebCeka3xIn4+0yPFH7INHFq0W472pu3Na\\/VEN7jg04OKX\\/xBBnA==\",\"scanLengths\":[11841,52012,20348,46616],\"midQualityFileSha256\":\"V4Y2l7YJWQYNbJLdawrqRjAY276A+y+XqnniF837f\\/0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ytss\\/BL5\\/+bLzwDmoGR65or0hhXK5qCmz6odck7HuwI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771086279,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:39.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:24:40'),
(17041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:39.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:24:40'),
(17042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:40.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:24:40'),
(17043, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:40.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:24:40'),
(17044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:40.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:24:40'),
(17045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC763A39DC8212F360E13CCFF539DB72\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/35155635_958744149817030_7796196997625067248_n.enc?ccb=11-4&oh=01_Q5Aa3wEWeWXEo409R0-oycHR2LYU5k4G8zDDtKbZ167v3UfMtA&oe=69B82CE4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Esse aqui?\",\"fileSha256\":\"5cm1G54Fg8fODYeWDc7J3NLJ9vuWPxqLcdMsEpRPTb4=\",\"fileLength\":\"130817\",\"height\":1600,\"width\":900,\"mediaKey\":\"NfTZfpjl0Eb5kIjsLa4CofQ\\/ZfqpSqFZf3v\\/lsC\\/FYY=\",\"fileEncSha256\":\"ugeBmPbxlLLF3q+XrNx2W2OS1PsmTTZdDMpo1+Yvhvw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/35155635_958744149817030_7796196997625067248_n.enc?ccb=11-4&oh=01_Q5Aa3wEWeWXEo409R0-oycHR2LYU5k4G8zDDtKbZ167v3UfMtA&oe=69B82CE4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771086279\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgQFAwEBAAMBAQAAAAAAAAAAAAAAAAABAwIE\\/9oADAMBAAIQAxAAAADOEL46NNzC0zjDsty+lZ6Ms7PMZ1Oe7vwaismVWKeCNufX5x1k8NmUIDXA\\/8QALBAAAQQABAQDCQAAAAAAAAAAAQACAxEEEiExBRNBURQiMhAzQkNSYWJjcf\\/aAAgBAQABPwABpO68g3cqjPxICLuVli7lGUsfcZXPk121Xmkd904kA6rMe5UDIX3zHUhhsIR71eGwo+asVDDHHbH2fY68xoUqDg3UkpzSDo11fxEZmAWnxljqKYQbslNcGvvOQnYgsZbJrPYhF91bkXElRuo+ohZumbqnyF+9InQahWjwuH6ijwz9iPDvzTsFI0jULwMvcIuRKcVK70a9UNl\\/\\/8QAGREAAwEBAQAAAAAAAAAAAAAAAAEREhBh\\/9oACAECAQE\\/AEiGhMbqIURj3lKz\\/8QAGxEBAQABBQAAAAAAAAAAAAAAAQIAEBESMDL\\/2gAIAQMBAT8A02yoV9phFCPN6P\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"zLnebCeka3xIn4+0yPFH7INHFq0W472pu3Na\\/VEN7jg04OKX\\/xBBnA==\",\"scanLengths\":[11841,52012,20348,46616],\"midQualityFileSha256\":\"V4Y2l7YJWQYNbJLdawrqRjAY276A+y+XqnniF837f\\/0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ytss\\/BL5\\/+bLzwDmoGR65or0hhXK5qCmz6odck7HuwI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771086279,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:39.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:24:41'),
(17046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:24:40.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:24:41'),
(17047, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"16149513269440@lid\",\"fromMe\":false,\"id\":\"AC1449E696A14C80CF16B90AC8845605\"},\"pushName\":\".\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"16149513269440@lid\",\"fromMe\":false,\"id\":\"A5FC143DA46EE0C6E231637BB658BC06\"},\"text\":\"👍\",\"senderTimestampMs\":\"1771086402237\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771086402,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:26:42.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:26:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17048, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"16149513269440@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842632_771616411879955_1110015472393291357_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHxRPZd2O2u8iGvP0ASizBL4RQdYqnGAo35BDzLvJcg&oe=699D9B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:26:43.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:26:43'),
(17049, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"16149513269440@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842632_771616411879955_1110015472393291357_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHxRPZd2O2u8iGvP0ASizBL4RQdYqnGAo35BDzLvJcg&oe=699D9B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:26:43.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:26:43'),
(17050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"16149513269440@lid\",\"fromMe\":false,\"id\":\"AC1449E696A14C80CF16B90AC8845605\"},\"pushName\":\".\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"16149513269440@lid\",\"fromMe\":false,\"id\":\"A5FC143DA46EE0C6E231637BB658BC06\"},\"text\":\"👍\",\"senderTimestampMs\":\"1771086402237\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771086402,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:26:42.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:26:43'),
(17051, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"16149513269440@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842632_771616411879955_1110015472393291357_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHxRPZd2O2u8iGvP0ASizBL4RQdYqnGAo35BDzLvJcg&oe=699D9B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:26:43.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:26:43'),
(17052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"16149513269440@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491842632_771616411879955_1110015472393291357_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZHxRPZd2O2u8iGvP0ASizBL4RQdYqnGAo35BDzLvJcg&oe=699D9B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:26:43.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:26:43'),
(17053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59474091434D7929526BC807BA21198\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086448226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:28.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:28'),
(17054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59474091434D7929526BC807BA21198\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086448226,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:28.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:28'),
(17055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:29.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:27:29'),
(17056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A59474091434D7929526BC807BA21198\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634088358_900028919563376_3314360453485825498_n.enc?ccb=11-4&oh=01_Q5Aa3wEzTofJ7JyYXrAqwyHdSJAHUptcbuUp3PLHw2IEJOEgcQ&oe=69B81159&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KA8NXoInpcOzc0LSuEss1FaOu438ggiE\\/NSzpeIi0pg=\",\"fileLength\":\"24317\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"OyDOSwIZNOtAiiGhGhWoYd9kAR44nJ2qJYOthaDIW9A=\",\"fileEncSha256\":\"+cyBwmGbzvfVXVesDI01EA0bPmrqOtrQakNpAuUmYCA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634088358_900028919563376_3314360453485825498_n.enc?ccb=11-4&oh=01_Q5Aa3wEzTofJ7JyYXrAqwyHdSJAHUptcbuUp3PLHw2IEJOEgcQ&oe=69B81159&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771086438\",\"waveform\":\"ACA+MF8\\/T1ZXXDpYRVBUSVo9T09LPFBcSU1CU1dKOi88PyQkTDAbRjhcUElLR00hREhVSUohVFI8TTU7RFQzJw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771086449,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:29.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:29'),
(17057, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:29.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:27:29'),
(17058, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A59474091434D7929526BC807BA21198\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634088358_900028919563376_3314360453485825498_n.enc?ccb=11-4&oh=01_Q5Aa3wEzTofJ7JyYXrAqwyHdSJAHUptcbuUp3PLHw2IEJOEgcQ&oe=69B81159&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KA8NXoInpcOzc0LSuEss1FaOu438ggiE\\/NSzpeIi0pg=\",\"fileLength\":\"24317\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"OyDOSwIZNOtAiiGhGhWoYd9kAR44nJ2qJYOthaDIW9A=\",\"fileEncSha256\":\"+cyBwmGbzvfVXVesDI01EA0bPmrqOtrQakNpAuUmYCA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634088358_900028919563376_3314360453485825498_n.enc?ccb=11-4&oh=01_Q5Aa3wEzTofJ7JyYXrAqwyHdSJAHUptcbuUp3PLHw2IEJOEgcQ&oe=69B81159&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771086438\",\"waveform\":\"ACA+MF8\\/T1ZXXDpYRVBUSVo9T09LPFBcSU1CU1dKOi88PyQkTDAbRjhcUElLR00hREhVSUohVFI8TTU7RFQzJw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771086449,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:29.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:29'),
(17059, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:29.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:27:29'),
(17060, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:27:30'),
(17061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:29.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:27:30'),
(17062, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:27:30'),
(17063, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A58A865995759EFCFE147508259FE31F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636834855_1605198210609669_3003473678926216192_n.enc?ccb=11-4&oh=01_Q5Aa3wHMcoUJ1EfVxATaCVm6JEOpmvTQGcAxDgcdLfwRh_n8sA&oe=69B82EF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BqiTQIJY7gvrdPiL+mbKbsIfmCz2xUcl9dM2BHD8dkQ=\",\"fileLength\":\"4015\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"eCoL38VhMgilx5v5395+mgaeA4updfwZE8VsUd1Uchs=\",\"fileEncSha256\":\"FppJVI\\/w7sZ6DHGl2n4DKPDCdEsrvIJuznwTzMVWYAU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636834855_1605198210609669_3003473678926216192_n.enc?ccb=11-4&oh=01_Q5Aa3wHMcoUJ1EfVxATaCVm6JEOpmvTQGcAxDgcdLfwRh_n8sA&oe=69B82EF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771086449\",\"waveform\":\"Hg8AAAAFCgoJCw8SFRkeKDU7OjYtJBgQEBEZJD1UVFNQTUM5Mio\\/WmFiUjtCWWBbTzs3RE5TVVNSVFZZW1hSXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771086450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:30'),
(17064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:27:30'),
(17065, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:27:31'),
(17066, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A58A865995759EFCFE147508259FE31F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636834855_1605198210609669_3003473678926216192_n.enc?ccb=11-4&oh=01_Q5Aa3wHMcoUJ1EfVxATaCVm6JEOpmvTQGcAxDgcdLfwRh_n8sA&oe=69B82EF1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BqiTQIJY7gvrdPiL+mbKbsIfmCz2xUcl9dM2BHD8dkQ=\",\"fileLength\":\"4015\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"eCoL38VhMgilx5v5395+mgaeA4updfwZE8VsUd1Uchs=\",\"fileEncSha256\":\"FppJVI\\/w7sZ6DHGl2n4DKPDCdEsrvIJuznwTzMVWYAU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636834855_1605198210609669_3003473678926216192_n.enc?ccb=11-4&oh=01_Q5Aa3wHMcoUJ1EfVxATaCVm6JEOpmvTQGcAxDgcdLfwRh_n8sA&oe=69B82EF1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771086449\",\"waveform\":\"Hg8AAAAFCgoJCw8SFRkeKDU7OjYtJBgQEBEZJD1UVFNQTUM5Mio\\/WmFiUjtCWWBbTzs3RE5TVVNSVFZZW1hSXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771086450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:31'),
(17067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58A865995759EFCFE147508259FE31F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086450361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:31'),
(17068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58A865995759EFCFE147508259FE31F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086450361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:30.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:31'),
(17069, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58A865995759EFCFE147508259FE31F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086456138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:36.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:36'),
(17070, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59474091434D7929526BC807BA21198\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086456141,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:36.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:36'),
(17071, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58A865995759EFCFE147508259FE31F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086456138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:36.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:36'),
(17072, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59474091434D7929526BC807BA21198\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086456141,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:36.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:36'),
(17073, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59474091434D7929526BC807BA21198\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771086456610,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:36.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:36'),
(17074, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59474091434D7929526BC807BA21198\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771086456610,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:36.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:37'),
(17075, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58A865995759EFCFE147508259FE31F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771086464631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:44.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:27:44'),
(17076, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58A865995759EFCFE147508259FE31F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771086464631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:27:44.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:27:44'),
(17077, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5C28FCFCB50B21BCC9BF96BEDE93562\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ *Usuário:* 672904026\\n✅ *Senha:* 953233880\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:02.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:02'),
(17078, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:02.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:02'),
(17079, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5C28FCFCB50B21BCC9BF96BEDE93562\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ *Usuário:* 672904026\\n✅ *Senha:* 953233880\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:02.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:02'),
(17080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:02.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:02'),
(17081, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:02.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:02'),
(17082, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C28FCFCB50B21BCC9BF96BEDE93562\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086483099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:03.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:03'),
(17083, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C28FCFCB50B21BCC9BF96BEDE93562\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086483099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:03.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:03'),
(17084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:02.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:03'),
(17085, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:17.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:17'),
(17086, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:17.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:18'),
(17087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A541CB54CEB2DFCC7AD09D3E64B3E3BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Agr?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"ACC334947883DC4EAC5F4C53673EA7F0\",\"participant\":\"252012138635473@lid\",\"quotedMessage\":{\"conversation\":\"Ela viu a Lívia procurando lugar pra sentar e não ofereceu\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"ACC334947883DC4EAC5F4C53673EA7F0\",\"participant\":\"252012138635473@lid\",\"quotedMessage\":{\"conversation\":\"Ela viu a Lívia procurando lugar pra sentar e não ofereceu\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086497,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:17.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:18'),
(17088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:18.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:18'),
(17089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A541CB54CEB2DFCC7AD09D3E64B3E3BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Agr?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"ACC334947883DC4EAC5F4C53673EA7F0\",\"participant\":\"252012138635473@lid\",\"quotedMessage\":{\"conversation\":\"Ela viu a Lívia procurando lugar pra sentar e não ofereceu\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"ACC334947883DC4EAC5F4C53673EA7F0\",\"participant\":\"252012138635473@lid\",\"quotedMessage\":{\"conversation\":\"Ela viu a Lívia procurando lugar pra sentar e não ofereceu\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771086497,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:17.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:18'),
(17090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:18.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:18'),
(17091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A541CB54CEB2DFCC7AD09D3E64B3E3BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086498692,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:18.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:19'),
(17092, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A541CB54CEB2DFCC7AD09D3E64B3E3BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771086498692,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:18.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:19'),
(17093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A541CB54CEB2DFCC7AD09D3E64B3E3BA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086502317,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:22'),
(17094, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:22'),
(17095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A5C0D40DC2493BD301D812178882BF14\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Eu vi ela chamando a livia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086502,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:22'),
(17097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:22'),
(17098, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A5C0D40DC2493BD301D812178882BF14\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Eu vi ela chamando a livia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086502,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:23'),
(17099, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:23'),
(17100, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A5C0D40DC2493BD301D812178882BF14\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086502655,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:23'),
(17101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:23'),
(17102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A5C0D40DC2493BD301D812178882BF14\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086502655,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:22.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:23'),
(17103, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:26.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:26'),
(17104, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:26.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:26'),
(17105, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C28FCFCB50B21BCC9BF96BEDE93562\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086514478,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:34.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:34'),
(17106, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5C28FCFCB50B21BCC9BF96BEDE93562\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086514478,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:34.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:34'),
(17107, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:35.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:35'),
(17108, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:35.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:35'),
(17109, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:35.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:36'),
(17110, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:35.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:36'),
(17111, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC5C6CE17A79D4955AD236303231CCA1\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Depois de 30m\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dCE4QbTzWs\\/BanRJxWOe5wdBboZrEOp7ODBDOWjaU2I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771086516,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:36'),
(17112, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:36'),
(17113, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:36'),
(17114, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:37'),
(17115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:37'),
(17116, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:37'),
(17117, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:37'),
(17118, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC5C6CE17A79D4955AD236303231CCA1\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Depois de 30m\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dCE4QbTzWs\\/BanRJxWOe5wdBboZrEOp7ODBDOWjaU2I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771086516,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:36.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:37'),
(17119, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:39.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:39'),
(17120, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:39.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:39'),
(17121, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17122, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A52D85B0C487122423E5FD0DC3B2868B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Hm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:42'),
(17123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:42'),
(17124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A52D85B0C487122423E5FD0DC3B2868B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Hm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:42'),
(17125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A52D85B0C487122423E5FD0DC3B2868B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086522431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:28:42'),
(17126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A52D85B0C487122423E5FD0DC3B2868B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771086522431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:28:43'),
(17127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:43'),
(17128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFwQIGyvA6jZVNrpJiroTsYnFYMr2tSLAcBRroFzgfWOA&oe=699DB4D3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:42.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:43'),
(17129, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:44.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:44'),
(17130, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:44.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:45'),
(17131, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:44.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:45'),
(17132, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:44.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:45'),
(17133, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:45.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:28:45'),
(17134, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:28:45.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:28:45'),
(17135, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:22.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:32:22'),
(17136, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:22.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:32:23'),
(17137, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:23.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:32:23'),
(17138, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:23.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:32:23'),
(17139, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB081156E61DCF6F4141B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086743,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:23.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:32:23'),
(17140, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:23.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:32:24'),
(17141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:23.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:32:24'),
(17142, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07D4D8259FADF399D9C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento confirmado!*\\n\\n👤 *Cliente:* Teste16\\n📱 *Telefone:* 4791063914\\n💰 *Valor:* R$ 40,00\\n📅 *Novo Vencimento:* 16\\/03\\/2026\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086744,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:24.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:32:24'),
(17143, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07D4D8259FADF399D9C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento confirmado!*\\n\\n👤 *Cliente:* Teste16\\n📱 *Telefone:* 4791063914\\n💰 *Valor:* R$ 40,00\\n📅 *Novo Vencimento:* 16\\/03\\/2026\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771086744,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:24.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:32:24'),
(17144, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB081156E61DCF6F4141B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771086743,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:32:23.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:32:25'),
(17145, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:37:55.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:37:55'),
(17146, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:37:55.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:37:55'),
(17147, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:05.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:05'),
(17148, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:05.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:05'),
(17149, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:11.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:11'),
(17150, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:11.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:12'),
(17151, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:12'),
(17152, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:12'),
(17153, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGBx43SZINGpg4fh4lG0AN2hmncxCamDPiz6DJytFRrA&oe=699DADD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:12'),
(17154, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC4CBD0E9CEB0F11654761EF2C6719CD\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636852258_1261539639184247_1568863329098996375_n.enc?ccb=11-4&oh=01_Q5Aa3wG8gAR6sY1_Zw1K7pJrP5-Hn3484eDffMFLjE0OW9CiNw&oe=69B7FD58&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hiuaguUadVSMUslcd6METlZbGlnOIIJfOTp2oB9Fr9Q=\",\"fileLength\":\"39038\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"m4kqm6sVUxmqJ9Tu0zSU8UOW9+uZR9GiDQyyiA+9MNE=\",\"fileEncSha256\":\"AgwffUruAS0qkGy40HKURS5vtLlgZUWT4xHxPkccGQc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636852258_1261539639184247_1568863329098996375_n.enc?ccb=11-4&oh=01_Q5Aa3wG8gAR6sY1_Zw1K7pJrP5-Hn3484eDffMFLjE0OW9CiNw&oe=69B7FD58&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087076\",\"waveform\":\"IzFTVjtURjVJS1RMS0JEUk5UERVQSlZVMxYzUl0iF1JUVzlFShUkOktCUERNVFheSk1XFx9PI1AwFjRGUVIbKw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5EmH5e4uKssjk1zi\\/Av+59S0NrrWStqxPGfZqJg5tMs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087092,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:38:13'),
(17155, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGBx43SZINGpg4fh4lG0AN2hmncxCamDPiz6DJytFRrA&oe=699DADD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.840Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:13'),
(17156, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGBx43SZINGpg4fh4lG0AN2hmncxCamDPiz6DJytFRrA&oe=699DADD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:13'),
(17157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605093074_1587431292707224_3686744201712614561_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGBx43SZINGpg4fh4lG0AN2hmncxCamDPiz6DJytFRrA&oe=699DADD7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.840Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:13'),
(17158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC4CBD0E9CEB0F11654761EF2C6719CD\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636852258_1261539639184247_1568863329098996375_n.enc?ccb=11-4&oh=01_Q5Aa3wG8gAR6sY1_Zw1K7pJrP5-Hn3484eDffMFLjE0OW9CiNw&oe=69B7FD58&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hiuaguUadVSMUslcd6METlZbGlnOIIJfOTp2oB9Fr9Q=\",\"fileLength\":\"39038\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"m4kqm6sVUxmqJ9Tu0zSU8UOW9+uZR9GiDQyyiA+9MNE=\",\"fileEncSha256\":\"AgwffUruAS0qkGy40HKURS5vtLlgZUWT4xHxPkccGQc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636852258_1261539639184247_1568863329098996375_n.enc?ccb=11-4&oh=01_Q5Aa3wG8gAR6sY1_Zw1K7pJrP5-Hn3484eDffMFLjE0OW9CiNw&oe=69B7FD58&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087076\",\"waveform\":\"IzFTVjtURjVJS1RMS0JEUk5UERVQSlZVMxYzUl0iF1JUVzlFShUkOktCUERNVFheSk1XFx9PI1AwFjRGUVIbKw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5EmH5e4uKssjk1zi\\/Av+59S0NrrWStqxPGfZqJg5tMs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087092,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:12.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:38:16'),
(17159, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:20.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:20'),
(17160, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:20.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:20'),
(17161, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:21'),
(17162, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07F02689DF4B6111772\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771087101,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:38:21'),
(17163, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:21'),
(17164, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:21'),
(17165, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DA24FB5A938EB431E5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771087101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:38:21'),
(17166, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:21'),
(17167, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DA24FB5A938EB431E5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: Teste16\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771087101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:38:22'),
(17168, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07F02689DF4B6111772\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago 4791063914\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771087101,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:38:21.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:38:22'),
(17169, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD24F35A48319B9B4D347CC4F33113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771087314609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:54.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:41:54'),
(17170, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD24F35A48319B9B4D347CC4F33113\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771087314609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:54.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:41:55'),
(17171, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:41:56'),
(17172, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:41:56'),
(17173, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5DD24F35A48319B9B4D347CC4F33113\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771087315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:41:56'),
(17175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:41:56'),
(17176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:41:56'),
(17177, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:41:57'),
(17178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:41:57'),
(17179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5DD24F35A48319B9B4D347CC4F33113\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771087315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:41:57'),
(17180, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51097C0BD8995759E6CDDA5F8105BB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771087316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:41:57'),
(17182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:57.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:41:58'),
(17183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:57.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:41:58'),
(17184, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A51097C0BD8995759E6CDDA5F8105BB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771087316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:41:56.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:41:58'),
(17185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51097C0BD8995759E6CDDA5F8105BB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087322848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:02.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:42:02'),
(17186, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD24F35A48319B9B4D347CC4F33113\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087322852,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:02.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:42:02'),
(17187, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A51097C0BD8995759E6CDDA5F8105BB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087322848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:02.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:42:03'),
(17188, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5DD24F35A48319B9B4D347CC4F33113\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087322852,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:02.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:42:03'),
(17189, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:19.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:42:19'),
(17190, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:19.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:42:20'),
(17191, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:28.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:42:28'),
(17192, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:28.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:42:28'),
(17193, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:42:29'),
(17194, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2E76850E1E489F66BD5D25F3C7F768\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636839196_764745443372452_660914092341992791_n.enc?ccb=11-4&oh=01_Q5Aa3wHjTNxGCbrEFd2CNA7u3E42ay5lXbk1OL67ayiYGI4NBg&oe=69B822B5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yRvOyKA3T2CQrKUkQDgW9+9ZToIs0BkhIiJsFSkiY\\/0=\",\"fileLength\":\"20348\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"YegYRVEtcdAZh6afJfUgbznfcUzgRtUohtfnYzDMqNk=\",\"fileEncSha256\":\"X+O614Gc7aOTzLIOZ87uUSLxDfUQVf2giFfZoy64eV8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636839196_764745443372452_660914092341992791_n.enc?ccb=11-4&oh=01_Q5Aa3wHjTNxGCbrEFd2CNA7u3E42ay5lXbk1OL67ayiYGI4NBg&oe=69B822B5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087341\",\"waveform\":\"ERolY1RfRWM2RkBLS0tKVTZaXV1WNk07Lj07LAcODxEmWVhGX0lfM1gSSU9dJkI1UV9CYF8xKDg8QxpBEwoTIA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G3H1PTUZoiLuLet9+jEkqM7Rjmmj5cdKZgD2ox+dYFI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087348,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:42:29'),
(17195, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:42:29'),
(17196, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC2E76850E1E489F66BD5D25F3C7F768\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636839196_764745443372452_660914092341992791_n.enc?ccb=11-4&oh=01_Q5Aa3wHjTNxGCbrEFd2CNA7u3E42ay5lXbk1OL67ayiYGI4NBg&oe=69B822B5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yRvOyKA3T2CQrKUkQDgW9+9ZToIs0BkhIiJsFSkiY\\/0=\",\"fileLength\":\"20348\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"YegYRVEtcdAZh6afJfUgbznfcUzgRtUohtfnYzDMqNk=\",\"fileEncSha256\":\"X+O614Gc7aOTzLIOZ87uUSLxDfUQVf2giFfZoy64eV8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636839196_764745443372452_660914092341992791_n.enc?ccb=11-4&oh=01_Q5Aa3wHjTNxGCbrEFd2CNA7u3E42ay5lXbk1OL67ayiYGI4NBg&oe=69B822B5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087341\",\"waveform\":\"ERolY1RfRWM2RkBLS0tKVTZaXV1WNk07Lj07LAcODxEmWVhGX0lfM1gSSU9dJkI1UV9CYF8xKDg8QxpBEwoTIA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"G3H1PTUZoiLuLet9+jEkqM7Rjmmj5cdKZgD2ox+dYFI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087348,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:42:29'),
(17197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:42:29'),
(17198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:42:30'),
(17199, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:42:30'),
(17200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:42:29.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:42:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17201, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:17'),
(17202, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACE7DBFD785BDC877E1724E152CB09F7\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636903819_1216411640666570_4769826010602964383_n.enc?ccb=11-4&oh=01_Q5Aa3wFdtkv3myCyeGv7JX5em1Nc57EP5_sa-9zLO9odJQbDMA&oe=69B816C2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8091EVvaSLg51fzGdmwyfErPC686GaB\\/q3xytYtfYvc=\",\"fileLength\":\"112440\",\"height\":1600,\"width\":900,\"mediaKey\":\"TBPcMCQ1I4KW9UCGnClT1lLN\\/u7+rVPSNyathVutU0g=\",\"fileEncSha256\":\"wAs9e\\/lOwRggQ\\/aY1WHObTIRXQP+B03B0vG1jWHhE\\/I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636903819_1216411640666570_4769826010602964383_n.enc?ccb=11-4&oh=01_Q5Aa3wFdtkv3myCyeGv7JX5em1Nc57EP5_sa-9zLO9odJQbDMA&oe=69B816C2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087396\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAATpySjSYoKGJW7qk9krfNNBKmVozLvIr0DCGsdom7uAwf\\/8QAJBAAAQQCAgEEAwAAAAAAAAAAAQACAxESIQQTMhAiMUFCUWH\\/2gAIAQEAAT8AraG7CLMWj+oe0gIgJzqbZOl2RDeQ2jKwjzCMrKDsha7Yj+QUlujcCoIOO8HIlMhjheQ\\/bforkSx5YMCcDeiiQWuFp00HXEGtNjyXfwDEM4nWmHgvc6oiiYrNQFPfTSUZNVSzTJMXApvNcBQATgSFRWJq\\/QAqliFgE2Np+kGtA+FpaVBAKj+1\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAAEQETD\\/2gAIAQIBAT8AlUN4f\\/\\/EABURAQEAAAAAAAAAAAAAAAAAACAh\\/9oACAEDAQE\\/ADH\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"6gQk+4yLUfwnanOfa+p7TIINaINtKwaF7n6j5+hgUlA8qyLKvjYMBw==\",\"scanLengths\":[13096,38563,20136,40645],\"midQualityFileSha256\":\"hAE6YesPZEG4XAiY6qjqNutAQS6QFDOGtJG3\\/aSjSJI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KyNnFvTn0b61Fij1qsZwzk86o+rVJW77RYa+KNFQSO8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771087397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:43:18'),
(17203, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:18'),
(17204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:18'),
(17205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:18'),
(17206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:18'),
(17207, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:18'),
(17208, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"ACE7DBFD785BDC877E1724E152CB09F7\"},\"pushName\":\"Cida😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636903819_1216411640666570_4769826010602964383_n.enc?ccb=11-4&oh=01_Q5Aa3wFdtkv3myCyeGv7JX5em1Nc57EP5_sa-9zLO9odJQbDMA&oe=69B816C2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8091EVvaSLg51fzGdmwyfErPC686GaB\\/q3xytYtfYvc=\",\"fileLength\":\"112440\",\"height\":1600,\"width\":900,\"mediaKey\":\"TBPcMCQ1I4KW9UCGnClT1lLN\\/u7+rVPSNyathVutU0g=\",\"fileEncSha256\":\"wAs9e\\/lOwRggQ\\/aY1WHObTIRXQP+B03B0vG1jWHhE\\/I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636903819_1216411640666570_4769826010602964383_n.enc?ccb=11-4&oh=01_Q5Aa3wFdtkv3myCyeGv7JX5em1Nc57EP5_sa-9zLO9odJQbDMA&oe=69B816C2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087396\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD4AIwMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAATpySjSYoKGJW7qk9krfNNBKmVozLvIr0DCGsdom7uAwf\\/8QAJBAAAQQCAgEEAwAAAAAAAAAAAQACAxESIQQTMhAiMUFCUWH\\/2gAIAQEAAT8AraG7CLMWj+oe0gIgJzqbZOl2RDeQ2jKwjzCMrKDsha7Yj+QUlujcCoIOO8HIlMhjheQ\\/bforkSx5YMCcDeiiQWuFp00HXEGtNjyXfwDEM4nWmHgvc6oiiYrNQFPfTSUZNVSzTJMXApvNcBQATgSFRWJq\\/QAqliFgE2Np+kGtA+FpaVBAKj+1\\/8QAGBEAAgMAAAAAAAAAAAAAAAAAAAEQETD\\/2gAIAQIBAT8AlUN4f\\/\\/EABURAQEAAAAAAAAAAAAAAAAAACAh\\/9oACAEDAQE\\/ADH\\/AP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"6gQk+4yLUfwnanOfa+p7TIINaINtKwaF7n6j5+hgUlA8qyLKvjYMBw==\",\"scanLengths\":[13096,38563,20136,40645],\"midQualityFileSha256\":\"hAE6YesPZEG4XAiY6qjqNutAQS6QFDOGtJG3\\/aSjSJI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KyNnFvTn0b61Fij1qsZwzk86o+rVJW77RYa+KNFQSO8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771087397,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:17.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:43:18'),
(17209, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:25.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:25'),
(17210, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:25.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:25'),
(17211, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:34.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:34'),
(17212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:34.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:34'),
(17213, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:35'),
(17214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:35'),
(17215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC952851722C01F145EC0A52061324EF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635139954_4287334678262243_7836327563536291270_n.enc?ccb=11-4&oh=01_Q5Aa3wEJSUwXpZILY5-4-sy6hze8pxu99nMlPIBXZFx4V1skYA&oe=69B7FC10&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"J7lkH6ImMbJIB+akeybSpB3V6JKmuvFNQilyCc35kEo=\",\"fileLength\":\"19363\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"PRP1KP0FE7nKDyYMkLI7DvKANhbYjOTNTUECOW7KBOQ=\",\"fileEncSha256\":\"bTIomZl7wJynBTeIHw3eM3M00ih79PbNxc+dWpEL+\\/Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635139954_4287334678262243_7836327563536291270_n.enc?ccb=11-4&oh=01_Q5Aa3wEJSUwXpZILY5-4-sy6hze8pxu99nMlPIBXZFx4V1skYA&oe=69B7FC10&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087407\",\"waveform\":\"Dj5dOENiNkNPPEU8VysjSU9LRVZGSlVUIB8YFh0VGk8jPVpJKixHRT4eHldXW1lKNRQSThxLPUhQWDklUilISQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jUksLsKA6V0W0QqC112UmL1CzM2Poq4sfm1HFyBTjiY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:43:35'),
(17216, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:35'),
(17217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:35'),
(17218, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC952851722C01F145EC0A52061324EF\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635139954_4287334678262243_7836327563536291270_n.enc?ccb=11-4&oh=01_Q5Aa3wEJSUwXpZILY5-4-sy6hze8pxu99nMlPIBXZFx4V1skYA&oe=69B7FC10&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"J7lkH6ImMbJIB+akeybSpB3V6JKmuvFNQilyCc35kEo=\",\"fileLength\":\"19363\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"PRP1KP0FE7nKDyYMkLI7DvKANhbYjOTNTUECOW7KBOQ=\",\"fileEncSha256\":\"bTIomZl7wJynBTeIHw3eM3M00ih79PbNxc+dWpEL+\\/Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635139954_4287334678262243_7836327563536291270_n.enc?ccb=11-4&oh=01_Q5Aa3wEJSUwXpZILY5-4-sy6hze8pxu99nMlPIBXZFx4V1skYA&oe=69B7FC10&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087407\",\"waveform\":\"Dj5dOENiNkNPPEU8VysjSU9LRVZGSlVUIB8YFh0VGk8jPVpJKixHRT4eHldXW1lKNRQSThxLPUhQWDklUilISQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jUksLsKA6V0W0QqC112UmL1CzM2Poq4sfm1HFyBTjiY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:43:36'),
(17219, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:36'),
(17220, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:35.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:36'),
(17221, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:50.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:43:50'),
(17222, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:43:50.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:43:50'),
(17223, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:00.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:44:01'),
(17224, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:00.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:44:01'),
(17225, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:06.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:44:07'),
(17226, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:06.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:44:07'),
(17227, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:07.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:44:08'),
(17228, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:07.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:44:08'),
(17229, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACE492959EC0ADA616B7EFFEE3314133\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636858070_926638406514131_6265692363775337908_n.enc?ccb=11-4&oh=01_Q5Aa3wGP9OWm5VmCXN0jjxG_E1zFzVmOmROvMyJrtXuA6nQ5Vg&oe=69B82B63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pNt0FjbNDs1bAEA90NWRMSwPzzoYFUUsdTwtYk3dPbk=\",\"fileLength\":\"33273\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"UpdU7W\\/yxLqg9egTLYrSazz8CHFx5euGRtrtTxCAslU=\",\"fileEncSha256\":\"mGiHKwTsvq1Q0Cyp93FavyUiA3N9fY6EtksoZCuVbz4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636858070_926638406514131_6265692363775337908_n.enc?ccb=11-4&oh=01_Q5Aa3wGP9OWm5VmCXN0jjxG_E1zFzVmOmROvMyJrtXuA6nQ5Vg&oe=69B82B63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087432\",\"waveform\":\"AFFLSjNEOz9RQkY5LBsWG0YhPzA1QhQnLSc0FxcZGipBJ0YnOSc3HDE3MR0dGRsgPVBEMTFHMTg0PBk+SxggFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1ele+JCAi41wQn6Ypx2VYmuruuOkO8KtiwP5Qrmoq3o=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087447,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:07.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:44:08'),
(17230, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:07.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:44:08'),
(17231, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:08.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:44:08'),
(17232, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:07.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:44:08'),
(17233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:08.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:44:08'),
(17234, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACE492959EC0ADA616B7EFFEE3314133\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636858070_926638406514131_6265692363775337908_n.enc?ccb=11-4&oh=01_Q5Aa3wGP9OWm5VmCXN0jjxG_E1zFzVmOmROvMyJrtXuA6nQ5Vg&oe=69B82B63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pNt0FjbNDs1bAEA90NWRMSwPzzoYFUUsdTwtYk3dPbk=\",\"fileLength\":\"33273\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"UpdU7W\\/yxLqg9egTLYrSazz8CHFx5euGRtrtTxCAslU=\",\"fileEncSha256\":\"mGiHKwTsvq1Q0Cyp93FavyUiA3N9fY6EtksoZCuVbz4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636858070_926638406514131_6265692363775337908_n.enc?ccb=11-4&oh=01_Q5Aa3wGP9OWm5VmCXN0jjxG_E1zFzVmOmROvMyJrtXuA6nQ5Vg&oe=69B82B63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087432\",\"waveform\":\"AFFLSjNEOz9RQkY5LBsWG0YhPzA1QhQnLSc0FxcZGipBJ0YnOSc3HDE3MR0dGRsgPVBEMTFHMTg0PBk+SxggFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1ele+JCAi41wQn6Ypx2VYmuruuOkO8KtiwP5Qrmoq3o=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087447,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:44:07.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:44:09'),
(17235, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:46:42.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:46:42'),
(17236, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:46:42.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:46:42'),
(17237, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:46:52.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:46:52'),
(17238, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:46:52.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:46:52'),
(17239, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:02.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:47:02'),
(17240, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:02.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:47:03'),
(17241, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:09.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:47:09'),
(17242, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:09.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:47:09'),
(17243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:47:10'),
(17244, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:47:10'),
(17245, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC22A29D0A8E9147C5D3E91B73309D24\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/627358020_2398476283959897_4788188567996837388_n.enc?ccb=11-4&oh=01_Q5Aa3wE7d1sJXUfC3fuksbFO5L0LQMQT0V7zT34RKk7vw7hA7Q&oe=69B81B94&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3GTms3vp42F9BsvattUxioJLnn2\\/\\/Uzz8ITy92EssO0=\",\"fileLength\":\"61643\",\"seconds\":27,\"ptt\":true,\"mediaKey\":\"IM5jn+g6vofTr1C413p0ZKP\\/YatuC\\/oQnS6bH266LLk=\",\"fileEncSha256\":\"OMoYLTiPuWjS7SdP7br4EL7lmnlCDM+ZBN2FpppkiG8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/627358020_2398476283959897_4788188567996837388_n.enc?ccb=11-4&oh=01_Q5Aa3wE7d1sJXUfC3fuksbFO5L0LQMQT0V7zT34RKk7vw7hA7Q&oe=69B81B94&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087604\",\"waveform\":\"OysnWiRNMxFLXCheU1NLRU1XYyotWFBWRUthWUJQRhRjRFY4RFBEVzwZUC8VHVkdUVVFQjNJHB0rIF4fPFNNFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZYyvFFgK7Uk3pnchhQjjxgwcItCQNksRwdNco5avg88=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:47:10'),
(17246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:47:10'),
(17247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:47:10'),
(17248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:47:10'),
(17249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:47:11'),
(17250, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC22A29D0A8E9147C5D3E91B73309D24\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/627358020_2398476283959897_4788188567996837388_n.enc?ccb=11-4&oh=01_Q5Aa3wE7d1sJXUfC3fuksbFO5L0LQMQT0V7zT34RKk7vw7hA7Q&oe=69B81B94&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"3GTms3vp42F9BsvattUxioJLnn2\\/\\/Uzz8ITy92EssO0=\",\"fileLength\":\"61643\",\"seconds\":27,\"ptt\":true,\"mediaKey\":\"IM5jn+g6vofTr1C413p0ZKP\\/YatuC\\/oQnS6bH266LLk=\",\"fileEncSha256\":\"OMoYLTiPuWjS7SdP7br4EL7lmnlCDM+ZBN2FpppkiG8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/627358020_2398476283959897_4788188567996837388_n.enc?ccb=11-4&oh=01_Q5Aa3wE7d1sJXUfC3fuksbFO5L0LQMQT0V7zT34RKk7vw7hA7Q&oe=69B81B94&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087604\",\"waveform\":\"OysnWiRNMxFLXCheU1NLRU1XYyotWFBWRUthWUJQRhRjRFY4RFBEVzwZUC8VHVkdUVVFQjNJHB0rIF4fPFNNFw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZYyvFFgK7Uk3pnchhQjjxgwcItCQNksRwdNco5avg88=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:47:10.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:47:11'),
(17251, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636878622_4381076838835188_9107448904876037344_n.enc?ccb=11-4&oh=01_Q5Aa3wEDFLmRBjn-Z3l2BShijK_Yb6gQkw832c0uYtdLvCu3vg&oe=69B817AB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MWg1uDyF5ewNrfJTtMZUWxm\\/unTt3QxeiTs6GyebILE=\",\"fileLength\":\"21491\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"P7+hReLPaewvvkYY1zMQF2qFZ3wpOPu9IAS2ZrO1RHk=\",\"fileEncSha256\":\"lpWRpGzYDxiP+86syxV97UAY9ZZPeL1OhY7wBRoK2Ac=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636878622_4381076838835188_9107448904876037344_n.enc?ccb=11-4&oh=01_Q5Aa3wEDFLmRBjn-Z3l2BShijK_Yb6gQkw832c0uYtdLvCu3vg&oe=69B817AB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087680\",\"waveform\":\"AAQAGxwkUVlDKUdFST9SOCY7HUVAPDBKKz0wPT5LL0E4Rj8+Mx85UjU3NQ4pEiQjIx0rRj8xQT1MMSc7QUM9Hg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087688,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:09'),
(17252, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:09'),
(17253, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:09'),
(17254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:09'),
(17255, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771087689498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:09'),
(17256, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:09'),
(17257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636878622_4381076838835188_9107448904876037344_n.enc?ccb=11-4&oh=01_Q5Aa3wEDFLmRBjn-Z3l2BShijK_Yb6gQkw832c0uYtdLvCu3vg&oe=69B817AB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MWg1uDyF5ewNrfJTtMZUWxm\\/unTt3QxeiTs6GyebILE=\",\"fileLength\":\"21491\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"P7+hReLPaewvvkYY1zMQF2qFZ3wpOPu9IAS2ZrO1RHk=\",\"fileEncSha256\":\"lpWRpGzYDxiP+86syxV97UAY9ZZPeL1OhY7wBRoK2Ac=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636878622_4381076838835188_9107448904876037344_n.enc?ccb=11-4&oh=01_Q5Aa3wEDFLmRBjn-Z3l2BShijK_Yb6gQkw832c0uYtdLvCu3vg&oe=69B817AB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087680\",\"waveform\":\"AAQAGxwkUVlDKUdFST9SOCY7HUVAPDBKKz0wPT5LL0E4Rj8+Mx85UjU3NQ4pEiQjIx0rRj8xQT1MMSc7QUM9Hg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087688,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:10'),
(17258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771087689498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:09.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:10'),
(17259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087700546,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:20.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:20'),
(17260, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087700546,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:20.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:20'),
(17261, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087702537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:22.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:22'),
(17262, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52A2D144758C739A5E7572B6BB39AC3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087702537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:22.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:22'),
(17263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:31.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:31'),
(17264, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:31.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:31'),
(17265, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A57F6F0B3B29772676DD899620AD809B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637013486_1259510452838934_8578842788563906265_n.enc?ccb=11-4&oh=01_Q5Aa3wG0y_2PUehphqRDz-5yBG5FCj4v0WK7ESKYpIb67j8KjQ&oe=69B81B67&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HvOj0L1ZpxlUSyrM1G6LcoxRxUNj+L6OOaqA6fpWhKU=\",\"fileLength\":\"11340\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"noVNYcf8+DWj62yZqQnwcDyB1Asx4mzSpQfToocd12o=\",\"fileEncSha256\":\"z56I7QjQTdlR5+qK8PgIDB66t+2Ih+4zcLFz4MXa+0A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637013486_1259510452838934_8578842788563906265_n.enc?ccb=11-4&oh=01_Q5Aa3wG0y_2PUehphqRDz-5yBG5FCj4v0WK7ESKYpIb67j8KjQ&oe=69B81B67&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087708\",\"waveform\":\"AAAKFQ05ExgzREElUj9TPiMOTE9KSh9BQjwiNjc9PiEvMC01KUAxODlONzkhQDk\\/QD8sPkI4Rj4fNjYtPThAVA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087711,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:31.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:32.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:32'),
(17267, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A57F6F0B3B29772676DD899620AD809B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637013486_1259510452838934_8578842788563906265_n.enc?ccb=11-4&oh=01_Q5Aa3wG0y_2PUehphqRDz-5yBG5FCj4v0WK7ESKYpIb67j8KjQ&oe=69B81B67&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HvOj0L1ZpxlUSyrM1G6LcoxRxUNj+L6OOaqA6fpWhKU=\",\"fileLength\":\"11340\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"noVNYcf8+DWj62yZqQnwcDyB1Asx4mzSpQfToocd12o=\",\"fileEncSha256\":\"z56I7QjQTdlR5+qK8PgIDB66t+2Ih+4zcLFz4MXa+0A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637013486_1259510452838934_8578842788563906265_n.enc?ccb=11-4&oh=01_Q5Aa3wG0y_2PUehphqRDz-5yBG5FCj4v0WK7ESKYpIb67j8KjQ&oe=69B81B67&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087708\",\"waveform\":\"AAAKFQ05ExgzREElUj9TPiMOTE9KSh9BQjwiNjc9PiEvMC01KUAxODlONzkhQDk\\/QD8sPkI4Rj4fNjYtPThAVA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087711,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:31.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:32'),
(17268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:32.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:32'),
(17269, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A57F6F0B3B29772676DD899620AD809B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087712006,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:32.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:32'),
(17270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A57F6F0B3B29772676DD899620AD809B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087712006,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:32.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:33'),
(17271, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A57F6F0B3B29772676DD899620AD809B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087716593,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:36.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:36'),
(17272, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A57F6F0B3B29772676DD899620AD809B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087716593,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:36.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:36'),
(17273, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:39.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:39'),
(17274, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5E5AD3387FAFCFA42EA5F0FDBAE3D2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636671333_2014589705772723_5652028680737666080_n.enc?ccb=11-4&oh=01_Q5Aa3wGWNzqALPCcm_9Kh9qtO0UAt4hWihRBKNjr8pw2URv9PA&oe=69B82F45&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"J43Gkoftb3BZxqzBFSZAV\\/yym1rmjZ4G1z7\\/cnfYEyU=\",\"fileLength\":\"12840\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"+Qo+SU7FUGTrStCMJK596kiF2cb66vcJjz1SuM\\/INW8=\",\"fileEncSha256\":\"qiM5GZNBvzj8OwUUS3ft2iuAKwMpkXir3otzwMPcMHM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636671333_2014589705772723_5652028680737666080_n.enc?ccb=11-4&oh=01_Q5Aa3wGWNzqALPCcm_9Kh9qtO0UAt4hWihRBKNjr8pw2URv9PA&oe=69B82F45&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087715\",\"waveform\":\"AAwUQz1PKzw+VlRBL0lJRkJCSCFFR1FQQTtDRVApQDwaOT4cIjo\\/OjQyOD8\\/Fj0+LDcuOjhBHSoUGy41MUM0Mg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:39.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:39'),
(17275, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:39.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:40'),
(17276, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5E5AD3387FAFCFA42EA5F0FDBAE3D2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636671333_2014589705772723_5652028680737666080_n.enc?ccb=11-4&oh=01_Q5Aa3wGWNzqALPCcm_9Kh9qtO0UAt4hWihRBKNjr8pw2URv9PA&oe=69B82F45&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"J43Gkoftb3BZxqzBFSZAV\\/yym1rmjZ4G1z7\\/cnfYEyU=\",\"fileLength\":\"12840\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"+Qo+SU7FUGTrStCMJK596kiF2cb66vcJjz1SuM\\/INW8=\",\"fileEncSha256\":\"qiM5GZNBvzj8OwUUS3ft2iuAKwMpkXir3otzwMPcMHM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636671333_2014589705772723_5652028680737666080_n.enc?ccb=11-4&oh=01_Q5Aa3wGWNzqALPCcm_9Kh9qtO0UAt4hWihRBKNjr8pw2URv9PA&oe=69B82F45&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087715\",\"waveform\":\"AAwUQz1PKzw+VlRBL0lJRkJCSCFFR1FQQTtDRVApQDwaOT4cIjo\\/OjQyOD8\\/Fj0+LDcuOjhBHSoUGy41MUM0Mg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:39.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:40'),
(17278, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:40.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:40'),
(17279, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5E5AD3387FAFCFA42EA5F0FDBAE3D2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087720050,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:40.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:40'),
(17280, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:40.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:40'),
(17281, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5E5AD3387FAFCFA42EA5F0FDBAE3D2F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087722728,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:42.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:42'),
(17282, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5E5AD3387FAFCFA42EA5F0FDBAE3D2F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087722728,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:42.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:42'),
(17283, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:51.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:51'),
(17284, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:51.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:51'),
(17285, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:52'),
(17286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC0B13C6A5E5544ED68487EAADDC0CA4\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NUkgqt23H6uUw5MCtp6Z7z0XErdx8adVhyGmWIb++xw=\",\"fileLength\":\"121788\",\"height\":1600,\"width\":900,\"mediaKey\":\"Jc2njFJhS+Q0+fK8J35Uo3RlvHkuIs4G0Tw07ZAP8Bc=\",\"fileEncSha256\":\"kzu0JRvSACAoOWepGL5GMe1QDEU8XMM1BJeNz22PVKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQEAAAAAAAAAAAAAAAIAAwEE\\/9oADAMBAAIQAxAAAADEZUePqRjqJPzvFQOIO0d1tnMml0NHDFwV5Dc6NK8hOEwIt0Ss40OVUWlf\\/8QAKBAAAgIBAQcDBQAAAAAAAAAAAQIAAxEEEhMVITEzUQUUYiAiI0Fh\\/9oACAEBAAE\\/AGrP65iKmEi9TGxNKcUrFZkIMpcWbUr9PexSwImooahgpImn7SzqM5mgwLcnoBEva4\\/YuFnqACug+Mo7Qm6IZc4IlN26dsT3WpznAzNRbba+bOso7YmyK3U+Irfkb+mbx2A5jxLm2iOQ5SntiM+epMMDsOWZnMoXNQnDvnOH1+TOH1eTOH1eTEqVFCj6v\\/\\/EABwRAQACAgMBAAAAAAAAAAAAAAECEQADECAhIv\\/aAAgBAgEBPwClQxK410vrkig942MZPzGsA6\\/\\/xAAeEQEAAAYDAQAAAAAAAAAAAAABAAIDEBJBESAhMf\\/aAAgBAwEBPwCjNTMn55GQy8WnE1BYHb2\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QnU4g1I9RAiLypHOm7U1M0U5cbm7HDbj5+MIbfaMjn+Z0inSJEvRLA==\",\"scanLengths\":[13253,51975,17263,39297],\"midQualityFileSha256\":\"DXHZvFdZN8hxrHz4zFFb6958XMGHmqh8JqfZ1LEjaw4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jLt9DcpsKvuvXHjE2\\/YTR3Z2eOVliWRZaoo62k7dZps=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771087732,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:48:52'),
(17287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:52'),
(17288, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:52'),
(17289, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:52'),
(17290, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:53'),
(17291, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:48:53'),
(17292, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:53'),
(17293, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC0B13C6A5E5544ED68487EAADDC0CA4\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NUkgqt23H6uUw5MCtp6Z7z0XErdx8adVhyGmWIb++xw=\",\"fileLength\":\"121788\",\"height\":1600,\"width\":900,\"mediaKey\":\"Jc2njFJhS+Q0+fK8J35Uo3RlvHkuIs4G0Tw07ZAP8Bc=\",\"fileEncSha256\":\"kzu0JRvSACAoOWepGL5GMe1QDEU8XMM1BJeNz22PVKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQEAAAAAAAAAAAAAAAIAAwEE\\/9oADAMBAAIQAxAAAADEZUePqRjqJPzvFQOIO0d1tnMml0NHDFwV5Dc6NK8hOEwIt0Ss40OVUWlf\\/8QAKBAAAgIBAQcDBQAAAAAAAAAAAQIAAxEEEhMVITEzUQUUYiAiI0Fh\\/9oACAEBAAE\\/AGrP65iKmEi9TGxNKcUrFZkIMpcWbUr9PexSwImooahgpImn7SzqM5mgwLcnoBEva4\\/YuFnqACug+Mo7Qm6IZc4IlN26dsT3WpznAzNRbba+bOso7YmyK3U+Irfkb+mbx2A5jxLm2iOQ5SntiM+epMMDsOWZnMoXNQnDvnOH1+TOH1eTOH1eTEqVFCj6v\\/\\/EABwRAQACAgMBAAAAAAAAAAAAAAECEQADECAhIv\\/aAAgBAgEBPwClQxK410vrkig942MZPzGsA6\\/\\/xAAeEQEAAAYDAQAAAAAAAAAAAAABAAIDEBJBESAhMf\\/aAAgBAwEBPwCjNTMn55GQy8WnE1BYHb2\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QnU4g1I9RAiLypHOm7U1M0U5cbm7HDbj5+MIbfaMjn+Z0inSJEvRLA==\",\"scanLengths\":[13253,51975,17263,39297],\"midQualityFileSha256\":\"DXHZvFdZN8hxrHz4zFFb6958XMGHmqh8JqfZ1LEjaw4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jLt9DcpsKvuvXHjE2\\/YTR3Z2eOVliWRZaoo62k7dZps=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771087732,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:48:53'),
(17294, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:48:52.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:48:54'),
(17295, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:03.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:03'),
(17296, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:03.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:03'),
(17297, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:07.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:07'),
(17298, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:07.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:07'),
(17299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:08'),
(17300, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC184B94F77A8B570391E9F50D448D13\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633957737_795826876920902_6970501411125816332_n.enc?ccb=11-4&oh=01_Q5Aa3wEp5hK5WeBlm5U7h9TlsCQoSORwIJmGj4AlNJDpMK_7vw&oe=69B82EBE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"mv16u0bOgrD68P23mIKQ4mhHBY719\\/TrXr9Z+7D9nlk=\",\"fileLength\":\"35173\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"XByeB8zZFr4OQmXnMaZMV37bnerPACMbS0hwSGzkpPk=\",\"fileEncSha256\":\"K3KwunJYioDCxeWg2KOA12D0kbQSbMPoviEUVyxPEo8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633957737_795826876920902_6970501411125816332_n.enc?ccb=11-4&oh=01_Q5Aa3wEp5hK5WeBlm5U7h9TlsCQoSORwIJmGj4AlNJDpMK_7vw&oe=69B82EBE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087733\",\"waveform\":\"C2BQJ0pKREM3TURUTi47SlRBEREdO0tSVDJRJj1VMUU8S0dAHxcoRFdMIkc4M0QlOkYuFx4dNDs4UCw9NysqGA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BtoABUtc5bPEHlUorqPyAbLLZkvnm6sApzDlM7VmfV0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087747,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:49:08'),
(17301, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:08'),
(17302, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:08'),
(17303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC184B94F77A8B570391E9F50D448D13\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/633957737_795826876920902_6970501411125816332_n.enc?ccb=11-4&oh=01_Q5Aa3wEp5hK5WeBlm5U7h9TlsCQoSORwIJmGj4AlNJDpMK_7vw&oe=69B82EBE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"mv16u0bOgrD68P23mIKQ4mhHBY719\\/TrXr9Z+7D9nlk=\",\"fileLength\":\"35173\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"XByeB8zZFr4OQmXnMaZMV37bnerPACMbS0hwSGzkpPk=\",\"fileEncSha256\":\"K3KwunJYioDCxeWg2KOA12D0kbQSbMPoviEUVyxPEo8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/633957737_795826876920902_6970501411125816332_n.enc?ccb=11-4&oh=01_Q5Aa3wEp5hK5WeBlm5U7h9TlsCQoSORwIJmGj4AlNJDpMK_7vw&oe=69B82EBE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087733\",\"waveform\":\"C2BQJ0pKREM3TURUTi47SlRBEREdO0tSVDJRJj1VMUU8S0dAHxcoRFdMIkc4M0QlOkYuFx4dNDs4UCw9NysqGA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BtoABUtc5bPEHlUorqPyAbLLZkvnm6sApzDlM7VmfV0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087747,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:49:08'),
(17304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771087748994,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:49:09'),
(17305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:09.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:09'),
(17306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771087748994,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:49:09'),
(17307, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:09.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:09'),
(17308, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:09'),
(17309, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587119270_4285915781686319_4746104016286638799_n.enc?ccb=11-4&oh=01_Q5Aa3wE_VSUDAdPFpFyLipR-tdualfgeu8tSItVvt48ogZSmBg&oe=69B80232&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9rVQZ7XzYsj9VPle88oiNITU\\/aCBkmlnGLYmHi8byAM=\",\"fileLength\":\"34905\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"uHAdsgi5yoFAyhyT8LPsYxqdEoNMkMqrLe9rug6CwZk=\",\"fileEncSha256\":\"PDjTcYLlc7sRcTA5O2w0fJ8r\\/6gFzGULJ2nSkfQxneU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587119270_4285915781686319_4746104016286638799_n.enc?ccb=11-4&oh=01_Q5Aa3wE_VSUDAdPFpFyLipR-tdualfgeu8tSItVvt48ogZSmBg&oe=69B80232&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087734\",\"waveform\":\"ACwUVFM6OyQgSEhdLR48SBFTTwZNNjIVHiA6Ry5LTUpJLExLP0QsT08wQUBPTU1HLUw9Gw8AAl0+PVA+OFUBAQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087748,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:49:10'),
(17310, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":true,\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587119270_4285915781686319_4746104016286638799_n.enc?ccb=11-4&oh=01_Q5Aa3wE_VSUDAdPFpFyLipR-tdualfgeu8tSItVvt48ogZSmBg&oe=69B80232&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9rVQZ7XzYsj9VPle88oiNITU\\/aCBkmlnGLYmHi8byAM=\",\"fileLength\":\"34905\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"uHAdsgi5yoFAyhyT8LPsYxqdEoNMkMqrLe9rug6CwZk=\",\"fileEncSha256\":\"PDjTcYLlc7sRcTA5O2w0fJ8r\\/6gFzGULJ2nSkfQxneU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587119270_4285915781686319_4746104016286638799_n.enc?ccb=11-4&oh=01_Q5Aa3wE_VSUDAdPFpFyLipR-tdualfgeu8tSItVvt48ogZSmBg&oe=69B80232&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087734\",\"waveform\":\"ACwUVFM6OyQgSEhdLR48SBFTTwZNNjIVHiA6Ry5LTUpJLExLP0QsT08wQUBPTU1HLUw9Gw8AAl0+PVA+OFUBAQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087748,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:49:10'),
(17311, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:10'),
(17312, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:10'),
(17313, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:10'),
(17314, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:08.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:11'),
(17315, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:21'),
(17316, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC7CD124EC39CD77C6443EFDCC21A897\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"gIF5HrsiSTv\\/gvJGcjoUHer9nxlKXqKhMxqUWab6mwI=\",\"fileLength\":\"127115\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDfeJfzsHidqyN+VI6vQMJNw2FXGaJ95EHKk\\/Bn043U=\",\"fileEncSha256\":\"w2HjX\\/OZxTDAFFzfewzZvlJiNWlWX0h2gR24tT3+hXI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087760\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAEDBQIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAO4QB7hQsZFSub51N5zzWEyTXExbVb2rYgskgRRdyvj1Vmy0oHQ\\/\\/8QAJRAAAgEEAQMEAwAAAAAAAAAAAAECAxESUQQQITITFDFCIlJT\\/9oACAEBAAE\\/AOraRlHaPc1W+ySM60n5WHGcvmbHSv8ALZ6URRIxFExMHohFZpNpIhHirvkjLjbiN8bcRVKH7ROzZGMdIxWkWWjFEJrYpraM0y5cqcWn9bofHt9mOnOKdpMUKrXmz0av9GOQ2Tf4speK6f\\/EABoRAAMBAAMAAAAAAAAAAAAAAAABERIQIFH\\/2gAIAQIBAT8AyzDMP3il60rP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESETD\\/2gAIAQMBAT8A1FIrl\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"OOBZRwd\\/rtcj8RYjuAFjwIU2UWWK3ejdeFTRf1hDufWZB8R90hdBMg==\",\"scanLengths\":[8704,23769,23777,70865],\"midQualityFileSha256\":\"LSOfUxK\\/WmLcDmRZzWUrI24KmeyJQgIxTabBBwVdNXA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9GWMDri0nevGcyCPtHCLz9Rbmc8qIdwKhrhWKqlHbiM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771087761,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:49:21'),
(17317, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:21'),
(17318, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:21'),
(17319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC7CD124EC39CD77C6443EFDCC21A897\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"gIF5HrsiSTv\\/gvJGcjoUHer9nxlKXqKhMxqUWab6mwI=\",\"fileLength\":\"127115\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDfeJfzsHidqyN+VI6vQMJNw2FXGaJ95EHKk\\/Bn043U=\",\"fileEncSha256\":\"w2HjX\\/OZxTDAFFzfewzZvlJiNWlWX0h2gR24tT3+hXI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087760\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAEDBQIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAO4QB7hQsZFSub51N5zzWEyTXExbVb2rYgskgRRdyvj1Vmy0oHQ\\/\\/8QAJRAAAgEEAQMEAwAAAAAAAAAAAAECAxESUQQQITITFDFCIlJT\\/9oACAEBAAE\\/AOraRlHaPc1W+ySM60n5WHGcvmbHSv8ALZ6URRIxFExMHohFZpNpIhHirvkjLjbiN8bcRVKH7ROzZGMdIxWkWWjFEJrYpraM0y5cqcWn9bofHt9mOnOKdpMUKrXmz0av9GOQ2Tf4speK6f\\/EABoRAAMBAAMAAAAAAAAAAAAAAAABERIQIFH\\/2gAIAQIBAT8AyzDMP3il60rP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESETD\\/2gAIAQMBAT8A1FIrl\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"OOBZRwd\\/rtcj8RYjuAFjwIU2UWWK3ejdeFTRf1hDufWZB8R90hdBMg==\",\"scanLengths\":[8704,23769,23777,70865],\"midQualityFileSha256\":\"LSOfUxK\\/WmLcDmRZzWUrI24KmeyJQgIxTabBBwVdNXA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9GWMDri0nevGcyCPtHCLz9Rbmc8qIdwKhrhWKqlHbiM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771087761,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:49:21'),
(17320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:22'),
(17321, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:22'),
(17322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:21.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:22'),
(17323, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:23.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:23'),
(17324, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:23.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17325, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:32'),
(17326, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:32'),
(17327, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:32'),
(17328, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:33'),
(17329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:33'),
(17330, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACBC6CDD29EDE489ED63D8B2355CA376\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/13785248_1609763043395097_3164158887140355752_n.enc?ccb=11-4&oh=01_Q5Aa3wHaFg9eq5L402Ihas-GLrsBjTccn8AL9cxzBGSwZO7X-g&oe=69B80332&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fFhu9FRoeL2HvYWiLDZtievRiMz+EPL0HxcXE\\/Aw9\\/M=\",\"fileLength\":\"16103\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"bIQ2Nt5UR6psv1s5xjhw0zREDntdFgi9WQT2PFFGXSE=\",\"fileEncSha256\":\"Ne\\/Er5hx31kOPrgTfygocMThALib\\/xb0vI9V8GfhLv8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/13785248_1609763043395097_3164158887140355752_n.enc?ccb=11-4&oh=01_Q5Aa3wHaFg9eq5L402Ihas-GLrsBjTccn8AL9cxzBGSwZO7X-g&oe=69B80332&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087764\",\"contextInfo\":{\"stanzaId\":\"AC7CD124EC39CD77C6443EFDCC21A897\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"gIF5HrsiSTv\\/gvJGcjoUHer9nxlKXqKhMxqUWab6mwI=\",\"fileLength\":\"127115\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDfeJfzsHidqyN+VI6vQMJNw2FXGaJ95EHKk\\/Bn043U=\",\"fileEncSha256\":\"w2HjX\\/OZxTDAFFzfewzZvlJiNWlWX0h2gR24tT3+hXI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087760\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAEDBQIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAO4QB7hQsZFSub51N5zzWEyTXExbVb2rYgskgRRdyvj1Vmy0oHQ\\/\\/8QAJRAAAgEEAQMEAwAAAAAAAAAAAAECAxESUQQQITITFDFCIlJT\\/9oACAEBAAE\\/AOraRlHaPc1W+ySM60n5WHGcvmbHSv8ALZ6URRIxFExMHohFZpNpIhHirvkjLjbiN8bcRVKH7ROzZGMdIxWkWWjFEJrYpraM0y5cqcWn9bofHt9mOnOKdpMUKrXmz0av9GOQ2Tf4speK6f\\/EABoRAAMBAAMAAAAAAAAAAAAAAAABERIQIFH\\/2gAIAQIBAT8AyzDMP3il60rP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESETD\\/2gAIAQMBAT8A1FIrl\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"OOBZRwd\\/rtcj8RYjuAFjwIU2UWWK3ejdeFTRf1hDufWZB8R90hdBMg==\",\"scanLengths\":[8704,23769,23777,70865],\"midQualityFileSha256\":\"LSOfUxK\\/WmLcDmRZzWUrI24KmeyJQgIxTabBBwVdNXA=\"}}},\"waveform\":\"ABg5QSFEIlVLQ0cqOS5ASzxCSRpHJjFDKzwcOj5MHTwtNEQbM0FIPDM\\/SR4aHhkhHhoeHRsdIB0aJB8gGiAkJA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SmBkBnf1sW9EoreMlmeWMRQuXXlj0AH9m\\/WEkH8d81Q=\"}},\"contextInfo\":{\"stanzaId\":\"AC7CD124EC39CD77C6443EFDCC21A897\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"gIF5HrsiSTv\\/gvJGcjoUHer9nxlKXqKhMxqUWab6mwI=\",\"fileLength\":\"127115\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDfeJfzsHidqyN+VI6vQMJNw2FXGaJ95EHKk\\/Bn043U=\",\"fileEncSha256\":\"w2HjX\\/OZxTDAFFzfewzZvlJiNWlWX0h2gR24tT3+hXI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087760\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAEDBQIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAO4QB7hQsZFSub51N5zzWEyTXExbVb2rYgskgRRdyvj1Vmy0oHQ\\/\\/8QAJRAAAgEEAQMEAwAAAAAAAAAAAAECAxESUQQQITITFDFCIlJT\\/9oACAEBAAE\\/AOraRlHaPc1W+ySM60n5WHGcvmbHSv8ALZ6URRIxFExMHohFZpNpIhHirvkjLjbiN8bcRVKH7ROzZGMdIxWkWWjFEJrYpraM0y5cqcWn9bofHt9mOnOKdpMUKrXmz0av9GOQ2Tf4speK6f\\/EABoRAAMBAAMAAAAAAAAAAAAAAAABERIQIFH\\/2gAIAQIBAT8AyzDMP3il60rP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESETD\\/2gAIAQMBAT8A1FIrl\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"OOBZRwd\\/rtcj8RYjuAFjwIU2UWWK3ejdeFTRf1hDufWZB8R90hdBMg==\",\"scanLengths\":[8704,23769,23777,70865],\"midQualityFileSha256\":\"LSOfUxK\\/WmLcDmRZzWUrI24KmeyJQgIxTabBBwVdNXA=\"}}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087772,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:49:33'),
(17331, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:33'),
(17332, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:33.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:49:33'),
(17333, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:33.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:49:34'),
(17334, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACBC6CDD29EDE489ED63D8B2355CA376\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/13785248_1609763043395097_3164158887140355752_n.enc?ccb=11-4&oh=01_Q5Aa3wHaFg9eq5L402Ihas-GLrsBjTccn8AL9cxzBGSwZO7X-g&oe=69B80332&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fFhu9FRoeL2HvYWiLDZtievRiMz+EPL0HxcXE\\/Aw9\\/M=\",\"fileLength\":\"16103\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"bIQ2Nt5UR6psv1s5xjhw0zREDntdFgi9WQT2PFFGXSE=\",\"fileEncSha256\":\"Ne\\/Er5hx31kOPrgTfygocMThALib\\/xb0vI9V8GfhLv8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/13785248_1609763043395097_3164158887140355752_n.enc?ccb=11-4&oh=01_Q5Aa3wHaFg9eq5L402Ihas-GLrsBjTccn8AL9cxzBGSwZO7X-g&oe=69B80332&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087764\",\"contextInfo\":{\"stanzaId\":\"AC7CD124EC39CD77C6443EFDCC21A897\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"gIF5HrsiSTv\\/gvJGcjoUHer9nxlKXqKhMxqUWab6mwI=\",\"fileLength\":\"127115\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDfeJfzsHidqyN+VI6vQMJNw2FXGaJ95EHKk\\/Bn043U=\",\"fileEncSha256\":\"w2HjX\\/OZxTDAFFzfewzZvlJiNWlWX0h2gR24tT3+hXI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087760\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAEDBQIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAO4QB7hQsZFSub51N5zzWEyTXExbVb2rYgskgRRdyvj1Vmy0oHQ\\/\\/8QAJRAAAgEEAQMEAwAAAAAAAAAAAAECAxESUQQQITITFDFCIlJT\\/9oACAEBAAE\\/AOraRlHaPc1W+ySM60n5WHGcvmbHSv8ALZ6URRIxFExMHohFZpNpIhHirvkjLjbiN8bcRVKH7ROzZGMdIxWkWWjFEJrYpraM0y5cqcWn9bofHt9mOnOKdpMUKrXmz0av9GOQ2Tf4speK6f\\/EABoRAAMBAAMAAAAAAAAAAAAAAAABERIQIFH\\/2gAIAQIBAT8AyzDMP3il60rP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESETD\\/2gAIAQMBAT8A1FIrl\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"OOBZRwd\\/rtcj8RYjuAFjwIU2UWWK3ejdeFTRf1hDufWZB8R90hdBMg==\",\"scanLengths\":[8704,23769,23777,70865],\"midQualityFileSha256\":\"LSOfUxK\\/WmLcDmRZzWUrI24KmeyJQgIxTabBBwVdNXA=\"}}},\"waveform\":\"ABg5QSFEIlVLQ0cqOS5ASzxCSRpHJjFDKzwcOj5MHTwtNEQbM0FIPDM\\/SR4aHhkhHhoeHRsdIB0aJB8gGiAkJA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SmBkBnf1sW9EoreMlmeWMRQuXXlj0AH9m\\/WEkH8d81Q=\"}},\"contextInfo\":{\"stanzaId\":\"AC7CD124EC39CD77C6443EFDCC21A897\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"gIF5HrsiSTv\\/gvJGcjoUHer9nxlKXqKhMxqUWab6mwI=\",\"fileLength\":\"127115\",\"height\":1600,\"width\":900,\"mediaKey\":\"oDfeJfzsHidqyN+VI6vQMJNw2FXGaJ95EHKk\\/Bn043U=\",\"fileEncSha256\":\"w2HjX\\/OZxTDAFFzfewzZvlJiNWlWX0h2gR24tT3+hXI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636843859_1229970189259641_8876462150690046155_n.enc?ccb=11-4&oh=01_Q5Aa3wFR6VGTA7m-ZmpQlN9FX9ydugc4NgoqREV3Lo6pnJCn8Q&oe=69B804B7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087760\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABAEDBQIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAO4QB7hQsZFSub51N5zzWEyTXExbVb2rYgskgRRdyvj1Vmy0oHQ\\/\\/8QAJRAAAgEEAQMEAwAAAAAAAAAAAAECAxESUQQQITITFDFCIlJT\\/9oACAEBAAE\\/AOraRlHaPc1W+ySM60n5WHGcvmbHSv8ALZ6URRIxFExMHohFZpNpIhHirvkjLjbiN8bcRVKH7ROzZGMdIxWkWWjFEJrYpraM0y5cqcWn9bofHt9mOnOKdpMUKrXmz0av9GOQ2Tf4speK6f\\/EABoRAAMBAAMAAAAAAAAAAAAAAAABERIQIFH\\/2gAIAQIBAT8AyzDMP3il60rP\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESETD\\/2gAIAQMBAT8A1FIrl\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"OOBZRwd\\/rtcj8RYjuAFjwIU2UWWK3ejdeFTRf1hDufWZB8R90hdBMg==\",\"scanLengths\":[8704,23769,23777,70865],\"midQualityFileSha256\":\"LSOfUxK\\/WmLcDmRZzWUrI24KmeyJQgIxTabBBwVdNXA=\"}}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087772,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:49:32.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:49:34'),
(17335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087869325,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:09.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:51:09'),
(17336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771087869325,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:09.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:51:10'),
(17337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087870106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:10.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:51:10'),
(17338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"A5EBD10D65AD2C238B20CFA1F46BAAC8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771087870106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:10.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:51:10'),
(17339, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:27.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:51:28'),
(17340, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:27.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:51:28'),
(17341, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:31.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:51:31'),
(17342, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:31.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:51:31'),
(17343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:31.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:51:32'),
(17344, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:31.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:51:32'),
(17345, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC90407596739A4839C08D32E23E5BA2\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637221270_885134140944621_4461160223056955397_n.enc?ccb=11-4&oh=01_Q5Aa3wGbYJt21uRDvUCVcgMv0cdVn1Z_gFsTwAlDz9jbPV01pA&oe=69B80680&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MRNqmOrMNlYVnSK\\/e4QA7xx2CEcnz+MZieDvjlYjJuM=\",\"fileLength\":\"6485\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"hTeDwU28egrjgxgQH3U4Uguq9KK6bm8VUFC67Qts4ao=\",\"fileEncSha256\":\"uiSon\\/VLd3DH6LrMMiDkNuQUDgdJRTKm51EWEoy7BVQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637221270_885134140944621_4461160223056955397_n.enc?ccb=11-4&oh=01_Q5Aa3wGbYJt21uRDvUCVcgMv0cdVn1Z_gFsTwAlDz9jbPV01pA&oe=69B80680&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087889\",\"waveform\":\"ABFXY2M3KmNjYj5NTBJMTixAQjU7PjUvTzUuRkMVWFhQKjAAUGBcPxYAACsGAAEAAAAAAAAAAAAAAAAAAAIMBg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"034OlCweygu2eg962i61ZGncwAj8DT0+Nxf2af3XXRI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:31.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 13:51:32'),
(17346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:32.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:51:32'),
(17347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:32.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 13:51:32'),
(17348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:32.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:51:32'),
(17349, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"251904210772212@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:32.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 13:51:32'),
(17350, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"251904210772212@lid\",\"fromMe\":false,\"id\":\"AC90407596739A4839C08D32E23E5BA2\"},\"pushName\":\"Cida😎\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637221270_885134140944621_4461160223056955397_n.enc?ccb=11-4&oh=01_Q5Aa3wGbYJt21uRDvUCVcgMv0cdVn1Z_gFsTwAlDz9jbPV01pA&oe=69B80680&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MRNqmOrMNlYVnSK\\/e4QA7xx2CEcnz+MZieDvjlYjJuM=\",\"fileLength\":\"6485\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"hTeDwU28egrjgxgQH3U4Uguq9KK6bm8VUFC67Qts4ao=\",\"fileEncSha256\":\"uiSon\\/VLd3DH6LrMMiDkNuQUDgdJRTKm51EWEoy7BVQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637221270_885134140944621_4461160223056955397_n.enc?ccb=11-4&oh=01_Q5Aa3wGbYJt21uRDvUCVcgMv0cdVn1Z_gFsTwAlDz9jbPV01pA&oe=69B80680&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087889\",\"waveform\":\"ABFXY2M3KmNjYj5NTBJMTixAQjU7PjUvTzUuRkMVWFhQKjAAUGBcPxYAACsGAAEAAAAAAAAAAAAAAAAAAAIMBg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"034OlCweygu2eg962i61ZGncwAj8DT0+Nxf2af3XXRI=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771087891,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T13:51:31.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 13:51:32'),
(17351, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:19.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:00:19'),
(17352, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:19.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:00:19'),
(17353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:00:26'),
(17354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC6D7FD0E30C8135922AC641411977BA\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"extendedTextMessage\":{\"text\":\"Essa benca nao ta mais abrindo tbm\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC0B13C6A5E5544ED68487EAADDC0CA4\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NUkgqt23H6uUw5MCtp6Z7z0XErdx8adVhyGmWIb++xw=\",\"fileLength\":\"121788\",\"height\":1600,\"width\":900,\"mediaKey\":\"Jc2njFJhS+Q0+fK8J35Uo3RlvHkuIs4G0Tw07ZAP8Bc=\",\"fileEncSha256\":\"kzu0JRvSACAoOWepGL5GMe1QDEU8XMM1BJeNz22PVKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQEAAAAAAAAAAAAAAAIAAwEE\\/9oADAMBAAIQAxAAAADEZUePqRjqJPzvFQOIO0d1tnMml0NHDFwV5Dc6NK8hOEwIt0Ss40OVUWlf\\/8QAKBAAAgIBAQcDBQAAAAAAAAAAAQIAAxEEEhMVITEzUQUUYiAiI0Fh\\/9oACAEBAAE\\/AGrP65iKmEi9TGxNKcUrFZkIMpcWbUr9PexSwImooahgpImn7SzqM5mgwLcnoBEva4\\/YuFnqACug+Mo7Qm6IZc4IlN26dsT3WpznAzNRbba+bOso7YmyK3U+Irfkb+mbx2A5jxLm2iOQ5SntiM+epMMDsOWZnMoXNQnDvnOH1+TOH1eTOH1eTEqVFCj6v\\/\\/EABwRAQACAgMBAAAAAAAAAAAAAAECEQADECAhIv\\/aAAgBAgEBPwClQxK410vrkig942MZPzGsA6\\/\\/xAAeEQEAAAYDAQAAAAAAAAAAAAABAAIDEBJBESAhMf\\/aAAgBAwEBPwCjNTMn55GQy8WnE1BYHb2\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QnU4g1I9RAiLypHOm7U1M0U5cbm7HDbj5+MIbfaMjn+Z0inSJEvRLA==\",\"scanLengths\":[13253,51975,17263,39297],\"midQualityFileSha256\":\"DXHZvFdZN8hxrHz4zFFb6958XMGHmqh8JqfZ1LEjaw4=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SfKeughZZZglTqaYCQ1NZ6NjhufHfvxuQRV10qp2Fss=\"}},\"contextInfo\":{\"stanzaId\":\"AC0B13C6A5E5544ED68487EAADDC0CA4\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NUkgqt23H6uUw5MCtp6Z7z0XErdx8adVhyGmWIb++xw=\",\"fileLength\":\"121788\",\"height\":1600,\"width\":900,\"mediaKey\":\"Jc2njFJhS+Q0+fK8J35Uo3RlvHkuIs4G0Tw07ZAP8Bc=\",\"fileEncSha256\":\"kzu0JRvSACAoOWepGL5GMe1QDEU8XMM1BJeNz22PVKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQEAAAAAAAAAAAAAAAIAAwEE\\/9oADAMBAAIQAxAAAADEZUePqRjqJPzvFQOIO0d1tnMml0NHDFwV5Dc6NK8hOEwIt0Ss40OVUWlf\\/8QAKBAAAgIBAQcDBQAAAAAAAAAAAQIAAxEEEhMVITEzUQUUYiAiI0Fh\\/9oACAEBAAE\\/AGrP65iKmEi9TGxNKcUrFZkIMpcWbUr9PexSwImooahgpImn7SzqM5mgwLcnoBEva4\\/YuFnqACug+Mo7Qm6IZc4IlN26dsT3WpznAzNRbba+bOso7YmyK3U+Irfkb+mbx2A5jxLm2iOQ5SntiM+epMMDsOWZnMoXNQnDvnOH1+TOH1eTOH1eTEqVFCj6v\\/\\/EABwRAQACAgMBAAAAAAAAAAAAAAECEQADECAhIv\\/aAAgBAgEBPwClQxK410vrkig942MZPzGsA6\\/\\/xAAeEQEAAAYDAQAAAAAAAAAAAAABAAIDEBJBESAhMf\\/aAAgBAwEBPwCjNTMn55GQy8WnE1BYHb2\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QnU4g1I9RAiLypHOm7U1M0U5cbm7HDbj5+MIbfaMjn+Z0inSJEvRLA==\",\"scanLengths\":[13253,51975,17263,39297],\"midQualityFileSha256\":\"DXHZvFdZN8hxrHz4zFFb6958XMGHmqh8JqfZ1LEjaw4=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771088425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:00:26'),
(17355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:00:26'),
(17356, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:00:26'),
(17357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:00:26'),
(17358, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC6D7FD0E30C8135922AC641411977BA\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"extendedTextMessage\":{\"text\":\"Essa benca nao ta mais abrindo tbm\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC0B13C6A5E5544ED68487EAADDC0CA4\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NUkgqt23H6uUw5MCtp6Z7z0XErdx8adVhyGmWIb++xw=\",\"fileLength\":\"121788\",\"height\":1600,\"width\":900,\"mediaKey\":\"Jc2njFJhS+Q0+fK8J35Uo3RlvHkuIs4G0Tw07ZAP8Bc=\",\"fileEncSha256\":\"kzu0JRvSACAoOWepGL5GMe1QDEU8XMM1BJeNz22PVKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQEAAAAAAAAAAAAAAAIAAwEE\\/9oADAMBAAIQAxAAAADEZUePqRjqJPzvFQOIO0d1tnMml0NHDFwV5Dc6NK8hOEwIt0Ss40OVUWlf\\/8QAKBAAAgIBAQcDBQAAAAAAAAAAAQIAAxEEEhMVITEzUQUUYiAiI0Fh\\/9oACAEBAAE\\/AGrP65iKmEi9TGxNKcUrFZkIMpcWbUr9PexSwImooahgpImn7SzqM5mgwLcnoBEva4\\/YuFnqACug+Mo7Qm6IZc4IlN26dsT3WpznAzNRbba+bOso7YmyK3U+Irfkb+mbx2A5jxLm2iOQ5SntiM+epMMDsOWZnMoXNQnDvnOH1+TOH1eTOH1eTEqVFCj6v\\/\\/EABwRAQACAgMBAAAAAAAAAAAAAAECEQADECAhIv\\/aAAgBAgEBPwClQxK410vrkig942MZPzGsA6\\/\\/xAAeEQEAAAYDAQAAAAAAAAAAAAABAAIDEBJBESAhMf\\/aAAgBAwEBPwCjNTMn55GQy8WnE1BYHb2\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QnU4g1I9RAiLypHOm7U1M0U5cbm7HDbj5+MIbfaMjn+Z0inSJEvRLA==\",\"scanLengths\":[13253,51975,17263,39297],\"midQualityFileSha256\":\"DXHZvFdZN8hxrHz4zFFb6958XMGHmqh8JqfZ1LEjaw4=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SfKeughZZZglTqaYCQ1NZ6NjhufHfvxuQRV10qp2Fss=\"}},\"contextInfo\":{\"stanzaId\":\"AC0B13C6A5E5544ED68487EAADDC0CA4\",\"participant\":\"554799410718@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NUkgqt23H6uUw5MCtp6Z7z0XErdx8adVhyGmWIb++xw=\",\"fileLength\":\"121788\",\"height\":1600,\"width\":900,\"mediaKey\":\"Jc2njFJhS+Q0+fK8J35Uo3RlvHkuIs4G0Tw07ZAP8Bc=\",\"fileEncSha256\":\"kzu0JRvSACAoOWepGL5GMe1QDEU8XMM1BJeNz22PVKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636878953_1207247148160361_2181921728641588771_n.enc?ccb=11-4&oh=01_Q5Aa3wGtxPO9xCiK3sweZzKLWNOxbP1ZfCJSwBZdDlZO5a8p4w&oe=69B8100E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771087730\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABAIDBQEBAQEBAQEAAAAAAAAAAAAAAAIAAwEE\\/9oADAMBAAIQAxAAAADEZUePqRjqJPzvFQOIO0d1tnMml0NHDFwV5Dc6NK8hOEwIt0Ss40OVUWlf\\/8QAKBAAAgIBAQcDBQAAAAAAAAAAAQIAAxEEEhMVITEzUQUUYiAiI0Fh\\/9oACAEBAAE\\/AGrP65iKmEi9TGxNKcUrFZkIMpcWbUr9PexSwImooahgpImn7SzqM5mgwLcnoBEva4\\/YuFnqACug+Mo7Qm6IZc4IlN26dsT3WpznAzNRbba+bOso7YmyK3U+Irfkb+mbx2A5jxLm2iOQ5SntiM+epMMDsOWZnMoXNQnDvnOH1+TOH1eTOH1eTEqVFCj6v\\/\\/EABwRAQACAgMBAAAAAAAAAAAAAAECEQADECAhIv\\/aAAgBAgEBPwClQxK410vrkig942MZPzGsA6\\/\\/xAAeEQEAAAYDAQAAAAAAAAAAAAABAAIDEBJBESAhMf\\/aAAgBAwEBPwCjNTMn55GQy8WnE1BYHb2\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"QnU4g1I9RAiLypHOm7U1M0U5cbm7HDbj5+MIbfaMjn+Z0inSJEvRLA==\",\"scanLengths\":[13253,51975,17263,39297],\"midQualityFileSha256\":\"DXHZvFdZN8hxrHz4zFFb6958XMGHmqh8JqfZ1LEjaw4=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771088425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:00:26'),
(17359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:00:26'),
(17360, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:00:26.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:00:26'),
(17361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC0DDF2FBD812C1DD3B2C821D59FD08A\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635540180_1264678685557608_3161636210835939875_n.enc?ccb=11-4&oh=01_Q5Aa3wGO7SrodrvwvuPkG2-nhOrWmI3HsYbLlP8UQy5nXfnqBQ&oe=69B82C93&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"QC9YtM103joQiPfm7tt9DIB4dhkUbDbIn7UsbmCM5D0=\",\"fileLength\":\"42676\",\"height\":1600,\"width\":900,\"mediaKey\":\"npSjN8qefUJcxynWtAFm383dOHfIj\\/Jt8Tm4GxnTDOk=\",\"fileEncSha256\":\"Id2U+Zbg7If0EtBgh027m7YYbDPtqtJf6Q+Qk\\/M0IDA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635540180_1264678685557608_3161636210835939875_n.enc?ccb=11-4&oh=01_Q5Aa3wGO7SrodrvwvuPkG2-nhOrWmI3HsYbLlP8UQy5nXfnqBQ&oe=69B82C93&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088546\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAQIDBQQBAQEBAQEAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACwFKAgIkZd3R2+jlmT052ZJrhy3qzWU2xDCFkZiYxEg\\/\\/EACMQAAEDAgYDAQAAAAAAAAAAAAEAAhEDBBASFCAhUyMwQ1H\\/2gAIAQEAAT8A9MphuKseRC2ue1aWt3rRVj9loKvcVbUWZGOjmEAg0fiAAwotysaEBsYOFCjCE0bW7f\\/EABoRAAEFAQAAAAAAAAAAAAAAAAIAARASUSD\\/2gAIAQIBAT8AlgZUHFQc7\\/\\/EABkRAQACAwAAAAAAAAAAAAAAAAEAEgIQIP\\/aAAgBAwEBPwDbkyzLPf8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"6s3GO9A6jUN1e60loHd\\/A5\\/83J5kOANFNzypR4d\\/WukfEm91YTtJpQ==\",\"scanLengths\":[7153,13074,3465,18984],\"midQualityFileSha256\":\"24VPY\\/j43+Cj8RBwSMwuaksQ\\/CAhTxRP3dj\\/yrRQxN0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tGr5MlCBCOrps5e9OPhLAxgBlGw\\/B9MFQ3IpJHvvVUs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771088547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:27'),
(17362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:27'),
(17363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:27'),
(17364, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:28'),
(17365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:28'),
(17366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:28'),
(17367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:28'),
(17368, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:28.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:28');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17369, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"AC0DDF2FBD812C1DD3B2C821D59FD08A\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635540180_1264678685557608_3161636210835939875_n.enc?ccb=11-4&oh=01_Q5Aa3wGO7SrodrvwvuPkG2-nhOrWmI3HsYbLlP8UQy5nXfnqBQ&oe=69B82C93&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"QC9YtM103joQiPfm7tt9DIB4dhkUbDbIn7UsbmCM5D0=\",\"fileLength\":\"42676\",\"height\":1600,\"width\":900,\"mediaKey\":\"npSjN8qefUJcxynWtAFm383dOHfIj\\/Jt8Tm4GxnTDOk=\",\"fileEncSha256\":\"Id2U+Zbg7If0EtBgh027m7YYbDPtqtJf6Q+Qk\\/M0IDA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635540180_1264678685557608_3161636210835939875_n.enc?ccb=11-4&oh=01_Q5Aa3wGO7SrodrvwvuPkG2-nhOrWmI3HsYbLlP8UQy5nXfnqBQ&oe=69B82C93&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088546\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAQIDBQQBAQEBAQEAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACwFKAgIkZd3R2+jlmT052ZJrhy3qzWU2xDCFkZiYxEg\\/\\/EACMQAAEDAgYDAQAAAAAAAAAAAAEAAhEDBBASFCAhUyMwQ1H\\/2gAIAQEAAT8A9MphuKseRC2ue1aWt3rRVj9loKvcVbUWZGOjmEAg0fiAAwotysaEBsYOFCjCE0bW7f\\/EABoRAAEFAQAAAAAAAAAAAAAAAAIAARASUSD\\/2gAIAQIBAT8AlgZUHFQc7\\/\\/EABkRAQACAwAAAAAAAAAAAAAAAAEAEgIQIP\\/aAAgBAwEBPwDbkyzLPf8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"6s3GO9A6jUN1e60loHd\\/A5\\/83J5kOANFNzypR4d\\/WukfEm91YTtJpQ==\",\"scanLengths\":[7153,13074,3465,18984],\"midQualityFileSha256\":\"24VPY\\/j43+Cj8RBwSMwuaksQ\\/CAhTxRP3dj\\/yrRQxN0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tGr5MlCBCOrps5e9OPhLAxgBlGw\\/B9MFQ3IpJHvvVUs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771088547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:27.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:28'),
(17370, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:28.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:28'),
(17371, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:34'),
(17372, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACB8394A7A532CBB8CA13DCFF1D62CE6\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Vou tentar nesse ai agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sRwQdxqkcGl8TxzAw5gBMFXIKmtqZ8+\\/etS16xRaP4c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771088554,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:34'),
(17373, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:34'),
(17374, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACB8394A7A532CBB8CA13DCFF1D62CE6\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Vou tentar nesse ai agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sRwQdxqkcGl8TxzAw5gBMFXIKmtqZ8+\\/etS16xRaP4c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771088554,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:34'),
(17375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:34'),
(17376, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:35'),
(17377, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:35'),
(17378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:34.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:35'),
(17379, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:36'),
(17380, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5594868ED6ACDA9E55E1F26905F7910\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635565784_2492278587896436_2114910948654686570_n.enc?ccb=11-4&oh=01_Q5Aa3wEvodBxLol1VT5AdnbHZO4nJYTydcim5u3rnR1Vei62fA&oe=69B821B9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yWAy6u4CVXlAUcswi+s1Kzw8L1rgGvE3VG\\/MFb+pfdY=\",\"fileLength\":\"5797\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"8a9f\\/\\/4aArd4GJHDnjNZ\\/D5ludme7+Fnnd7uc0yyuas=\",\"fileEncSha256\":\"caTEr6POKkeR9+zl18BYc4tWE5hb1KOJHTjWWWATZQM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635565784_2492278587896436_2114910948654686570_n.enc?ccb=11-4&oh=01_Q5Aa3wEvodBxLol1VT5AdnbHZO4nJYTydcim5u3rnR1Vei62fA&oe=69B821B9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088554\",\"waveform\":\"AAAAAAACAQAAF09OTExVU08sIxMgSUlOT0ghPkBPUVBOTExKRktPS0skOkdBNiAHAAAAAAAAAAACAQAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771088556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:36'),
(17381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:36'),
(17382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5594868ED6ACDA9E55E1F26905F7910\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635565784_2492278587896436_2114910948654686570_n.enc?ccb=11-4&oh=01_Q5Aa3wEvodBxLol1VT5AdnbHZO4nJYTydcim5u3rnR1Vei62fA&oe=69B821B9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"yWAy6u4CVXlAUcswi+s1Kzw8L1rgGvE3VG\\/MFb+pfdY=\",\"fileLength\":\"5797\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"8a9f\\/\\/4aArd4GJHDnjNZ\\/D5ludme7+Fnnd7uc0yyuas=\",\"fileEncSha256\":\"caTEr6POKkeR9+zl18BYc4tWE5hb1KOJHTjWWWATZQM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635565784_2492278587896436_2114910948654686570_n.enc?ccb=11-4&oh=01_Q5Aa3wEvodBxLol1VT5AdnbHZO4nJYTydcim5u3rnR1Vei62fA&oe=69B821B9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088554\",\"waveform\":\"AAAAAAACAQAAF09OTExVU08sIxMgSUlOT0ghPkBPUVBOTExKRktPS0skOkdBNiAHAAAAAAAAAAACAQAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771088556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:36'),
(17384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:37'),
(17385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:37'),
(17386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5594868ED6ACDA9E55E1F26905F7910\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088556579,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:36.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:37'),
(17387, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5594868ED6ACDA9E55E1F26905F7910\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771088557689,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:37.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:37'),
(17388, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5594868ED6ACDA9E55E1F26905F7910\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771088557689,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:37.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:38'),
(17389, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A56693FB2B5CF0418443FF38F85CACEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11927734_1233938231619622_1885257912488083468_n.enc?ccb=11-4&oh=01_Q5Aa3wGxm7HmgMupUhLJ76WIy4WMkyXOGyG75R6RFKZkzIuxKQ&oe=69B82DEC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"54u5Qg69S1CSDSxHVK9PiFXycavzXlXMOi04HG0FZDo=\",\"fileLength\":\"12113\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"6KoRLf5nIsKtVm3m2YoLei\\/v5vpmyFscFat7sNBpxvY=\",\"fileEncSha256\":\"UPPcDZ5xJtk\\/0IFblXCvhNHq1CPRt1auaEglZydqvR8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11927734_1233938231619622_1885257912488083468_n.enc?ccb=11-4&oh=01_Q5Aa3wGxm7HmgMupUhLJ76WIy4WMkyXOGyG75R6RFKZkzIuxKQ&oe=69B82DEC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088560\",\"waveform\":\"AAAAAAAAAAEBPVhNVUIcQTlLUE5QPFBEQz5FL0ZDT0stDFVWSEtJUUo\\/Ojs8QDEFAAAAAAAYJBIcOR9MQU9ERA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771088564,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:44'),
(17390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:44'),
(17391, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:44'),
(17392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:02:45'),
(17393, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A56693FB2B5CF0418443FF38F85CACEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11927734_1233938231619622_1885257912488083468_n.enc?ccb=11-4&oh=01_Q5Aa3wGxm7HmgMupUhLJ76WIy4WMkyXOGyG75R6RFKZkzIuxKQ&oe=69B82DEC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"54u5Qg69S1CSDSxHVK9PiFXycavzXlXMOi04HG0FZDo=\",\"fileLength\":\"12113\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"6KoRLf5nIsKtVm3m2YoLei\\/v5vpmyFscFat7sNBpxvY=\",\"fileEncSha256\":\"UPPcDZ5xJtk\\/0IFblXCvhNHq1CPRt1auaEglZydqvR8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11927734_1233938231619622_1885257912488083468_n.enc?ccb=11-4&oh=01_Q5Aa3wGxm7HmgMupUhLJ76WIy4WMkyXOGyG75R6RFKZkzIuxKQ&oe=69B82DEC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088560\",\"waveform\":\"AAAAAAAAAAEBPVhNVUIcQTlLUE5QPFBEQz5FL0ZDT0stDFVWSEtJUUo\\/Ojs8QDEFAAAAAAAYJBIcOR9MQU9ERA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771088564,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:45'),
(17394, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A56693FB2B5CF0418443FF38F85CACEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088564780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:45'),
(17395, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:02:45'),
(17396, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A56693FB2B5CF0418443FF38F85CACEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088564780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:44.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:45'),
(17397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A56693FB2B5CF0418443FF38F85CACEE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771088566146,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:46.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:02:46'),
(17398, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A56693FB2B5CF0418443FF38F85CACEE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771088566146,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:02:46.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:02:46'),
(17399, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:00'),
(17400, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A55845016C02864C53787BBF59C92E55\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088580728,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:00'),
(17401, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A55845016C02864C53787BBF59C92E55\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Último app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771088580,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:00'),
(17402, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:00'),
(17403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:00'),
(17404, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A55845016C02864C53787BBF59C92E55\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Último app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771088580,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:01'),
(17405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:01'),
(17406, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A55845016C02864C53787BBF59C92E55\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088580728,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:00.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:01'),
(17407, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5F340DB53B4F37435C9CB33DFF24E0F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Da l0ja\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771088582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:02.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:03'),
(17408, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:02.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:03'),
(17409, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:02.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:03'),
(17410, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5F340DB53B4F37435C9CB33DFF24E0F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088583190,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:03.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:03'),
(17411, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:03.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:03'),
(17412, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A5F340DB53B4F37435C9CB33DFF24E0F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088583190,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:03.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:04'),
(17413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:03.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:04'),
(17414, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A5F340DB53B4F37435C9CB33DFF24E0F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Da l0ja\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771088582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:02.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:04'),
(17415, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:07.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:07'),
(17416, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:07.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:08'),
(17417, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:09'),
(17418, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A52DE297D13612D142B099480E2F80B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"knE7V87WjSbEY5hL36MlRbC45u2wFIwnGpm1paemnWg=\",\"fileLength\":\"77350\",\"height\":1600,\"width\":738,\"mediaKey\":\"3p\\/O2xT0oIpi2hC2yIt64+tffF3mLzlcWmQF17TbPW8=\",\"fileEncSha256\":\"Ks5HbyFaWPBA2AW58OdBDnPkPV0Hczde+Md+eHe2NNA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088588\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPWrjxrtL4qzc4K1litEXz06TjOb1BHgNdg46GHJlBkP\\/8QAJRAAAgIBBAEDBQAAAAAAAAAAAQIAAxEEEhMhYRQxUiMzQkNT\\/9oACAEBAAE\\/ADq6O82LBrah+xINZpz72rBq9OT91ZYhLGcTzhslaEODK0qbO8zj0\\/znHp\\/6SxKVAKNkyqtHRmY95myrPZgo05\\/KPRStbMrdic2zK+Y1hZ8wXxL92Vi172J25g05z3WYaPb6RhqZDkriLY6Z2meot+U9Rb8o1rv0xg7PvibGyRuEAJOMxsqcZnF5gQ+JsPY6nD5n\\/8QAGxEBAAEFAQAAAAAAAAAAAAAAAQAQETFRYWL\\/2gAIAQIBAT8AoYwRfJAicZd3Lu6\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"OYRs87xmiT4NRr9GrqOgLAIlfmtqWuJWZIXSLm4WjrMbvC2sB6FRFQ==\",\"scanLengths\":[8247,35492,14768,18843],\"midQualityFileSha256\":\"Z+9xVxtPsM89v47vIQeEYT7nESIAvYaMtDATaNI0Kck=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771088589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:09'),
(17419, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:09'),
(17420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A52DE297D13612D142B099480E2F80B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"knE7V87WjSbEY5hL36MlRbC45u2wFIwnGpm1paemnWg=\",\"fileLength\":\"77350\",\"height\":1600,\"width\":738,\"mediaKey\":\"3p\\/O2xT0oIpi2hC2yIt64+tffF3mLzlcWmQF17TbPW8=\",\"fileEncSha256\":\"Ks5HbyFaWPBA2AW58OdBDnPkPV0Hczde+Md+eHe2NNA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088588\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPWrjxrtL4qzc4K1litEXz06TjOb1BHgNdg46GHJlBkP\\/8QAJRAAAgIBBAEDBQAAAAAAAAAAAQIAAxEEEhMhYRQxUiMzQkNT\\/9oACAEBAAE\\/ADq6O82LBrah+xINZpz72rBq9OT91ZYhLGcTzhslaEODK0qbO8zj0\\/znHp\\/6SxKVAKNkyqtHRmY95myrPZgo05\\/KPRStbMrdic2zK+Y1hZ8wXxL92Vi172J25g05z3WYaPb6RhqZDkriLY6Z2meot+U9Rb8o1rv0xg7PvibGyRuEAJOMxsqcZnF5gQ+JsPY6nD5n\\/8QAGxEBAAEFAQAAAAAAAAAAAAAAAQAQETFRYWL\\/2gAIAQIBAT8AoYwRfJAicZd3Lu6\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"OYRs87xmiT4NRr9GrqOgLAIlfmtqWuJWZIXSLm4WjrMbvC2sB6FRFQ==\",\"scanLengths\":[8247,35492,14768,18843],\"midQualityFileSha256\":\"Z+9xVxtPsM89v47vIQeEYT7nESIAvYaMtDATaNI0Kck=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771088589,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:09'),
(17421, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52DE297D13612D142B099480E2F80B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088589436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:09'),
(17422, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A52DE297D13612D142B099480E2F80B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088589436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:10'),
(17423, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:10'),
(17424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:09.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:10'),
(17425, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:11.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:11'),
(17426, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:11.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:11'),
(17427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:16'),
(17428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A51C1821C91B1085D2AF1C2DC268F237\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Void Play usuario e senha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771088596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:16'),
(17429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:16'),
(17430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A51C1821C91B1085D2AF1C2DC268F237\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Void Play usuario e senha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771088596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:16'),
(17431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:17'),
(17432, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A51C1821C91B1085D2AF1C2DC268F237\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771088596823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:17'),
(17433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:17'),
(17434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A51C1821C91B1085D2AF1C2DC268F237\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771088596823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:16.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:25'),
(17436, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A59715F2268F0103B905035A725BA11B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636177134_1241518664599352_2017433130954299800_n.enc?ccb=11-4&oh=01_Q5Aa3wHMyjRdUwSGslikhu5BnxLBkoLzGPj_F8xMsXqjLLBSVA&oe=69B80387&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GR5I5H8Lj\\/UZ3xKfxb65vqkurVWkYMO6HsVThkF0+SU=\",\"fileLength\":\"16570\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"Aa6N5eIXZw08Er30nu7BcFQrm6aDdLC4+fKjsKGA5k8=\",\"fileEncSha256\":\"LPDitjYvVFmd4UYfY5\\/aBja+i6V3QVGqaQ3HgTxVB1c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636177134_1241518664599352_2017433130954299800_n.enc?ccb=11-4&oh=01_Q5Aa3wHMyjRdUwSGslikhu5BnxLBkoLzGPj_F8xMsXqjLLBSVA&oe=69B80387&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088598\",\"waveform\":\"AAAgOFhcRDg4Vk9QU0w2RktHTklWKj5JVElXMjpWM1FVJ1VBKjQvMDw8KSg4UDlNOyxBNlkUAQYFBhBBP1o3AA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771088605,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:03:25'),
(17437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:25'),
(17438, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A59715F2268F0103B905035A725BA11B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636177134_1241518664599352_2017433130954299800_n.enc?ccb=11-4&oh=01_Q5Aa3wHMyjRdUwSGslikhu5BnxLBkoLzGPj_F8xMsXqjLLBSVA&oe=69B80387&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GR5I5H8Lj\\/UZ3xKfxb65vqkurVWkYMO6HsVThkF0+SU=\",\"fileLength\":\"16570\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"Aa6N5eIXZw08Er30nu7BcFQrm6aDdLC4+fKjsKGA5k8=\",\"fileEncSha256\":\"LPDitjYvVFmd4UYfY5\\/aBja+i6V3QVGqaQ3HgTxVB1c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636177134_1241518664599352_2017433130954299800_n.enc?ccb=11-4&oh=01_Q5Aa3wHMyjRdUwSGslikhu5BnxLBkoLzGPj_F8xMsXqjLLBSVA&oe=69B80387&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088598\",\"waveform\":\"AAAgOFhcRDg4Vk9QU0w2RktHTklWKj5JVElXMjpWM1FVJ1VBKjQvMDw8KSg4UDlNOyxBNlkUAQYFBhBBP1o3AA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771088605,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:25'),
(17440, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59715F2268F0103B905035A725BA11B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771088605628,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:03:26'),
(17441, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:03:26'),
(17442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:03:25.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:03:26'),
(17443, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A51C1821C91B1085D2AF1C2DC268F237\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088702015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:02.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:05:02'),
(17444, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59715F2268F0103B905035A725BA11B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088702007,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:02.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:05:02'),
(17445, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:03.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:03'),
(17446, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:03.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:03'),
(17447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A51C1821C91B1085D2AF1C2DC268F237\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088702015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:02.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:05:05'),
(17448, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59715F2268F0103B905035A725BA11B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771088702007,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:02.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:05:05'),
(17449, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACEBDF936FA3043A5DE8BC5166E06463\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"extendedTextMessage\":{\"text\":\"Achei esse agora mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A52DE297D13612D142B099480E2F80B9\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"knE7V87WjSbEY5hL36MlRbC45u2wFIwnGpm1paemnWg=\",\"fileLength\":\"77350\",\"height\":1600,\"width\":738,\"mediaKey\":\"3p\\/O2xT0oIpi2hC2yIt64+tffF3mLzlcWmQF17TbPW8=\",\"fileEncSha256\":\"Ks5HbyFaWPBA2AW58OdBDnPkPV0Hczde+Md+eHe2NNA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088588\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPWrjxrtL4qzc4K1litEXz06TjOb1BHgNdg46GHJlBkP\\/8QAJRAAAgIBBAEDBQAAAAAAAAAAAQIAAxEEEhMhYRQxUiMzQkNT\\/9oACAEBAAE\\/ADq6O82LBrah+xINZpz72rBq9OT91ZYhLGcTzhslaEODK0qbO8zj0\\/znHp\\/6SxKVAKNkyqtHRmY95myrPZgo05\\/KPRStbMrdic2zK+Y1hZ8wXxL92Vi172J25g05z3WYaPb6RhqZDkriLY6Z2meot+U9Rb8o1rv0xg7PvibGyRuEAJOMxsqcZnF5gQ+JsPY6nD5n\\/8QAGxEBAAEFAQAAAAAAAAAAAAAAAQAQETFRYWL\\/2gAIAQIBAT8AoYwRfJAicZd3Lu6\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"OYRs87xmiT4NRr9GrqOgLAIlfmtqWuJWZIXSLm4WjrMbvC2sB6FRFQ==\",\"scanLengths\":[8247,35492,14768,18843],\"midQualityFileSha256\":\"Z+9xVxtPsM89v47vIQeEYT7nESIAvYaMtDATaNI0Kck=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EtfsP4b2jILaz8HIcG2Weejx+QBDt+U6JdEabZv6mxQ=\"}},\"contextInfo\":{\"stanzaId\":\"A52DE297D13612D142B099480E2F80B9\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"knE7V87WjSbEY5hL36MlRbC45u2wFIwnGpm1paemnWg=\",\"fileLength\":\"77350\",\"height\":1600,\"width\":738,\"mediaKey\":\"3p\\/O2xT0oIpi2hC2yIt64+tffF3mLzlcWmQF17TbPW8=\",\"fileEncSha256\":\"Ks5HbyFaWPBA2AW58OdBDnPkPV0Hczde+Md+eHe2NNA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088588\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPWrjxrtL4qzc4K1litEXz06TjOb1BHgNdg46GHJlBkP\\/8QAJRAAAgIBBAEDBQAAAAAAAAAAAQIAAxEEEhMhYRQxUiMzQkNT\\/9oACAEBAAE\\/ADq6O82LBrah+xINZpz72rBq9OT91ZYhLGcTzhslaEODK0qbO8zj0\\/znHp\\/6SxKVAKNkyqtHRmY95myrPZgo05\\/KPRStbMrdic2zK+Y1hZ8wXxL92Vi172J25g05z3WYaPb6RhqZDkriLY6Z2meot+U9Rb8o1rv0xg7PvibGyRuEAJOMxsqcZnF5gQ+JsPY6nD5n\\/8QAGxEBAAEFAQAAAAAAAAAAAAAAAQAQETFRYWL\\/2gAIAQIBAT8AoYwRfJAicZd3Lu6\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"OYRs87xmiT4NRr9GrqOgLAIlfmtqWuJWZIXSLm4WjrMbvC2sB6FRFQ==\",\"scanLengths\":[8247,35492,14768,18843],\"midQualityFileSha256\":\"Z+9xVxtPsM89v47vIQeEYT7nESIAvYaMtDATaNI0Kck=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771088708,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:05:08'),
(17450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:08'),
(17451, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:08'),
(17452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:08'),
(17453, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:08'),
(17454, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACEBDF936FA3043A5DE8BC5166E06463\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"extendedTextMessage\":{\"text\":\"Achei esse agora mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A52DE297D13612D142B099480E2F80B9\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"knE7V87WjSbEY5hL36MlRbC45u2wFIwnGpm1paemnWg=\",\"fileLength\":\"77350\",\"height\":1600,\"width\":738,\"mediaKey\":\"3p\\/O2xT0oIpi2hC2yIt64+tffF3mLzlcWmQF17TbPW8=\",\"fileEncSha256\":\"Ks5HbyFaWPBA2AW58OdBDnPkPV0Hczde+Md+eHe2NNA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088588\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPWrjxrtL4qzc4K1litEXz06TjOb1BHgNdg46GHJlBkP\\/8QAJRAAAgIBBAEDBQAAAAAAAAAAAQIAAxEEEhMhYRQxUiMzQkNT\\/9oACAEBAAE\\/ADq6O82LBrah+xINZpz72rBq9OT91ZYhLGcTzhslaEODK0qbO8zj0\\/znHp\\/6SxKVAKNkyqtHRmY95myrPZgo05\\/KPRStbMrdic2zK+Y1hZ8wXxL92Vi172J25g05z3WYaPb6RhqZDkriLY6Z2meot+U9Rb8o1rv0xg7PvibGyRuEAJOMxsqcZnF5gQ+JsPY6nD5n\\/8QAGxEBAAEFAQAAAAAAAAAAAAAAAQAQETFRYWL\\/2gAIAQIBAT8AoYwRfJAicZd3Lu6\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"OYRs87xmiT4NRr9GrqOgLAIlfmtqWuJWZIXSLm4WjrMbvC2sB6FRFQ==\",\"scanLengths\":[8247,35492,14768,18843],\"midQualityFileSha256\":\"Z+9xVxtPsM89v47vIQeEYT7nESIAvYaMtDATaNI0Kck=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EtfsP4b2jILaz8HIcG2Weejx+QBDt+U6JdEabZv6mxQ=\"}},\"contextInfo\":{\"stanzaId\":\"A52DE297D13612D142B099480E2F80B9\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"knE7V87WjSbEY5hL36MlRbC45u2wFIwnGpm1paemnWg=\",\"fileLength\":\"77350\",\"height\":1600,\"width\":738,\"mediaKey\":\"3p\\/O2xT0oIpi2hC2yIt64+tffF3mLzlcWmQF17TbPW8=\",\"fileEncSha256\":\"Ks5HbyFaWPBA2AW58OdBDnPkPV0Hczde+Md+eHe2NNA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637001685_1231045998514412_5789540397329196044_n.enc?ccb=11-4&oh=01_Q5Aa3wHvPaZb9q9PNU3xiKqkJ-MmZsuxknbpwm3IpIz9e_MlGw&oe=69B8335C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088588\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAACAwABBAYFAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAPWrjxrtL4qzc4K1litEXz06TjOb1BHgNdg46GHJlBkP\\/8QAJRAAAgIBBAEDBQAAAAAAAAAAAQIAAxEEEhMhYRQxUiMzQkNT\\/9oACAEBAAE\\/ADq6O82LBrah+xINZpz72rBq9OT91ZYhLGcTzhslaEODK0qbO8zj0\\/znHp\\/6SxKVAKNkyqtHRmY95myrPZgo05\\/KPRStbMrdic2zK+Y1hZ8wXxL92Vi172J25g05z3WYaPb6RhqZDkriLY6Z2meot+U9Rb8o1rv0xg7PvibGyRuEAJOMxsqcZnF5gQ+JsPY6nD5n\\/8QAGxEBAAEFAQAAAAAAAAAAAAAAAQAQETFRYWL\\/2gAIAQIBAT8AoYwRfJAicZd3Lu6\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"OYRs87xmiT4NRr9GrqOgLAIlfmtqWuJWZIXSLm4WjrMbvC2sB6FRFQ==\",\"scanLengths\":[8247,35492,14768,18843],\"midQualityFileSha256\":\"Z+9xVxtPsM89v47vIQeEYT7nESIAvYaMtDATaNI0Kck=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771088708,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:05:09'),
(17455, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:09'),
(17456, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:09'),
(17457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:09'),
(17458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:08.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:10'),
(17459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:16'),
(17460, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACA1E17548873DF26B6E8B6A8B2DEFEA\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Vou tentar fazer o download\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o88DtuQhybHg\\/crd3cKPhaBlO0OgmbA++eBfTK8lISY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771088716,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:05:16'),
(17461, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:16'),
(17462, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:16'),
(17463, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:17'),
(17464, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACA1E17548873DF26B6E8B6A8B2DEFEA\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Vou tentar fazer o download\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o88DtuQhybHg\\/crd3cKPhaBlO0OgmbA++eBfTK8lISY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771088716,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:05:17'),
(17465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:05:17'),
(17466, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:05:16.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:05:17'),
(17467, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59715F2268F0103B905035A725BA11B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771088956682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:16.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:09:17'),
(17468, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A59715F2268F0103B905035A725BA11B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771088956682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:16.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:09:18'),
(17469, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:34.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:09:35'),
(17470, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACA0CFAE146FC2B0992D1F851F0C805A\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636440596_1399485654645058_5156430726346245293_n.enc?ccb=11-4&oh=01_Q5Aa3wG0J8p7m0aDIDk2XiKL9LW7_tpEa3iWt8rZVT7-w9gb6Q&oe=69B819EE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+Lw8JhJRM+aFWDUOCdUA2lvxqEMqZAf8dqQQlc+TOD4=\",\"fileLength\":\"195316\",\"height\":1600,\"width\":900,\"mediaKey\":\"a4zwv2yPd7xoosC4VuhaLEckl\\/Z1xwEsob2BqzfPvEA=\",\"fileEncSha256\":\"9m+sXJgYq2rb+VMgGu8e1DdZwTgeWMI8+vRZuBVUgtE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636440596_1399485654645058_5156430726346245293_n.enc?ccb=11-4&oh=01_Q5Aa3wG0J8p7m0aDIDk2XiKL9LW7_tpEa3iWt8rZVT7-w9gb6Q&oe=69B819EE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088974\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABQIDBAEBAAMBAQAAAAAAAAAAAAAAAAACAwEE\\/9oADAMBAAIQAxAAAACqSi\\/GYdXwGZiU2d5rovKMe8nbMcFXfHPUO0qwaAkazohMdS5bIx4GJRyB\\/8QAKhAAAgEDAQYFBQAAAAAAAAAAAQIAAxESFQUQEyJBUwQgMWFiQlFSY4H\\/2gAIAQEAAT8AG0qvVBNSPbh2i3ag2knVDNSpfiZnKaZDK\\/8AJWDJMM1uu6rSWnYWlMFVzlapxIVKUx77vF2IAELDhKsxAteV23O4qKGBAtF4T3c8oEWoWU2APvKgdzziWpD6ZTPKykzIhGT7mK5XqZTYH1MWhcA4CaV85pPzmkfsmknuTTH7xg8v\\/8QAHBEAAgMAAwEAAAAAAAAAAAAAAAECERIQIFEy\\/9oACAECAQE\\/ABUyiSjp+ZIUozb403Jmq9YqpfPT\\/8QAHxEAAgIBBAMAAAAAAAAAAAAAAQIAETEDEBJBIFJh\\/9oACAEDAQE\\/AFBY0IyFTUuIz8VPdzVLFl2oKi\\/eoFDeohyc+H\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"VIeUDtTuiwKel639TKo3kRXZ7dc75dfcETNzkWMZBnt3RDbLVWh39w==\",\"scanLengths\":[14174,89690,32338,59114],\"midQualityFileSha256\":\"e5nKQVf24QD7Dq9lok2Hd6Y+X7S3YBEvh8BR+4\\/D4Nc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xZhokBU8Dhfe2V4MoPzl6mpTKYRtHtAX4VASw6tuu3I=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771088974,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:34.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:09:35'),
(17471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:34.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:09:35'),
(17472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:35.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:09:35'),
(17473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:35.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:09:35'),
(17474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACA0CFAE146FC2B0992D1F851F0C805A\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636440596_1399485654645058_5156430726346245293_n.enc?ccb=11-4&oh=01_Q5Aa3wG0J8p7m0aDIDk2XiKL9LW7_tpEa3iWt8rZVT7-w9gb6Q&oe=69B819EE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+Lw8JhJRM+aFWDUOCdUA2lvxqEMqZAf8dqQQlc+TOD4=\",\"fileLength\":\"195316\",\"height\":1600,\"width\":900,\"mediaKey\":\"a4zwv2yPd7xoosC4VuhaLEckl\\/Z1xwEsob2BqzfPvEA=\",\"fileEncSha256\":\"9m+sXJgYq2rb+VMgGu8e1DdZwTgeWMI8+vRZuBVUgtE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636440596_1399485654645058_5156430726346245293_n.enc?ccb=11-4&oh=01_Q5Aa3wG0J8p7m0aDIDk2XiKL9LW7_tpEa3iWt8rZVT7-w9gb6Q&oe=69B819EE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771088974\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAABQIDBAEBAAMBAQAAAAAAAAAAAAAAAAACAwEE\\/9oADAMBAAIQAxAAAACqSi\\/GYdXwGZiU2d5rovKMe8nbMcFXfHPUO0qwaAkazohMdS5bIx4GJRyB\\/8QAKhAAAgEDAQYFBQAAAAAAAAAAAQIAAxESFQUQEyJBUwQgMWFiQlFSY4H\\/2gAIAQEAAT8AG0qvVBNSPbh2i3ag2knVDNSpfiZnKaZDK\\/8AJWDJMM1uu6rSWnYWlMFVzlapxIVKUx77vF2IAELDhKsxAteV23O4qKGBAtF4T3c8oEWoWU2APvKgdzziWpD6ZTPKykzIhGT7mK5XqZTYH1MWhcA4CaV85pPzmkfsmknuTTH7xg8v\\/8QAHBEAAgMAAwEAAAAAAAAAAAAAAAECERIQIFEy\\/9oACAECAQE\\/ABUyiSjp+ZIUozb403Jmq9YqpfPT\\/8QAHxEAAgIBBAMAAAAAAAAAAAAAAQIAETEDEBJBIFJh\\/9oACAEDAQE\\/AFBY0IyFTUuIz8VPdzVLFl2oKi\\/eoFDeohyc+H\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"VIeUDtTuiwKel639TKo3kRXZ7dc75dfcETNzkWMZBnt3RDbLVWh39w==\",\"scanLengths\":[14174,89690,32338,59114],\"midQualityFileSha256\":\"e5nKQVf24QD7Dq9lok2Hd6Y+X7S3YBEvh8BR+4\\/D4Nc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xZhokBU8Dhfe2V4MoPzl6mpTKYRtHtAX4VASw6tuu3I=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771088974,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:34.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:09:36'),
(17475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:35.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:09:36'),
(17476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:09:35.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:09:36'),
(17477, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A53E433C733D8BA71D46441BF7029D60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637095870_1973982936883660_6214190179881764909_n.enc?ccb=11-4&oh=01_Q5Aa3wFkPylEhzqNyWr8wAXGVB-Bb-WIi8fR8yvbG_xhfGIaGg&oe=69B8310C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"\\/ADgq33xMSxL+Nphr+fOJ3ecSYVtNzTeAihKCRG5NJU=\",\"fileLength\":\"12727\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"rt0XahNT9MGPaOeq1Nv\\/Nsuu2hpsZQGktTPZnvv7IFY=\",\"fileEncSha256\":\"x54PIqustiuN83BPCJhnzNNQU4t5En7l6bFBvg+4NoI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637095870_1973982936883660_6214190179881764909_n.enc?ccb=11-4&oh=01_Q5Aa3wFkPylEhzqNyWr8wAXGVB-Bb-WIi8fR8yvbG_xhfGIaGg&oe=69B8310C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771089046\",\"waveform\":\"ACUkHx0hJCgjJScgIyYqVldLJ01IVFZHLxohHhgePUBES1AnO1lSIThJPk1WRyVORzI7UEY+NEZJS0RFOyI5TA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771089050,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:50.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:10:51'),
(17478, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:50.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:10:51'),
(17479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:51.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:10:51'),
(17480, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:50.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:10:51'),
(17481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:51.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:10:51'),
(17482, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A53E433C733D8BA71D46441BF7029D60\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771089051312,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:51.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:10:52'),
(17483, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A53E433C733D8BA71D46441BF7029D60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637095870_1973982936883660_6214190179881764909_n.enc?ccb=11-4&oh=01_Q5Aa3wFkPylEhzqNyWr8wAXGVB-Bb-WIi8fR8yvbG_xhfGIaGg&oe=69B8310C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"\\/ADgq33xMSxL+Nphr+fOJ3ecSYVtNzTeAihKCRG5NJU=\",\"fileLength\":\"12727\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"rt0XahNT9MGPaOeq1Nv\\/Nsuu2hpsZQGktTPZnvv7IFY=\",\"fileEncSha256\":\"x54PIqustiuN83BPCJhnzNNQU4t5En7l6bFBvg+4NoI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637095870_1973982936883660_6214190179881764909_n.enc?ccb=11-4&oh=01_Q5Aa3wFkPylEhzqNyWr8wAXGVB-Bb-WIi8fR8yvbG_xhfGIaGg&oe=69B8310C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771089046\",\"waveform\":\"ACUkHx0hJCgjJScgIyYqVldLJ01IVFZHLxohHhgePUBES1AnO1lSIThJPk1WRyVORzI7UEY+NEZJS0RFOyI5TA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771089050,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:10:50.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:10:52'),
(17485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A53E433C733D8BA71D46441BF7029D60\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089063788,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:11:03.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:11:03'),
(17486, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A53E433C733D8BA71D46441BF7029D60\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089063788,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:11:03.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:11:04'),
(17487, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A53E433C733D8BA71D46441BF7029D60\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771089076311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:11:16.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:11:16'),
(17488, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A53E433C733D8BA71D46441BF7029D60\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771089076311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:11:16.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:11:16'),
(17489, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:12:55.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:12:55');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51922FB3335BB62227B322DB90F3780\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98413},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98413},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771089175,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:12:55.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:12:55'),
(17491, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:12:55.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:12:56'),
(17492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:12:55.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:12:56'),
(17493, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:12:55.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:12:56'),
(17494, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A51922FB3335BB62227B322DB90F3780\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 4791063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98413},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98413},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771089175,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:12:55.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:12:56'),
(17495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C3791D468C3F55F756C8D8AB4F4725\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98424},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98424},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771089185,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:13:06.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:13:06'),
(17496, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:13:06.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:13:06'),
(17497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:13:06.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:13:06'),
(17498, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C3791D468C3F55F756C8D8AB4F4725\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98424},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":98424},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771089185,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:13:06.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:13:06'),
(17499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:13:06.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:13:06'),
(17500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:13:06.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:13:07'),
(17501, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A527942C72E7164927FA8771038B50A9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089476800,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:17:56.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:17:57'),
(17502, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BE43A037A357777E2D3F4BC8BE5E3F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089476790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:17:56.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:17:57'),
(17503, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A530CF89A47DC5E6B6A9A35971D57AA4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089476809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:17:56.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:17:57'),
(17504, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A527942C72E7164927FA8771038B50A9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089476800,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:17:56.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:17:57'),
(17505, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A5BE43A037A357777E2D3F4BC8BE5E3F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089476790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:17:56.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:17:57'),
(17506, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"74582207811789@lid\",\"id\":\"A530CF89A47DC5E6B6A9A35971D57AA4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089476809,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:17:56.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:17:57'),
(17507, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:03.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:03'),
(17508, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:03.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:04'),
(17509, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:13'),
(17510, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:13'),
(17511, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC13AE969A1E1A39AD9D7284674B5B65\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Vou olhar e te falo Carol\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k\\/aUGuX3HlQMzC783MEnr4OfENPtzvLaERwemhN0iWY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771089492,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:18:13'),
(17512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:13'),
(17513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:13'),
(17514, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:14'),
(17515, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:14'),
(17516, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC13AE969A1E1A39AD9D7284674B5B65\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Vou olhar e te falo Carol\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k\\/aUGuX3HlQMzC783MEnr4OfENPtzvLaERwemhN0iWY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771089492,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:18:14'),
(17517, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:14'),
(17518, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:13.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:14'),
(17519, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:21.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:21'),
(17520, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:21.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:21'),
(17521, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:22.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:22'),
(17522, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"presences\":{\"74582207811789@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:22.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:23'),
(17523, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC08ADB1A19462F6AA0227C5632A885B\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Tô vendo aqui o que me mandou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Hz4Vwsy1wcpZspTMEYvoyPfz7VEv4zlIQWdwSqfPSD4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771089510,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:18:31'),
(17524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:31'),
(17525, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:31'),
(17526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:31'),
(17527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"74582207811789@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:31'),
(17528, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:32'),
(17529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"74582207811789@lid\",\"fromMe\":false,\"id\":\"AC08ADB1A19462F6AA0227C5632A885B\"},\"pushName\":\"Daniele\",\"message\":{\"conversation\":\"Tô vendo aqui o que me mandou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Hz4Vwsy1wcpZspTMEYvoyPfz7VEv4zlIQWdwSqfPSD4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771089510,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:18:32'),
(17530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"74582207811789@lid\",\"pushName\":\"Daniele\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/516749431_1285315853102913_5495592566530576714_n.jpg?ccb=11-4&oh=01_Q5Aa3wFADMZlGEJWTCGNcUhIPfhJxtNHXJwPSZtM6mCNsd8bAg&oe=699DA9E1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:31.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:32'),
(17531, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:45.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:46'),
(17532, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"presences\":{\"243206868492520@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:45.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:46'),
(17533, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:49.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:49'),
(17534, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACCE56922056769F72C726A709AF4A36\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Ta rodando aqui mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tD8javQIvb8Vfs\\/WscqvSdFqAjg4qL21TFqXQ\\/CypjU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771089529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:49.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:18:50'),
(17535, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:49.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:50'),
(17536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:50.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:50'),
(17537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:50.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:18:50'),
(17538, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":false,\"id\":\"ACCE56922056769F72C726A709AF4A36\"},\"pushName\":\"Giovani Marcon\",\"message\":{\"conversation\":\"Ta rodando aqui mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tD8javQIvb8Vfs\\/WscqvSdFqAjg4qL21TFqXQ\\/CypjU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771089529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:49.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:18:50'),
(17539, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:50.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:50'),
(17540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:18:50.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:18:50'),
(17541, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:54.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:21:54'),
(17542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A58BE10DCA785ED85656386375388189\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635048885_931440892752452_7030762789262742578_n.enc?ccb=11-4&oh=01_Q5Aa3wHL-CMuYzQWyS1z8cr2H6XlGKJAK0umz40kvpeWCDddQA&oe=69B80954&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"jt7zVxpeYkvZm0kEdowDTbN0s1mFojKcpQ2pUBafsIQ=\",\"fileEncSha256\":\"IbeiLADQRJ1NwndrDmAXVNce6rnReVyCzfmMhPYUH\\/Q=\",\"mediaKey\":\"UXp9AyZGR9nKy8lTzvRO3q0WjCwtNo11kbhgmpcuKS8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/635048885_931440892752452_7030762789262742578_n.enc?ccb=11-4&oh=01_Q5Aa3wHL-CMuYzQWyS1z8cr2H6XlGKJAK0umz40kvpeWCDddQA&oe=69B80954&_nc_sid=5e03e0\",\"fileLength\":\"435248\",\"mediaKeyTimestamp\":\"1771089713\",\"firstFrameLength\":434830,\"firstFrameSidecar\":\"wD6OJ+emnBHitQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1771089713319\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771089714,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:54.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:21:54'),
(17543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:54.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:21:55'),
(17544, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"243206868492520@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:54.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:21:55'),
(17545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"243206868492520@lid\",\"pushName\":\"Giovani Marcon\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/631797476_940685798530004_7242846728341547071_n.jpg?ccb=11-4&oh=01_Q5Aa3wH36LK1w8gl7iDReZ16zNfxAnEU63W3r317PclGi2eUaQ&oe=699DB808&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:54.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:21:55'),
(17546, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"243206868492520@lid\",\"fromMe\":true,\"id\":\"A58BE10DCA785ED85656386375388189\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635048885_931440892752452_7030762789262742578_n.enc?ccb=11-4&oh=01_Q5Aa3wHL-CMuYzQWyS1z8cr2H6XlGKJAK0umz40kvpeWCDddQA&oe=69B80954&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"jt7zVxpeYkvZm0kEdowDTbN0s1mFojKcpQ2pUBafsIQ=\",\"fileEncSha256\":\"IbeiLADQRJ1NwndrDmAXVNce6rnReVyCzfmMhPYUH\\/Q=\",\"mediaKey\":\"UXp9AyZGR9nKy8lTzvRO3q0WjCwtNo11kbhgmpcuKS8=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/635048885_931440892752452_7030762789262742578_n.enc?ccb=11-4&oh=01_Q5Aa3wHL-CMuYzQWyS1z8cr2H6XlGKJAK0umz40kvpeWCDddQA&oe=69B80954&_nc_sid=5e03e0\",\"fileLength\":\"435248\",\"mediaKeyTimestamp\":\"1771089713\",\"firstFrameLength\":434830,\"firstFrameSidecar\":\"wD6OJ+emnBHitQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1771089713319\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771089714,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:54.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:21:55'),
(17547, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58BE10DCA785ED85656386375388189\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771089716518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:56.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:21:56'),
(17548, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58BE10DCA785ED85656386375388189\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771089716518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:21:56.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:21:56'),
(17549, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58BE10DCA785ED85656386375388189\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089729458,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:22:09.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:22:09'),
(17550, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"243206868492520@lid\",\"id\":\"A58BE10DCA785ED85656386375388189\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771089729458,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:22:09.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:22:09'),
(17551, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A591C201ACD34F61CB6C7983F6EF0A87\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":99725},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":99725},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771090487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:34:47.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:34:48'),
(17552, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:34:47.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:34:48'),
(17553, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:34:47.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:34:48'),
(17554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:34:47.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:34:48'),
(17555, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:34:47.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:34:48'),
(17556, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A591C201ACD34F61CB6C7983F6EF0A87\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":99725},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":99725},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771090487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:34:47.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:34:48'),
(17557, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:02.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:46:02'),
(17558, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:02.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:46:02'),
(17559, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07DEF82C1B37D817836\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nElvis, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 60,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771091163,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:03.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:46:03'),
(17560, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07DEF82C1B37D817836\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nElvis, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 60,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771091163,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:03.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:46:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"id\":\"3EB07DEF82C1B37D817836\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771091164331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:04.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:46:04'),
(17562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"id\":\"3EB07DEF82C1B37D817836\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771091164331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:04.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:46:09'),
(17563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"A5B861BDE7140AA5BB4FFB68B748A2CD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771091184938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:24.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:46:25'),
(17564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"A5B861BDE7140AA5BB4FFB68B748A2CD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771091184938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:24.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:46:26'),
(17565, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":true,\"id\":\"3EB07DEF82C1B37D817836\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:26.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:46:26'),
(17566, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":true,\"id\":\"3EB07DEF82C1B37D817836\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:26.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:46:26'),
(17567, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04CC142790EC6E49145\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nTeste16, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 40,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771091193,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:34.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:46:34'),
(17568, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04CC142790EC6E49145\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nTeste16, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 40,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771091193,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:34.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:46:34'),
(17569, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB04CC142790EC6E49145\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771091195497,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:35.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:46:35'),
(17570, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB04CC142790EC6E49145\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771091195497,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:35.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:46:35'),
(17571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:59.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:46:59'),
(17572, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:59.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:46:59'),
(17573, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5490E55D77896025B51C1EDD9AC9164\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":100455},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":100455},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771091219,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:59.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:46:59'),
(17574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:59.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:46:59'),
(17575, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:59.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:00'),
(17576, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5490E55D77896025B51C1EDD9AC9164\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":100455},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":100455},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771091219,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:46:59.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:47:00'),
(17577, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":false,\"id\":\"AC25F5980BD5FCA370F6853538CF4294\"},\"pushName\":\"Sueli Ferreira Da Silva\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636692213_2120912695388168_7206366590601304729_n.enc?ccb=11-4&oh=01_Q5Aa3wFd5TToh5frizgmEmPZpN3MVOMz0ibsU-jLD8rDvSyYDA&oe=69B82042&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"TeIjf5dIEVk6NSuuo6HBJjBs41rgshpn92VsVw5e2lo=\",\"fileLength\":\"73467\",\"height\":1599,\"width\":718,\"mediaKey\":\"EvEb3lSdDeWUjy3ZNlBoK93APgbnX4F1oNk1xYcdBfA=\",\"fileEncSha256\":\"7qvziu84d34xUru2qr2K5un9znEh0viNgjJNFM2UzfE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636692213_2120912695388168_7206366590601304729_n.enc?ccb=11-4&oh=01_Q5Aa3wFd5TToh5frizgmEmPZpN3MVOMz0ibsU-jLD8rDvSyYDA&oe=69B82042&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771091246\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAsAAADAQEBAAAAAAAAAAAAAAAAAQMCBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD0VOStWAibGNgQTY6Z0S1kKPDJgD0B\\/8QAIRAAAQMDBAMAAAAAAAAAAAAAAQACEQMQEiEiQVExUmH\\/2gAIAQEAAT8AY6oKrpjHhTch5JiPKYMdT5WQtJE7UHH0uIJOqgeyEDmxbuKxTWjmzjuO5NyBnKVkeggQiNUB8WPxBoHCNQhCoUHSpKK16QJ6t\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"XXHAhG7Dnsu+xfcoY0Dxq86qtIjitatMdbXCYON2BoKcxKDgxMzi5g==\",\"scanLengths\":[6483,35634,14612,16738],\"midQualityFileSha256\":\"WRZIUmbiDtyyFQ\\/J0mXSpFnqQ3JRyVSh9sv4D7aNI40=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"8ZAB\\/0hUnH4T6Q==\",\"senderTimestamp\":\"1770705968\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hbffUaJq9s85hzzV+28aGTZxLVkNN\\/pd3ngGg\\/SvT3E=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771091247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:47:27'),
(17578, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:27'),
(17579, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:27'),
(17580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:27'),
(17581, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:27'),
(17582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:28'),
(17583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:28'),
(17584, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":false,\"id\":\"AC25F5980BD5FCA370F6853538CF4294\"},\"pushName\":\"Sueli Ferreira Da Silva\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636692213_2120912695388168_7206366590601304729_n.enc?ccb=11-4&oh=01_Q5Aa3wFd5TToh5frizgmEmPZpN3MVOMz0ibsU-jLD8rDvSyYDA&oe=69B82042&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"TeIjf5dIEVk6NSuuo6HBJjBs41rgshpn92VsVw5e2lo=\",\"fileLength\":\"73467\",\"height\":1599,\"width\":718,\"mediaKey\":\"EvEb3lSdDeWUjy3ZNlBoK93APgbnX4F1oNk1xYcdBfA=\",\"fileEncSha256\":\"7qvziu84d34xUru2qr2K5un9znEh0viNgjJNFM2UzfE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636692213_2120912695388168_7206366590601304729_n.enc?ccb=11-4&oh=01_Q5Aa3wFd5TToh5frizgmEmPZpN3MVOMz0ibsU-jLD8rDvSyYDA&oe=69B82042&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771091246\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAsAAADAQEBAAAAAAAAAAAAAAAAAQMCBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD0VOStWAibGNgQTY6Z0S1kKPDJgD0B\\/8QAIRAAAQMDBAMAAAAAAAAAAAAAAQACEQMQEiEiQVExUmH\\/2gAIAQEAAT8AY6oKrpjHhTch5JiPKYMdT5WQtJE7UHH0uIJOqgeyEDmxbuKxTWjmzjuO5NyBnKVkeggQiNUB8WPxBoHCNQhCoUHSpKK16QJ6t\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"XXHAhG7Dnsu+xfcoY0Dxq86qtIjitatMdbXCYON2BoKcxKDgxMzi5g==\",\"scanLengths\":[6483,35634,14612,16738],\"midQualityFileSha256\":\"WRZIUmbiDtyyFQ\\/J0mXSpFnqQ3JRyVSh9sv4D7aNI40=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"8ZAB\\/0hUnH4T6Q==\",\"senderTimestamp\":\"1770705968\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hbffUaJq9s85hzzV+28aGTZxLVkNN\\/pd3ngGg\\/SvT3E=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771091247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:27.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:47:28'),
(17585, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"presences\":{\"221190966767835@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:29.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:29'),
(17586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"presences\":{\"221190966767835@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:29.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:29'),
(17587, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":false,\"id\":\"ACB12670B7B57E4D5A7A41AD46CDFC07\"},\"pushName\":\"Sueli Ferreira Da Silva\",\"message\":{\"conversation\":\"Feito , obrigada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"8ZAB\\/0hUnH4T6Q==\",\"senderTimestamp\":\"1770705968\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QwQkjSPcvDrooteVebomWYFgCO68wuoh+na4J4+9\\/F8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:47:33'),
(17588, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:33'),
(17589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:33'),
(17590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:33'),
(17591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"221190966767835@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:33'),
(17592, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"221190966767835@lid\",\"fromMe\":false,\"id\":\"ACB12670B7B57E4D5A7A41AD46CDFC07\"},\"pushName\":\"Sueli Ferreira Da Silva\",\"message\":{\"conversation\":\"Feito , obrigada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"8ZAB\\/0hUnH4T6Q==\",\"senderTimestamp\":\"1770705968\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QwQkjSPcvDrooteVebomWYFgCO68wuoh+na4J4+9\\/F8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091253,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:47:34'),
(17593, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:47:34'),
(17594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"221190966767835@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/576474914_1789558548413340_6106822068171366811_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjwO0IIQtpc4kkNyiOhbmJqK7VVDx_P-guTWXFMZ0wAg&oe=699DE37A&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:47:33.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:47:34'),
(17595, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:40.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:40'),
(17596, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:40.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:41'),
(17597, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:44.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:44'),
(17598, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:44.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:45'),
(17599, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:44.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:45'),
(17600, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:44.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:45'),
(17601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:44.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:45'),
(17602, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:45.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:45'),
(17603, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:44.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:45'),
(17604, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:45.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:46'),
(17605, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:47'),
(17606, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:47'),
(17607, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8097650EFF851B40D722DF67790C40\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Boa tarde!\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e9d8sty\\/rv7x17BcKGQtuOk824E2e99EfVcbImfWtLM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:58:47'),
(17608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:48'),
(17609, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:48'),
(17610, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:48'),
(17611, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:48'),
(17612, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8097650EFF851B40D722DF67790C40\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Boa tarde!\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e9d8sty\\/rv7x17BcKGQtuOk824E2e99EfVcbImfWtLM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:47.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:58:48'),
(17613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:48.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:48'),
(17614, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:48.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:48'),
(17615, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:51'),
(17616, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE5967DD1767304936B002E20029DC2\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Meu nome e iago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2r7lv7MYbd2s+3z4CSNOKsaPDB9qnIIt68mc2cdQoQQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:58:51'),
(17617, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:51'),
(17618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:51'),
(17619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:51'),
(17620, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE5967DD1767304936B002E20029DC2\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Meu nome e iago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2r7lv7MYbd2s+3z4CSNOKsaPDB9qnIIt68mc2cdQoQQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:58:52'),
(17621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:52'),
(17622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:51.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:52'),
(17623, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:52.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:52'),
(17624, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:52.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:52'),
(17625, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:58.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:59'),
(17626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:58.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:59'),
(17627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:58:59'),
(17628, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE7118A7FA36E1BD4C3D39C041C7734\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Amigo meu me passou seu contato\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pnK78sBnkyOp8oPRWU3RoC+sxcR3JbStvxSoRjY3Aks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:58:59'),
(17629, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:58:59'),
(17630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:00'),
(17631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:00'),
(17632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:00'),
(17633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:00'),
(17634, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE7118A7FA36E1BD4C3D39C041C7734\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Amigo meu me passou seu contato\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pnK78sBnkyOp8oPRWU3RoC+sxcR3JbStvxSoRjY3Aks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091939,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:58:59.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:59:01');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17635, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:15.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:15'),
(17636, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:15.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:15'),
(17637, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:17.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:17'),
(17638, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:17.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:17'),
(17639, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:18.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:18'),
(17640, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:18.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:18'),
(17641, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:18.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:18'),
(17642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:18.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:19'),
(17643, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:22.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:22'),
(17644, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12777762590886@lid\",\"presences\":{\"12777762590886@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:22.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:23'),
(17645, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:25.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:25'),
(17646, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:25.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:25'),
(17647, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:32'),
(17648, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC77A7209DD02F9CF3EB133C2FFFA132\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Queira saber mais sobre o app para tv com canais filmes e séries liberado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2gDiYnw19ADSxXyccDR59E1KWexIqOOXmRcP\\/yoqKis=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091972,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:59:32'),
(17649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:32'),
(17650, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:32'),
(17651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC77A7209DD02F9CF3EB133C2FFFA132\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Queira saber mais sobre o app para tv com canais filmes e séries liberado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2gDiYnw19ADSxXyccDR59E1KWexIqOOXmRcP\\/yoqKis=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091972,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:59:32'),
(17652, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:33'),
(17653, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:33'),
(17654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:32.453Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:33'),
(17655, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:36.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:36'),
(17656, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:36.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:36'),
(17657, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8608CDA0D326C1F9F01E51A727BA22\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Para tv LG\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ptHSkvYBkxbrxKbuVUC43Rce5IllKKZNP1I\\/1EI5WkM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 14:59:40'),
(17658, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:40'),
(17659, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:40'),
(17660, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 14:59:40'),
(17661, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:40'),
(17662, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8608CDA0D326C1F9F01E51A727BA22\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Para tv LG\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ptHSkvYBkxbrxKbuVUC43Rce5IllKKZNP1I\\/1EI5WkM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771091980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 14:59:41'),
(17663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:41'),
(17664, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T14:59:40.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 14:59:42'),
(17665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634855934_26367497739502811_1096762102483849217_n.enc?ccb=11-4&oh=01_Q5Aa3wHIlbiaaxAkxNhVa_g2Ft8NZzxeCfaQUVQvmT4kLVH11w&oe=69B8337B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BIsQ79vY8t7tTmEoG9a7m3zmfW3onSQ9bYMVaan\\/DQs=\",\"fileLength\":\"10829\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"w4gPFL6EfZqigBLSGqRlkoI72zlO0+iMJT41S2x8fFs=\",\"fileEncSha256\":\"Gomp3\\/WzCxaw0k909gDMnHnpP2zdYEMJNn1337ezjH0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634855934_26367497739502811_1096762102483849217_n.enc?ccb=11-4&oh=01_Q5Aa3wHIlbiaaxAkxNhVa_g2Ft8NZzxeCfaQUVQvmT4kLVH11w&oe=69B8337B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771092057\",\"waveform\":\"AAsOXFdeQVFWR1JPIyRHTFhVWFQbE0tbQT9MJj5PTy5JWVEtTlNUTzhLTVY4U1daXVpXT1k4GDZZQFZIQFlfXQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771092060,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:00.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:01:01'),
(17666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:00.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:01:01'),
(17667, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:00.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:01:01'),
(17668, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:01.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:01:01'),
(17669, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092061287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:01.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:01:01'),
(17670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092061287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:01.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:01:02'),
(17671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:01.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:01:02'),
(17672, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634855934_26367497739502811_1096762102483849217_n.enc?ccb=11-4&oh=01_Q5Aa3wHIlbiaaxAkxNhVa_g2Ft8NZzxeCfaQUVQvmT4kLVH11w&oe=69B8337B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BIsQ79vY8t7tTmEoG9a7m3zmfW3onSQ9bYMVaan\\/DQs=\",\"fileLength\":\"10829\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"w4gPFL6EfZqigBLSGqRlkoI72zlO0+iMJT41S2x8fFs=\",\"fileEncSha256\":\"Gomp3\\/WzCxaw0k909gDMnHnpP2zdYEMJNn1337ezjH0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634855934_26367497739502811_1096762102483849217_n.enc?ccb=11-4&oh=01_Q5Aa3wHIlbiaaxAkxNhVa_g2Ft8NZzxeCfaQUVQvmT4kLVH11w&oe=69B8337B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771092057\",\"waveform\":\"AAsOXFdeQVFWR1JPIyRHTFhVWFQbE0tbQT9MJj5PTy5JWVEtTlNUTzhLTVY4U1daXVpXT1k4GDZZQFZIQFlfXQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771092060,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:00.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:01:02'),
(17673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:01:10'),
(17674, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:01:10'),
(17675, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5311F1B277675219330846CC5A12819\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636879052_920332623792529_626750131220630938_n.enc?ccb=11-4&oh=01_Q5Aa3wE5BS3XYu4qkMxb28iQcXKT0XsUgvtPaon4lK70TQ2_OQ&oe=69B813DF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xOpfm+j3CE3Hd0FZaIHg1178pRLiR0XPfda5glVPGTo=\",\"fileLength\":\"9405\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"rgopsXSefJafe9AUuQSMDkULMtKtDQ2Azu7iLADSWqI=\",\"fileEncSha256\":\"m0ZFAiG+w8swspr7cp6fR1l4geRp6DHStueh6NMfG5I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636879052_920332623792529_626750131220630938_n.enc?ccb=11-4&oh=01_Q5Aa3wE5BS3XYu4qkMxb28iQcXKT0XsUgvtPaon4lK70TQ2_OQ&oe=69B813DF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771092067\",\"waveform\":\"ACARIyUfO1ZVPUxeVU9RVldPVk8pGw0JAAYAAERTVlVUSztQIERUTltcVlZPN1ZTVShNIkhOQ0YMQ01XJilJUQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771092070,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:01:10'),
(17677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:01:10'),
(17678, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5311F1B277675219330846CC5A12819\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636879052_920332623792529_626750131220630938_n.enc?ccb=11-4&oh=01_Q5Aa3wE5BS3XYu4qkMxb28iQcXKT0XsUgvtPaon4lK70TQ2_OQ&oe=69B813DF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xOpfm+j3CE3Hd0FZaIHg1178pRLiR0XPfda5glVPGTo=\",\"fileLength\":\"9405\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"rgopsXSefJafe9AUuQSMDkULMtKtDQ2Azu7iLADSWqI=\",\"fileEncSha256\":\"m0ZFAiG+w8swspr7cp6fR1l4geRp6DHStueh6NMfG5I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636879052_920332623792529_626750131220630938_n.enc?ccb=11-4&oh=01_Q5Aa3wE5BS3XYu4qkMxb28iQcXKT0XsUgvtPaon4lK70TQ2_OQ&oe=69B813DF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771092067\",\"waveform\":\"ACARIyUfO1ZVPUxeVU9RVldPVk8pGw0JAAYAAERTVlVUSztQIERUTltcVlZPN1ZTVShNIkhOQ0YMQ01XJilJUQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771092070,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:01:11'),
(17679, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5311F1B277675219330846CC5A12819\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092070492,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:01:11'),
(17680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A547D4357D364C53C1EFC49CE30F9DD4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":512,\"width\":512,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1771092070590\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771092071,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:01:11'),
(17681, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:01:11'),
(17682, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092071397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:01:11'),
(17683, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:01:12'),
(17684, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092071397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:01:12'),
(17685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:01:12'),
(17686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:01:12'),
(17687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:10.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:01:12'),
(17688, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A547D4357D364C53C1EFC49CE30F9DD4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":512,\"width\":512,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1771092070590\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771092071,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:01:11.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:01:14'),
(17689, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835:18@lid\",\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092221405,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:03:41.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:03:41'),
(17690, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835:18@lid\",\"id\":\"A5AB6EB6C5A94E0AC40991D4C92CD51B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092221405,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:03:41.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:03:42'),
(17691, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835:18@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092228970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:03:48.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:03:49'),
(17692, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"221190966767835:18@lid\",\"id\":\"A5CFECF268E4BA7CC60E0CEBB061515E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771092228970,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:03:48.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:03:49'),
(17693, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:05:19.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:05:19'),
(17694, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C4EDFA124C42A4499D7EB386C2FF25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":101557},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":101557},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771092319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:05:19.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:05:19'),
(17695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:05:19.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:05:20'),
(17696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:05:19.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:05:20'),
(17697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqNC81YQ2SC7ZFF8_zlU4aTV3jzhtsJwM7WTSphPyi2Q&oe=699DB0D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:05:19.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:05:20'),
(17698, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5C4EDFA124C42A4499D7EB386C2FF25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":101557},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":101557},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771092319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:05:19.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:05:20'),
(17699, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5311F1B277675219330846CC5A12819\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092417915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:06:57.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:06:58'),
(17700, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5311F1B277675219330846CC5A12819\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092417915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:06:57.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:06:58'),
(17701, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092417907,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:06:57.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:06:59'),
(17702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092417925,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:06:57.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:06:59'),
(17703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092417907,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:06:57.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:06:59'),
(17704, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092417925,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:06:57.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:06:59'),
(17705, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771092424783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:07:04.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:07:05'),
(17706, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A582F23F9861233ECEEBAC07D3AEB551\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771092424783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:07:04.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:07:05'),
(17707, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5311F1B277675219330846CC5A12819\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771092430250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:07:10.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:07:10'),
(17708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5311F1B277675219330846CC5A12819\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771092430250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:07:10.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:07:10'),
(17709, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A547274E316938F6478930AB1163C7D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092588960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:09:48.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:09:49'),
(17710, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5F4E161BC149592C670FC61D1B46F2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092588955,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:09:48.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:09:49'),
(17711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A547274E316938F6478930AB1163C7D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092588960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:09:48.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:09:50'),
(17712, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A538912517CE8AD2BEE299860DED375C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092588947,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:09:48.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:09:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17713, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A5F4E161BC149592C670FC61D1B46F2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092588955,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:09:48.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:09:59'),
(17714, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A538912517CE8AD2BEE299860DED375C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771092588947,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:09:48.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:09:59'),
(17715, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A538912517CE8AD2BEE299860DED375C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771092617261,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:10:17.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:10:17'),
(17716, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A538912517CE8AD2BEE299860DED375C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771092617261,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:10:17.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:10:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17717, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrofdAEjrVv_zzFBes0i6B2PklYP-QyquZuBYCQHfCLg&oe=699DE55F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcZOK7s6dVXPKRveoPXyLgEQXMTo1zDzqM7YpY4ty3Ig&oe=699DB2DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtFL6E2Y7NHIELsnDbIphBB0BJfllNigUAeeZFtsdifQ&oe=699DD2E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGk0rwRe2aogPolk1OpzEEVsIiIZimzmiwvMpVIhog61g&oe=699DCD19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcX7x5SC_Il8G7lH3n5a8XloGqBjMZXhGngYl6SxFT5Q&oe=699DD777&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wE68delCtT8OzS0A90GqKpqdVoxt46qIV2WHTnCFWHIgQ&oe=699DD33B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUCgI1iTKpPQ1el9QgYcmRg-s-7kWR32WGo4YuudIoBg&oe=699DBC00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2ZiP_jTSewrb02KqeAsYuLjTB28yJktTQ1JAjl3v_5A&oe=699DD583&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIqxm3McFbhjVWPSn0pD4wnVdJ1AWWMbE0taPFaPG9LQ&oe=699DBC5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2DgBJalh3htflYkUuFdaus4zLFSOoILme4W3VOsT7sw&oe=699DCC95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMeL9o1OFQV75ueZfmgs6uuH6iddmwmGEBwx-lstUO6Q&oe=699DBA95&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpM-JJ2bR6HQMvzHJpn2D2Z_NFenYO1auOFNS3Q8Dv4g&oe=699DC816&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEajn8G000gF1NmLEV-rxMSNM0GEiJjF83W0SusSlhtpw&oe=699DC7CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOy5XRkG3xP8S6cmcRNAlIYrX-GkZ6bCQpRj1z6kmXaQ&oe=699DC07B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh5GO06m4gsDWpyz2P5zNMJFKd0ijxLrOrBxggwvgn9Q&oe=699DE578&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuQkqpWfo_Gi_jsooHJ5FKnGf8rcgbY2v1v_CxBIqASA&oe=699DE00F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxM_nvCW6GUty6PPpHI4XuEHWbVCjhT4w8s2b3FBMgIw&oe=699DB616&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGswSY_rLGGQfpbnfQP5HE7YyZAo5GNQVdoPFpcjuhaQ&oe=699DD4DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmeXwRj6xnXe_b2mcGHkrfCuvFc9AGeMF5RF9U0kF-QA&oe=699DD876&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzJrDdYCcCQCnAQAGA-CD8eSJXSZuyDC3irxahh4pcyQ&oe=699DB16F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAlTAvvSEVaerqdifxu4E4YScIGrAjbgYYEgG3r9YAfw&oe=699DB7EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk4Il5utpAuW2xmxzswYTZJ1kpoCj91p2n7jhuB-Tw2g&oe=699DAECD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3z0d8wAdVA07m1c7nhNwjFRPkWLHpQtd3PQ9c7XIjIQ&oe=699DB3FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr1x8P-0DhAPnQ4XV_j64UkeCw84XEkRolozbp4iPYzA&oe=699DCD42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6jQTCHbKguuHQLIyWBkW2vtewvbs-kZWoJ6YAyJf_GA&oe=699DB295&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKHB25Um7spalwLmDbdIuQommbEqIa-Taz9tdEZyQb4Q&oe=699DBA4C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLBCtKFm0LPJuUxu2pvaYstd8buvxkl5gwxMTNkDpa4A&oe=699DD1DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfyHo7fFT6CVCKenmpd-1VGwPKEEMs-oj8KJWC_6nkzg&oe=699DC7E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_-zTDJDyLAUTvzIB-F9oEFHkfnLXIFUbOE6Y2VSXRmg&oe=699DE050&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbD3nc7yy5fsKRN3Q9EUIrPrHn0zHN71uYh5NmompRPQ&oe=699DB62A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoPVVmym7QTB4CWho30XQrfAe6RotxIOil5i-zfjfV0Q&oe=699DB07B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqVB-3AoGcjMEi_XCVxZHXXx4sWBb4l8uWCqVuCdmspg&oe=699DB9E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4x_tIcdLzgyLSzhOlG9P-tw0RPa0W73-SQBa2k-32Zw&oe=699DBD6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWZNbU1LobW4VaBVtuNDfbqX-----LNetqtY_-41w-AQ&oe=699DC6A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpPQIG9HoeniAykiB7RSwJXY93E5T2lwBw-YTPVK_bIA&oe=699DE485&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo5sEXydvnBOUHybDDSOgGfWKm1c3hkDJ9qrq7bl6tKg&oe=699DB3F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-8YN08sGb5Wua7CA6y4yEulzK6xL_UXzWQ239Z2vt7g&oe=699DD292&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLUkwR5EFbTh9WhcYFjxVlcRRNNXcLU7Wsb32AonnQlQ&oe=699DCC11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoXZr1orDq4auy_p3-MaU3x0hP9Nfo7wfP0bTig7vVsA&oe=699DD239&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2AmbeVWbKqJl3rK-YdU2bMpP8NvLk_758P1K8fO-4ZA&oe=699DE5F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV44f1k3CCOkOqLdLw4P0yf-ckbhlxdNoeaLxLuLHSzw&oe=699DBCEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtpdfmiECWBrr3sqQZkcOwR6bvTWfHof7b1Txbyd85Hw&oe=699DB625&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdftAmzbJL6jZnR9ae5_fLXlOMxt6Chs8eusOhdCToQ&oe=699DBB8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbEV-4K_TVHqvpgEQnz5R4_RU3h54OgKndV91_FgYatA&oe=699DBBFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXT_B9hmRfxr5BB4AuxcPYmR4G0a45Dp9osPjW8LOqPA&oe=699DDCEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2XcOim5u6TyNYvVlFaZtwK2aPG3Q3AOda2UFqucoHzg&oe=699DDBEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFAg8v0m3boit-DxxF4JriA-8G8_sTjQ2s1QqADGE80A&oe=699DB515&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSpt1vvPL2OYFygqdZhqfmqlyPbuYLsBRhP3xZYWYu3A&oe=699DE2AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3oRHommZhLspqKhE-nSNQjVEfIO4AWZ35XmSXfSSeEA&oe=699DD558&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI88SAFZXc-7AhF0kYqIHVJgoue3Hiy5SiVr3yu3kw9Q&oe=699DB213&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJwPDoKZ26gV26FvqsjXg2NIsIQVk90o2isw_neUlOoQ&oe=699DD479&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfffk2O5GmCuCFjEKE3lF-PqSfhA444HgwBTzuvi8MDw&oe=699DC706&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeMTSZqs6jlyaF-zW6zB8Bk7aLvAN_427oJFUb9XJZJA&oe=699DD4A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFnDHgRI1hHNyf4aGUSsUsEzC2ch35yPsNY5BNZ1aDQ&oe=699DB438&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEpkrUTUqW-NPgDU8lHyxA1iQpuLliQ99RB4mH78aXsA&oe=699DD138&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw4TNG7nftW8NOHE-5DzX3cE2f2-o8ewOpdf9GX3HNMw&oe=699DE000&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvKA3Z9iUZ-b6rw7PjBJ6FuzwPP_eWQNL5JeHQ89kw8Q&oe=699DCCCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVQRLsOr_FS9uJqGXjN-JTG0rMCJmwrOiHob-kiKWBw&oe=699DBFFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT3fDJNhfhb2RSBUTkZqPCbODweeaAsJ3yQR_KjPDjbg&oe=699DB0CE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYy-Rz_T3JLASssTuDUS6vg0_beDxsGQNAhIWb558bDA&oe=699DB7B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1EmjUI95l6RsT8l71UuURSlRT0P2Rfi1xO6uboYKmzw&oe=699DD592&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsRYfTHnbeGf6LqMIBvlntgJpKHo5t7phAhnOA3Q92Zw&oe=699DC8D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyCFgDRuWUO3d_6jEOc2h5TJHg11TZSRUE1Iwi4F9i4w&oe=699DBCBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdpZ1wvwOmQGKqW-bIjhTXq035CsApALGDH712IQX9g&oe=699DBFF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMAIBUxcQx9rG9cdCXLvVH7ysoIO4NG6Hbur4FJwNv0g&oe=699DBA6F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGByRmVyXpzWFowag_DkkqHZ3jWzsM2EUgTqKjhr5OhqA&oe=699DAEFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wE95ZbGZ1DAFm4YsYfQlQ_nZPkh3GGp12n9YJxvT8O94A&oe=699DC89A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJFsVrxBwH253Js_Aojfl7hzINQoBRcp3xr1ibEe9bjQ&oe=699DB3D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjeuuSA5at9lmU6RQKaDO6PYQI1bvs8qeyyEhk4BXFQQ&oe=699DCFC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzlkVE5QeAVAjV1OIYpQt0nqGlgpz4FInIjdWrqh2hg&oe=699DD657&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOQEFEUtgGJLO4QJBqO_miBuFDLKrJhfqHEWF6cfc_mg&oe=699DD6FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXlA7d-xAxssJSLbg27zmZa9klatzHV9nlwpQT9806g&oe=699DD20E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-p0PAA_5FeozZ2oev4icWDWJXUghT9NgZkMzrvocAeQ&oe=699DAF35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKSTApqQaX8qFSkJwWI6ong2rkF-a14cSBrSEa-ltTkw&oe=699DBCC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbsMGfe4NhRcOn4r5CS0tejbNfAJU7EkcFIoDAFtMnmQ&oe=699DC87D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNur6gFfQSkTDrQAErwUXVlYYLa4jwJyUnq58wnVBenQ&oe=699DCCA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7rBicACYjluPiYE6Z7AQ8avxv5WJl4X3txk44JopyXw&oe=699DE43F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEfNx1AGN2slT02953CrdlmLX26whyVL63JDhxCArjfA&oe=699DC942&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYkdmYBNc_8PYc4D0q9MZ-Wr2H1opXIiEB8hQh_cnJzg&oe=699DB7E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmf1uAJxGSbjqpzi4v-cTZMM4Kgit2tStIp4hvVNEJIg&oe=699DB307&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLHZMd-0sxvhxuBMQ3_cLOsCYCToV182KLlL6UwgUqnQ&oe=699DD8A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTe4-yQx3wIocdU6SGux3Cpa3rmvR710KdIEzqoOBbOw&oe=699DDB5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLZn-bGVzVBHLouM2J0pe1rntsgaYLeA3tWhFx9zkFdw&oe=699DE347&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqKoC3e32FGTEqCCk8eP5XfF6W_v4WYIm9FWqRTz8FCQ&oe=699DDEE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkEENi7L7RIHcq2hCg8S17euPMGyIeA9YJAY3u96268A&oe=699DB708&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfBmZ8htdAsCUXUq7z4jqMOCIPmK9mmksYwodvcxqxA&oe=699DB84A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNB_5jQnbFVaB28hi6AQ43qeA_uhhygnTd5noDP8Ojog&oe=699DB351&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ykcGtGQ4Qgr1a5BV85qVhLab4xXoP726UdvJqueVeQ&oe=699DDF36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoWcUU1pkzR-6csNucGSxbDkey4o_Ya7UG1xGYvJTCFQ&oe=699DE657&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJqUwSs1V3gbAUNIf_GIx9FVUMCPFFRcJ3Pom2UThzoA&oe=699DD5BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPn-k53-yCALVo6BD8OCIVRZ_hc_vGHGNsnAao3fJNaQ&oe=699DDDAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsb9aSHTaHfbFUaQEfwIqmz82zfIv4l1_1oUGjKIQ6yw&oe=699DC0DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8k8o0AVI2fM9b-l0La2qiDPAaLPe84h4rLCKuUeulEg&oe=699DBDB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLL3DXDMNN8oX9C7wCWyIC3f95AS-HzkdZkMgcBAaIg&oe=699DE287&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWfmhNHpge8k_TpLy5RxvEXDxHf9zdJEFKEO5-vFfBwg&oe=699DBF8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlsOvIU7AjE-8Olk3IrWS3dRWmdHLKouoILkiraOhAVw&oe=699DDF60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbf4zrv8WGBJgyuBbVpGzIK3uhUaj2_7Eg6ciXlyeuzQ&oe=699DD48B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeQjT9NsiNHSmiUBFkMIjV0tbzOJRdmXagMTQjnWZBOw&oe=699DE320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2PIGfXZESb3noR7Uq2M3QV2efHUiEBjIfXuldoG9rog&oe=699DB792&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkn-Jwwo6lw1QXshcIC2ncg8qRDkhd8mawhV862q3auw&oe=699DB7A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFohSDjba56XyTSM371bkXwAfMxq7rVaNHi9QgYrKt_wA&oe=699DB363&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6NGO4IFedR0R2t7zGQbhqQYKMbBbPCQnGCrNGTUjTw&oe=699DC6F3&_nc_sid=5', 1, '2026-02-14 15:10:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17718, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrofdAEjrVv_zzFBes0i6B2PklYP-QyquZuBYCQHfCLg&oe=699DE55F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcZOK7s6dVXPKRveoPXyLgEQXMTo1zDzqM7YpY4ty3Ig&oe=699DB2DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtFL6E2Y7NHIELsnDbIphBB0BJfllNigUAeeZFtsdifQ&oe=699DD2E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGk0rwRe2aogPolk1OpzEEVsIiIZimzmiwvMpVIhog61g&oe=699DCD19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcX7x5SC_Il8G7lH3n5a8XloGqBjMZXhGngYl6SxFT5Q&oe=699DD777&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wE68delCtT8OzS0A90GqKpqdVoxt46qIV2WHTnCFWHIgQ&oe=699DD33B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUCgI1iTKpPQ1el9QgYcmRg-s-7kWR32WGo4YuudIoBg&oe=699DBC00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2ZiP_jTSewrb02KqeAsYuLjTB28yJktTQ1JAjl3v_5A&oe=699DD583&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIqxm3McFbhjVWPSn0pD4wnVdJ1AWWMbE0taPFaPG9LQ&oe=699DBC5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2DgBJalh3htflYkUuFdaus4zLFSOoILme4W3VOsT7sw&oe=699DCC95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMeL9o1OFQV75ueZfmgs6uuH6iddmwmGEBwx-lstUO6Q&oe=699DBA95&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpM-JJ2bR6HQMvzHJpn2D2Z_NFenYO1auOFNS3Q8Dv4g&oe=699DC816&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEajn8G000gF1NmLEV-rxMSNM0GEiJjF83W0SusSlhtpw&oe=699DC7CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOy5XRkG3xP8S6cmcRNAlIYrX-GkZ6bCQpRj1z6kmXaQ&oe=699DC07B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh5GO06m4gsDWpyz2P5zNMJFKd0ijxLrOrBxggwvgn9Q&oe=699DE578&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuQkqpWfo_Gi_jsooHJ5FKnGf8rcgbY2v1v_CxBIqASA&oe=699DE00F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxM_nvCW6GUty6PPpHI4XuEHWbVCjhT4w8s2b3FBMgIw&oe=699DB616&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGswSY_rLGGQfpbnfQP5HE7YyZAo5GNQVdoPFpcjuhaQ&oe=699DD4DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmeXwRj6xnXe_b2mcGHkrfCuvFc9AGeMF5RF9U0kF-QA&oe=699DD876&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzJrDdYCcCQCnAQAGA-CD8eSJXSZuyDC3irxahh4pcyQ&oe=699DB16F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAlTAvvSEVaerqdifxu4E4YScIGrAjbgYYEgG3r9YAfw&oe=699DB7EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk4Il5utpAuW2xmxzswYTZJ1kpoCj91p2n7jhuB-Tw2g&oe=699DAECD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3z0d8wAdVA07m1c7nhNwjFRPkWLHpQtd3PQ9c7XIjIQ&oe=699DB3FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr1x8P-0DhAPnQ4XV_j64UkeCw84XEkRolozbp4iPYzA&oe=699DCD42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6jQTCHbKguuHQLIyWBkW2vtewvbs-kZWoJ6YAyJf_GA&oe=699DB295&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKHB25Um7spalwLmDbdIuQommbEqIa-Taz9tdEZyQb4Q&oe=699DBA4C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLBCtKFm0LPJuUxu2pvaYstd8buvxkl5gwxMTNkDpa4A&oe=699DD1DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfyHo7fFT6CVCKenmpd-1VGwPKEEMs-oj8KJWC_6nkzg&oe=699DC7E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_-zTDJDyLAUTvzIB-F9oEFHkfnLXIFUbOE6Y2VSXRmg&oe=699DE050&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbD3nc7yy5fsKRN3Q9EUIrPrHn0zHN71uYh5NmompRPQ&oe=699DB62A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoPVVmym7QTB4CWho30XQrfAe6RotxIOil5i-zfjfV0Q&oe=699DB07B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqVB-3AoGcjMEi_XCVxZHXXx4sWBb4l8uWCqVuCdmspg&oe=699DB9E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4x_tIcdLzgyLSzhOlG9P-tw0RPa0W73-SQBa2k-32Zw&oe=699DBD6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWZNbU1LobW4VaBVtuNDfbqX-----LNetqtY_-41w-AQ&oe=699DC6A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpPQIG9HoeniAykiB7RSwJXY93E5T2lwBw-YTPVK_bIA&oe=699DE485&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo5sEXydvnBOUHybDDSOgGfWKm1c3hkDJ9qrq7bl6tKg&oe=699DB3F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-8YN08sGb5Wua7CA6y4yEulzK6xL_UXzWQ239Z2vt7g&oe=699DD292&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLUkwR5EFbTh9WhcYFjxVlcRRNNXcLU7Wsb32AonnQlQ&oe=699DCC11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoXZr1orDq4auy_p3-MaU3x0hP9Nfo7wfP0bTig7vVsA&oe=699DD239&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2AmbeVWbKqJl3rK-YdU2bMpP8NvLk_758P1K8fO-4ZA&oe=699DE5F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV44f1k3CCOkOqLdLw4P0yf-ckbhlxdNoeaLxLuLHSzw&oe=699DBCEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtpdfmiECWBrr3sqQZkcOwR6bvTWfHof7b1Txbyd85Hw&oe=699DB625&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdftAmzbJL6jZnR9ae5_fLXlOMxt6Chs8eusOhdCToQ&oe=699DBB8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbEV-4K_TVHqvpgEQnz5R4_RU3h54OgKndV91_FgYatA&oe=699DBBFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXT_B9hmRfxr5BB4AuxcPYmR4G0a45Dp9osPjW8LOqPA&oe=699DDCEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2XcOim5u6TyNYvVlFaZtwK2aPG3Q3AOda2UFqucoHzg&oe=699DDBEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFAg8v0m3boit-DxxF4JriA-8G8_sTjQ2s1QqADGE80A&oe=699DB515&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSpt1vvPL2OYFygqdZhqfmqlyPbuYLsBRhP3xZYWYu3A&oe=699DE2AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3oRHommZhLspqKhE-nSNQjVEfIO4AWZ35XmSXfSSeEA&oe=699DD558&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI88SAFZXc-7AhF0kYqIHVJgoue3Hiy5SiVr3yu3kw9Q&oe=699DB213&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJwPDoKZ26gV26FvqsjXg2NIsIQVk90o2isw_neUlOoQ&oe=699DD479&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfffk2O5GmCuCFjEKE3lF-PqSfhA444HgwBTzuvi8MDw&oe=699DC706&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeMTSZqs6jlyaF-zW6zB8Bk7aLvAN_427oJFUb9XJZJA&oe=699DD4A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFnDHgRI1hHNyf4aGUSsUsEzC2ch35yPsNY5BNZ1aDQ&oe=699DB438&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEpkrUTUqW-NPgDU8lHyxA1iQpuLliQ99RB4mH78aXsA&oe=699DD138&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw4TNG7nftW8NOHE-5DzX3cE2f2-o8ewOpdf9GX3HNMw&oe=699DE000&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvKA3Z9iUZ-b6rw7PjBJ6FuzwPP_eWQNL5JeHQ89kw8Q&oe=699DCCCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVQRLsOr_FS9uJqGXjN-JTG0rMCJmwrOiHob-kiKWBw&oe=699DBFFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT3fDJNhfhb2RSBUTkZqPCbODweeaAsJ3yQR_KjPDjbg&oe=699DB0CE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYy-Rz_T3JLASssTuDUS6vg0_beDxsGQNAhIWb558bDA&oe=699DB7B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1EmjUI95l6RsT8l71UuURSlRT0P2Rfi1xO6uboYKmzw&oe=699DD592&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsRYfTHnbeGf6LqMIBvlntgJpKHo5t7phAhnOA3Q92Zw&oe=699DC8D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyCFgDRuWUO3d_6jEOc2h5TJHg11TZSRUE1Iwi4F9i4w&oe=699DBCBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdpZ1wvwOmQGKqW-bIjhTXq035CsApALGDH712IQX9g&oe=699DBFF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMAIBUxcQx9rG9cdCXLvVH7ysoIO4NG6Hbur4FJwNv0g&oe=699DBA6F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGByRmVyXpzWFowag_DkkqHZ3jWzsM2EUgTqKjhr5OhqA&oe=699DAEFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wE95ZbGZ1DAFm4YsYfQlQ_nZPkh3GGp12n9YJxvT8O94A&oe=699DC89A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJFsVrxBwH253Js_Aojfl7hzINQoBRcp3xr1ibEe9bjQ&oe=699DB3D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjeuuSA5at9lmU6RQKaDO6PYQI1bvs8qeyyEhk4BXFQQ&oe=699DCFC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzlkVE5QeAVAjV1OIYpQt0nqGlgpz4FInIjdWrqh2hg&oe=699DD657&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOQEFEUtgGJLO4QJBqO_miBuFDLKrJhfqHEWF6cfc_mg&oe=699DD6FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXlA7d-xAxssJSLbg27zmZa9klatzHV9nlwpQT9806g&oe=699DD20E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-p0PAA_5FeozZ2oev4icWDWJXUghT9NgZkMzrvocAeQ&oe=699DAF35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKSTApqQaX8qFSkJwWI6ong2rkF-a14cSBrSEa-ltTkw&oe=699DBCC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbsMGfe4NhRcOn4r5CS0tejbNfAJU7EkcFIoDAFtMnmQ&oe=699DC87D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNur6gFfQSkTDrQAErwUXVlYYLa4jwJyUnq58wnVBenQ&oe=699DCCA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7rBicACYjluPiYE6Z7AQ8avxv5WJl4X3txk44JopyXw&oe=699DE43F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEfNx1AGN2slT02953CrdlmLX26whyVL63JDhxCArjfA&oe=699DC942&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYkdmYBNc_8PYc4D0q9MZ-Wr2H1opXIiEB8hQh_cnJzg&oe=699DB7E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmf1uAJxGSbjqpzi4v-cTZMM4Kgit2tStIp4hvVNEJIg&oe=699DB307&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLHZMd-0sxvhxuBMQ3_cLOsCYCToV182KLlL6UwgUqnQ&oe=699DD8A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTe4-yQx3wIocdU6SGux3Cpa3rmvR710KdIEzqoOBbOw&oe=699DDB5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLZn-bGVzVBHLouM2J0pe1rntsgaYLeA3tWhFx9zkFdw&oe=699DE347&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqKoC3e32FGTEqCCk8eP5XfF6W_v4WYIm9FWqRTz8FCQ&oe=699DDEE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkEENi7L7RIHcq2hCg8S17euPMGyIeA9YJAY3u96268A&oe=699DB708&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfBmZ8htdAsCUXUq7z4jqMOCIPmK9mmksYwodvcxqxA&oe=699DB84A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNB_5jQnbFVaB28hi6AQ43qeA_uhhygnTd5noDP8Ojog&oe=699DB351&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ykcGtGQ4Qgr1a5BV85qVhLab4xXoP726UdvJqueVeQ&oe=699DDF36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoWcUU1pkzR-6csNucGSxbDkey4o_Ya7UG1xGYvJTCFQ&oe=699DE657&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJqUwSs1V3gbAUNIf_GIx9FVUMCPFFRcJ3Pom2UThzoA&oe=699DD5BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPn-k53-yCALVo6BD8OCIVRZ_hc_vGHGNsnAao3fJNaQ&oe=699DDDAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsb9aSHTaHfbFUaQEfwIqmz82zfIv4l1_1oUGjKIQ6yw&oe=699DC0DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8k8o0AVI2fM9b-l0La2qiDPAaLPe84h4rLCKuUeulEg&oe=699DBDB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLL3DXDMNN8oX9C7wCWyIC3f95AS-HzkdZkMgcBAaIg&oe=699DE287&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWfmhNHpge8k_TpLy5RxvEXDxHf9zdJEFKEO5-vFfBwg&oe=699DBF8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlsOvIU7AjE-8Olk3IrWS3dRWmdHLKouoILkiraOhAVw&oe=699DDF60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbf4zrv8WGBJgyuBbVpGzIK3uhUaj2_7Eg6ciXlyeuzQ&oe=699DD48B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeQjT9NsiNHSmiUBFkMIjV0tbzOJRdmXagMTQjnWZBOw&oe=699DE320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2PIGfXZESb3noR7Uq2M3QV2efHUiEBjIfXuldoG9rog&oe=699DB792&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkn-Jwwo6lw1QXshcIC2ncg8qRDkhd8mawhV862q3auw&oe=699DB7A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFohSDjba56XyTSM371bkXwAfMxq7rVaNHi9QgYrKt_wA&oe=699DB363&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6NGO4IFedR0R2t7zGQbhqQYKMbBbPCQnGCrNGTUjTw&oe=699DC6F3&_nc_sid=5', 1, '2026-02-14 15:10:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17719, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:28.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:28'),
(17720, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:28.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:29'),
(17721, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:29.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:29'),
(17722, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:29.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:30'),
(17723, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA4501E6ED60ABF843\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092749,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:29.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:12:30'),
(17724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:30.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:30'),
(17725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:30.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:30'),
(17726, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB066D525F23E59BB55C7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092750,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:30.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:30'),
(17727, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB066D525F23E59BB55C7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092750,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:30.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:30'),
(17728, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA4501E6ED60ABF843\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092749,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:29.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:12:31'),
(17729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:45.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:45'),
(17730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:45.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:46'),
(17731, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:47.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:47'),
(17732, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:47.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:47'),
(17733, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB076CB918897852E74EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/status\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092767,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:47.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:12:47'),
(17734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:47.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:47'),
(17735, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:47.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:47'),
(17736, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B2AD2D3AD7B2DFA828\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Erro ao buscar status\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092767,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:48.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:48'),
(17737, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B2AD2D3AD7B2DFA828\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Erro ao buscar status\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092767,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:48.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:48'),
(17738, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB076CB918897852E74EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/status\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092767,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:47.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:12:50'),
(17739, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:50.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:50'),
(17740, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:50.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:51'),
(17741, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:52.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:53'),
(17742, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DAFB54A81ED5AF3FAB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092772,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:52.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:12:53'),
(17743, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:52.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:53'),
(17744, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03E86474F79FFB500AE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092773,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:53.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:53'),
(17745, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:53.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:53'),
(17746, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03E86474F79FFB500AE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092773,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:53.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:54'),
(17747, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DAFB54A81ED5AF3FAB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092772,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:52.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:12:54'),
(17748, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:53.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:54'),
(17749, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:55.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:55'),
(17750, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:55.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:56'),
(17751, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:58'),
(17752, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB040C31AB9548FE29AA6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092778,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:12:58'),
(17753, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:58'),
(17754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:58'),
(17755, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:58'),
(17756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB040C31AB9548FE29AA6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092778,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:12:59'),
(17757, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C496B3DEA1026D22D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092778,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:12:59'),
(17758, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C496B3DEA1026D22D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092778,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:12:58.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:12:59'),
(17759, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:02.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:03'),
(17760, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:02.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:03'),
(17761, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:06.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:06'),
(17762, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:06.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:06'),
(17763, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:07'),
(17764, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:07'),
(17765, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FD44C616B1644C2B0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"maisa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092786,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:13:07'),
(17766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:07'),
(17767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:07'),
(17768, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B04135FC6F610D10BC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *maisa*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092787,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:08'),
(17769, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B04135FC6F610D10BC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *maisa*\\n\\nDigite o *telefone* do cliente (apenas números):\\nExemplo: 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092787,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:08'),
(17770, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FD44C616B1644C2B0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"maisa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092786,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:07.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:13:08'),
(17771, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:11.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:11'),
(17772, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:11.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:11'),
(17773, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:14.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:14'),
(17774, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:14.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:14'),
(17775, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:14.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:14'),
(17776, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:14.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17777, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcZOK7s6dVXPKRveoPXyLgEQXMTo1zDzqM7YpY4ty3Ig&oe=699DB2DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtFL6E2Y7NHIELsnDbIphBB0BJfllNigUAeeZFtsdifQ&oe=699DD2E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGk0rwRe2aogPolk1OpzEEVsIiIZimzmiwvMpVIhog61g&oe=699DCD19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcX7x5SC_Il8G7lH3n5a8XloGqBjMZXhGngYl6SxFT5Q&oe=699DD777&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wE68delCtT8OzS0A90GqKpqdVoxt46qIV2WHTnCFWHIgQ&oe=699DD33B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUCgI1iTKpPQ1el9QgYcmRg-s-7kWR32WGo4YuudIoBg&oe=699DBC00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2ZiP_jTSewrb02KqeAsYuLjTB28yJktTQ1JAjl3v_5A&oe=699DD583&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIqxm3McFbhjVWPSn0pD4wnVdJ1AWWMbE0taPFaPG9LQ&oe=699DBC5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2DgBJalh3htflYkUuFdaus4zLFSOoILme4W3VOsT7sw&oe=699DCC95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMeL9o1OFQV75ueZfmgs6uuH6iddmwmGEBwx-lstUO6Q&oe=699DBA95&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpM-JJ2bR6HQMvzHJpn2D2Z_NFenYO1auOFNS3Q8Dv4g&oe=699DC816&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEajn8G000gF1NmLEV-rxMSNM0GEiJjF83W0SusSlhtpw&oe=699DC7CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOy5XRkG3xP8S6cmcRNAlIYrX-GkZ6bCQpRj1z6kmXaQ&oe=699DC07B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh5GO06m4gsDWpyz2P5zNMJFKd0ijxLrOrBxggwvgn9Q&oe=699DE578&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuQkqpWfo_Gi_jsooHJ5FKnGf8rcgbY2v1v_CxBIqASA&oe=699DE00F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxM_nvCW6GUty6PPpHI4XuEHWbVCjhT4w8s2b3FBMgIw&oe=699DB616&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGswSY_rLGGQfpbnfQP5HE7YyZAo5GNQVdoPFpcjuhaQ&oe=699DD4DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmeXwRj6xnXe_b2mcGHkrfCuvFc9AGeMF5RF9U0kF-QA&oe=699DD876&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzJrDdYCcCQCnAQAGA-CD8eSJXSZuyDC3irxahh4pcyQ&oe=699DB16F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAlTAvvSEVaerqdifxu4E4YScIGrAjbgYYEgG3r9YAfw&oe=699DB7EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk4Il5utpAuW2xmxzswYTZJ1kpoCj91p2n7jhuB-Tw2g&oe=699DAECD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3z0d8wAdVA07m1c7nhNwjFRPkWLHpQtd3PQ9c7XIjIQ&oe=699DB3FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr1x8P-0DhAPnQ4XV_j64UkeCw84XEkRolozbp4iPYzA&oe=699DCD42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6jQTCHbKguuHQLIyWBkW2vtewvbs-kZWoJ6YAyJf_GA&oe=699DB295&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKHB25Um7spalwLmDbdIuQommbEqIa-Taz9tdEZyQb4Q&oe=699DBA4C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLBCtKFm0LPJuUxu2pvaYstd8buvxkl5gwxMTNkDpa4A&oe=699DD1DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfyHo7fFT6CVCKenmpd-1VGwPKEEMs-oj8KJWC_6nkzg&oe=699DC7E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_-zTDJDyLAUTvzIB-F9oEFHkfnLXIFUbOE6Y2VSXRmg&oe=699DE050&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbD3nc7yy5fsKRN3Q9EUIrPrHn0zHN71uYh5NmompRPQ&oe=699DB62A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoPVVmym7QTB4CWho30XQrfAe6RotxIOil5i-zfjfV0Q&oe=699DB07B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqVB-3AoGcjMEi_XCVxZHXXx4sWBb4l8uWCqVuCdmspg&oe=699DB9E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4x_tIcdLzgyLSzhOlG9P-tw0RPa0W73-SQBa2k-32Zw&oe=699DBD6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWZNbU1LobW4VaBVtuNDfbqX-----LNetqtY_-41w-AQ&oe=699DC6A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpPQIG9HoeniAykiB7RSwJXY93E5T2lwBw-YTPVK_bIA&oe=699DE485&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo5sEXydvnBOUHybDDSOgGfWKm1c3hkDJ9qrq7bl6tKg&oe=699DB3F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-8YN08sGb5Wua7CA6y4yEulzK6xL_UXzWQ239Z2vt7g&oe=699DD292&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLUkwR5EFbTh9WhcYFjxVlcRRNNXcLU7Wsb32AonnQlQ&oe=699DCC11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoXZr1orDq4auy_p3-MaU3x0hP9Nfo7wfP0bTig7vVsA&oe=699DD239&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2AmbeVWbKqJl3rK-YdU2bMpP8NvLk_758P1K8fO-4ZA&oe=699DE5F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV44f1k3CCOkOqLdLw4P0yf-ckbhlxdNoeaLxLuLHSzw&oe=699DBCEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtpdfmiECWBrr3sqQZkcOwR6bvTWfHof7b1Txbyd85Hw&oe=699DB625&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdftAmzbJL6jZnR9ae5_fLXlOMxt6Chs8eusOhdCToQ&oe=699DBB8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbEV-4K_TVHqvpgEQnz5R4_RU3h54OgKndV91_FgYatA&oe=699DBBFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXT_B9hmRfxr5BB4AuxcPYmR4G0a45Dp9osPjW8LOqPA&oe=699DDCEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2XcOim5u6TyNYvVlFaZtwK2aPG3Q3AOda2UFqucoHzg&oe=699DDBEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFAg8v0m3boit-DxxF4JriA-8G8_sTjQ2s1QqADGE80A&oe=699DB515&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSpt1vvPL2OYFygqdZhqfmqlyPbuYLsBRhP3xZYWYu3A&oe=699DE2AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3oRHommZhLspqKhE-nSNQjVEfIO4AWZ35XmSXfSSeEA&oe=699DD558&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI88SAFZXc-7AhF0kYqIHVJgoue3Hiy5SiVr3yu3kw9Q&oe=699DB213&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJwPDoKZ26gV26FvqsjXg2NIsIQVk90o2isw_neUlOoQ&oe=699DD479&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfffk2O5GmCuCFjEKE3lF-PqSfhA444HgwBTzuvi8MDw&oe=699DC706&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeMTSZqs6jlyaF-zW6zB8Bk7aLvAN_427oJFUb9XJZJA&oe=699DD4A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFnDHgRI1hHNyf4aGUSsUsEzC2ch35yPsNY5BNZ1aDQ&oe=699DB438&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEpkrUTUqW-NPgDU8lHyxA1iQpuLliQ99RB4mH78aXsA&oe=699DD138&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw4TNG7nftW8NOHE-5DzX3cE2f2-o8ewOpdf9GX3HNMw&oe=699DE000&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvKA3Z9iUZ-b6rw7PjBJ6FuzwPP_eWQNL5JeHQ89kw8Q&oe=699DCCCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVQRLsOr_FS9uJqGXjN-JTG0rMCJmwrOiHob-kiKWBw&oe=699DBFFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT3fDJNhfhb2RSBUTkZqPCbODweeaAsJ3yQR_KjPDjbg&oe=699DB0CE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYy-Rz_T3JLASssTuDUS6vg0_beDxsGQNAhIWb558bDA&oe=699DB7B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1EmjUI95l6RsT8l71UuURSlRT0P2Rfi1xO6uboYKmzw&oe=699DD592&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsRYfTHnbeGf6LqMIBvlntgJpKHo5t7phAhnOA3Q92Zw&oe=699DC8D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyCFgDRuWUO3d_6jEOc2h5TJHg11TZSRUE1Iwi4F9i4w&oe=699DBCBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdpZ1wvwOmQGKqW-bIjhTXq035CsApALGDH712IQX9g&oe=699DBFF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMAIBUxcQx9rG9cdCXLvVH7ysoIO4NG6Hbur4FJwNv0g&oe=699DBA6F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGByRmVyXpzWFowag_DkkqHZ3jWzsM2EUgTqKjhr5OhqA&oe=699DAEFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wE95ZbGZ1DAFm4YsYfQlQ_nZPkh3GGp12n9YJxvT8O94A&oe=699DC89A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJFsVrxBwH253Js_Aojfl7hzINQoBRcp3xr1ibEe9bjQ&oe=699DB3D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjeuuSA5at9lmU6RQKaDO6PYQI1bvs8qeyyEhk4BXFQQ&oe=699DCFC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzlkVE5QeAVAjV1OIYpQt0nqGlgpz4FInIjdWrqh2hg&oe=699DD657&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOQEFEUtgGJLO4QJBqO_miBuFDLKrJhfqHEWF6cfc_mg&oe=699DD6FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXlA7d-xAxssJSLbg27zmZa9klatzHV9nlwpQT9806g&oe=699DD20E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-p0PAA_5FeozZ2oev4icWDWJXUghT9NgZkMzrvocAeQ&oe=699DAF35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKSTApqQaX8qFSkJwWI6ong2rkF-a14cSBrSEa-ltTkw&oe=699DBCC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbsMGfe4NhRcOn4r5CS0tejbNfAJU7EkcFIoDAFtMnmQ&oe=699DC87D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNur6gFfQSkTDrQAErwUXVlYYLa4jwJyUnq58wnVBenQ&oe=699DCCA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7rBicACYjluPiYE6Z7AQ8avxv5WJl4X3txk44JopyXw&oe=699DE43F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEfNx1AGN2slT02953CrdlmLX26whyVL63JDhxCArjfA&oe=699DC942&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYkdmYBNc_8PYc4D0q9MZ-Wr2H1opXIiEB8hQh_cnJzg&oe=699DB7E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmf1uAJxGSbjqpzi4v-cTZMM4Kgit2tStIp4hvVNEJIg&oe=699DB307&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLHZMd-0sxvhxuBMQ3_cLOsCYCToV182KLlL6UwgUqnQ&oe=699DD8A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTe4-yQx3wIocdU6SGux3Cpa3rmvR710KdIEzqoOBbOw&oe=699DDB5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLZn-bGVzVBHLouM2J0pe1rntsgaYLeA3tWhFx9zkFdw&oe=699DE347&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqKoC3e32FGTEqCCk8eP5XfF6W_v4WYIm9FWqRTz8FCQ&oe=699DDEE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkEENi7L7RIHcq2hCg8S17euPMGyIeA9YJAY3u96268A&oe=699DB708&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfBmZ8htdAsCUXUq7z4jqMOCIPmK9mmksYwodvcxqxA&oe=699DB84A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNB_5jQnbFVaB28hi6AQ43qeA_uhhygnTd5noDP8Ojog&oe=699DB351&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ykcGtGQ4Qgr1a5BV85qVhLab4xXoP726UdvJqueVeQ&oe=699DDF36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoWcUU1pkzR-6csNucGSxbDkey4o_Ya7UG1xGYvJTCFQ&oe=699DE657&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJqUwSs1V3gbAUNIf_GIx9FVUMCPFFRcJ3Pom2UThzoA&oe=699DD5BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPn-k53-yCALVo6BD8OCIVRZ_hc_vGHGNsnAao3fJNaQ&oe=699DDDAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsb9aSHTaHfbFUaQEfwIqmz82zfIv4l1_1oUGjKIQ6yw&oe=699DC0DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8k8o0AVI2fM9b-l0La2qiDPAaLPe84h4rLCKuUeulEg&oe=699DBDB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLL3DXDMNN8oX9C7wCWyIC3f95AS-HzkdZkMgcBAaIg&oe=699DE287&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWfmhNHpge8k_TpLy5RxvEXDxHf9zdJEFKEO5-vFfBwg&oe=699DBF8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlsOvIU7AjE-8Olk3IrWS3dRWmdHLKouoILkiraOhAVw&oe=699DDF60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbf4zrv8WGBJgyuBbVpGzIK3uhUaj2_7Eg6ciXlyeuzQ&oe=699DD48B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeQjT9NsiNHSmiUBFkMIjV0tbzOJRdmXagMTQjnWZBOw&oe=699DE320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2PIGfXZESb3noR7Uq2M3QV2efHUiEBjIfXuldoG9rog&oe=699DB792&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkn-Jwwo6lw1QXshcIC2ncg8qRDkhd8mawhV862q3auw&oe=699DB7A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFohSDjba56XyTSM371bkXwAfMxq7rVaNHi9QgYrKt_wA&oe=699DB363&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6NGO4IFedR0R2t7zGQbhqQYKMbBbPCQnGCrNGTUjTw&oe=699DC6F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-14 15:13:22');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17778, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wFcZOK7s6dVXPKRveoPXyLgEQXMTo1zDzqM7YpY4ty3Ig&oe=699DB2DB&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtFL6E2Y7NHIELsnDbIphBB0BJfllNigUAeeZFtsdifQ&oe=699DD2E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGk0rwRe2aogPolk1OpzEEVsIiIZimzmiwvMpVIhog61g&oe=699DCD19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcX7x5SC_Il8G7lH3n5a8XloGqBjMZXhGngYl6SxFT5Q&oe=699DD777&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wE68delCtT8OzS0A90GqKpqdVoxt46qIV2WHTnCFWHIgQ&oe=699DD33B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUCgI1iTKpPQ1el9QgYcmRg-s-7kWR32WGo4YuudIoBg&oe=699DBC00&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2ZiP_jTSewrb02KqeAsYuLjTB28yJktTQ1JAjl3v_5A&oe=699DD583&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wGIqxm3McFbhjVWPSn0pD4wnVdJ1AWWMbE0taPFaPG9LQ&oe=699DBC5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2DgBJalh3htflYkUuFdaus4zLFSOoILme4W3VOsT7sw&oe=699DCC95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFMeL9o1OFQV75ueZfmgs6uuH6iddmwmGEBwx-lstUO6Q&oe=699DBA95&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpM-JJ2bR6HQMvzHJpn2D2Z_NFenYO1auOFNS3Q8Dv4g&oe=699DC816&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEajn8G000gF1NmLEV-rxMSNM0GEiJjF83W0SusSlhtpw&oe=699DC7CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEOy5XRkG3xP8S6cmcRNAlIYrX-GkZ6bCQpRj1z6kmXaQ&oe=699DC07B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh5GO06m4gsDWpyz2P5zNMJFKd0ijxLrOrBxggwvgn9Q&oe=699DE578&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuQkqpWfo_Gi_jsooHJ5FKnGf8rcgbY2v1v_CxBIqASA&oe=699DE00F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxM_nvCW6GUty6PPpHI4XuEHWbVCjhT4w8s2b3FBMgIw&oe=699DB616&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGswSY_rLGGQfpbnfQP5HE7YyZAo5GNQVdoPFpcjuhaQ&oe=699DD4DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmeXwRj6xnXe_b2mcGHkrfCuvFc9AGeMF5RF9U0kF-QA&oe=699DD876&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzJrDdYCcCQCnAQAGA-CD8eSJXSZuyDC3irxahh4pcyQ&oe=699DB16F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAlTAvvSEVaerqdifxu4E4YScIGrAjbgYYEgG3r9YAfw&oe=699DB7EB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk4Il5utpAuW2xmxzswYTZJ1kpoCj91p2n7jhuB-Tw2g&oe=699DAECD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3z0d8wAdVA07m1c7nhNwjFRPkWLHpQtd3PQ9c7XIjIQ&oe=699DB3FB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr1x8P-0DhAPnQ4XV_j64UkeCw84XEkRolozbp4iPYzA&oe=699DCD42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wH6jQTCHbKguuHQLIyWBkW2vtewvbs-kZWoJ6YAyJf_GA&oe=699DB295&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKHB25Um7spalwLmDbdIuQommbEqIa-Taz9tdEZyQb4Q&oe=699DBA4C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLBCtKFm0LPJuUxu2pvaYstd8buvxkl5gwxMTNkDpa4A&oe=699DD1DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfyHo7fFT6CVCKenmpd-1VGwPKEEMs-oj8KJWC_6nkzg&oe=699DC7E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_-zTDJDyLAUTvzIB-F9oEFHkfnLXIFUbOE6Y2VSXRmg&oe=699DE050&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbD3nc7yy5fsKRN3Q9EUIrPrHn0zHN71uYh5NmompRPQ&oe=699DB62A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoPVVmym7QTB4CWho30XQrfAe6RotxIOil5i-zfjfV0Q&oe=699DB07B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wEqVB-3AoGcjMEi_XCVxZHXXx4sWBb4l8uWCqVuCdmspg&oe=699DB9E9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wF4x_tIcdLzgyLSzhOlG9P-tw0RPa0W73-SQBa2k-32Zw&oe=699DBD6B&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWZNbU1LobW4VaBVtuNDfbqX-----LNetqtY_-41w-AQ&oe=699DC6A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpPQIG9HoeniAykiB7RSwJXY93E5T2lwBw-YTPVK_bIA&oe=699DE485&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFo5sEXydvnBOUHybDDSOgGfWKm1c3hkDJ9qrq7bl6tKg&oe=699DB3F0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-8YN08sGb5Wua7CA6y4yEulzK6xL_UXzWQ239Z2vt7g&oe=699DD292&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6rC9qVYgiAw_kRwVSTGlY9sP7n9Cqhu9nduwyOyNGXA&oe=699DB015&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLUkwR5EFbTh9WhcYFjxVlcRRNNXcLU7Wsb32AonnQlQ&oe=699DCC11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoXZr1orDq4auy_p3-MaU3x0hP9Nfo7wfP0bTig7vVsA&oe=699DD239&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2AmbeVWbKqJl3rK-YdU2bMpP8NvLk_758P1K8fO-4ZA&oe=699DE5F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wEV44f1k3CCOkOqLdLw4P0yf-ckbhlxdNoeaLxLuLHSzw&oe=699DBCEA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtpdfmiECWBrr3sqQZkcOwR6bvTWfHof7b1Txbyd85Hw&oe=699DB625&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdftAmzbJL6jZnR9ae5_fLXlOMxt6Chs8eusOhdCToQ&oe=699DBB8A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbEV-4K_TVHqvpgEQnz5R4_RU3h54OgKndV91_FgYatA&oe=699DBBFA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXT_B9hmRfxr5BB4AuxcPYmR4G0a45Dp9osPjW8LOqPA&oe=699DDCEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2XcOim5u6TyNYvVlFaZtwK2aPG3Q3AOda2UFqucoHzg&oe=699DDBEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFAg8v0m3boit-DxxF4JriA-8G8_sTjQ2s1QqADGE80A&oe=699DB515&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSpt1vvPL2OYFygqdZhqfmqlyPbuYLsBRhP3xZYWYu3A&oe=699DE2AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3oRHommZhLspqKhE-nSNQjVEfIO4AWZ35XmSXfSSeEA&oe=699DD558&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wEI88SAFZXc-7AhF0kYqIHVJgoue3Hiy5SiVr3yu3kw9Q&oe=699DB213&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJwPDoKZ26gV26FvqsjXg2NIsIQVk90o2isw_neUlOoQ&oe=699DD479&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfffk2O5GmCuCFjEKE3lF-PqSfhA444HgwBTzuvi8MDw&oe=699DC706&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeMTSZqs6jlyaF-zW6zB8Bk7aLvAN_427oJFUb9XJZJA&oe=699DD4A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbFnDHgRI1hHNyf4aGUSsUsEzC2ch35yPsNY5BNZ1aDQ&oe=699DB438&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEpkrUTUqW-NPgDU8lHyxA1iQpuLliQ99RB4mH78aXsA&oe=699DD138&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw4TNG7nftW8NOHE-5DzX3cE2f2-o8ewOpdf9GX3HNMw&oe=699DE000&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvKA3Z9iUZ-b6rw7PjBJ6FuzwPP_eWQNL5JeHQ89kw8Q&oe=699DCCCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMVQRLsOr_FS9uJqGXjN-JTG0rMCJmwrOiHob-kiKWBw&oe=699DBFFE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHT3fDJNhfhb2RSBUTkZqPCbODweeaAsJ3yQR_KjPDjbg&oe=699DB0CE&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYy-Rz_T3JLASssTuDUS6vg0_beDxsGQNAhIWb558bDA&oe=699DB7B4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1EmjUI95l6RsT8l71UuURSlRT0P2Rfi1xO6uboYKmzw&oe=699DD592&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsRYfTHnbeGf6LqMIBvlntgJpKHo5t7phAhnOA3Q92Zw&oe=699DC8D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFyCFgDRuWUO3d_6jEOc2h5TJHg11TZSRUE1Iwi4F9i4w&oe=699DBCBC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wExdpZ1wvwOmQGKqW-bIjhTXq035CsApALGDH712IQX9g&oe=699DBFF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMAIBUxcQx9rG9cdCXLvVH7ysoIO4NG6Hbur4FJwNv0g&oe=699DBA6F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGByRmVyXpzWFowag_DkkqHZ3jWzsM2EUgTqKjhr5OhqA&oe=699DAEFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wE95ZbGZ1DAFm4YsYfQlQ_nZPkh3GGp12n9YJxvT8O94A&oe=699DC89A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJFsVrxBwH253Js_Aojfl7hzINQoBRcp3xr1ibEe9bjQ&oe=699DB3D0&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjeuuSA5at9lmU6RQKaDO6PYQI1bvs8qeyyEhk4BXFQQ&oe=699DCFC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzlkVE5QeAVAjV1OIYpQt0nqGlgpz4FInIjdWrqh2hg&oe=699DD657&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOQEFEUtgGJLO4QJBqO_miBuFDLKrJhfqHEWF6cfc_mg&oe=699DD6FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXlA7d-xAxssJSLbg27zmZa9klatzHV9nlwpQT9806g&oe=699DD20E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-p0PAA_5FeozZ2oev4icWDWJXUghT9NgZkMzrvocAeQ&oe=699DAF35&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wFKSTApqQaX8qFSkJwWI6ong2rkF-a14cSBrSEa-ltTkw&oe=699DBCC4&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbsMGfe4NhRcOn4r5CS0tejbNfAJU7EkcFIoDAFtMnmQ&oe=699DC87D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNur6gFfQSkTDrQAErwUXVlYYLa4jwJyUnq58wnVBenQ&oe=699DCCA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7rBicACYjluPiYE6Z7AQ8avxv5WJl4X3txk44JopyXw&oe=699DE43F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEfNx1AGN2slT02953CrdlmLX26whyVL63JDhxCArjfA&oe=699DC942&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEYkdmYBNc_8PYc4D0q9MZ-Wr2H1opXIiEB8hQh_cnJzg&oe=699DB7E1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmf1uAJxGSbjqpzi4v-cTZMM4Kgit2tStIp4hvVNEJIg&oe=699DB307&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLHZMd-0sxvhxuBMQ3_cLOsCYCToV182KLlL6UwgUqnQ&oe=699DD8A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTe4-yQx3wIocdU6SGux3Cpa3rmvR710KdIEzqoOBbOw&oe=699DDB5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLZn-bGVzVBHLouM2J0pe1rntsgaYLeA3tWhFx9zkFdw&oe=699DE347&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqKoC3e32FGTEqCCk8eP5XfF6W_v4WYIm9FWqRTz8FCQ&oe=699DDEE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkEENi7L7RIHcq2hCg8S17euPMGyIeA9YJAY3u96268A&oe=699DB708&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAfBmZ8htdAsCUXUq7z4jqMOCIPmK9mmksYwodvcxqxA&oe=699DB84A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wHNB_5jQnbFVaB28hi6AQ43qeA_uhhygnTd5noDP8Ojog&oe=699DB351&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ykcGtGQ4Qgr1a5BV85qVhLab4xXoP726UdvJqueVeQ&oe=699DDF36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoWcUU1pkzR-6csNucGSxbDkey4o_Ya7UG1xGYvJTCFQ&oe=699DE657&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJqUwSs1V3gbAUNIf_GIx9FVUMCPFFRcJ3Pom2UThzoA&oe=699DD5BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPn-k53-yCALVo6BD8OCIVRZ_hc_vGHGNsnAao3fJNaQ&oe=699DDDAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsb9aSHTaHfbFUaQEfwIqmz82zfIv4l1_1oUGjKIQ6yw&oe=699DC0DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wF8k8o0AVI2fM9b-l0La2qiDPAaLPe84h4rLCKuUeulEg&oe=699DBDB6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLL3DXDMNN8oX9C7wCWyIC3f95AS-HzkdZkMgcBAaIg&oe=699DE287&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWfmhNHpge8k_TpLy5RxvEXDxHf9zdJEFKEO5-vFfBwg&oe=699DBF8E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlsOvIU7AjE-8Olk3IrWS3dRWmdHLKouoILkiraOhAVw&oe=699DDF60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbf4zrv8WGBJgyuBbVpGzIK3uhUaj2_7Eg6ciXlyeuzQ&oe=699DD48B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeQjT9NsiNHSmiUBFkMIjV0tbzOJRdmXagMTQjnWZBOw&oe=699DE320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2PIGfXZESb3noR7Uq2M3QV2efHUiEBjIfXuldoG9rog&oe=699DB792&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkn-Jwwo6lw1QXshcIC2ncg8qRDkhd8mawhV862q3auw&oe=699DB7A5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wFohSDjba56XyTSM371bkXwAfMxq7rVaNHi9QgYrKt_wA&oe=699DB363&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6NGO4IFedR0R2t7zGQbhqQYKMbBbPCQnGCrNGTUjTw&oe=699DC6F3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 Iz', 1, '2026-02-14 15:13:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17779, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:23.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:23'),
(17780, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:23.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:23'),
(17781, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:32.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:32'),
(17782, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:32.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:32'),
(17783, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:34.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:34'),
(17784, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:34.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:34'),
(17785, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:34.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:34'),
(17786, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0181C3C98F7DDDD305D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4784173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092814,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:34.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:13:34'),
(17787, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:34.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:34'),
(17788, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E9693C8D6BD499179\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 8417-3345*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092815,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:35.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:35'),
(17789, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E9693C8D6BD499179\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 8417-3345*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092815,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:35.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:35'),
(17790, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0181C3C98F7DDDD305D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4784173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092814,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:34.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:13:35'),
(17791, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:42.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:42'),
(17792, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:42.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:42'),
(17793, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:43.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:43'),
(17794, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:43.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:43'),
(17795, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB095D2D0702C6BA971BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"100\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092823,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:43.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:13:43'),
(17796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:43.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:43'),
(17797, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:43.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:43'),
(17798, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A661BEA469C7FE84AA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092823,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:44.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:44'),
(17799, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A661BEA469C7FE84AA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092823,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:44.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:44'),
(17800, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB095D2D0702C6BA971BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"100\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092823,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:43.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:13:44'),
(17801, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:48.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:48'),
(17802, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:48.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:48'),
(17803, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:48.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:48'),
(17804, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B34DE74406E2E2A5F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"2\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092828,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:48.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:13:48'),
(17805, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:48.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:49'),
(17806, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:49.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:49'),
(17807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:49.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:49'),
(17808, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DF477306CA29802164\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Trimestral (90 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092829,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:49.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:49'),
(17809, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DF477306CA29802164\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Trimestral (90 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092829,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:49.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:49'),
(17810, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B34DE74406E2E2A5F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"2\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092828,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:48.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:13:51'),
(17811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:56.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:56'),
(17812, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:56.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:56'),
(17813, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:59.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:13:59'),
(17814, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:13:59.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:13:59'),
(17815, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:02.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:14:02'),
(17816, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:02.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:14:02'),
(17817, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:14:04'),
(17818, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04CAF71304A9FEF6991\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"14\\/05\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092844,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:14:04'),
(17819, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:14:04'),
(17820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:14:04'),
(17821, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A25920A64EB98A8E51\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* maisa\\n📱 *WhatsApp:* 47 8417-3345\\n💰 *Valor:* R$ 100,00\\n📅 *Vencimento:* 14\\/05\\/2026\\n📊 *Plano:* Trimestral\\n🆔 *ID:* 43\\n─────────────────────\\n\\n✅ Cliente cadastrado com sucesso!\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092844,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:14:04'),
(17822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:14:05'),
(17823, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04CAF71304A9FEF6991\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"14\\/05\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092844,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:14:05'),
(17824, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A25920A64EB98A8E51\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* maisa\\n📱 *WhatsApp:* 47 8417-3345\\n💰 *Valor:* R$ 100,00\\n📅 *Vencimento:* 14\\/05\\/2026\\n📊 *Plano:* Trimestral\\n🆔 *ID:* 43\\n─────────────────────\\n\\n✅ Cliente cadastrado com sucesso!\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092844,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:14:04.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:14:06'),
(17825, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:17.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:16:17'),
(17826, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:17.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:16:18'),
(17827, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:19.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:16:19'),
(17828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:19.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:16:19'),
(17829, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B8B634D87AC0368F00\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/reenviar 4784173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092979,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:19.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:16:19'),
(17830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:19.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:16:19'),
(17831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:19.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:16:19'),
(17832, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB033D7EF3F4ECBA07968\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092980,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:20.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:16:20'),
(17833, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB033D7EF3F4ECBA07968\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771092980,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:20.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:16:20'),
(17834, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B8B634D87AC0368F00\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/reenviar 4784173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771092979,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:16:19.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:16:20'),
(17835, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:20.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:18:20'),
(17836, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:20.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:18:20'),
(17837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:21.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:18:21'),
(17838, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:21.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:18:21'),
(17839, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02780D185BDC3B776A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/atualizar 4784173345 47984173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771093101,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:21.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:18:21'),
(17840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:21.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:18:21'),
(17841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:21.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:18:21'),
(17842, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0527052F47BCBFB84BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771093101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:22.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:18:22'),
(17843, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0527052F47BCBFB84BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771093101,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:22.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:18:22'),
(17844, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02780D185BDC3B776A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/atualizar 4784173345 47984173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771093101,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:18:21.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:18:22'),
(17845, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A58C3FA3B97FC4A7A3E80BEFAB76AED6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771093253840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:53.840Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:20:54'),
(17846, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A58C3FA3B97FC4A7A3E80BEFAB76AED6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771093253840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:53.840Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:20:54'),
(17847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:54.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:20:54'),
(17848, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:54.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:20:54'),
(17849, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A58C3FA3B97FC4A7A3E80BEFAB76AED6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771093254,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:54.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:20:54'),
(17850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:54.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:20:54'),
(17851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:54.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:20:54'),
(17852, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A58C3FA3B97FC4A7A3E80BEFAB76AED6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771093254,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:54.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:20:54'),
(17853, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53AB7B2111F414CF6BB6E8B449B5A89\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093256695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:56.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:20:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17854, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB04CC142790EC6E49145\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093256690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:56.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:20:56'),
(17855, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB005B2DB19A8D6CA72E2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093256693,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:56.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:20:56'),
(17856, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB005B2DB19A8D6CA72E2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093256693,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:56.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:20:57'),
(17857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB04CC142790EC6E49145\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093256690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:56.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:20:57'),
(17858, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A53AB7B2111F414CF6BB6E8B449B5A89\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093256695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:56.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:20:57'),
(17859, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:58.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:20:58'),
(17860, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:20:58.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:20:58'),
(17861, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:00.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:21:00'),
(17862, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:00.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:21:00'),
(17863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:00.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:21:00'),
(17864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:00.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:21:01'),
(17865, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:21:01'),
(17866, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC756E6554569C3FFFBE4C8018B5D80B\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"niui3d0vqXjwM4hb9HhLMBcppefNeshk2bE5CUXMLmE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093261,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:21:01'),
(17867, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:21:01'),
(17868, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:21:01'),
(17869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:21:01'),
(17870, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC756E6554569C3FFFBE4C8018B5D80B\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/vencimento\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"niui3d0vqXjwM4hb9HhLMBcppefNeshk2bE5CUXMLmE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093261,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:21:02'),
(17871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:21:03'),
(17872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:21:01.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:21:03'),
(17873, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A58C3FA3B97FC4A7A3E80BEFAB76AED6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093723769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:43.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:28:44'),
(17874, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A58C3FA3B97FC4A7A3E80BEFAB76AED6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771093723769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:43.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:28:44'),
(17875, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:45.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:28:45'),
(17876, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:45.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:28:45'),
(17877, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:57.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:28:57'),
(17878, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:57.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:28:57'),
(17879, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:28:58'),
(17880, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:28:58'),
(17881, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:28:58'),
(17882, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACEDCF0100A56EAD4F2A9A83EDE1D886\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Tô chegando em casa Jajá  baixo para testar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3EyX24ajZT8vltwWblcNga+\\/X0ttRRXFA099FfWJ1Cg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:28:58'),
(17883, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:28:58'),
(17884, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:28:58'),
(17885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:28:58'),
(17886, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACEDCF0100A56EAD4F2A9A83EDE1D886\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Tô chegando em casa Jajá  baixo para testar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3EyX24ajZT8vltwWblcNga+\\/X0ttRRXFA099FfWJ1Cg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:58.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:28:59'),
(17887, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:59.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:28:59'),
(17888, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:28:59.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:28:59'),
(17889, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4EAFAE3054D02AB3227CF2402D8ACB\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Não lembro de vcs\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+YSONLzO2ZUMp54b0lXvSP5GkWoPt78+f66ITyUbmFw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093743,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:29:03'),
(17890, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:03'),
(17891, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:03'),
(17892, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:03'),
(17893, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:03'),
(17894, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4EAFAE3054D02AB3227CF2402D8ACB\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Não lembro de vcs\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+YSONLzO2ZUMp54b0lXvSP5GkWoPt78+f66ITyUbmFw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093743,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:29:04'),
(17895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:04'),
(17896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:04'),
(17897, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:04'),
(17898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:03.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:05'),
(17899, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:05.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:05'),
(17900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:05.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:05'),
(17901, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:07.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:07'),
(17902, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:07.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:07'),
(17903, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:09.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:09'),
(17904, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:09.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:09'),
(17905, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:10.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:10'),
(17906, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:10.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:10'),
(17907, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:16'),
(17908, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:16'),
(17909, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACC500E858AF2551CF21CCC79830413D\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Mais já testei vários apps\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jbB4pkVzdEnQRu6Ldphb9kobnEKbLqvphRBECMyyod0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:29:16'),
(17910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:16'),
(17911, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:29:17'),
(17912, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:17'),
(17913, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:29:17'),
(17914, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACC500E858AF2551CF21CCC79830413D\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Mais já testei vários apps\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jbB4pkVzdEnQRu6Ldphb9kobnEKbLqvphRBECMyyod0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771093756,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:29:16.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:29:17'),
(17915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5ECAD83C0E8E574EE8B119FEA31BB2D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"iCw+hY9N3RCVspWTed3qs6OEBEVJhdy8MdUU9iS2hKs=\",\"fileLength\":\"3338498\",\"seconds\":11,\"mediaKey\":\"eW3yJLi7EZt8bLzu8\\/Q2l4E6eeKd45yO5ZvX72p6q7A=\",\"caption\":\"Os trabalhos nao param...🫣🚀\",\"height\":850,\"width\":478,\"fileEncSha256\":\"S3r+q\\/mqqB66HRbn4LpsytE9AEQ3z0Sn1Dm7MB3iNOs=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771094656\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAWgMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQEBAQEAAAAAAAAAAAAAAAABAAID\\/9oADAMBAAIQAxAAAABeSNHoST1MDndeVWwZ\\/KwlhCBMh1JKUrqeqWYpXOXMIL5peqr2wVBrmdi8zjKbud9RiHn9j7xdmA9kZO5Cyox\\/RjUsBvTVzloE0peNyRLyVUak7ZZcq3PRAUtsYFXb7aVhbMuhc2WtI6uG1IG3m+i\\/VhYuSt15E1JErBxSeV6KnnaqwPl+BpqGo27FEDNYDctBNc801cKRpYgY6cekperkID0GaIYzz0L4wKRLGl26x8z3j29tfxBCO0YzJyKUFohSBjlrK2NIwlM5z6s2KXjbdwHc7hixNeZxLykj\\/8QAORAAAgEDAwIFAgIIBwADAAAAAQIDAAQRBRIhBjETFCJBUWGRUnEWIzJCU4GSoRUlM1RjctJzk8L\\/2gAIAQEAAT8AqztmvLy3tVbaZXC5wWx9cCri2K3EUEk7lksxNKpQhosRmYxgN3IWpenb9IZZwyeEiKxZwyZzCJSeR25xU\\/T09uZBLcIzRyeG6xRyOQxCbfYZ\\/wBQE0elb1pnjiuLZsO45YhsI4TkDNJ0tqTh8SW+5GAZNxDYZygbGOxxV3o72OfNTKP9EjYC3pl3+zbcEeHSdN6hIRsUYwvLgp3iEhP5e1P0rqgYgmAHB2DxB62\\/CtXGj6jDnMG4A4yjB\\/fHtX6JdQ\\/7A\\/8A2x\\/+qJqGF7q4igjK75HCLuOBk1H05qT3SxwMFlQI5L5Qo2WAYEZ4zHw1XmnrZxI7v6pBE0ahD6keMOWz8AnbQ0G7C3bQEny\\/mEnJVlA8JE3AH3DbyB8ih0xeh0R3hDvv2AbmzslWI9hwMtVt09esYZrG4ALRrIrEmFwHYrQ0HU2aJN6EXTqRiQkOxVnBNXPT93bI0s6xqFDZwckFULYqTSbu7YzqfMeLnwnY5eXZIsH73Ixkd\\/an6T1ES3CPDbqkO8yStIgVQvufcA0LLrC1At4ri5EcXoQJeKqBV4AUFxgU2Kjia4nhgTG+WRUXPAyxwKXpO+mk2RBAQo3mQFBne6cd8jKVeaYbKJmlk9f6jYgXIdZY95bcOMA5Wm0G7fzLoxkFqJEldlYKPLxx+kf1YX6Ck6XvVkWJpoQ7l9ije2fDkWIngcAFqTpy8vdksUwkMsSykzZR8Su3cH7moumr1xAVSFhNjaQcgAqWyav9I1O3S5u7mckrGdzeIWdwSBt\\/LJpum72eI3EESzQF3Cyfs5C8Zw3safo+9NyItlt3ZfFYgJlWK02h36MystsrKcFTcwggj2ILUzVFE9xPDAmN0sioue2WOBmv0TvmYhTEgUojPL6ELvK0IVDznlav9DGnW87zXAEqCDbGEPqM273+BsODTaHPNBc3SP4otoyZXYHbtihjcBW\\/JsL9BS9KXqSLE0sAkbcUC72zskWMnheAC9Q9NXl4EuIZQ\\/jRiUmfKP62PcHNR9OXrxRuFhKuPntlN\\/NX2l31n5me6uTuaE7mVy7SDKJhvplhT9MXcsJniRJE5YEggmPgq\\/8AMVL0nqaRGU28QQHkl1GMUOi+oGAIsgQfh0p3otXHxXp+DRbe2WJJwoySTwowB\\/IDAqIDcMClJkkZ5CXdjlmbkk\\/Umoo0xkYFSvKXkkMzl3Xa7Fjlh8E+44qaNSeVBqSKP8K14cf4FpjQK5Ge2fpV307ZwTsg6h03AcqRJIFdSGAwVBarPp6O9uzbQavZMwVWGHBLctkKATkqFo6ZapvVtYsjIkZkOHyhAUekN7uWOMYq6sYLSa0ji1K0uDKPW8TBkiO7HJXJxVpEsk0sIZpHQSlfCGQ4iRnO3POWwAtGysV5i1uydFWYsxYJzH2ULkkl6nhiWWJFv7VlkmdAwcMEVWwrOVzgNV1aRRWxnGpWTtx+qSUNJz9BUul2nmPCXXdN2bj6jLjgNtoaVAeV13SMHtm5watYkmvbWGQNskmRG24zhmxxmnUozJuV9rEbkGVbHuPoa+\\/2o7SMHkf9aB\\/P+g0jY+f6DQcEYIOP+tLJx7\\/avE+jfaixPsabPwfuKz9P70VYj9k\\/etp\\/C33oxn4f714bf8v3oI3\\/AC\\/ehH\\/8n3oJj2l+9bT8S\\/c0QfwyfeiD\\/DP3NHd\\/C\\/vWT+AVlPk1kezmsP8AxqIl9risTf7gUI7k9rlaEVx\\/HStk\\/vMtFZf4woh\\/41HP46x9aa+0eWV5J9CDBmB2JOYlAUtgDYoPZuae40AkvHpTJAybHUXjtkh1YEM4JU+kqa1BtGlgXyWlyWsgY73a5kmAX8nq1ewMszzWSzROoURxSsgUq6twx3nnbg0smjQegaQ+XjZAz3TM+TGULLxtz2YccGjqOhmJIZdAD4lkdHW5MDASNvMfoGXCdgWppNIR9OMNtKzxxILmKRgwlJBDsGLMV+mBT3nTbsAmgSoUcFtuoS0l10+lgoGkSm+XhZGupGQkJ+2wJwef3KbUOnpHeSbp0F2ZuUumhABYsBiMLQvdAQsZNELRB3ZV84wwGVRgtjccFaivuhWiRm0S7yVBO2Z2H8jvokD3\\/vVtNfJdhhZCWR7PYkcqFx4WzaWUH5Ap\\/wDEWDq+jiNWBhDvbeGqLK7jarkAIMyEV5y6kS2gDPKpZI4htEysxCssa5DDK+yd1yaleSRL0PGAkAZbgLEkezc3KuVUc57Cru11a5uL2W5tLhpmWJJS0eDwY1VUAA5OVHp5oJci3UlAY0iDiMkIzIqcSbFKs2Ad26m1W9QRQSJGDbjwsSQKzjY5fBLgsME4xUmtXsjwGMQW4hdnRYIyg9Wzggkjb6BxSdTayjl1mQMe5EKD5+mP3ql6t1mWJI8QJtdXLrEA7FSCM1D1XrsEMUKTx7Y0CDMSk4Wik3PNB9RRt0d5OjbdoKSMpC98Aj2pm1JpI5Hu5pCm3HiO0g9GcAh8ggbjSwTqIf18imJ98eGIKMcepfg8CjGSsqvdSESFmkBkYhyxyS3yTijd3O\\/e1\\/cFtwbPiuTkFT\\/+B9hST7NuJSQsRiXdztQ91Gc4ByQRUkqSyySu5aR3Lux92Y5JrxYh7UZl9koySHslbpPj+1TCzW3Ropp3mOzcuCAMhi32yo\\/PNalb6UklilpcyFHJE8mC+ztzj3xXk+miyA6lOgwC\\/okYDg8A+GM4NT2XSG9hDqUxQqCpdJNxPxwgCirS20x5ylzcypCYUIlWLJEjgZBXPZCefkCms9Eia4A1EzBTiIiMxb\\/1TN77sDftWm0\\/Ri12w16NUXeYFFu7s4ydqk+gA4ApYbHyRmbUwtztYi3EDNyDgAvkDkU8WlPNbpHqbxRm1R5ZJIS+JifUgC09nowBK9RFj8Cxf\\/3TQaLHdWwOoTzW7KfGZIijIQvtu75avK9De9\\/qX2H\\/AIqO80w2sSPpbS+Eo8dhKY8nLDuASP2hXn9DCZbQC2WOH83IPfOO1TX+keRmRenjGZciOY3Up2sBxjI9t2SK8zZLPC4svQLRopEMhbfIyMvigsDg85prrRIbeUydKyB1kaEs1zKFDDuD8OtJqehRvc\\/5IJYHbCRGQoUAK87\\/AFNl9vb2pNR0IMxfp8lc8AXj8DAq41jp5WhNjoAXKETiWZnDblIKrnOMHBDjBpNV0RA6DQwqszHJnMjY2uAo3j60urWf+CnT20mEz\\/7zI8TO\\/f8AFXOraHOwb9HkB2qCVndO30j2rS3+hKqg6ArEDububJqfX9TuARcypP24kQEcMr\\/bKCjqV15DyDMjQDJUFRlWJzuB+afVr0iACRVMTRMpVADmAYQn6rmr3WtVvYjFdXskkZYEqfkUmoXKTxTmTc8asFLd\\/UWbn55Y963VurdW761urcK3io\\/JGGRp5ZBJ6tip9FOM5HuxH8gadNK8srrcz+NtGU2DAbaQRn86mTRPX4N1cEgtt3jhhl8DheOy08egi+tUF5dNaHJnk8MKw+Ao5q5tumY5LbwdRuZY2Ul8psZTuAHs1CDpgCItqF2cE+KBGBkBhgr9TVuvT3nJVubq8NqEXYyIoctjnINW6aEfENxc3QAlcIEUepARtP0JGalGhKtvsmu2PioJvSoym31Ffg5oHpTPJ1Q4J94xngUT0551\\/Xf+TEC44QTGXIB+Rit\\/S34NU\\/qiq11GS0WURohZiCrsDuQgFcr9fVWlT3jiMWllDKbf9rewUFpS0an259dKdVV48dN6fmbDqCo5DEnBBb69jUN7qyFHi6X0wOXVlbwACDlfrxy1X6avbyQ382jxW0dvL4hKKiAbtgCr8fI+GJq20LVruaaCC1Jkh2b1LKpHiduCaOg6mt7NZvEiSRMokZ3UIu\\/GDuqPpLqF5CnkgpGe8qdwu7HepOk9ehBaa2RI1\\/bcyphQO5IBzU6LDK0azRygYw8edpyM8bgDWazRao7iaFt0MzxtkHKsVPFQyxly088q4xtKnnvUD6eDD497dH1qJNh24TjJGQeRRktnsHMl1ObreQI+6Fcrg5+9RN0ykfNzqYkOdwQoAQO1WY0NoY2vrm+E7ZLiJVIGO2M0f0bFrt8zqLXBRvZBGGxxxX+QC5jkjuL5YFzuB2+MT+6UI4rGhGRhvvhHvIU4QnbhsE\\/2qb9HtjrCb\\/xPVtdimz6ZAGaifp0RoJYtQMgUbykkYUt74ytFq3VplxcwTySW8kKP4RUmRQ3DkIcAg\\/Napc3ssUrT6hYyCaESER5z3UbR6eG9I4q4vJY5EBis2IjibKRLjkK4BwO4xg02sF4YoXsLIov7eItjP8ZZMHipNUunW3VvCKwFygManmTAYtkHcePennd44oyfRGDtAAHc5JPyazWazWaLUrqpyUDcHg59x9Khn06MzeLavKDJ6AX2kJhh3H72SPahcaUGO6xmK54Hj84\\/pqS50kMPCspSuxeHl5DZUnkDnsRVxNYtGqwW7o4RcsX7tsQHj8wx\\/nWazWa3Vms1\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACESAQITBAUf\\/aAAgBAgEBPwDG1PFrruaS9jg8gCZHthSVOdqaxT\\/\\/xAAdEQABBAIDAAAAAAAAAAAAAAABAAIRICEwQVGB\\/9oACAEDAQE\\/AJRN\\/dOKDe5pLmkOIA47UWwjaFFZp\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":103892},\"streamingSidecar\":\"asA+zrf8qOm1ZngOZU\\/K7TuZE6EaJVORKxQL8U\\/gq+0+kW1+BNfDKPojajjpBJXb57rQPP+hESKbguqj1PiTX4WxnFjcxFBnViUTDf6mrBVeS4WTf6V1cyjvGWGr+Hzf9e5Ios+G8RgubcPeQQd8ITpAXUZZmthil9kEq+Tgc+KPghrzLPOmIuhpklo29\\/Lm86FvymbUdE479eWSbZHmQQj9bgF8pSZ1j7paOsxTmQWVF6g0BGPjp5O6grysOM0mjJcsmfbN3+22E092uYWPiYUJUKMi2KNcniZD6kTrCDOQXxXsbFoo7obNfjhANN5o15QLkgXm80OFgljPN2ImwIFURGaAO8aw2X6OysMICWRp20SPT8hE2WqPcl0jqJaKpkYt27\\/szKBALR6SnVTgk\\/SC44yE6jZ8Uo6zVyh4UGRrVWpVHHbYtQAHMBmrCSZoGCVtI09SwvgPZEIR8DWJk8uZSO5i5h5tZyM0SZfoRREfH7OvbOzF+St7\\/WT3CsyED2U4GlRxeeyCaKZQKUhA3RZeCyH7qohx+gthOhI5JIjeBWPpKdFdW9Cy1nbEEIZO3bV4UIZqtVinA70tPdERvFMucQbmWTCM5n5Ya9RKsgtihnHGWC1f8aDOU6wcDhOcONMnuSN9hU9w4ImSWm38+mAEoeEs1j+0QsKuHM4q\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":103892},\"messageType\":\"videoMessage\",\"messageTimestamp\":1771094657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:44:17.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:44:18'),
(17916, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:44:17.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:44:18'),
(17917, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:44:17.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:44:18'),
(17918, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:44:18.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:44:18'),
(17919, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:44:18.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:44:18');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17920, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5ECAD83C0E8E574EE8B119FEA31BB2D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"iCw+hY9N3RCVspWTed3qs6OEBEVJhdy8MdUU9iS2hKs=\",\"fileLength\":\"3338498\",\"seconds\":11,\"mediaKey\":\"eW3yJLi7EZt8bLzu8\\/Q2l4E6eeKd45yO5ZvX72p6q7A=\",\"caption\":\"Os trabalhos nao param...🫣🚀\",\"height\":850,\"width\":478,\"fileEncSha256\":\"S3r+q\\/mqqB66HRbn4LpsytE9AEQ3z0Sn1Dm7MB3iNOs=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771094656\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAWgMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQEBAQEAAAAAAAAAAAAAAAABAAID\\/9oADAMBAAIQAxAAAABeSNHoST1MDndeVWwZ\\/KwlhCBMh1JKUrqeqWYpXOXMIL5peqr2wVBrmdi8zjKbud9RiHn9j7xdmA9kZO5Cyox\\/RjUsBvTVzloE0peNyRLyVUak7ZZcq3PRAUtsYFXb7aVhbMuhc2WtI6uG1IG3m+i\\/VhYuSt15E1JErBxSeV6KnnaqwPl+BpqGo27FEDNYDctBNc801cKRpYgY6cekperkID0GaIYzz0L4wKRLGl26x8z3j29tfxBCO0YzJyKUFohSBjlrK2NIwlM5z6s2KXjbdwHc7hixNeZxLykj\\/8QAORAAAgEDAwIFAgIIBwADAAAAAQIDAAQRBRIhBjETFCJBUWGRUnEWIzJCU4GSoRUlM1RjctJzk8L\\/2gAIAQEAAT8AqztmvLy3tVbaZXC5wWx9cCri2K3EUEk7lksxNKpQhosRmYxgN3IWpenb9IZZwyeEiKxZwyZzCJSeR25xU\\/T09uZBLcIzRyeG6xRyOQxCbfYZ\\/wBQE0elb1pnjiuLZsO45YhsI4TkDNJ0tqTh8SW+5GAZNxDYZygbGOxxV3o72OfNTKP9EjYC3pl3+zbcEeHSdN6hIRsUYwvLgp3iEhP5e1P0rqgYgmAHB2DxB62\\/CtXGj6jDnMG4A4yjB\\/fHtX6JdQ\\/7A\\/8A2x\\/+qJqGF7q4igjK75HCLuOBk1H05qT3SxwMFlQI5L5Qo2WAYEZ4zHw1XmnrZxI7v6pBE0ahD6keMOWz8AnbQ0G7C3bQEny\\/mEnJVlA8JE3AH3DbyB8ih0xeh0R3hDvv2AbmzslWI9hwMtVt09esYZrG4ALRrIrEmFwHYrQ0HU2aJN6EXTqRiQkOxVnBNXPT93bI0s6xqFDZwckFULYqTSbu7YzqfMeLnwnY5eXZIsH73Ixkd\\/an6T1ES3CPDbqkO8yStIgVQvufcA0LLrC1At4ri5EcXoQJeKqBV4AUFxgU2Kjia4nhgTG+WRUXPAyxwKXpO+mk2RBAQo3mQFBne6cd8jKVeaYbKJmlk9f6jYgXIdZY95bcOMA5Wm0G7fzLoxkFqJEldlYKPLxx+kf1YX6Ck6XvVkWJpoQ7l9ije2fDkWIngcAFqTpy8vdksUwkMsSykzZR8Su3cH7moumr1xAVSFhNjaQcgAqWyav9I1O3S5u7mckrGdzeIWdwSBt\\/LJpum72eI3EESzQF3Cyfs5C8Zw3safo+9NyItlt3ZfFYgJlWK02h36MystsrKcFTcwggj2ILUzVFE9xPDAmN0sioue2WOBmv0TvmYhTEgUojPL6ELvK0IVDznlav9DGnW87zXAEqCDbGEPqM273+BsODTaHPNBc3SP4otoyZXYHbtihjcBW\\/JsL9BS9KXqSLE0sAkbcUC72zskWMnheAC9Q9NXl4EuIZQ\\/jRiUmfKP62PcHNR9OXrxRuFhKuPntlN\\/NX2l31n5me6uTuaE7mVy7SDKJhvplhT9MXcsJniRJE5YEggmPgq\\/8AMVL0nqaRGU28QQHkl1GMUOi+oGAIsgQfh0p3otXHxXp+DRbe2WJJwoySTwowB\\/IDAqIDcMClJkkZ5CXdjlmbkk\\/Umoo0xkYFSvKXkkMzl3Xa7Fjlh8E+44qaNSeVBqSKP8K14cf4FpjQK5Ge2fpV307ZwTsg6h03AcqRJIFdSGAwVBarPp6O9uzbQavZMwVWGHBLctkKATkqFo6ZapvVtYsjIkZkOHyhAUekN7uWOMYq6sYLSa0ji1K0uDKPW8TBkiO7HJXJxVpEsk0sIZpHQSlfCGQ4iRnO3POWwAtGysV5i1uydFWYsxYJzH2ULkkl6nhiWWJFv7VlkmdAwcMEVWwrOVzgNV1aRRWxnGpWTtx+qSUNJz9BUul2nmPCXXdN2bj6jLjgNtoaVAeV13SMHtm5watYkmvbWGQNskmRG24zhmxxmnUozJuV9rEbkGVbHuPoa+\\/2o7SMHkf9aB\\/P+g0jY+f6DQcEYIOP+tLJx7\\/avE+jfaixPsabPwfuKz9P70VYj9k\\/etp\\/C33oxn4f714bf8v3oI3\\/AC\\/ehH\\/8n3oJj2l+9bT8S\\/c0QfwyfeiD\\/DP3NHd\\/C\\/vWT+AVlPk1kezmsP8AxqIl9risTf7gUI7k9rlaEVx\\/HStk\\/vMtFZf4woh\\/41HP46x9aa+0eWV5J9CDBmB2JOYlAUtgDYoPZuae40AkvHpTJAybHUXjtkh1YEM4JU+kqa1BtGlgXyWlyWsgY73a5kmAX8nq1ewMszzWSzROoURxSsgUq6twx3nnbg0smjQegaQ+XjZAz3TM+TGULLxtz2YccGjqOhmJIZdAD4lkdHW5MDASNvMfoGXCdgWppNIR9OMNtKzxxILmKRgwlJBDsGLMV+mBT3nTbsAmgSoUcFtuoS0l10+lgoGkSm+XhZGupGQkJ+2wJwef3KbUOnpHeSbp0F2ZuUumhABYsBiMLQvdAQsZNELRB3ZV84wwGVRgtjccFaivuhWiRm0S7yVBO2Z2H8jvokD3\\/vVtNfJdhhZCWR7PYkcqFx4WzaWUH5Ap\\/wDEWDq+jiNWBhDvbeGqLK7jarkAIMyEV5y6kS2gDPKpZI4htEysxCssa5DDK+yd1yaleSRL0PGAkAZbgLEkezc3KuVUc57Cru11a5uL2W5tLhpmWJJS0eDwY1VUAA5OVHp5oJci3UlAY0iDiMkIzIqcSbFKs2Ad26m1W9QRQSJGDbjwsSQKzjY5fBLgsME4xUmtXsjwGMQW4hdnRYIyg9Wzggkjb6BxSdTayjl1mQMe5EKD5+mP3ql6t1mWJI8QJtdXLrEA7FSCM1D1XrsEMUKTx7Y0CDMSk4Wik3PNB9RRt0d5OjbdoKSMpC98Aj2pm1JpI5Hu5pCm3HiO0g9GcAh8ggbjSwTqIf18imJ98eGIKMcepfg8CjGSsqvdSESFmkBkYhyxyS3yTijd3O\\/e1\\/cFtwbPiuTkFT\\/+B9hST7NuJSQsRiXdztQ91Gc4ByQRUkqSyySu5aR3Lux92Y5JrxYh7UZl9koySHslbpPj+1TCzW3Ropp3mOzcuCAMhi32yo\\/PNalb6UklilpcyFHJE8mC+ztzj3xXk+miyA6lOgwC\\/okYDg8A+GM4NT2XSG9hDqUxQqCpdJNxPxwgCirS20x5ylzcypCYUIlWLJEjgZBXPZCefkCms9Eia4A1EzBTiIiMxb\\/1TN77sDftWm0\\/Ri12w16NUXeYFFu7s4ydqk+gA4ApYbHyRmbUwtztYi3EDNyDgAvkDkU8WlPNbpHqbxRm1R5ZJIS+JifUgC09nowBK9RFj8Cxf\\/3TQaLHdWwOoTzW7KfGZIijIQvtu75avK9De9\\/qX2H\\/AIqO80w2sSPpbS+Eo8dhKY8nLDuASP2hXn9DCZbQC2WOH83IPfOO1TX+keRmRenjGZciOY3Up2sBxjI9t2SK8zZLPC4svQLRopEMhbfIyMvigsDg85prrRIbeUydKyB1kaEs1zKFDDuD8OtJqehRvc\\/5IJYHbCRGQoUAK87\\/AFNl9vb2pNR0IMxfp8lc8AXj8DAq41jp5WhNjoAXKETiWZnDblIKrnOMHBDjBpNV0RA6DQwqszHJnMjY2uAo3j60urWf+CnT20mEz\\/7zI8TO\\/f8AFXOraHOwb9HkB2qCVndO30j2rS3+hKqg6ArEDububJqfX9TuARcypP24kQEcMr\\/bKCjqV15DyDMjQDJUFRlWJzuB+afVr0iACRVMTRMpVADmAYQn6rmr3WtVvYjFdXskkZYEqfkUmoXKTxTmTc8asFLd\\/UWbn55Y963VurdW761urcK3io\\/JGGRp5ZBJ6tip9FOM5HuxH8gadNK8srrcz+NtGU2DAbaQRn86mTRPX4N1cEgtt3jhhl8DheOy08egi+tUF5dNaHJnk8MKw+Ao5q5tumY5LbwdRuZY2Ul8psZTuAHs1CDpgCItqF2cE+KBGBkBhgr9TVuvT3nJVubq8NqEXYyIoctjnINW6aEfENxc3QAlcIEUepARtP0JGalGhKtvsmu2PioJvSoym31Ffg5oHpTPJ1Q4J94xngUT0551\\/Xf+TEC44QTGXIB+Rit\\/S34NU\\/qiq11GS0WURohZiCrsDuQgFcr9fVWlT3jiMWllDKbf9rewUFpS0an259dKdVV48dN6fmbDqCo5DEnBBb69jUN7qyFHi6X0wOXVlbwACDlfrxy1X6avbyQ382jxW0dvL4hKKiAbtgCr8fI+GJq20LVruaaCC1Jkh2b1LKpHiduCaOg6mt7NZvEiSRMokZ3UIu\\/GDuqPpLqF5CnkgpGe8qdwu7HepOk9ehBaa2RI1\\/bcyphQO5IBzU6LDK0azRygYw8edpyM8bgDWazRao7iaFt0MzxtkHKsVPFQyxly088q4xtKnnvUD6eDD497dH1qJNh24TjJGQeRRktnsHMl1ObreQI+6Fcrg5+9RN0ykfNzqYkOdwQoAQO1WY0NoY2vrm+E7ZLiJVIGO2M0f0bFrt8zqLXBRvZBGGxxxX+QC5jkjuL5YFzuB2+MT+6UI4rGhGRhvvhHvIU4QnbhsE\\/2qb9HtjrCb\\/xPVtdimz6ZAGaifp0RoJYtQMgUbykkYUt74ytFq3VplxcwTySW8kKP4RUmRQ3DkIcAg\\/Napc3ssUrT6hYyCaESER5z3UbR6eG9I4q4vJY5EBis2IjibKRLjkK4BwO4xg02sF4YoXsLIov7eItjP8ZZMHipNUunW3VvCKwFygManmTAYtkHcePennd44oyfRGDtAAHc5JPyazWazWaLUrqpyUDcHg59x9Khn06MzeLavKDJ6AX2kJhh3H72SPahcaUGO6xmK54Hj84\\/pqS50kMPCspSuxeHl5DZUnkDnsRVxNYtGqwW7o4RcsX7tsQHj8wx\\/nWazWa3Vms1\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACESAQITBAUf\\/aAAgBAgEBPwDG1PFrruaS9jg8gCZHthSVOdqaxT\\/\\/xAAdEQABBAIDAAAAAAAAAAAAAAABAAIRICEwQVGB\\/9oACAEDAQE\\/AJRN\\/dOKDe5pLmkOIA47UWwjaFFZp\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":103892},\"streamingSidecar\":\"asA+zrf8qOm1ZngOZU\\/K7TuZE6EaJVORKxQL8U\\/gq+0+kW1+BNfDKPojajjpBJXb57rQPP+hESKbguqj1PiTX4WxnFjcxFBnViUTDf6mrBVeS4WTf6V1cyjvGWGr+Hzf9e5Ios+G8RgubcPeQQd8ITpAXUZZmthil9kEq+Tgc+KPghrzLPOmIuhpklo29\\/Lm86FvymbUdE479eWSbZHmQQj9bgF8pSZ1j7paOsxTmQWVF6g0BGPjp5O6grysOM0mjJcsmfbN3+22E092uYWPiYUJUKMi2KNcniZD6kTrCDOQXxXsbFoo7obNfjhANN5o15QLkgXm80OFgljPN2ImwIFURGaAO8aw2X6OysMICWRp20SPT8hE2WqPcl0jqJaKpkYt27\\/szKBALR6SnVTgk\\/SC44yE6jZ8Uo6zVyh4UGRrVWpVHHbYtQAHMBmrCSZoGCVtI09SwvgPZEIR8DWJk8uZSO5i5h5tZyM0SZfoRREfH7OvbOzF+St7\\/WT3CsyED2U4GlRxeeyCaKZQKUhA3RZeCyH7qohx+gthOhI5JIjeBWPpKdFdW9Cy1nbEEIZO3bV4UIZqtVinA70tPdERvFMucQbmWTCM5n5Ya9RKsgtihnHGWC1f8aDOU6wcDhOcONMnuSN9hU9w4ImSWm38+mAEoeEs1j+0QsKuHM4q\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":103892},\"messageType\":\"videoMessage\",\"messageTimestamp\":1771094657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:44:17.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:44:18'),
(17921, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5BFACF38D36EDBE165CA2419064A51D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104188},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104188},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771094950,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:10.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:49:11'),
(17922, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:10.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:49:11'),
(17923, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:10.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:49:11'),
(17924, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:10.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:49:11'),
(17925, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:10.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:49:11'),
(17926, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5BFACF38D36EDBE165CA2419064A51D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104188},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104188},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771094950,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:10.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:49:11'),
(17927, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:25.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:49:25'),
(17928, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:25.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:49:25'),
(17929, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5517E49DCE5F607D5FEC2983D73804C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104203},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104203},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771094965,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:25.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:49:26'),
(17930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:25.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:49:26'),
(17931, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5517E49DCE5F607D5FEC2983D73804C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104203},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":104203},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771094965,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:25.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:49:26'),
(17932, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:49:25.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:49:26'),
(17933, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:56:59.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:57:00'),
(17934, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:56:59.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:57:00'),
(17935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:57:03'),
(17936, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:57:03'),
(17937, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACA6CCD621043534CB5DEE877EF6B0F2\"},\"pushName\":\"✓\",\"message\":{\"extendedTextMessage\":{\"text\":\"Baixar esse?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1771092071000\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aNfZIU\\/OGQKawN8iofNH3IE\\/Eh\\/rY8lhSEh7YFXLLbU=\"}},\"contextInfo\":{\"stanzaId\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1771092071000\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771095423,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 15:57:03'),
(17938, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:57:03'),
(17939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 15:57:03'),
(17940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:57:04'),
(17941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 15:57:04'),
(17942, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACA6CCD621043534CB5DEE877EF6B0F2\"},\"pushName\":\"✓\",\"message\":{\"extendedTextMessage\":{\"text\":\"Baixar esse?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1771092071000\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aNfZIU\\/OGQKawN8iofNH3IE\\/Eh\\/rY8lhSEh7YFXLLbU=\"}},\"contextInfo\":{\"stanzaId\":\"A547D4357D364C53C1EFC49CE30F9DD4\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"urGBvXRmzcfJavvgcIWdiMYXlaOy8kkeSIojAApH4M4=\",\"mediaKey\":\"jxD80\\/KEzy7ex7q6apzQDRM92rpqCNOgcyLepHxEQAM=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635041738_26448778874708367_151617392927679066_n.enc?ccb=11-4&oh=01_Q5Aa3wHz5yWMMa5ZOLx1rz3LTXMVDmDeOvoh01E2xPDieCUHEA&oe=69B81A96&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1770939781\",\"isAnimated\":false,\"stickerSentTs\":\"1771092071000\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771095423,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T15:57:03.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 15:57:04'),
(17943, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC3C6E8DE63BDCDE86B153F535B854FB\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637136008_1274103287944996_5571144807650892389_n.enc?ccb=11-4&oh=01_Q5Aa3wFQk_9T2H2LI4bu8_u03vbzKxynyiw_0KnGglMJshvdVQ&oe=69B82D88&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Y6m1+i9I2g9O8Zjtnx5IrUzu9scgsDRWP5y\\/cLAFl1c=\",\"fileLength\":\"73891\",\"height\":1599,\"width\":899,\"mediaKey\":\"R1sdn1bZYrV9785ijl+yTs6QqdkwCS3HK9tgL1xkoQU=\",\"fileEncSha256\":\"zgfhirkQaBUUQgxLTHEDO5jlLpa\\/fzoq2Zc\\/BdLQsCI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637136008_1274103287944996_5571144807650892389_n.enc?ccb=11-4&oh=01_Q5Aa3wFQk_9T2H2LI4bu8_u03vbzKxynyiw_0KnGglMJshvdVQ&oe=69B82D88&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771095705\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAQIDBAUBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAADDFR6MnEVIED6Gy6scaddxPMNxos9eJY3048yNLoHPKLkLIEUhaZBP\\/8QAJhAAAQMDAwMFAQAAAAAAAAAAAQACAwQREhQhURATMgUgJDBBUv\\/aAAgBAQABPwC\\/tJV1fpvwtA+93SJtFE4WJKPp0PJTqKIHyK0jf7KmeImi5O5\\/Ea6Ng3a5RVfefiGbJwB36S1FNK0AyEL4J8pCVqKJhBaU6viWuj4KxHCxHCwasAsR9Mjy1d1y\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAAEREhAhMUJh\\/9oACAECAQE\\/AEiCDfUTfDNCXrFBbElz\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAEQERIhYf\\/aAAgBAwEBPwCW46a8LmjLP\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"dWnym5gCWyyc6UXvRMgV76t9K2qZuX8\\/Qp\\/q0HujkVB0b5dTRLHJiw==\",\"scanLengths\":[9452,32968,8581,22890],\"midQualityFileSha256\":\"30nUN+uYQYqtvj79bRM8IIaq0SHOYsYJQ5y+Tq7rgWM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jz5hRRD9iI1cmT4TgUyfHCFIzptx2ni8qUGQ5YMZmQc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771095706,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:01:46'),
(17944, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:46'),
(17945, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:47'),
(17946, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:47'),
(17947, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:47'),
(17948, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:47'),
(17949, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:47'),
(17950, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A570588AFAC1426E603627B8ACCD479B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771095707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:01:47'),
(17951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:47'),
(17952, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A570588AFAC1426E603627B8ACCD479B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771095707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:01:47'),
(17953, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:47'),
(17954, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:47'),
(17955, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:48'),
(17956, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:48'),
(17957, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:48'),
(17958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC3C6E8DE63BDCDE86B153F535B854FB\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637136008_1274103287944996_5571144807650892389_n.enc?ccb=11-4&oh=01_Q5Aa3wFQk_9T2H2LI4bu8_u03vbzKxynyiw_0KnGglMJshvdVQ&oe=69B82D88&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Y6m1+i9I2g9O8Zjtnx5IrUzu9scgsDRWP5y\\/cLAFl1c=\",\"fileLength\":\"73891\",\"height\":1599,\"width\":899,\"mediaKey\":\"R1sdn1bZYrV9785ijl+yTs6QqdkwCS3HK9tgL1xkoQU=\",\"fileEncSha256\":\"zgfhirkQaBUUQgxLTHEDO5jlLpa\\/fzoq2Zc\\/BdLQsCI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637136008_1274103287944996_5571144807650892389_n.enc?ccb=11-4&oh=01_Q5Aa3wFQk_9T2H2LI4bu8_u03vbzKxynyiw_0KnGglMJshvdVQ&oe=69B82D88&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771095705\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAQIDBAUBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAADDFR6MnEVIED6Gy6scaddxPMNxos9eJY3048yNLoHPKLkLIEUhaZBP\\/8QAJhAAAQMDAwMFAQAAAAAAAAAAAQACAwQREhQhURATMgUgJDBBUv\\/aAAgBAQABPwC\\/tJV1fpvwtA+93SJtFE4WJKPp0PJTqKIHyK0jf7KmeImi5O5\\/Ea6Ng3a5RVfefiGbJwB36S1FNK0AyEL4J8pCVqKJhBaU6viWuj4KxHCxHCwasAsR9Mjy1d1y\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAAEREhAhMUJh\\/9oACAECAQE\\/AEiCDfUTfDNCXrFBbElz\\/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAEQERIhYf\\/aAAgBAwEBPwCW46a8LmjLP\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"dWnym5gCWyyc6UXvRMgV76t9K2qZuX8\\/Qp\\/q0HujkVB0b5dTRLHJiw==\",\"scanLengths\":[9452,32968,8581,22890],\"midQualityFileSha256\":\"30nUN+uYQYqtvj79bRM8IIaq0SHOYsYJQ5y+Tq7rgWM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jz5hRRD9iI1cmT4TgUyfHCFIzptx2ni8qUGQ5YMZmQc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771095706,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:46.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:01:48'),
(17959, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A570588AFAC1426E603627B8ACCD479B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771095707356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:01:48'),
(17960, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A570588AFAC1426E603627B8ACCD479B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771095707356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:47.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:01:49'),
(17961, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:53'),
(17962, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:53'),
(17963, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC382E1C399BD2B387EE914A35F33390\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"E esse?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ckrJDavjchii7UxziUHd4YxNSgmGlz9lkYj8ARonjlg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771095713,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:01:53'),
(17964, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:53'),
(17965, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:53'),
(17966, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:54'),
(17967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC382E1C399BD2B387EE914A35F33390\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"E esse?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ckrJDavjchii7UxziUHd4YxNSgmGlz9lkYj8ARonjlg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771095713,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:01:54'),
(17968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:01:54'),
(17969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:54'),
(17970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:01:53.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:01:54'),
(17971, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:14:33'),
(17972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635248685_1381627800371947_1940357234512815577_n.enc?ccb=11-4&oh=01_Q5Aa3wHM_q23ih7rIXPqQoQwz1ra2oCOOf2bB6xAN2dspZGjxw&oe=69B838A0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7CTopAiagEMDVuJD2pgVFLOz\\/TvOBEK5A6RcYurxsjA=\",\"fileLength\":\"12194\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"dvDf3WMg37AM7wKRMj90xi9VMqZmAmA3ertAetTd6mk=\",\"fileEncSha256\":\"vD7kHcrCuyngEkcnXZ9pSGt2PGKVkr1\\/HP2Ggn0NWnE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635248685_1381627800371947_1940357234512815577_n.enc?ccb=11-4&oh=01_Q5Aa3wHM_q23ih7rIXPqQoQwz1ra2oCOOf2bB6xAN2dspZGjxw&oe=69B838A0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771096469\",\"waveform\":\"AAs4Y0UuOV1eYGNGR1JVUk5dYk1UTzpYTEBLSEo\\/PV9aWF9XMVhUR1RaSl1IOTxLLVFLVCxNU09cWlVcOlM5Xg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771096473,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:14:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(17973, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:14:33'),
(17974, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771096473609,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:14:33'),
(17975, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:14:34'),
(17976, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:14:34'),
(17977, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635248685_1381627800371947_1940357234512815577_n.enc?ccb=11-4&oh=01_Q5Aa3wHM_q23ih7rIXPqQoQwz1ra2oCOOf2bB6xAN2dspZGjxw&oe=69B838A0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7CTopAiagEMDVuJD2pgVFLOz\\/TvOBEK5A6RcYurxsjA=\",\"fileLength\":\"12194\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"dvDf3WMg37AM7wKRMj90xi9VMqZmAmA3ertAetTd6mk=\",\"fileEncSha256\":\"vD7kHcrCuyngEkcnXZ9pSGt2PGKVkr1\\/HP2Ggn0NWnE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635248685_1381627800371947_1940357234512815577_n.enc?ccb=11-4&oh=01_Q5Aa3wHM_q23ih7rIXPqQoQwz1ra2oCOOf2bB6xAN2dspZGjxw&oe=69B838A0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771096469\",\"waveform\":\"AAs4Y0UuOV1eYGNGR1JVUk5dYk1UTzpYTEBLSEo\\/PV9aWF9XMVhUR1RaSl1IOTxLLVFLVCxNU09cWlVcOlM5Xg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771096473,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:33.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:14:34'),
(17979, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771096482311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:42.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:14:42'),
(17980, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771096482311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:42.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:14:42'),
(17981, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771096482855,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:42.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:14:42'),
(17982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEF155F9E379015FD51F03258FCB9F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771096482855,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:42.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:14:43'),
(17983, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:48.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:14:48'),
(17984, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:48.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:14:48'),
(17985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC2C87B0D2AD06E4C4C1660F121F1649\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/dM0+PGiDT3AJJRl0RgFeqi32eOG3ItfvLMtXv\\/Ud6M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771096489,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:14:49'),
(17986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:14:49'),
(17987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC2C87B0D2AD06E4C4C1660F121F1649\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/dM0+PGiDT3AJJRl0RgFeqi32eOG3ItfvLMtXv\\/Ud6M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771096489,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:14:49'),
(17988, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:14:49'),
(17989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:14:49'),
(17990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:14:49'),
(17991, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:14:49'),
(17992, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:14:49.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:14:49'),
(17993, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:15:43'),
(17994, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:15:43'),
(17995, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5265FFEAAA0790F2EE0A1C5DE5C72D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Mano eu te pago 50 pila pega pra mim nao tem erro so pedir tabela de 50 2 caixa com 4 e 1 caixa de 25 se não tiver pega so de 50 mesmo não precisa receita\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771096542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:15:43'),
(17996, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:15:43'),
(17997, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5265FFEAAA0790F2EE0A1C5DE5C72D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771096543470,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:15:43'),
(17998, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5265FFEAAA0790F2EE0A1C5DE5C72D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771096543470,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:15:44'),
(17999, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8agP-pmbKnvUk8Cyx_8rND0avTPkJ1zKymTqJ0cbSqg&oe=699DC6C7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:15:44'),
(18000, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01881857B3C112E3515\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 8383826497580\\nMensagem: \\\"Mano eu te pago 50 pila pega pra mim nao tem erro so pedir tabela de 50 2 caixa com 4 e 1 caixa de 25 se não tiver pega so de 50 mesmo não precisa receita\\\"\\n\\nUse: \\/aprovar 8383826497580  (para automático)\\nUse: \\/pago 8383826497580  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771096544,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:44.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:15:44'),
(18001, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5265FFEAAA0790F2EE0A1C5DE5C72D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Mano eu te pago 50 pila pega pra mim nao tem erro so pedir tabela de 50 2 caixa com 4 e 1 caixa de 25 se não tiver pega so de 50 mesmo não precisa receita\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771096542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:43.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:15:44'),
(18002, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01881857B3C112E3515\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 8383826497580\\nMensagem: \\\"Mano eu te pago 50 pila pega pra mim nao tem erro so pedir tabela de 50 2 caixa com 4 e 1 caixa de 25 se não tiver pega so de 50 mesmo não precisa receita\\\"\\n\\nUse: \\/aprovar 8383826497580  (para automático)\\nUse: \\/pago 8383826497580  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771096544,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:44.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:15:45'),
(18003, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5265FFEAAA0790F2EE0A1C5DE5C72D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771096549701,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:49.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:15:49'),
(18004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5265FFEAAA0790F2EE0A1C5DE5C72D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771096549701,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:15:49.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:15:50'),
(18005, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:30.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:18:30'),
(18006, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:30.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:18:30'),
(18007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:30.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:18:30'),
(18008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:30.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:18:30'),
(18009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:31.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:18:31'),
(18010, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:31.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:18:31'),
(18011, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:34.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:18:34'),
(18012, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:34.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:18:34'),
(18013, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:35.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:18:35'),
(18014, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:35.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:18:35'),
(18015, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:36.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:18:36'),
(18016, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:18:36.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:18:36'),
(18017, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"160043383185487@lid\",\"labelId\":\"3\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:52'),
(18018, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3\",\"name\":\"Pagamento pendente\",\"color\":0,\"deleted\":false,\"predefinedId\":\"3\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:52'),
(18021, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"9\",\"name\":\"Pagamento em aberto\",\"color\":19,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:52'),
(18023, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"11\",\"name\":\"Vai pagar dia 30\\/11 xs\",\"color\":1,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:52'),
(18024, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8\",\"name\":\"Cadastro\",\"color\":18,\"deleted\":false,\"predefinedId\":\"8\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:52'),
(18025, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5\",\"name\":\"Pedido finalizado\",\"color\":5,\"deleted\":false,\"predefinedId\":\"5\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:52'),
(18026, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12\",\"name\":\"Pagamento app em aberto\",\"color\":2,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:53'),
(18027, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"137392245710995@lid\",\"labelId\":\"9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:53'),
(18028, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"4\",\"name\":\"Pago\",\"color\":3,\"deleted\":false,\"predefinedId\":\"4\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:54'),
(18029, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"2\",\"name\":\"Novo pedido\",\"color\":2,\"deleted\":false,\"predefinedId\":\"2\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:54'),
(18030, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"7\",\"name\":\"Acompanhar\",\"color\":12,\"deleted\":false,\"predefinedId\":\"7\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:54'),
(18031, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6\",\"name\":\"Importante\",\"color\":11,\"deleted\":false,\"predefinedId\":\"6\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:54'),
(18032, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10\",\"name\":\"Pagamento pendente internet\",\"color\":0,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:54'),
(18033, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1\",\"name\":\"Novo cliente\",\"color\":1,\"deleted\":false,\"predefinedId\":\"1\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:23:51.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:23:55'),
(18034, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A53501DB1B515E8F90BDF8D5194678D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771097088232,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:48.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:24:48'),
(18035, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A53501DB1B515E8F90BDF8D5194678D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771097088232,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:48.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:24:49'),
(18036, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:49.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:24:49'),
(18037, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:49.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:24:49'),
(18038, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A53501DB1B515E8F90BDF8D5194678D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636284312_1439857614461760_5654279348103555810_n.enc?ccb=11-4&oh=01_Q5Aa3wEcqCQ-IefdXaMywf-kRvIRDmxRan8S_V9sVUlPQHhImQ&oe=69B842CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+DaB8nFvBw28uCzIa+QhXEKqrnp0AxzoshsuYo+KO+Q=\",\"fileLength\":\"18587\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"\\/0JWhhsZgsLYBwhV4GH57\\/HEY6n90Vg2av7ekUfQ4\\/o=\",\"fileEncSha256\":\"F7ewYbz8cp9RfrWR63zJilLtpTGwowfFUNI+eTNFOF4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636284312_1439857614461760_5654279348103555810_n.enc?ccb=11-4&oh=01_Q5Aa3wEcqCQ-IefdXaMywf-kRvIRDmxRan8S_V9sVUlPQHhImQ&oe=69B842CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771097080\",\"waveform\":\"AFwvVlJMUz9JVUZbX1FEWVBLOktPQ1JISlZVSTlaSko+RVNXWVdQR0tGT1lHSTwyMkRHMygxR1tLNTpRNkQvKQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771097089,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:49.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:24:49'),
(18039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCf4xAkNxPjcHFjYmnI5V-myIiK7sxE80Mv7U-_hh7KQ&oe=699DED13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:49.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:24:50'),
(18040, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A53501DB1B515E8F90BDF8D5194678D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636284312_1439857614461760_5654279348103555810_n.enc?ccb=11-4&oh=01_Q5Aa3wEcqCQ-IefdXaMywf-kRvIRDmxRan8S_V9sVUlPQHhImQ&oe=69B842CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+DaB8nFvBw28uCzIa+QhXEKqrnp0AxzoshsuYo+KO+Q=\",\"fileLength\":\"18587\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"\\/0JWhhsZgsLYBwhV4GH57\\/HEY6n90Vg2av7ekUfQ4\\/o=\",\"fileEncSha256\":\"F7ewYbz8cp9RfrWR63zJilLtpTGwowfFUNI+eTNFOF4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636284312_1439857614461760_5654279348103555810_n.enc?ccb=11-4&oh=01_Q5Aa3wEcqCQ-IefdXaMywf-kRvIRDmxRan8S_V9sVUlPQHhImQ&oe=69B842CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771097080\",\"waveform\":\"AFwvVlJMUz9JVUZbX1FEWVBLOktPQ1JISlZVSTlaSko+RVNXWVdQR0tGT1lHSTwyMkRHMygxR1tLNTpRNkQvKQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771097089,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:49.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:24:50'),
(18041, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCf4xAkNxPjcHFjYmnI5V-myIiK7sxE80Mv7U-_hh7KQ&oe=699DED13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:49.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:24:50'),
(18042, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:24:55'),
(18043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A554259AAACC0A1D83151B669CF1E979\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637158046_1387570919345079_3124132540299883440_n.enc?ccb=11-4&oh=01_Q5Aa3wGnXnTG9dpFnPN13Zba4_wiP6jh7uBIPAj2PMu1UFgoiA&oe=69B84DC0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vF\\/TDV\\/SPzw5ArdSi1ermQ63enBysWxpGJX6Byx1Y64=\",\"fileLength\":\"13593\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"RRoAn7b6C43+0KZTYhLUu8+YbTSyzd4pOcOX\\/3yLaOU=\",\"fileEncSha256\":\"RgxbWDGMwGiINj0jghoYdFf\\/IhVzKjS51Q6bCruUbrs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637158046_1387570919345079_3124132540299883440_n.enc?ccb=11-4&oh=01_Q5Aa3wGnXnTG9dpFnPN13Zba4_wiP6jh7uBIPAj2PMu1UFgoiA&oe=69B84DC0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771097090\",\"waveform\":\"ADI6PVVbTlY1RzxXRkdSRkI0NzQ3QzlDPEo5S0clLDIoUE1OQ1FTQ1tfR2JbPlFTPVVPR0FJSks2KzNDO0tTMg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771097095,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:24:55'),
(18044, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:24:55'),
(18045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A554259AAACC0A1D83151B669CF1E979\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637158046_1387570919345079_3124132540299883440_n.enc?ccb=11-4&oh=01_Q5Aa3wGnXnTG9dpFnPN13Zba4_wiP6jh7uBIPAj2PMu1UFgoiA&oe=69B84DC0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"vF\\/TDV\\/SPzw5ArdSi1ermQ63enBysWxpGJX6Byx1Y64=\",\"fileLength\":\"13593\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"RRoAn7b6C43+0KZTYhLUu8+YbTSyzd4pOcOX\\/3yLaOU=\",\"fileEncSha256\":\"RgxbWDGMwGiINj0jghoYdFf\\/IhVzKjS51Q6bCruUbrs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637158046_1387570919345079_3124132540299883440_n.enc?ccb=11-4&oh=01_Q5Aa3wGnXnTG9dpFnPN13Zba4_wiP6jh7uBIPAj2PMu1UFgoiA&oe=69B84DC0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771097090\",\"waveform\":\"ADI6PVVbTlY1RzxXRkdSRkI0NzQ3QzlDPEo5S0clLDIoUE1OQ1FTQ1tfR2JbPlFTPVVPR0FJSks2KzNDO0tTMg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771097095,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:24:55'),
(18046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCf4xAkNxPjcHFjYmnI5V-myIiK7sxE80Mv7U-_hh7KQ&oe=699DED13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:24:55'),
(18047, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCf4xAkNxPjcHFjYmnI5V-myIiK7sxE80Mv7U-_hh7KQ&oe=699DED13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:24:56'),
(18048, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A554259AAACC0A1D83151B669CF1E979\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771097095532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:24:56'),
(18049, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A554259AAACC0A1D83151B669CF1E979\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771097095532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:24:55.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:24:56'),
(18050, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:25:19'),
(18051, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A508223AB6063FFFB59DB7D6F5767C86\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637115940_2142743659818053_1332742680204555934_n.enc?ccb=11-4&oh=01_Q5Aa3wHbeo4C81FLxkvGT5PBjBblP-tIenPaunBN6BIboLDY1g&oe=69B8267A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sL2kg2XMyg0ydLz+CRgnbxwxCvPibsm2U3a6htpzJjA=\",\"fileLength\":\"52101\",\"seconds\":22,\"ptt\":true,\"mediaKey\":\"uumgMXFLA9Nz+hqHqmL8sUWbgzi5iMg128u+Wt3u8sY=\",\"fileEncSha256\":\"ldvsteqt418e6ffx6+Q7ZNgUAVuuUIqgVroKVpzRBkA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637115940_2142743659818053_1332742680204555934_n.enc?ccb=11-4&oh=01_Q5Aa3wHbeo4C81FLxkvGT5PBjBblP-tIenPaunBN6BIboLDY1g&oe=69B8267A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771097098\",\"waveform\":\"ADlGWUZBOUdMPEJQSkg6Sk1PPDU6PVhWKkAuNVhPNk80VUZAUzFGRVRGHlU0WFs2KyM0K05YVC8wKTFSVkxHUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771097119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:25:19'),
(18052, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:25:19');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18053, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A508223AB6063FFFB59DB7D6F5767C86\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637115940_2142743659818053_1332742680204555934_n.enc?ccb=11-4&oh=01_Q5Aa3wHbeo4C81FLxkvGT5PBjBblP-tIenPaunBN6BIboLDY1g&oe=69B8267A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sL2kg2XMyg0ydLz+CRgnbxwxCvPibsm2U3a6htpzJjA=\",\"fileLength\":\"52101\",\"seconds\":22,\"ptt\":true,\"mediaKey\":\"uumgMXFLA9Nz+hqHqmL8sUWbgzi5iMg128u+Wt3u8sY=\",\"fileEncSha256\":\"ldvsteqt418e6ffx6+Q7ZNgUAVuuUIqgVroKVpzRBkA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637115940_2142743659818053_1332742680204555934_n.enc?ccb=11-4&oh=01_Q5Aa3wHbeo4C81FLxkvGT5PBjBblP-tIenPaunBN6BIboLDY1g&oe=69B8267A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771097098\",\"waveform\":\"ADlGWUZBOUdMPEJQSkg6Sk1PPDU6PVhWKkAuNVhPNk80VUZAUzFGRVRGHlU0WFs2KyM0K05YVC8wKTFSVkxHUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771097119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:25:19'),
(18054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A508223AB6063FFFB59DB7D6F5767C86\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771097119824,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:25:20'),
(18055, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCf4xAkNxPjcHFjYmnI5V-myIiK7sxE80Mv7U-_hh7KQ&oe=699DED13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:25:20'),
(18056, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCf4xAkNxPjcHFjYmnI5V-myIiK7sxE80Mv7U-_hh7KQ&oe=699DED13&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:25:20'),
(18057, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A508223AB6063FFFB59DB7D6F5767C86\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771097119824,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:25:19.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:25:20');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18058, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrofdAEjrVv_zzFBes0i6B2PklYP-QyquZuBYCQHfCLg&oe=699DE55F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUS1MllYVRIgvwxOss1vMlrM4HBLO4ubHgWXqYKVYqlA&oe=699DEB1B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtFL6E2Y7NHIELsnDbIphBB0BJfllNigUAeeZFtsdifQ&oe=699DD2E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGk0rwRe2aogPolk1OpzEEVsIiIZimzmiwvMpVIhog61g&oe=699DCD19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcX7x5SC_Il8G7lH3n5a8XloGqBjMZXhGngYl6SxFT5Q&oe=699DD777&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wE68delCtT8OzS0A90GqKpqdVoxt46qIV2WHTnCFWHIgQ&oe=699DD33B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGO-SIFaquUiPfDTOjZrUHfak6HhlkH6w-ujBAcZyl2w&oe=699DF440&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2ZiP_jTSewrb02KqeAsYuLjTB28yJktTQ1JAjl3v_5A&oe=699DD583&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqhfsaAsQkQKIlXU6Bilag_n_pJfa-HoqoajP0ekk_HQ&oe=699DF49C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2DgBJalh3htflYkUuFdaus4zLFSOoILme4W3VOsT7sw&oe=699DCC95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAD0swX29zGNj7ptF59lcaNdw_UzQX9KmEmgauDk-VfQ&oe=699DF2D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpM-JJ2bR6HQMvzHJpn2D2Z_NFenYO1auOFNS3Q8Dv4g&oe=699DC816&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEajn8G000gF1NmLEV-rxMSNM0GEiJjF83W0SusSlhtpw&oe=699DC7CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr0FtI72dmS_-YoxyplGO2mjBwTUNjEeArct35N7ql_g&oe=699DF8BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh5GO06m4gsDWpyz2P5zNMJFKd0ijxLrOrBxggwvgn9Q&oe=699DE578&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuQkqpWfo_Gi_jsooHJ5FKnGf8rcgbY2v1v_CxBIqASA&oe=699DE00F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUQNP9EDqDWoaxOmm42v-5y_J01fRNbq8nAzt3nD211Q&oe=699DEE56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGswSY_rLGGQfpbnfQP5HE7YyZAo5GNQVdoPFpcjuhaQ&oe=699DD4DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmeXwRj6xnXe_b2mcGHkrfCuvFc9AGeMF5RF9U0kF-QA&oe=699DD876&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEblKBFLR8jY9D5ji2Kz3S_pvKA-Ni1LDoyHqUypb1tsg&oe=699DE9AF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn9UirdLDkHQYll6iNXMXonoKFgwRBcZXSUZ0YabpvpA&oe=699DF02B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgw3CK6O__xmG7dZ1pnQ_qbBW_5HEjJMIxsw7tO-wevw&oe=699DE70D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2v2iByruQHGpfUJPuxE52BLwtN1VfBCqaEEgyYWTC3w&oe=699DEC3B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr1x8P-0DhAPnQ4XV_j64UkeCw84XEkRolozbp4iPYzA&oe=699DCD42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyEOXPl2zVmWuDr11mVoKWOrqV8AZnuTelBUOJyNXJkw&oe=699DEAD5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSMNgjpIyXGmGN3kc_TbnCwEFyzD-NZIyc6n9JC4MfaQ&oe=699DF28C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLBCtKFm0LPJuUxu2pvaYstd8buvxkl5gwxMTNkDpa4A&oe=699DD1DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfyHo7fFT6CVCKenmpd-1VGwPKEEMs-oj8KJWC_6nkzg&oe=699DC7E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_-zTDJDyLAUTvzIB-F9oEFHkfnLXIFUbOE6Y2VSXRmg&oe=699DE050&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE09Bn_vBV7WOvGYluJYv1U2CUBTocDQj4jg7ILv0_SvQ&oe=699DEE6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_WNRkuTU6Sv7IzI3KaJM-omyLOzb_s6y5pDG3bFmJRQ&oe=699DE8BB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHHH5Wix1h-yEkXl-KTl-S3SujY12XfsshVHh5ad7FTA&oe=699DF229&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGa76SBVw5F_dj0II9BAccwxlFWgWMo_VFqTnJJE6tdNQ&oe=699DF5AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWZNbU1LobW4VaBVtuNDfbqX-----LNetqtY_-41w-AQ&oe=699DC6A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpPQIG9HoeniAykiB7RSwJXY93E5T2lwBw-YTPVK_bIA&oe=699DE485&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPLY_Jer-1hV6ddJcMl6tk8tuuYX-V4vu2VBIQhUpeAQ&oe=699DEC30&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-8YN08sGb5Wua7CA6y4yEulzK6xL_UXzWQ239Z2vt7g&oe=699DD292&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_Qy1zhckokl5lya_0-plKium6mB7C1n26A7KARRZFpQ&oe=699DE855&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLUkwR5EFbTh9WhcYFjxVlcRRNNXcLU7Wsb32AonnQlQ&oe=699DCC11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoXZr1orDq4auy_p3-MaU3x0hP9Nfo7wfP0bTig7vVsA&oe=699DD239&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2AmbeVWbKqJl3rK-YdU2bMpP8NvLk_758P1K8fO-4ZA&oe=699DE5F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPw4c5C4pqNIv3TV83DRhYYUAnroVtZ7hoSjnyvhRMAA&oe=699DF52A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGMdsNSMY8u3HvXfQ2ie6h5QfKiRemRIMQA-MT7qrdzA&oe=699DEE65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSkl3awsj6XJrayEu_N3Gp-O3L138WPRiRSN0O1vhOAg&oe=699DF3CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5n6ieeqKHwvzaT8Kb3E3GOsZmGZruy5O3KmhEJXpEpw&oe=699DF43A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXT_B9hmRfxr5BB4AuxcPYmR4G0a45Dp9osPjW8LOqPA&oe=699DDCEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2XcOim5u6TyNYvVlFaZtwK2aPG3Q3AOda2UFqucoHzg&oe=699DDBEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEXLRbuq1q96yKBoVtEx8Ra9MsC_aarbvPd9eXzaapJg&oe=699DED55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSpt1vvPL2OYFygqdZhqfmqlyPbuYLsBRhP3xZYWYu3A&oe=699DE2AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3oRHommZhLspqKhE-nSNQjVEfIO4AWZ35XmSXfSSeEA&oe=699DD558&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgxb97vb-0dyLIWqAL-e700V4V7x0m_CUZV8TA3-IszA&oe=699DEA53&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJwPDoKZ26gV26FvqsjXg2NIsIQVk90o2isw_neUlOoQ&oe=699DD479&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfffk2O5GmCuCFjEKE3lF-PqSfhA444HgwBTzuvi8MDw&oe=699DC706&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeMTSZqs6jlyaF-zW6zB8Bk7aLvAN_427oJFUb9XJZJA&oe=699DD4A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEW0mFp5msxL2PamDDu8wtle1auPVsGQB2fNJbPGC0Ppg&oe=699DEC78&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEpkrUTUqW-NPgDU8lHyxA1iQpuLliQ99RB4mH78aXsA&oe=699DD138&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw4TNG7nftW8NOHE-5DzX3cE2f2-o8ewOpdf9GX3HNMw&oe=699DE000&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvKA3Z9iUZ-b6rw7PjBJ6FuzwPP_eWQNL5JeHQ89kw8Q&oe=699DCCCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsSH3KdrXOG8wA7Rll7PHV0XOIZoednNwLwPUrapGOtA&oe=699DF83E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5mb6KEMI4QYjCI0Zh20Rk1c8XA7fGkK_pjR3_hhfMrA&oe=699DE90E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUoMe_fq72_NhnDJ0KzMDjpk2opDFaEeI96eM7C12rbg&oe=699DEFF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1EmjUI95l6RsT8l71UuURSlRT0P2Rfi1xO6uboYKmzw&oe=699DD592&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsRYfTHnbeGf6LqMIBvlntgJpKHo5t7phAhnOA3Q92Zw&oe=699DC8D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPVEfzzXllwT4J04u_m7FA0V7_rICq--a2Frqq2Ca3XA&oe=699DF4FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6DKPS5UnbuAC0XZq_Kd0OiZPVOpM2Q4OogXL7GEyeCQ&oe=699DF832&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtyLpjgAFrOq4KxK5-IKgZIzxnMsmcLcwSZx-yT8s5dQ&oe=699DF2AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVrSp6Kf-98K1rrED8WZ7JatKcAe3cIZsLL4rkm1nPwA&oe=699DE73C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wE95ZbGZ1DAFm4YsYfQlQ_nZPkh3GGp12n9YJxvT8O94A&oe=699DC89A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfFigtDoy3lmW4Qki8GpDv9XCk_j2OxfU3Elm98QOllA&oe=699DEC10&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjeuuSA5at9lmU6RQKaDO6PYQI1bvs8qeyyEhk4BXFQQ&oe=699DCFC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzlkVE5QeAVAjV1OIYpQt0nqGlgpz4FInIjdWrqh2hg&oe=699DD657&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOQEFEUtgGJLO4QJBqO_miBuFDLKrJhfqHEWF6cfc_mg&oe=699DD6FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXlA7d-xAxssJSLbg27zmZa9klatzHV9nlwpQT9806g&oe=699DD20E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQn906xcsUUX5tlGQhv8bcerCWoAg51X-JXL6NRCdKvQ&oe=699DE775&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGw00oZ6uY5ATGvqXTj9lsK5HYMvhXNS7GCW21Uw-cWxA&oe=699DF504&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbsMGfe4NhRcOn4r5CS0tejbNfAJU7EkcFIoDAFtMnmQ&oe=699DC87D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNur6gFfQSkTDrQAErwUXVlYYLa4jwJyUnq58wnVBenQ&oe=699DCCA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7rBicACYjluPiYE6Z7AQ8avxv5WJl4X3txk44JopyXw&oe=699DE43F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEfNx1AGN2slT02953CrdlmLX26whyVL63JDhxCArjfA&oe=699DC942&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNhsPY0sHqqp01iD-g9vsYvo66olljI1b82-ABbzTHw&oe=699DF021&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEDeIoFbsWn4dCOgj37gOIojMim0pznIsf0qTOc_dPCA&oe=699DEB47&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLHZMd-0sxvhxuBMQ3_cLOsCYCToV182KLlL6UwgUqnQ&oe=699DD8A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTe4-yQx3wIocdU6SGux3Cpa3rmvR710KdIEzqoOBbOw&oe=699DDB5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLZn-bGVzVBHLouM2J0pe1rntsgaYLeA3tWhFx9zkFdw&oe=699DE347&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqKoC3e32FGTEqCCk8eP5XfF6W_v4WYIm9FWqRTz8FCQ&oe=699DDEE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGXfygAk8ZDppFNhwaYZMSxaHosADT7aLUD2Ps2OsGRA&oe=699DEF48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHBC4qE1Moo3NIFe4aMHsWmq6hmsmZWyF7TmiqTMVTpA&oe=699DF08A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS19MIREPgrhNoRR9cKotAIaBhE9SlrREWZYpgMkG61w&oe=699DEB91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ykcGtGQ4Qgr1a5BV85qVhLab4xXoP726UdvJqueVeQ&oe=699DDF36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoWcUU1pkzR-6csNucGSxbDkey4o_Ya7UG1xGYvJTCFQ&oe=699DE657&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJqUwSs1V3gbAUNIf_GIx9FVUMCPFFRcJ3Pom2UThzoA&oe=699DD5BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPn-k53-yCALVo6BD8OCIVRZ_hc_vGHGNsnAao3fJNaQ&oe=699DDDAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJN-RiDidoCZ1MR_3zcFdW7OpAUFI34Dp3SLyuWvEDcA&oe=699DF91A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmsUCh_3DUXIJl6uzn0ALTjcsrozksCU6tWwUz2Jao5w&oe=699DF5F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLL3DXDMNN8oX9C7wCWyIC3f95AS-HzkdZkMgcBAaIg&oe=699DE287&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGacKw-IjoT8FoRH4IyHF_6PI6YPtCKVGUO_YU67pMeA&oe=699DF7CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlsOvIU7AjE-8Olk3IrWS3dRWmdHLKouoILkiraOhAVw&oe=699DDF60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbf4zrv8WGBJgyuBbVpGzIK3uhUaj2_7Eg6ciXlyeuzQ&oe=699DD48B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeQjT9NsiNHSmiUBFkMIjV0tbzOJRdmXagMTQjnWZBOw&oe=699DE320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsvWLniRzGWRTIrg0f0Y6bvaNm-0XTXplLffhNKYHF1Q&oe=699DEFD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqvIrM8yZryW6VFMVqdOBuGFQzkkVF2Vp2w5GlLdn3mA&oe=699DEFE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd6JkYjyCzvTg9SSxkGfYVmQYBcXF23HtFN_VTAzx2YQ&oe=699DEBA3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6NGO4IFedR0R2t7zGQbhqQYKMbBbPCQnGCrNGTUjTw&oe=699DC6F3&_nc_sid=5', 1, '2026-02-14 16:31:06');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18059, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrofdAEjrVv_zzFBes0i6B2PklYP-QyquZuBYCQHfCLg&oe=699DE55F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUS1MllYVRIgvwxOss1vMlrM4HBLO4ubHgWXqYKVYqlA&oe=699DEB1B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtFL6E2Y7NHIELsnDbIphBB0BJfllNigUAeeZFtsdifQ&oe=699DD2E6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGk0rwRe2aogPolk1OpzEEVsIiIZimzmiwvMpVIhog61g&oe=699DCD19&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcX7x5SC_Il8G7lH3n5a8XloGqBjMZXhGngYl6SxFT5Q&oe=699DD777&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wE68delCtT8OzS0A90GqKpqdVoxt46qIV2WHTnCFWHIgQ&oe=699DD33B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGO-SIFaquUiPfDTOjZrUHfak6HhlkH6w-ujBAcZyl2w&oe=699DF440&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2ZiP_jTSewrb02KqeAsYuLjTB28yJktTQ1JAjl3v_5A&oe=699DD583&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqhfsaAsQkQKIlXU6Bilag_n_pJfa-HoqoajP0ekk_HQ&oe=699DF49C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/468577052_818601200313949_8336025069560970084_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2DgBJalh3htflYkUuFdaus4zLFSOoILme4W3VOsT7sw&oe=699DCC95&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAD0swX29zGNj7ptF59lcaNdw_UzQX9KmEmgauDk-VfQ&oe=699DF2D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpM-JJ2bR6HQMvzHJpn2D2Z_NFenYO1auOFNS3Q8Dv4g&oe=699DC816&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRNEYiR3HNdo6WeRLE1s0JxGWCiDZyDY958t65vGVwLg&oe=699DC2CB&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDdU63e7y1lEqa8BKr8HG37iKlR5eq8aOr_1GraJyq1w&oe=699DC5C6&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wGQ7KG2l0n49DTa4vwdzIuQ-_hRLzeoNgzv7DY4O3Rxhg&oe=699DC362&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wEajn8G000gF1NmLEV-rxMSNM0GEiJjF83W0SusSlhtpw&oe=699DC7CC&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr0FtI72dmS_-YoxyplGO2mjBwTUNjEeArct35N7ql_g&oe=699DF8BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wESK2Fxx5Hdh94LWKg8vAoArr4lvrk07jTm4VhNgCrDIQ&oe=699DC21C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wGh5GO06m4gsDWpyz2P5zNMJFKd0ijxLrOrBxggwvgn9Q&oe=699DE578&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHE6WXk0enyXZoUccoCv0mnlZwRInGNJNpK3KSiDKlFg&oe=699DC189&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuQkqpWfo_Gi_jsooHJ5FKnGf8rcgbY2v1v_CxBIqASA&oe=699DE00F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSdEzkob_2RhWNdVBsDr01m-fjmSw_jrdrLoh2eXArYQ&oe=699DC198&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUQNP9EDqDWoaxOmm42v-5y_J01fRNbq8nAzt3nD211Q&oe=699DEE56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGswSY_rLGGQfpbnfQP5HE7YyZAo5GNQVdoPFpcjuhaQ&oe=699DD4DA&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmeXwRj6xnXe_b2mcGHkrfCuvFc9AGeMF5RF9U0kF-QA&oe=699DD876&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEblKBFLR8jY9D5ji2Kz3S_pvKA-Ni1LDoyHqUypb1tsg&oe=699DE9AF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn9UirdLDkHQYll6iNXMXonoKFgwRBcZXSUZ0YabpvpA&oe=699DF02B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgw3CK6O__xmG7dZ1pnQ_qbBW_5HEjJMIxsw7tO-wevw&oe=699DE70D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2v2iByruQHGpfUJPuxE52BLwtN1VfBCqaEEgyYWTC3w&oe=699DEC3B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr1x8P-0DhAPnQ4XV_j64UkeCw84XEkRolozbp4iPYzA&oe=699DCD42&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyEOXPl2zVmWuDr11mVoKWOrqV8AZnuTelBUOJyNXJkw&oe=699DEAD5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSMNgjpIyXGmGN3kc_TbnCwEFyzD-NZIyc6n9JC4MfaQ&oe=699DF28C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLBCtKFm0LPJuUxu2pvaYstd8buvxkl5gwxMTNkDpa4A&oe=699DD1DA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wEv2tCSk04tw7yqB-HG9aZAlE_Aa3i1QVX2q-hTLoQvGQ&oe=699DC3AF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfyHo7fFT6CVCKenmpd-1VGwPKEEMs-oj8KJWC_6nkzg&oe=699DC7E5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_-zTDJDyLAUTvzIB-F9oEFHkfnLXIFUbOE6Y2VSXRmg&oe=699DE050&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE09Bn_vBV7WOvGYluJYv1U2CUBTocDQj4jg7ILv0_SvQ&oe=699DEE6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_WNRkuTU6Sv7IzI3KaJM-omyLOzb_s6y5pDG3bFmJRQ&oe=699DE8BB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHHH5Wix1h-yEkXl-KTl-S3SujY12XfsshVHh5ad7FTA&oe=699DF229&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGa76SBVw5F_dj0II9BAccwxlFWgWMo_VFqTnJJE6tdNQ&oe=699DF5AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWZNbU1LobW4VaBVtuNDfbqX-----LNetqtY_-41w-AQ&oe=699DC6A4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpPQIG9HoeniAykiB7RSwJXY93E5T2lwBw-YTPVK_bIA&oe=699DE485&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPLY_Jer-1hV6ddJcMl6tk8tuuYX-V4vu2VBIQhUpeAQ&oe=699DEC30&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-8YN08sGb5Wua7CA6y4yEulzK6xL_UXzWQ239Z2vt7g&oe=699DD292&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_Qy1zhckokl5lya_0-plKium6mB7C1n26A7KARRZFpQ&oe=699DE855&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLUkwR5EFbTh9WhcYFjxVlcRRNNXcLU7Wsb32AonnQlQ&oe=699DCC11&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wHoXZr1orDq4auy_p3-MaU3x0hP9Nfo7wfP0bTig7vVsA&oe=699DD239&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2AmbeVWbKqJl3rK-YdU2bMpP8NvLk_758P1K8fO-4ZA&oe=699DE5F7&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPw4c5C4pqNIv3TV83DRhYYUAnroVtZ7hoSjnyvhRMAA&oe=699DF52A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGMdsNSMY8u3HvXfQ2ie6h5QfKiRemRIMQA-MT7qrdzA&oe=699DEE65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSkl3awsj6XJrayEu_N3Gp-O3L138WPRiRSN0O1vhOAg&oe=699DF3CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5n6ieeqKHwvzaT8Kb3E3GOsZmGZruy5O3KmhEJXpEpw&oe=699DF43A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXT_B9hmRfxr5BB4AuxcPYmR4G0a45Dp9osPjW8LOqPA&oe=699DDCEE&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2XcOim5u6TyNYvVlFaZtwK2aPG3Q3AOda2UFqucoHzg&oe=699DDBEB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEXLRbuq1q96yKBoVtEx8Ra9MsC_aarbvPd9eXzaapJg&oe=699DED55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSpt1vvPL2OYFygqdZhqfmqlyPbuYLsBRhP3xZYWYu3A&oe=699DE2AE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wE3oRHommZhLspqKhE-nSNQjVEfIO4AWZ35XmSXfSSeEA&oe=699DD558&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHgxb97vb-0dyLIWqAL-e700V4V7x0m_CUZV8TA3-IszA&oe=699DEA53&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJwPDoKZ26gV26FvqsjXg2NIsIQVk90o2isw_neUlOoQ&oe=699DD479&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wGfffk2O5GmCuCFjEKE3lF-PqSfhA444HgwBTzuvi8MDw&oe=699DC706&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeMTSZqs6jlyaF-zW6zB8Bk7aLvAN_427oJFUb9XJZJA&oe=699DD4A1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEW0mFp5msxL2PamDDu8wtle1auPVsGQB2fNJbPGC0Ppg&oe=699DEC78&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEpkrUTUqW-NPgDU8lHyxA1iQpuLliQ99RB4mH78aXsA&oe=699DD138&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wEw4TNG7nftW8NOHE-5DzX3cE2f2-o8ewOpdf9GX3HNMw&oe=699DE000&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wEvKA3Z9iUZ-b6rw7PjBJ6FuzwPP_eWQNL5JeHQ89kw8Q&oe=699DCCCF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsSH3KdrXOG8wA7Rll7PHV0XOIZoednNwLwPUrapGOtA&oe=699DF83E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wFiRKC8Me85Yfyy935Q7hJCOj9Wecrw6U4cyqfMsvt1Tw&oe=699DC382&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wF5mb6KEMI4QYjCI0Zh20Rk1c8XA7fGkK_pjR3_hhfMrA&oe=699DE90E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUoMe_fq72_NhnDJ0KzMDjpk2opDFaEeI96eM7C12rbg&oe=699DEFF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1EmjUI95l6RsT8l71UuURSlRT0P2Rfi1xO6uboYKmzw&oe=699DD592&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsRYfTHnbeGf6LqMIBvlntgJpKHo5t7phAhnOA3Q92Zw&oe=699DC8D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPVEfzzXllwT4J04u_m7FA0V7_rICq--a2Frqq2Ca3XA&oe=699DF4FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6DKPS5UnbuAC0XZq_Kd0OiZPVOpM2Q4OogXL7GEyeCQ&oe=699DF832&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtyLpjgAFrOq4KxK5-IKgZIzxnMsmcLcwSZx-yT8s5dQ&oe=699DF2AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVrSp6Kf-98K1rrED8WZ7JatKcAe3cIZsLL4rkm1nPwA&oe=699DE73C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqbusyHwSUPQbHXYs-Ntp-r-c-CJQZZ6lDTdwPWYhzhg&oe=699DC49F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wE95ZbGZ1DAFm4YsYfQlQ_nZPkh3GGp12n9YJxvT8O94A&oe=699DC89A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfFigtDoy3lmW4Qki8GpDv9XCk_j2OxfU3Elm98QOllA&oe=699DEC10&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wHjeuuSA5at9lmU6RQKaDO6PYQI1bvs8qeyyEhk4BXFQQ&oe=699DCFC4&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzlkVE5QeAVAjV1OIYpQt0nqGlgpz4FInIjdWrqh2hg&oe=699DD657&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOQEFEUtgGJLO4QJBqO_miBuFDLKrJhfqHEWF6cfc_mg&oe=699DD6FA&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhlg1ilMj-eOutW0K-f2E_uOOnXuWi5pJAB36ApMQ1sg&oe=699DC515&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeXlA7d-xAxssJSLbg27zmZa9klatzHV9nlwpQT9806g&oe=699DD20E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQn906xcsUUX5tlGQhv8bcerCWoAg51X-JXL6NRCdKvQ&oe=699DE775&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGw00oZ6uY5ATGvqXTj9lsK5HYMvhXNS7GCW21Uw-cWxA&oe=699DF504&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGbsMGfe4NhRcOn4r5CS0tejbNfAJU7EkcFIoDAFtMnmQ&oe=699DC87D&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGNur6gFfQSkTDrQAErwUXVlYYLa4jwJyUnq58wnVBenQ&oe=699DCCA5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wE7rBicACYjluPiYE6Z7AQ8avxv5WJl4X3txk44JopyXw&oe=699DE43F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wEEfNx1AGN2slT02953CrdlmLX26whyVL63JDhxCArjfA&oe=699DC942&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNhsPY0sHqqp01iD-g9vsYvo66olljI1b82-ABbzTHw&oe=699DF021&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEDeIoFbsWn4dCOgj37gOIojMim0pznIsf0qTOc_dPCA&oe=699DEB47&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLHZMd-0sxvhxuBMQ3_cLOsCYCToV182KLlL6UwgUqnQ&oe=699DD8A7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLF5iOYQIPiu961WpdyI3srYmmEO4wULlRZXVRjIKFmw&oe=699DC3C0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTe4-yQx3wIocdU6SGux3Cpa3rmvR710KdIEzqoOBbOw&oe=699DDB5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLZn-bGVzVBHLouM2J0pe1rntsgaYLeA3tWhFx9zkFdw&oe=699DE347&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHqKoC3e32FGTEqCCk8eP5XfF6W_v4WYIm9FWqRTz8FCQ&oe=699DDEE3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGXfygAk8ZDppFNhwaYZMSxaHosADT7aLUD2Ps2OsGRA&oe=699DEF48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHBC4qE1Moo3NIFe4aMHsWmq6hmsmZWyF7TmiqTMVTpA&oe=699DF08A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS19MIREPgrhNoRR9cKotAIaBhE9SlrREWZYpgMkG61w&oe=699DEB91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHrDXlZqwP4sWBfalxUYKzPTOnnjnXVfJhEu3FENdttAA&oe=699DC51C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6ykcGtGQ4Qgr1a5BV85qVhLab4xXoP726UdvJqueVeQ&oe=699DDF36&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZkxJq4lSmIHpnvX4ndGz9WkK23n4xczSGmRYgVurikg&oe=699DC354&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoWcUU1pkzR-6csNucGSxbDkey4o_Ya7UG1xGYvJTCFQ&oe=699DE657&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJqUwSs1V3gbAUNIf_GIx9FVUMCPFFRcJ3Pom2UThzoA&oe=699DD5BE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPn-k53-yCALVo6BD8OCIVRZ_hc_vGHGNsnAao3fJNaQ&oe=699DDDAE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJN-RiDidoCZ1MR_3zcFdW7OpAUFI34Dp3SLyuWvEDcA&oe=699DF91A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmsUCh_3DUXIJl6uzn0ALTjcsrozksCU6tWwUz2Jao5w&oe=699DF5F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdcVzykwavVmbvnZu6TGzXwnj2JitRBnqMfdnPdcLxQQ&oe=699DC5DB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wEpLL3DXDMNN8oX9C7wCWyIC3f95AS-HzkdZkMgcBAaIg&oe=699DE287&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGacKw-IjoT8FoRH4IyHF_6PI6YPtCKVGUO_YU67pMeA&oe=699DF7CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEou68jzUfM8Owdk6K7vZnYAIVGXf1_QLorDKZadgQXA&oe=699DC437&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlsOvIU7AjE-8Olk3IrWS3dRWmdHLKouoILkiraOhAVw&oe=699DDF60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbf4zrv8WGBJgyuBbVpGzIK3uhUaj2_7Eg6ciXlyeuzQ&oe=699DD48B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeQjT9NsiNHSmiUBFkMIjV0tbzOJRdmXagMTQjnWZBOw&oe=699DE320&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsvWLniRzGWRTIrg0f0Y6bvaNm-0XTXplLffhNKYHF1Q&oe=699DEFD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqvIrM8yZryW6VFMVqdOBuGFQzkkVF2Vp2w5GlLdn3mA&oe=699DEFE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wEArVsqX7fEu8ej9V2cKFYbPCB6PP__9NtZ--VYmfKtUA&oe=699DC685&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd6JkYjyCzvTg9SSxkGfYVmQYBcXF23HtFN_VTAzx2YQ&oe=699DEBA3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wGN6NGO4IFedR0R2t7zGQbhqQYKMbBbPCQnGCrNGTUjTw&oe=699DC6F3&_nc_sid=5', 1, '2026-02-14 16:31:07');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18060, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593731507_2424359598000944_1735791380610692409_n.enc?ccb=11-4&oh=01_Q5Aa3wHY5z803VAKBuz5x7HkgVTFi5NFWuEI-cNRH8UigWfMZQ&oe=69B85753&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pU2eJ2kHe77rmh9VPRifvihuwArdqR\\/3bXg9E\\/s9N7c=\",\"fileLength\":\"12340\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"vqKHHz+bUTouMCRATD\\/XGFk8nt6X+ElLFJXu0PrULjo=\",\"fileEncSha256\":\"BlnZo3nrdN4U9n1bIA5I80u0V5J7ua+wvMqp9ZbNMas=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593731507_2424359598000944_1735791380610692409_n.enc?ccb=11-4&oh=01_Q5Aa3wHY5z803VAKBuz5x7HkgVTFi5NFWuEI-cNRH8UigWfMZQ&oe=69B85753&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771098414\",\"waveform\":\"ADc\\/YFM6XGJaUl9cWUlZTzpYW1JVXSpVV1dDSldGS1BdWlo\\/XlZFSkxSMFBJV1dCN1g3T0FaPjhQX0wjGBMLCg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771098418,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:46:58'),
(18061, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:46:59'),
(18062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771098418749,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:46:59'),
(18063, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:46:59'),
(18064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:46:59'),
(18065, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:46:59'),
(18066, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593731507_2424359598000944_1735791380610692409_n.enc?ccb=11-4&oh=01_Q5Aa3wHY5z803VAKBuz5x7HkgVTFi5NFWuEI-cNRH8UigWfMZQ&oe=69B85753&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pU2eJ2kHe77rmh9VPRifvihuwArdqR\\/3bXg9E\\/s9N7c=\",\"fileLength\":\"12340\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"vqKHHz+bUTouMCRATD\\/XGFk8nt6X+ElLFJXu0PrULjo=\",\"fileEncSha256\":\"BlnZo3nrdN4U9n1bIA5I80u0V5J7ua+wvMqp9ZbNMas=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593731507_2424359598000944_1735791380610692409_n.enc?ccb=11-4&oh=01_Q5Aa3wHY5z803VAKBuz5x7HkgVTFi5NFWuEI-cNRH8UigWfMZQ&oe=69B85753&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771098414\",\"waveform\":\"ADc\\/YFM6XGJaUl9cWUlZTzpYW1JVXSpVV1dDSldGS1BdWlo\\/XlZFSkxSMFBJV1dCN1g3T0FaPjhQX0wjGBMLCg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771098418,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:46:59'),
(18067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771098418749,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:46:58.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:47:00'),
(18068, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771098432015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:12.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:47:12'),
(18069, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771098432015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:12.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:47:12'),
(18070, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771098432680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:12.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:47:12'),
(18071, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F2B7DF2C1DFA36C1965DEECE7C8F8F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771098432680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:12.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:47:12'),
(18072, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:36.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:47:36'),
(18073, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:36.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:47:36'),
(18074, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:47:37'),
(18075, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC292638FD10F3AE5175C1DED5198F99\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pexzdDPuQjR5sUokxyvTUPZGb85lC0w+YS4FqKHEhB4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771098457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:47:37'),
(18076, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:47:37'),
(18077, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC292638FD10F3AE5175C1DED5198F99\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pexzdDPuQjR5sUokxyvTUPZGb85lC0w+YS4FqKHEhB4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771098457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:47:37'),
(18078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:47:37'),
(18079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:47:38'),
(18080, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:47:38'),
(18081, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:47:37.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:47:38'),
(18082, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:49:35'),
(18083, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:49:35'),
(18084, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE8720DC25622BD4AEEFE1D3A787BF0\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/35080481_947490317861674_7172305927635203712_n.enc?ccb=11-4&oh=01_Q5Aa3wG2UuRZmcj7MS3JBcaeoU1KVVUKasdy9rH_Mj3JaPjRyg&oe=69B839E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"KXRf3\\/Sa7WGlVVong4Fl9eKXu1mjCg9329GSYu9GFd8=\",\"fileLength\":\"97510\",\"height\":1599,\"width\":899,\"mediaKey\":\"QJzgXjjtQwYqp8jWzE\\/6jMVBX3zSbHpDijVQa9XPd1U=\",\"fileEncSha256\":\"Gf6COfDWHQp1WZBdGyzd\\/tlzAVyNXkNcZBczN7TIKt0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/35080481_947490317861674_7172305927635203712_n.enc?ccb=11-4&oh=01_Q5Aa3wG2UuRZmcj7MS3JBcaeoU1KVVUKasdy9rH_Mj3JaPjRyg&oe=69B839E5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771098574\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAACAAEDBQQBAQEBAQAAAAAAAAAAAAAAAAIBAAP\\/2gAMAwEAAhADEAAAAJmQicdMtjJLPSCu4A1DIhku16kJkDHzzaR9CqoSxXOi6E50m\\/\\/EACUQAAMAAAQGAgMAAAAAAAAAAAABAgMEEWEQEhMhIlEUcSAxQf\\/aAAgBAQABPwB0VRTGzUbGxsfB3I7n2OtjXY1FLp19lRyJapC0\\/ZWnfxfBUlzLcnFa7diMecPXwmvsvNc0uenJqVl4qmz40e2PLT7Y8vudDfix\\/hbalsePiP8Ap1sT2f\\/EAB0RAAIBBAMAAAAAAAAAAAAAAAABEQIDEhMQIWH\\/2gAIAQIBAT8AgggVpNLs1Uo10CuQkoNnhnVw2ZH\\/xAAbEQADAAIDAAAAAAAAAAAAAAAAARECEhAhQf\\/aAAgBAwEBPwClKPOG7KxpMWCXp1wlTVn\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"TGYXYTuYLiFrLNaNmOxjXsujNwjyRj2Q2KBvXH2duywPrJXbQ7RMKQ==\",\"scanLengths\":[9773,38854,13564,35319],\"midQualityFileSha256\":\"HC+B0FV5aXKegPklQdMaVClg4XFGpYsSrU6vVRXUzz0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wOmzPfwuRFj5RouXCVAJ38zhAABgfMn4idIpLNkb2\\/A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771098575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:49:35'),
(18085, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:49:35'),
(18086, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:49:35'),
(18087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:49:35'),
(18088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:49:35'),
(18089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE8720DC25622BD4AEEFE1D3A787BF0\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/35080481_947490317861674_7172305927635203712_n.enc?ccb=11-4&oh=01_Q5Aa3wG2UuRZmcj7MS3JBcaeoU1KVVUKasdy9rH_Mj3JaPjRyg&oe=69B839E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"KXRf3\\/Sa7WGlVVong4Fl9eKXu1mjCg9329GSYu9GFd8=\",\"fileLength\":\"97510\",\"height\":1599,\"width\":899,\"mediaKey\":\"QJzgXjjtQwYqp8jWzE\\/6jMVBX3zSbHpDijVQa9XPd1U=\",\"fileEncSha256\":\"Gf6COfDWHQp1WZBdGyzd\\/tlzAVyNXkNcZBczN7TIKt0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/35080481_947490317861674_7172305927635203712_n.enc?ccb=11-4&oh=01_Q5Aa3wG2UuRZmcj7MS3JBcaeoU1KVVUKasdy9rH_Mj3JaPjRyg&oe=69B839E5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771098574\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAACAAEDBQQBAQEBAQAAAAAAAAAAAAAAAAIBAAP\\/2gAMAwEAAhADEAAAAJmQicdMtjJLPSCu4A1DIhku16kJkDHzzaR9CqoSxXOi6E50m\\/\\/EACUQAAMAAAQGAgMAAAAAAAAAAAABAgMEEWEQEhMhIlEUcSAxQf\\/aAAgBAQABPwB0VRTGzUbGxsfB3I7n2OtjXY1FLp19lRyJapC0\\/ZWnfxfBUlzLcnFa7diMecPXwmvsvNc0uenJqVl4qmz40e2PLT7Y8vudDfix\\/hbalsePiP8Ap1sT2f\\/EAB0RAAIBBAMAAAAAAAAAAAAAAAABEQIDEhMQIWH\\/2gAIAQIBAT8AgggVpNLs1Uo10CuQkoNnhnVw2ZH\\/xAAbEQADAAIDAAAAAAAAAAAAAAAAARECEhAhQf\\/aAAgBAwEBPwClKPOG7KxpMWCXp1wlTVn\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"TGYXYTuYLiFrLNaNmOxjXsujNwjyRj2Q2KBvXH2duywPrJXbQ7RMKQ==\",\"scanLengths\":[9773,38854,13564,35319],\"midQualityFileSha256\":\"HC+B0FV5aXKegPklQdMaVClg4XFGpYsSrU6vVRXUzz0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wOmzPfwuRFj5RouXCVAJ38zhAABgfMn4idIpLNkb2\\/A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771098575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:49:35.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:49:36'),
(18090, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:57:14'),
(18091, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636127746_1430583461773319_6686786128113572513_n.enc?ccb=11-4&oh=01_Q5Aa3wFFVrOtHUN518I_uLqo8sGRJ8WYjfW0Ourc3NtthQAzgg&oe=69B8338B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IxMEfSKnmFwirKRmAojYYayNQMRwg90a\\/rurbdkJOo4=\",\"fileLength\":\"14130\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"hvd2cygQYOsyMmElT6jnuI8l44ErsI0T0cbR2Ozjcxo=\",\"fileEncSha256\":\"sMg5AJ+wd6YdmHb8kWiahTYgij1fNwbN8xzmuzd0S4s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636127746_1430583461773319_6686786128113572513_n.enc?ccb=11-4&oh=01_Q5Aa3wFFVrOtHUN518I_uLqo8sGRJ8WYjfW0Ourc3NtthQAzgg&oe=69B8338B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771099029\",\"waveform\":\"AEJgQTM5SVZYTkhEFmBSW0FdUVpaVTNUWStbSBhSXSooUlVEVS9MHFU5UDVONFNOP1YpQEJNTkYSAwADAANGRQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771099034,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:57:14'),
(18092, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:57:14'),
(18093, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:57:14'),
(18094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:57:15'),
(18095, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771099034687,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:57:15'),
(18096, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636127746_1430583461773319_6686786128113572513_n.enc?ccb=11-4&oh=01_Q5Aa3wFFVrOtHUN518I_uLqo8sGRJ8WYjfW0Ourc3NtthQAzgg&oe=69B8338B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IxMEfSKnmFwirKRmAojYYayNQMRwg90a\\/rurbdkJOo4=\",\"fileLength\":\"14130\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"hvd2cygQYOsyMmElT6jnuI8l44ErsI0T0cbR2Ozjcxo=\",\"fileEncSha256\":\"sMg5AJ+wd6YdmHb8kWiahTYgij1fNwbN8xzmuzd0S4s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636127746_1430583461773319_6686786128113572513_n.enc?ccb=11-4&oh=01_Q5Aa3wFFVrOtHUN518I_uLqo8sGRJ8WYjfW0Ourc3NtthQAzgg&oe=69B8338B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771099029\",\"waveform\":\"AEJgQTM5SVZYTkhEFmBSW0FdUVpaVTNUWStbSBhSXSooUlVEVS9MHFU5UDVONFNOP1YpQEJNTkYSAwADAANGRQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771099034,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:15'),
(18097, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771099034687,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:14.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:15'),
(18098, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:57:17'),
(18099, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5FF8D54334174D1594C5B3025320245\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"zeus10\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771099037,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:57:17'),
(18100, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:57:17'),
(18101, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5FF8D54334174D1594C5B3025320245\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"zeus10\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771099037,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:17'),
(18103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FF8D54334174D1594C5B3025320245\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771099037763,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:18'),
(18104, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:57:18'),
(18105, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:17.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:57:18'),
(18106, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099040907,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:20.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:57:20'),
(18107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FF8D54334174D1594C5B3025320245\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099040905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:20.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:57:20'),
(18108, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099040907,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:20.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:21'),
(18109, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FF8D54334174D1594C5B3025320245\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099040905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:20.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:21'),
(18110, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771099041589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:21.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:57:21'),
(18111, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6CB9854D61FD5A9C579E0C2E22C96\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771099041589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:57:21.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:57:21'),
(18112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5476EA7FC74B56F4AF8B4E63A976AFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"*Usuário:* 3emc7cwe\\n*Senha:* q3bnqyqr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771099080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:00.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:58:01'),
(18113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5476EA7FC74B56F4AF8B4E63A976AFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"*Usuário:* 3emc7cwe\\n*Senha:* q3bnqyqr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771099080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:00.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:58:01'),
(18114, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:00.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:58:01'),
(18115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:01.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 16:58:01'),
(18116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:00.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:58:01'),
(18117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5476EA7FC74B56F4AF8B4E63A976AFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099081179,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:01.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 16:58:01'),
(18118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5476EA7FC74B56F4AF8B4E63A976AFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099081179,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:01.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 16:58:01'),
(18119, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T16:58:01.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 16:58:01'),
(18120, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:24.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:00:24'),
(18121, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:24.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:00:24'),
(18122, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:00:25'),
(18123, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:00:25'),
(18124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4D2EC0885C010675C2AFE0369785FA\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V6XLIrPghRqnE7SBwFcbJUjOUDLnCPVMG\\/tKrxSruHA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:00:25'),
(18125, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:00:26'),
(18126, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:00:26'),
(18127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:00:26'),
(18128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:00:26'),
(18129, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4D2EC0885C010675C2AFE0369785FA\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V6XLIrPghRqnE7SBwFcbJUjOUDLnCPVMG\\/tKrxSruHA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:00:25.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:00:26'),
(18130, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:23.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:23'),
(18131, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:23.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:23'),
(18132, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:26'),
(18133, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:26'),
(18134, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC22CF82D5D5A1452432CAD90FCED36B\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Só está saindo o son\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OxPg6UDMT5cBoFCfhno9N1qWET4tLqpqcSJ9zkRprzo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099526,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:05:26'),
(18135, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18136, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:26'),
(18137, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:27'),
(18138, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:27'),
(18139, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC22CF82D5D5A1452432CAD90FCED36B\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Só está saindo o son\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OxPg6UDMT5cBoFCfhno9N1qWET4tLqpqcSJ9zkRprzo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099526,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:05:27'),
(18140, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:27'),
(18141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:26.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:27'),
(18142, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACA9F19A722ED1D3BAB161BB8054B346\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"A imagem não está aparecendo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d4\\/a9NeaFTuQ0OkmENGLrcNEsF1IeG1JnPEtpFoXWYI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:05:30'),
(18143, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:30'),
(18144, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:30'),
(18145, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACA9F19A722ED1D3BAB161BB8054B346\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"A imagem não está aparecendo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d4\\/a9NeaFTuQ0OkmENGLrcNEsF1IeG1JnPEtpFoXWYI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099529,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:05:30'),
(18146, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:30'),
(18147, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:31'),
(18148, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:31'),
(18149, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:30.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:31'),
(18150, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:37.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:37'),
(18151, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:37.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:38'),
(18152, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59BE299B05C27F1120D8B2A531FC945\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099538087,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:38.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:05:38'),
(18153, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A59BE299B05C27F1120D8B2A531FC945\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636483910_1436909251352716_3457153140229291650_n.enc?ccb=11-4&oh=01_Q5Aa3wG3D0tU94IRaWVM0FJBh4bksffOQfIhhOrYYwjIu56L_Q&oe=69B8495D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pXE3KPfyIrYmxy8Da3VN4zRax\\/27Foybrq8bm2GDIF8=\",\"fileLength\":\"6327\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"XovFRyJLBbyrE2s2BAPOUVk+vEbXhY8qfnLAasN5y4U=\",\"fileEncSha256\":\"8\\/2afGVBzfhj\\/jX9BjViU66J5K2UMc5wOgp6S\\/ClxRM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636483910_1436909251352716_3457153140229291650_n.enc?ccb=11-4&oh=01_Q5Aa3wG3D0tU94IRaWVM0FJBh4bksffOQfIhhOrYYwjIu56L_Q&oe=69B8495D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771099536\",\"waveform\":\"AAAAFS01NkNQWVtXTywIJ0RLSUQ\\/EQAAAAAAAChBQDw9NB8qP0U+BjEzOU5MRUhIRElZWVNJTFNXUSJDTE5RUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771099537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:37.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:05:38'),
(18154, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:38.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:38'),
(18155, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59BE299B05C27F1120D8B2A531FC945\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771099538087,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:38.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:05:38'),
(18156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A59BE299B05C27F1120D8B2A531FC945\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636483910_1436909251352716_3457153140229291650_n.enc?ccb=11-4&oh=01_Q5Aa3wG3D0tU94IRaWVM0FJBh4bksffOQfIhhOrYYwjIu56L_Q&oe=69B8495D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pXE3KPfyIrYmxy8Da3VN4zRax\\/27Foybrq8bm2GDIF8=\",\"fileLength\":\"6327\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"XovFRyJLBbyrE2s2BAPOUVk+vEbXhY8qfnLAasN5y4U=\",\"fileEncSha256\":\"8\\/2afGVBzfhj\\/jX9BjViU66J5K2UMc5wOgp6S\\/ClxRM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636483910_1436909251352716_3457153140229291650_n.enc?ccb=11-4&oh=01_Q5Aa3wG3D0tU94IRaWVM0FJBh4bksffOQfIhhOrYYwjIu56L_Q&oe=69B8495D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771099536\",\"waveform\":\"AAAAFS01NkNQWVtXTywIJ0RLSUQ\\/EQAAAAAAAChBQDw9NB8qP0U+BjEzOU5MRUhIRElZWVNJTFNXUSJDTE5RUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771099537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:37.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:05:39'),
(18157, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59BE299B05C27F1120D8B2A531FC945\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771099539376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:39.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:05:39'),
(18158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:38.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:39'),
(18159, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59BE299B05C27F1120D8B2A531FC945\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771099539376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:39.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:05:39'),
(18160, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:56.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:56'),
(18161, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5B6368FBCA61AE68C65395F37D866D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tira da tomada 30 segundos\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771099556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:56.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:05:56'),
(18163, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:56.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:05:56'),
(18164, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:56.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:57'),
(18165, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5B6368FBCA61AE68C65395F37D866D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tira da tomada 30 segundos\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771099556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:56.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:05:57'),
(18167, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:05:56.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:05:57'),
(18168, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:00.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:06:00'),
(18169, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:00.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:06:00'),
(18170, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC6BB62841229EE29B5C190DF70182E1\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/4r9n\\/Wi7bBlkTvVrj7wor9XBciGLIklQCnu7l+lydY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:01.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:06:01'),
(18171, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:01.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:06:01'),
(18172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:01.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:06:02'),
(18173, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:01.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:06:02'),
(18174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC6BB62841229EE29B5C190DF70182E1\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/4r9n\\/Wi7bBlkTvVrj7wor9XBciGLIklQCnu7l+lydY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771099561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:01.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:06:02'),
(18175, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:02.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:06:02'),
(18176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:01.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:06:02'),
(18177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:06:02.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:06:02'),
(18178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:15:31.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:15:31'),
(18179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A50FA27895F29E0E5B9211F2B0835E15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":109369},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":109369},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771100131,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:15:31.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:15:31'),
(18180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:15:31.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:15:31'),
(18181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:15:31.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:15:32'),
(18182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:15:31.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:15:32'),
(18183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A50FA27895F29E0E5B9211F2B0835E15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":109369},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":109369},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771100131,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:15:31.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:15:32'),
(18184, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:21:51.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:21:51'),
(18185, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:21:51.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:21:51'),
(18186, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D69188FA7EB3FDE076\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771100543,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:23.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:22:24'),
(18187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:23.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:22:24'),
(18188, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:23.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:22:24'),
(18189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:23.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:22:24'),
(18190, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:23.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:22:24'),
(18191, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06CE151BC5DB593ACB1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771100544,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:24.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:22:24'),
(18192, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06CE151BC5DB593ACB1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771100544,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:24.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:22:24'),
(18193, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D69188FA7EB3FDE076\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771100543,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:23.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:22:25'),
(18194, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C79F9A5EFF9D7F29E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771100545,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:25.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:22:25'),
(18195, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00C79F9A5EFF9D7F29E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771100545,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:25.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:22:25'),
(18196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1619219480628@lid\",\"id\":\"3BE7B17BC0D8D34FBA07555404F546CF\",\"fromMe\":false,\"datetime\":1771100549581,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:29.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:22:29'),
(18197, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1619219480628@lid\",\"id\":\"3BE7B17BC0D8D34FBA07555404F546CF\",\"fromMe\":false,\"datetime\":1771100549581,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:22:29.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:22:29'),
(18198, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:23.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:32:23'),
(18199, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:23.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:32:23'),
(18200, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:32:26'),
(18201, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:32:26'),
(18202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:32:26'),
(18203, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:32:26'),
(18204, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":false,\"id\":\"ACB1518C9891FF3AE4769313A6B1DACF\"},\"pushName\":\"Silvia\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qto ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\"},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Gebj3lzPrOpUnLHvMK+kFxAcvNWPOIcQ0dJw6UhWAR4=\"}},\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771101146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:32:26'),
(18205, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:32:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:32:26'),
(18207, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:32:26'),
(18208, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:32:26'),
(18209, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5ACAD285306770884532AB13FFDA292\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771101147434,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:27.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:32:27'),
(18210, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":false,\"id\":\"ACB1518C9891FF3AE4769313A6B1DACF\"},\"pushName\":\"Silvia\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qto ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\"},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Gebj3lzPrOpUnLHvMK+kFxAcvNWPOIcQ0dJw6UhWAR4=\"}},\"contextInfo\":{\"stanzaId\":\"A5BDA011026E719288102E9C3D26A7B6\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Mounjaro chama pv\",\"fileSha256\":\"9VdZiY0o2iSZgAQDGAmqpEw9ymtP6wmOmiXOLrLv4Kk=\",\"fileLength\":\"92887\",\"height\":1024,\"width\":881,\"mediaKey\":\"oXW7py9GIgfnF7AZSbjvLQr2J1W2Cm7sNsnOym2GBP4=\",\"fileEncSha256\":\"DjLu0zPEG\\/7dYR0Dvwo1czuDhh8O2HU0Dk3ZKvGjHSk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636752175_927375496516039_3597686545572318861_n.enc?ccb=11-4&oh=01_Q5Aa3wEYb7BT3_RUBFt3dMGab2khxaBCQpMf2avt1tzKcCoMRQ&oe=69B7525D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771032296\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEAANwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAABAwAEBQIGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAEWNc5UmMFtNd2pCZVhu88DO3w19YaOuDMmnBdjD3is+AHJWGLhg7eI+X0gWyzhFknMVE\\/\\/EACIQAAICAQUBAAMBAAAAAAAAAAECAAMRBBASITFBEyJRYf\\/aAAgBAQABPwAAnwRNPY3yJo8dsYUqAwFllfHseTMZsRdPWkNiL0ohZm9hHU68PktrKH\\/JdnMsuz9xAINjOiOLeTV1FDLKxYJUzZ4P6ISFjBy4K7GEI68LB1NNb+Re\\/Y6ZBx0fhgUuoSw\\/sPsUcYxmdtLdwYGK3JRGXlFb4RGhOyniZo7sjidyCZwOe5XUAMmGUWFSD\\/JVYHUHZjFTHZltvLpfJ\\/\\/EABgRAAIDAAAAAAAAAAAAAAAAAAERICIw\\/9oACAECAQE\\/AIOyOn\\/\\/xAAbEQEAAAcAAAAAAAAAAAAAAAABAhESICEwMf\\/aAAgBAwEBPwCykYJjk6bP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"U+yyEqLWcsL4zr2IPwPtJcYzPmwmMTKpaS57OTTtaHEYqGw\\/9o5vEQ==\",\"scanLengths\":[7629,19632,18153,47473],\"midQualityFileSha256\":\"a5CbGJPacZMxq4+I5wey1chBp9Q88fiufakkn1WB9cU=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771101146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:26.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:32:27'),
(18211, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5ACAD285306770884532AB13FFDA292\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771101147434,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:27.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:32:27'),
(18212, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:28.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:32:28'),
(18213, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":true,\"id\":\"A5ACAD285306770884532AB13FFDA292\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101148,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:28.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:32:28'),
(18214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:28.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:32:28'),
(18215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":true,\"id\":\"A5ACAD285306770884532AB13FFDA292\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101148,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:28.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:32:29'),
(18216, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:29.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:32:29'),
(18217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:32:29.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:32:29'),
(18218, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:06.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:35:07'),
(18219, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":true,\"id\":\"A5D53CCBFEFCE6F00FF365245867A23F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:06.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:35:07'),
(18220, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:06.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:35:07'),
(18221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:06.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:35:07'),
(18222, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5D53CCBFEFCE6F00FF365245867A23F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771101307769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:07.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:35:07'),
(18223, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":true,\"id\":\"A5D53CCBFEFCE6F00FF365245867A23F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:06.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:35:07'),
(18224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5D53CCBFEFCE6F00FF365245867A23F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771101307769,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:07.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:35:08'),
(18225, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:06.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:35:08'),
(18226, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":true,\"id\":\"A50AEE5F6727249B0F39680E1757F4B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101308,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:35:08'),
(18227, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:35:08'),
(18228, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:35:08'),
(18229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:35:09'),
(18230, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:35:09'),
(18231, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":true,\"id\":\"A50AEE5F6727249B0F39680E1757F4B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1 ampola R$550\\n2 ampolas $850\\n3 ampolas $1200\\n4 ampolas $1500\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101308,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:35:09'),
(18233, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A50AEE5F6727249B0F39680E1757F4B9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771101308742,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:35:08.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:35:10'),
(18234, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5759F066B4F76333F4FC4F61DCE2F52\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/buscar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110791},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110791},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771101553,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:13.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:39:13'),
(18235, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:13.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:39:13'),
(18236, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:13.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:39:13'),
(18237, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:13.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:39:13'),
(18238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:13.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:39:13'),
(18239, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5759F066B4F76333F4FC4F61DCE2F52\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/buscar\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110791},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110791},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771101553,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:13.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:39:14'),
(18240, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A512F47446E6CA6906C222637C549FE2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110797},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110797},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771101559,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:19.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:39:19'),
(18241, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A512F47446E6CA6906C222637C549FE2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110797},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":110797},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771101559,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:19.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:39:19'),
(18242, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:19.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:39:19'),
(18243, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:19.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:39:19'),
(18244, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:19.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:39:20'),
(18245, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:39:19.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:39:20'),
(18246, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:28.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:28'),
(18247, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:28.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:29'),
(18248, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:31.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:31'),
(18249, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:31.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:31'),
(18250, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:32.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:32'),
(18251, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:32.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:32'),
(18252, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:39.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:40'),
(18253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC485B5132BC67462A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101639,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:39.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:40:40'),
(18254, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:39.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:40'),
(18255, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:40.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:40'),
(18256, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:40.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:40'),
(18257, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BBC09A0C0ABB580CEE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pago TELEFONE\\n\\nExemplo: \\/pago 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101640,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:40.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:40'),
(18258, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BBC09A0C0ABB580CEE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pago TELEFONE\\n\\nExemplo: \\/pago 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101640,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:40.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:41'),
(18259, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC485B5132BC67462A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101639,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:39.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:40:41'),
(18260, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03972FFD4FDD07E2C64\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pago TELEFONE\\n\\nExemplo: \\/pago 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101642,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:42.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:42'),
(18261, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03972FFD4FDD07E2C64\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pago TELEFONE\\n\\nExemplo: \\/pago 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101642,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:42.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:42'),
(18262, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:45.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:45'),
(18263, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:45.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:46'),
(18264, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:46.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:46'),
(18265, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:46.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:46'),
(18266, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:46.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:46'),
(18267, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:46.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:46'),
(18268, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:48.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:48'),
(18269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:48.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:48'),
(18270, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F57EE043A0D9489594\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101648,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:48.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:40:49'),
(18271, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:49.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:49'),
(18272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:49.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:49'),
(18273, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB051C5ED8C08F324ED1C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101649,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:49.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:49');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18274, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB051C5ED8C08F324ED1C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101649,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:49.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:49'),
(18275, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F57EE043A0D9489594\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101648,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:48.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:40:50'),
(18276, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC1435DCD4093FEE24\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101651,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:51.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:40:51'),
(18277, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC1435DCD4093FEE24\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101651,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:40:51.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:40:51'),
(18278, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:19.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:19'),
(18279, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:19.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:19'),
(18280, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:25.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:25'),
(18281, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:25.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:25'),
(18282, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:27.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:27'),
(18283, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:27.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:27'),
(18284, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:29.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:29'),
(18285, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:29.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:29'),
(18286, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:31.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:31'),
(18287, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:31.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:31'),
(18288, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:34'),
(18289, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB048BFE51AF1AAB29E2E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101694,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:41:34'),
(18290, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:34'),
(18291, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:34'),
(18292, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:34'),
(18293, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB048BFE51AF1AAB29E2E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101694,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:41:35'),
(18294, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB078D4C49ACBCE90852B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101695,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:35.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:35'),
(18295, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C16C4565A80AE1C5AB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101694,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:35'),
(18296, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB078D4C49ACBCE90852B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101695,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:35.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:35'),
(18297, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C16C4565A80AE1C5AB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101694,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:34.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:35'),
(18298, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:36.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:36'),
(18299, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:36.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:37'),
(18300, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:39.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:39'),
(18301, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:39.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:39'),
(18302, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:58.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:41:59'),
(18303, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:41:58.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:41:59'),
(18304, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:03.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:04'),
(18305, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:03.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:04'),
(18306, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:04.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:04'),
(18307, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:04.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:04'),
(18308, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:04.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:04'),
(18309, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:04.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:05'),
(18310, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:05.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:05'),
(18311, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:05.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:05'),
(18312, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A0322CF0FC4F404278\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"5591203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101731,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:11.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:42:11'),
(18313, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:11.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:11'),
(18314, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:11.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:11'),
(18315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:11.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:11'),
(18316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:11.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:12'),
(18317, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB022CA592B98E097038F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *5591203777*\\n\\nDigite o *telefone* do cliente (apenas números):\\n📱 *Importante:* Use 11 dígitos com 9\\nExemplo: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101732,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:12.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:12'),
(18318, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB022CA592B98E097038F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *5591203777*\\n\\nDigite o *telefone* do cliente (apenas números):\\n📱 *Importante:* Use 11 dígitos com 9\\nExemplo: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101732,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:12.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:12'),
(18319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A0322CF0FC4F404278\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"5591203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101731,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:11.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:42:12'),
(18320, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:16.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:16'),
(18321, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:16.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:17'),
(18322, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4FAA3621DC150C7B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"554791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101746,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:26.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:42:26'),
(18323, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:26.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:27'),
(18324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:26.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:27'),
(18325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:26.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:27'),
(18326, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ED1B72B7C35BD727F1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 554791203777 (12 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101747,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:27.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:27'),
(18327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:26.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:27'),
(18328, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4FAA3621DC150C7B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"554791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101746,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:26.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:42:28'),
(18329, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ED1B72B7C35BD727F1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 554791203777 (12 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101747,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:27.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:28'),
(18330, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:31.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:31'),
(18331, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:31.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:31'),
(18332, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:36'),
(18333, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01532AD1B977B6A7DA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101756,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:42:36'),
(18334, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:36'),
(18335, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:36'),
(18336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:36'),
(18337, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E5E70528B84493538\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 4791203777 (10 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101756,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:37'),
(18338, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E5E70528B84493538\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 4791203777 (10 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101756,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:37'),
(18339, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01532AD1B977B6A7DA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101756,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:36.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:42:37'),
(18340, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:49.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:49'),
(18341, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:49.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:49'),
(18342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:51.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:51'),
(18343, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:51.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:51'),
(18344, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB004E31622CFEC231FC4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101771,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:51.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:42:51'),
(18345, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:51.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:51'),
(18346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:51.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:51'),
(18347, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BCCA413E7FB0EB940E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101771,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:52.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18348, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BCCA413E7FB0EB940E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101771,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:52.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:52'),
(18349, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB004E31622CFEC231FC4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101771,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:51.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:42:52'),
(18350, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB045760A84BA5EF497D3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101772,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:52.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:52'),
(18351, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB045760A84BA5EF497D3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101772,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:52.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:53'),
(18352, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:54.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:54'),
(18353, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:54.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:54'),
(18354, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:57'),
(18355, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04FC05BC823C23FE3FE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101777,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:42:57'),
(18356, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:57'),
(18357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:57'),
(18358, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:57'),
(18359, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04FC05BC823C23FE3FE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101777,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:42:58'),
(18360, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05F67AA0C6201CECA6A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101778,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:58.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:58'),
(18361, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F713249FDD1CED14BA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101777,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:42:58'),
(18362, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05F67AA0C6201CECA6A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101778,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:58.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:58'),
(18363, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F713249FDD1CED14BA\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101777,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:42:57.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:42:59'),
(18364, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:00.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:00'),
(18365, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:00.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:00'),
(18366, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:01.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:01'),
(18367, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:01.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:01'),
(18368, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:01.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:01'),
(18369, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:01.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:01'),
(18370, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09056F0B4F6114CEBC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"lali\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101783,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:43:03'),
(18371, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:03'),
(18372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:03'),
(18373, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:03'),
(18374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:03'),
(18375, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09056F0B4F6114CEBC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"lali\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101783,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:43:04'),
(18376, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05C7FFA5D38AB8B0DD1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *lali*\\n\\nDigite o *telefone* do cliente (apenas números):\\n📱 *Importante:* Use 11 dígitos com 9\\nExemplo: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101783,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:04'),
(18377, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05C7FFA5D38AB8B0DD1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *lali*\\n\\nDigite o *telefone* do cliente (apenas números):\\n📱 *Importante:* Use 11 dígitos com 9\\nExemplo: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101783,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:03.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:05'),
(18378, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:09.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:09'),
(18379, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:09.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:10'),
(18380, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:16.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:16'),
(18381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0797B73C974B9A50D13\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101796,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:16.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:43:16'),
(18382, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:16.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:16'),
(18383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:16.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:16'),
(18384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:16.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:17'),
(18385, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0482D6FD26D96C0A1C4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 4791203777 (10 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101797,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:17.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:43:17'),
(18386, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0482D6FD26D96C0A1C4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 4791203777 (10 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771101797,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:17.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:43:17'),
(18387, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0797B73C974B9A50D13\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771101796,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:43:16.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:43:17'),
(18388, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:45:56.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:45:56'),
(18389, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:45:56.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:45:56'),
(18390, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:45:58.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:45:58'),
(18391, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:45:58.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:45:58'),
(18392, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:03.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:04'),
(18393, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:03.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:04'),
(18394, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:14.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:14'),
(18395, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:14.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:14'),
(18396, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:22.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:22'),
(18397, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:22.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:22'),
(18398, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:23.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:23'),
(18399, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:23.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:24'),
(18400, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC92421BA5BCD5295D26EF676C7BC2FA\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"O aplicativo fica  pedindo  para aguardar para liberar mais memórias\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"g7u56l15K1OWkieNp7hRGG6l7Qkq9j1OMGsCZ9iwE5U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102109,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:48:29'),
(18401, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:29'),
(18402, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:29'),
(18403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:29'),
(18404, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:29'),
(18405, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:29'),
(18406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC92421BA5BCD5295D26EF676C7BC2FA\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"O aplicativo fica  pedindo  para aguardar para liberar mais memórias\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"g7u56l15K1OWkieNp7hRGG6l7Qkq9j1OMGsCZ9iwE5U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102109,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:48:30'),
(18407, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:30'),
(18408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:30'),
(18409, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:30.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:30'),
(18410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:29.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:30'),
(18411, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:30.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:31'),
(18412, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:32'),
(18413, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC17A3630C809080C26698DF7B992E65\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"E normal?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FI9\\/4QQiE5y71BY8y6Ie+yYcBF5diT+gNn3j+sK6CWM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102112,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:48:32'),
(18414, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:32'),
(18415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:32'),
(18416, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC17A3630C809080C26698DF7B992E65\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"E normal?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FI9\\/4QQiE5y71BY8y6Ie+yYcBF5diT+gNn3j+sK6CWM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102112,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:48:32'),
(18417, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:33'),
(18418, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:33'),
(18419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:32.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:33'),
(18420, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:35.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:35'),
(18421, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:35.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:35'),
(18422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:42'),
(18423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE7DA251B65E05652C5C43BFE555500\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Aí reinicia novamente\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5ZxylfyVB5ME\\/Ulm3KXipuCCT9G9\\/a7sQSajztd1GEQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102122,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:48:42'),
(18424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:42'),
(18425, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18426, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:42'),
(18427, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:43'),
(18428, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE7DA251B65E05652C5C43BFE555500\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Aí reinicia novamente\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5ZxylfyVB5ME\\/Ulm3KXipuCCT9G9\\/a7sQSajztd1GEQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102122,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:48:43'),
(18429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:42.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:43'),
(18430, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:59.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:48:59'),
(18431, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:48:59.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:48:59'),
(18432, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:06.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:06'),
(18433, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:06.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:06'),
(18434, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:09.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:09'),
(18435, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:09.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:09'),
(18436, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:09.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:09'),
(18437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:09.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:10'),
(18438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:10.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:10'),
(18439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:10.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:10'),
(18440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC97BD39B0ABF0B624AECDBC011C3067\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Aconteceu 2 vezes\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AF1YL20f4t32k6c9PMjjCWBtNCgNofs4EjfnRJfhCsM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:09.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:10'),
(18441, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC97BD39B0ABF0B624AECDBC011C3067\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Aconteceu 2 vezes\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AF1YL20f4t32k6c9PMjjCWBtNCgNofs4EjfnRJfhCsM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102149,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:09.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:10'),
(18442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:10.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:10'),
(18443, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:10.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:10'),
(18444, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B15B757C668149D9BCE0EE672797F3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102151910,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:11.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:11'),
(18445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B15B757C668149D9BCE0EE672797F3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102151910,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:11.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:12'),
(18446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B15B757C668149D9BCE0EE672797F3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771102152326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:12.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:12'),
(18447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B15B757C668149D9BCE0EE672797F3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771102152326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:12.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:13'),
(18448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:13.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:13'),
(18449, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5B15B757C668149D9BCE0EE672797F3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637262667_2452042621867927_8472254535272748060_n.enc?ccb=11-4&oh=01_Q5Aa3wFaGpIzJc4V_b8Dewu66efQ90vxbOUqRAWLUAIGe4LFpQ&oe=69B86CB8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pnMYyfj1MgdO2kpitEWE31dBLnHrsVifWzI6Xj\\/00uQ=\",\"fileLength\":\"45002\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"BXvpXOCNVnfZyvlzn9GpZ4+boo9O7Qa8TEqjxgcTrnA=\",\"fileEncSha256\":\"ca19\\/fsab5iS29T79QiOotn6dbvCnx9baFk9bvZGx1Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637262667_2452042621867927_8472254535272748060_n.enc?ccb=11-4&oh=01_Q5Aa3wFaGpIzJc4V_b8Dewu66efQ90vxbOUqRAWLUAIGe4LFpQ&oe=69B86CB8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102133\",\"waveform\":\"ACoAUk9XRUQqRD8PAA4ZWlRRPUlTUUxSKk4+HlRWEhQKOSldUU4mURs+T0A4KkAwPksQFxNJPUZRAgo8SyMVPw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771102153,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:13.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:13'),
(18450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:13.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:13'),
(18451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5B15B757C668149D9BCE0EE672797F3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637262667_2452042621867927_8472254535272748060_n.enc?ccb=11-4&oh=01_Q5Aa3wFaGpIzJc4V_b8Dewu66efQ90vxbOUqRAWLUAIGe4LFpQ&oe=69B86CB8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pnMYyfj1MgdO2kpitEWE31dBLnHrsVifWzI6Xj\\/00uQ=\",\"fileLength\":\"45002\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"BXvpXOCNVnfZyvlzn9GpZ4+boo9O7Qa8TEqjxgcTrnA=\",\"fileEncSha256\":\"ca19\\/fsab5iS29T79QiOotn6dbvCnx9baFk9bvZGx1Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637262667_2452042621867927_8472254535272748060_n.enc?ccb=11-4&oh=01_Q5Aa3wFaGpIzJc4V_b8Dewu66efQ90vxbOUqRAWLUAIGe4LFpQ&oe=69B86CB8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102133\",\"waveform\":\"ACoAUk9XRUQqRD8PAA4ZWlRRPUlTUUxSKk4+HlRWEhQKOSldUU4mURs+T0A4KkAwPksQFxNJPUZRAgo8SyMVPw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771102153,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:13.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:13'),
(18452, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:13.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:13'),
(18453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:13.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:14'),
(18454, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:20.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:20'),
(18455, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:20.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:20'),
(18456, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:25.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:25'),
(18457, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:25.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:25'),
(18458, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:25.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:25'),
(18459, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:25.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:25'),
(18460, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:31.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:31'),
(18461, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:31.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:32'),
(18462, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:32.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:32'),
(18463, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC2D9BEF909DA044739EE7B300F35996\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"s+vDkSVhPXjSfCuhEiP6gkKo4zc7NuWnTVcouSAvpuI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102172,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:32.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:32'),
(18464, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:32.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:33'),
(18465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:32.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:33'),
(18466, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC2D9BEF909DA044739EE7B300F35996\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"s+vDkSVhPXjSfCuhEiP6gkKo4zc7NuWnTVcouSAvpuI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102172,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:32.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:33'),
(18467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:33.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:33'),
(18468, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:32.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:33'),
(18469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:33.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:34'),
(18470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:35.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:35'),
(18471, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:35.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:35'),
(18472, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:43'),
(18473, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AD924A08B2496750D18\"},\"pushName\":\"Thay\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa bonite! Nao estou mais conseguindo assistir por esse que me la fou\",\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W3CMMETupYfOuSp+dmhggkWIsvImJyFfe+3n07PfW\\/g=\"}},\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771102183,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:43'),
(18474, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:43'),
(18475, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AD924A08B2496750D18\"},\"pushName\":\"Thay\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa bonite! Nao estou mais conseguindo assistir por esse que me la fou\",\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W3CMMETupYfOuSp+dmhggkWIsvImJyFfe+3n07PfW\\/g=\"}},\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771102183,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:43'),
(18476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:43'),
(18477, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A503DF6F90B0C978CF583526B457B092\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:44'),
(18478, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A503DF6F90B0C978CF583526B457B092\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:44'),
(18479, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:44'),
(18480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:44.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:44'),
(18481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:44'),
(18482, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A503DF6F90B0C978CF583526B457B092\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102184283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:44.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:49:45'),
(18483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"pushName\":\"Thay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:44.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:45'),
(18484, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:44.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:45'),
(18485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A503DF6F90B0C978CF583526B457B092\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102184283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:44.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:49:45'),
(18486, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:45'),
(18487, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:44.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:46'),
(18488, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:46'),
(18489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:43.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:47'),
(18490, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:51.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:49:51'),
(18491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:49:51.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:49:51'),
(18492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:03.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:03'),
(18493, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:03.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:03'),
(18494, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:06.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:06'),
(18495, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:06.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:06'),
(18496, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:16.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:16'),
(18497, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:16.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:17'),
(18498, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:28.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:28'),
(18499, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:28.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:28'),
(18500, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:29'),
(18501, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A240E92F71234AFE282\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Pode me ajudar, por favor!\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ErsxbqeuCorQfIMXh1EXLr3F+TMvvTQ75iStERdygbo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102228,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:50:29'),
(18502, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:29'),
(18503, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:29'),
(18504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:30'),
(18506, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:30'),
(18507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:50:30'),
(18508, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A240E92F71234AFE282\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Pode me ajudar, por favor!\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ErsxbqeuCorQfIMXh1EXLr3F+TMvvTQ75iStERdygbo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102228,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:50:30'),
(18509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:50:29.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:50:30'),
(18510, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:37.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:37'),
(18511, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:37.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:37'),
(18512, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:38.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:38'),
(18513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:38.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:38'),
(18514, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:39.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:39'),
(18515, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:38.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:39'),
(18516, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"AC7B08DC7923266D8F504D378DF7565E\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oie\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5D1747A08B2A10841419C5C4E83E54A\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"iCw+hY9N3RCVspWTed3qs6OEBEVJhdy8MdUU9iS2hKs=\",\"fileLength\":\"3338498\",\"seconds\":11,\"mediaKey\":\"eW3yJLi7EZt8bLzu8\\/Q2l4E6eeKd45yO5ZvX72p6q7A=\",\"caption\":\"Os trabalhos nao param...🫣🚀\",\"height\":850,\"width\":478,\"fileEncSha256\":\"S3r+q\\/mqqB66HRbn4LpsytE9AEQ3z0Sn1Dm7MB3iNOs=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771094656\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAWgMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQEBAQEAAAAAAAAAAAAAAAABAAID\\/9oADAMBAAIQAxAAAABeSNHoST1MDndeVWwZ\\/KwlhCBMh1JKUrqeqWYpXOXMIL5peqr2wVBrmdi8zjKbud9RiHn9j7xdmA9kZO5Cyox\\/RjUsBvTVzloE0peNyRLyVUak7ZZcq3PRAUtsYFXb7aVhbMuhc2WtI6uG1IG3m+i\\/VhYuSt15E1JErBxSeV6KnnaqwPl+BpqGo27FEDNYDctBNc801cKRpYgY6cekperkID0GaIYzz0L4wKRLGl26x8z3j29tfxBCO0YzJyKUFohSBjlrK2NIwlM5z6s2KXjbdwHc7hixNeZxLykj\\/8QAORAAAgEDAwIFAgIIBwADAAAAAQIDAAQRBRIhBjETFCJBUWGRUnEWIzJCU4GSoRUlM1RjctJzk8L\\/2gAIAQEAAT8AqztmvLy3tVbaZXC5wWx9cCri2K3EUEk7lksxNKpQhosRmYxgN3IWpenb9IZZwyeEiKxZwyZzCJSeR25xU\\/T09uZBLcIzRyeG6xRyOQxCbfYZ\\/wBQE0elb1pnjiuLZsO45YhsI4TkDNJ0tqTh8SW+5GAZNxDYZygbGOxxV3o72OfNTKP9EjYC3pl3+zbcEeHSdN6hIRsUYwvLgp3iEhP5e1P0rqgYgmAHB2DxB62\\/CtXGj6jDnMG4A4yjB\\/fHtX6JdQ\\/7A\\/8A2x\\/+qJqGF7q4igjK75HCLuOBk1H05qT3SxwMFlQI5L5Qo2WAYEZ4zHw1XmnrZxI7v6pBE0ahD6keMOWz8AnbQ0G7C3bQEny\\/mEnJVlA8JE3AH3DbyB8ih0xeh0R3hDvv2AbmzslWI9hwMtVt09esYZrG4ALRrIrEmFwHYrQ0HU2aJN6EXTqRiQkOxVnBNXPT93bI0s6xqFDZwckFULYqTSbu7YzqfMeLnwnY5eXZIsH73Ixkd\\/an6T1ES3CPDbqkO8yStIgVQvufcA0LLrC1At4ri5EcXoQJeKqBV4AUFxgU2Kjia4nhgTG+WRUXPAyxwKXpO+mk2RBAQo3mQFBne6cd8jKVeaYbKJmlk9f6jYgXIdZY95bcOMA5Wm0G7fzLoxkFqJEldlYKPLxx+kf1YX6Ck6XvVkWJpoQ7l9ije2fDkWIngcAFqTpy8vdksUwkMsSykzZR8Su3cH7moumr1xAVSFhNjaQcgAqWyav9I1O3S5u7mckrGdzeIWdwSBt\\/LJpum72eI3EESzQF3Cyfs5C8Zw3safo+9NyItlt3ZfFYgJlWK02h36MystsrKcFTcwggj2ILUzVFE9xPDAmN0sioue2WOBmv0TvmYhTEgUojPL6ELvK0IVDznlav9DGnW87zXAEqCDbGEPqM273+BsODTaHPNBc3SP4otoyZXYHbtihjcBW\\/JsL9BS9KXqSLE0sAkbcUC72zskWMnheAC9Q9NXl4EuIZQ\\/jRiUmfKP62PcHNR9OXrxRuFhKuPntlN\\/NX2l31n5me6uTuaE7mVy7SDKJhvplhT9MXcsJniRJE5YEggmPgq\\/8AMVL0nqaRGU28QQHkl1GMUOi+oGAIsgQfh0p3otXHxXp+DRbe2WJJwoySTwowB\\/IDAqIDcMClJkkZ5CXdjlmbkk\\/Umoo0xkYFSvKXkkMzl3Xa7Fjlh8E+44qaNSeVBqSKP8K14cf4FpjQK5Ge2fpV307ZwTsg6h03AcqRJIFdSGAwVBarPp6O9uzbQavZMwVWGHBLctkKATkqFo6ZapvVtYsjIkZkOHyhAUekN7uWOMYq6sYLSa0ji1K0uDKPW8TBkiO7HJXJxVpEsk0sIZpHQSlfCGQ4iRnO3POWwAtGysV5i1uydFWYsxYJzH2ULkkl6nhiWWJFv7VlkmdAwcMEVWwrOVzgNV1aRRWxnGpWTtx+qSUNJz9BUul2nmPCXXdN2bj6jLjgNtoaVAeV13SMHtm5watYkmvbWGQNskmRG24zhmxxmnUozJuV9rEbkGVbHuPoa+\\/2o7SMHkf9aB\\/P+g0jY+f6DQcEYIOP+tLJx7\\/avE+jfaixPsabPwfuKz9P70VYj9k\\/etp\\/C33oxn4f714bf8v3oI3\\/AC\\/ehH\\/8n3oJj2l+9bT8S\\/c0QfwyfeiD\\/DP3NHd\\/C\\/vWT+AVlPk1kezmsP8AxqIl9risTf7gUI7k9rlaEVx\\/HStk\\/vMtFZf4woh\\/41HP46x9aa+0eWV5J9CDBmB2JOYlAUtgDYoPZuae40AkvHpTJAybHUXjtkh1YEM4JU+kqa1BtGlgXyWlyWsgY73a5kmAX8nq1ewMszzWSzROoURxSsgUq6twx3nnbg0smjQegaQ+XjZAz3TM+TGULLxtz2YccGjqOhmJIZdAD4lkdHW5MDASNvMfoGXCdgWppNIR9OMNtKzxxILmKRgwlJBDsGLMV+mBT3nTbsAmgSoUcFtuoS0l10+lgoGkSm+XhZGupGQkJ+2wJwef3KbUOnpHeSbp0F2ZuUumhABYsBiMLQvdAQsZNELRB3ZV84wwGVRgtjccFaivuhWiRm0S7yVBO2Z2H8jvokD3\\/vVtNfJdhhZCWR7PYkcqFx4WzaWUH5Ap\\/wDEWDq+jiNWBhDvbeGqLK7jarkAIMyEV5y6kS2gDPKpZI4htEysxCssa5DDK+yd1yaleSRL0PGAkAZbgLEkezc3KuVUc57Cru11a5uL2W5tLhpmWJJS0eDwY1VUAA5OVHp5oJci3UlAY0iDiMkIzIqcSbFKs2Ad26m1W9QRQSJGDbjwsSQKzjY5fBLgsME4xUmtXsjwGMQW4hdnRYIyg9Wzggkjb6BxSdTayjl1mQMe5EKD5+mP3ql6t1mWJI8QJtdXLrEA7FSCM1D1XrsEMUKTx7Y0CDMSk4Wik3PNB9RRt0d5OjbdoKSMpC98Aj2pm1JpI5Hu5pCm3HiO0g9GcAh8ggbjSwTqIf18imJ98eGIKMcepfg8CjGSsqvdSESFmkBkYhyxyS3yTijd3O\\/e1\\/cFtwbPiuTkFT\\/+B9hST7NuJSQsRiXdztQ91Gc4ByQRUkqSyySu5aR3Lux92Y5JrxYh7UZl9koySHslbpPj+1TCzW3Ropp3mOzcuCAMhi32yo\\/PNalb6UklilpcyFHJE8mC+ztzj3xXk+miyA6lOgwC\\/okYDg8A+GM4NT2XSG9hDqUxQqCpdJNxPxwgCirS20x5ylzcypCYUIlWLJEjgZBXPZCefkCms9Eia4A1EzBTiIiMxb\\/1TN77sDftWm0\\/Ri12w16NUXeYFFu7s4ydqk+gA4ApYbHyRmbUwtztYi3EDNyDgAvkDkU8WlPNbpHqbxRm1R5ZJIS+JifUgC09nowBK9RFj8Cxf\\/3TQaLHdWwOoTzW7KfGZIijIQvtu75avK9De9\\/qX2H\\/AIqO80w2sSPpbS+Eo8dhKY8nLDuASP2hXn9DCZbQC2WOH83IPfOO1TX+keRmRenjGZciOY3Up2sBxjI9t2SK8zZLPC4svQLRopEMhbfIyMvigsDg85prrRIbeUydKyB1kaEs1zKFDDuD8OtJqehRvc\\/5IJYHbCRGQoUAK87\\/AFNl9vb2pNR0IMxfp8lc8AXj8DAq41jp5WhNjoAXKETiWZnDblIKrnOMHBDjBpNV0RA6DQwqszHJnMjY2uAo3j60urWf+CnT20mEz\\/7zI8TO\\/f8AFXOraHOwb9HkB2qCVndO30j2rS3+hKqg6ArEDububJqfX9TuARcypP24kQEcMr\\/bKCjqV15DyDMjQDJUFRlWJzuB+afVr0iACRVMTRMpVADmAYQn6rmr3WtVvYjFdXskkZYEqfkUmoXKTxTmTc8asFLd\\/UWbn55Y963VurdW761urcK3io\\/JGGRp5ZBJ6tip9FOM5HuxH8gadNK8srrcz+NtGU2DAbaQRn86mTRPX4N1cEgtt3jhhl8DheOy08egi+tUF5dNaHJnk8MKw+Ao5q5tumY5LbwdRuZY2Ul8psZTuAHs1CDpgCItqF2cE+KBGBkBhgr9TVuvT3nJVubq8NqEXYyIoctjnINW6aEfENxc3QAlcIEUepARtP0JGalGhKtvsmu2PioJvSoym31Ffg5oHpTPJ1Q4J94xngUT0551\\/Xf+TEC44QTGXIB+Rit\\/S34NU\\/qiq11GS0WURohZiCrsDuQgFcr9fVWlT3jiMWllDKbf9rewUFpS0an259dKdVV48dN6fmbDqCo5DEnBBb69jUN7qyFHi6X0wOXVlbwACDlfrxy1X6avbyQ382jxW0dvL4hKKiAbtgCr8fI+GJq20LVruaaCC1Jkh2b1LKpHiduCaOg6mt7NZvEiSRMokZ3UIu\\/GDuqPpLqF5CnkgpGe8qdwu7HepOk9ehBaa2RI1\\/bcyphQO5IBzU6LDK0azRygYw8edpyM8bgDWazRao7iaFt0MzxtkHKsVPFQyxly088q4xtKnnvUD6eDD497dH1qJNh24TjJGQeRRktnsHMl1ObreQI+6Fcrg5+9RN0ykfNzqYkOdwQoAQO1WY0NoY2vrm+E7ZLiJVIGO2M0f0bFrt8zqLXBRvZBGGxxxX+QC5jkjuL5YFzuB2+MT+6UI4rGhGRhvvhHvIU4QnbhsE\\/2qb9HtjrCb\\/xPVtdimz6ZAGaifp0RoJYtQMgUbykkYUt74ytFq3VplxcwTySW8kKP4RUmRQ3DkIcAg\\/Napc3ssUrT6hYyCaESER5z3UbR6eG9I4q4vJY5EBis2IjibKRLjkK4BwO4xg02sF4YoXsLIov7eItjP8ZZMHipNUunW3VvCKwFygManmTAYtkHcePennd44oyfRGDtAAHc5JPyazWazWaLUrqpyUDcHg59x9Khn06MzeLavKDJ6AX2kJhh3H72SPahcaUGO6xmK54Hj84\\/pqS50kMPCspSuxeHl5DZUnkDnsRVxNYtGqwW7o4RcsX7tsQHj8wx\\/nWazWa3Vms1\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACESAQITBAUf\\/aAAgBAgEBPwDG1PFrruaS9jg8gCZHthSVOdqaxT\\/\\/xAAdEQABBAIDAAAAAAAAAAAAAAABAAIRICEwQVGB\\/9oACAEDAQE\\/AJRN\\/dOKDe5pLmkOIA47UWwjaFFZp\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"asA+zrf8qOm1ZngOZU\\/K7TuZE6EaJVORKxQL8U\\/gq+0+kW1+BNfDKPojajjpBJXb57rQPP+hESKbguqj1PiTX4WxnFjcxFBnViUTDf6mrBVeS4WTf6V1cyjvGWGr+Hzf9e5Ios+G8RgubcPeQQd8ITpAXUZZmthil9kEq+Tgc+KPghrzLPOmIuhpklo29\\/Lm86FvymbUdE479eWSbZHmQQj9bgF8pSZ1j7paOsxTmQWVF6g0BGPjp5O6grysOM0mjJcsmfbN3+22E092uYWPiYUJUKMi2KNcniZD6kTrCDOQXxXsbFoo7obNfjhANN5o15QLkgXm80OFgljPN2ImwIFURGaAO8aw2X6OysMICWRp20SPT8hE2WqPcl0jqJaKpkYt27\\/szKBALR6SnVTgk\\/SC44yE6jZ8Uo6zVyh4UGRrVWpVHHbYtQAHMBmrCSZoGCVtI09SwvgPZEIR8DWJk8uZSO5i5h5tZyM0SZfoRREfH7OvbOzF+St7\\/WT3CsyED2U4GlRxeeyCaKZQKUhA3RZeCyH7qohx+gthOhI5JIjeBWPpKdFdW9Cy1nbEEIZO3bV4UIZqtVinA70tPdERvFMucQbmWTCM5n5Ya9RKsgtihnHGWC1f8aDOU6wcDhOcONMnuSN9hU9w4ImSWm38+mAEoeEs1j+0QsKuHM4q\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/636904106_2079282959540105_3062279366042903518_n.enc?ccb=11-4&oh=01_Q5Aa3wHqZcaGU5MN0yo2Xqhy12Zv2S1Kykiv-dexzFgT-4b0HA&oe=69B840D8&_nc_sid=5e03e0\",\"thumbnailSha256\":\"YLBlArifC5x8iqLrS195lywj8v3nKqTz7QKbI58Fk3Y=\",\"thumbnailEncSha256\":\"4DsEkQlY1\\/ckOJ4AUxa4tkKz4PQyT14SKjxjV6CJH0U=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+2MIGEMRu5odjpKyxJiDM3p24f13QaJtATqkaG8Zd6Q=\"}},\"contextInfo\":{\"stanzaId\":\"A5D1747A08B2A10841419C5C4E83E54A\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"iCw+hY9N3RCVspWTed3qs6OEBEVJhdy8MdUU9iS2hKs=\",\"fileLength\":\"3338498\",\"seconds\":11,\"mediaKey\":\"eW3yJLi7EZt8bLzu8\\/Q2l4E6eeKd45yO5ZvX72p6q7A=\",\"caption\":\"Os trabalhos nao param...🫣🚀\",\"height\":850,\"width\":478,\"fileEncSha256\":\"S3r+q\\/mqqB66HRbn4LpsytE9AEQ3z0Sn1Dm7MB3iNOs=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771094656\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAWgMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQEBAQEAAAAAAAAAAAAAAAABAAID\\/9oADAMBAAIQAxAAAABeSNHoST1MDndeVWwZ\\/KwlhCBMh1JKUrqeqWYpXOXMIL5peqr2wVBrmdi8zjKbud9RiHn9j7xdmA9kZO5Cyox\\/RjUsBvTVzloE0peNyRLyVUak7ZZcq3PRAUtsYFXb7aVhbMuhc2WtI6uG1IG3m+i\\/VhYuSt15E1JErBxSeV6KnnaqwPl+BpqGo27FEDNYDctBNc801cKRpYgY6cekperkID0GaIYzz0L4wKRLGl26x8z3j29tfxBCO0YzJyKUFohSBjlrK2NIwlM5z6s2KXjbdwHc7hixNeZxLykj\\/8QAORAAAgEDAwIFAgIIBwADAAAAAQIDAAQRBRIhBjETFCJBUWGRUnEWIzJCU4GSoRUlM1RjctJzk8L\\/2gAIAQEAAT8AqztmvLy3tVbaZXC5wWx9cCri2K3EUEk7lksxNKpQhosRmYxgN3IWpenb9IZZwyeEiKxZwyZzCJSeR25xU\\/T09uZBLcIzRyeG6xRyOQxCbfYZ\\/wBQE0elb1pnjiuLZsO45YhsI4TkDNJ0tqTh8SW+5GAZNxDYZygbGOxxV3o72OfNTKP9EjYC3pl3+zbcEeHSdN6hIRsUYwvLgp3iEhP5e1P0rqgYgmAHB2DxB62\\/CtXGj6jDnMG4A4yjB\\/fHtX6JdQ\\/7A\\/8A2x\\/+qJqGF7q4igjK75HCLuOBk1H05qT3SxwMFlQI5L5Qo2WAYEZ4zHw1XmnrZxI7v6pBE0ahD6keMOWz8AnbQ0G7C3bQEny\\/mEnJVlA8JE3AH3DbyB8ih0xeh0R3hDvv2AbmzslWI9hwMtVt09esYZrG4ALRrIrEmFwHYrQ0HU2aJN6EXTqRiQkOxVnBNXPT93bI0s6xqFDZwckFULYqTSbu7YzqfMeLnwnY5eXZIsH73Ixkd\\/an6T1ES3CPDbqkO8yStIgVQvufcA0LLrC1At4ri5EcXoQJeKqBV4AUFxgU2Kjia4nhgTG+WRUXPAyxwKXpO+mk2RBAQo3mQFBne6cd8jKVeaYbKJmlk9f6jYgXIdZY95bcOMA5Wm0G7fzLoxkFqJEldlYKPLxx+kf1YX6Ck6XvVkWJpoQ7l9ije2fDkWIngcAFqTpy8vdksUwkMsSykzZR8Su3cH7moumr1xAVSFhNjaQcgAqWyav9I1O3S5u7mckrGdzeIWdwSBt\\/LJpum72eI3EESzQF3Cyfs5C8Zw3safo+9NyItlt3ZfFYgJlWK02h36MystsrKcFTcwggj2ILUzVFE9xPDAmN0sioue2WOBmv0TvmYhTEgUojPL6ELvK0IVDznlav9DGnW87zXAEqCDbGEPqM273+BsODTaHPNBc3SP4otoyZXYHbtihjcBW\\/JsL9BS9KXqSLE0sAkbcUC72zskWMnheAC9Q9NXl4EuIZQ\\/jRiUmfKP62PcHNR9OXrxRuFhKuPntlN\\/NX2l31n5me6uTuaE7mVy7SDKJhvplhT9MXcsJniRJE5YEggmPgq\\/8AMVL0nqaRGU28QQHkl1GMUOi+oGAIsgQfh0p3otXHxXp+DRbe2WJJwoySTwowB\\/IDAqIDcMClJkkZ5CXdjlmbkk\\/Umoo0xkYFSvKXkkMzl3Xa7Fjlh8E+44qaNSeVBqSKP8K14cf4FpjQK5Ge2fpV307ZwTsg6h03AcqRJIFdSGAwVBarPp6O9uzbQavZMwVWGHBLctkKATkqFo6ZapvVtYsjIkZkOHyhAUekN7uWOMYq6sYLSa0ji1K0uDKPW8TBkiO7HJXJxVpEsk0sIZpHQSlfCGQ4iRnO3POWwAtGysV5i1uydFWYsxYJzH2ULkkl6nhiWWJFv7VlkmdAwcMEVWwrOVzgNV1aRRWxnGpWTtx+qSUNJz9BUul2nmPCXXdN2bj6jLjgNtoaVAeV13SMHtm5watYkmvbWGQNskmRG24zhmxxmnUozJuV9rEbkGVbHuPoa+\\/2o7SMHkf9aB\\/P+g0jY+f6DQcEYIOP+tLJx7\\/avE+jfaixPsabPwfuKz9P70VYj9k\\/etp\\/C33oxn4f714bf8v3oI3\\/AC\\/ehH\\/8n3oJj2l+9bT8S\\/c0QfwyfeiD\\/DP3NHd\\/C\\/vWT+AVlPk1kezmsP8AxqIl9risTf7gUI7k9rlaEVx\\/HStk\\/vMtFZf4woh\\/41HP46x9aa+0eWV5J9CDBmB2JOYlAUtgDYoPZuae40AkvHpTJAybHUXjtkh1YEM4JU+kqa1BtGlgXyWlyWsgY73a5kmAX8nq1ewMszzWSzROoURxSsgUq6twx3nnbg0smjQegaQ+XjZAz3TM+TGULLxtz2YccGjqOhmJIZdAD4lkdHW5MDASNvMfoGXCdgWppNIR9OMNtKzxxILmKRgwlJBDsGLMV+mBT3nTbsAmgSoUcFtuoS0l10+lgoGkSm+XhZGupGQkJ+2wJwef3KbUOnpHeSbp0F2ZuUumhABYsBiMLQvdAQsZNELRB3ZV84wwGVRgtjccFaivuhWiRm0S7yVBO2Z2H8jvokD3\\/vVtNfJdhhZCWR7PYkcqFx4WzaWUH5Ap\\/wDEWDq+jiNWBhDvbeGqLK7jarkAIMyEV5y6kS2gDPKpZI4htEysxCssa5DDK+yd1yaleSRL0PGAkAZbgLEkezc3KuVUc57Cru11a5uL2W5tLhpmWJJS0eDwY1VUAA5OVHp5oJci3UlAY0iDiMkIzIqcSbFKs2Ad26m1W9QRQSJGDbjwsSQKzjY5fBLgsME4xUmtXsjwGMQW4hdnRYIyg9Wzggkjb6BxSdTayjl1mQMe5EKD5+mP3ql6t1mWJI8QJtdXLrEA7FSCM1D1XrsEMUKTx7Y0CDMSk4Wik3PNB9RRt0d5OjbdoKSMpC98Aj2pm1JpI5Hu5pCm3HiO0g9GcAh8ggbjSwTqIf18imJ98eGIKMcepfg8CjGSsqvdSESFmkBkYhyxyS3yTijd3O\\/e1\\/cFtwbPiuTkFT\\/+B9hST7NuJSQsRiXdztQ91Gc4ByQRUkqSyySu5aR3Lux92Y5JrxYh7UZl9koySHslbpPj+1TCzW3Ropp3mOzcuCAMhi32yo\\/PNalb6UklilpcyFHJE8mC+ztzj3xXk+miyA6lOgwC\\/okYDg8A+GM4NT2XSG9hDqUxQqCpdJNxPxwgCirS20x5ylzcypCYUIlWLJEjgZBXPZCefkCms9Eia4A1EzBTiIiMxb\\/1TN77sDftWm0\\/Ri12w16NUXeYFFu7s4ydqk+gA4ApYbHyRmbUwtztYi3EDNyDgAvkDkU8WlPNbpHqbxRm1R5ZJIS+JifUgC09nowBK9RFj8Cxf\\/3TQaLHdWwOoTzW7KfGZIijIQvtu75avK9De9\\/qX2H\\/AIqO80w2sSPpbS+Eo8dhKY8nLDuASP2hXn9DCZbQC2WOH83IPfOO1TX+keRmRenjGZciOY3Up2sBxjI9t2SK8zZLPC4svQLRopEMhbfIyMvigsDg85prrRIbeUydKyB1kaEs1zKFDDuD8OtJqehRvc\\/5IJYHbCRGQoUAK87\\/AFNl9vb2pNR0IMxfp8lc8AXj8DAq41jp5WhNjoAXKETiWZnDblIKrnOMHBDjBpNV0RA6DQwqszHJnMjY2uAo3j60urWf+CnT20mEz\\/7zI8TO\\/f8AFXOraHOwb9HkB2qCVndO30j2rS3+hKqg6ArEDububJqfX9TuARcypP24kQEcMr\\/bKCjqV15DyDMjQDJUFRlWJzuB+afVr0iACRVMTRMpVADmAYQn6rmr3WtVvYjFdXskkZYEqfkUmoXKTxTmTc8asFLd\\/UWbn55Y963VurdW761urcK3io\\/JGGRp5ZBJ6tip9FOM5HuxH8gadNK8srrcz+NtGU2DAbaQRn86mTRPX4N1cEgtt3jhhl8DheOy08egi+tUF5dNaHJnk8MKw+Ao5q5tumY5LbwdRuZY2Ul8psZTuAHs1CDpgCItqF2cE+KBGBkBhgr9TVuvT3nJVubq8NqEXYyIoctjnINW6aEfENxc3QAlcIEUepARtP0JGalGhKtvsmu2PioJvSoym31Ffg5oHpTPJ1Q4J94xngUT0551\\/Xf+TEC44QTGXIB+Rit\\/S34NU\\/qiq11GS0WURohZiCrsDuQgFcr9fVWlT3jiMWllDKbf9rewUFpS0an259dKdVV48dN6fmbDqCo5DEnBBb69jUN7qyFHi6X0wOXVlbwACDlfrxy1X6avbyQ382jxW0dvL4hKKiAbtgCr8fI+GJq20LVruaaCC1Jkh2b1LKpHiduCaOg6mt7NZvEiSRMokZ3UIu\\/GDuqPpLqF5CnkgpGe8qdwu7HepOk9ehBaa2RI1\\/bcyphQO5IBzU6LDK0azRygYw8edpyM8bgDWazRao7iaFt0MzxtkHKsVPFQyxly088q4xtKnnvUD6eDD497dH1qJNh24TjJGQeRRktnsHMl1ObreQI+6Fcrg5+9RN0ykfNzqYkOdwQoAQO1WY0NoY2vrm+E7ZLiJVIGO2M0f0bFrt8zqLXBRvZBGGxxxX+QC5jkjuL5YFzuB2+MT+6UI4rGhGRhvvhHvIU4QnbhsE\\/2qb9HtjrCb\\/xPVtdimz6ZAGaifp0RoJYtQMgUbykkYUt74ytFq3VplxcwTySW8kKP4RUmRQ3DkIcAg\\/Napc3ssUrT6hYyCaESER5z3UbR6eG9I4q4vJY5EBis2IjibKRLjkK4BwO4xg02sF4YoXsLIov7eItjP8ZZMHipNUunW3VvCKwFygManmTAYtkHcePennd44oyfRGDtAAHc5JPyazWazWaLUrqpyUDcHg59x9Khn06MzeLavKDJ6AX2kJhh3H72SPahcaUGO6xmK54Hj84\\/pqS50kMPCspSuxeHl5DZUnkDnsRVxNYtGqwW7o4RcsX7tsQHj8wx\\/nWazWa3Vms1\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACESAQITBAUf\\/aAAgBAgEBPwDG1PFrruaS9jg8gCZHthSVOdqaxT\\/\\/xAAdEQABBAIDAAAAAAAAAAAAAAABAAIRICEwQVGB\\/9oACAEDAQE\\/AJRN\\/dOKDe5pLmkOIA47UWwjaFFZp\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"asA+zrf8qOm1ZngOZU\\/K7TuZE6EaJVORKxQL8U\\/gq+0+kW1+BNfDKPojajjpBJXb57rQPP+hESKbguqj1PiTX4WxnFjcxFBnViUTDf6mrBVeS4WTf6V1cyjvGWGr+Hzf9e5Ios+G8RgubcPeQQd8ITpAXUZZmthil9kEq+Tgc+KPghrzLPOmIuhpklo29\\/Lm86FvymbUdE479eWSbZHmQQj9bgF8pSZ1j7paOsxTmQWVF6g0BGPjp5O6grysOM0mjJcsmfbN3+22E092uYWPiYUJUKMi2KNcniZD6kTrCDOQXxXsbFoo7obNfjhANN5o15QLkgXm80OFgljPN2ImwIFURGaAO8aw2X6OysMICWRp20SPT8hE2WqPcl0jqJaKpkYt27\\/szKBALR6SnVTgk\\/SC44yE6jZ8Uo6zVyh4UGRrVWpVHHbYtQAHMBmrCSZoGCVtI09SwvgPZEIR8DWJk8uZSO5i5h5tZyM0SZfoRREfH7OvbOzF+St7\\/WT3CsyED2U4GlRxeeyCaKZQKUhA3RZeCyH7qohx+gthOhI5JIjeBWPpKdFdW9Cy1nbEEIZO3bV4UIZqtVinA70tPdERvFMucQbmWTCM5n5Ya9RKsgtihnHGWC1f8aDOU6wcDhOcONMnuSN9hU9w4ImSWm38+mAEoeEs1j+0QsKuHM4q\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/636904106_2079282959540105_3062279366042903518_n.enc?ccb=11-4&oh=01_Q5Aa3wHqZcaGU5MN0yo2Xqhy12Zv2S1Kykiv-dexzFgT-4b0HA&oe=69B840D8&_nc_sid=5e03e0\",\"thumbnailSha256\":\"YLBlArifC5x8iqLrS195lywj8v3nKqTz7QKbI58Fk3Y=\",\"thumbnailEncSha256\":\"4DsEkQlY1\\/ckOJ4AUxa4tkKz4PQyT14SKjxjV6CJH0U=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771102358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:38.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:52:39'),
(18517, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:39.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:39'),
(18518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:38.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:39'),
(18519, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:39.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:52:40'),
(18520, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:39.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:40'),
(18521, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:39.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:40'),
(18522, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:39.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:52:40'),
(18523, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"AC7B08DC7923266D8F504D378DF7565E\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oie\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5D1747A08B2A10841419C5C4E83E54A\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"iCw+hY9N3RCVspWTed3qs6OEBEVJhdy8MdUU9iS2hKs=\",\"fileLength\":\"3338498\",\"seconds\":11,\"mediaKey\":\"eW3yJLi7EZt8bLzu8\\/Q2l4E6eeKd45yO5ZvX72p6q7A=\",\"caption\":\"Os trabalhos nao param...🫣🚀\",\"height\":850,\"width\":478,\"fileEncSha256\":\"S3r+q\\/mqqB66HRbn4LpsytE9AEQ3z0Sn1Dm7MB3iNOs=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771094656\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAWgMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQEBAQEAAAAAAAAAAAAAAAABAAID\\/9oADAMBAAIQAxAAAABeSNHoST1MDndeVWwZ\\/KwlhCBMh1JKUrqeqWYpXOXMIL5peqr2wVBrmdi8zjKbud9RiHn9j7xdmA9kZO5Cyox\\/RjUsBvTVzloE0peNyRLyVUak7ZZcq3PRAUtsYFXb7aVhbMuhc2WtI6uG1IG3m+i\\/VhYuSt15E1JErBxSeV6KnnaqwPl+BpqGo27FEDNYDctBNc801cKRpYgY6cekperkID0GaIYzz0L4wKRLGl26x8z3j29tfxBCO0YzJyKUFohSBjlrK2NIwlM5z6s2KXjbdwHc7hixNeZxLykj\\/8QAORAAAgEDAwIFAgIIBwADAAAAAQIDAAQRBRIhBjETFCJBUWGRUnEWIzJCU4GSoRUlM1RjctJzk8L\\/2gAIAQEAAT8AqztmvLy3tVbaZXC5wWx9cCri2K3EUEk7lksxNKpQhosRmYxgN3IWpenb9IZZwyeEiKxZwyZzCJSeR25xU\\/T09uZBLcIzRyeG6xRyOQxCbfYZ\\/wBQE0elb1pnjiuLZsO45YhsI4TkDNJ0tqTh8SW+5GAZNxDYZygbGOxxV3o72OfNTKP9EjYC3pl3+zbcEeHSdN6hIRsUYwvLgp3iEhP5e1P0rqgYgmAHB2DxB62\\/CtXGj6jDnMG4A4yjB\\/fHtX6JdQ\\/7A\\/8A2x\\/+qJqGF7q4igjK75HCLuOBk1H05qT3SxwMFlQI5L5Qo2WAYEZ4zHw1XmnrZxI7v6pBE0ahD6keMOWz8AnbQ0G7C3bQEny\\/mEnJVlA8JE3AH3DbyB8ih0xeh0R3hDvv2AbmzslWI9hwMtVt09esYZrG4ALRrIrEmFwHYrQ0HU2aJN6EXTqRiQkOxVnBNXPT93bI0s6xqFDZwckFULYqTSbu7YzqfMeLnwnY5eXZIsH73Ixkd\\/an6T1ES3CPDbqkO8yStIgVQvufcA0LLrC1At4ri5EcXoQJeKqBV4AUFxgU2Kjia4nhgTG+WRUXPAyxwKXpO+mk2RBAQo3mQFBne6cd8jKVeaYbKJmlk9f6jYgXIdZY95bcOMA5Wm0G7fzLoxkFqJEldlYKPLxx+kf1YX6Ck6XvVkWJpoQ7l9ije2fDkWIngcAFqTpy8vdksUwkMsSykzZR8Su3cH7moumr1xAVSFhNjaQcgAqWyav9I1O3S5u7mckrGdzeIWdwSBt\\/LJpum72eI3EESzQF3Cyfs5C8Zw3safo+9NyItlt3ZfFYgJlWK02h36MystsrKcFTcwggj2ILUzVFE9xPDAmN0sioue2WOBmv0TvmYhTEgUojPL6ELvK0IVDznlav9DGnW87zXAEqCDbGEPqM273+BsODTaHPNBc3SP4otoyZXYHbtihjcBW\\/JsL9BS9KXqSLE0sAkbcUC72zskWMnheAC9Q9NXl4EuIZQ\\/jRiUmfKP62PcHNR9OXrxRuFhKuPntlN\\/NX2l31n5me6uTuaE7mVy7SDKJhvplhT9MXcsJniRJE5YEggmPgq\\/8AMVL0nqaRGU28QQHkl1GMUOi+oGAIsgQfh0p3otXHxXp+DRbe2WJJwoySTwowB\\/IDAqIDcMClJkkZ5CXdjlmbkk\\/Umoo0xkYFSvKXkkMzl3Xa7Fjlh8E+44qaNSeVBqSKP8K14cf4FpjQK5Ge2fpV307ZwTsg6h03AcqRJIFdSGAwVBarPp6O9uzbQavZMwVWGHBLctkKATkqFo6ZapvVtYsjIkZkOHyhAUekN7uWOMYq6sYLSa0ji1K0uDKPW8TBkiO7HJXJxVpEsk0sIZpHQSlfCGQ4iRnO3POWwAtGysV5i1uydFWYsxYJzH2ULkkl6nhiWWJFv7VlkmdAwcMEVWwrOVzgNV1aRRWxnGpWTtx+qSUNJz9BUul2nmPCXXdN2bj6jLjgNtoaVAeV13SMHtm5watYkmvbWGQNskmRG24zhmxxmnUozJuV9rEbkGVbHuPoa+\\/2o7SMHkf9aB\\/P+g0jY+f6DQcEYIOP+tLJx7\\/avE+jfaixPsabPwfuKz9P70VYj9k\\/etp\\/C33oxn4f714bf8v3oI3\\/AC\\/ehH\\/8n3oJj2l+9bT8S\\/c0QfwyfeiD\\/DP3NHd\\/C\\/vWT+AVlPk1kezmsP8AxqIl9risTf7gUI7k9rlaEVx\\/HStk\\/vMtFZf4woh\\/41HP46x9aa+0eWV5J9CDBmB2JOYlAUtgDYoPZuae40AkvHpTJAybHUXjtkh1YEM4JU+kqa1BtGlgXyWlyWsgY73a5kmAX8nq1ewMszzWSzROoURxSsgUq6twx3nnbg0smjQegaQ+XjZAz3TM+TGULLxtz2YccGjqOhmJIZdAD4lkdHW5MDASNvMfoGXCdgWppNIR9OMNtKzxxILmKRgwlJBDsGLMV+mBT3nTbsAmgSoUcFtuoS0l10+lgoGkSm+XhZGupGQkJ+2wJwef3KbUOnpHeSbp0F2ZuUumhABYsBiMLQvdAQsZNELRB3ZV84wwGVRgtjccFaivuhWiRm0S7yVBO2Z2H8jvokD3\\/vVtNfJdhhZCWR7PYkcqFx4WzaWUH5Ap\\/wDEWDq+jiNWBhDvbeGqLK7jarkAIMyEV5y6kS2gDPKpZI4htEysxCssa5DDK+yd1yaleSRL0PGAkAZbgLEkezc3KuVUc57Cru11a5uL2W5tLhpmWJJS0eDwY1VUAA5OVHp5oJci3UlAY0iDiMkIzIqcSbFKs2Ad26m1W9QRQSJGDbjwsSQKzjY5fBLgsME4xUmtXsjwGMQW4hdnRYIyg9Wzggkjb6BxSdTayjl1mQMe5EKD5+mP3ql6t1mWJI8QJtdXLrEA7FSCM1D1XrsEMUKTx7Y0CDMSk4Wik3PNB9RRt0d5OjbdoKSMpC98Aj2pm1JpI5Hu5pCm3HiO0g9GcAh8ggbjSwTqIf18imJ98eGIKMcepfg8CjGSsqvdSESFmkBkYhyxyS3yTijd3O\\/e1\\/cFtwbPiuTkFT\\/+B9hST7NuJSQsRiXdztQ91Gc4ByQRUkqSyySu5aR3Lux92Y5JrxYh7UZl9koySHslbpPj+1TCzW3Ropp3mOzcuCAMhi32yo\\/PNalb6UklilpcyFHJE8mC+ztzj3xXk+miyA6lOgwC\\/okYDg8A+GM4NT2XSG9hDqUxQqCpdJNxPxwgCirS20x5ylzcypCYUIlWLJEjgZBXPZCefkCms9Eia4A1EzBTiIiMxb\\/1TN77sDftWm0\\/Ri12w16NUXeYFFu7s4ydqk+gA4ApYbHyRmbUwtztYi3EDNyDgAvkDkU8WlPNbpHqbxRm1R5ZJIS+JifUgC09nowBK9RFj8Cxf\\/3TQaLHdWwOoTzW7KfGZIijIQvtu75avK9De9\\/qX2H\\/AIqO80w2sSPpbS+Eo8dhKY8nLDuASP2hXn9DCZbQC2WOH83IPfOO1TX+keRmRenjGZciOY3Up2sBxjI9t2SK8zZLPC4svQLRopEMhbfIyMvigsDg85prrRIbeUydKyB1kaEs1zKFDDuD8OtJqehRvc\\/5IJYHbCRGQoUAK87\\/AFNl9vb2pNR0IMxfp8lc8AXj8DAq41jp5WhNjoAXKETiWZnDblIKrnOMHBDjBpNV0RA6DQwqszHJnMjY2uAo3j60urWf+CnT20mEz\\/7zI8TO\\/f8AFXOraHOwb9HkB2qCVndO30j2rS3+hKqg6ArEDububJqfX9TuARcypP24kQEcMr\\/bKCjqV15DyDMjQDJUFRlWJzuB+afVr0iACRVMTRMpVADmAYQn6rmr3WtVvYjFdXskkZYEqfkUmoXKTxTmTc8asFLd\\/UWbn55Y963VurdW761urcK3io\\/JGGRp5ZBJ6tip9FOM5HuxH8gadNK8srrcz+NtGU2DAbaQRn86mTRPX4N1cEgtt3jhhl8DheOy08egi+tUF5dNaHJnk8MKw+Ao5q5tumY5LbwdRuZY2Ul8psZTuAHs1CDpgCItqF2cE+KBGBkBhgr9TVuvT3nJVubq8NqEXYyIoctjnINW6aEfENxc3QAlcIEUepARtP0JGalGhKtvsmu2PioJvSoym31Ffg5oHpTPJ1Q4J94xngUT0551\\/Xf+TEC44QTGXIB+Rit\\/S34NU\\/qiq11GS0WURohZiCrsDuQgFcr9fVWlT3jiMWllDKbf9rewUFpS0an259dKdVV48dN6fmbDqCo5DEnBBb69jUN7qyFHi6X0wOXVlbwACDlfrxy1X6avbyQ382jxW0dvL4hKKiAbtgCr8fI+GJq20LVruaaCC1Jkh2b1LKpHiduCaOg6mt7NZvEiSRMokZ3UIu\\/GDuqPpLqF5CnkgpGe8qdwu7HepOk9ehBaa2RI1\\/bcyphQO5IBzU6LDK0azRygYw8edpyM8bgDWazRao7iaFt0MzxtkHKsVPFQyxly088q4xtKnnvUD6eDD497dH1qJNh24TjJGQeRRktnsHMl1ObreQI+6Fcrg5+9RN0ykfNzqYkOdwQoAQO1WY0NoY2vrm+E7ZLiJVIGO2M0f0bFrt8zqLXBRvZBGGxxxX+QC5jkjuL5YFzuB2+MT+6UI4rGhGRhvvhHvIU4QnbhsE\\/2qb9HtjrCb\\/xPVtdimz6ZAGaifp0RoJYtQMgUbykkYUt74ytFq3VplxcwTySW8kKP4RUmRQ3DkIcAg\\/Napc3ssUrT6hYyCaESER5z3UbR6eG9I4q4vJY5EBis2IjibKRLjkK4BwO4xg02sF4YoXsLIov7eItjP8ZZMHipNUunW3VvCKwFygManmTAYtkHcePennd44oyfRGDtAAHc5JPyazWazWaLUrqpyUDcHg59x9Khn06MzeLavKDJ6AX2kJhh3H72SPahcaUGO6xmK54Hj84\\/pqS50kMPCspSuxeHl5DZUnkDnsRVxNYtGqwW7o4RcsX7tsQHj8wx\\/nWazWa3Vms1\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACESAQITBAUf\\/aAAgBAgEBPwDG1PFrruaS9jg8gCZHthSVOdqaxT\\/\\/xAAdEQABBAIDAAAAAAAAAAAAAAABAAIRICEwQVGB\\/9oACAEDAQE\\/AJRN\\/dOKDe5pLmkOIA47UWwjaFFZp\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"asA+zrf8qOm1ZngOZU\\/K7TuZE6EaJVORKxQL8U\\/gq+0+kW1+BNfDKPojajjpBJXb57rQPP+hESKbguqj1PiTX4WxnFjcxFBnViUTDf6mrBVeS4WTf6V1cyjvGWGr+Hzf9e5Ios+G8RgubcPeQQd8ITpAXUZZmthil9kEq+Tgc+KPghrzLPOmIuhpklo29\\/Lm86FvymbUdE479eWSbZHmQQj9bgF8pSZ1j7paOsxTmQWVF6g0BGPjp5O6grysOM0mjJcsmfbN3+22E092uYWPiYUJUKMi2KNcniZD6kTrCDOQXxXsbFoo7obNfjhANN5o15QLkgXm80OFgljPN2ImwIFURGaAO8aw2X6OysMICWRp20SPT8hE2WqPcl0jqJaKpkYt27\\/szKBALR6SnVTgk\\/SC44yE6jZ8Uo6zVyh4UGRrVWpVHHbYtQAHMBmrCSZoGCVtI09SwvgPZEIR8DWJk8uZSO5i5h5tZyM0SZfoRREfH7OvbOzF+St7\\/WT3CsyED2U4GlRxeeyCaKZQKUhA3RZeCyH7qohx+gthOhI5JIjeBWPpKdFdW9Cy1nbEEIZO3bV4UIZqtVinA70tPdERvFMucQbmWTCM5n5Ya9RKsgtihnHGWC1f8aDOU6wcDhOcONMnuSN9hU9w4ImSWm38+mAEoeEs1j+0QsKuHM4q\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/636904106_2079282959540105_3062279366042903518_n.enc?ccb=11-4&oh=01_Q5Aa3wHqZcaGU5MN0yo2Xqhy12Zv2S1Kykiv-dexzFgT-4b0HA&oe=69B840D8&_nc_sid=5e03e0\",\"thumbnailSha256\":\"YLBlArifC5x8iqLrS195lywj8v3nKqTz7QKbI58Fk3Y=\",\"thumbnailEncSha256\":\"4DsEkQlY1\\/ckOJ4AUxa4tkKz4PQyT14SKjxjV6CJH0U=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+2MIGEMRu5odjpKyxJiDM3p24f13QaJtATqkaG8Zd6Q=\"}},\"contextInfo\":{\"stanzaId\":\"A5D1747A08B2A10841419C5C4E83E54A\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"iCw+hY9N3RCVspWTed3qs6OEBEVJhdy8MdUU9iS2hKs=\",\"fileLength\":\"3338498\",\"seconds\":11,\"mediaKey\":\"eW3yJLi7EZt8bLzu8\\/Q2l4E6eeKd45yO5ZvX72p6q7A=\",\"caption\":\"Os trabalhos nao param...🫣🚀\",\"height\":850,\"width\":478,\"fileEncSha256\":\"S3r+q\\/mqqB66HRbn4LpsytE9AEQ3z0Sn1Dm7MB3iNOs=\",\"directPath\":\"\\/v\\/t62.7161-24\\/636956870_1158446156207588_5754496021261151454_n.enc?ccb=11-4&oh=01_Q5Aa3wFfEV2PYiMj-cKNS4ACM6XWbCqSn0H25oj1JrI_irc8lQ&oe=69B83A08&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771094656\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAWgMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQEBAQEAAAAAAAAAAAAAAAABAAID\\/9oADAMBAAIQAxAAAABeSNHoST1MDndeVWwZ\\/KwlhCBMh1JKUrqeqWYpXOXMIL5peqr2wVBrmdi8zjKbud9RiHn9j7xdmA9kZO5Cyox\\/RjUsBvTVzloE0peNyRLyVUak7ZZcq3PRAUtsYFXb7aVhbMuhc2WtI6uG1IG3m+i\\/VhYuSt15E1JErBxSeV6KnnaqwPl+BpqGo27FEDNYDctBNc801cKRpYgY6cekperkID0GaIYzz0L4wKRLGl26x8z3j29tfxBCO0YzJyKUFohSBjlrK2NIwlM5z6s2KXjbdwHc7hixNeZxLykj\\/8QAORAAAgEDAwIFAgIIBwADAAAAAQIDAAQRBRIhBjETFCJBUWGRUnEWIzJCU4GSoRUlM1RjctJzk8L\\/2gAIAQEAAT8AqztmvLy3tVbaZXC5wWx9cCri2K3EUEk7lksxNKpQhosRmYxgN3IWpenb9IZZwyeEiKxZwyZzCJSeR25xU\\/T09uZBLcIzRyeG6xRyOQxCbfYZ\\/wBQE0elb1pnjiuLZsO45YhsI4TkDNJ0tqTh8SW+5GAZNxDYZygbGOxxV3o72OfNTKP9EjYC3pl3+zbcEeHSdN6hIRsUYwvLgp3iEhP5e1P0rqgYgmAHB2DxB62\\/CtXGj6jDnMG4A4yjB\\/fHtX6JdQ\\/7A\\/8A2x\\/+qJqGF7q4igjK75HCLuOBk1H05qT3SxwMFlQI5L5Qo2WAYEZ4zHw1XmnrZxI7v6pBE0ahD6keMOWz8AnbQ0G7C3bQEny\\/mEnJVlA8JE3AH3DbyB8ih0xeh0R3hDvv2AbmzslWI9hwMtVt09esYZrG4ALRrIrEmFwHYrQ0HU2aJN6EXTqRiQkOxVnBNXPT93bI0s6xqFDZwckFULYqTSbu7YzqfMeLnwnY5eXZIsH73Ixkd\\/an6T1ES3CPDbqkO8yStIgVQvufcA0LLrC1At4ri5EcXoQJeKqBV4AUFxgU2Kjia4nhgTG+WRUXPAyxwKXpO+mk2RBAQo3mQFBne6cd8jKVeaYbKJmlk9f6jYgXIdZY95bcOMA5Wm0G7fzLoxkFqJEldlYKPLxx+kf1YX6Ck6XvVkWJpoQ7l9ije2fDkWIngcAFqTpy8vdksUwkMsSykzZR8Su3cH7moumr1xAVSFhNjaQcgAqWyav9I1O3S5u7mckrGdzeIWdwSBt\\/LJpum72eI3EESzQF3Cyfs5C8Zw3safo+9NyItlt3ZfFYgJlWK02h36MystsrKcFTcwggj2ILUzVFE9xPDAmN0sioue2WOBmv0TvmYhTEgUojPL6ELvK0IVDznlav9DGnW87zXAEqCDbGEPqM273+BsODTaHPNBc3SP4otoyZXYHbtihjcBW\\/JsL9BS9KXqSLE0sAkbcUC72zskWMnheAC9Q9NXl4EuIZQ\\/jRiUmfKP62PcHNR9OXrxRuFhKuPntlN\\/NX2l31n5me6uTuaE7mVy7SDKJhvplhT9MXcsJniRJE5YEggmPgq\\/8AMVL0nqaRGU28QQHkl1GMUOi+oGAIsgQfh0p3otXHxXp+DRbe2WJJwoySTwowB\\/IDAqIDcMClJkkZ5CXdjlmbkk\\/Umoo0xkYFSvKXkkMzl3Xa7Fjlh8E+44qaNSeVBqSKP8K14cf4FpjQK5Ge2fpV307ZwTsg6h03AcqRJIFdSGAwVBarPp6O9uzbQavZMwVWGHBLctkKATkqFo6ZapvVtYsjIkZkOHyhAUekN7uWOMYq6sYLSa0ji1K0uDKPW8TBkiO7HJXJxVpEsk0sIZpHQSlfCGQ4iRnO3POWwAtGysV5i1uydFWYsxYJzH2ULkkl6nhiWWJFv7VlkmdAwcMEVWwrOVzgNV1aRRWxnGpWTtx+qSUNJz9BUul2nmPCXXdN2bj6jLjgNtoaVAeV13SMHtm5watYkmvbWGQNskmRG24zhmxxmnUozJuV9rEbkGVbHuPoa+\\/2o7SMHkf9aB\\/P+g0jY+f6DQcEYIOP+tLJx7\\/avE+jfaixPsabPwfuKz9P70VYj9k\\/etp\\/C33oxn4f714bf8v3oI3\\/AC\\/ehH\\/8n3oJj2l+9bT8S\\/c0QfwyfeiD\\/DP3NHd\\/C\\/vWT+AVlPk1kezmsP8AxqIl9risTf7gUI7k9rlaEVx\\/HStk\\/vMtFZf4woh\\/41HP46x9aa+0eWV5J9CDBmB2JOYlAUtgDYoPZuae40AkvHpTJAybHUXjtkh1YEM4JU+kqa1BtGlgXyWlyWsgY73a5kmAX8nq1ewMszzWSzROoURxSsgUq6twx3nnbg0smjQegaQ+XjZAz3TM+TGULLxtz2YccGjqOhmJIZdAD4lkdHW5MDASNvMfoGXCdgWppNIR9OMNtKzxxILmKRgwlJBDsGLMV+mBT3nTbsAmgSoUcFtuoS0l10+lgoGkSm+XhZGupGQkJ+2wJwef3KbUOnpHeSbp0F2ZuUumhABYsBiMLQvdAQsZNELRB3ZV84wwGVRgtjccFaivuhWiRm0S7yVBO2Z2H8jvokD3\\/vVtNfJdhhZCWR7PYkcqFx4WzaWUH5Ap\\/wDEWDq+jiNWBhDvbeGqLK7jarkAIMyEV5y6kS2gDPKpZI4htEysxCssa5DDK+yd1yaleSRL0PGAkAZbgLEkezc3KuVUc57Cru11a5uL2W5tLhpmWJJS0eDwY1VUAA5OVHp5oJci3UlAY0iDiMkIzIqcSbFKs2Ad26m1W9QRQSJGDbjwsSQKzjY5fBLgsME4xUmtXsjwGMQW4hdnRYIyg9Wzggkjb6BxSdTayjl1mQMe5EKD5+mP3ql6t1mWJI8QJtdXLrEA7FSCM1D1XrsEMUKTx7Y0CDMSk4Wik3PNB9RRt0d5OjbdoKSMpC98Aj2pm1JpI5Hu5pCm3HiO0g9GcAh8ggbjSwTqIf18imJ98eGIKMcepfg8CjGSsqvdSESFmkBkYhyxyS3yTijd3O\\/e1\\/cFtwbPiuTkFT\\/+B9hST7NuJSQsRiXdztQ91Gc4ByQRUkqSyySu5aR3Lux92Y5JrxYh7UZl9koySHslbpPj+1TCzW3Ropp3mOzcuCAMhi32yo\\/PNalb6UklilpcyFHJE8mC+ztzj3xXk+miyA6lOgwC\\/okYDg8A+GM4NT2XSG9hDqUxQqCpdJNxPxwgCirS20x5ylzcypCYUIlWLJEjgZBXPZCefkCms9Eia4A1EzBTiIiMxb\\/1TN77sDftWm0\\/Ri12w16NUXeYFFu7s4ydqk+gA4ApYbHyRmbUwtztYi3EDNyDgAvkDkU8WlPNbpHqbxRm1R5ZJIS+JifUgC09nowBK9RFj8Cxf\\/3TQaLHdWwOoTzW7KfGZIijIQvtu75avK9De9\\/qX2H\\/AIqO80w2sSPpbS+Eo8dhKY8nLDuASP2hXn9DCZbQC2WOH83IPfOO1TX+keRmRenjGZciOY3Up2sBxjI9t2SK8zZLPC4svQLRopEMhbfIyMvigsDg85prrRIbeUydKyB1kaEs1zKFDDuD8OtJqehRvc\\/5IJYHbCRGQoUAK87\\/AFNl9vb2pNR0IMxfp8lc8AXj8DAq41jp5WhNjoAXKETiWZnDblIKrnOMHBDjBpNV0RA6DQwqszHJnMjY2uAo3j60urWf+CnT20mEz\\/7zI8TO\\/f8AFXOraHOwb9HkB2qCVndO30j2rS3+hKqg6ArEDububJqfX9TuARcypP24kQEcMr\\/bKCjqV15DyDMjQDJUFRlWJzuB+afVr0iACRVMTRMpVADmAYQn6rmr3WtVvYjFdXskkZYEqfkUmoXKTxTmTc8asFLd\\/UWbn55Y963VurdW761urcK3io\\/JGGRp5ZBJ6tip9FOM5HuxH8gadNK8srrcz+NtGU2DAbaQRn86mTRPX4N1cEgtt3jhhl8DheOy08egi+tUF5dNaHJnk8MKw+Ao5q5tumY5LbwdRuZY2Ul8psZTuAHs1CDpgCItqF2cE+KBGBkBhgr9TVuvT3nJVubq8NqEXYyIoctjnINW6aEfENxc3QAlcIEUepARtP0JGalGhKtvsmu2PioJvSoym31Ffg5oHpTPJ1Q4J94xngUT0551\\/Xf+TEC44QTGXIB+Rit\\/S34NU\\/qiq11GS0WURohZiCrsDuQgFcr9fVWlT3jiMWllDKbf9rewUFpS0an259dKdVV48dN6fmbDqCo5DEnBBb69jUN7qyFHi6X0wOXVlbwACDlfrxy1X6avbyQ382jxW0dvL4hKKiAbtgCr8fI+GJq20LVruaaCC1Jkh2b1LKpHiduCaOg6mt7NZvEiSRMokZ3UIu\\/GDuqPpLqF5CnkgpGe8qdwu7HepOk9ehBaa2RI1\\/bcyphQO5IBzU6LDK0azRygYw8edpyM8bgDWazRao7iaFt0MzxtkHKsVPFQyxly088q4xtKnnvUD6eDD497dH1qJNh24TjJGQeRRktnsHMl1ObreQI+6Fcrg5+9RN0ykfNzqYkOdwQoAQO1WY0NoY2vrm+E7ZLiJVIGO2M0f0bFrt8zqLXBRvZBGGxxxX+QC5jkjuL5YFzuB2+MT+6UI4rGhGRhvvhHvIU4QnbhsE\\/2qb9HtjrCb\\/xPVtdimz6ZAGaifp0RoJYtQMgUbykkYUt74ytFq3VplxcwTySW8kKP4RUmRQ3DkIcAg\\/Napc3ssUrT6hYyCaESER5z3UbR6eG9I4q4vJY5EBis2IjibKRLjkK4BwO4xg02sF4YoXsLIov7eItjP8ZZMHipNUunW3VvCKwFygManmTAYtkHcePennd44oyfRGDtAAHc5JPyazWazWaLUrqpyUDcHg59x9Khn06MzeLavKDJ6AX2kJhh3H72SPahcaUGO6xmK54Hj84\\/pqS50kMPCspSuxeHl5DZUnkDnsRVxNYtGqwW7o4RcsX7tsQHj8wx\\/nWazWa3Vms1\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAQACESAQITBAUf\\/aAAgBAgEBPwDG1PFrruaS9jg8gCZHthSVOdqaxT\\/\\/xAAdEQABBAIDAAAAAAAAAAAAAAABAAIRICEwQVGB\\/9oACAEDAQE\\/AJRN\\/dOKDe5pLmkOIA47UWwjaFFZp\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"asA+zrf8qOm1ZngOZU\\/K7TuZE6EaJVORKxQL8U\\/gq+0+kW1+BNfDKPojajjpBJXb57rQPP+hESKbguqj1PiTX4WxnFjcxFBnViUTDf6mrBVeS4WTf6V1cyjvGWGr+Hzf9e5Ios+G8RgubcPeQQd8ITpAXUZZmthil9kEq+Tgc+KPghrzLPOmIuhpklo29\\/Lm86FvymbUdE479eWSbZHmQQj9bgF8pSZ1j7paOsxTmQWVF6g0BGPjp5O6grysOM0mjJcsmfbN3+22E092uYWPiYUJUKMi2KNcniZD6kTrCDOQXxXsbFoo7obNfjhANN5o15QLkgXm80OFgljPN2ImwIFURGaAO8aw2X6OysMICWRp20SPT8hE2WqPcl0jqJaKpkYt27\\/szKBALR6SnVTgk\\/SC44yE6jZ8Uo6zVyh4UGRrVWpVHHbYtQAHMBmrCSZoGCVtI09SwvgPZEIR8DWJk8uZSO5i5h5tZyM0SZfoRREfH7OvbOzF+St7\\/WT3CsyED2U4GlRxeeyCaKZQKUhA3RZeCyH7qohx+gthOhI5JIjeBWPpKdFdW9Cy1nbEEIZO3bV4UIZqtVinA70tPdERvFMucQbmWTCM5n5Ya9RKsgtihnHGWC1f8aDOU6wcDhOcONMnuSN9hU9w4ImSWm38+mAEoeEs1j+0QsKuHM4q\",\"thumbnailDirectPath\":\"\\/v\\/t62.36147-24\\/636904106_2079282959540105_3062279366042903518_n.enc?ccb=11-4&oh=01_Q5Aa3wHqZcaGU5MN0yo2Xqhy12Zv2S1Kykiv-dexzFgT-4b0HA&oe=69B840D8&_nc_sid=5e03e0\",\"thumbnailSha256\":\"YLBlArifC5x8iqLrS195lywj8v3nKqTz7QKbI58Fk3Y=\",\"thumbnailEncSha256\":\"4DsEkQlY1\\/ckOJ4AUxa4tkKz4PQyT14SKjxjV6CJH0U=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771102358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:38.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:52:40'),
(18524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:41'),
(18525, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":true,\"id\":\"A5B70DCF1E39E3D8003A0468C76E440C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102361,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:52:41'),
(18526, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:41'),
(18527, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":true,\"id\":\"A5B70DCF1E39E3D8003A0468C76E440C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102361,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:52:41'),
(18528, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"id\":\"A5B70DCF1E39E3D8003A0468C76E440C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102361664,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:52:41'),
(18529, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"id\":\"A5B70DCF1E39E3D8003A0468C76E440C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102362083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:42.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:52:42'),
(18530, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"id\":\"A5B70DCF1E39E3D8003A0468C76E440C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102361664,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:52:42'),
(18531, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"id\":\"A5B70DCF1E39E3D8003A0468C76E440C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102362083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:42.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:52:42'),
(18532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18533, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:41.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:43'),
(18534, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:54.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:55'),
(18535, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:54.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:55'),
(18536, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:57.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:57'),
(18537, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACC50A26C01D16255E2B1A2E41F9240C\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"conversation\":\"Tudo bem?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jEgLJvW\\/qZvg2wN70npqjqarbCqbh+7gZ9ZPclGkJgo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:57.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:52:57'),
(18538, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:57.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:58'),
(18539, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACC50A26C01D16255E2B1A2E41F9240C\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"conversation\":\"Tudo bem?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jEgLJvW\\/qZvg2wN70npqjqarbCqbh+7gZ9ZPclGkJgo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:57.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:52:58'),
(18540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:58.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:58'),
(18541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:58.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:52:58'),
(18542, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:58.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:58'),
(18543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:52:58.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:52:59'),
(18544, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:09.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:09'),
(18545, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:09.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:09'),
(18546, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:20.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:20'),
(18547, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:20.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:20'),
(18548, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:23.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:23'),
(18549, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:23.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:23'),
(18550, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:23.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:23'),
(18551, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:23.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:23'),
(18552, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:24.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:24'),
(18553, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:24.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:25'),
(18554, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:25.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:25'),
(18555, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:25.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:25'),
(18556, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:35.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:35'),
(18557, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:35.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:35'),
(18558, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:46.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:46'),
(18559, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:46.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:46'),
(18560, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:47.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:47'),
(18561, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:47.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:47'),
(18562, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:51.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:51'),
(18563, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:51.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:51'),
(18564, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:54.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:54'),
(18565, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:54.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:54'),
(18566, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:56.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:56'),
(18567, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:56.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:56'),
(18568, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:57.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:57'),
(18569, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:57.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:57'),
(18570, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:59.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:59'),
(18571, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0786C56202AE983B789\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102439,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:59.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:53:59'),
(18572, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:59.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:59'),
(18573, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:59.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:53:59'),
(18574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:59.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:53:59'),
(18575, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06E0461708BC4FB7C50\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102439,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:00.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:00'),
(18576, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06E0461708BC4FB7C50\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102439,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:00.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:00'),
(18577, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0786C56202AE983B789\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102439,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:53:59.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:54:00'),
(18578, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BFDC6A0899298AD2D7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102440,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:00.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:01'),
(18579, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BFDC6A0899298AD2D7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102440,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:00.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:01'),
(18580, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:01.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:02'),
(18581, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:01.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:02'),
(18582, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:07.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:07'),
(18583, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:07.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:07'),
(18584, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:08.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:08'),
(18585, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:08.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:08'),
(18586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:09.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:09'),
(18587, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:09.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:09'),
(18588, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:10.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:11'),
(18589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:10.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:11'),
(18590, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB037A72EC2C9D1A858E4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastrp\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102450,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:10.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:54:11'),
(18591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:11.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:11'),
(18592, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:11.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:11'),
(18593, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB037A72EC2C9D1A858E4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastrp\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102450,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:10.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:54:12'),
(18594, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09E8319A5EAF029C702\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102451,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:11.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:12'),
(18595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:11.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:12'),
(18596, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:11.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:12'),
(18597, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09E8319A5EAF029C702\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102451,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:11.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:12'),
(18598, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04847C059686F17BE87\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102452,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:12.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:13'),
(18599, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04847C059686F17BE87\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102452,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:12.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:13'),
(18600, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:12.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:13'),
(18601, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:12.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:13'),
(18602, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09DA5563DB5FD91F5A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102453,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:13.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:54:13'),
(18603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:14.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:14'),
(18604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:14.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:14'),
(18605, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:13.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:14'),
(18606, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DFA6AACCCE373D828E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102454,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:14.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:14'),
(18607, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:13.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18608, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09DA5563DB5FD91F5A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102453,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:13.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:54:15'),
(18609, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DFA6AACCCE373D828E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102454,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:14.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:15'),
(18610, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EE7A7A0121C9C6CB2A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102455,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:15.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:15'),
(18611, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EE7A7A0121C9C6CB2A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102455,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:15.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:15'),
(18612, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:16.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:16'),
(18613, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:16.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:16'),
(18614, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:16.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:16'),
(18615, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:16.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:17'),
(18616, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:17.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:17'),
(18617, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:17.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:17'),
(18618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:19.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:19'),
(18619, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0338ED55939FC51FD60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"alaide lali\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102459,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:19.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:54:19'),
(18620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:19.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:20'),
(18621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:20.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:20'),
(18622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:20.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:20'),
(18623, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03392EAB53D2A46E7FC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *alaide lali*\\n\\nDigite o *telefone* do cliente (apenas números):\\n📱 *Importante:* Use 11 dígitos com 9\\nExemplo: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102460,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:20.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:20'),
(18624, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03392EAB53D2A46E7FC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Nome: *alaide lali*\\n\\nDigite o *telefone* do cliente (apenas números):\\n📱 *Importante:* Use 11 dígitos com 9\\nExemplo: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102460,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:20.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:20'),
(18625, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0338ED55939FC51FD60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"alaide lali\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102459,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:19.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:54:21'),
(18626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:37.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:38'),
(18627, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:37.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:38'),
(18628, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9B321E7501DD21E6D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102484,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:54:44'),
(18629, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:44'),
(18630, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:44'),
(18631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:44'),
(18632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:44'),
(18633, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04966413EA0B28916E0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 4791203777 (10 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102484,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:45'),
(18634, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04966413EA0B28916E0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone inválido!*\\n\\nO telefone deve ter 11 dígitos (com 9).\\nVocê digitou: 4791203777 (10 dígitos)\\n\\n📱 Exemplo correto: 47984173345\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102484,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:45'),
(18635, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9B321E7501DD21E6D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"4791203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102484,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:44.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:54:45'),
(18636, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:51.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:52'),
(18637, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:51.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:52'),
(18638, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:55.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:55'),
(18639, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:55.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:55'),
(18640, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:57.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:54:57'),
(18641, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:54:57.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:54:57'),
(18642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:01.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:01'),
(18643, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:01.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:01'),
(18644, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:02.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:02'),
(18645, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:02.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:02'),
(18646, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:02.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:02'),
(18647, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:02.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:03'),
(18648, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:06.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:06'),
(18649, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:06.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:06'),
(18650, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:08.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:08'),
(18651, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:08.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:08'),
(18652, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:10'),
(18653, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:10'),
(18654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:10'),
(18655, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09395980428276D72D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"47991203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102509,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:55:10'),
(18656, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:10'),
(18657, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0340A343BFC10C2D9A6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 99120-3777*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102510,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:11'),
(18658, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0340A343BFC10C2D9A6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Telefone: *47 99120-3777*\\n\\nDigite o *valor mensal* que o cliente paga:\\nExemplo: 40 ou 40.50\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102510,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:11'),
(18659, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09395980428276D72D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"47991203777\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102509,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:10.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:55:11'),
(18660, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:13.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:13'),
(18661, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:13.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:13'),
(18662, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:16.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:16'),
(18663, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:16.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:16'),
(18664, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:17.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:17'),
(18665, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACFFE03142862E552C24B0A6210B52DD\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"conversation\":\"Meu marido esta perguntando  se vc tem outro app para nós instalar na TV\\nNo momento estamos  com o VOID... \\nEle esta pedindo se tem um um pouco melhor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UVYqfSFLO0Cdb8teYyjptDkYVH7JsPK18EiWcyPJhHE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:17.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:55:17'),
(18666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:17.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:17'),
(18667, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACFFE03142862E552C24B0A6210B52DD\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"conversation\":\"Meu marido esta perguntando  se vc tem outro app para nós instalar na TV\\nNo momento estamos  com o VOID... \\nEle esta pedindo se tem um um pouco melhor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UVYqfSFLO0Cdb8teYyjptDkYVH7JsPK18EiWcyPJhHE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:17.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:55:18'),
(18668, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:17.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:18'),
(18669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:17.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:18'),
(18670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:18'),
(18671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:18'),
(18672, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:19'),
(18673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:19'),
(18674, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB087878A9D42E601512D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"100\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102518,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:55:19'),
(18675, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:19'),
(18676, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:19'),
(18677, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB087878A9D42E601512D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"100\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102518,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:18.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:55:20'),
(18678, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DFC1B21038F6B6EB8A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102519,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:19.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:20'),
(18679, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DFC1B21038F6B6EB8A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ Valor: *R$ 100,00*\\n\\nEscolha o *plano*:\\n\\n1️⃣ Mensal (30 dias)\\n2️⃣ Trimestral (90 dias)\\n3️⃣ Semestral (180 dias)\\n4️⃣ Anual (360 dias)\\n\\nDigite o número da opção:\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102519,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:19.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:20'),
(18680, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:21.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:21'),
(18681, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:21.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:21'),
(18682, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:22.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:23'),
(18683, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:22.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:23'),
(18684, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:27.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:27'),
(18685, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D829BAC3EE026D6716\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102527,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:27.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:55:27');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18686, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:27.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:27'),
(18687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:27.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:28'),
(18688, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BE39176E3933574120\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102528,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:28.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:28'),
(18689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:27.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:28'),
(18690, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BE39176E3933574120\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Plano:* Mensal (30 dias)\\n\\n📅 *Data de Vencimento*\\n\\nDigite a data (DD\\/MM ou DD\\/MM\\/AAAA):\\n📌 *Exemplos:*\\n• 15\\/03 (será 15\\/03\\/2026)\\n• 15\\/03\\/2027 (ano específico)\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102528,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:28.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:28'),
(18691, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D829BAC3EE026D6716\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"1\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102527,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:27.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:55:28'),
(18692, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:31.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:31'),
(18693, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"presences\":{\"162753658507397@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:31.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:31'),
(18694, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:32.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:32'),
(18695, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:32.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:32'),
(18696, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:34.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:34'),
(18697, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:34.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:34'),
(18698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:34.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:35'),
(18699, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A6FDBD107B7066E60C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"15\\/05\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102534,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:34.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:55:35'),
(18700, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:34.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:35'),
(18701, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:35.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:35'),
(18702, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB000DCCF253266C0ED14\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* alaide lali\\n📱 *WhatsApp:* 47 99120-3777\\n💰 *Valor:* R$ 100,00\\n📅 *Vencimento:* 15\\/05\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 44\\n─────────────────────\\n\\n✅ Cliente cadastrado com sucesso!\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102535,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:35.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:35'),
(18703, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A6FDBD107B7066E60C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"15\\/05\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102534,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:34.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:55:36'),
(18704, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB000DCCF253266C0ED14\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Cliente cadastrado com sucesso!*\\n\\n─────────────────────\\n👤 *Nome:* alaide lali\\n📱 *WhatsApp:* 47 99120-3777\\n💰 *Valor:* R$ 100,00\\n📅 *Vencimento:* 15\\/05\\/2026\\n📊 *Plano:* Mensal\\n🆔 *ID:* 44\\n─────────────────────\\n\\n✅ Cliente cadastrado com sucesso!\\n\\n📲 Sistema enviará cobranças automáticas!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102535,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:35.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:36'),
(18705, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:35.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:36'),
(18706, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:36.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:36'),
(18707, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:36.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:36'),
(18708, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACBDACF46F4DDC204E0C0EE260717507\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"conversation\":\"So para saber... se a caso der. Nos poderia estar tentando outro para dar uma mudada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BU2uixFkurK4YLVR2yUZdWfD+uevq1yE5bTMMGv0JDo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:55:42'),
(18709, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACBDACF46F4DDC204E0C0EE260717507\"},\"pushName\":\"A gata das Unhas🐈\",\"message\":{\"conversation\":\"So para saber... se a caso der. Nos poderia estar tentando outro para dar uma mudada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BU2uixFkurK4YLVR2yUZdWfD+uevq1yE5bTMMGv0JDo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.311Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:55:42'),
(18710, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:42'),
(18711, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:42'),
(18712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:42'),
(18713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:55:43'),
(18714, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"162753658507397@lid\",\"pushName\":\"A gata das Unhas🐈\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:43'),
(18715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:55:42.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:55:43'),
(18716, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:23.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:23'),
(18717, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:23.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:23'),
(18718, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:33.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:33'),
(18719, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:33.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:33'),
(18720, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:37.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:37'),
(18721, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:37.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:37'),
(18722, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:47.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:47'),
(18723, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:47.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:47'),
(18724, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:50.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:50'),
(18725, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:50.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:50'),
(18726, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:54.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:54'),
(18727, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:54.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:54'),
(18728, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:58'),
(18729, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:58'),
(18730, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:58'),
(18731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:58'),
(18732, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACFBB8AC71B0F8522E4E7D48827BCD2E\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Apaguei alguns aqui porém eu já tinha formatado a tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0OmiGmLXgLjF78w81mLPxJftE2RevTI98SyjJbnoiEo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102678,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:57:58'),
(18733, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:59'),
(18734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:59'),
(18735, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0131701B6DB1CCFD610\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 53678601945340\\nMensagem: \\\"Apaguei alguns aqui porém eu já tinha formatado a tv\\\"\\n\\nUse: \\/aprovar 53678601945340  (para automático)\\nUse: \\/pago 53678601945340  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102679,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:59.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:57:59'),
(18736, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0131701B6DB1CCFD610\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 53678601945340\\nMensagem: \\\"Apaguei alguns aqui porém eu já tinha formatado a tv\\\"\\n\\nUse: \\/aprovar 53678601945340  (para automático)\\nUse: \\/pago 53678601945340  (para PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771102679,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:59.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:57:59'),
(18737, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACFBB8AC71B0F8522E4E7D48827BCD2E\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Apaguei alguns aqui porém eu já tinha formatado a tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0OmiGmLXgLjF78w81mLPxJftE2RevTI98SyjJbnoiEo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102678,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:57:58.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:57:59'),
(18738, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:00.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:00'),
(18739, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:00.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:00'),
(18740, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:10'),
(18741, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:11'),
(18742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:11'),
(18743, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACB1613D8B9370440CE351307D5EF596\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Sabe me informa aonde eu vejo o espaço que ainda tem nela?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"M5lz+IBkf\\/qLwRp7nxU6i5ERxkGnYCRl6e1\\/JgIM\\/Qg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102690,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:58:11'),
(18744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:11'),
(18745, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:11'),
(18746, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACB1613D8B9370440CE351307D5EF596\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Sabe me informa aonde eu vejo o espaço que ainda tem nela?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"M5lz+IBkf\\/qLwRp7nxU6i5ERxkGnYCRl6e1\\/JgIM\\/Qg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102690,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:58:12'),
(18747, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:10.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:12'),
(18748, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC21929AA96999A3021EE60ADDA4CACB\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634963210_2072646683521426_3918479508421866211_n.enc?ccb=11-4&oh=01_Q5Aa3wGL9Ps1d_jQ3GHLiiZVeVGta-QC0bY5ffrWlhIcjQCyeA&oe=69B83968&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"t0yCIlSRbDTeacobH+QtXnQcqbEgFDBBixcQ4sobY0Q=\",\"fileLength\":\"137991\",\"height\":1599,\"width\":899,\"mediaKey\":\"lpUk1vZl1+JvOvgWJk4Ca0hzNJcO5R+Qz28UZQsW8LI=\",\"fileEncSha256\":\"1GZn440eEezvu0KcDdyNDPIqGocuL09jUGRtYI2Drvo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634963210_2072646683521426_3918479508421866211_n.enc?ccb=11-4&oh=01_Q5Aa3wGL9Ps1d_jQ3GHLiiZVeVGta-QC0bY5ffrWlhIcjQCyeA&oe=69B83968&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102733\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAQMCBAUBAAMBAAAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAADDxUZlTA8DGUOG9FiSs0QJ2db4nKklgqhEtemJZ5vDwDED\\/AP\\/EACYQAQACAgECBAcAAAAAAAAAAAEAAgMREBIUBBNBUSEiMUJSU2L\\/2gAIAQEAAT8AtFjHhm4seMeUuCoS9qgpYZQtc3HHlAek+M6cv4kxpQHZPOU9JS+eu2lXUcmaz8wrqebf2mLHR6eqwbI1wH3sxeKrjxNUdbndrca13O5t+is7THHwZ6WnZ\\/3HwqfS07fL7zc3wzfLHj\\/\\/xAAbEQADAQADAQAAAAAAAAAAAAAAARECEhMgYf\\/aAAgBAgEBPwAhBZqos5OPxlaFpnY\\/H\\/\\/EAB0RAAICAQUAAAAAAAAAAAAAAAABERIgAyExUmH\\/2gAIAQMBAT8AwhzxsV0ezLIuT4sP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"VLdpLN6mSc++zjmKZQhBzwPgZeXcqanRhB7ADuPYVmmf1\\/gihbfdYw==\",\"scanLengths\":[12396,60490,21232,43873],\"midQualityFileSha256\":\"OWMmixl9HEezWsCesHeCIN4Hi1ns0xIQBeNB\\/RUKSMQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/4sYLJ7DbwpD5T\\/sN6nsYzxGgTifOHF7Ih6iofnT+Js=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771102735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 17:58:55'),
(18749, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:55'),
(18750, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:55'),
(18751, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 17:58:56'),
(18752, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:56'),
(18753, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC21929AA96999A3021EE60ADDA4CACB\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634963210_2072646683521426_3918479508421866211_n.enc?ccb=11-4&oh=01_Q5Aa3wGL9Ps1d_jQ3GHLiiZVeVGta-QC0bY5ffrWlhIcjQCyeA&oe=69B83968&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"t0yCIlSRbDTeacobH+QtXnQcqbEgFDBBixcQ4sobY0Q=\",\"fileLength\":\"137991\",\"height\":1599,\"width\":899,\"mediaKey\":\"lpUk1vZl1+JvOvgWJk4Ca0hzNJcO5R+Qz28UZQsW8LI=\",\"fileEncSha256\":\"1GZn440eEezvu0KcDdyNDPIqGocuL09jUGRtYI2Drvo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634963210_2072646683521426_3918479508421866211_n.enc?ccb=11-4&oh=01_Q5Aa3wGL9Ps1d_jQ3GHLiiZVeVGta-QC0bY5ffrWlhIcjQCyeA&oe=69B83968&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102733\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAQMCBAUBAAMBAAAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAADDxUZlTA8DGUOG9FiSs0QJ2db4nKklgqhEtemJZ5vDwDED\\/AP\\/EACYQAQACAgECBAcAAAAAAAAAAAEAAgMREBIUBBNBUSEiMUJSU2L\\/2gAIAQEAAT8AtFjHhm4seMeUuCoS9qgpYZQtc3HHlAek+M6cv4kxpQHZPOU9JS+eu2lXUcmaz8wrqebf2mLHR6eqwbI1wH3sxeKrjxNUdbndrca13O5t+is7THHwZ6WnZ\\/3HwqfS07fL7zc3wzfLHj\\/\\/xAAbEQADAQADAQAAAAAAAAAAAAAAARECEhMgYf\\/aAAgBAgEBPwAhBZqos5OPxlaFpnY\\/H\\/\\/EAB0RAAICAQUAAAAAAAAAAAAAAAABERIgAyExUmH\\/2gAIAQMBAT8AwhzxsV0ezLIuT4sP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"VLdpLN6mSc++zjmKZQhBzwPgZeXcqanRhB7ADuPYVmmf1\\/gihbfdYw==\",\"scanLengths\":[12396,60490,21232,43873],\"midQualityFileSha256\":\"OWMmixl9HEezWsCesHeCIN4Hi1ns0xIQBeNB\\/RUKSMQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/4sYLJ7DbwpD5T\\/sN6nsYzxGgTifOHF7Ih6iofnT+Js=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771102735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 17:58:56'),
(18754, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:56'),
(18755, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T17:58:55.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 17:58:56'),
(18756, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACFFE03142862E552C24B0A6210B52DD\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:14'),
(18757, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:14'),
(18758, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACC50A26C01D16255E2B1A2E41F9240C\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:14');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:14'),
(18760, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACC50A26C01D16255E2B1A2E41F9240C\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:14'),
(18761, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACFFE03142862E552C24B0A6210B52DD\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:14'),
(18762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:14'),
(18763, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACBDACF46F4DDC204E0C0EE260717507\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:14'),
(18764, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:14'),
(18765, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"162753658507397@lid\",\"fromMe\":false,\"id\":\"ACBDACF46F4DDC204E0C0EE260717507\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:15'),
(18766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:15'),
(18767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"162753658507397@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604563803_1913298566210370_9018711661882748362_n.jpg?ccb=11-4&oh=01_Q5Aa3wHCnEpItLTDDYxIwMHZNmvwqC-CaTk5chF_jsTOFFI1ag&oe=699DE591&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:14.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:15'),
(18768, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102897822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:37.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:38'),
(18769, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102897822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:37.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:38'),
(18770, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:39'),
(18771, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592411842_1706191307024180_56485429423192769_n.enc?ccb=11-4&oh=01_Q5Aa3wH2Ro_JmM-32uQIcDsVPHyDDSH6HTVmizYa1bsHpImqFw&oe=69B86964&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"kAUtYJTfq20higA0NekzrDKkf2Zd59BMaW\\/R7jwUO0c=\",\"fileLength\":\"14715\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"NNZkGlDAKhU9X8YvS3MqDfVF2RJV2JngFnXQ6o2oVtM=\",\"fileEncSha256\":\"4h9AIGa6EI+CYIiZ+z\\/nRvmjLrjEkXhAo\\/EboUMtF4s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592411842_1706191307024180_56485429423192769_n.enc?ccb=11-4&oh=01_Q5Aa3wH2Ro_JmM-32uQIcDsVPHyDDSH6HTVmizYa1bsHpImqFw&oe=69B86964&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102891\",\"waveform\":\"AAAECxAODQYNDDVTQAxXJ1ErV1BLAUhMEzskN0xORwIAAAYrQU5RTko8TBQ8GzsYAAAAAAAAUURAUDpbRUw8Qg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771102898,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:39'),
(18772, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:39'),
(18773, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592411842_1706191307024180_56485429423192769_n.enc?ccb=11-4&oh=01_Q5Aa3wH2Ro_JmM-32uQIcDsVPHyDDSH6HTVmizYa1bsHpImqFw&oe=69B86964&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"kAUtYJTfq20higA0NekzrDKkf2Zd59BMaW\\/R7jwUO0c=\",\"fileLength\":\"14715\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"NNZkGlDAKhU9X8YvS3MqDfVF2RJV2JngFnXQ6o2oVtM=\",\"fileEncSha256\":\"4h9AIGa6EI+CYIiZ+z\\/nRvmjLrjEkXhAo\\/EboUMtF4s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592411842_1706191307024180_56485429423192769_n.enc?ccb=11-4&oh=01_Q5Aa3wH2Ro_JmM-32uQIcDsVPHyDDSH6HTVmizYa1bsHpImqFw&oe=69B86964&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102891\",\"waveform\":\"AAAECxAODQYNDDVTQAxXJ1ErV1BLAUhMEzskN0xORwIAAAYrQU5RTko8TBQ8GzsYAAAAAAAAUURAUDpbRUw8Qg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771102898,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:39'),
(18774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:39'),
(18775, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A564D36C460F7BD74BFBA14BAD1238C0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bob player\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:40'),
(18776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A564D36C460F7BD74BFBA14BAD1238C0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bob player\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771102899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:40'),
(18777, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A564D36C460F7BD74BFBA14BAD1238C0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102899912,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:40'),
(18778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:40.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:40'),
(18779, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A564D36C460F7BD74BFBA14BAD1238C0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771102899912,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:40'),
(18780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:40'),
(18781, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102900776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:40.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:41'),
(18782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:40.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:41'),
(18783, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102900776,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:40.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:41'),
(18784, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A564D36C460F7BD74BFBA14BAD1238C0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102900773,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:40.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:41'),
(18785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771102901389,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:41.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:41'),
(18786, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F79848D4B41CF9E266D8E61F9AF4EA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771102901389,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:41.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:42'),
(18787, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A564D36C460F7BD74BFBA14BAD1238C0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102900773,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:40.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:42'),
(18788, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:42'),
(18789, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:39.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:42'),
(18790, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:52.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:53'),
(18791, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:52.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:53'),
(18792, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:56'),
(18793, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC85AB56D588974F99D5CD87BAB7B5FF\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou deixa esse por enquanto\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a0tOmMZCbX3mxGXzWSGb9Q6D5Vhw5Ze4M\\/kDlYugY9Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102916,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:56'),
(18794, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:56'),
(18795, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:56'),
(18796, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC85AB56D588974F99D5CD87BAB7B5FF\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou deixa esse por enquanto\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a0tOmMZCbX3mxGXzWSGb9Q6D5Vhw5Ze4M\\/kDlYugY9Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102916,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:56'),
(18797, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:57'),
(18798, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:57.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:57'),
(18799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:57'),
(18800, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:57.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:57'),
(18801, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:56.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:57'),
(18802, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACAEF579F58DAEE99CC17125163F5CB3\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Achei bom esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V88S525IWVRoDgfaJfuaQpURei4bREdXavX3pvHf+po=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:01:59'),
(18803, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:59'),
(18804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:01:59'),
(18805, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:01:59'),
(18806, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACAEF579F58DAEE99CC17125163F5CB3\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Achei bom esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V88S525IWVRoDgfaJfuaQpURei4bREdXavX3pvHf+po=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:01:59'),
(18807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:00'),
(18808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:00'),
(18809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:01:59.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:00'),
(18810, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:05.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:05'),
(18811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:05.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:05'),
(18812, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:07.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:08'),
(18813, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC21DC23670DA5F4BB599DE7B5E09A5F\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Não travou nada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x6dM0BGpaQqsnCejEHJxe+jRNDdekFYcVpCT2+5nTO0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102927,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:07.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:02:08'),
(18814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:08.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:08'),
(18815, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:07.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:08'),
(18816, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC21DC23670DA5F4BB599DE7B5E09A5F\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Não travou nada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x6dM0BGpaQqsnCejEHJxe+jRNDdekFYcVpCT2+5nTO0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102927,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:07.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:02:08'),
(18817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:08.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:09'),
(18818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:08.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:09'),
(18819, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:08.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:09'),
(18820, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:20'),
(18821, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A50FE4F013B01F7B3F9FEC91472985E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637056391_1936515090289653_8744387359556553576_n.enc?ccb=11-4&oh=01_Q5Aa3wHimkg41A5xb0nWRB__-hgBfdmNC6cUedYgqAg4u8P66Q&oe=69B8466C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QjlYIS8AErDHna+WlEqXNoqRFBWwwD+VOgA2VQnyXwk=\",\"fileLength\":\"8434\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"uXTVeZ2eF39hLBqcG82XP7bLlsLbS8UNw47Vf0aA03A=\",\"fileEncSha256\":\"PbREbGgZQppJ3SlT0KNfrSWRfFaz5\\/TfqF3sjMCWZOI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637056391_1936515090289653_8744387359556553576_n.enc?ccb=11-4&oh=01_Q5Aa3wHimkg41A5xb0nWRB__-hgBfdmNC6cUedYgqAg4u8P66Q&oe=69B8466C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102937\",\"waveform\":\"ABEUGxMVDgspU1dRRBI8NTlQMSg\\/SEo5Skg5QFZXLkA7RUZAOzwtOURBPxsjND4+ISxIRUZGQw9DRkNDR0RGSQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771102940,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:02:20'),
(18822, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:20'),
(18823, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A50FE4F013B01F7B3F9FEC91472985E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637056391_1936515090289653_8744387359556553576_n.enc?ccb=11-4&oh=01_Q5Aa3wHimkg41A5xb0nWRB__-hgBfdmNC6cUedYgqAg4u8P66Q&oe=69B8466C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QjlYIS8AErDHna+WlEqXNoqRFBWwwD+VOgA2VQnyXwk=\",\"fileLength\":\"8434\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"uXTVeZ2eF39hLBqcG82XP7bLlsLbS8UNw47Vf0aA03A=\",\"fileEncSha256\":\"PbREbGgZQppJ3SlT0KNfrSWRfFaz5\\/TfqF3sjMCWZOI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637056391_1936515090289653_8744387359556553576_n.enc?ccb=11-4&oh=01_Q5Aa3wHimkg41A5xb0nWRB__-hgBfdmNC6cUedYgqAg4u8P66Q&oe=69B8466C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771102937\",\"waveform\":\"ABEUGxMVDgspU1dRRBI8NTlQMSg\\/SEo5Skg5QFZXLkA7RUZAOzwtOURBPxsjND4+ISxIRUZGQw9DRkNDR0RGSQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771102940,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:02:20'),
(18824, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50FE4F013B01F7B3F9FEC91472985E0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102940642,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:02:20'),
(18825, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50FE4F013B01F7B3F9FEC91472985E0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771102940642,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:02:21'),
(18826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:21'),
(18827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:20.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:21'),
(18828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50FE4F013B01F7B3F9FEC91472985E0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771102941794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:21.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:02:21'),
(18829, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50FE4F013B01F7B3F9FEC91472985E0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771102941794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:21.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:02:22'),
(18830, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:29.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:29'),
(18831, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:29.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:29'),
(18832, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:39.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:39'),
(18833, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:39.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:39'),
(18834, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:43.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:43'),
(18835, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC5410A0A65F6888AB6F29F0A6AF59E4\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Sim vamos ver como a tv vai reagir aqui qual quer coisa nois tenta outro app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6hx53lzGsdxJxVfckELzvGJOpKPvrbJWbm2wqeRRrwM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:43.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:02:43'),
(18836, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:43.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:44'),
(18837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:43.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:44'),
(18838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC5410A0A65F6888AB6F29F0A6AF59E4\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Sim vamos ver como a tv vai reagir aqui qual quer coisa nois tenta outro app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6hx53lzGsdxJxVfckELzvGJOpKPvrbJWbm2wqeRRrwM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102963,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:43.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:02:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:44.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:44'),
(18840, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:43.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:44'),
(18841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:44.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:44'),
(18842, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:45.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:45'),
(18843, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:45.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:45'),
(18844, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:51.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:51'),
(18845, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:51.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:51'),
(18846, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:53.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:53'),
(18847, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:53.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:53'),
(18848, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:59'),
(18849, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC1A79D6A373CA5001550709368222BE\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Qual e o valor mensal?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SPsdJNtc3n\\/4Pul+WLQK3U3ijl63DvkCSm0jugKwHFE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102979,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:02:59'),
(18850, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:02:59'),
(18851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:59'),
(18852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:02:59'),
(18853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:03:00'),
(18854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:03:00'),
(18855, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC1A79D6A373CA5001550709368222BE\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Qual e o valor mensal?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SPsdJNtc3n\\/4Pul+WLQK3U3ijl63DvkCSm0jugKwHFE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771102979,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:02:59.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:03:01'),
(18856, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC21929AA96999A3021EE60ADDA4CACB\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:03:27.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:03:27'),
(18857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:03:27.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:03:27'),
(18858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:03:27.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:03:27'),
(18859, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC21929AA96999A3021EE60ADDA4CACB\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:03:27.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:03:27'),
(18860, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634428180_1473125111086016_4049856401235497778_n.enc?ccb=11-4&oh=01_Q5Aa3wFaAjpdteVJlBuNy9CHT8k9fVcgutNuHUhsPTytAldtOw&oe=69B84FD5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"AAXY+8enhnyEwBv4uG6THg0AuDc2aMvldJXHmoLXL0w=\",\"fileLength\":\"37487\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"0EaUcCZtqlxdhEclgb9it22oyMETM244iXjFm0B5zPU=\",\"fileEncSha256\":\"UL4Q\\/t16wUqjcD89ycWVIXuEOFlmvGCx\\/RZC5cgwvDM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634428180_1473125111086016_4049856401235497778_n.enc?ccb=11-4&oh=01_Q5Aa3wFaAjpdteVJlBuNy9CHT8k9fVcgutNuHUhsPTytAldtOw&oe=69B84FD5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103069\",\"waveform\":\"ACM\\/LlVQJDhEKClUAAgATF0\\/QlVSUTpDPyVFTg9WEE4QHBpPPzVRICImAAAAO09ISUhAJ0lDAjJPOEQhRkgWPw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103085,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:04:45'),
(18861, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:04:45'),
(18862, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:04:45'),
(18863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:04:46'),
(18864, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103085755,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:04:46'),
(18865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:04:46'),
(18866, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/634428180_1473125111086016_4049856401235497778_n.enc?ccb=11-4&oh=01_Q5Aa3wFaAjpdteVJlBuNy9CHT8k9fVcgutNuHUhsPTytAldtOw&oe=69B84FD5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"AAXY+8enhnyEwBv4uG6THg0AuDc2aMvldJXHmoLXL0w=\",\"fileLength\":\"37487\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"0EaUcCZtqlxdhEclgb9it22oyMETM244iXjFm0B5zPU=\",\"fileEncSha256\":\"UL4Q\\/t16wUqjcD89ycWVIXuEOFlmvGCx\\/RZC5cgwvDM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/634428180_1473125111086016_4049856401235497778_n.enc?ccb=11-4&oh=01_Q5Aa3wFaAjpdteVJlBuNy9CHT8k9fVcgutNuHUhsPTytAldtOw&oe=69B84FD5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103069\",\"waveform\":\"ACM\\/LlVQJDhEKClUAAgATF0\\/QlVSUTpDPyVFTg9WEE4QHBpPPzVRICImAAAAO09ISUhAJ0lDAjJPOEQhRkgWPw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103085,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:04:46'),
(18867, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103085755,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:45.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:04:46'),
(18868, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103090268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:50.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:04:50'),
(18869, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103090268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:50.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:04:50'),
(18870, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103091245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:51.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:04:51'),
(18871, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A51F1F3F5D62AC6CA56ACF4386E60A96\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103091245,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:04:51.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:04:51'),
(18872, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:01.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:05:02'),
(18873, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:01.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:05:02'),
(18874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:02.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:05:02'),
(18875, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5A6F3879787841073F8D9064BB1649F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"+4KUaSUQ4yJ7H17PATkZxYtrGB8FDNlcL6UMocexGtc=\",\"fileEncSha256\":\"6IATO75ipogGvZIzPhD5WanaMn232gHTFCPsFfqQzkY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&_nc_hot=1771103101\",\"mediaKeyTimestamp\":\"1771103100\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771103101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:01.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:05:02'),
(18876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:02.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:05:02'),
(18877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5A6F3879787841073F8D9064BB1649F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"+4KUaSUQ4yJ7H17PATkZxYtrGB8FDNlcL6UMocexGtc=\",\"fileEncSha256\":\"6IATO75ipogGvZIzPhD5WanaMn232gHTFCPsFfqQzkY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&_nc_hot=1771103101\",\"mediaKeyTimestamp\":\"1771103100\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771103101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:01.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:05:03'),
(18878, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6F3879787841073F8D9064BB1649F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103102215,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:02.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:05:03'),
(18879, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5A6F3879787841073F8D9064BB1649F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103102215,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:02.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:05:03'),
(18880, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:55.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:05:55'),
(18881, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:05:55.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:05:55'),
(18882, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:01.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:02'),
(18883, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:01.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:02'),
(18884, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:03'),
(18885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC3713EAF2CC75807BDBC850A47C2C1A\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"35 reais então ne?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pbUcn8hpOT9CsNL4UDrDIOnMKlCmRrevsQn1Yukq+BA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103163,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:06:03'),
(18886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:03'),
(18887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:03'),
(18888, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC3713EAF2CC75807BDBC850A47C2C1A\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"35 reais então ne?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pbUcn8hpOT9CsNL4UDrDIOnMKlCmRrevsQn1Yukq+BA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103163,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:06:03'),
(18889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:04'),
(18890, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:04'),
(18891, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:04'),
(18892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:04'),
(18893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:03.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:04'),
(18894, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:08.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:08'),
(18895, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:08.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:08');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18896, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:09.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:09'),
(18897, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:09.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:09'),
(18898, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:12'),
(18899, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:12'),
(18900, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8D437A5C4114976902CBD301EE0074\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou pega uma tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6LOTMxAaGGIdfYJyp0TD8sGq2PD3FX+8i9PXJwk9Ob4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103171,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:06:12'),
(18901, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:12'),
(18902, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:12'),
(18903, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8D437A5C4114976902CBD301EE0074\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou pega uma tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6LOTMxAaGGIdfYJyp0TD8sGq2PD3FX+8i9PXJwk9Ob4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103171,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:06:13'),
(18904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:06:13'),
(18905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:06:12.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:06:13'),
(18906, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635025721_788487194294141_118148605169860671_n.enc?ccb=11-4&oh=01_Q5Aa3wHDIq76lX6a-IJ8ZMDzwU4Gk2v9LZV9FmPpH_wli2H_iQ&oe=69B8553D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"p\\/lqqmCmE2OXXzfyB6CklVN6yHrz71EDmrdXlUvrCA4=\",\"fileLength\":\"32919\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"KEpgt\\/LNUskUjNGdJRKTRQUt9l9mK0T7U6b+TnCx8BU=\",\"fileEncSha256\":\"f7d5eaezY8d631EhOdIDfsAuFN3JUXAHqAoSedsW5+M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635025721_788487194294141_118148605169860671_n.enc?ccb=11-4&oh=01_Q5Aa3wHDIq76lX6a-IJ8ZMDzwU4Gk2v9LZV9FmPpH_wli2H_iQ&oe=69B8553D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103395\",\"waveform\":\"AAAAHR4gMlxSUk4xTVFLW1Y1Q01dNltYQERAVEkqUk9NFExaQCYnTDNLAAgWDUdiWkJXRC4fKFxdOT4ADg0AEA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103408,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:10:09'),
(18907, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:10:09'),
(18908, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:10:09'),
(18909, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:10:09'),
(18910, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103408953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:10:09'),
(18911, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:10:09'),
(18912, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635025721_788487194294141_118148605169860671_n.enc?ccb=11-4&oh=01_Q5Aa3wHDIq76lX6a-IJ8ZMDzwU4Gk2v9LZV9FmPpH_wli2H_iQ&oe=69B8553D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"p\\/lqqmCmE2OXXzfyB6CklVN6yHrz71EDmrdXlUvrCA4=\",\"fileLength\":\"32919\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"KEpgt\\/LNUskUjNGdJRKTRQUt9l9mK0T7U6b+TnCx8BU=\",\"fileEncSha256\":\"f7d5eaezY8d631EhOdIDfsAuFN3JUXAHqAoSedsW5+M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635025721_788487194294141_118148605169860671_n.enc?ccb=11-4&oh=01_Q5Aa3wHDIq76lX6a-IJ8ZMDzwU4Gk2v9LZV9FmPpH_wli2H_iQ&oe=69B8553D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103395\",\"waveform\":\"AAAAHR4gMlxSUk4xTVFLW1Y1Q01dNltYQERAVEkqUk9NFExaQCYnTDNLAAgWDUdiWkJXRC4fKFxdOT4ADg0AEA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103408,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:10:09'),
(18913, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103408953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:08.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:10:09'),
(18914, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:10:15'),
(18915, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:10:15'),
(18916, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637111772_1557760528784593_7495069604061809925_n.enc?ccb=11-4&oh=01_Q5Aa3wHUx8XEHwq-UcAcXoc-wHIsv98G7sAJjWXJsLorKg3WqQ&oe=69B83D49&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"nnWu\\/zkf5KOSrRQ5sgUHUzAk7sNGmIWmoPJcTlTQeVc=\",\"fileLength\":\"13527\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"GjRpL+y2aXwySrKlIr2UcWMF1fYS5u0exz0n6W2+1jg=\",\"fileEncSha256\":\"ZNLi1v29rfbbiOHVcKEcpWtSwd9xw+gpVyZceum3jS4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637111772_1557760528784593_7495069604061809925_n.enc?ccb=11-4&oh=01_Q5Aa3wHUx8XEHwq-UcAcXoc-wHIsv98G7sAJjWXJsLorKg3WqQ&oe=69B83D49&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103410\",\"waveform\":\"ABsoHQ0cFRUcE0VGQC9hXVFFLk4rS1NZK1BPUk8HFDRUVVhWVTMlT05TU1EuSiVPWENbIlFSQRdBOjlAREEAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:10:15'),
(18917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103415573,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:10:15'),
(18918, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:10:15'),
(18919, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637111772_1557760528784593_7495069604061809925_n.enc?ccb=11-4&oh=01_Q5Aa3wHUx8XEHwq-UcAcXoc-wHIsv98G7sAJjWXJsLorKg3WqQ&oe=69B83D49&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"nnWu\\/zkf5KOSrRQ5sgUHUzAk7sNGmIWmoPJcTlTQeVc=\",\"fileLength\":\"13527\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"GjRpL+y2aXwySrKlIr2UcWMF1fYS5u0exz0n6W2+1jg=\",\"fileEncSha256\":\"ZNLi1v29rfbbiOHVcKEcpWtSwd9xw+gpVyZceum3jS4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637111772_1557760528784593_7495069604061809925_n.enc?ccb=11-4&oh=01_Q5Aa3wHUx8XEHwq-UcAcXoc-wHIsv98G7sAJjWXJsLorKg3WqQ&oe=69B83D49&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103410\",\"waveform\":\"ABsoHQ0cFRUcE0VGQC9hXVFFLk4rS1NZK1BPUk8HFDRUVVhWVTMlT05TU1EuSiVPWENbIlFSQRdBOjlAREEAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:10:16'),
(18920, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103415573,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:10:16'),
(18921, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:15.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:10:16'),
(18922, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5C87F481DEAC70081746F6E66289BB1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637286001_838121145916351_1348571464743042209_n.enc?ccb=11-4&oh=01_Q5Aa3wGWI3aYNDSE3JynmcipGK1ecjc0Iaxh4zLCmIfQHV6-_Q&oe=69B8520A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ROAvuvbGt3fiI4dm8fFPz9dnPQ\\/XaAbCg26wac6\\/iPo=\",\"fileLength\":\"21734\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"1GvWNZtJSyrEMvsMXIojV2p6Cbqp0r2T8g\\/6UshabLY=\",\"fileEncSha256\":\"Z0pikC7LoQ6yDhS\\/udW2n+n4FIL5r5X80sCJP7Inn64=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637286001_838121145916351_1348571464743042209_n.enc?ccb=11-4&oh=01_Q5Aa3wGWI3aYNDSE3JynmcipGK1ecjc0Iaxh4zLCmIfQHV6-_Q&oe=69B8520A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103417\",\"waveform\":\"AAA3Pk8lW007KUlRQVVHUClVSk1KPT1JSE1KTjFSI0ggNEJVUFgEEgorBj9RXENTSUo3RkxEPS49LUokVk9HBw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:10:26'),
(18923, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:10:26'),
(18924, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:10:26'),
(18925, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:10:26'),
(18926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:10:26'),
(18927, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5C87F481DEAC70081746F6E66289BB1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637286001_838121145916351_1348571464743042209_n.enc?ccb=11-4&oh=01_Q5Aa3wGWI3aYNDSE3JynmcipGK1ecjc0Iaxh4zLCmIfQHV6-_Q&oe=69B8520A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ROAvuvbGt3fiI4dm8fFPz9dnPQ\\/XaAbCg26wac6\\/iPo=\",\"fileLength\":\"21734\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"1GvWNZtJSyrEMvsMXIojV2p6Cbqp0r2T8g\\/6UshabLY=\",\"fileEncSha256\":\"Z0pikC7LoQ6yDhS\\/udW2n+n4FIL5r5X80sCJP7Inn64=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637286001_838121145916351_1348571464743042209_n.enc?ccb=11-4&oh=01_Q5Aa3wGWI3aYNDSE3JynmcipGK1ecjc0Iaxh4zLCmIfQHV6-_Q&oe=69B8520A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771103417\",\"waveform\":\"AAA3Pk8lW007KUlRQVVHUClVSk1KPT1JSE1KTjFSI0ggNEJVUFgEEgorBj9RXENTSUo3RkxEPS49LUokVk9HBw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771103425,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:10:27'),
(18928, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5C87F481DEAC70081746F6E66289BB1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103426320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:10:27'),
(18929, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5C87F481DEAC70081746F6E66289BB1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771103426320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:10:26.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:10:27'),
(18930, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5C87F481DEAC70081746F6E66289BB1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103614159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:13:34'),
(18931, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103614170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:13:34'),
(18932, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103614176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:13:34'),
(18933, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103614170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:13:34'),
(18934, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5C87F481DEAC70081746F6E66289BB1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103614159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:13:34'),
(18935, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103614922,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:13:35'),
(18936, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103614176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:13:35'),
(18937, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E686B5D7D5D5EFB20FB05D5172461C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103614922,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:34.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:13:35'),
(18938, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103629806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:49.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:13:49'),
(18939, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5E6AAFCBDF089B09D687F7563ED90A0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103629806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:49.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:13:50'),
(18940, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5C87F481DEAC70081746F6E66289BB1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103636492,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:56.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:13:56'),
(18941, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5C87F481DEAC70081746F6E66289BB1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771103636492,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:13:56.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:13:56'),
(18942, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:00.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:01'),
(18943, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:00.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:01'),
(18944, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:09.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:09'),
(18945, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:09.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:09'),
(18946, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:12.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:12'),
(18947, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:12.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:12'),
(18948, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:19.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:19'),
(18949, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:19.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:19'),
(18950, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:20'),
(18951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:20'),
(18952, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC665C1160F8865076AB47C9D862103F\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Então o primeiro mês e 85? Depois fica parcelas de 35\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mMP0+7q6qr\\/9Zh2VHWMSschRO+S2nDALgtmOkccIx2E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103720,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:15:20'),
(18953, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:20'),
(18954, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC665C1160F8865076AB47C9D862103F\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Então o primeiro mês e 85? Depois fica parcelas de 35\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mMP0+7q6qr\\/9Zh2VHWMSschRO+S2nDALgtmOkccIx2E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103720,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:20'),
(18955, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:20'),
(18956, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:20'),
(18957, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:20.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:20'),
(18958, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"148713578201136@lid\",\"labelId\":\"12\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:33'),
(18959, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"137392245710995@lid\",\"labelId\":\"9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:33'),
(18960, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1\",\"name\":\"Novo cliente\",\"color\":1,\"deleted\":false,\"predefinedId\":\"1\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:33'),
(18961, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"9\",\"name\":\"Pagamento em aberto\",\"color\":19,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:33'),
(18962, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"160043383185487@lid\",\"labelId\":\"3\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:33'),
(18963, 'labels.association', 'JTVPLAY', '{\"event\":\"labels.association\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"type\":\"add\",\"chatId\":\"129677997945025@lid\",\"labelId\":\"10\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:34'),
(18964, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8\",\"name\":\"Cadastro\",\"color\":18,\"deleted\":false,\"predefinedId\":\"8\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:34'),
(18965, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"10\",\"name\":\"Pagamento pendente internet\",\"color\":0,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:34'),
(18966, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5\",\"name\":\"Pedido finalizado\",\"color\":5,\"deleted\":false,\"predefinedId\":\"5\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:34'),
(18967, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"11\",\"name\":\"Vai pagar dia 30\\/11 xs\",\"color\":1,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:34'),
(18968, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"2\",\"name\":\"Novo pedido\",\"color\":2,\"deleted\":false,\"predefinedId\":\"2\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:35'),
(18969, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"7\",\"name\":\"Acompanhar\",\"color\":12,\"deleted\":false,\"predefinedId\":\"7\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:35'),
(18970, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3\",\"name\":\"Pagamento pendente\",\"color\":0,\"deleted\":false,\"predefinedId\":\"3\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:35'),
(18972, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"4\",\"name\":\"Pago\",\"color\":3,\"deleted\":false,\"predefinedId\":\"4\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:35'),
(18973, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"6\",\"name\":\"Importante\",\"color\":11,\"deleted\":false,\"predefinedId\":\"6\",\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:36'),
(18974, 'labels.edit', 'JTVPLAY', '{\"event\":\"labels.edit\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"12\",\"name\":\"Pagamento app em aberto\",\"color\":2,\"deleted\":false,\"instance\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:33.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:36'),
(18975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5ACAD285306770884532AB13FFDA292\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103747891,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:47.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:15:47'),
(18976, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5D53CCBFEFCE6F00FF365245867A23F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103747887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:47.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:15:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(18977, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A50AEE5F6727249B0F39680E1757F4B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103747882,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:47.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:15:47'),
(18978, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5ACAD285306770884532AB13FFDA292\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103747891,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:47.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:48'),
(18979, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A5D53CCBFEFCE6F00FF365245867A23F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103747887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:47.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:48'),
(18980, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A50AEE5F6727249B0F39680E1757F4B9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771103747882,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:47.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:48'),
(18981, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:50.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:50'),
(18982, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:50.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:50'),
(18983, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:55'),
(18984, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":false,\"id\":\"ACE2B82D4B57B9C9A761A56C16821312\"},\"pushName\":\"Silvia\",\"message\":{\"conversation\":\"Minha filha tá tomando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"J2F1BxwRiXNI\\/FWVbAfAwAu87N5YCLEsCvp9m01A6dQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103755,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:15:55'),
(18985, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:55'),
(18986, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:55'),
(18987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":false,\"id\":\"ACE2B82D4B57B9C9A761A56C16821312\"},\"pushName\":\"Silvia\",\"message\":{\"conversation\":\"Minha filha tá tomando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"J2F1BxwRiXNI\\/FWVbAfAwAu87N5YCLEsCvp9m01A6dQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103755,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:15:55'),
(18988, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:56'),
(18989, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"presences\":{\"70034340749432@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:56'),
(18990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:56'),
(18991, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:56'),
(18992, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:55.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:15:56'),
(18993, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":false,\"id\":\"AC824EC8C3D2EE90336CADF40A3C55FF\"},\"pushName\":\"Silvia\",\"message\":{\"conversation\":\"Vou falar pra ela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NcpVGstsCxJ\\/P1Ya17eTG\\/Mr6IGmHUIvn5wIFzQTjCA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103759,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:59.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:15:59'),
(18994, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:59.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:15:59'),
(18995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:59.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:16:00'),
(18996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"70034340749432@lid\",\"fromMe\":false,\"id\":\"AC824EC8C3D2EE90336CADF40A3C55FF\"},\"pushName\":\"Silvia\",\"message\":{\"conversation\":\"Vou falar pra ela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NcpVGstsCxJ\\/P1Ya17eTG\\/Mr6IGmHUIvn5wIFzQTjCA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771103759,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:15:59.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:16:00'),
(18997, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:16:00.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:16:00'),
(18998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"70034340749432@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:16:00.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:16:00'),
(18999, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:16:00.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:16:00'),
(19000, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"70034340749432@lid\",\"pushName\":\"Silvia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491872167_697765263414366_6664480673092136078_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsBjt2ofk3tuXTHauvjrtTxpqpK2O1Ao9R4qYNMDWsuQ&oe=699DE906&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:16:00.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:16:00'),
(19001, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:18.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:19'),
(19002, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:18.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:19'),
(19003, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:21.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:21'),
(19004, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:21.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:22'),
(19005, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:23.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:23'),
(19006, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:23.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:23'),
(19007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:25.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:25'),
(19008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:25.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:25'),
(19009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:26.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:26'),
(19010, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:26.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:26'),
(19011, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:30.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:30'),
(19012, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:30.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:30'),
(19013, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:31.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:32'),
(19014, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:31.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:32'),
(19015, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:37.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:37'),
(19016, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:37.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:37'),
(19017, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:39.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:39'),
(19018, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:39.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:39'),
(19019, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02105032600F125312D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104099,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:39.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:21:39'),
(19020, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:39.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:40'),
(19021, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:39.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:40'),
(19022, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02105032600F125312D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104099,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:39.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:21:40'),
(19023, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:42.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:42'),
(19024, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:42.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:42'),
(19025, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:46.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:46'),
(19026, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:46.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:46'),
(19027, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:49.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:49'),
(19028, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:49.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:49'),
(19029, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:52.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:52'),
(19030, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:52.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:52'),
(19031, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:54.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:54'),
(19032, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:54.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:54'),
(19033, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:54.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:21:54'),
(19034, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9018A49A994DB365B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104114,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:54.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:21:54'),
(19035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:54.367Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:21:54'),
(19036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9018A49A994DB365B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104114,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:21:54.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:21:55'),
(19037, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:05.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:06'),
(19038, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:05.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:06'),
(19039, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:07.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:07'),
(19040, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09606F96ABCBF059ADC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104127,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:07.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:22:07'),
(19041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:07.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:08'),
(19042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:08.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:08'),
(19043, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:08.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:08'),
(19044, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CDA8C1500EB3884E01\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771104128,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:08.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:08'),
(19045, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CDA8C1500EB3884E01\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771104128,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:08.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:08'),
(19046, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09606F96ABCBF059ADC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104127,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:07.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:22:08'),
(19047, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B7202B71A0B031CD3D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771104128,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:09.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:09'),
(19048, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B7202B71A0B031CD3D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN*\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🛑 *\\/parar* - Pausar bot\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771104128,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:09.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:09'),
(19049, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:27.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:27'),
(19050, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:27.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:27'),
(19051, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:38.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:38'),
(19052, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:38.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:38'),
(19053, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:40.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:40'),
(19054, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:40.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19055, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A841C1A7FDDC75F2B50\"},\"pushName\":\"Thay\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esse compt que me mandou nao esta entrando.\",\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5S15TjpKM7mEIUfqtFnHykxQWwtA\\/Z1DNPCDKQ49Xqs=\"}},\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771104166,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:22:46'),
(19056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A841C1A7FDDC75F2B50\"},\"pushName\":\"Thay\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esse compt que me mandou nao esta entrando.\",\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5S15TjpKM7mEIUfqtFnHykxQWwtA\\/Z1DNPCDKQ49Xqs=\"}},\"contextInfo\":{\"stanzaId\":\"A57E5C6365427960EF33422E9DE7255B\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 888203503\\n✅ *Senha:* 584202947\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771104166,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:22:46'),
(19057, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:46'),
(19058, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:46'),
(19059, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:46'),
(19060, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:22:46'),
(19061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:46'),
(19062, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:22:46.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:22:47'),
(19063, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A55A3A93AF89EC0A56C57AA1E5D41929\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771104434042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:27:14.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:27:14'),
(19064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"70034340749432@lid\",\"id\":\"A55A3A93AF89EC0A56C57AA1E5D41929\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771104434042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:27:14.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:27:15'),
(19065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5A51271CED512538F47A0AEA6A9FC9C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771104549097,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:09.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:29:09'),
(19066, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5A51271CED512538F47A0AEA6A9FC9C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771104549097,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:09.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:29:09'),
(19067, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:09.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:29:09'),
(19068, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5A51271CED512538F47A0AEA6A9FC9C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636892347_759603690129360_940825985184165094_n.enc?ccb=11-4&oh=01_Q5Aa3wGO0Yq2jCsvngwaOz09BTiX5mCckPwvGh_adrH5LgFNxg&oe=69B85A5C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ppXjIoZ9AnP4PVSQ1t6taYowqeqY6W3\\/sVT6ljZ9buA=\",\"fileLength\":\"6626\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"hSqEMlxxIFLog50bncEkFVpTqQxlPIU3UbHgiVpfw9U=\",\"fileEncSha256\":\"yD1HAoc01Wj0CLNKHbitAnO4lK0OuCrSEWmMz\\/i0XcY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636892347_759603690129360_940825985184165094_n.enc?ccb=11-4&oh=01_Q5Aa3wGO0Yq2jCsvngwaOz09BTiX5mCckPwvGh_adrH5LgFNxg&oe=69B85A5C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771104545\",\"waveform\":\"AAAAAAEdW11RUElRYWFeJxxDWVJEI0JVW1RBMUM5S1E8Lj02IkROS0dBNUdISEZAPUdJSzY5REhLRzkuQE5MUg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771104549,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:09.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:29:09'),
(19069, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:10.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:29:10'),
(19070, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:09.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:29:10'),
(19071, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5A51271CED512538F47A0AEA6A9FC9C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636892347_759603690129360_940825985184165094_n.enc?ccb=11-4&oh=01_Q5Aa3wGO0Yq2jCsvngwaOz09BTiX5mCckPwvGh_adrH5LgFNxg&oe=69B85A5C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ppXjIoZ9AnP4PVSQ1t6taYowqeqY6W3\\/sVT6ljZ9buA=\",\"fileLength\":\"6626\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"hSqEMlxxIFLog50bncEkFVpTqQxlPIU3UbHgiVpfw9U=\",\"fileEncSha256\":\"yD1HAoc01Wj0CLNKHbitAnO4lK0OuCrSEWmMz\\/i0XcY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636892347_759603690129360_940825985184165094_n.enc?ccb=11-4&oh=01_Q5Aa3wGO0Yq2jCsvngwaOz09BTiX5mCckPwvGh_adrH5LgFNxg&oe=69B85A5C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771104545\",\"waveform\":\"AAAAAAEdW11RUElRYWFeJxxDWVJEI0JVW1RBMUM5S1E8Lj02IkROS0dBNUdISEZAPUdJSzY5REhLRzkuQE5MUg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771104549,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:09.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:29:10'),
(19072, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:10.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:29:10'),
(19073, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:38.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:29:38'),
(19074, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:38.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:29:39'),
(19075, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:41.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:29:41'),
(19076, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:41.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:29:41'),
(19077, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0919CADDF991C8E8846\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104581,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:41.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:29:41'),
(19078, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:41.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:29:42'),
(19079, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0919CADDF991C8E8846\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104581,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:41.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:29:42'),
(19080, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:29:41.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:29:42'),
(19081, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:07.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:08'),
(19082, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:07.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:08'),
(19083, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:17.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:18'),
(19084, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:17.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:18'),
(19085, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:27.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:27'),
(19086, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:27.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:28'),
(19087, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:30'),
(19088, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:30'),
(19089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACD3DD9A96312D6368472BB5E112AC15\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Amigo meu me passou que ele paga 35 mensal pra vc uma tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"grI\\/eOL8S\\/pmWY3R+FX36RKjY7NeHDHYgjgP3yvMv+g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771104870,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:34:30'),
(19090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:30'),
(19091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:30'),
(19092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:30'),
(19093, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:31'),
(19094, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACD3DD9A96312D6368472BB5E112AC15\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Amigo meu me passou que ele paga 35 mensal pra vc uma tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"grI\\/eOL8S\\/pmWY3R+FX36RKjY7NeHDHYgjgP3yvMv+g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771104870,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:30.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:34:31'),
(19095, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:35.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:35'),
(19096, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:35.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:35'),
(19097, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:45.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:45'),
(19098, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:45.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:46'),
(19099, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:53.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:53'),
(19100, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:53.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:53'),
(19101, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:53.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:53'),
(19102, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:53.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:53'),
(19103, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:56.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:34:56'),
(19104, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:34:56.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:34:56'),
(19105, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:00.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:01'),
(19106, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:00.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:01'),
(19107, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:06.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:06'),
(19108, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:06.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:07'),
(19109, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:10.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:10'),
(19110, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:10.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:10'),
(19111, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:11'),
(19112, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC55E5CB13F59B03AFF3B4C2B7532ED6\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Então se ele pedir pra vc mais uma tela consegue fazer 35 para os dois ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z2ul9OQBML0jqoUgWp2+LWIEUegPJgGMaSKm1xTIBnI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771104911,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:35:11'),
(19113, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:11'),
(19114, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:11'),
(19115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:12'),
(19116, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC55E5CB13F59B03AFF3B4C2B7532ED6\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Então se ele pedir pra vc mais uma tela consegue fazer 35 para os dois ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z2ul9OQBML0jqoUgWp2+LWIEUegPJgGMaSKm1xTIBnI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771104911,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:35:12'),
(19117, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:12'),
(19118, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:11.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:12'),
(19119, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:13.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:13'),
(19120, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01C9E4BFAE15885B68C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104913,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:13.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:35:13'),
(19121, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:13.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:13'),
(19122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:13.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:13'),
(19123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:13.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:13'),
(19124, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01C9E4BFAE15885B68C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104913,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:13.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:35:14'),
(19125, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:23.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:24'),
(19126, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:23.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:24'),
(19127, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:27.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:27'),
(19128, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:27.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:27'),
(19129, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AF7977E8A6DF5AA395\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104927,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:27.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:35:27'),
(19130, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:27.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:28'),
(19131, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:28.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:28'),
(19132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:27.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:28'),
(19133, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:28.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:28');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19134, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AF7977E8A6DF5AA395\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cadastro\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771104927,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:27.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:35:28'),
(19135, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:32.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:32'),
(19136, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:32.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:32'),
(19137, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:34.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:34'),
(19138, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:34.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:34'),
(19139, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACD7AE1E06BED3491BFF399A4362801B\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Sem pegar esse valor no primeiro mês a mais aí que vc tá falando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/bdKsvVoZ1wEvgr6tcXcem9wW2jrDNzuJFn8LTlCjRs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771104941,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:35:41'),
(19140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:41'),
(19141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:41'),
(19142, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:41'),
(19143, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACD7AE1E06BED3491BFF399A4362801B\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Sem pegar esse valor no primeiro mês a mais aí que vc tá falando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/bdKsvVoZ1wEvgr6tcXcem9wW2jrDNzuJFn8LTlCjRs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771104941,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:35:41'),
(19144, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:42'),
(19145, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:35:42'),
(19146, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:35:41.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:35:42'),
(19147, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73139014860912@lid\",\"presences\":{\"73139014860912@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:00.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:01'),
(19148, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"73139014860912@lid\",\"presences\":{\"73139014860912@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:00.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:01'),
(19149, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AC8D8336DB449CF7C48\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8OHIUZclXOVmtkZtAGgVJDA5cltCcqGWJJ9Q90vZ1wU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105281,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:41:21'),
(19150, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A8237D8F19BFA0FBC6B\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588574807_914546364277185_3296400286350286378_n.enc?ccb=11-4&oh=01_Q5Aa3wHX9mExp9LaWvPpqdka_kKQOWc9ZCMfXuRE7s-YbyY6Hg&oe=69B8588C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"bcI8faMS\\/AHDLG2hoOb48O0zR0iZ7qeFE6GoY\\/j6J7A=\",\"fileLength\":\"7416\",\"height\":491,\"width\":251,\"mediaKey\":\"ScyxLAVd\\/qJtXijUYhCxZ8HEsdZsypRts2zHc3n1Y3o=\",\"fileEncSha256\":\"Q++akJ8Scj0z7gsaF5Fnl6yrLPFU3l2R69f6KETeyUs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588574807_914546364277185_3296400286350286378_n.enc?ccb=11-4&oh=01_Q5Aa3wHX9mExp9LaWvPpqdka_kKQOWc9ZCMfXuRE7s-YbyY6Hg&oe=69B8588C&_nc_sid=5e03e0&_nc_hot=1771105280\",\"mediaKeyTimestamp\":\"1771105222\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACUDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECBAMF\\/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAECA\\/\\/aAAwDAQACEAMQAAAA85j74TpCKIN2a418cuuYxDL0erjcO1EcCy2XNAMhDDjYbVQYAEv\\/xAAcEQABAwUAAAAAAAAAAAAAAAABABAxAhESICH\\/2gAIAQIBAT8Ac9NlUMWKmdS\\/\\/8QAGxEBAAICAwAAAAAAAAAAAAAAAQIQACEwMUH\\/2gAIAQMBAT8AvzISV3YB1wf\\/xAApEAACAgECAwcFAAAAAAAAAAABAgADEQQFEBIxExQhQVFSkRUgIjNh\\/9oACAEBAAE\\/APtxAM9JyN7T8THBFLMFHUmW317bYtIoFjEZLGHdPwz3YRWTcKLLUqFbV+nnw0oHea8+s31iu4KB7YbCKj0mxnm02pJhHiYh5XDDyOZq9GdztS6u1VIXBBh2TUFMdssoq+m6a2trFd7PTy4Uor55mxAiqw5XI\\/sySP3N8wIjdX8Y4UNhTkQcMTExAYOOIGgMBmeH\\/\\/4AAwD\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"WC3Qbrx5z1kznjlqLhe4Ya2YEXbqG3wJACHpkWm1fQrpgGMyI5IgJQ==\",\"scanLengths\":[1270,3805,978,1363],\"midQualityFileSha256\":\"fUSNqcqc0BwWig7jYk+IigFRKkgEuZIHWEW+B1IZ3U4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9Ixw0uuwk2dHuYW24yUwBgbQw\\/rA36FZ+qfCehLPWbs=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771105281,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:41:21'),
(19151, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:21'),
(19152, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:21'),
(19153, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:22'),
(19154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:22'),
(19155, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:22'),
(19156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AC8D8336DB449CF7C48\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8OHIUZclXOVmtkZtAGgVJDA5cltCcqGWJJ9Q90vZ1wU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105281,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:41:22'),
(19157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:22'),
(19158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A8237D8F19BFA0FBC6B\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588574807_914546364277185_3296400286350286378_n.enc?ccb=11-4&oh=01_Q5Aa3wHX9mExp9LaWvPpqdka_kKQOWc9ZCMfXuRE7s-YbyY6Hg&oe=69B8588C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"bcI8faMS\\/AHDLG2hoOb48O0zR0iZ7qeFE6GoY\\/j6J7A=\",\"fileLength\":\"7416\",\"height\":491,\"width\":251,\"mediaKey\":\"ScyxLAVd\\/qJtXijUYhCxZ8HEsdZsypRts2zHc3n1Y3o=\",\"fileEncSha256\":\"Q++akJ8Scj0z7gsaF5Fnl6yrLPFU3l2R69f6KETeyUs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588574807_914546364277185_3296400286350286378_n.enc?ccb=11-4&oh=01_Q5Aa3wHX9mExp9LaWvPpqdka_kKQOWc9ZCMfXuRE7s-YbyY6Hg&oe=69B8588C&_nc_sid=5e03e0&_nc_hot=1771105280\",\"mediaKeyTimestamp\":\"1771105222\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACUDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECBAMF\\/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAECA\\/\\/aAAwDAQACEAMQAAAA85j74TpCKIN2a418cuuYxDL0erjcO1EcCy2XNAMhDDjYbVQYAEv\\/xAAcEQABAwUAAAAAAAAAAAAAAAABABAxAhESICH\\/2gAIAQIBAT8Ac9NlUMWKmdS\\/\\/8QAGxEBAAICAwAAAAAAAAAAAAAAAQIQACEwMUH\\/2gAIAQMBAT8AvzISV3YB1wf\\/xAApEAACAgECAwcFAAAAAAAAAAABAgADEQQFEBIxExQhQVFSkRUgIjNh\\/9oACAEBAAE\\/APtxAM9JyN7T8THBFLMFHUmW317bYtIoFjEZLGHdPwz3YRWTcKLLUqFbV+nnw0oHea8+s31iu4KB7YbCKj0mxnm02pJhHiYh5XDDyOZq9GdztS6u1VIXBBh2TUFMdssoq+m6a2trFd7PTy4Uor55mxAiqw5XI\\/sySP3N8wIjdX8Y4UNhTkQcMTExAYOOIGgMBmeH\\/\\/4AAwD\\/2Q==\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"scansSidecar\":\"WC3Qbrx5z1kznjlqLhe4Ya2YEXbqG3wJACHpkWm1fQrpgGMyI5IgJQ==\",\"scanLengths\":[1270,3805,978,1363],\"midQualityFileSha256\":\"fUSNqcqc0BwWig7jYk+IigFRKkgEuZIHWEW+B1IZ3U4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9Ixw0uuwk2dHuYW24yUwBgbQw\\/rA36FZ+qfCehLPWbs=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771105281,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:41:22'),
(19159, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:22'),
(19160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:23'),
(19161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:22.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:23'),
(19162, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:23'),
(19163, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:22.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:23'),
(19164, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:21.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:23'),
(19165, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AC0B3E94526E53A361E\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637057778_26100855169508996_5414421973043685160_n.enc?ccb=11-4&oh=01_Q5Aa3wF8VjUO3rAoJCBsR1-hk-mazIPt9cBEEvn2g-KI2N_v5g&oe=69B87788&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"HYGn7Fg\\/LAzy80T3yijtYk0higd0M3CkTThIf6\\/ieI4=\",\"fileLength\":\"307691\",\"height\":1152,\"width\":2048,\"mediaKey\":\"aCfQYNW1PH9aXdKcGSOG85g5ttnFPn3hLcWuCJ+YDco=\",\"fileEncSha256\":\"rpPd7nknaJpmRrkkbj+YQiVzvoSb8Tav32jvdVCTcUQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637057778_26100855169508996_5414421973043685160_n.enc?ccb=11-4&oh=01_Q5Aa3wF8VjUO3rAoJCBsR1-hk-mazIPt9cBEEvn2g-KI2N_v5g&oe=69B87788&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105301\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQFBv\\/EABkBAAIDAQAAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA4i6E6L+Yusw5C7I1xV2Ca5BuGq9V0dedGWN8NlUU1VC1XRygc3T6LLmhfREkttdknHJoqTlrz4jQczVWs7iaChBNRIu4pmMGRdcgiwAEAAAGgCL\\/AP\\/EACQRAAICAQIFBQAAAAAAAAAAAAABAhESAzEEEyFBkSAiUVJh\\/9oACAECAQE\\/AM12T8Gf4\\/ApSe0WVqfUSfdUSXXYjw6auxcPFPcekqNRe4WVVZGSxXUetPm1XT5sepGtybt2zmM5jMmZsc\\/V\\/8QAIBEAAgIBBAMBAAAAAAAAAAAAAAECERIDIUFRECAiMf\\/aAAgBAwEBPwDEpdnz2XDs24FIeoOboUqIvYdceFpwend7iTsj+GCMEYpGKMfb\\/8QAKhAAAQQBAwIFBAMAAAAAAAAAAQACAxEEEiExE0EFEBQyUSJhcYEgNEP\\/2gAIAQEAAT8ANlAeVLZFUqXHKZgQOO2RaODiA0ZnJnh2K7iUp+Dhs92pDDwhvRcnRYLQT0Smz4Udj01\\/lDMxQf6rV4hkxTxtbHE1lfCxjI11tFrrm9Mkf7Tei72v0n4Ke8htF4cF1I6HIP2UspLdqKdbjdJzS0WjJuCRYHZQxNhcRVt7X2CdkxvLvo4UrmueS3hXSibE4fW8t\\/SeGC9LrQTvaU5peQ1o3TsYvGgygE7OPyp8VmMbEgIIW3byhBP+epTbMA6Wj7+T\\/aVLYF7hOypHOJpOlc4U7e1pJF1QWkrHyxiAlzLv5WT4gydoFUhugKNlZLmlgLtxaGTfOxXqPwvU2KJ2RyRWxUs7pRRRmJABAofCGTtwuuDyCFK8PFAFAKlpWlUqCpBuybuaHKC4\\/hXkC47BRtEbb7r\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"rOwnNulY3I9nNg==\",\"firstScanLength\":19757,\"scansSidecar\":\"rOwnNulY3I9nNv+RZuEg1ZgkGkFl1WLxSOHnJeiT9LxVu2kq6cFBNg==\",\"scanLengths\":[19757,76864,63676,147392],\"midQualityFileSha256\":\"MYZlg6rsgIUNeNjG\\/+kzet1pZ\\/rPAAFlhCn468TDpDo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IPdaUjzfTyAW8PwQb3KeAbMKqouya8xbq4BV2EIbfq8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771105303,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:41:43'),
(19166, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:43'),
(19167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:43'),
(19168, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:43'),
(19169, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:43'),
(19170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:44'),
(19171, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AC0B3E94526E53A361E\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637057778_26100855169508996_5414421973043685160_n.enc?ccb=11-4&oh=01_Q5Aa3wF8VjUO3rAoJCBsR1-hk-mazIPt9cBEEvn2g-KI2N_v5g&oe=69B87788&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"HYGn7Fg\\/LAzy80T3yijtYk0higd0M3CkTThIf6\\/ieI4=\",\"fileLength\":\"307691\",\"height\":1152,\"width\":2048,\"mediaKey\":\"aCfQYNW1PH9aXdKcGSOG85g5ttnFPn3hLcWuCJ+YDco=\",\"fileEncSha256\":\"rpPd7nknaJpmRrkkbj+YQiVzvoSb8Tav32jvdVCTcUQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637057778_26100855169508996_5414421973043685160_n.enc?ccb=11-4&oh=01_Q5Aa3wF8VjUO3rAoJCBsR1-hk-mazIPt9cBEEvn2g-KI2N_v5g&oe=69B87788&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105301\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQFBv\\/EABkBAAIDAQAAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAA4i6E6L+Yusw5C7I1xV2Ca5BuGq9V0dedGWN8NlUU1VC1XRygc3T6LLmhfREkttdknHJoqTlrz4jQczVWs7iaChBNRIu4pmMGRdcgiwAEAAAGgCL\\/AP\\/EACQRAAICAQIFBQAAAAAAAAAAAAABAhESAzEEEyFBkSAiUVJh\\/9oACAECAQE\\/AM12T8Gf4\\/ApSe0WVqfUSfdUSXXYjw6auxcPFPcekqNRe4WVVZGSxXUetPm1XT5sepGtybt2zmM5jMmZsc\\/V\\/8QAIBEAAgIBBAMBAAAAAAAAAAAAAAECERIDIUFRECAiMf\\/aAAgBAwEBPwDEpdnz2XDs24FIeoOboUqIvYdceFpwend7iTsj+GCMEYpGKMfb\\/8QAKhAAAQQBAwIFBAMAAAAAAAAAAQACAxEEEiExE0EFEBQyUSJhcYEgNEP\\/2gAIAQEAAT8ANlAeVLZFUqXHKZgQOO2RaODiA0ZnJnh2K7iUp+Dhs92pDDwhvRcnRYLQT0Smz4Udj01\\/lDMxQf6rV4hkxTxtbHE1lfCxjI11tFrrm9Mkf7Tei72v0n4Ke8htF4cF1I6HIP2UspLdqKdbjdJzS0WjJuCRYHZQxNhcRVt7X2CdkxvLvo4UrmueS3hXSibE4fW8t\\/SeGC9LrQTvaU5peQ1o3TsYvGgygE7OPyp8VmMbEgIIW3byhBP+epTbMA6Wj7+T\\/aVLYF7hOypHOJpOlc4U7e1pJF1QWkrHyxiAlzLv5WT4gydoFUhugKNlZLmlgLtxaGTfOxXqPwvU2KJ2RyRWxUs7pRRRmJABAofCGTtwuuDyCFK8PFAFAKlpWlUqCpBuybuaHKC4\\/hXkC47BRtEbb7r\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"rOwnNulY3I9nNg==\",\"firstScanLength\":19757,\"scansSidecar\":\"rOwnNulY3I9nNv+RZuEg1ZgkGkFl1WLxSOHnJeiT9LxVu2kq6cFBNg==\",\"scanLengths\":[19757,76864,63676,147392],\"midQualityFileSha256\":\"MYZlg6rsgIUNeNjG\\/+kzet1pZ\\/rPAAFlhCn468TDpDo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IPdaUjzfTyAW8PwQb3KeAbMKqouya8xbq4BV2EIbfq8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771105303,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:41:44'),
(19172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:43.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:44'),
(19173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:48.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:48'),
(19174, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:48.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:48'),
(19175, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:58.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:41:58'),
(19176, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:41:58.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:41:58'),
(19177, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:07.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:07'),
(19178, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:07.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:07'),
(19179, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:07.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:07'),
(19180, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:07.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:07'),
(19181, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:11'),
(19182, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/25486686_1641529860541129_3389255027607597773_n.enc?ccb=11-4&oh=01_Q5Aa3wEB1RI8hQO1fVi2-JKJh0JwSOSW-QWkzIVZPWIscgZ9gQ&oe=69B86D1E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TGI\\/0CPP66yaeqMJPTJ7ZMsVciTz\\/4uC7mnicR7Qf3A=\",\"fileLength\":\"28387\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"4o52piSyinYwyKspR7cp98oZ5fR\\/YHrSerPvxcgalj8=\",\"fileEncSha256\":\"fgPzXBkNQeqqzdMLeAkJSxxSfiHDR3Gh8AAm7bpHEKI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/25486686_1641529860541129_3389255027607597773_n.enc?ccb=11-4&oh=01_Q5Aa3wEB1RI8hQO1fVi2-JKJh0JwSOSW-QWkzIVZPWIscgZ9gQ&oe=69B86D1E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105320\",\"waveform\":\"AAYOBmNNVQ8SMVpFPTtZSzUJRkdOXVpNSE44Sk46VQMBEVI\\/RE9cTVNKPFBRJRIFQUJMWlpWViw9H1FPPD9MGQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105331,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:11'),
(19183, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:11'),
(19184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:11'),
(19185, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771105331410,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:11'),
(19186, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771105331410,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:12'),
(19187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:12'),
(19188, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/25486686_1641529860541129_3389255027607597773_n.enc?ccb=11-4&oh=01_Q5Aa3wEB1RI8hQO1fVi2-JKJh0JwSOSW-QWkzIVZPWIscgZ9gQ&oe=69B86D1E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TGI\\/0CPP66yaeqMJPTJ7ZMsVciTz\\/4uC7mnicR7Qf3A=\",\"fileLength\":\"28387\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"4o52piSyinYwyKspR7cp98oZ5fR\\/YHrSerPvxcgalj8=\",\"fileEncSha256\":\"fgPzXBkNQeqqzdMLeAkJSxxSfiHDR3Gh8AAm7bpHEKI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/25486686_1641529860541129_3389255027607597773_n.enc?ccb=11-4&oh=01_Q5Aa3wEB1RI8hQO1fVi2-JKJh0JwSOSW-QWkzIVZPWIscgZ9gQ&oe=69B86D1E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105320\",\"waveform\":\"AAYOBmNNVQ8SMVpFPTtZSzUJRkdOXVpNSE44Sk46VQMBEVI\\/RE9cTVNKPFBRJRIFQUJMWlpWViw9H1FPPD9MGQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105331,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:11.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:12'),
(19189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771105334211,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:14.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:14'),
(19190, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771105334211,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:14.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:14'),
(19191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771105334873,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:14.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:14'),
(19192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5358DB72EFB412A90C5BE3AC89C758B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771105334873,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:14.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:15'),
(19193, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:18.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:18'),
(19194, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:18.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:19'),
(19195, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:19.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:19'),
(19196, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:19.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:19'),
(19197, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:21');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A50EA0BEC5E546027A05110D0E803CFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637321984_679439791863780_2611776796141692857_n.enc?ccb=11-4&oh=01_Q5Aa3wGP35yQUJZSIGPWax977pKDjqFNztrtbXQ0QmiI1FiCYg&oe=69B867B6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ykes6S73HP0Q6Thi7JI4RwYypb60Nu1sG1WnL+jD5k8=\",\"fileLength\":\"20532\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"isDdj\\/8TnQdirb\\/iDgZeChmkIxjd3kEAORLNLZzyt7k=\",\"fileEncSha256\":\"qCVkt87vm\\/CABlBRpygCZcpwYEh8Uy9OZ2rbYNZqnWk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637321984_679439791863780_2611776796141692857_n.enc?ccb=11-4&oh=01_Q5Aa3wGP35yQUJZSIGPWax977pKDjqFNztrtbXQ0QmiI1FiCYg&oe=69B867B6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105333\",\"waveform\":\"AABRYFRcT0pFOGNUW1paDjJOOjc+RUpMVDQiPEBJTTVSYF44AAAAAABARk1OJQAAAAAAQE1SRTBIQ1ZNU1QzTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105341,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:21'),
(19199, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:21'),
(19200, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A50EA0BEC5E546027A05110D0E803CFC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637321984_679439791863780_2611776796141692857_n.enc?ccb=11-4&oh=01_Q5Aa3wGP35yQUJZSIGPWax977pKDjqFNztrtbXQ0QmiI1FiCYg&oe=69B867B6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ykes6S73HP0Q6Thi7JI4RwYypb60Nu1sG1WnL+jD5k8=\",\"fileLength\":\"20532\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"isDdj\\/8TnQdirb\\/iDgZeChmkIxjd3kEAORLNLZzyt7k=\",\"fileEncSha256\":\"qCVkt87vm\\/CABlBRpygCZcpwYEh8Uy9OZ2rbYNZqnWk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637321984_679439791863780_2611776796141692857_n.enc?ccb=11-4&oh=01_Q5Aa3wGP35yQUJZSIGPWax977pKDjqFNztrtbXQ0QmiI1FiCYg&oe=69B867B6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105333\",\"waveform\":\"AABRYFRcT0pFOGNUW1paDjJOOjc+RUpMVDQiPEBJTTVSYF44AAAAAABARk1OJQAAAAAAQE1SRTBIQ1ZNU1QzTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105341,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:21'),
(19201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50EA0BEC5E546027A05110D0E803CFC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771105341841,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:21'),
(19202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:22'),
(19203, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:22'),
(19204, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50EA0BEC5E546027A05110D0E803CFC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771105341841,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:21.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:22'),
(19205, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50EA0BEC5E546027A05110D0E803CFC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771105347690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:27.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:27'),
(19206, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A50EA0BEC5E546027A05110D0E803CFC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771105347690,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:27.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:27'),
(19207, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:29.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:29'),
(19208, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:29.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:29'),
(19209, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:36.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:36'),
(19210, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:36.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:36'),
(19211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:38'),
(19212, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC3F78C91524B133A6F794DFD5677758\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Haa blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Dap9dNbywEzcojbvQH7HGZIht5bRDmcS0FOotcmSgJo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105357,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:38'),
(19213, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:38'),
(19214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:38'),
(19215, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC3F78C91524B133A6F794DFD5677758\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Haa blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Dap9dNbywEzcojbvQH7HGZIht5bRDmcS0FOotcmSgJo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105357,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:38'),
(19216, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:39.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:39'),
(19217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:39'),
(19218, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:39.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:39'),
(19219, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:39'),
(19220, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:38.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:40'),
(19221, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:40.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:40'),
(19222, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:40.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:40'),
(19223, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE9BD4476743339B9811D01CE14514F\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Entendi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8uYPyBlEHSJ1QS00nWAF+nmSz6BwasutnmG47UiHyeM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:42'),
(19224, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:42'),
(19225, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:42'),
(19226, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:42'),
(19227, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE9BD4476743339B9811D01CE14514F\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Entendi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8uYPyBlEHSJ1QS00nWAF+nmSz6BwasutnmG47UiHyeM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:42'),
(19228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:43'),
(19229, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:43'),
(19230, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:42.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:43'),
(19231, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A54898F2F9025CD531D707B26E3DCB72\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635128813_1314072007196404_876041088381067045_n.enc?ccb=11-4&oh=01_Q5Aa3wFVqB3qriR4mq7tFJvXPkVqh26HeBzrPgUygvCOuPbTxQ&oe=69B8473F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jUGyhfjZF51hNGDaogRksHRCRtLy\\/ugGW4e+BG4Kpl4=\",\"fileLength\":\"21676\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"reacyzj8M+ckZOBQ8FvZTAjeI1gUNAaEYFBvOjfcjJM=\",\"fileEncSha256\":\"I91nF\\/1OpeYDTfc\\/Z5NAyQRd8caaloT4yGegAS715+k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635128813_1314072007196404_876041088381067045_n.enc?ccb=11-4&oh=01_Q5Aa3wFVqB3qriR4mq7tFJvXPkVqh26HeBzrPgUygvCOuPbTxQ&oe=69B8473F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105357\",\"waveform\":\"AAAAVBxgWU9EMUA6Gk0FVzJVCzlZSlRLU1RQRUBOUkBSSCFSEkFET0ktN0hOTFYTAgAAATtIUjMdPVlRRkkxAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105365,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:45'),
(19232, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:45'),
(19233, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:45'),
(19234, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A54898F2F9025CD531D707B26E3DCB72\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635128813_1314072007196404_876041088381067045_n.enc?ccb=11-4&oh=01_Q5Aa3wFVqB3qriR4mq7tFJvXPkVqh26HeBzrPgUygvCOuPbTxQ&oe=69B8473F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jUGyhfjZF51hNGDaogRksHRCRtLy\\/ugGW4e+BG4Kpl4=\",\"fileLength\":\"21676\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"reacyzj8M+ckZOBQ8FvZTAjeI1gUNAaEYFBvOjfcjJM=\",\"fileEncSha256\":\"I91nF\\/1OpeYDTfc\\/Z5NAyQRd8caaloT4yGegAS715+k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635128813_1314072007196404_876041088381067045_n.enc?ccb=11-4&oh=01_Q5Aa3wFVqB3qriR4mq7tFJvXPkVqh26HeBzrPgUygvCOuPbTxQ&oe=69B8473F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105357\",\"waveform\":\"AAAAVBxgWU9EMUA6Gk0FVzJVCzlZSlRLU1RQRUBOUkBSSCFSEkFET0ktN0hOTFYTAgAAATtIUjMdPVlRRkkxAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105365,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:45'),
(19235, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:45'),
(19236, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:46'),
(19237, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54898F2F9025CD531D707B26E3DCB72\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771105365922,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:46'),
(19238, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54898F2F9025CD531D707B26E3DCB72\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771105366870,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:46.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:46'),
(19239, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54898F2F9025CD531D707B26E3DCB72\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771105365922,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:45.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:47'),
(19240, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54898F2F9025CD531D707B26E3DCB72\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771105366870,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:46.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:47'),
(19241, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:50.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:50'),
(19242, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:50.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:50'),
(19243, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A2C8921C4627655BC03\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Primeira vez entrou, ai ontem estava assistindo normal. Sai e quando fui entrar de novo nao entrava mais.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"doZaCVC+8UoaztA+zmvy+rtGYdKGdHO5dZOD\\/2oYZtI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105377,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 1, '2026-02-14 18:42:57'),
(19244, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:57'),
(19245, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:57'),
(19246, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A2C8921C4627655BC03\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Primeira vez entrou, ai ontem estava assistindo normal. Sai e quando fui entrar de novo nao entrava mais.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"doZaCVC+8UoaztA+zmvy+rtGYdKGdHO5dZOD\\/2oYZtI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105377,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:42:57'),
(19247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:57'),
(19248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:58'),
(19249, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"0q3h7ivjqvufi0hz742h27o\"}', 0, '2026-02-14 18:42:58'),
(19250, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:42:57.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:42:58'),
(19251, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:05.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:05'),
(19252, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:07.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:08'),
(19253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E52C09D473F538B25\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771105447,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:07.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:44:08'),
(19254, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:08.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:08'),
(19255, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B71DA9AB698E9CD423\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771105448,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:08.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:09'),
(19256, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:18.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:18'),
(19257, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:20.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:20'),
(19258, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E7226562EC1FCC6FB0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/corrigir\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771105460,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:20.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:44:20'),
(19259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:20.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:21'),
(19260, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F19AD952EE84EDA587\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/corrigir TELEFONE_ANTIGO TELEFONE_NOVO\\n\\nExemplo: \\/corrigir 4784173345 47984173345\\n\\n📌 *Formatos aceitos:*\\n• 10 dígitos: 4784173345\\n• 11 dígitos: 47984173345\\n• 12 dígitos: 554791203777\\n• 13 dígitos: 5547991203777\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771105461,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:21.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:21'),
(19261, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:29.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:29'),
(19262, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:31.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:31'),
(19263, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CB694B311FCD303309\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771105471,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:31.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:44:31'),
(19264, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01ED984DE1013E3BBD0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771105471,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:31.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:32'),
(19265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:31.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:32'),
(19266, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:44:38.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:44:38');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19267, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A46168B2EF254BDD1CA\"},\"pushName\":\"Thay\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/635017381_1603439800891291_5845957157886759743_n.enc?ccb=11-4&oh=01_Q5Aa3wFPkGHmJKuRwJ614ggb-2YREOtu4lvygObH1P6HwShOHw&oe=69B879A4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"h5X7Ml+YjPfLt5L1dE6y+EkYBJ94W+oLX7h4LdCiF6Y=\",\"fileLength\":\"3970428\",\"seconds\":24,\"mediaKey\":\"pKhHmuVJ8m9bCaF\\/\\/rKq2AlpypuDgi\\/3e8JQ\\/X3D0FI=\",\"height\":848,\"width\":480,\"fileEncSha256\":\"fuw3yDC4+Ozb\\/5BrR\\/RAURL7Xb756mmSZK8Q3OSxH+I=\",\"directPath\":\"\\/v\\/t62.7161-24\\/635017381_1603439800891291_5845957157886759743_n.enc?ccb=11-4&oh=01_Q5Aa3wFPkGHmJKuRwJ614ggb-2YREOtu4lvygObH1P6HwShOHw&oe=69B879A4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105547\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAwEBAQEAAAAAAAAAAAAAAAIDAQQFBv\\/EABkBAAMBAQEAAAAAAAAAAAAAAAECBAMABf\\/aAAwDAQACEAMQAAAA4+e+Z6ecwrdTV0F3k\\/CxMAK97FvJn7R3eRvrxI4XE1WJMTvU1o2ztKOWZ3S0wYJVHHKOeVT9FwRKp0bStOtOecNdUWalDtJW48DfLcAGQCM2AOqBnr\\/\\/xAAiEQACAgEDBAMAAAAAAAAAAAAAAQIDERMhURIUIjEgQZH\\/2gAIAQIBAT8A+Onbwv06LeEKu1vGx29vKHHGzMS9s0IcCrin6JQjgsXkxL7bHOApTVuXLxLLZxk3F7Dsy8s1JDskzqY2xn\\/\\/xAAfEQACAgEEAwAAAAAAAAAAAAAAAQIREgMTITEQQVH\\/2gAIAQMBAT8AKKK8ZwNyA9WCN2LMr6LRkxt0JuxdEnfoyocoOHC5IKMlyY\\/DBGKKEqEf\\/8QAKxAAAgIBAgQEBgMAAAAAAAAAAQIAAxEEEiExQVETYXGREBQiMlOBBUJD\\/9oACAEBAAE\\/ACTNTXuG4QHpHYnAPSD4AwGK2IrBxGHSXJtcwCD4CAwGVl1\\/q3tC5I+xvaW1u\\/Kts+kGmu\\/G3tBprvxN7QaTUH\\/Jouh1R5UtB\\/H6s8qTLw+nfZYuGlOraxMnYD6Q3XDiFUjyEXWHk64\\/UbUtuGxgc9I19ncrLdTaFwH\\/AHG1upHDxTDrdR+Vpez3OWY7iBxMr0J2ZBPrPBuq4hjgd587kYesGNeCQQuIdS54dJa5fGRiECWKccI+QefOai+ylDWGw7cwOS+UfUWmpWz5GH4V6m0IFStTjriX22W4DqBjsJgyz7YDWHzaCR5QjR+Hv2nvlpqXUDbWn0k59IDg5xPE8hNNprbk3IQJqqrKMbjkmbzjiYyBxgGXadwQANxPab7W4FjiKWYnJ4+cNeObCeHnrH1VumUKrc5bqL32+IOB5RlJXnxi2FTxlVgbHeG\\/sTPmD3MOpB6ExtScfSMGNYzHJPGeK\\/U59Z8xZ3htZj9UrfE\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"AA3W7llPS2bI5MbaeWNI10k7ek6K5IHHw\\/nljqhUEcfSIwqz5f08LUzr\\/sTeC1ihZCndQU5b+fk2t50EyvlqhSH9Rvrk2\\/Jl0FQ4RRZF5uJLEF32tNHaWEQAGu9RAH3vUWE0f0QuQjXkktlbborRN2MO525Y0IRPE8D85aUgMD7blRKGYGNktd\\/aiqADD8U3chjFUHUGUUtGwueqTFapfY7L6RIYXizOiVf9H\\/C6tRchI1DxXSukYoyeobymFXmEIL2ym4Au3ph1D1WU7FaPb\\/Uh2KFN9wPEbhW6LxbPvZz\\/RJI2PllfLOUF14bYJoRkBEjWQJcVyPXv0cFxUtEcUyCnCGlkG7I3s\\/gKCoUn+JuuTEh3XbJD\\/rj\\/nOOIsSqn2Stq+FG8FeTX\\/a+8PppkDkLlGDVMz0IliadQ+4W\\/IZ2BCWtjfTT9ntRsFNG59ivMhcqj\\/d8uSLXXwkhAWk9pohXAMkA3tecbrys6Z7d3AwH\\/OtFguRX\\/uGxJFQQv0rEM+nXCNofcmVOQcMxZZbLgPAzJC7qNUEOY3y0JOaki8NSciC7w8cyjpMJw5uQc\\/KBLUTJj1ZkYJkz0dB0OefqPCc\\/MbHmMGnwN3enNrrCbFxgWIw5RJneH79mB8yvG0vvFz1zr5enupHFeCkT1Ps9KgQ9OT0Dz+CHGXcFXe8j+wU5lVO4dTb43pPFZzQgPjW9SFM31qUyDv2ef1YQgayuhFwrKve7u8n2lMP693QMnCTbox6GW+LGXKfCPIiVnEFziZqHyxg15\\/9Kq0G7\\/52SxuBftukVvHMa1P6x+2jFypBOkQw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HdClKmSQiTFhqEHblUR1WPomCBF4Y+\\/jxi1fV5OherY=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771105548,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:48.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:45:49'),
(19268, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:48.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:49'),
(19269, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:49.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:50'),
(19270, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:48.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:51'),
(19271, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:52.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:52'),
(19272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A553281C61F45A2096F\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/603988785_1445763177162108_5014659699962861316_n.enc?ccb=11-4&oh=01_Q5Aa3wFAdb1WmPheEfdpeEzpzcgpcxo6YWTE9e4cMu9o3ngQ0g&oe=69B85275&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"sffXFLqD+18B9lKh8hZKairLh\\/Q2D1bA1ysBGGqWKWA=\",\"fileLength\":\"267641\",\"height\":2048,\"width\":1152,\"mediaKey\":\"bHzK8n9haF09sPf0tKGE3V5159U68euEq4wxaTL4Zuc=\",\"fileEncSha256\":\"Mfqk9lbILhJMxiDp\\/Ncl7+DDQFE5Z2O6wusaAXvZklM=\",\"directPath\":\"\\/v\\/t62.7118-24\\/603988785_1445763177162108_5014659699962861316_n.enc?ccb=11-4&oh=01_Q5Aa3wFAdb1WmPheEfdpeEzpzcgpcxo6YWTE9e4cMu9o3ngQ0g&oe=69B85275&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105551\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAECAwQF\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAEDAgQF\\/9oADAMBAAIQAxAAAADnz5zy9+SuLUdOZs6E8AjcYhGcnKyrLWFJemoOxzpnGJXiXuc1nR5vc59ciNuek5uClTMI86ukcfVjoszW4LKHWDjKGNUEzgrFg1WADkC0ogZYCf8A\\/8QAIBEAAgEDBAMAAAAAAAAAAAAAAAEDAhARBBIiQRMhUf\\/aAAgBAgEBPwDBgwYMGxm02FSavK2lxKfaNQuFvPG+xyR\\/RSRrsmkodGE75G7\\/AP\\/EAB0RAAEEAwEBAAAAAAAAAAAAABEAAQIQEiAhAzH\\/2gAIAQMBAT8AKOhoqAT\\/AGog9rzcSrF0JLGShFzpFuPf\\/8QALRAAAQQABAIJBQEAAAAAAAAAAQACAxEEEiExE1EFEBQiI0JSU5EyQWFxgSD\\/2gAIAQEAAT8AaUCiVO3UoFQnRNKBRC7RJzXaZOa7TJzTpnu3WbXZCVw2TZ5SaFIYiU7I4iUDWv8AFKuqEd\\/+ICgnFcN3JcJ5FBhtDDy+2V2eb2ym4WZ19whdnl9sqOOVl+GUGFrTmFKTdEoOcNiUJH+o\\/Kw\\/R+Jmw\\/EBdr9Ou6e6Rjy1ziCNDquI\\/wBR+VxH+oqd3hR2dU91o9UbS9wA3WG6QmihawQZsum6xbZOIZHsy5zY68UfCjRRTCA63Cws8PljcDztN9TWSV+1JJCfqD6+1lSFhPhggfnqxIJjZS71WAjLAdg4IPh5uTXwA3md8JuLjY3KJHAfpcSF\\/md8Jz4hs4\\/0IPiPnWIczQNcTX3TZDloX8JrLPeBAREYunFWrQJu7T9geaYLv8BElNeQKBpf\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"2RuPirrp9CLrfw==\",\"firstScanLength\":15545,\"scansSidecar\":\"2RuPirrp9CLrf8K93JPjesOVf7vDZC0\\/m30QGmBFfKyMv94\\/4Tq7Vw==\",\"scanLengths\":[15545,59541,59127,133426],\"midQualityFileSha256\":\"pLi\\/clesPk5CGc7qHMafiOImxzGvJDoNX4O7cUEJ6+E=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fUDrQHRxQ3GYYuLXgphfMPwz9t+SLJHsf\\/GbiQfRYZ4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771105552,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:52.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:45:52'),
(19273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:52.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:53'),
(19274, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:52.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:53'),
(19275, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:45:54.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:45:55'),
(19276, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:05.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:05'),
(19277, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:05.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:05'),
(19278, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:06.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:06'),
(19279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:06.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:06'),
(19280, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AAC1309BA97B128CB75\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637118765_926939246402333_1332491199506442168_n.enc?ccb=11-4&oh=01_Q5Aa3wEIm1hXafiXjWXGYAFhqc0aQ9SNHNubKb7IRHclem08Qw&oe=69B849E1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+iSYEFgLfiGn+NgdP4OkTiaMcgVIOQd76\\/vpSNFD9I0=\",\"fileLength\":\"24630\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"OCuMWoDCq+UDlL0mYeDaDdmCxqAulGesjws9xdi5o7Y=\",\"fileEncSha256\":\"t9XLGhrHaYzSoR7uk0qO9AGIsH4jD4UGWU9sUqq1b4g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637118765_926939246402333_1332491199506442168_n.enc?ccb=11-4&oh=01_Q5Aa3wEIm1hXafiXjWXGYAFhqc0aQ9SNHNubKb7IRHclem08Qw&oe=69B849E1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105554\",\"streamingSidecar\":\"ouEoZ75sujdolQ==\",\"waveform\":\"BDBOQEs4ODMgKjUcMhwWPy4vIjskQWRUZEw9W0UtTy0uNCNcZERfY1M+NyA4QkclCwcFBA1NPVFHK0UxGhEPDA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z46YixkpQP2CJHed8Ladu8Pmfm4YtCQJDnaa+DikRBc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771105566,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:06.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:46:07'),
(19281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:06.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:08'),
(19282, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:12.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:12'),
(19283, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A73A96437EE9F1CF9C3\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636152486_787291634409804_1053894970267065184_n.enc?ccb=11-4&oh=01_Q5Aa3wHIGgIgtCHgFjBPJ8Qa7X3cj64N0q5f0LXPhe9pl9IZFw&oe=69B85136&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"OBDEKKsdHNhNhrXcqBwrDajr5onUsv6avJKV1BpvC2s=\",\"fileLength\":\"282413\",\"height\":2048,\"width\":1152,\"mediaKey\":\"eSd7sPhREmTYul5bKOz8GQjnVaJMJ8IKdpz1Y4GUTT0=\",\"fileEncSha256\":\"8b2dhrL\\/jiQEXYgguzchS5BKsPexKMXftnk8qEOnLrQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636152486_787291634409804_1053894970267065184_n.enc?ccb=11-4&oh=01_Q5Aa3wHIGgIgtCHgFjBPJ8Qa7X3cj64N0q5f0LXPhe9pl9IZFw&oe=69B85136&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771105571\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAMBAgQF\\/8QAGQEBAQEBAQEAAAAAAAAAAAAAAQACAwQF\\/9oADAMBAAIQAxAAAADhk0LVfASxM1RkrcagaGgTf6HlpdcyXXpBW7JPPvoM55PRiInfmCbwvdi17rF2OkGgx15EujHKz8olkspWtaA2wWVsAyRnCpoCQA0gF\\/\\/EAB8RAAMBAAIBBQAAAAAAAAAAAAABEQIDECESEyAiQf\\/aAAgBAgEBPwCHpITpa4p5QtcP6L2m4kc2MPP1MqIvWHHR7tJClKLx2vh\\/\\/8QAIBEAAgIBBAMBAAAAAAAAAAAAAAECERIDECExEyBBUf\\/aAAgBAwEBPwCyyxc8IcWuxqfwakPJI0ZuErZqyyla3avg8fX6XZRW0pZUKVe3\\/8QAKhAAAgIBAgUDAwUAAAAAAAAAAQIAAxEEIRASEzFBBSJRIGFxFCMkgZH\\/2gAIAQEAAT8A5YNjEbaZmpX3ZggmYJXRfZUbFGVEau5V5mUhfmC5x2M69nzGtZu8zOYyqprcYI3OJZpjX3cSp3FPIrkKe4EdcqFFjEeQYKgXI8QadCDuY9IXG8XTczAA7mNpuRipO4mlFIVFUb+TPUawo23iah0XAxBrbPhf8guPMWx3n6g\\/Ea4tjaaR2sY4H9y60iwqw3+0Zmo5SRjO81Op6wwp2Pf6vTjlmTyRtL6W64KjO81ebShUZJgpUL7kOfPEDMNFgGSjY\\/HDR2isAgAHO7GXDpWF2YlM+PMXptQrIcHOwMp1JYkcoz234CVXKi4NSsfkweoHGCmRjGJfZU4\\/bq5D+eFlivpFGfcJY38esZ7SpypyDgzp\\/aNUV38TEIjAcgP0YjdtzEcYww2jKg3EbvAcrjgYOH\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"uWNUzBHD5pTDyA==\",\"firstScanLength\":16128,\"scansSidecar\":\"uWNUzBHD5pTDyM+1jnqHC2eNdXyDxLRZKFUdjNZ1qiEhLHVFBHmHUA==\",\"scanLengths\":[16128,59129,62261,144893],\"midQualityFileSha256\":\"rnNgr03jGKefVufl93yXhEHD\\/Ft1tFtA4QEEGtVCoPg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"24MnC+usKNeYMl0ozU4F6nbT3xSR63Ct48dbxXmHGLY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771105572,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:12.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:46:12'),
(19284, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:12.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:13'),
(19285, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:12.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:13'),
(19286, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:29.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:29'),
(19287, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:30.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:30'),
(19288, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:30.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:30'),
(19289, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:36.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:36'),
(19290, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:38.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:38'),
(19291, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:49.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:49'),
(19292, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:46:50.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:46:51'),
(19293, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:47:00.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:47:00'),
(19294, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:47:00.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:47:01'),
(19295, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC832A6D3A47F305BD37C4CFE915A78E\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Caso eu queira duas telas qual valor  seria?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oenr3+UmnhyA5ZQcENWGDoLntEhUfP\\/qEq8xJEMSN18=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771105620,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:47:00.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:47:01'),
(19296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:47:00.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:47:01'),
(19297, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:47:38.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:47:38'),
(19298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A597D921FCB7055DCA84DB42F284D567\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106065307,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:25.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:54:26'),
(19299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:26.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:54:26'),
(19300, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A597D921FCB7055DCA84DB42F284D567\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"70\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106066,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:26.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:54:26'),
(19301, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:26.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:54:27'),
(19302, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:36.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:54:36'),
(19303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5110BF211EC82DDC17204BE4169941A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Mais o app caso precise comprar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106076,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:36.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:54:36'),
(19304, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5110BF211EC82DDC17204BE4169941A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106076775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:36.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:54:37'),
(19305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:36.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:54:37'),
(19306, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A57DBEC9AB5171CEEE670316CFA4AE02\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Se for sistema Android tem app gratuito\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106082,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:42.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:54:43'),
(19307, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:42.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:54:43'),
(19308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A57DBEC9AB5171CEEE670316CFA4AE02\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106083150,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:43.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:54:43'),
(19309, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:54:43.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:54:43'),
(19310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5110BF211EC82DDC17204BE4169941A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771106155936,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:55.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:55:56'),
(19311, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A57DBEC9AB5171CEEE670316CFA4AE02\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771106155929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:55.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:55:56'),
(19312, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A597D921FCB7055DCA84DB42F284D567\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771106155942,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:55.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:55:57'),
(19313, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:58.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:55:58'),
(19314, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:59.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:55:59'),
(19315, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4E607E10136038E234D4B3A7D63AB9\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Entendi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rgqc7Dy6OUBolnKcuUJDC2XWPLaRTA0Uue\\/uPFbrdzM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106159,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:59.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:55:59'),
(19316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:59.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:00'),
(19317, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:00.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:00'),
(19318, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:55:59.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:01'),
(19319, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC77E8069E56434EF6942DB465EE16B2\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Blz entao\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QVb\\/R\\/qj1M5TeQ4bIAfODfNm7U0xmmbGMkPubeLL0bw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106161,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:01.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:56:02'),
(19320, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:01.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:02'),
(19321, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:01.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:02'),
(19322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:01.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:03'),
(19323, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:01.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:03'),
(19324, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:10.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:11'),
(19325, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:12.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:12'),
(19326, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC0B280EBCCF04B429C34A42F6005A55\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou ficar com uma tela ms\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KLdAArGpTcQ8whpoQ\\/dqrPekLtIke7X8bdNoolH5BGQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106172,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:12.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:56:12'),
(19327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:12.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:13'),
(19328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:56:12.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:56:13'),
(19329, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"presences\":{\"241274267389962@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:57:46.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:57:46'),
(19330, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A518AA027C2BCF43329DEB9E44CD4E43\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/635038031_1226348145782305_7456218156105744266_n.enc?ccb=11-4&oh=01_Q5Aa3wGGeNKRP5byQRYyWLxV-aSN8JPmt5efhnUJMD6K0ZWDfw&oe=69B870D1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"Bm126Y+Hq2+cBQ1lXSocD0ZPL6e1SkIsUZod7+8PlB8=\",\"fileLength\":\"2740147\",\"seconds\":22,\"mediaKey\":\"BS9oYzyDgi6yEFBHOY1iHFjsjmy7Q4m4QuM3kP2xKAo=\",\"height\":392,\"width\":848,\"fileEncSha256\":\"Zgnub7etB6SlBgVQsVCSSamZgF1BjnhAWj2eUQniqSM=\",\"directPath\":\"\\/v\\/t62.7161-24\\/635038031_1226348145782305_7456218156105744266_n.enc?ccb=11-4&oh=01_Q5Aa3wGGeNKRP5byQRYyWLxV-aSN8JPmt5efhnUJMD6K0ZWDfw&oe=69B870D1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771106274\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEASAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAAAwECBAUGAQEBAQAAAAAAAAAAAAAAAAABAgD\\/2gAMAwEAAhADEAAAAPO3brucrHAqhgKF6ip6ZJLwNOG7tRmuzpTGcdE5HFd8g281IYvYKmEBNS0M+hA2\\/8QAJxAAAgEDAwMDBQAAAAAAAAAAAAECAxEhBTFRBBNDEDJCEhQiQVL\\/2gAIAQEAAT8AjFy2FSnwQhJL2ijm41J\\/ocWxxfB2p8Gh+Y6VJyyNWuhYG0K5e2Bn1O1r4NE3rlCp22pWJdTGXwO8uDuL+RVbX\\/Bkq9NP2n3EOBVov4mi71hPArcmBSsOrJ7snZyFHORNJGieYQhi2JbeqND8x\\/\\/EABkRAAIDAQAAAAAAAAAAAAAAAAEQABEgIf\\/aAAgBAgEBPwDBXIayX\\/\\/EABkRAQACAwAAAAAAAAAAAAAAAAEAEBEgIf\\/aAAgBAwEBPwC8QrsF0IX\\/AP\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"1UNFkmgA2O5eaOYPotrJjHzdBMifNKiMzml\\/e2D7R8rk53XihxHbB9CqYu04au+nfHn1vD8Cpntz2EbCUy\\/aenwGSlqz7RtWC4jRCQazsNZ7ekKGGie+hw0OHGBAnR3KZiy79\\/ZawhRFDPG1dGo1P+agCTw0Aae3wTu\\/NNL8QtDz8zGwC\\/eXhfZPK\\/wA7pvrTepTk\\/IXMXKOHFJpxf5RMxewxrSTmegMz3IKylNqsbSL+939hFDEgliHlnXBHz7jbnXNlCbwyCi+rs4AmsBFRDqbQNr74eQ5n4\\/fOmKb+VJZfkNC7O5yHwfL7uyiEsjfJuhs0fsOvT2ufj8RjRbA8OKjpBcVDiksYwMWSaIiE2VkB0XMaLAxDMnd5uI05vqAkAb52xN9vSaDi7WfaS6jdGXFmHM8JDuWo3NccPhCE1ZgUVs+7bEJ7htUu47\\/kafGu\\/PwKJobikCoKbPIpMo+XsgnShJ4EG0vsyQzhg1ATND3OZnEdEHfA2NoPTaohdB0lL2WQWSjHzh851vvS+3Vo+xaySjIvTORGlL8tm+ktOpVxXUp\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771106275,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:57:55.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:57:56'),
(19331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:57:55.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:57:56'),
(19332, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:57:56.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 18:57:57');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A518AA027C2BCF43329DEB9E44CD4E43\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106278116,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T18:57:58.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 18:57:58'),
(19334, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:01:12.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:01:12'),
(19335, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D26D3B3266CA3D01D0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Teste16*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 40,00*\\r\\n• Próximo vencimento: *16\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771106489,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:01:29.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:01:30'),
(19336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0D26D3B3266CA3D01D0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106490561,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:01:30.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:01:30'),
(19337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0D26D3B3266CA3D01D0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771106495508,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:01:35.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:01:35'),
(19338, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:46.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:46'),
(19339, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A88BD4C14277082A01E\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635049231_1939468709980157_2968057968808263685_n.enc?ccb=11-4&oh=01_Q5Aa3wF0h79ovPvS-6FUliRSzZ8IB8jy6Xcifrcer8vrS53nGA&oe=69B87170&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ikQqKGD6FwV6cXTtjyyycKJ52nUnwO5Vi3k552mYDRo=\",\"fileLength\":\"279240\",\"height\":2048,\"width\":1152,\"mediaKey\":\"581tYtZhAIMIzhzesadJt+V1f+k\\/gC013\\/EmSexSfUc=\",\"fileEncSha256\":\"M9LU5Z6RSZxuMC3lpDWB\\/MMBgJIrwlQfhC2kWl9tE1k=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635049231_1939468709980157_2968057968808263685_n.enc?ccb=11-4&oh=01_Q5Aa3wF0h79ovPvS-6FUliRSzZ8IB8jy6Xcifrcer8vrS53nGA&oe=69B87170&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771106562\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAMBAgUEBv\\/EABkBAAIDAQAAAAAAAAAAAAAAAAEEAAIDBf\\/aAAwDAQACEAMQAAAA4F6tVm8qNhkOFOxcHENmhmSbIRwX7FOI1rxjWfVbksI1Er0EEhPRGznLV4ofL9EPq2lkpbXQUJL11e\\/zN+Qz6JeHEm5GIit+3mUxzKxBplyActsAMgCGagRIBH\\/\\/xAAlEQACAQIDCQEAAAAAAAAAAAAAAQIDERIUUQQQEyEjMUFSYUL\\/2gAIAQIBAT8AUauiOroXq+ouK\\/yN1PUTTfNGV+j2b6QoNeR0GY4toxolOK7kWrXW5xTZgHFFOtGEVFIzK0Ll2XEy5\\/\\/EAB8RAAICAgEFAAAAAAAAAAAAAAABAhEDEmEQEyIxUf\\/aAAgBAwEBPwDaBtAuBcDxL+M73As3A8tiymslyKLFCT9DjTp9E3RsyM2jInJ7GjKKKGqKP\\/\\/EAC4QAAICAQIEAwcFAQAAAAAAAAECAAMRBCESMUFRExSRECIyQlJhcQUzQ1OBI\\/\\/aAAgBAQABPwA6fUf1GNRd\\/W08vaf429IaLBzRvSeE30n0nht9J9J4bDmp9IEPaeGexi6i5lyCIdVavxAGJrQfiAjXErlQrRNUuSGQbfaNeAMitTPMIVJesfiDV1K29K4h1unP8AnDagzz+4i6lthYM\\/mAUWjIbB7Q1vW2zD1ldgDMGELIMlXltpCZI\\/2PcG3AxOMnlLTSgXJxxdO0sFe4zviHYzibuYvEThckmeFaN+BvSPxgYbOPvMCYEuL2MWcZJ6y4e4jdcQ+xGZGDKdxBqrx8xP8AkuussAV+n29petq8LXnK4xiX0WnChNgJ5W4fIYabQP2oKnz+2YEuUbVy7i48uuDMp2MbBOwxP0\\/Uqq\\/9GxjvF1VH1AxtRT0aeYUn5Y1qE\\/KJ4i9xNdYr24U8vaLzyIi6jB2ENxPWC8iNqhg94lpLe85A\\/MJHGMHIgOOXKGwgfibzeZYdZlu5mDApY4HOPW6DfaB2HWeI3ef\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"l0vkJIyse5u7qw==\",\"firstScanLength\":17807,\"scansSidecar\":\"l0vkJIyse5u7q\\/87wXj9tXIhghfBQOBPTA3IjAkBwaTahZvLjyj6yQ==\",\"scanLengths\":[17807,66786,56432,138213],\"midQualityFileSha256\":\"0rMb\\/GGrF30V9AGMqNEABzxcGjEQsWql2e3SgDfG0fE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Xc9ebnjtmuaLrWXkVB3eMhmUj5IxVrTQH1MoV1\\/VnVw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771106565,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:46.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:02:46'),
(19340, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:46.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:47'),
(19341, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:46.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:47'),
(19342, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:51.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:51'),
(19343, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:53.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:53'),
(19344, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:55.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:55'),
(19345, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:55.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:56'),
(19346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE36hMhjJjvmGU4NJZC971xtEzSPaW_hZtv50xS8nRr_A&oe=699DFF07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:58.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:59'),
(19347, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:58.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:59'),
(19348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:59.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:59'),
(19349, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:59.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:59'),
(19350, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE36hMhjJjvmGU4NJZC971xtEzSPaW_hZtv50xS8nRr_A&oe=699DFF07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:59.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:02:59'),
(19351, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3ADBA56F772AB3D0ADF2\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Agora deu isso\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7jecZSi47j6GgnKHxYmY1BvSjMGF4Ymw\\/iRnVRXlVx8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106578,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:58.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:00'),
(19352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC94242487E30AAACC86DD46A1796857\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pendentes\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0VUNq1vjiTOFI0mS6U3+vKxWHRD3EbwKUtrcp0C5wpY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:59.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:00'),
(19353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE36hMhjJjvmGU4NJZC971xtEzSPaW_hZtv50xS8nRr_A&oe=699DFF07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:59.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:01'),
(19354, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE36hMhjJjvmGU4NJZC971xtEzSPaW_hZtv50xS8nRr_A&oe=699DFF07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:00.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:01'),
(19355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:02:59.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:01'),
(19356, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5EC88BABE03DA3EF1E7C050D7F29E23\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106588967,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:08.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:09'),
(19357, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:10.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:10'),
(19358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FF7269F0517EC61F044767AEA60628\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106590316,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:10.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:10'),
(19359, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:11.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:11'),
(19360, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5FF7269F0517EC61F044767AEA60628\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UE1RCQ9Y63\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771106591,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:11.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:11'),
(19361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5EC88BABE03DA3EF1E7C050D7F29E23\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Blzz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106590,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:10.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:11'),
(19362, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:11.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:12'),
(19363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:10.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:12'),
(19364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5FA124A9B8778C893B4370F2EB1FCA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/25384521_1474708227406051_4758429240308029248_n.enc?ccb=11-4&oh=01_Q5Aa3wHpnzwgCBlrammOZ2uniFWjXk7li1HA7q4cqLGg0osxzw&oe=69B866CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"8OPypx\\/PsRnm6GktY634UI7R2P8SDQpRGSl+IC+aZpU=\",\"fileLength\":\"14704\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"x7PxShxwthQFfirdzNEkGd2Yec570wSDmuUOQWTQ9F8=\",\"fileEncSha256\":\"xt9VnSuQpgR1NqiF51Aujyx8xl3HDlzL0uF61yIc7Eo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/25384521_1474708227406051_4758429240308029248_n.enc?ccb=11-4&oh=01_Q5Aa3wHpnzwgCBlrammOZ2uniFWjXk7li1HA7q4cqLGg0osxzw&oe=69B866CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771106596\",\"waveform\":\"AAQHCh0gICYqKSspJiMcEAQIBQBKOyMfHRASOSkLQiA8JycxIzIoEgAAAAAAAAAIWksuVk1PTUQ\\/AAAAAAAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771106602,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:22.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:22'),
(19365, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:22.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:22'),
(19366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:22.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:23'),
(19367, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5FA124A9B8778C893B4370F2EB1FCA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106603944,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:23.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:24'),
(19368, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5FA124A9B8778C893B4370F2EB1FCA4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106611358,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:31.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:31'),
(19369, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:45.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:45'),
(19370, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:47.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:47'),
(19371, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:51.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:51'),
(19372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:51.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:52'),
(19373, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A5AD968B79F9AE1019B\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/33006799_742247005385247_1596854984958801049_n.enc?ccb=11-4&oh=01_Q5Aa3wEtIWPUDYtb3ZeJcZhfOh2Sf530bXPTuRALG-moVioZxA&oe=69B86EF8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"YujFnMWdk\\/f5fI5jyHjWsduOLEcIdV+nOVJwAcgP4Eo=\",\"fileLength\":\"9537\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"K6E8ditNIbpQ0T6ApxwDHVXCz48c1YbEXh5BeXnWQzE=\",\"fileEncSha256\":\"C3vNsSEammNBn\\/9Bf4jyEZ57WiqcPXvGzYAQOC0KZTw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/33006799_742247005385247_1596854984958801049_n.enc?ccb=11-4&oh=01_Q5Aa3wEtIWPUDYtb3ZeJcZhfOh2Sf530bXPTuRALG-moVioZxA&oe=69B86EF8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771106626\",\"streamingSidecar\":\"p5JtbIo+8MvM+Q==\",\"waveform\":\"ABQoMS0qJyUjIR8sO0lVYlpQTVhiXFNPWWJWRTYsIjRPZGRkZGRkZGRkZGNjYmJjY2FfV0tBT11kZGNWSURHSg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rJTuoenM5LRBbW0zsOVvLd0sdrqlFtvT8OcHSmUfP5w=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771106631,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:51.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:03:52'),
(19374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:52.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:52'),
(19375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:03:52.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:03:53'),
(19376, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5D1F7AA940A0BF4BCA8E2CF9955D021\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Instala\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106647,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:08.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:08'),
(19377, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:08.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:08'),
(19378, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:08.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:09'),
(19379, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5D1F7AA940A0BF4BCA8E2CF9955D021\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106648561,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:08.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:09'),
(19380, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:09.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:10'),
(19381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5F387AEBA4DEF661932B728F9CD438B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/637107214_2167543657117866_4251043795324147414_n.enc?ccb=11-4&oh=01_Q5Aa3wFnHmma1S1_pAbRHiuGmxVaUKmF-5PyM9VMgySIulqxug&oe=69B85DCE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/vnd.android.package-archive\",\"fileSha256\":\"ThhJi1B8c\\/QI+CRkCeuzoGaOm0wHJT04xCtmKNFsmI4=\",\"fileLength\":\"39991549\",\"pageCount\":0,\"mediaKey\":\"HE0Y+C0dsLGGuB0APVguKzsNvLLawSEOxegMJQvKMpM=\",\"fileName\":\"VPN EUA_1.131.apk\",\"fileEncSha256\":\"A\\/YHz8kZYfZuU7toNPK9FXKHTR6tn7pjQieXuchvFuU=\",\"directPath\":\"\\/v\\/t62.7119-24\\/637107214_2167543657117866_4251043795324147414_n.enc?ccb=11-4&oh=01_Q5Aa3wFnHmma1S1_pAbRHiuGmxVaUKmF-5PyM9VMgySIulqxug&oe=69B85DCE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771106644\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771106649,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:09.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:10'),
(19382, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5F387AEBA4DEF661932B728F9CD438B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106650174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:10.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:10'),
(19383, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:10.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:11'),
(19384, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:11.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:11'),
(19385, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A581C5876729D731EB63553BBF608D16\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"E coloca brasil\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106651,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:11.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:11'),
(19386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A581C5876729D731EB63553BBF608D16\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106651818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:11.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:12'),
(19387, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:11.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:12'),
(19388, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:13.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:14'),
(19389, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A52234711C7B688E4D4EBB92537B5D3E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pra ve\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106653,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:13.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:14'),
(19390, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:14.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:14'),
(19391, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A52234711C7B688E4D4EBB92537B5D3E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106654287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:14.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:14'),
(19392, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5DC3DF286B68E595C088A44A46EFA0D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106662,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:22.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:22'),
(19393, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:22.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:22'),
(19394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wE36hMhjJjvmGU4NJZC971xtEzSPaW_hZtv50xS8nRr_A&oe=699DFF07&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:23.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:23'),
(19395, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5DC3DF286B68E595C088A44A46EFA0D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771106663169,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:23.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:04:23'),
(19396, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0978B5B97A63F90B40F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771106663,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:04:23.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:04:24'),
(19397, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:42.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:42'),
(19398, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3ACFF70F0FC9D8AEBF4C\"},\"pushName\":\"Thay\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637210763_1678147973151896_4982758980716110761_n.enc?ccb=11-4&oh=01_Q5Aa3wHXwKflBx1hOahtAsVHeVYOYxsYLD2uaH-bMObirrlt1w&oe=69B85590&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"O6HUtDpO9jxnbw\\/+eZ+HIUjYHaSQ4hQhVtiqPkI8Q0c=\",\"fileLength\":\"184815\",\"height\":2048,\"width\":1152,\"mediaKey\":\"8WEO31LvQykNP3ZI5JaWqU20U8w8r2DG9DD2ZoL03YU=\",\"fileEncSha256\":\"QPKWeAn2oIby8NYx\\/CmKUfhXfjO8kpjsxXi9SuaO9f8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637210763_1678147973151896_4982758980716110761_n.enc?ccb=11-4&oh=01_Q5Aa3wHXwKflBx1hOahtAsVHeVYOYxsYLD2uaH-bMObirrlt1w&oe=69B85590&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771106740\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAUBAwQCBv\\/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgMEBf\\/aAAwDAQACEAMQAAAAnpldvmiH1dJLY2kPMYXaXG850Q\\/ZC7vHu34YG40Z+goTsFt83ADzcW038frdnEtRHcKsOHfh6PPrAvD1G7Iwt8cXA898yCRI9RkUgSenZhpMABxaAJUYJ0gQf\\/\\/EACERAQABAwMFAQAAAAAAAAAAAAEAAgMQERIxEyAhIkFR\\/9oACAECAQE\\/AOqvyF6qN6r6Sqpq8uG755heThjfU0WFWphPaPMSWz1MbSbYH7E7XH\\/\\/xAAiEQACAQMDBQEAAAAAAAAAAAABAgADEBEEEkETICEiUTH\\/2gAIAQMBAT8ACCdJYKQ4irtGLLQG3yIdMp4g04U5USou1jmynKiYOIJXPubB2+wP9jMD+TPaLf\\/EADAQAAEEAAMECAYDAAAAAAAAAAEAAgMRBAUSEyExURAUIkFCUlNxFSMkMmGRYoGh\\/9oACAEBAAE\\/AGYTGsbpDaCOGxpH2o5fiSSSxfDsT5F8OxPkQwuOAoav2swglie3aiiU8bkVt3PewBnZcLvkuzd2gKRniaaMjQfddYh9Rv7RljLCdYrmFn1XFpNiuKcn8U3ERwwRBwslvchjYjfZJXXo+Gkp8cRkc+zvPeiyK71H9KJsTcKd5I1LOa0Q6eFd6cnC1DiS6Bgc0GhW9CevA1bf+DVtx6bVtx6bV1pwbpDWgLM5nSFmru4JxRWHNwtQWnSzUQCeSBB8ICcN\\/Rj+LUUVhB8kIKjzTSW8ES5w4f4tJ5FY9ptqcEVlEMUmEBc2za6rAPAEIYfIFI2GNuoxhCaIbtlX9JgY5ocGDf8AhZ+0B8dADcnhFZIfpCPz0loIoiwtDR4R0Z\\/98fsnpyyM\\/If79BLr3AUu1X5TRLrtzhp5Doz89uP2T05f\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"RdnZTgTgcUtFXg==\",\"firstScanLength\":15566,\"scansSidecar\":\"RdnZTgTgcUtFXpJ9Wp+UpTlyb4FWW+bnQm6ZuQvPlh3ITVzpuRkKaA==\",\"scanLengths\":[15566,58807,29130,81310],\"midQualityFileSha256\":\"jBbtRx7MOjYUU6EvT0qaCOk4ND4JtZtWuSk25GhGjEs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XgcnmfQwWh5+pJmR9c7R+M856en5HA\\/5ujgWqwyYiYg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771106741,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:42.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:05:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:42.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:43'),
(19400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:42.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:43'),
(19401, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:44.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:44'),
(19402, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AB559BBFF28ECB8AE1B\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Assim?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gGr0jHbsb2cPtG+uV+iHxZEUOzzBjaclR2wBuosc1w4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106746,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:47.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:05:47'),
(19403, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:46.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:47'),
(19404, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:47.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:48'),
(19405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:05:47.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:05:48'),
(19406, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:01.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:02'),
(19407, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A60F1965C8363E0AF34\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Conectar ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hSMRsE1nvXLkr+vp03oDltMVGw2amooo8IFvIiKu7A4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771106767,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:07.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:06:07'),
(19408, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:07.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:07'),
(19409, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:07.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:08'),
(19410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:07.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:08'),
(19411, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:21.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:21'),
(19412, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:23.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:23'),
(19413, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:28.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:29'),
(19414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:30.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:31'),
(19415, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F2099A42A184CC199E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106790,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:30.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:06:31'),
(19416, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wG067SoULKWTnAIA3S2aWUz_bTy7CwPCF8vPtQxBnmJhw&oe=699DE914&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:31.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:31'),
(19417, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BC0776F826EABF3492\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771106791,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:06:31.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:06:32'),
(19418, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:09:52.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:09:53'),
(19419, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:09:56.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:09:56'),
(19420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB024AD497E778A1FC2CD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771106996,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:09:56.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:09:56'),
(19421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:09:56.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:09:56'),
(19422, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9B90BBAE384CC8F1C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771106996,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:09:57.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:09:57'),
(19423, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:03.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:03'),
(19424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:05.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:05'),
(19425, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E2543962A58ED46F6A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendente\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107005,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:05.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:10:05'),
(19426, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:05.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:06'),
(19427, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03C05558A22FA74A28D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107006,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:06.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:06'),
(19428, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:08.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:09'),
(19429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:11.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:11'),
(19430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB086F2962ADE9AE295C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107011,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:11.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:10:11'),
(19431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:11.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:12'),
(19432, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BCDEBDDD8FB092336C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107012,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:10:12.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:10:12'),
(19433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5EC88BABE03DA3EF1E7C050D7F29E23\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771107072215,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:11:12.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:11:12'),
(19434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FF7269F0517EC61F044767AEA60628\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771107072209,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:11:12.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:11:12'),
(19435, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:03.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:03'),
(19436, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:06.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:07'),
(19437, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055D7EC449710032360\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107126,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:06.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:12:07'),
(19438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:07.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:08'),
(19439, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB079277DF5E16A148C65\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107127,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:07.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:08'),
(19440, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:30.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:30'),
(19441, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:35.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:35'),
(19442, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07EDB5CC0F61D9EBD36\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107155,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:35.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:12:35'),
(19443, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0085C0D529E5D1C0710\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107155,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:35.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:36'),
(19444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:35.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:36'),
(19445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5DC3DF286B68E595C088A44A46EFA0D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107177619,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:57.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:12:58'),
(19446, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"presences\":{\"126263498919938@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:12:58.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:12:58'),
(19447, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:00.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:00'),
(19448, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACA5713D82C0860F284A8DAD4C4726C6\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635621967_4375371332741056_5103036811723824752_n.enc?ccb=11-4&oh=01_Q5Aa3wFVERu9N5c15nAF9MtRao9b693FXiHGIyG0qRf7UdFa9w&oe=69B87125&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qELhfNlZ5cdlV2PYv7ncQpr\\/sszt4+mAeJFciMgZJhU=\",\"fileLength\":\"78484\",\"height\":1599,\"width\":690,\"mediaKey\":\"B4E5\\/zOe6cygQQZRI2wig70KyYL39ivh4XDkHHVYvqg=\",\"fileEncSha256\":\"sFYMakb837Pf3RP4p5ahlo+A5Y7XXkVW2VKpYHyedRo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635621967_4375371332741056_5103036811723824752_n.enc?ccb=11-4&oh=01_Q5Aa3wFVERu9N5c15nAF9MtRao9b693FXiHGIyG0qRf7UdFa9w&oe=69B87125&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771107179\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPQ6c+xYBFRRQmYsY6YY1DNTNmbAKA\\/\\/xAAgEAACAgEFAAMAAAAAAAAAAAAAAQIREgMQIUFRUmFx\\/9oACAEBAAE\\/ANOWqtWWTWHRa3qbb\\/SNLrkvbKSsT3jKGTy4L0vkKcF3s0rfBS6oxfiFl2Ny+iN90Wi0OErIxkYP3bKVmTMi2O7Kfgr8FZ\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"JzFp1BMvs79Mz8RABtAdacTKUOEjEnyOXuqq9WMBGCAFoju4ODKkDg==\",\"scanLengths\":[6557,36334,16318,19275],\"midQualityFileSha256\":\"yQeOZrtqPgSsTZHU4XY\\/tiVC4sAWIyvkFmm518DtqOc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Fv8TiR4SxDlrWbnoe3xTpt+4rk5CkoP9OkvPkAt4kfw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771107180,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:00.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:13:00'),
(19449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:00.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:00'),
(19450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:00.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:00'),
(19451, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5C8F750938029707EC8CDE8454B4E54\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107197,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:18.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:13:18'),
(19452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:18.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:18'),
(19453, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:19.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:19'),
(19454, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:18.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:19'),
(19455, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:20.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:20'),
(19456, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC0159969AC8F8875C9A786C403D7A03\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jcCZ5fl+6oFGfEBVaUzQhAp93Q3Y1Tbbi0Ip0TFNoE0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107200,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:20.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:13:20'),
(19457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:20.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:21'),
(19458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:20.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:21'),
(19459, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5DA78B9E79A0DB16EEC7E783CF91A40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637102362_1179873624218619_4491070403856049536_n.enc?ccb=11-4&oh=01_Q5Aa3wG4TzMLh3dk5xK8LwQKJWptw6p61CTv-dyS-yQqvmLvIQ&oe=69B8633E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"g29Ygt0FNhAMM++FJp6W7NyAdLM5uyS87QYwcIXxYfg=\",\"fileLength\":\"5488\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"fc4KoYO5xNyrnsF6v88es7CGX5VUBSjDjbu1DVAvdA0=\",\"fileEncSha256\":\"pKBxh4AKOPwqiwYpH14xocvMELVPkOIADQ\\/PN+M1z34=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637102362_1179873624218619_4491070403856049536_n.enc?ccb=11-4&oh=01_Q5Aa3wG4TzMLh3dk5xK8LwQKJWptw6p61CTv-dyS-yQqvmLvIQ&oe=69B8633E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771107204\",\"waveform\":\"ADg\\/KCpFXVxXVFI1OU9cW1dXS0pTVlhYVkdBTTwgBCozNkdPUk9LTE9SU1JQS0dDIB4vQkdEOictSE5MSk9NSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771107205,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:25.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:13:25'),
(19460, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:25.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:25'),
(19461, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtImzOrCnSqCcna9mz0NwuZzplo6166OjBtwKy6AKLSA&oe=699DF710&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:25.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:13:26'),
(19462, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5DA78B9E79A0DB16EEC7E783CF91A40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107206423,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:13:26.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:13:26'),
(19463, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5A172170A44023A6AD7C6D3A01FEE65\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":116528},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":116528},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771107290,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:14:50.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:14:50'),
(19464, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:14:50.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:14:50'),
(19465, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08B4E9B886D305A32AC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107291,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:14:51.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:14:51'),
(19466, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:14:50.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:14:51'),
(19467, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5FF83F347F78067C72B5335EDD19AB2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"IAGO\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":116535},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":116535},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771107299,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:14:59.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:15:00'),
(19468, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:14:59.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:15:00'),
(19469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:15:00.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:15:00'),
(19470, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:15.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:17:16'),
(19471, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:17.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:17:18');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19472, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:18.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:17:18'),
(19473, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:21.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:17:21'),
(19474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ECFBF30D135D618A44\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107441,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:21.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:17:21'),
(19475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:21.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:17:22'),
(19476, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C5F6B441EDBBADCA39\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107442,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:17:22.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:17:22'),
(19477, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:15.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:16'),
(19478, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:18.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:18'),
(19479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:18.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:19'),
(19480, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:18.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:19'),
(19481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:18.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:19'),
(19482, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACE4EF1A0175BAC5025A839DF31D91ED\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"zPNp6Y0gIiG+OA==\",\"recipientTimestamp\":\"1771021001\",\"recipientKeyIndexes\":[0,2,3,4]},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qrTSxAopn7grZxIGnJZi+Yf5Klw7KUOVwV1ClEeF9O4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107619,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:19.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:20:20'),
(19483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:20.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:20'),
(19484, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:19.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:20'),
(19485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:20.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:21'),
(19486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:20.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:21'),
(19487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:21.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:21'),
(19488, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:22.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:22'),
(19489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:22.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:22'),
(19490, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5DD01066F07D39C6045CA236762F3A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107621,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:21.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:20:23'),
(19491, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:20.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:23'),
(19492, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:19.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:23'),
(19493, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:21.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:24'),
(19494, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACE4EF1A0175BAC5025A839DF31D91ED\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qrTSxAopn7grZxIGnJZi+Yf5Klw7KUOVwV1ClEeF9O4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107619,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:20.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:20:24'),
(19495, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5DD01066F07D39C6045CA236762F3A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771107620523,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:20.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:20:24'),
(19496, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:40.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:40'),
(19497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:49.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:50'),
(19498, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC7D6C17573A1075717EDAD92FB92FF9\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Quero ter acesso ao IPTV\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+xoeZMYc1LO34vgZJs3M0zEmIKI+sp7cW8kZ2RDhz8U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107649,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:49.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:20:50'),
(19499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:50.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:50'),
(19500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:20:50.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:20:51'),
(19501, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:18.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:18'),
(19502, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:25.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:25'),
(19503, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:28.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:28'),
(19504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:33.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:34'),
(19505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4C1ED6019C166A3E38\"},\"pushName\":\"Eric\",\"message\":{\"conversation\":\"Iae Jhonny boa noite mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"C7TSfnusO2ktOsv+FgR+9iELIPG4TZkJqqZ6yEJnTZk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107693,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:33.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:21:34'),
(19506, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:34.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:34'),
(19507, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:33.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:34'),
(19508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:34.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:34'),
(19509, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:35.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:35'),
(19510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A567BBA40A784810EE1D7A0F31A7B87C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107695,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:35.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:21:35'),
(19511, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A567BBA40A784810EE1D7A0F31A7B87C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107696077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:36.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:21:36'),
(19512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A567BBA40A784810EE1D7A0F31A7B87C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771107696082,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:36.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:21:36'),
(19513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:36.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:37'),
(19514, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:35.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:37'),
(19515, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:35.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:21:38'),
(19516, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:38.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:38'),
(19517, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:42.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:42'),
(19518, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:44.119Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:44'),
(19519, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:47.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:47'),
(19520, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:49.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:49'),
(19521, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:49.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:49'),
(19522, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:53.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:53'),
(19523, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:56.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:57'),
(19524, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD9130069025B3C9B92\"},\"pushName\":\"Eric\",\"message\":{\"conversation\":\"Deu uma piscada na luz aqui em casa e tá aparecendo essa msg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wXhL8f2Kk6DR6M5xOZQhBA77Ot4XFH4E2rIz\\/eK0Ba0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107717,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:57.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:21:57'),
(19525, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:57.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:58'),
(19526, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:57.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:58'),
(19527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:57.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:58'),
(19528, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:21:59.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:21:59'),
(19529, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:00.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:00'),
(19530, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB018F45EE6D7DEE7937A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107720,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:00.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:00'),
(19531, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02234FEC486D4251D57\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771107721,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:01.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:01'),
(19532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:00.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:02'),
(19533, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:04.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:04'),
(19534, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:07.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:07'),
(19535, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3812805308F410A461\"},\"pushName\":\"Eric\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635037178_1154667179918849_8250371153810511920_n.enc?ccb=11-4&oh=01_Q5Aa3wG9p2laJojGMwJuJje3AYktkBnIRRdjEC9--qo1voVY_Q&oe=69B86A82&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8NdbYHTBXXuV7DsL3VgNowJDVCgDHaNenbWq3e\\/ytdU=\",\"fileLength\":\"70520\",\"height\":1600,\"width\":900,\"mediaKey\":\"Kngxn7HFqoVsDT9cLpa9B3rThIvTmd+dNxdnOPpBMO4=\",\"fileEncSha256\":\"Ywtkiq3YwuhztEDlsw+joccYSTAZATr7XRweGue2G5w=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635037178_1154667179918849_8250371153810511920_n.enc?ccb=11-4&oh=01_Q5Aa3wG9p2laJojGMwJuJje3AYktkBnIRRdjEC9--qo1voVY_Q&oe=69B86A82&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771107726\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQABAAMBAQAAAAAAAAAAAAAAAAEDBAIF\\/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAA8K3K7536\\/P375xn1bY8B6PPHfmpZaUom87tmTXvlZdTfZmq05o89ww2qmOpZur6sW1crp5og7VuVQExIIqUTBI5AkAIkqBH\\/xAAbEQADAQEAAwAAAAAAAAAAAAAAAQIREBIwMf\\/aAAgBAgEBPwBU0Q9RaWDjsNeIyvg+6aP1\\/wD\\/xAAcEQACAgIDAAAAAAAAAAAAAAAAAQIRITEQIDD\\/2gAIAQMBAT8AaTJYIttkZ5yb4ldiI760r9P\\/xAAmEAACAgEEAQMFAQAAAAAAAAABAgARAwQSITEQMEFREzJhcZEi\\/9oACAEBAAE\\/AMWXYKi5cbdiYlRsg2mAnn8xsaMOV\\/ky6Tdyrf2Pp8idrf6i4iBuMcF7\\/HnQgnLfwPOHRq+mOQnmEVHA2mwOoOHZux4E0C8M0AuLjNixYikAEBnUfEK8zU\\/5wmveZKCge\\/gTROgxkFgDcVkPTCY6LfdQ\\/cdUUWj2YST3NZ9oFgTKDZJ8i4uI7bDj9Tc6mtxmLUZAwG48xtVlVyd3UbN9XnJdzMaWh0YCJYi5dvvDmvsiNlDAA1xFdQwNxnU2b7gyVMmTfQ+PRHoASvS\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"Qj\\/7XZXpIXZkcw==\",\"firstScanLength\":8266,\"scansSidecar\":\"Qj\\/7XZXpIXZkc+ahE3uiEPWOxuLstDP+IIpk2pMQTiap\\/pyMWgSEOA==\",\"scanLengths\":[8266,27722,9943,24587],\"midQualityFileSha256\":\"0dPPszLNIl6ktUiRRj9vEL87at05afVtazQEsmrboyU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gt7vPhLoAEg8oXXsI0Ia31KWWZeccjNyIp0ilPhFtBo=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771107727,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:07.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:08'),
(19536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:08.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:08'),
(19537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:07.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:08'),
(19538, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:08.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:10'),
(19539, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:08.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:10'),
(19540, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:14.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:14'),
(19541, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"166391445487662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:14.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"166391445487662@lid\",\"fromMe\":false,\"id\":\"ACDDC4C39E634FB689871272136C5B85\"},\"pushName\":\"Ciro\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite. Aqui diz que na Disney irá passar a Nascar as 19.\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5E01B7FB12F9B685D83C33580B2AE35\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"izWpRRDjawuWzRU+qZHB4alWufpAnCArIntlC14fe5g=\",\"fileLength\":\"164524\",\"height\":1280,\"width\":1073,\"mediaKey\":\"\\/OvVV+Gx8XLHSNFQMhtRs9i0AnQXEXtryuluTsPqh1M=\",\"fileEncSha256\":\"C02W2Fp0LX5KTXBsudd2Wf1VpEAnBXpR\\/U0b+UxBoyQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771090608\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAhgMBIgACEQEDEQH\\/xAAyAAACAwEBAQAAAAAAAAAAAAADBAACBQYBBwEBAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADmy93TzcMZT6HjYnOW6XQODZ7nLk48u7bV5224wYXnXt5nz7F+nlr5zPqEtx\\/UqcZpXV9zHInI2PKikCNGarr3OvGzX0GJPUy6ujKSsyFt7PoNrn8mkdERC\\/j6JnRutijYHiDdclwvWrWDm1EWJw18+TtjcG1mdnbh\\/TvUcEB0pOFJXXtcIeOwZ5MkdOXjPK7mcnFwbkvw5VuXzEHC2C5WssKSD1S1jJ60AmZWL1t1pWVlXDemvPK4l7D9HgmHCUHNW1hFNCts+QR1r6uxFoZ10b9vRpVorI96pRdbF0xiY7SrVo2X00fY8IrE14pLeeK4Temcxo8ZzDHg3nMQQBoSkm7+kfz9KMgjkGJeHMXKTl5gGPbMBGJDObsUk507ddaz7aDCe+MhzE4YtppeW86ZEvt+t0WS9mzbLeXpDinmRYeovEbtn+nQeZLzSZwXNaLxn\\/\\/EADwQAAEDBAECBAEJBQgDAAAAAAECAxEABBIhBRMxFCJBUTIGFSMkM1JhcYElNEKRoRY1RVSSscHRU2KC\\/9oACAEBAAE\\/AH\\/kxepfWFXdoklZ0XYMndWXyYuzdIl20eCDK2g9shNJ+TmJR+zmCkRILpk\\/rFOcI0h5DZtrZLgyJlwxBBjUUng0FzVjZlMaHWMzQ+Tq1QVcfbH8nSP+KtPks+yXS7aMuSqU\\/SnX9KX8nBBI49gfiXj\\/ANUj5N\\/TOrLDCm1QUoD0Y1\\/Z7TYNpbBfr9KdxTnBsrZdwt7VJOgoPfCatvk4UsIQbW2cc9Vl0mk\\/J1QWCeNtSkCI6p3+eq\\/s45jC+PtSY9HCNzVxwITmgWlq3KNZPGQre+1I+SHKOCUPWyh7hZNWXyQ5Zt0krY+H75q7Xbi5dBsVunNGUKPtogVxKrI3boY491lWCvOqYImpHtV0poX7YVZFyUzlJ\\/2pxdmlJmzcxk9kkbNM9MNICGylMaB7igRB1Sr\\/AGttVi\\/8WIhJIIomzKjnxD2cxOJOu0zQTZJDhRxLmQERiRNLTYLT\\/dL0BQUZSRs025ZsK6jXGPJVidhBq3ug+VfV3UAAbWCmZpREnVOoYWvz25V23TIaAVgyUAmT6bpojI69KuRfm4UG75ttOYxSSNiNiIqwHJC4c8TdsuIxVCEHYNXouQ6y6LtLTSYyyVA70g36lafZKITBmTRF4Dq4bk9gqo5D\\/wA7P9aTnjtW4E7pSikSpYA\\/E0\\/4pS0LYu20piMVbBNdPklYzeNiO4T6\\/wA5orv943dt+ppkvBtPVcQV+pSYFeb739adUuYS4kGfU0C\\/P26K+sEfbpimSqdrkx71enj\\/ABTodYdWeqjKIgHHRriDxfjXvCtvBzBcqUdETT1za3S3WHGnAGlg5SO4pPzcoAJS5pMgHISAKC+PKMcXTE+9BfHsqSoNu\\/eB8xpp1txBUkGKuGGLhotupOMzo+1Kf4laEIU08OmdJhQj+VNK4qFFCHpHpKtxQ+ZFnJbDyV+shc0wnjbh09MO5Ahe8gJFeX2NPW9stanFtyfUzXRsB2aVv86Qm1TCEtLgkGrdDaCQlMfrVweQ66+iWQnMRkBsRurFfJm4X4kMBrFUYRM0VBMklI9zqrgvEI6S0je+3alL5HIY9ApqfxTQOjtNT+KaWu\\/StWBYUCo4yYgUHORKSIYB\\/OaLnJjWNv27zTCrghXWDYPpian8U04p7JWPTj8aze+80Kyf1BbNMFzJWZR21FX\\/ABXHC6c6906FdVHwoPlUU62K4nhuO8e6li\\/dcdLSyQsGImnLSxuUPtLuFhKHAhfkNHiONUSrx5iBr0AFJ4TjwhRHIriQKTxNm2vP5zX3GjSeOZU24tN0ClIlRikjjFJkcgj9RSuM4x26S6q+IcHlAIgUeF45b7yBfOhbZK1xIFL43iFk58m4CO80xa2CGPLflSU+4JVTNpZvrwbvUqVMRFPcMGoU5cAT+FOcFZOuZKuzJVTHC2tuDhdKM+hE0xwZV5kviCParl+5Fy4WLa3WAtEqUB504+\\/uDXF3Vwm9dL1iwwjA4qTE+ncim7m7Krmbe3095djY9zQuXvWyYmPvihcvYfujIMjWaaNy9\\/lWTv74oXLnQehplLkeUZCFUh+4U4c7C2ACDCgpJk0Ly99bFidb6iadubpLaVs2zHVX9oCsCmrm+IcLthbZfw\\/SDdW9ytSil6xYQiDvJJpi5uBcN52VulM+ZaVp0KeuLnNYbSyUj4ZVSLh\\/I5IZiNEKHevEEBPkaJjfmFMvk\\/aFA16Gr5Fsb2V8mpo5\\/ZifuiuLRbi8ew5JT68Fyg+m6Wwxb3JCrtwLdVkIHbfr\\/OghtcHx6+8gUFW+5vVkGDR6UoBvnNiRTKMEKJeKwYMmhe2bmaQ+BGjQYabQlz50cwmAe43R8JCgORPuRNQyf8WV+WqaVatlTyr7OEkbOgO9N3Fu4QlDyVGJgU8E+ruO6huf3k1Df+ZMUwE688671eXXHt3uLtqVu5fEEz6Vxt1YO3TiLe1wWEKlWMSKfurbxYbct8lIEhUfr\\/xQfssp6QnX8NF+zQVJLIH\\/AM96NzZQT0hofdpLqSxkEpAI0Dqkh4D90tYkkjKsnuniLK3xnYyECiYKSiytj+ooBcT4K3Cgr3FfSeYJsbbv7irYgKk27KCR3SRTpWVKAaSoD3oKVE9FqpVOmG6YJkygDVXPJ2bFz0ltErKokJn0mrLk7S5fW0y2QpKVGSmBV3ctWqA6prIkhOqF7bEAkRIBEilXtsAkxIPqBNIvLZZhMTMdqcaaebU242CnWq8BZa+gH8zVwOOtIQpg+cdkgmanicW5YjehB1XU4nLLET+tN2dish5LU5Qe5pNjZpIIYAIMjZp5y4DhDbKCn3JoJexP1ZoGPvUFXCTItmp3Hmq2WpQlaAlUbFXPJWDFz0nGz1CqJCZ9Jqy5GxuX1tMI86UqJMRoVeXLFu0Fut5AqAAoXlmQCYEgRIo3lokJgApPqBqkXVmswkpJmgRB1Tz7TCM3NJkChyVguTkDjSr+wCAuUkSOwpHI8crsUjU7FHk7NLiWxkSSAIBjdSPanSCFgJkwdTR63bwqZBP8dNBRUOpbhMn3mmiMu3pV1foZu+l83rcOQGYH4VYXyH7lxtNitqEqOZETV+90mQoW4clYEHdC5TAJtFSQOwmvEpCUlFospPfURTdw2pQAtVp3EkUIg+WnCAhRLeUCY96Tet6HgHQSPu0q8SES3YOKOpTEd6N4kNBfzesmRKQOwJpq6Q64hHg1pB2FKEARWvu1dYqfJNs4rDQIVAM0lpvKfCOg9x5q6smTZu\\/zqxWFZDoKRA9TVzc8om5wYt0qay+I+0VZXHJOXC03FultrFWJBq9cukNA26cl5CfyoP3gAliTAmDRfvClJSwB7gmkP3RICmMRP3qdS440tKHShR\\/iHcV4haHVIVfuygwQUU5dQ4geNcTIn4JBFJu1Afv7nxRtulXCg4r664kHfwSKN2U4E3649+nVmpThKkXi3ADsEUomTQfu8SehsH73emXblRhxoJHuDNNE5HfpVyjl\\/FQzctpbz7EiYirFHLeIc8RcNqRiqEpOwadF4lMog+8qgCh85HYdaKT+NFHImPpUJ36H0pLfLeSXGyPX8awfCVSr+tYud8h\\/Ols8qFrLbrRSVeUGujyuQBdZGjqujzCQkKeZ9Nn1NMM38KD6kH2xoNvjsacbuiTiuN0Rcg7eSDHvQTeH4XUmmUXGW1elX7nFHkCH0Pl0LHwnUwK4hfF+Ne8Ml\\/qYLkrOiJq7ebQw4VIUoERA7maWbEwhbT2SYmPSaS9x+lBL3kA9ferZ6wQ6UtqXkdAEmKX03G1oUklJEGvm2x35HP8AWafsuPYbLi0PFIPosmlvcWUITFwoJ0Iy7E0lzjFJ6SUvFOYMSRBV+dDjbIAwhz\\/WfWmbK1ZWFoDkj3WTSlpk6NXDln1jmy4pWQ7bBOqsV2sL6LbidbCvzNNLTkdHtVwOV8WrosslrIbVE9qsRyfiHPEtMpbwVjjEzVueRIc6hZUoL7SO36UBfQqUMzOiDX10D7FmY96Av4MtMT6EGv2j0HYSz1dY71STfgpCmmSI2coo\\/O2P2dsTJ1PcVPKCfoLY\\/rX7SLchi3C\\/aanlMB9Fb5bnzV+1StvyW4T\\/AB7339KWFSqAJqLifgboJfkabA1NNA5enar1uw8Y4p25eQvqokJTr4dCRXFt2CL57o3bzjvTVkF9oJmauba0s8nluPedyRjGjs19TME3bo3I3WNkACbpwpVvZ1qgmzVH113\\/AFGmWktpWOotU\\/e3V2bN+4aYU+6hxBJGGqKLAlUcm+hQ18dFXHIGXjHDlAKpmdRuivjg3PzlclOh8R9aHzZKsuRdV5cSCoxFWz1s80Cy5kkaq5ft0L6a3FJUdiBSbizUZFw5qff0oP8AHgKPXVv8D6VausuyW1kga7Vc+MF4vp8a24nMecoAJ13muON6blzq8a2wjBULAEmr3xZcZS3bJcbmVZJB9azux3sQdd9ClG7CkhNkgtwNaBBrO6\\/yA\\/mKTmUyUQYGorpjLLpjKInHdOKvkvLxsG3EfwmQD+tB2\\/x3xafyzH\\/VFy8gFPGgz6SKtw6tBL1olsz20qaCSnQQB+Qp8vh0YWwWkjZ0IoLvMv3JMfmKIdk\\/VhFW3U3k0En2Aq86Bvl5csWjmJbGQjX5xXGhrxrxHJqfVgqW9wPxpxJU2sIcxUQYVEwaZsPBsoBv3Mysla1bzWqoGknkTkFewFNMuIWSu5UsexSBQiDs05dWg6iFXASR5T6EE1apYzUlPJOLKEHIHUA+80hpGo5pWu0FNHolrBXKmQ58YIBH4GmVstuyrlC5AMpJTFNusO5dN0LgwSndLuLZK1JL6QQdiunan\\/EV7PoqkC3ZcSo3p9VYk+lW7zDiyEOhRxmBV0\\/F+v8AYwdOY+mg71XGvjxTmPEi38ivpIImuur2Fcl0n0NJet0OJylIIUfN+lC4TlCuOMhUThPb1k111ewo3CwhZCASBoUbnNeR4kFw9yQP96TelAKfmlScj5glIIoOslcniPTvgmjcpSrBXDCFblKAQaLqQU\\/sVJSf\\/VMirW7UDgnjyyFbJgAUstlSiWWyZntTj60LxRYoUBoHtTDynJ6lkhuAO+6YWErJS2gGO4Ff\\/8QAJxEAAQIEBQUBAQEAAAAAAAAAAAECAxEUUwQTUVJhEBIhQZExM0L\\/2gAIAQIBAT8AqYkvQmKiroLiovBVRV2lTF4KmJwVUVNpVRZehMTEXaej11kKnVClhb1KOFccUkK44o4N15SQt7ikhb3FHBuOKSFccUsO44z1lPtKhdpULtKl2wqF2lQu0qXbCpXagmIVf8oeZfino+iKnSfVCXBLwSNCXBLgToiGWy4wymXWGUy6wSEy60y2XWmWy60WEy80ymXWCQmy\\/q078PL+a\\/TuwqfkFfp34Wyv0R2FT8hL9O\\/DWl+nfhrS\\/RXYX3BX6d2Fsr9EdhvUFSSy9\\/hJZJ4UkuinnRSS6KedFJcKSXRREXQzW8mczkzmcmczkzW8ma0zmcmczkzWLqf\\/xAArEQABAgMFBwUBAAAAAAAAAAAAAQIDFJEEERITUgUVMVFTYaEgITBBQ7H\\/2gAIAQMBAT8AxKI93YxuMbuxiUxKY3djGojl+FCYXpMJp3Qh0JpyfjDoTTuhDoTLuiyhMu6LKE07oQ6Ey7osoTDl\\/FlDM7GZ2MxeRmryMzsZi8jNXkZq8hInb4U+FCWi6VoSsXS6hKxdLqKS0XS6hLRdLqEtF0uoSsXS6hKxdLqKS8RPpaE1F44hbZH1k5H1i2yOvF\\/hCbjav4TcbV4QnI6cHk5H1k3HX3V6+n39CISEa+69vkXZlpROLKibNtC\\/bKi7NtCaTd8fm3ybvj82+RNm2heCsqbttF917R2z7Q1blw1P\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"BYivqBjVcZ\\/NdZ08IF+75IOnTvIjusAcPPfDzvkUz4khcNypbhUhQw==\",\"scanLengths\":[14227,80678,30618,39001],\"midQualityFileSha256\":\"5FKXs9JOspQ9E+ZI63DfFaMy7DYXP5RnBgAc30wjFDI=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lWAcDbLxEvK946FrGBQbf7BlMwPV6IYlWwP\\/OAMLjuw=\"}},\"contextInfo\":{\"stanzaId\":\"A5E01B7FB12F9B685D83C33580B2AE35\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"izWpRRDjawuWzRU+qZHB4alWufpAnCArIntlC14fe5g=\",\"fileLength\":\"164524\",\"height\":1280,\"width\":1073,\"mediaKey\":\"\\/OvVV+Gx8XLHSNFQMhtRs9i0AnQXEXtryuluTsPqh1M=\",\"fileEncSha256\":\"C02W2Fp0LX5KTXBsudd2Wf1VpEAnBXpR\\/U0b+UxBoyQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771090608\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAhgMBIgACEQEDEQH\\/xAAyAAACAwEBAQAAAAAAAAAAAAADBAACBQYBBwEBAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADmy93TzcMZT6HjYnOW6XQODZ7nLk48u7bV5224wYXnXt5nz7F+nlr5zPqEtx\\/UqcZpXV9zHInI2PKikCNGarr3OvGzX0GJPUy6ujKSsyFt7PoNrn8mkdERC\\/j6JnRutijYHiDdclwvWrWDm1EWJw18+TtjcG1mdnbh\\/TvUcEB0pOFJXXtcIeOwZ5MkdOXjPK7mcnFwbkvw5VuXzEHC2C5WssKSD1S1jJ60AmZWL1t1pWVlXDemvPK4l7D9HgmHCUHNW1hFNCts+QR1r6uxFoZ10b9vRpVorI96pRdbF0xiY7SrVo2X00fY8IrE14pLeeK4Temcxo8ZzDHg3nMQQBoSkm7+kfz9KMgjkGJeHMXKTl5gGPbMBGJDObsUk507ddaz7aDCe+MhzE4YtppeW86ZEvt+t0WS9mzbLeXpDinmRYeovEbtn+nQeZLzSZwXNaLxn\\/\\/EADwQAAEDBAECBAEJBQgDAAAAAAECAxEABBIhBRMxFCJBUTIGFSMkM1JhcYElNEKRoRY1RVSSscHRU2KC\\/9oACAEBAAE\\/AH\\/kxepfWFXdoklZ0XYMndWXyYuzdIl20eCDK2g9shNJ+TmJR+zmCkRILpk\\/rFOcI0h5DZtrZLgyJlwxBBjUUng0FzVjZlMaHWMzQ+Tq1QVcfbH8nSP+KtPks+yXS7aMuSqU\\/SnX9KX8nBBI49gfiXj\\/ANUj5N\\/TOrLDCm1QUoD0Y1\\/Z7TYNpbBfr9KdxTnBsrZdwt7VJOgoPfCatvk4UsIQbW2cc9Vl0mk\\/J1QWCeNtSkCI6p3+eq\\/s45jC+PtSY9HCNzVxwITmgWlq3KNZPGQre+1I+SHKOCUPWyh7hZNWXyQ5Zt0krY+H75q7Xbi5dBsVunNGUKPtogVxKrI3boY491lWCvOqYImpHtV0poX7YVZFyUzlJ\\/2pxdmlJmzcxk9kkbNM9MNICGylMaB7igRB1Sr\\/AGttVi\\/8WIhJIIomzKjnxD2cxOJOu0zQTZJDhRxLmQERiRNLTYLT\\/dL0BQUZSRs025ZsK6jXGPJVidhBq3ug+VfV3UAAbWCmZpREnVOoYWvz25V23TIaAVgyUAmT6bpojI69KuRfm4UG75ttOYxSSNiNiIqwHJC4c8TdsuIxVCEHYNXouQ6y6LtLTSYyyVA70g36lafZKITBmTRF4Dq4bk9gqo5D\\/wA7P9aTnjtW4E7pSikSpYA\\/E0\\/4pS0LYu20piMVbBNdPklYzeNiO4T6\\/wA5orv943dt+ppkvBtPVcQV+pSYFeb739adUuYS4kGfU0C\\/P26K+sEfbpimSqdrkx71enj\\/ABTodYdWeqjKIgHHRriDxfjXvCtvBzBcqUdETT1za3S3WHGnAGlg5SO4pPzcoAJS5pMgHISAKC+PKMcXTE+9BfHsqSoNu\\/eB8xpp1txBUkGKuGGLhotupOMzo+1Kf4laEIU08OmdJhQj+VNK4qFFCHpHpKtxQ+ZFnJbDyV+shc0wnjbh09MO5Ahe8gJFeX2NPW9stanFtyfUzXRsB2aVv86Qm1TCEtLgkGrdDaCQlMfrVweQ66+iWQnMRkBsRurFfJm4X4kMBrFUYRM0VBMklI9zqrgvEI6S0je+3alL5HIY9ApqfxTQOjtNT+KaWu\\/StWBYUCo4yYgUHORKSIYB\\/OaLnJjWNv27zTCrghXWDYPpian8U04p7JWPTj8aze+80Kyf1BbNMFzJWZR21FX\\/ABXHC6c6906FdVHwoPlUU62K4nhuO8e6li\\/dcdLSyQsGImnLSxuUPtLuFhKHAhfkNHiONUSrx5iBr0AFJ4TjwhRHIriQKTxNm2vP5zX3GjSeOZU24tN0ClIlRikjjFJkcgj9RSuM4x26S6q+IcHlAIgUeF45b7yBfOhbZK1xIFL43iFk58m4CO80xa2CGPLflSU+4JVTNpZvrwbvUqVMRFPcMGoU5cAT+FOcFZOuZKuzJVTHC2tuDhdKM+hE0xwZV5kviCParl+5Fy4WLa3WAtEqUB504+\\/uDXF3Vwm9dL1iwwjA4qTE+ncim7m7Krmbe3095djY9zQuXvWyYmPvihcvYfujIMjWaaNy9\\/lWTv74oXLnQehplLkeUZCFUh+4U4c7C2ACDCgpJk0Ly99bFidb6iadubpLaVs2zHVX9oCsCmrm+IcLthbZfw\\/SDdW9ytSil6xYQiDvJJpi5uBcN52VulM+ZaVp0KeuLnNYbSyUj4ZVSLh\\/I5IZiNEKHevEEBPkaJjfmFMvk\\/aFA16Gr5Fsb2V8mpo5\\/ZifuiuLRbi8ew5JT68Fyg+m6Wwxb3JCrtwLdVkIHbfr\\/OghtcHx6+8gUFW+5vVkGDR6UoBvnNiRTKMEKJeKwYMmhe2bmaQ+BGjQYabQlz50cwmAe43R8JCgORPuRNQyf8WV+WqaVatlTyr7OEkbOgO9N3Fu4QlDyVGJgU8E+ruO6huf3k1Df+ZMUwE688671eXXHt3uLtqVu5fEEz6Vxt1YO3TiLe1wWEKlWMSKfurbxYbct8lIEhUfr\\/xQfssp6QnX8NF+zQVJLIH\\/AM96NzZQT0hofdpLqSxkEpAI0Dqkh4D90tYkkjKsnuniLK3xnYyECiYKSiytj+ooBcT4K3Cgr3FfSeYJsbbv7irYgKk27KCR3SRTpWVKAaSoD3oKVE9FqpVOmG6YJkygDVXPJ2bFz0ltErKokJn0mrLk7S5fW0y2QpKVGSmBV3ctWqA6prIkhOqF7bEAkRIBEilXtsAkxIPqBNIvLZZhMTMdqcaaebU242CnWq8BZa+gH8zVwOOtIQpg+cdkgmanicW5YjehB1XU4nLLET+tN2dish5LU5Qe5pNjZpIIYAIMjZp5y4DhDbKCn3JoJexP1ZoGPvUFXCTItmp3Hmq2WpQlaAlUbFXPJWDFz0nGz1CqJCZ9Jqy5GxuX1tMI86UqJMRoVeXLFu0Fut5AqAAoXlmQCYEgRIo3lokJgApPqBqkXVmswkpJmgRB1Tz7TCM3NJkChyVguTkDjSr+wCAuUkSOwpHI8crsUjU7FHk7NLiWxkSSAIBjdSPanSCFgJkwdTR63bwqZBP8dNBRUOpbhMn3mmiMu3pV1foZu+l83rcOQGYH4VYXyH7lxtNitqEqOZETV+90mQoW4clYEHdC5TAJtFSQOwmvEpCUlFospPfURTdw2pQAtVp3EkUIg+WnCAhRLeUCY96Tet6HgHQSPu0q8SES3YOKOpTEd6N4kNBfzesmRKQOwJpq6Q64hHg1pB2FKEARWvu1dYqfJNs4rDQIVAM0lpvKfCOg9x5q6smTZu\\/zqxWFZDoKRA9TVzc8om5wYt0qay+I+0VZXHJOXC03FultrFWJBq9cukNA26cl5CfyoP3gAliTAmDRfvClJSwB7gmkP3RICmMRP3qdS440tKHShR\\/iHcV4haHVIVfuygwQUU5dQ4geNcTIn4JBFJu1Afv7nxRtulXCg4r664kHfwSKN2U4E3649+nVmpThKkXi3ADsEUomTQfu8SehsH73emXblRhxoJHuDNNE5HfpVyjl\\/FQzctpbz7EiYirFHLeIc8RcNqRiqEpOwadF4lMog+8qgCh85HYdaKT+NFHImPpUJ36H0pLfLeSXGyPX8awfCVSr+tYud8h\\/Ols8qFrLbrRSVeUGujyuQBdZGjqujzCQkKeZ9Nn1NMM38KD6kH2xoNvjsacbuiTiuN0Rcg7eSDHvQTeH4XUmmUXGW1elX7nFHkCH0Pl0LHwnUwK4hfF+Ne8Ml\\/qYLkrOiJq7ebQw4VIUoERA7maWbEwhbT2SYmPSaS9x+lBL3kA9ferZ6wQ6UtqXkdAEmKX03G1oUklJEGvm2x35HP8AWafsuPYbLi0PFIPosmlvcWUITFwoJ0Iy7E0lzjFJ6SUvFOYMSRBV+dDjbIAwhz\\/WfWmbK1ZWFoDkj3WTSlpk6NXDln1jmy4pWQ7bBOqsV2sL6LbidbCvzNNLTkdHtVwOV8WrosslrIbVE9qsRyfiHPEtMpbwVjjEzVueRIc6hZUoL7SO36UBfQqUMzOiDX10D7FmY96Av4MtMT6EGv2j0HYSz1dY71STfgpCmmSI2coo\\/O2P2dsTJ1PcVPKCfoLY\\/rX7SLchi3C\\/aanlMB9Fb5bnzV+1StvyW4T\\/AB7339KWFSqAJqLifgboJfkabA1NNA5enar1uw8Y4p25eQvqokJTr4dCRXFt2CL57o3bzjvTVkF9oJmauba0s8nluPedyRjGjs19TME3bo3I3WNkACbpwpVvZ1qgmzVH113\\/AFGmWktpWOotU\\/e3V2bN+4aYU+6hxBJGGqKLAlUcm+hQ18dFXHIGXjHDlAKpmdRuivjg3PzlclOh8R9aHzZKsuRdV5cSCoxFWz1s80Cy5kkaq5ft0L6a3FJUdiBSbizUZFw5qff0oP8AHgKPXVv8D6VausuyW1kga7Vc+MF4vp8a24nMecoAJ13muON6blzq8a2wjBULAEmr3xZcZS3bJcbmVZJB9azux3sQdd9ClG7CkhNkgtwNaBBrO6\\/yA\\/mKTmUyUQYGorpjLLpjKInHdOKvkvLxsG3EfwmQD+tB2\\/x3xafyzH\\/VFy8gFPGgz6SKtw6tBL1olsz20qaCSnQQB+Qp8vh0YWwWkjZ0IoLvMv3JMfmKIdk\\/VhFW3U3k0En2Aq86Bvl5csWjmJbGQjX5xXGhrxrxHJqfVgqW9wPxpxJU2sIcxUQYVEwaZsPBsoBv3Mysla1bzWqoGknkTkFewFNMuIWSu5UsexSBQiDs05dWg6iFXASR5T6EE1apYzUlPJOLKEHIHUA+80hpGo5pWu0FNHolrBXKmQ58YIBH4GmVstuyrlC5AMpJTFNusO5dN0LgwSndLuLZK1JL6QQdiunan\\/EV7PoqkC3ZcSo3p9VYk+lW7zDiyEOhRxmBV0\\/F+v8AYwdOY+mg71XGvjxTmPEi38ivpIImuur2Fcl0n0NJet0OJylIIUfN+lC4TlCuOMhUThPb1k111ewo3CwhZCASBoUbnNeR4kFw9yQP96TelAKfmlScj5glIIoOslcniPTvgmjcpSrBXDCFblKAQaLqQU\\/sVJSf\\/VMirW7UDgnjyyFbJgAUstlSiWWyZntTj60LxRYoUBoHtTDynJ6lkhuAO+6YWErJS2gGO4Ff\\/8QAJxEAAQIEBQUBAQEAAAAAAAAAAAECAxEUUwQTUVJhEBIhQZExM0L\\/2gAIAQIBAT8AqYkvQmKiroLiovBVRV2lTF4KmJwVUVNpVRZehMTEXaej11kKnVClhb1KOFccUkK44o4N15SQt7ikhb3FHBuOKSFccUsO44z1lPtKhdpULtKl2wqF2lQu0qXbCpXagmIVf8oeZfino+iKnSfVCXBLwSNCXBLgToiGWy4wymXWGUy6wSEy60y2XWmWy60WEy80ymXWCQmy\\/q078PL+a\\/TuwqfkFfp34Wyv0R2FT8hL9O\\/DWl+nfhrS\\/RXYX3BX6d2Fsr9EdhvUFSSy9\\/hJZJ4UkuinnRSS6KedFJcKSXRREXQzW8mczkzmcmczkzW8ma0zmcmczkzWLqf\\/xAArEQABAgMFBwUBAAAAAAAAAAAAAQIDFJEEERITUgUVMVFTYaEgITBBQ7H\\/2gAIAQMBAT8AxKI93YxuMbuxiUxKY3djGojl+FCYXpMJp3Qh0JpyfjDoTTuhDoTLuiyhMu6LKE07oQ6Ey7osoTDl\\/FlDM7GZ2MxeRmryMzsZi8jNXkZq8hInb4U+FCWi6VoSsXS6hKxdLqKS0XS6hLRdLqEtF0uoSsXS6hKxdLqKS8RPpaE1F44hbZH1k5H1i2yOvF\\/hCbjav4TcbV4QnI6cHk5H1k3HX3V6+n39CISEa+69vkXZlpROLKibNtC\\/bKi7NtCaTd8fm3ybvj82+RNm2heCsqbttF917R2z7Q1blw1P\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"BYivqBjVcZ\\/NdZ08IF+75IOnTvIjusAcPPfDzvkUz4khcNypbhUhQw==\",\"scanLengths\":[14227,80678,30618,39001],\"midQualityFileSha256\":\"5FKXs9JOspQ9E+ZI63DfFaMy7DYXP5RnBgAc30wjFDI=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771107734,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:14.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:15'),
(19543, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:15.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:15'),
(19544, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"pushName\":\"Ciro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/220078278_658898325508647_8364473009247469191_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUYLwHtQ2lkFYF26cQKQ9jskbvPMUdFr-pBJZywrQdWA&oe=699E1C7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:15.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:16'),
(19545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"166391445487662@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/220078278_658898325508647_8364473009247469191_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUYLwHtQ2lkFYF26cQKQ9jskbvPMUdFr-pBJZywrQdWA&oe=699E1C7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:15.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:16'),
(19546, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"166391445487662@lid\",\"id\":\"A50BB853839B2889273B236CBCC1EBE3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107736466,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:16.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:16'),
(19547, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"166391445487662@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:17.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:18'),
(19548, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"166391445487662@lid\",\"fromMe\":true,\"id\":\"A50BB853839B2889273B236CBCC1EBE3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107737,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:17.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:18'),
(19549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/220078278_658898325508647_8364473009247469191_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUYLwHtQ2lkFYF26cQKQ9jskbvPMUdFr-pBJZywrQdWA&oe=699E1C7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:18.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:18'),
(19550, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"166391445487662@lid\",\"id\":\"A50BB853839B2889273B236CBCC1EBE3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771107740195,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:20.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:20'),
(19551, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:22.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:22'),
(19552, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD84C6003C845B15581\"},\"pushName\":\"Eric\",\"message\":{\"conversation\":\"Já reiniciei o modem e continua assim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZsgGorl\\/FyfqQfznhu0lNg4VPznRiBc90ZaDrlKxuK4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771107742,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:22.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:22:22'),
(19553, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:22.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:23'),
(19554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:22.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:23'),
(19555, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:22:24.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:22:24'),
(19556, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:14.468Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:14'),
(19557, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5699163D809D622E92C6E3E4A78BC0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637127508_1539770383774732_5512452103177915241_n.enc?ccb=11-4&oh=01_Q5Aa3wFAHB7lZK28-NmjP5pEIZxEDRW2sGZSt-GaZT9IrZC9Bg&oe=69B86D1A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"N8+5XEl0ozP+fGS3xStUHwoDAZV4ANmCPUi5ZM9rmuE=\",\"fileEncSha256\":\"1hYIVWeXTnhr9W2+uk4lwi4YcLWccMXyuwJI640TxNs=\",\"mediaKey\":\"lD04DfpHJfJ1LyOCP5+J8Xw6odkqfViTCkxBxaHWKkg=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/637127508_1539770383774732_5512452103177915241_n.enc?ccb=11-4&oh=01_Q5Aa3wFAHB7lZK28-NmjP5pEIZxEDRW2sGZSt-GaZT9IrZC9Bg&oe=69B86D1A&_nc_sid=5e03e0\",\"fileLength\":\"5856\",\"mediaKeyTimestamp\":\"1702488922532\",\"isAnimated\":false,\"stickerSentTs\":\"1771107913194\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771107914,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:14.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:14'),
(19558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:14.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:15'),
(19559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5699163D809D622E92C6E3E4A78BC0B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107914740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:14.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:15'),
(19560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5699163D809D622E92C6E3E4A78BC0B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771107918541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:18.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:18'),
(19561, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:28.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:28'),
(19562, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5D61EACF419C72C221981D4D3030687\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107928,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:28.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:29'),
(19563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:29.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:29'),
(19564, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:30.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:30'),
(19565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A52DC4F6CAC87EC812D290ED95507626\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Td bem\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771107930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:30.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:30'),
(19566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:30.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:31'),
(19567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5D61EACF419C72C221981D4D3030687\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107931713,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:31.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:31'),
(19568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A52DC4F6CAC87EC812D290ED95507626\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107931752,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:31.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:32'),
(19569, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:56.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:57'),
(19570, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A540EFFE1839AA76D5D2AA52648B034C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32600326_1406102367464670_663045642452328335_n.enc?ccb=11-4&oh=01_Q5Aa3wHTXntRXGek5waSI3_71q40BtXuf3iyOoxdaouzEWWs0g&oe=69B85CC1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GkMItLGoloWSdooI3EeVex53BLPwpPtZoYfmxBg8Qgs=\",\"fileLength\":\"22042\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"M67JPDkVHorWoTGGGLwfjd4bdEWzdOE8q+ECEk9hefQ=\",\"fileEncSha256\":\"FPGwIbEFWLD0xfJTLOTwBIGwcGyv7cZxHalmc9hzjXY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32600326_1406102367464670_663045642452328335_n.enc?ccb=11-4&oh=01_Q5Aa3wHTXntRXGek5waSI3_71q40BtXuf3iyOoxdaouzEWWs0g&oe=69B85CC1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771107948\",\"waveform\":\"AEVWN1lEQ1BaCgALUj1NMk5PI1dGRUlJMgAyU1A4AAAAAAAqPVBYNB88TU1NTTkaU0gWOz1ISkJUJEZCTicoOw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771107956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:56.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:57'),
(19571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:57.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:25:57'),
(19572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A540EFFE1839AA76D5D2AA52648B034C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107957407,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:25:57.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:25:58'),
(19573, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A52A0D484F7FCAADB909E43052F40362\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30799479_886359450824205_8492483242869793060_n.enc?ccb=11-4&oh=01_Q5Aa3wGgiHCrg-4WUUqswjuDKVyADywKyg-P2-8JqCMbpJfB9g&oe=69B85E84&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Lxe8NtklQG2AiYY1c1N4UKBdLRdDElPeGjN1PfnPyis=\",\"fileLength\":\"5623\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"AECXLRGUMZ1x6EA2iZjy78kkxVtQSimqFq6pOMfpuz8=\",\"fileEncSha256\":\"sEFxh5TxidXIsHlKOUktYQIyvy\\/b3h32Aj3QeFp6uOU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30799479_886359450824205_8492483242869793060_n.enc?ccb=11-4&oh=01_Q5Aa3wGgiHCrg-4WUUqswjuDKVyADywKyg-P2-8JqCMbpJfB9g&oe=69B85E84&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771107969\",\"waveform\":\"AAEEBgYCAAEFAgwXGRobGxtLXF1dWldVVFBQUVNQUlZYUUk7IxEFAAAGBAAADyMwLR0sQkZCMi1ISEI6NBYkPA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771107970,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:26:10.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:26:11'),
(19574, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:26:10.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:26:11'),
(19575, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:26:11.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:26:11'),
(19576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A52A0D484F7FCAADB909E43052F40362\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771107971561,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:26:11.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:26:12'),
(19577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A52A0D484F7FCAADB909E43052F40362\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108001211,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:26:41.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:26:41'),
(19578, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"presences\":{\"223578951790814@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:26:58.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:26:59'),
(19579, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"14074082623@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAB79357892BECFFE92\"},\"pushName\":\"Lazaroni Junior\",\"message\":{\"conversation\":\"Infelizmente vou ter que procurar outra pessoa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"UKimVjm29uu8qg==\",\"senderTimestamp\":\"1770913914\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DLLmdQHNClZZmT8lZnrKbGRplzUEjDPs9lakUrznSRg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108028,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:08.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:27:08'),
(19580, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"14074082623@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:08.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:08'),
(19581, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:08.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:08'),
(19582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"14074082623@s.whatsapp.net\",\"pushName\":\"Junior 2623 $180 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMWcVtsXJez-7HG6wFp8UJps_NT7pUhQ-ogM7rVZ3UZw&oe=699E0EB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:09.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:09'),
(19583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"14074082623@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMWcVtsXJez-7HG6wFp8UJps_NT7pUhQ-ogM7rVZ3UZw&oe=699E0EB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:08.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:09'),
(19584, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":true,\"id\":\"A5FB46DB598D04CD345400B1D71D4193\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108030,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:10.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:27:10'),
(19585, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"223578951790814@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:10.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:10'),
(19586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"presences\":{\"223578951790814@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:11.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:11'),
(19587, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMWcVtsXJez-7HG6wFp8UJps_NT7pUhQ-ogM7rVZ3UZw&oe=699E0EB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:10.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:27:11'),
(19588, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814@lid\",\"id\":\"A5FB46DB598D04CD345400B1D71D4193\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108030494,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:27:10.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:27:11'),
(19589, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:03.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:04'),
(19590, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A58568D5A52063E4AFF1B39B90922D2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ *Usuário:* 203133458\\n✅ *Senha:* 958711925\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108083,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:03.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:04'),
(19591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:04.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19592, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A58568D5A52063E4AFF1B39B90922D2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108084710,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:04.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:05'),
(19593, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:10.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:10'),
(19594, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A536043B552290C8BCC4337E4567FBEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636226802_1696237968005392_1555304280901694953_n.enc?ccb=11-4&oh=01_Q5Aa3wH-KXYtx-Ez1kcNsAUIwFAPrDkXTQoGNF3ouFLMEfrklA&oe=69B8621E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ZOSE7fH6zqnxJ7tCwkpMBYazwSsakaPoIZdWPDLxOco=\",\"fileLength\":\"11340\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"tZ0HixZ244K736OKECYvzZ9rt5mMKrN7VhzhXnoaBL8=\",\"fileEncSha256\":\"jiV4tCm7XMyx2DP312U3e9zrjanyCRR3Si9Hchpt+AY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636226802_1696237968005392_1555304280901694953_n.enc?ccb=11-4&oh=01_Q5Aa3wH-KXYtx-Ez1kcNsAUIwFAPrDkXTQoGNF3ouFLMEfrklA&oe=69B8621E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108086\",\"waveform\":\"ABVJNmFPMFVQVVtYWC83QlQ3TEtVPlJIRlhbREVGIVVOTE1LMExOUUxGVE5VWVtPTEw1T1FJSFNVVyoaMERSKw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108090,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:10.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:10'),
(19595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:10.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:11'),
(19596, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A536043B552290C8BCC4337E4567FBEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108090813,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:10.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:12'),
(19597, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A536043B552290C8BCC4337E4567FBEE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108099927,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:19.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:20'),
(19598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A58568D5A52063E4AFF1B39B90922D2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108100255,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:20.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:20'),
(19599, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"223578951790814@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:22.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:22'),
(19600, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":true,\"id\":\"A5853FC2773EF7733D911555A0FC6D15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637429690_906263455146580_6713404705857127903_n.enc?ccb=11-4&oh=01_Q5Aa3wFDqN8oPW01OoxE_D4WI5YvbiTg3dbokFqcyqbaANhXng&oe=69B8713A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"EqpGaMrae2++rB+qb9IdAYL12U4jAr3Bl5QO9W1Uwyk=\",\"fileLength\":\"3738\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"Kyhq0yEhD2wjFHqNZkPkvWCZJf3IncSOfyBN0jhwC4s=\",\"fileEncSha256\":\"5iJUivfKl2HupMD9\\/WHLRPhMC8Nd5r+4heJKbpHmu8g=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637429690_906263455146580_6713404705857127903_n.enc?ccb=11-4&oh=01_Q5Aa3wFDqN8oPW01OoxE_D4WI5YvbiTg3dbokFqcyqbaANhXng&oe=69B8713A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108101\",\"contextInfo\":{\"stanzaId\":\"3AAB79357892BECFFE92\",\"participant\":\"223578951790814@lid\",\"quotedMessage\":{\"conversation\":\"Infelizmente vou ter que procurar outra pessoa\"}},\"waveform\":\"AAQICQoGAQgSKUVPUVNWVlRSUlJUVVVUT0xQVVZXV1dRSk5SUlFTVVVUUU4+JhcOEyYwMDM8QkJDSU9QUE5JUQ==\"}},\"contextInfo\":{\"stanzaId\":\"3AAB79357892BECFFE92\",\"participant\":\"223578951790814@lid\",\"quotedMessage\":{\"conversation\":\"Infelizmente vou ter que procurar outra pessoa\"}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108101,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:22.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:22'),
(19601, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814@lid\",\"id\":\"A5FB46DB598D04CD345400B1D71D4193\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108102679,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:22.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:23'),
(19602, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMWcVtsXJez-7HG6wFp8UJps_NT7pUhQ-ogM7rVZ3UZw&oe=699E0EB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:22.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:23'),
(19603, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814@lid\",\"id\":\"A5853FC2773EF7733D911555A0FC6D15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108102878,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:22.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:24'),
(19604, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:30.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:30'),
(19605, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:31.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:31'),
(19606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:31.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:31'),
(19607, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A827F95435A643FEC1A\"},\"pushName\":\"Eric\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5m8HTnOpj4nr7sBr+bVgK9SG2TOqiQGEE8\\/6Bj1rnbs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108111,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:31.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:32'),
(19608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:31.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:32'),
(19609, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A540EFFE1839AA76D5D2AA52648B034C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108113066,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:33.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:33'),
(19610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A540EFFE1839AA76D5D2AA52648B034C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108112668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:32.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:33'),
(19611, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5D61EACF419C72C221981D4D3030687\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108112678,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:32.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:33'),
(19612, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:33.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:34'),
(19613, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A52DC4F6CAC87EC812D290ED95507626\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108112672,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:32.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:28:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19614, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGUS1MllYVRIgvwxOss1vMlrM4HBLO4ubHgWXqYKVYqlA&oe=699DEB1B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5gIVKilXnJLDashUxYPYSp9f1sYce7b_yVcQ-r-QVZg&oe=699E0B26&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wGtXI5mIF0G6Ilz1xojJUvsoHl_LkbLWt5cATos-n8NEA&oe=699E0559&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfd_gQC5Q9OR2SP-jJPig6Uq5nK11AJQXwnPAhbgRTw&oe=699E0FB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzCQ3Af_58hP9xwEnJ2KFBPfnDlJsQ54u-bn59elzCZQ&oe=699E0B7B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGO-SIFaquUiPfDTOjZrUHfak6HhlkH6w-ujBAcZyl2w&oe=699DF440&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuCF6LSppIynHrRkuXAz1hwlWwEP0IO3hJynjFMOabBQ&oe=699E0DC3&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqhfsaAsQkQKIlXU6Bilag_n_pJfa-HoqoajP0ekk_HQ&oe=699DF49C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425658_1321482943364483_7970227004254490360_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcuG5YKN246JZeZX8MRxdoyvnZJ6_DOP-zf3K4wUIaRQ&oe=699E1B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAD0swX29zGNj7ptF59lcaNdw_UzQX9KmEmgauDk-VfQ&oe=699DF2D5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYc8HJF4tFBcxGHpk8YZ9T3VcRMno14whXCBz4MYhqbA&oe=699E0056&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-lvhDzY1MV_gSHYT8OwtqeZZp0QBzNcXg1P6-8kQdMw&oe=699DFB0B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOu5oCtWz1EN_H4Z2cz2-k6Ou1qfIelq81HUWYliBZkQ&oe=699DFE06&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wFgi-jYSg20JJ7YlaREzE7pvdymcbdUt-vn9VKWw7cBSA&oe=699DFBA2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6MDxlusWzWe1-49fQL7lh4KaqkbSjAPDjQTuW0JxSbg&oe=699E000C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr0FtI72dmS_-YoxyplGO2mjBwTUNjEeArct35N7ql_g&oe=699DF8BB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wFzTeDsyOSs4YEnsf0T5tGN5WFD4JAOOxisz9fkdYEfNA&oe=699DFA5C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wET5-ijWeXxvXErMsE_ojsWXkEKXOl8JqWV-OvyOwAKvg&oe=699E1DB8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wGa2SFkkrNdYdLOtK6x8OBi7nuctBmhpOhqPSH07JS45A&oe=699DF9C9&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVHaj3QiyWyqEnhwQfxf95KeKZd0VFl6_w5ZBGfiqbHA&oe=699E184F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLIBYBBKvVvtjnLEpt_CL2QIl2hiJkJ3pR6tV-GYmRWA&oe=699DF9D8&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUQNP9EDqDWoaxOmm42v-5y_J01fRNbq8nAzt3nD211Q&oe=699DEE56&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wEeQwXxqV8BvuDsfX_CmlTfM1yUHZKlU5f-rjuuKdzvvA&oe=699E0D1A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFO2T1Vqr7bP1DfGpPfgzdkT6vF2sQZXnHO4i1RuRB8ng&oe=699E10B6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnwry8da_KqdMdXIsWXk5r9UZv5HbOnsejO0Ee7HSKSQ&oe=699E21EF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wEn9UirdLDkHQYll6iNXMXonoKFgwRBcZXSUZ0YabpvpA&oe=699DF02B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGf7XhGObeNEhRYNEH20CauFWdHFhj8dQRoGfqEOYCv8Q&oe=699E1F4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2v2iByruQHGpfUJPuxE52BLwtN1VfBCqaEEgyYWTC3w&oe=699DEC3B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcnGinQ5H1bPqzhAc3pC2MzpCrnKnmm7R0NaLqgJ2bJA&oe=699E0582&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wGyEOXPl2zVmWuDr11mVoKWOrqV8AZnuTelBUOJyNXJkw&oe=699DEAD5&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFSMNgjpIyXGmGN3kc_TbnCwEFyzD-NZIyc6n9JC4MfaQ&oe=699DF28C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFsiyDJho8sJ6v4XTSS_P0j89WPxrLw6gxi_LGh_4XW6Q&oe=699E0A1A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKtq5kUbvz6xeLcElEYweRGvaUgv1nft6cwBWqAVeunA&oe=699DFBEF&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wELn_6LdTGzOUkS-KyBvoUfYJHTSge9jTymCkQ-fVdYCQ&oe=699E0025&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuBdYUPFLENHZHKoETtueL_Bflxe_GF2T_XHcj2KkPvw&oe=699E1890&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wE09Bn_vBV7WOvGYluJYv1U2CUBTocDQj4jg7ILv0_SvQ&oe=699DEE6A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMY50wRYQuKqYi3Oe9g0PvpSJRAqK6SG5ADP8WJMEtRA&oe=699E20FB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFHHH5Wix1h-yEkXl-KTl-S3SujY12XfsshVHh5ad7FTA&oe=699DF229&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wGa76SBVw5F_dj0II9BAccwxlFWgWMo_VFqTnJJE6tdNQ&oe=699DF5AB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wGWk8-xgTYQNuxiOurM26IvQF32421UlbvxYlKJ4CC8DA&oe=699DFEE4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbGUZfAHx6ebXH98xny5MmGOln6M8LYABv11p3flcJwg&oe=699E1CC5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPLY_Jer-1hV6ddJcMl6tk8tuuYX-V4vu2VBIQhUpeAQ&oe=699DEC30&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTF4tBaZw13J2uaaHl6b0hskmGBxRSiby5MNa-k8465g&oe=699E0AD2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG86yI7NCCJKEZZ5DBz5YSbLMwp4ZU76rAfgRUALpQTSA&oe=699E2095&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wHGJ6irfgprN5k6o9eZKNn8Z1kgBeMi6TpF3orkzELEOw&oe=699E0451&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wEURtZ3aNU9tk6taCUixzFC2x-VxoYBXHr_RLKbY0wPbw&oe=699E0A79&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4cUlEbXzeC1Y0O60G0kvhEsrMbt_D2HyaZ3qLyGOeoA&oe=699E1E37&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPw4c5C4pqNIv3TV83DRhYYUAnroVtZ7hoSjnyvhRMAA&oe=699DF52A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGMdsNSMY8u3HvXfQ2ie6h5QfKiRemRIMQA-MT7qrdzA&oe=699DEE65&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wHSkl3awsj6XJrayEu_N3Gp-O3L138WPRiRSN0O1vhOAg&oe=699DF3CA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wH5n6ieeqKHwvzaT8Kb3E3GOsZmGZruy5O3KmhEJXpEpw&oe=699DF43A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4e8C2EOuH6sLWr53o_agNzL-cH2lsJagoxGMOhLPOPQ&oe=699E152E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBP7iKH7BycRed1dYCF3Z0nzhcVegNcCbDZni7cIuTkQ&oe=699E142B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wFEXLRbuq1q96yKBoVtEx8Ra9MsC_aarbvPd9eXzaapJg&oe=699DED55&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_Xr2Yt0dYjJFkbNZnZgT8Q9g8Chp9t7vZCY3YSOkbTQ&oe=699E1AEE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsuE0uqxviDuiFX7gnisrGR-62vAQHSIFpeKOOqy0tJA&oe=699E0D98&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3wHljDYuM_PMZOJDAGmhYPc7xx1wYS7V9A5f91lFqiA&oe=699E2293&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wGl1j7OtDNtR8mKhjrVzJ-LDeVcJZAxOx62ZUzO0bxqZg&oe=699E0CB9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuET3dpZwuJN4aHqgnmzHVau3N5CV0Xa-mBBnS4y-y1A&oe=699DFF46&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHzryb4kf0WbnIae-Jg5HveZfpM3-9E-8REd10cYQ4NQ&oe=699E0CE1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEW0mFp5msxL2PamDDu8wtle1auPVsGQB2fNJbPGC0Ppg&oe=699DEC78&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZhqmePjOAgmsTbPeWE1o2MhCJihpWPNv5abrjePKOtQ&oe=699E0978&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDPYEEW3hP5ZnjYk2hKyQmImcd_B_dN2F14jS3YqGeRg&oe=699E1840&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wETWOa166GuTdqwC99-gJp-6RSqvA0idBKliRhW4h8ijw&oe=699E050F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wGsSH3KdrXOG8wA7Rll7PHV0XOIZoednNwLwPUrapGOtA&oe=699DF83E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHh9yO2XvxFgStyflwHepNDV1jsrFG8MZIhcQBkKPdlNA&oe=699DFBC2&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLki53ZkRUHdkIxWPJ62uZxrH4DtNPiJsIyGqBOh7SjQ&oe=699E214E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUoMe_fq72_NhnDJ0KzMDjpk2opDFaEeI96eM7C12rbg&oe=699DEFF4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9s2obQ1Y3bUGnXylidD1pRRAmDM1c6h_2f3y8WLF2LA&oe=699E0DD2&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wENSd8_-xjC9Z0yEjnD1xbqYIwUFlX899QMoCutqnIBoQ&oe=699E0110&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wEPVEfzzXllwT4J04u_m7FA0V7_rICq--a2Frqq2Ca3XA&oe=699DF4FC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wE6DKPS5UnbuAC0XZq_Kd0OiZPVOpM2Q4OogXL7GEyeCQ&oe=699DF832&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtyLpjgAFrOq4KxK5-IKgZIzxnMsmcLcwSZx-yT8s5dQ&oe=699DF2AF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGquG5hy5dzP6Sgd_e_jkrZQ2ZlaY_F6CDX3-TtGsbwxg&oe=699E1F7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV-HPps9c7i3PLLZqBswHsni-WQZsd95prX61lLv4qkA&oe=699DFCDF&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wFctlwekK_5SRnnYj8brtF8uOlJbRxRpcnpW6R8fJev8w&oe=699E00DA&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfFigtDoy3lmW4Qki8GpDv9XCk_j2OxfU3Elm98QOllA&oe=699DEC10&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wGvfOEhD7VLT2fzj1fb28wQSbQuT5wwkCeHyJXprWwPsg&oe=699E0804&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVQw0ATcMkBVxruU2blIoaVt2k8brBWRPaXBuXQMIljA&oe=699E0E97&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wF94chKamvA40Oe3mDBOyDHA0p9b4g2uyp0jVd3QXvUww&oe=699E0F3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wGFWUf0ixzDSz8KZWig4Gzoaxyg8AbPwwzUY5yR11Gjxw&oe=699DFD55&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wESOVrdwIdfgerOceOGYQEwbvSC_W_mQ7Vi02uEsye3qA&oe=699E0A4E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzZ28mdXQf_2hB41D5fJGhPNlcITWjx39Sx6h89lzUw&oe=699E1FB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGw00oZ6uY5ATGvqXTj9lsK5HYMvhXNS7GCW21Uw-cWxA&oe=699DF504&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wGycGBKZB4g5_vLHylwsFlnuYCAgbqEx8TIvCtRonYsog&oe=699E00BD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZlLlFVFrsd-R9CycSydGA7ZW8TVEVucHHUkXgR4V2Vw&oe=699E04E5&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHge5pQxO9eB60uD16hNdHS4HLIuSymC1e0yjJVuZmUw&oe=699E1C7F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGrPhZ6KFNqii8Ekm4hciOrvTo6Wxv3SV6UF7YlTgEQSw&oe=699E0182&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhNhsPY0sHqqp01iD-g9vsYvo66olljI1b82-ABbzTHw&oe=699DF021&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGEDeIoFbsWn4dCOgj37gOIojMim0pznIsf0qTOc_dPCA&oe=699DEB47&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRh8S_WHBw_OCP4Ka4ONbQbGX-B-jhbro4AmzNtwWeg&oe=699E10E7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wGSamYeK9qLBeHmb1voXF1GL84oEDkAmkGBX3a9rpneaA&oe=699DFC00&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy43eLTNI-P8o3PgGnQ7Op1j7BdnvOZKY8_PZRX4tm_A&oe=699E139D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJSAT9uy4uVzcaCkdnqgQpUuBNDAW28f5PQWM0y_F3Sg&oe=699E1B87&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1ojC4lmSrAmS8nksNfBoXk_JdaxiKpRrGaQyRnwzyOg&oe=699E1723&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGXfygAk8ZDppFNhwaYZMSxaHosADT7aLUD2Ps2OsGRA&oe=699DEF48&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wEHBC4qE1Moo3NIFe4aMHsWmq6hmsmZWyF7TmiqTMVTpA&oe=699DF08A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS19MIREPgrhNoRR9cKotAIaBhE9SlrREWZYpgMkG61w&oe=699DEB91&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wHORIaLm-SMPt57j7kJ0Lso9-py5yB4q7Cmnl1zpdKtJw&oe=699DFD5C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6PN66IgTU_AQOkzmYbxsXkEueJ-KRTVUbWSg_Zu6jYQ&oe=699E1776&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGihSPigDOh7zIUdRKBjGMc9WJBUwIi6fLMm8DTXXo64g&oe=699DFB94&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ737ak_4tq7fITFXONtWB46sJYAPMPrBknr39Kak-9Q&oe=699E1E97&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBFN7ybwcAsBbHOOLHXukmfOKqNVyRFD_zyXAGTcryDw&oe=699E0DFE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wECt3qKS3mIbnWLmKFwD0yOJPewqPzPxzazKAI2t7iOJg&oe=699E15EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJN-RiDidoCZ1MR_3zcFdW7OpAUFI34Dp3SLyuWvEDcA&oe=699DF91A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFmsUCh_3DUXIJl6uzn0ALTjcsrozksCU6tWwUz2Jao5w&oe=699DF5F6&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wGunphsE5-XjkVN4Z8wsxJJjR0Wj4E7W2V3qDLqBAsixw&oe=699DFE1B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlh1EVdfV9i7RWIDajQYNEhT61VT0XQsO_7UIvWOAG7g&oe=699E1AC7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGacKw-IjoT8FoRH4IyHF_6PI6YPtCKVGUO_YU67pMeA&oe=699DF7CE&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwQE3f3nYDZuThVJiBiQa6f7VG7YOtknBVEHWaCz6ESw&oe=699DFC77&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ6VcSmVVZSvAtEriEkaXYtRp6-qAGM3AOFJpdCuxAZA&oe=699E17A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFj8FW1OCDILbViU8awXdWBRAc1-PHXtJ8sP8dNcLv5Q&oe=699E0CCB&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJzt7hT53q3OTU-CJG8kobsp6clRyS85d1_yjYb4cfkQ&oe=699E1B60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsvWLniRzGWRTIrg0f0Y6bvaNm-0XTXplLffhNKYHF1Q&oe=699DEFD2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGqvIrM8yZryW6VFMVqdOBuGFQzkkVF2Vp2w5GlLdn3mA&oe=699DEFE5&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wGpr21PqjfTH_4RnhBouSUdhr-_zB2kxJZ7JxfGW5Cgog&oe=699DFEC5&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd6JkYjyCzvTg9SSxkGfYVmQYBcXF23HtFN_VTAzx2YQ&oe=699DEBA3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wET5yWfAcQ-0VLoiIks6_4I5Dz-_OYUl8DV3uH4X4Kpnw&oe=699DFF33&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 I', 1, '2026-02-14 19:28:47');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19615, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:50.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:50'),
(19616, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:56.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:56'),
(19617, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:58.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:58'),
(19618, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:28:59.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:28:59'),
(19619, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:00.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:00'),
(19620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"223578951790814@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:05.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:05'),
(19621, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":true,\"id\":\"A5AE045310C3C26F4E6B69FA44FC714A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637032427_2117137042406313_235939084737502603_n.enc?ccb=11-4&oh=01_Q5Aa3wHbsbIf4dVxDv1lmpPVlzkVP0sYUBUVnCWB2J-3E3xiAg&oe=69B84F56&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sede2AXNTatWOy1qzCVrMj+7K2crd\\/Hm7rGMLDwpbPI=\",\"fileLength\":\"3871\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"sDY7Gq9p3mJaPDamHoONF0p96UpyM1AVqdkO7yMXxsg=\",\"fileEncSha256\":\"mXANqDI1qg\\/6aswpeApiZ1ha435B7I1phXBcM6kugrg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637032427_2117137042406313_235939084737502603_n.enc?ccb=11-4&oh=01_Q5Aa3wHbsbIf4dVxDv1lmpPVlzkVP0sYUBUVnCWB2J-3E3xiAg&oe=69B84F56&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108144\",\"waveform\":\"AAAAAAAAAxgqMjASBxw0UWBiYFxZVlZWQSUySVBUU1JSUkpDSlBPT1BRVFZXVlJOS0dCQkVHSE1UVldXVzYRDw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108145,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:05.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:05'),
(19622, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814@lid\",\"id\":\"A5AE045310C3C26F4E6B69FA44FC714A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108146223,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:06.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:06'),
(19623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMWcVtsXJez-7HG6wFp8UJps_NT7pUhQ-ogM7rVZ3UZw&oe=699E0EB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:05.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:06'),
(19624, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:07.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:07'),
(19625, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACB6526E4C0AEF647DEE71F9510F5C7E\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Conseguir com minha cunhada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Z3nEiUpzi\\/rowN2OaVEieBYj28qU1SfuEnogizBvQRs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108147,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:07.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:07'),
(19626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:07.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:08'),
(19627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:07.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:08'),
(19628, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:18.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:18'),
(19629, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5A51350B0169C8ACB0AF814F6914498\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637031623_877350875292007_7947346061461831500_n.enc?ccb=11-4&oh=01_Q5Aa3wHM3V1x670kvk_0PJqsW5nHhW8sJxNf2ups763vW0jszA&oe=69B85BBD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"smijOQ6Q2AaDwpHxK6s3EXOzPdD2qdXKbjdLqMTf8\\/c=\",\"fileLength\":\"8884\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"Gfxm1MdRnJa7jXtPoBIMEEKCBL5Ae9MQ2J4eqgnTqK4=\",\"fileEncSha256\":\"BsEG8i1RpKRGdGTd\\/GXlC48jemLf+\\/EsIvqn9XxyrzU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637031623_877350875292007_7947346061461831500_n.enc?ccb=11-4&oh=01_Q5Aa3wHM3V1x670kvk_0PJqsW5nHhW8sJxNf2ups763vW0jszA&oe=69B85BBD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108155\",\"waveform\":\"AAEVTldfU05OSE5TTTcSVVpQQixOWEpXOipOVFBMQE9QUT9ORyFQSChDTFA\\/FAYwS0QYICtQUT5BRURDRUlJQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108158,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:18.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:18'),
(19630, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5A51350B0169C8ACB0AF814F6914498\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108158522,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:18.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:19'),
(19631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:18.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:19'),
(19632, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5A51350B0169C8ACB0AF814F6914498\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108159629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:19.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:19'),
(19633, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:49.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:49'),
(19634, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC641C14955BEA8A31A7DBB8E44DF6D8\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"contactMessage\":{\"displayName\":\"Wylker\",\"vcard\":\"BEGIN:VCARD\\nVERSION:3.0\\nN:;Wylker;;;\\nFN:Wylker\\nitem1.TEL;waid=5518997148601:+55 18 99714-8601\\nitem1.X-ABLabel:Celular\\nEND:VCARD\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CWPAoMWeloSLEv0qV8izHAXBK+T5cxiFMi7oEX6bOFA=\"}},\"contextInfo\":null,\"messageType\":\"contactMessage\",\"messageTimestamp\":1771108189,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:49.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:49'),
(19635, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:49.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:50'),
(19636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:49.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:50'),
(19637, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:54.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:54'),
(19638, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:57.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:57'),
(19639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC70DDA3C0E8AC9B8561FAD19FB46CC2\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Esse número aí\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qcyuJPcWppKGoGS1PJ\\/OOIL2Bt67uUlVsAsCV8Pek3s=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108197,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:57.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:29:57'),
(19640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:57.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:58'),
(19641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:29:57.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:29:58'),
(19642, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:30:56.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:30:56'),
(19643, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0662EBF6205B82C2F0A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\n\\nOlá, *Iago*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n📋 *Detalhes:*\\n💰 Valor: *R$ 40,00*\\n📅 Novo vencimento: *16\\/03\\/2026*\\n✅ Status: *Em dia*\\n\\nObrigado pela preferência! 🙏\\n\\nSeu acesso está garantido até *16\\/03\\/2026*.\\n\\n_Continue aproveitando nossos serviços!_ 🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771108257,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:30:57.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:30:58'),
(19644, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"id\":\"3EB0662EBF6205B82C2F0A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108258985,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:30:58.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:30:59'),
(19645, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB095D8766B3139E14C76\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Iago*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 40,00*\\r\\n• Próximo vencimento: *16\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771108271,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:11.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:11'),
(19646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"id\":\"3EB095D8766B3139E14C76\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108272679,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:12.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:12'),
(19647, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"3EB095D8766B3139E14C76\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108286339,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:26.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:26'),
(19648, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"3EB0662EBF6205B82C2F0A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108286344,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:26.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:26'),
(19649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:40.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:40'),
(19650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:40.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:41'),
(19651, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACF4F60EDF3C1FDCF91A70BAF7FA097E\"},\"pushName\":\"✓\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"3EB0662EBF6205B82C2F0A\"},\"text\":\"👍\",\"senderTimestampMs\":\"1771108300257\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771108300,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:41.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:41'),
(19652, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:41.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:41'),
(19653, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:41.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:42'),
(19654, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5B595B16256B2F3D31CDA0C37B81A07\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108302926,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:42.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:43'),
(19655, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:44.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:44'),
(19656, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5B595B16256B2F3D31CDA0C37B81A07\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Blzz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:44.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:44'),
(19657, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:44.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:45'),
(19658, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A55DC0AD17858350425A8C2562A0A2CF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vc tem tv smart?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108305,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:45.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:45'),
(19659, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:45.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:45'),
(19660, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A55DC0AD17858350425A8C2562A0A2CF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108306073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:46.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:46'),
(19661, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:46.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:46'),
(19662, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:49.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:50'),
(19663, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC794EBA641333F21E5DAE4F2C085D95\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cfOmI1qaI\\/qLD4xnkTBM7Id\\/8OTZHSmHHFR6Fst5kUk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108310,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:50.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:31:50'),
(19664, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:50.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:51'),
(19665, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:50.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:51'),
(19666, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:31:50.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:31:51'),
(19667, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2B6FB98D8FFA4C1051\"},\"pushName\":\"Eric\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635021017_917704630873938_8797769220676719523_n.enc?ccb=11-4&oh=01_Q5Aa3wH4KjuAjLdqajOTsEdfa-uw6ZqASd2HPpOKkp3QnF0qFQ&oe=69B84E3C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Deu senha incorreta\",\"fileSha256\":\"B2k4hlogm7mBABsMGA\\/9dUFQon59dZuPiOd8oTM8lZ4=\",\"fileLength\":\"90930\",\"height\":1600,\"width\":900,\"mediaKey\":\"jMVFnua1DMpky6X97+8aeBH3SxeYoDIUTZ\\/E3RL3oig=\",\"fileEncSha256\":\"NPqi96\\/UAJzuKsMewW\\/H\\/cKwSnyuZiJZq+vVEeWYBIU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635021017_917704630873938_8797769220676719523_n.enc?ccb=11-4&oh=01_Q5Aa3wH4KjuAjLdqajOTsEdfa-uw6ZqASd2HPpOKkp3QnF0qFQ&oe=69B84E3C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108313\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwQFBv\\/EABgBAQEBAQEAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAADz11enviGl9BORR33z15xdvDZhJGdT6vL37x0s5X053SrfRHLrxyc4R5fRZrwSOl0\\/OW6z6bFyVLoswRqkRikokWOEqaQNERDCLAGCsAABAJ\\/\\/xAAcEQEAAwADAQEAAAAAAAAAAAABAAIREBIhMDH\\/2gAIAQIBAT8ApXRY1CZOq8VvlesPT0iUKmy1Q\\/OByN\\/J2Yu\\/T\\/\\/EABsRAAIDAQEBAAAAAAAAAAAAAAABERIhAhAw\\/9oACAEDAQE\\/AOnomSWXjWyPHhzbp4Jt+NSVKoj6f\\/\\/EACoQAAICAQMCBQMFAAAAAAAAAAECAAMRBBIhMUEFEDJRYRMUcTBTcoGR\\/9oACAEBAAE\\/AF6zaMdIlSt8Q+GOaw6sCIdBfg4XP4jU2KcMhH9TEMMrGWAjVntKaScDHWLXbUBsOR7QFScq2xx2M9THcAD895fTSwI2gR9NXnHIli7XIHaUDNglCM2NibueZZUqr6DyJ9Wys8HK\\/MsYW4bGIhP8s+8tXceO0cEZ5j8sT8zTKXtCg4lN76Z8A5i6+w9e83OxJwGzBkDpiA8doxAUkx2BqZsYhlDbXyYr1k5aLsJ4JxNJoqrag\\/1wCe0bw0HhbVx+ZrPCrUQutq8fMrqc+tzt9prCg0xCgCGAzMViOhMW916MZ91b+43+xtVcRg2Nj8wam1ejS3UWWLhjxD5CCcw8CdouB1j4zx5CZgaboTmZhYnzH6P\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"4u\\/ICZ7tjtT+SA==\",\"firstScanLength\":9145,\"scansSidecar\":\"4u\\/ICZ7tjtT+SF3AMiIgGshrC3li1RCRVehH\\/zorwY4zMye6bSod+g==\",\"scanLengths\":[9145,36314,15536,29933],\"midQualityFileSha256\":\"MWnm2pkPGN3wPHT\\/wu3zBYseYDKbyO5jK7nNezLd5uU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2P\\/GqNif7trc1wWtH0wizR+4pc2rSx5JjFKMl8+\\/L\\/U=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771108320,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:00.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:00'),
(19668, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:00.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:00'),
(19669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:00.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:01'),
(19670, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:00.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:01'),
(19671, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A55B15891EE835152ED23B977E71D55B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/622717913_954769250212395_7146005844800981446_n.enc?ccb=11-4&oh=01_Q5Aa3wHmsSK6OFZszLoFQrpK07yCPb0B5tkvU2YEsataDdFk8Q&oe=69B86D9E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"mfV3NlhJ4zGTrGiNF4AA6nEQhgqcf+DcmJQy7XNrrXM=\",\"fileLength\":\"8618\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"Xzx5c1j9UsoNuR5UP2FDv1smRoxzzvhUhKTDi4qpP40=\",\"fileEncSha256\":\"O9XbwVI5mwMDMrovjnbluboAxBfOkRAglLWZiGtko8s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/622717913_954769250212395_7146005844800981446_n.enc?ccb=11-4&oh=01_Q5Aa3wHmsSK6OFZszLoFQrpK07yCPb0B5tkvU2YEsataDdFk8Q&oe=69B86D9E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108344\",\"waveform\":\"AAIEChkRLjJBSj4oYmBbJ1VaSDADBQcHAAkFBgAJAQAAAAIAAAAAAAgeSlNZVBMBAgAADw5DU0tLU0UyMT08OQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108347,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:27'),
(19672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"218386252488781:35@lid\",\"id\":\"A519FDF0ABEB518F43D85CB8C306D566\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108347685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:28'),
(19673, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"218386252488781:35@lid\",\"id\":\"A546BC3BB5E52A51D1F972C2CC0FC4CB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108347712,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:28'),
(19674, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A55B15891EE835152ED23B977E71D55B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108347868,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:29'),
(19675, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:29'),
(19676, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:29'),
(19677, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"218386252488781:35@lid\",\"id\":\"A57E000E8C2298C51C10047761600D5F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108347707,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:29'),
(19678, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"218386252488781:35@lid\",\"id\":\"A501449FC0ED98D8CDC19D8367223305\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108347698,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:30'),
(19679, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A55B15891EE835152ED23B977E71D55B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108347880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:27.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:30'),
(19680, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A55B15891EE835152ED23B977E71D55B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108351548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:31.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:31'),
(19681, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:49.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:49'),
(19682, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:50.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:50'),
(19683, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ABC90A4FC9477DAA5AF\"},\"pushName\":\"Eric\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4EEA2MLwVEfgGA1XIkKN9v+BZfw3bg5MqpFT9xuNG8E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108370,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:50.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:32:51'),
(19684, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:51.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:51'),
(19685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:50.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:51'),
(19686, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:32:53.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:32:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19687, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAAAE5A665B7BE0CE73\"},\"pushName\":\"Eric\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637105429_1242922667329794_5914909743832931606_n.enc?ccb=11-4&oh=01_Q5Aa3wH1rCXhFB1Km-Zcm0D-ZberYimuebZQgqnLQpkB4tYweA&oe=69B85432&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Esse era o q estava funcionando\",\"fileSha256\":\"5gq54qTZ3u2cJhIvc+oxe+Gwzln970CqMEmk2Azsv8I=\",\"fileLength\":\"88948\",\"height\":1600,\"width\":900,\"mediaKey\":\"B+I\\/E6eq0OT7hDDYrbRyNyCyImkDqG5mMVVOyCr\\/Hz0=\",\"fileEncSha256\":\"4EoTwnMVrM8q53yCqr22sbwZbek6mUZu6r7AZK467WA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637105429_1242922667329794_5914909743832931606_n.enc?ccb=11-4&oh=01_Q5Aa3wH1rCXhFB1Km-Zcm0D-ZberYimuebZQgqnLQpkB4tYweA&oe=69B85432&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108423\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECBAUDBv\\/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPOyja3K7tXdTHN6GLhmpVsqEzNhqZer1zrSYKE1m869uFz50iY3z0M\\/pGh1zpduevzz4Ha9lvnuuQM6TThuLppoJRBAEWAADAgYABX\\/xAAdEQACAgIDAQAAAAAAAAAAAAAAAQIREBIDITAx\\/9oACAECAQE\\/AIqzQo1eON9su8RH9EKaHNFr0\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAABAhAREiEwMf\\/aAAgBAwEBPwBvBsZNlUjDpi8pxYos57P\\/xAArEAACAgECBQIFBQAAAAAAAAABAgARAwQSEyExQVEFECAzYXGBFDJCQ5H\\/2gAIAQEAAT8AgUntNp8Sj4lSpXuJplLKQE3EiLgyBuamadMWysmPn5qLo8JNlAVmTQaYm1v7CZPTkF7WP0jaSj+6ZU4bbSbgnpK24nCIsnn+IuytrJX4jqEFp3gClgStHyI+JGB6zJpk2k2bE1PzTBPSSN4F1DQ\\/sEN1yYQE92EZTVqbiq23mJlUjGxPiaj5rfeCadqwAKKbzF4vUk\\/7EyZR3MVrALNU1BdcbMuQ8omo1RNBjEyNwqyNZMz1xWrpcETKVFQalqn6trsCoNaaorcyax3FdvEGscG6EOuc\\/wARGNknz8PeHr7ELXXn8FwGWJ3l\\/SX7j2Hxf\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"TVW+p6WeX8tLtg==\",\"firstScanLength\":8815,\"scansSidecar\":\"TVW+p6WeX8tLtqRIhK8L+JG4r+\\/nfkyX711WjYqeTP5ziNY6mmSPpQ==\",\"scanLengths\":[8815,34518,15330,30283],\"midQualityFileSha256\":\"d4xlDfYwxCTkQrkkYEyTS2+9\\/BtViSE8Ym4pG\\/xbPTw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Hdke6jbz82+UZL9TXqpD\\/H+KhGeDVmPyaUjPI0TXbEc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771108431,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:33:51.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:33:51'),
(19688, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:33:51.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:33:52'),
(19689, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:33:51.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:33:52'),
(19690, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:33:52.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:33:52'),
(19691, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:17.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:18'),
(19692, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:20.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:21'),
(19693, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3814888E935F692CDD\"},\"pushName\":\"Eric\",\"message\":{\"extendedTextMessage\":{\"text\":\"Agora entrou mano\",\"contextInfo\":{\"stanzaId\":\"A58568D5A52063E4AFF1B39B90922D2F\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 203133458\\n✅ *Senha:* 958711925\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yh0nMAh4kfVQLl+rU9v0oR238JZ5oKfmS0hs8mmiTHo=\"}},\"contextInfo\":{\"stanzaId\":\"A58568D5A52063E4AFF1B39B90922D2F\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"✅ *Usuário:* 203133458\\n✅ *Senha:* 958711925\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771108580,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:20.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:36:21'),
(19694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:21.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:21'),
(19695, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:21.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:21'),
(19696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:27.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:28'),
(19697, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3D02890994BD746B66\"},\"pushName\":\"Eric\",\"message\":{\"extendedTextMessage\":{\"text\":\"Posso apagar essa conta?\",\"contextInfo\":{\"stanzaId\":\"3AAAAE5A665B7BE0CE73\",\"participant\":\"5511984738910@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637105429_1242922667329794_5914909743832931606_n.enc?ccb=11-4&oh=01_Q5Aa3wH1rCXhFB1Km-Zcm0D-ZberYimuebZQgqnLQpkB4tYweA&oe=69B85432&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Esse era o q estava funcionando\",\"fileSha256\":\"5gq54qTZ3u2cJhIvc+oxe+Gwzln970CqMEmk2Azsv8I=\",\"fileLength\":\"88948\",\"height\":1600,\"width\":900,\"mediaKey\":\"B+I\\/E6eq0OT7hDDYrbRyNyCyImkDqG5mMVVOyCr\\/Hz0=\",\"fileEncSha256\":\"4EoTwnMVrM8q53yCqr22sbwZbek6mUZu6r7AZK467WA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637105429_1242922667329794_5914909743832931606_n.enc?ccb=11-4&oh=01_Q5Aa3wH1rCXhFB1Km-Zcm0D-ZberYimuebZQgqnLQpkB4tYweA&oe=69B85432&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108423\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECBAUDBv\\/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPOyja3K7tXdTHN6GLhmpVsqEzNhqZer1zrSYKE1m869uFz50iY3z0M\\/pGh1zpduevzz4Ha9lvnuuQM6TThuLppoJRBAEWAADAgYABX\\/xAAdEQACAgIDAQAAAAAAAAAAAAAAAQIREBIDITAx\\/9oACAECAQE\\/AIqzQo1eON9su8RH9EKaHNFr0\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAABAhAREiEwMf\\/aAAgBAwEBPwBvBsZNlUjDpi8pxYos57P\\/xAArEAACAgECBQIFBQAAAAAAAAABAgARAwQSEyExQVEFECAzYXGBFDJCQ5H\\/2gAIAQEAAT8AgUntNp8Sj4lSpXuJplLKQE3EiLgyBuamadMWysmPn5qLo8JNlAVmTQaYm1v7CZPTkF7WP0jaSj+6ZU4bbSbgnpK24nCIsnn+IuytrJX4jqEFp3gClgStHyI+JGB6zJpk2k2bE1PzTBPSSN4F1DQ\\/sEN1yYQE92EZTVqbiq23mJlUjGxPiaj5rfeCadqwAKKbzF4vUk\\/7EyZR3MVrALNU1BdcbMuQ8omo1RNBjEyNwqyNZMz1xWrpcETKVFQalqn6trsCoNaaorcyax3FdvEGscG6EOuc\\/wARGNknz8PeHr7ELXXn8FwGWJ3l\\/SX7j2Hxf\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"TVW+p6WeX8tLtg==\",\"firstScanLength\":8815,\"scansSidecar\":\"TVW+p6WeX8tLtqRIhK8L+JG4r+\\/nfkyX711WjYqeTP5ziNY6mmSPpQ==\",\"scanLengths\":[8815,34518,15330,30283],\"midQualityFileSha256\":\"d4xlDfYwxCTkQrkkYEyTS2+9\\/BtViSE8Ym4pG\\/xbPTw=\"}}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8k8kWj1ijhROammkD6xZgyerKfBi28oLB5wu07i7eHw=\"}},\"contextInfo\":{\"stanzaId\":\"3AAAAE5A665B7BE0CE73\",\"participant\":\"5511984738910@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637105429_1242922667329794_5914909743832931606_n.enc?ccb=11-4&oh=01_Q5Aa3wH1rCXhFB1Km-Zcm0D-ZberYimuebZQgqnLQpkB4tYweA&oe=69B85432&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Esse era o q estava funcionando\",\"fileSha256\":\"5gq54qTZ3u2cJhIvc+oxe+Gwzln970CqMEmk2Azsv8I=\",\"fileLength\":\"88948\",\"height\":1600,\"width\":900,\"mediaKey\":\"B+I\\/E6eq0OT7hDDYrbRyNyCyImkDqG5mMVVOyCr\\/Hz0=\",\"fileEncSha256\":\"4EoTwnMVrM8q53yCqr22sbwZbek6mUZu6r7AZK467WA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637105429_1242922667329794_5914909743832931606_n.enc?ccb=11-4&oh=01_Q5Aa3wH1rCXhFB1Km-Zcm0D-ZberYimuebZQgqnLQpkB4tYweA&oe=69B85432&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108423\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECBAUDBv\\/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPOyja3K7tXdTHN6GLhmpVsqEzNhqZer1zrSYKE1m869uFz50iY3z0M\\/pGh1zpduevzz4Ha9lvnuuQM6TThuLppoJRBAEWAADAgYABX\\/xAAdEQACAgIDAQAAAAAAAAAAAAAAAQIREBIDITAx\\/9oACAECAQE\\/AIqzQo1eON9su8RH9EKaHNFr0\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAABAhAREiEwMf\\/aAAgBAwEBPwBvBsZNlUjDpi8pxYos57P\\/xAArEAACAgECBQIFBQAAAAAAAAABAgARAwQSEyExQVEFECAzYXGBFDJCQ5H\\/2gAIAQEAAT8AgUntNp8Sj4lSpXuJplLKQE3EiLgyBuamadMWysmPn5qLo8JNlAVmTQaYm1v7CZPTkF7WP0jaSj+6ZU4bbSbgnpK24nCIsnn+IuytrJX4jqEFp3gClgStHyI+JGB6zJpk2k2bE1PzTBPSSN4F1DQ\\/sEN1yYQE92EZTVqbiq23mJlUjGxPiaj5rfeCadqwAKKbzF4vUk\\/7EyZR3MVrALNU1BdcbMuQ8omo1RNBjEyNwqyNZMz1xWrpcETKVFQalqn6trsCoNaaorcyax3FdvEGscG6EOuc\\/wARGNknz8PeHr7ELXXn8FwGWJ3l\\/SX7j2Hxf\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"TVW+p6WeX8tLtg==\",\"firstScanLength\":8815,\"scansSidecar\":\"TVW+p6WeX8tLtqRIhK8L+JG4r+\\/nfkyX711WjYqeTP5ziNY6mmSPpQ==\",\"scanLengths\":[8815,34518,15330,30283],\"midQualityFileSha256\":\"d4xlDfYwxCTkQrkkYEyTS2+9\\/BtViSE8Ym4pG\\/xbPTw=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771108587,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:27.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:36:28'),
(19698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:27.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:28'),
(19699, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:28.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:28'),
(19700, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:36:30.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:36:30'),
(19701, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:20.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:20'),
(19702, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A55D2B6EC7B6E04FEEF8888836F26207\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/12159739_667919393050101_2202006854358658016_n.enc?ccb=11-4&oh=01_Q5Aa3wGO2qHTRkeJDX7Hpu71Pkmwsq_AAF4swZwg9afYrMVNnQ&oe=69B86FAD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XcV7\\/lViRLDlp40QDG8UdcrSkbvbxMBdijJwD6l84HE=\",\"fileLength\":\"35996\",\"seconds\":15,\"ptt\":true,\"mediaKey\":\"3ZJ7SmFkJeVQXvmE\\/1lMtvZdMU4dDVtvEileJDLBoYI=\",\"fileEncSha256\":\"2abH7WPzZyK5NgK\\/cyPDowd2U1ANViRIvEMfuIrMaEI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/12159739_667919393050101_2202006854358658016_n.enc?ccb=11-4&oh=01_Q5Aa3wGO2qHTRkeJDX7Hpu71Pkmwsq_AAF4swZwg9afYrMVNnQ&oe=69B86FAD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108626\",\"waveform\":\"AAU5Yw0zVEtGPmNTVlksRBw6TgA\\/RVQSH0BFWj4wTDEiHTE8QgAFADxHTTpRM0EDCAEKUFRMXTs4PTNOQ0dLQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:20.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:20'),
(19703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A55D2B6EC7B6E04FEEF8888836F26207\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108641173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:21.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:21'),
(19704, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:20.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:21'),
(19705, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:25.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:25'),
(19706, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A51116CE2E1807B06F65C48BC65FFC53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store1.voidplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108645,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:25.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:25'),
(19707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:26.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:26'),
(19708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A51116CE2E1807B06F65C48BC65FFC53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108646420,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:26.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:26'),
(19709, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A51116CE2E1807B06F65C48BC65FFC53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108655144,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:35.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:35'),
(19710, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A55D2B6EC7B6E04FEEF8888836F26207\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108655137,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:35.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:35'),
(19711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A55D2B6EC7B6E04FEEF8888836F26207\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108656016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:36.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:36'),
(19712, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A5130DB3BE93A2DC35A9AE7B5D60E1FC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636692674_5296681727224682_2805890919695976337_n.enc?ccb=11-4&oh=01_Q5Aa3wEeLXKqsiaHPCgCSs3uUnV53Y4QRteV7W_ROQ1yY5TFTg&oe=69B87920&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Baixa o\",\"fileSha256\":\"uQpzCoBgTE+nrU13JhBPrQEbzBKEP9LyPXZuyJjsfFA=\",\"fileLength\":\"70634\",\"height\":1600,\"width\":738,\"mediaKey\":\"p0m0GxmkQSdbjtuokeOARnJv7eli72mIkaBiccAa\\/Gk=\",\"fileEncSha256\":\"Edx5\\/2lVYrORmGTIxUaQez41UD6B74vDbRoYHTdQkVQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636692674_5296681727224682_2805890919695976337_n.enc?ccb=11-4&oh=01_Q5Aa3wEeLXKqsiaHPCgCSs3uUnV53Y4QRteV7W_ROQ1yY5TFTg&oe=69B87920&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108658\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAAMBAAAAAAAAAAAAAAAAAQIDBQYEAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAANucbVdicWxDdmNzQ7gESyj25jU1tMRDDNAD\\/8QAJRAAAgIBAgYCAwAAAAAAAAAAAAECAxEhMhITFDEzUQQiQUJD\\/9oACAEBAAE\\/AOrpeU7Ii+VBfvAXy6H3tidVQ35ET3n5Jd+xW\\/stSzezMjXOpXvRPyEtM4Msr3on5DiWRtNle9Fm9nCdmVb0WKXMMz9HDP0VRkprJCnm5+2DpM\\/0R0rSxzETo5eHxZEa+zX2M\\/\\/EABgRAQEAAwAAAAAAAAAAAAAAAAECABAg\\/9oACAECAQE\\/AOiXGXf\\/xAAYEQACAwAAAAAAAAAAAAAAAAAAEQEQIP\\/aAAgBAwEBPwDTHF\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"js9x0hE7FvaFA8afQ5Jj9FqgJ0MbqQwEvcJHCPYd3MF6ES1WCEqGHA==\",\"scanLengths\":[7434,33439,13218,16543],\"midQualityFileSha256\":\"NwgFLkaCP3IpLuTEcCm4XtG4lY3gcwjTMboWssj\\/\\/4Y=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771108659,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:39.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:39'),
(19713, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:39.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:39'),
(19714, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:40.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:40'),
(19715, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A5130DB3BE93A2DC35A9AE7B5D60E1FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108660203,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:40.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:40'),
(19716, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A5130DB3BE93A2DC35A9AE7B5D60E1FC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108660212,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:40.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:41'),
(19717, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A58431A5CC6346236CA112B759608EFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637038718_907951962078618_2511013140745554778_n.enc?ccb=11-4&oh=01_Q5Aa3wF0kBiaeX4IhUFdommIGg1lMMwWSwwZvwBiW96Ibz15rQ&oe=69B87D8E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SaVgNtcS+9d1zyDseU+XyRMQRCcFeydQgJqqaxKZdwo=\",\"fileLength\":\"11665\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"KuRRgeLdddx4LWeJNj1DdQvd8GjZ+ub2uEhodZskxVw=\",\"fileEncSha256\":\"eCb7N9au6xhwN8zvjfADS0YSY6i+j4f9blddPxpC+nE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637038718_907951962078618_2511013140745554778_n.enc?ccb=11-4&oh=01_Q5Aa3wF0kBiaeX4IhUFdommIGg1lMMwWSwwZvwBiW96Ibz15rQ&oe=69B87D8E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108661\",\"waveform\":\"AAEAAgAuVlEdTU89LkZHVEhGPU1KT04wKjhORThMGFFTRzgwTBZPSkVXSj5WUi4wSz06QTtKKTZKJhk4Tk1LLA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108665,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:45.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:45'),
(19718, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:45.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:45'),
(19719, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A58431A5CC6346236CA112B759608EFE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108665619,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:45.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:46'),
(19720, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:45.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:46'),
(19721, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A58431A5CC6346236CA112B759608EFE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108665625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:45.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:46'),
(19722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A55DC0AD17858350425A8C2562A0A2CF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108669286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:49.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:49'),
(19723, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5B595B16256B2F3D31CDA0C37B81A07\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108669407,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:49.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:49'),
(19724, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A58431A5CC6346236CA112B759608EFE\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108672332,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:52.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:52'),
(19725, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:52.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:52'),
(19726, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:57.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:57'),
(19727, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACC6B565D8DA307B37E0253684D323AA\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Eu estava usando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dEzM5SwVm6z\\/hCqsstT5IdxFFiyLX\\/jHq38HN3ESAow=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108677,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:57.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:37:57'),
(19728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:57.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:58'),
(19729, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:58.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:58'),
(19730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:58.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:59'),
(19731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:57.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:37:59'),
(19732, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:57.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:00'),
(19733, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:37:59.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:00'),
(19734, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACEF97CF3AF110F49D0DB7131C32E408\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"A um tempo atrás\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Lgx8Au7R83zFxjRhsaPmW4oBztHRMV6ySd+3TEfhzR8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108682,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:02.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:38:03'),
(19735, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:02.796Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:03'),
(19736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:02.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:03'),
(19737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:03.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:04'),
(19738, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:05.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:05'),
(19739, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:06.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:06'),
(19740, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:12.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:13'),
(19741, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACEC9EB1E43025BA97D6A92B99A50A65\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Aí quero aderir de novo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ya7J8j97dspYgIN2Q+4yLu0MiBbf+7746b9zeTPKpxM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108692,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:12.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:38:13'),
(19742, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:13.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:13'),
(19743, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:13.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:13'),
(19744, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:16.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:16'),
(19745, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:16.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:16'),
(19746, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A28DF883B41623F66F3\"},\"pushName\":\"Eric\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/635002367_1203454104855186_5511666606231640918_n.enc?ccb=11-4&oh=01_Q5Aa3wFeWNA9rLooTlkCZ_C75klF-cbU6W7q6WVVhgSsxcXGTA&oe=69B861D1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KKIKRiCdrFcKq75qPilGHccMp+m6zDWWdeuf0g3K\\/6U=\",\"fileLength\":\"21927\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"O2uNGfi86rah00DuxOySiWmc5jnDCS1ZfH5BJkI0xKk=\",\"fileEncSha256\":\"EXy5tgAqo\\/elZhBgbquWC6iOzgJZDS5uetMuNj3YhKQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/635002367_1203454104855186_5511666606231640918_n.enc?ccb=11-4&oh=01_Q5Aa3wFeWNA9rLooTlkCZ_C75klF-cbU6W7q6WVVhgSsxcXGTA&oe=69B861D1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108686\",\"streamingSidecar\":\"aVOQy7cFunm43A==\",\"waveform\":\"AAQFBggJSWRkZGRkZGRkZGRdPBwPCjJdO1tkTD8wJj1ITWRkYEsnFQ4KEF9BXmRXX1Y4HyQuMTg2JStQSTQaDQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sEt328pvDwy+QwDYqUu\\/6TD+B6iFVIF+lTefms9ua8E=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108697,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:17.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:38:17'),
(19747, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:17.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:17'),
(19748, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:17.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:18');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19749, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:17.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:18'),
(19750, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:26.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:26'),
(19751, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:26.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:27'),
(19752, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:28.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:28'),
(19753, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACDFAE108648A1905A7A9565F95E8D20\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Minha tv e Philco\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uupY+YNbBTPSGyJoKoWopAwm6TGyDM1EyeW4XnMd8hA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108708,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:28.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:38:28'),
(19754, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:29.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:29'),
(19755, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:28.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:29'),
(19756, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:28.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:29'),
(19757, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:34.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:34'),
(19758, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC5A7DA2A39A056080E4DABCD3BB55B6\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Roku tv\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IY12Nnp9uZ2WnDqW1QLd63KnDi1T+8SjE4DsxtKijjA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108714,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:34.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:38:34'),
(19759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:34.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:35'),
(19760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:38:34.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:38:35'),
(19761, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:39:34.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:39:34'),
(19762, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A508223AB6063FFFB59DB7D6F5767C86\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108879996,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:19.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:20'),
(19763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A53501DB1B515E8F90BDF8D5194678D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108880007,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:20.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:20'),
(19764, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A554259AAACC0A1D83151B669CF1E979\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108880002,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:20.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:21'),
(19765, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A53501DB1B515E8F90BDF8D5194678D6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108880869,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:20.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:21'),
(19766, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A554259AAACC0A1D83151B669CF1E979\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108883545,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:23.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:23'),
(19767, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A508223AB6063FFFB59DB7D6F5767C86\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771108885128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:25.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:25'),
(19768, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"117665125388484@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:30.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:41:30'),
(19769, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"117665125388484@lid\",\"fromMe\":true,\"id\":\"A5D71448790208457497066A650A6D1B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Show\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108890,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:30.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:30'),
(19770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:30.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:41:31'),
(19771, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A5D71448790208457497066A650A6D1B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108891548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:31.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:31'),
(19772, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"117665125388484@lid\",\"id\":\"A5D71448790208457497066A650A6D1B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771108909632,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:49.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:50'),
(19773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:53.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:41:53'),
(19774, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5D5F7BF0DCC5FE628CABA2F101F210F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/585089621_2076244256491827_5376606823513169213_n.enc?ccb=11-4&oh=01_Q5Aa3wHkMHglo3pfYfZmItSuAV4W-jP4khz7EPyIRZBFpf598w&oe=69B86AC0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pMYkrkEFt2iE4ClYAPU+Q4RCUF5lOfH3\\/xF9xAN+ZdI=\",\"fileLength\":\"7035\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"ahX1\\/ud8SRi\\/pM\\/tBDonNIyvew2G18OXuj7uM1AkPO8=\",\"fileEncSha256\":\"awihL1y4l6n+EnxflYuhnJHAwoA72p6LH1DCJvPCbQ4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/585089621_2076244256491827_5376606823513169213_n.enc?ccb=11-4&oh=01_Q5Aa3wHkMHglo3pfYfZmItSuAV4W-jP4khz7EPyIRZBFpf598w&oe=69B86AC0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108910\",\"waveform\":\"AAAFMUNXY19UUGJiWj1ZWVNLRztBWFxXRUQ4UE5ZXmFgTj9BMVlNNS9DSUc5QlNNTUs5REQ8R01RWFxaSy4lGw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108913,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:53.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:53'),
(19775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:53.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:41:54'),
(19776, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5D5F7BF0DCC5FE628CABA2F101F210F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108916317,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:41:56.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:41:56'),
(19777, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:01.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:01'),
(19778, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:03.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:03'),
(19779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511984738910@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:03.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:03'),
(19780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511984738910@s.whatsapp.net\",\"pushName\":\"Eric 8910 $90 $30 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/224594539_373112987508696_1722031139524305169_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGOisA_SITVeHPiWrkpHJlKwM_y2mGrdG2I626gqFhbQ&oe=699E15FE&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:03.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:04'),
(19781, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511984738910@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2D437AE918E6C7DADC\"},\"pushName\":\"Eric\",\"message\":{\"conversation\":\"Obrigado mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771085075\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"88sVw4bUpZMKovK65WNflh9p0z0a4UxkVBOmm9Hot1M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771108923,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:03.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:42:04'),
(19782, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"117665125388484@lid\",\"presences\":{\"117665125388484@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:05.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:06'),
(19783, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A57419C1FBBB02FAE9F631B0FEA2D1D6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637047322_1632573317780614_3956186853188368291_n.enc?ccb=11-4&oh=01_Q5Aa3wET6pcZbDrqaTUXcJ15aqWPSLFXqYkVTYiPxO_zGKdFzw&oe=69B862B0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Wz6r6qprogGQ94\\/KDqZ3S1sqoZAM6HxN9v2IYTiqt6Q=\",\"fileLength\":\"39334\",\"seconds\":17,\"ptt\":true,\"mediaKey\":\"AxyRcuG8LDodULgwQFpQ8ZqOBapnhsgh8\\/HCJ6Gk2NE=\",\"fileEncSha256\":\"xXpHgCAZp5CguQ1rI5SQg5oQzZzURidYgwY553PbmkI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637047322_1632573317780614_3956186853188368291_n.enc?ccb=11-4&oh=01_Q5Aa3wET6pcZbDrqaTUXcJ15aqWPSLFXqYkVTYiPxO_zGKdFzw&oe=69B862B0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108921\",\"waveform\":\"ACIxY1RcQFlKLltPV2FRLw0RFBBZOVk4PlpUWx5aTDg6VlpcTF5IN0ZLU1RWHRgYGkUvXDtFSlE9SVkYJUhGQw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771108937,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:17.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:42:17'),
(19784, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:17.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:18'),
(19785, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A57419C1FBBB02FAE9F631B0FEA2D1D6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108937973,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:17.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:42:18'),
(19786, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:18.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:18'),
(19787, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5CFAECA3622992FB1BB08D45B7A322B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Xcloud\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771108947,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:27.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:42:28'),
(19788, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:27.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:28'),
(19789, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5CFAECA3622992FB1BB08D45B7A322B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771108948264,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:28.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:42:29'),
(19790, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:42:28.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:42:29'),
(19791, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":false,\"id\":\"AC5FC86525C26B55CC2170E2A190864F\"},\"pushName\":\"Maxsulivan 😝\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637227621_3372461559596132_2196962732278375482_n.enc?ccb=11-4&oh=01_Q5Aa3wG6mLV0k_nxSrIXMSFTmA9tbJOpDTRJHqi7dxWiU6s68w&oe=69B853CB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"7cXC4GVEV3+QDdsIVUExi2aJUTFhLlbTPwqgTxraHo4=\",\"fileLength\":\"57298\",\"height\":540,\"width\":1170,\"mediaKey\":\"R79OoQmM0Q0juqdeOq\\/9FLMPjE6cuwVePhvZGPKzfXk=\",\"fileEncSha256\":\"zbvWueJ1VBMS\\/knVOSGYcC7z98rWSzUcKiVP+GgdPcQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637227621_3372461559596132_2196962732278375482_n.enc?ccb=11-4&oh=01_Q5Aa3wG6mLV0k_nxSrIXMSFTmA9tbJOpDTRJHqi7dxWiU6s68w&oe=69B853CB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771108999\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACAASAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgMBBAYBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPOPOmspusRxnlom5nqpheaAAawvRz1UaTkyxZ\\/\\/xAAjEAACAgEDBAMBAAAAAAAAAAAAAQIRIQMSMRMgMkEQUWFi\\/9oACAEBAAE\\/AIJNjh9I2M6chqvjSgvTySpSyakVF4ZGW1nV\\/k6meB6zaqjyZONJIjJ6dHlInz2q7RqVKhq3kpL2NPsaj6ZwxS3Rf4bmKeODbJ5P\\/8QAGxEAAwACAwAAAAAAAAAAAAAAAAEREBIgIkH\\/2gAIAQIBAT8AWvp1IR3hcJU\\/\\/8QAHBEBAAIBBQAAAAAAAAAAAAAAAQASERAgIkFR\\/9oACAEDAQE\\/AG3U5aWKbAyw8I5Gf\\/\\/Z\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":530134},\"scansSidecar\":\"RrnI9rd5qvRWdqLaI8rdHDlKsBGyhaEh34IcUq2nrasFLmsbdqck0Q==\",\"scanLengths\":[4793,23702,11450,17353],\"midQualityFileSha256\":\"VkMgZ3O5jUWeAciPiUCG+4kAfB2ODVHZ67kLyIuy5JM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1768935638\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+fn9ao5B+ckIXzal21Pp0sq\\/Ps4d\\/q+ZOTaRp4WGMKw=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":530134},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771109000,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:20.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:20'),
(19792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-IuEwKfwa7DS3IDyOu_fqMFSqNbeG3Xm5xxDeACzAIg&oe=699E1010&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:20.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:21'),
(19793, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:20.193Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:21'),
(19794, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"presences\":{\"231516101730347@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:21.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:21'),
(19795, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":true,\"id\":\"A56BC516202C3A67457F3870355DD5DC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771109001,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:21.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:22'),
(19796, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:21.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:22'),
(19797, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"231516101730347@lid\",\"id\":\"A56BC516202C3A67457F3870355DD5DC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771109002399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:22.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:23'),
(19798, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-IuEwKfwa7DS3IDyOu_fqMFSqNbeG3Xm5xxDeACzAIg&oe=699E1010&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:22.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:23'),
(19799, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:19.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:23'),
(19800, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-IuEwKfwa7DS3IDyOu_fqMFSqNbeG3Xm5xxDeACzAIg&oe=699E1010&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:20.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:23'),
(19801, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A57419C1FBBB02FAE9F631B0FEA2D1D6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771109004196,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:24.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:24'),
(19802, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5CFAECA3622992FB1BB08D45B7A322B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771109003923,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:23.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:24'),
(19803, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5D5F7BF0DCC5FE628CABA2F101F210F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771109004199,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:24.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:24'),
(19804, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5D5F7BF0DCC5FE628CABA2F101F210F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771109004404,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:24.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:25'),
(19805, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A57419C1FBBB02FAE9F631B0FEA2D1D6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771109007268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:27.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:27'),
(19806, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"presences\":{\"231516101730347@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:27.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:27'),
(19807, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"presences\":{\"231516101730347@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:34.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:34'),
(19808, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:41.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:41'),
(19809, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:42.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:43'),
(19810, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:43.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:43'),
(19811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"presences\":{\"231516101730347@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:43.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:44'),
(19812, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:44'),
(19813, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACB7C3EDAF57AFAF56C968D617109D50\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Tá\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mt38W4Dk8vChfzErrhTS4aBUwCrt6qEuDpa4NAW4\\/4E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771109024,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:44'),
(19814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-IuEwKfwa7DS3IDyOu_fqMFSqNbeG3Xm5xxDeACzAIg&oe=699E1010&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:45.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:45'),
(19815, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:45'),
(19816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-IuEwKfwa7DS3IDyOu_fqMFSqNbeG3Xm5xxDeACzAIg&oe=699E1010&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:45.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:46'),
(19817, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:46'),
(19818, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC7C5B631D43BB81EB319BD70DCE57EE\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Vou baixar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"b4WXcYmr9jJI9XxCjCesDjBLb9C7\\/QZuTVgYsVkUz+w=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771109026,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:46.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:47'),
(19819, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:46.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:47'),
(19820, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:47.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:48'),
(19821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:47.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:48'),
(19822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:48'),
(19823, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:43:49'),
(19824, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":false,\"id\":\"AC355FC8A953A4CFC002A5D4C27B42D2\"},\"pushName\":\"Maxsulivan 😝\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637046877_1546861393045811_553148436089150239_n.enc?ccb=11-4&oh=01_Q5Aa3wHrRGzPRiZif6wfp772kHEoRzVQeTcQymkiUVtpStnpdw&oe=69B87049&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"qJb4Yn53Ci2RDlO1W55XFJB5AeLp+bYqKIZVNMRHm4Q=\",\"fileLength\":\"22041\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"X\\/fkaV+8mv8UG\\/5Otnagyc1wYuFmw0ks4xvZVyikaYY=\",\"fileEncSha256\":\"r+XPXalXNlo+1wS3\\/TuF1famqw9xK66M\\/pmKzRdRFTs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637046877_1546861393045811_553148436089150239_n.enc?ccb=11-4&oh=01_Q5Aa3wHrRGzPRiZif6wfp772kHEoRzVQeTcQymkiUVtpStnpdw&oe=69B87049&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109015\",\"waveform\":\"ABdVUlBcTk07P0JMW0xLRkpGQEQrUU1ATk1YSD1WJy4nNDA6V1ZOQVxFL1ZSISEfIypYSEVeSFUzUVFSST5SKg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1768935638\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u9jtIlVPZLZcpUWQF0U3yEk4pogrTC89x3vyAbxB\\/wQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771109024,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:43:44.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:43:49');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19825, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACF00EB0CBC63C6B83E4BA363C3C8294\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636953052_2308217896355002_6815906191240884195_n.enc?ccb=11-4&oh=01_Q5Aa3wGrSgYqb-ytcqEtB4hBoBlonQO9moy4Pl2hv_lx1Uik-Q&oe=69B85B5B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NMvSFRWTB1HXkvJ4NwRjANpDsdeGf5Q24FuxkKho3q4=\",\"fileLength\":\"127799\",\"height\":1200,\"width\":1600,\"mediaKey\":\"FCID7IIvkq5GgsfKUMZXoAaAKnQuGLN0cwtD3Wv794o=\",\"fileEncSha256\":\"\\/BHDXWyAybnlYzy3YOm3uKyi5IKoR3v3K8MLrJtpHEY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636953052_2308217896355002_6815906191240884195_n.enc?ccb=11-4&oh=01_Q5Aa3wGrSgYqb-ytcqEtB4hBoBlonQO9moy4Pl2hv_lx1Uik-Q&oe=69B85B5B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109168\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADYASAMBIgACEQEDEQH\\/xAAwAAACAwEAAAAAAAAAAAAAAAAABAECAwUBAAMBAQEAAAAAAAAAAAAAAAABAgQDBf\\/aAAwDAQACEAMQAAAA2lW42LYaI0kkIi4FC4HCtQ2znUlqd1+kJery3NtgZb5ujDO+eep2kalTVy4JZxkzqnFPNt\\/UOrzoCnKgJ4UBkAQf\\/8QAKBAAAgIBAgQFBQAAAAAAAAAAAQIAAxEEEgUhMVIQEyJBURQjMkJh\\/9oACAEBAAE\\/AAsxMTExMTEZcgwLgQa2kwayg\\/tBqqO+C+nvEDp3CBl+RMiHw06IQ2VBj1LjAXBhpIGYEPbBEU45EzY3cY5sXHrM8wlQBKrPLzyhvsIxmbnHvBY\\/zAZpGrUHfPsk+4Ev2bgF6ZgGFhT0gxNOzjIjaUgE5m2ARWInmNLLDyP9jW7UESrenM8hFVgoCSxLSrbiItCswG7qYdIo62e+JZoNiFhZ4Wn0GA2sPyg1iBCMGJxREXoSY3FNxJNcfW7NpWoZh4ha3VRPr78EQ3OYXZupgn\\/\\/xAAeEQEAAgEFAQEAAAAAAAAAAAABAAIREBIxQVEgIf\\/aAAgBAgEBPwDD58tGFWXMV4hhzkONG6WTJCx2zdR\\/GXrUpZDqYlrKzczdb2N7vNnT\\/8QAGREBAAMBAQAAAAAAAAAAAAAAAQAQESEg\\/9oACAEDAQE\\/APewazIoAx5b0mCBMG\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"0I3YK9a3LNEhOT\\/wcfrbloTCUD0bQIybr\\/srblE\\/K2IUlFqPeXgnBg==\",\"scanLengths\":[16486,47677,20019,43617],\"midQualityFileSha256\":\"w4V4Si\\/TEnJVolfS+5g4nQ92dHV5l59bAOinsAI2hro=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9Vf5Y6FMR35Ze8NKO0Zhe4UTVXKBWAV9s1KR37eHWBQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771109169,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:10.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:46:10'),
(19826, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:10.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:10'),
(19827, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:10.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:11'),
(19828, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:10.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:11'),
(19829, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:10.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:11'),
(19830, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:12.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:12'),
(19831, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC6384711A0F27C8D5D4E1DAEA995DFB\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Esse ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7wMWTURPraF2tZXC6WnE+DYRgJOX5jeBaFcaVmWTdFM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771109172,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:12.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:46:12'),
(19832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:12.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:13'),
(19833, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:46:12.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:46:13'),
(19834, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A50C29A6978E47963C7703E0EB1055A9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637055642_927760009978491_3703133242340039621_n.enc?ccb=11-4&oh=01_Q5Aa3wGpF-ayu76Dir77X0_WZW0PiirWozgnmOCy0O6vbKIFZw&oe=69B87F3F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HCa11jwr9XVlnFdcwZjIknIca2+PPFTARTTCVnD3mXs=\",\"fileLength\":\"6098\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"EFDglnLLhVaAviFJVg000vTbpoSfByvHnPwRzDvPfZU=\",\"fileEncSha256\":\"s15+D3XNN1UChqdRoYXCnKcQmNrs3ZZ0alqrWPtKlHo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637055642_927760009978491_3703133242340039621_n.enc?ccb=11-4&oh=01_Q5Aa3wGpF-ayu76Dir77X0_WZW0PiirWozgnmOCy0O6vbKIFZw&oe=69B87F3F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109356\",\"waveform\":\"ABwmJipLXWNgWFtdW1ZbYWNcSTlSYl5RQT9KWVVYWlpYWFhYWWFjUkFETlZbWT4+TFpaRlVfXWFiV09ON1JgXg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771109358,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:49:18.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:49:19'),
(19835, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:49:18.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:49:19'),
(19836, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:49:19.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:49:19'),
(19837, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A50C29A6978E47963C7703E0EB1055A9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771109361336,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:49:21.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:49:21'),
(19838, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A50C29A6978E47963C7703E0EB1055A9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771109459105,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:50:59.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:50:59'),
(19839, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A50C29A6978E47963C7703E0EB1055A9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771109459524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:50:59.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:50:59'),
(19840, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:24.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:24'),
(19841, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC78BA5DFF2E88C783A8E4DFEB12550D\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/634686252_1613724749945975_4016714864404504517_n.enc?ccb=11-4&oh=01_Q5Aa3wE8UEqSb3hULTY6ruzWSNcnKZx2ijmLTPF3tkdv6h3Hww&oe=69B883C0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"nVcTOIjE8mD5M2JHfA2nwbk8o8rk2M8jTPtbc+KXxH8=\",\"fileLength\":\"125392\",\"height\":1200,\"width\":1600,\"mediaKey\":\"nQWq8TNuZyCE01gFqrL4RNKVxjIDsfl2wR\\/KrCAUFIw=\",\"fileEncSha256\":\"oBnYKU4gY7obY5qc5HSaLP1ArX8kKo76Hlk0zs5YvLc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/634686252_1613724749945975_4016714864404504517_n.enc?ccb=11-4&oh=01_Q5Aa3wE8UEqSb3hULTY6ruzWSNcnKZx2ijmLTPF3tkdv6h3Hww&oe=69B883C0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109542\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADYASAMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAAAAwECBAUGAQADAQEAAAAAAAAAAAAAAAABAgMABP\\/aAAwDAQACEAMQAAAA5d31U0mVkMlMsrRVcHCTboGAn0dVc3ZFNm5F4zCEFDLgO+K2aXFY53WGXj5vSTO3nTWYNyhn7cheq8oRjpgKx4IE6f\\/EACgQAAICAQMDAgcBAAAAAAAAAAECAAMRBBIxEyFBFFEFECAiQlJhU\\/\\/aAAgBAQABPwAWJ7wMp8zP1Ew6M+VE9KntDpf1Yzo2Dh5tuHgGAXf5zLgZKNOoJvBhVxzmLmYENZnTiriCMiHlBLaKQpOwQ6nVgAkz12pHIEq321o2O5EBfiFiORMPt3be0s1SUhd3mHW0jmX6mtq3VecQjUkAdMxvVHlDxjiVE1ogK\\/jCxJziEkzeAp5yZrVd2QBYKrGKZQgZlw7578wE+0wYRMTHyG3+T7P5PiTrlAJpNRdYjuxi6jU2XFTZ2ERCwzmWKFEZglRfzFurvdEKmJTXYWPeCpFftma8jrT\\/xAAiEQACAgEEAQUAAAAAAAAAAAAAAQIRAwQSE1FBECExMmL\\/2gAIAQIBAT8A39o3oterxMjp8rVqjgy9G2Su0I5n0R1biktiFqvwPJduvkRS6IxjS9keDwiX2Z\\/\\/xAAgEQEAAgEDBQEAAAAAAAAAAAABAAIDBBEiEBITMVFS\\/9oACAEDAQE\\/APF8Y47Ttt8mz0MtY6jEKMc+L9TcTcjDGEtpa2s27pbS1duUqFahGHsm\\/Iicnoeif\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"H732xR5QsKho7fD0h4nUjM4AytaQ\\/\\/NjaCrQFmAPcnMn\\/2hFgrkHog==\",\"scanLengths\":[15825,47981,18351,43235],\"midQualityFileSha256\":\"Aqo\\/rOUR9kxENKadC4eeewD85woIboRvsHbl1HQftXY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gwrUmcj+7CO4GRFPpGSUpbcoprOXGWeqkqx0W0d8bnc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771109544,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:24.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:52:24'),
(19842, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:24.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:25'),
(19843, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:24.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:26'),
(19844, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:48.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:48'),
(19845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:50.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:50'),
(19846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:50.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:50'),
(19847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:50.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:52:51'),
(19848, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACF92E730D84DECE475C10D0532688CC\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Esses ai\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"I7GQNFaNh4Sy5R1X9cNEwW+\\/7qoEWugY0FDi7NV8cPI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771109569,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:52:50.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:52:51'),
(19849, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"13142599942311@lid\",\"presences\":{\"13142599942311@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:53:49.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:53:49'),
(19850, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5F11DCA37465D4B355EE43C2B967AEB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636176769_2324470564733109_3494118095779329544_n.enc?ccb=11-4&oh=01_Q5Aa3wEa0YDO1cJkCsmukcTIiU5IOVSsY4v4CgugIjjBGsH8aQ&oe=69B85FFF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TGfuKwvUDYKKGeFWbGeM5prate2cEKK7v2\\/78CiWZfU=\",\"fileLength\":\"4124\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"EK5PbwpmShN9tGZRYX5hWN2eXxp\\/uGb2\\/zj+JllnJWk=\",\"fileEncSha256\":\"NRzWmBGMdPyZ5I8gcmSeqn462C5L1SS8598o960JO4I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636176769_2324470564733109_3494118095779329544_n.enc?ccb=11-4&oh=01_Q5Aa3wEa0YDO1cJkCsmukcTIiU5IOVSsY4v4CgugIjjBGsH8aQ&oe=69B85FFF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109661\",\"waveform\":\"AAACGzRJWl9jY19ZTT9JWFdUPjFLWlROS0xQTklLUElATlpaWVhZXmBfWU5QVVthYmJgW0tBRUhKTE9RUUEuLA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771109662,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:22.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:22'),
(19851, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:22.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:54:22'),
(19852, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5F11DCA37465D4B355EE43C2B967AEB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771109662792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:22.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:23'),
(19853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:22.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:54:23'),
(19854, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5F11DCA37465D4B355EE43C2B967AEB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771109668318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:28.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:28'),
(19855, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5F11DCA37465D4B355EE43C2B967AEB\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771109668847,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:28.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:29'),
(19856, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A520F5F731CEE84FAEB3F2521A95ABA4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/636671482_907901568552120_7217029491679331125_n.enc?ccb=11-4&oh=01_Q5Aa3wGKYD4irSguUBEzmecF16r2tHJu-EHPWpH2e9uSlkr7QQ&oe=69B87204&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2YePpyZkjnSbylrKQKp0G\\/VgSsRYoIbtq6fDSA6X17w=\",\"fileLength\":\"35173\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"1QDegcSdPdq4EIQB1vtbKDnmXmUHDM4y9pwVOJB2Iv0=\",\"fileEncSha256\":\"XjFQ1Bq35ug6E0D+vHbLi6ptyVPgSrw1E\\/rrI6W37tQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/636671482_907901568552120_7217029491679331125_n.enc?ccb=11-4&oh=01_Q5Aa3wGKYD4irSguUBEzmecF16r2tHJu-EHPWpH2e9uSlkr7QQ&oe=69B87204&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109668\",\"waveform\":\"AAAAV1k8VVUWYko+RklcCABXRVRHWF9OSUAETSk3V1piQ0cAA1RKMWEROjNTTEpXV0BVQls0LAEANy5cJlUdSA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771109681,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:41.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:42'),
(19857, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:41.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:54:42'),
(19858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:42.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:54:42'),
(19859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A520F5F731CEE84FAEB3F2521A95ABA4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771109682161,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:42.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:43'),
(19860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A520F5F731CEE84FAEB3F2521A95ABA4\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771109683487,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:54:43.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:54:43'),
(19861, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACAC65C77EF89A9448B4108B5A6A21D1\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/637359796_2096088327625851_6344402094716972479_n.enc?ccb=11-4&oh=01_Q5Aa3wFmk6k8hJJpYgNnO5pJEo_wH325F5pg5FyaC_OdWutrrw&oe=69B854A0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"62\\/sg3rbMh86zXAeaQhbkQU26UePOge389GrUYCFNf4=\",\"fileLength\":\"445043\",\"seconds\":2,\"mediaKey\":\"QghdKfysj4V2MVQJjCe2tBJ+VHnnAr33\\/+Cmz5XVAvU=\",\"height\":478,\"width\":848,\"fileEncSha256\":\"nP6vrndpRullltBuPl+jkNtEjnGpvYBW5hw1NAOFMJ8=\",\"directPath\":\"\\/v\\/t62.7161-24\\/637359796_2096088327625851_6344402094716972479_n.enc?ccb=11-4&oh=01_Q5Aa3wFmk6k8hJJpYgNnO5pJEo_wH325F5pg5FyaC_OdWutrrw&oe=69B854A0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771109749\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACkASAMBIgACEQEDEQH\\/xAAwAAACAwEBAAAAAAAAAAAAAAAABQIDBAYBAQEBAQEBAAAAAAAAAAAAAAACAwEEAP\\/aAAwDAQACEAMQAAAA5nZjfUKy9lbSS6LaugX1tMeajA5Ok6bmemR2UwlWRYWo4sDZNiVAc9xymcvPPaFzDmtUHzDNSFRAK\\/\\/EACcQAAICAQIFAwUAAAAAAAAAAAECAAMRBDEQEhMhQUJRUiAiMjNx\\/9oACAEBAAE\\/AIFXlHaYGdolQPiNQq+kTpVtusFKCW1qEbjRpqmrQk7iHRoBnkiU1r6Y1atgYgpQHuI1dY2mpVRWccaAnRr32ngBXzHJ8iKTOZcd47A5mob7Dxpd0oTZhyzqVlfKmVWe\\/cRFVmMXpj4x2pB7ss1T8xc8ayRWuPaFot4XzDql+UOqRc942rX2ll3ONuK\\/rX+S38TMn6v\\/xAAfEQEAAgEDBQAAAAAAAAAAAAABAAIRAxAhEhMxMkH\\/2gAIAQIBAT8A08c5gEGv0Jbox67VhFi8bU8sbYncY2Xb\\/8QAGxEAAwADAQEAAAAAAAAAAAAAAAECEBESURP\\/2gAIAQMBAT8Aops3XouvcUMUtiWsM5TPmhRKx\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"7YxigHqh+HxU1e7\\/uJRon1wXelLDOpgwGoLc8sim8SkDDmSAYIml7+RA\\/8+QpakFkD1wCSktBXgk7MboWc\\/txplhRxEfbA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"W6bFVhCYSvPrjouMLF4WD6pk01i62Csye+Nj8OFFr2E=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771109751,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:55:51.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 19:55:51'),
(19862, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:55:51.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:55:52'),
(19863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:55:51.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:55:52'),
(19864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T19:55:51.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 19:55:52'),
(19865, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A577912318715F5D54437CBB5BDFFEAF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771110004,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:04.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:05'),
(19866, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:04.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:05'),
(19867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473407625_1381626582836301_5166579324200800276_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsghM7nqNFKpNPLKTeDC90_iTSZUkBBOJpBPCahpKOzg&oe=699E1212&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:04.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:05'),
(19868, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A577912318715F5D54437CBB5BDFFEAF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110005881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:05.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:06'),
(19869, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:08.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:08'),
(19870, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A567B73C99A834F2C0F670CB5205108F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Primeiro campo coloca\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771110008,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:08.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:08'),
(19871, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A567B73C99A834F2C0F670CB5205108F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110008441,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:08.442Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:09'),
(19872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:08.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:09'),
(19873, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:12.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:13'),
(19874, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A52BE01323338CD3514F15A5626B1EE5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"zeus10\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771110012,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:12.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:13'),
(19875, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A52BE01323338CD3514F15A5626B1EE5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110013158,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:13.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:13'),
(19876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:13.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:14'),
(19877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5248C6BA56B21DB9ED386D82AA41CEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"*Usuário:* pt1qxhzq\\n*Senha:* etbz17np\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771110027,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:27.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:27'),
(19878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:27.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:27'),
(19879, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5248C6BA56B21DB9ED386D82AA41CEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110027561,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:27.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:28'),
(19880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:27.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:00:28'),
(19881, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A52BE01323338CD3514F15A5626B1EE5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771110053914,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:53.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:54'),
(19882, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A577912318715F5D54437CBB5BDFFEAF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771110053925,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:53.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:54'),
(19883, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A567B73C99A834F2C0F670CB5205108F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771110053919,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:53.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:54'),
(19884, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5248C6BA56B21DB9ED386D82AA41CEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771110053908,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:00:53.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:00:54'),
(19885, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:01:03.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:01:03'),
(19886, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":true,\"id\":\"A5AF08D7890EF5BC78BFF16E4A14021B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637191908_1438981967734713_1778700035220475324_n.enc?ccb=11-4&oh=01_Q5Aa3wFJYoXhcsGRgYBdwLub0ZJYBC0EPDs-EFscwWYueVxa4Q&oe=69B85E64&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"AE9GmjwukI8Up0KUKZApcz6xVR4IPtR\\/kNGax6UOh8s=\",\"fileLength\":\"16686\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"qpUKe0I3GahPNscn1eQK9LKeTmWxiXfaarhv\\/loyZE4=\",\"fileEncSha256\":\"w9PrnOBwyMXV2eu2vA8v2Z2YC8u+GfYdvjYfNbA203I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637191908_1438981967734713_1778700035220475324_n.enc?ccb=11-4&oh=01_Q5Aa3wFJYoXhcsGRgYBdwLub0ZJYBC0EPDs-EFscwWYueVxa4Q&oe=69B85E64&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771110057\",\"waveform\":\"AAAAAFdjI1k\\/XEtLV1dPSCAoVzM2Iz4gV0pRUidaK1RTUgYAAAAAAB9NW1FOSkZCQD1UMVk5ODM3XQ1KN0UlUg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771110063,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:01:03.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:01:03'),
(19888, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-IuEwKfwa7DS3IDyOu_fqMFSqNbeG3Xm5xxDeACzAIg&oe=699E1010&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:01:03.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:01:04'),
(19889, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:02:36.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:02:37'),
(19890, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:02:38.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:02:38'),
(19891, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC4A2F9C143D81F7AE3688024A549F27\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Ta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"j1lER7Dl+mxVeIXKsIHuzKruHa6do1Px2Pb9X0mAntk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771110157,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:02:38.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:02:38'),
(19892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:02:38.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:02:39'),
(19893, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:02:38.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:02:39'),
(19894, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:12.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:13'),
(19895, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:14.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:15');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19896, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC971125AC6EE0587328DC8187A43E17\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Deu certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/RDg+8JxLoeNqT8Xk6VZ15rVuGIASpAhWv4P6hw9yJg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771110374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:14.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:06:15'),
(19897, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:15.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:15'),
(19898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:15.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:16'),
(19899, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:15.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:16'),
(19900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:16.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:17'),
(19901, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:17.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:17'),
(19902, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:19.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:19'),
(19903, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:23.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:23'),
(19904, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:28.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:29'),
(19905, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:29.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:29'),
(19906, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC42DE356F2E8D1084C6951778209CB2\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Vou só testar tá bom\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8cuCD3XnV5\\/dhT5WrritAw7RD8qXmNJ4f\\/TQN\\/QLmlA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771110388,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:28.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:06:29'),
(19907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:06:29.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:06:30'),
(19908, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:21.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:22'),
(19909, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"3EB0453E5EF49E66572CDB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"fica a vontade\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771110801,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:21.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:22'),
(19910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:21.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:22'),
(19911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"3EB0453E5EF49E66572CDB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110803644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:23.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:23'),
(19912, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:34.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:34'),
(19913, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"3EB08108521AFCD7D32812\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"abriu certinho ?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771110813,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:34.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:34'),
(19914, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"3EB08108521AFCD7D32812\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110814450,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:34.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:35'),
(19915, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:34.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:35'),
(19916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"3EB0453E5EF49E66572CDB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771110822944,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:42.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:43'),
(19917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"3EB08108521AFCD7D32812\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771110822939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:42.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:43'),
(19918, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:44.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:44'),
(19919, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:45.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:46'),
(19920, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC2CEA335EB5E8DE7D23E53FF9C88DFF\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"3EB08108521AFCD7D32812\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"abriu certinho ?\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qe9g\\/iSHs2jnJYo8J7G6wNigKvK36Y5pLPP0Mb\\/FvzU=\"}},\"contextInfo\":{\"stanzaId\":\"3EB08108521AFCD7D32812\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"abriu certinho ?\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771110825,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:45.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:46'),
(19921, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:46.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:46'),
(19922, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:46.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:47'),
(19923, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:46.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:47'),
(19924, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:49.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:50'),
(19925, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACF66494206CD07B4849F99BD9E77FD2\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Estou testando aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fVNrt8H0qlg8ddfYXYr9SmZA0TfgiRwgpOMnsOXFA7g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771110829,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:49.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:13:50'),
(19926, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:50.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:50'),
(19927, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:50.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:51'),
(19928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:50.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:51'),
(19929, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:54.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:54'),
(19930, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:55.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:55'),
(19931, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:55.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:55'),
(19932, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:13:56.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:13:56'),
(19933, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:14:00.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:14:00'),
(19934, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC1AA394D372726FB025B202D3920C5C\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Qual o valor por mês ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cT89UCLm0LRmzD6PyI4otrT4xMq4MGJsiyWlzX65AYw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771110840,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:14:00.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:14:01'),
(19935, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:14:00.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:14:01'),
(19936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:14:01.148Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:14:01'),
(19937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:16:38.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:16:38'),
(19938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A574BD2207CB07CBF546917E5CDBAD7C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"+4KUaSUQ4yJ7H17PATkZxYtrGB8FDNlcL6UMocexGtc=\",\"fileEncSha256\":\"6IATO75ipogGvZIzPhD5WanaMn232gHTFCPsFfqQzkY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&_nc_hot=1771110998\",\"mediaKeyTimestamp\":\"1771103100\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771110998,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:16:38.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:16:38'),
(19939, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:16:38.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:16:39'),
(19940, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A574BD2207CB07CBF546917E5CDBAD7C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771110999334,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:16:39.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:16:39'),
(19941, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":true,\"id\":\"A5AE4BE8727A78FCEDE0104D9181223F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"reactionMessage\":{\"key\":{\"remoteJid\":\"223578951790814@lid\",\"fromMe\":false,\"id\":\"3AAB79357892BECFFE92\"},\"text\":\"👀\",\"senderTimestampMs\":\"1771111042301\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771111042,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:17:22.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:17:22'),
(19942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"223578951790814@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/603976196_1266434722048460_4411760980114362733_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMWcVtsXJez-7HG6wFp8UJps_NT7pUhQ-ogM7rVZ3UZw&oe=699E0EB8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:17:22.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:17:23'),
(19943, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A574BD2207CB07CBF546917E5CDBAD7C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771111121906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:18:41.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:18:42'),
(19944, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"presences\":{\"24584929673437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:38.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:39'),
(19945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:40.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:40'),
(19946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMJoszAzpzYp_LtrOHPsTT3kvbOSdCm-PpPnc1NpMklw&oe=699E002D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:41.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:41'),
(19947, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":false,\"id\":\"3A2AD13E0A687A13E90F\"},\"pushName\":\"Iri\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GZrzSib\\/XBRJQe7Dgsm40MzVZoawqBwT9Jq7StudkgI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771111180,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:40.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:19:41'),
(19948, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:40.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:42'),
(19949, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMJoszAzpzYp_LtrOHPsTT3kvbOSdCm-PpPnc1NpMklw&oe=699E002D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:41.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:42'),
(19950, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:43.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:43'),
(19951, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":true,\"id\":\"A52E17C1C70C1E1CD48F1C0A309A07C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771111183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:43.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:19:43'),
(19952, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMJoszAzpzYp_LtrOHPsTT3kvbOSdCm-PpPnc1NpMklw&oe=699E002D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:43.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:44'),
(19953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A52E17C1C70C1E1CD48F1C0A309A07C2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771111184047,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:44.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:19:44'),
(19954, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"presences\":{\"24584929673437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:43.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:45'),
(19955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A52E17C1C70C1E1CD48F1C0A309A07C2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771111184073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:44.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:19:45'),
(19956, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"presences\":{\"24584929673437@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:19:52.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:19:52'),
(19957, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"presences\":{\"24584929673437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:00.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:20:00'),
(19958, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":false,\"id\":\"3A0AE9C3D3C42D8AC33E\"},\"pushName\":\"Iri\",\"message\":{\"conversation\":\"Manda o pix de novo por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"R4d2a0\\/5Guj8O\\/2P1CB5Vb9CWZO40LvHGI7dRj0sJl8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771111210,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:10.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:20:10'),
(19959, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMJoszAzpzYp_LtrOHPsTT3kvbOSdCm-PpPnc1NpMklw&oe=699E002D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:10.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:20:10'),
(19960, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:10.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:20:10'),
(19961, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMJoszAzpzYp_LtrOHPsTT3kvbOSdCm-PpPnc1NpMklw&oe=699E002D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:10.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:20:11'),
(19962, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E7B9C5C92D2F27923B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 24584929673437\\nMensagem: \\\"Manda o pix de novo por favor\\\"\\n\\nUse: \\/aprovar 24584929673437  (automático)\\nUse: \\/pago 24584929673437  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771111211,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:11.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:20:11'),
(19963, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB005958D6E670EAA99E3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 24584929673437\\nMensagem: \\\"Manda o pix de novo por favor\\\"\\n\\nUse: \\/aprovar 24584929673437  (automático)\\nUse: \\/pago 24584929673437  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771111211,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:20:12.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:20:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(19964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A574BD2207CB07CBF546917E5CDBAD7C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771111282700,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:22.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:21:23'),
(19965, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:39.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:39'),
(19966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:41.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:41'),
(19967, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:41.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:41'),
(19968, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:42.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:42'),
(19969, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC6607346B2064FEBFA0D49A89B937D7\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"K7jYUm6RR2cbjTRc7rsOzMXy3URS++U13FKfXs6Q\\/fU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771111301,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:41.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:21:42'),
(19970, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:41.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:42'),
(19971, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:46.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:46'),
(19972, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC698601EE94C07829F4E0EE95BDA8D3\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Só vou terminar aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Bkjg1eHNWyNmITEDADUjH0y5Qw02VfUOswR4KtfYxdU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771111306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:46.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:21:46'),
(19973, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:46.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:46'),
(19974, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:46.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:47'),
(19975, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:46.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:47'),
(19976, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC86C531EAD2DC4C2BE3AC77AF144CA7\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"E vou querer esse de 40 reais\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9ryVvu\\/46EACriha4+Ewf8XBRo\\/1QxyrsJ9iPhd3dTE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771111314,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:54.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:21:54'),
(19977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:54.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:54'),
(19978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:54.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:55'),
(19979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:54.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:55'),
(19980, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:57.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:58'),
(19981, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC8B1833C1BA9A2C4E8DF12E15E69AED\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"1 tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8MtaWbqI8F71bZg2o1hLSFVG2vANG0RvC8LEjBhwRGc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771111319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:59.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:21:59'),
(19982, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:59.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:21:59'),
(19983, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:59.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:22:00'),
(19984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:21:59.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:22:00'),
(19985, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5133048692C549A8A0E77AC628F8E05\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771112484467,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:24.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:41:25'),
(19986, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:25.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:41:26'),
(19987, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5133048692C549A8A0E77AC628F8E05\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/55956794_1210104701192113_8409711579517680107_n.enc?ccb=11-4&oh=01_Q5Aa3wFK7_pJ4YgAtRPL7XfikkzDXjQjehRcPM3E6YLi2ZqX1Q&oe=69B881C9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BYQugnh0ANj823IqlCPQXWFe4En6FlzYjWnp0WuKZOI=\",\"fileLength\":\"44387\",\"seconds\":19,\"ptt\":true,\"mediaKey\":\"CJgwO1cG\\/p0rf0HE3uMztuza3y4URCB+FIxI01ETP6U=\",\"fileEncSha256\":\"\\/jmwZn3C8LQNiomEoYPGwNROQsX1c8sVZ7kuPahJAhE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/55956794_1210104701192113_8409711579517680107_n.enc?ccb=11-4&oh=01_Q5Aa3wFK7_pJ4YgAtRPL7XfikkzDXjQjehRcPM3E6YLi2ZqX1Q&oe=69B881C9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771112465\",\"waveform\":\"ADBaXlRYXB9TNFJSSyIpUTxYXChKVThTPjMrR1VXWVhWTzk3XE5hQDBOLlBDS0ZYLUNiW0M3LDRhL1dYWEQ3Ng==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771112485,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:25.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:41:26'),
(19988, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:26.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:41:26'),
(19989, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:33.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:41:34'),
(19990, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5576940D2C9CED9A7C1FFBA74F3893E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UE2IGXQ5S4\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771112493,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:33.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:41:34'),
(19991, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:34.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:41:34'),
(19992, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5576940D2C9CED9A7C1FFBA74F3893E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771112494311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:41:34.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:41:35'),
(19993, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5133048692C549A8A0E77AC628F8E05\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771112702173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:02.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:45:02'),
(19994, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5576940D2C9CED9A7C1FFBA74F3893E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771112702166,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:02.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:45:02'),
(19995, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5133048692C549A8A0E77AC628F8E05\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771112702630,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:02.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:45:03'),
(19996, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:32.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:45:32'),
(19997, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:36.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:45:36'),
(19998, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC36B0DC0610B7E19CA974B9EA368221\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Positivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0uIKrFeL0aX4rm7km36Prpl6iEgxPoWWBPXwu+9sYlA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771112736,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:36.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:45:36'),
(19999, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:36.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:45:37'),
(20000, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:45:36.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:45:37'),
(20001, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:21.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:22'),
(20002, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":true,\"id\":\"A5FF276A4A25B4DC80AB52E4344B170E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771112901,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:21.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:22'),
(20003, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkkV4H_u2YLOCYVrAVzo_UiOl8p7WPx1HkaWBZLIaQtg&oe=699E386D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:22.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:23'),
(20004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A5FF276A4A25B4DC80AB52E4344B170E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771112904201,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:24.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:24'),
(20005, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:24.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:24'),
(20006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkkV4H_u2YLOCYVrAVzo_UiOl8p7WPx1HkaWBZLIaQtg&oe=699E386D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:25.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:25'),
(20007, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":true,\"id\":\"A5BE3DE7DF635E6D0EF042333CDB7FAD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UE2KCV2GPU\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771112904,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:24.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:25'),
(20008, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A5BE3DE7DF635E6D0EF042333CDB7FAD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771112905725,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:25.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:25'),
(20009, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A5BE3DE7DF635E6D0EF042333CDB7FAD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771112918019,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:38.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:38'),
(20010, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A5FF276A4A25B4DC80AB52E4344B170E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771112918015,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:38.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:38'),
(20011, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"presences\":{\"24584929673437@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:41.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:42'),
(20012, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:47.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:48'),
(20013, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkkV4H_u2YLOCYVrAVzo_UiOl8p7WPx1HkaWBZLIaQtg&oe=699E386D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:48.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:48'),
(20014, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":false,\"id\":\"3AB77C915E1C46D97830\"},\"pushName\":\"Iri\",\"message\":{\"conversation\":\"Quanto é mesmo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S+ofwme4pHYR8Jhb2hYPb9+CAhwKnVY2JFRgPJfumx0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771112927,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:47.856Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:48:48'),
(20015, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkkV4H_u2YLOCYVrAVzo_UiOl8p7WPx1HkaWBZLIaQtg&oe=699E386D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:48:48.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:48:49'),
(20016, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"24584929673437@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:54:43.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:54:43'),
(20017, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"24584929673437@lid\",\"fromMe\":true,\"id\":\"A596510DA3C8523EFE72A4EFF03FC4DE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"+4KUaSUQ4yJ7H17PATkZxYtrGB8FDNlcL6UMocexGtc=\",\"fileEncSha256\":\"6IATO75ipogGvZIzPhD5WanaMn232gHTFCPsFfqQzkY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wFeaZVTwrcCKaovs9NppibNXItQBa6qSwgr4lN5QQqPIw&oe=69B862A2&_nc_sid=5e03e0&_nc_hot=1771113282\",\"mediaKeyTimestamp\":\"1771103100\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771113283,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:54:43.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:54:43'),
(20018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"24584929673437@lid\",\"pushName\":\"Iri\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625686923_928993659702541_3490321602646927831_n.jpg?ccb=11-4&oh=01_Q5Aa3wGkkV4H_u2YLOCYVrAVzo_UiOl8p7WPx1HkaWBZLIaQtg&oe=699E386D&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:54:43.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:54:44'),
(20019, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A596510DA3C8523EFE72A4EFF03FC4DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771113284810,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:54:44.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:54:45'),
(20020, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A596510DA3C8523EFE72A4EFF03FC4DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771113349536,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:55:49.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:55:49'),
(20021, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"24584929673437@lid\",\"id\":\"A596510DA3C8523EFE72A4EFF03FC4DE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771113387945,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:56:27.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:56:28'),
(20022, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:33.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:33'),
(20023, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:35.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:35'),
(20024, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:35.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:35'),
(20025, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC8A06A2C85031EB99BCA4ABBE3ECDF3\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"extendedTextMessage\":{\"text\":\"Amigo\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"197LwUUmEirn9gGsqvIv6V0qiAIHf9wTOg6RGqp4G+s=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771113454,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:35.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:57:36'),
(20026, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:35.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:36'),
(20027, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5103E795D5956DAFD6B77E00ABED2D8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771113456759,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:36.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:57:37'),
(20028, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:36.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20029, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A5103E795D5956DAFD6B77E00ABED2D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771113456,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:36.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:57:39'),
(20030, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:37.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:39'),
(20031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:36.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:40'),
(20032, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:38.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:40'),
(20033, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:35.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:40'),
(20034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:35.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:40'),
(20035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:37.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:41'),
(20036, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:38.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:41'),
(20037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC3DF01F995FEE2DCCFFBE75F8631B4C\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gXNYfXwlJGhB0L+2PF41Lh88l7cFln+anqcPkk5ythE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771113457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:37.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:57:42'),
(20038, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC8E9A9BB89565100B1EFE34AD6264FE\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Estou sem sinal na TV da sala\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Bv7y0hwF+C03bEI36E5Xe3Ui94OGUhGguDz2+Lh4Za4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771113466,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:46.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:57:46'),
(20039, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:46.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:46'),
(20040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:46.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:47'),
(20041, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:57:46.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:57:47'),
(20042, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:58:04.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:58:05'),
(20043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC1FF8932EB3089579A0E3B41FBFC745\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637455480_895690623379614_3348023077154947810_n.enc?ccb=11-4&oh=01_Q5Aa3wE95fs7e9OXYF-SnaWAMt4lV7-SuOP7LV25RwytETDC-A&oe=69B884C0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"qllUvRV3\\/EaAdo3TGBJMMAmH0L+zmf3y9nQ2Ly+q5G8=\",\"fileLength\":\"171690\",\"height\":1600,\"width\":900,\"mediaKey\":\"+Kzl8DHh\\/lw0h4B9PPkFVh6eg7sa9BmQaQq\\/I5L3rws=\",\"fileEncSha256\":\"7xhE2knWzOt1b8d5ZzeswcriRCrTdv5pQhkAVipu6P4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637455480_895690623379614_3348023077154947810_n.enc?ccb=11-4&oh=01_Q5Aa3wE95fs7e9OXYF-SnaWAMt4lV7-SuOP7LV25RwytETDC-A&oe=69B884C0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771113484\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgQDBQEBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAEEWn0l1TUyIducds33cPVOiBz1Cc33Oqfd6CM1BS9RF9gt6hoM\\/\\/8QAJBAAAgMAAgICAQUAAAAAAAAAAQIAAxEEEiFBEzEFFCIjQ1L\\/2gAIAQEAAT8ACpD0DBYwQfXudq\\/j7iV21OoJwQ6zePsCY3sbMI\\/rj1WClSVxJXWnQYwnGcdipWcgqHABzZ1\\/kUfLqmXhf06o+YJUqdBiiXG1WHTYgsY6+y2uzx02C7lui1NnURbEAA2BwQD2j3BQMOkz57Cx8EiLc\\/bCphL74BiFgO33FsZyD7E4\\/wC9YFB8Q1vp8xOAQMLxPxzqSe8r4hr3Hica0P2Lw1NDZnowXn\\/Bl\\/J6VEgEGU8t1fSxIJi3Iw0Gf\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAECABEQURIgIf\\/aAAgBAgEBPwAKdTi2sK4AEZ7rpc8z\\/8QAGhEAAwEAAwAAAAAAAAAAAAAAAAERAhAgQf\\/aAAgBAwEBPwCoq8ZTSpnMvZaa4\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"o6OjHSuh1Koo0oq7D7btFbEegngtOT0gWWPx+rc\\/Hwth6pw3Djmtog==\",\"scanLengths\":[16152,64725,33323,57490],\"midQualityFileSha256\":\"mfgcd9cweRkETy9lrJLREZzglBWWYrARzUdi7qvo8Pg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HN3MriofiePOUlWSYjmtNZrxPU0TOZc7NFnhQfhAAYc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771113484,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:58:04.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 20:58:05'),
(20044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:58:05.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:58:05'),
(20045, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T20:58:05.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 20:58:06'),
(20046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:00.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:00:01'),
(20047, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:01.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:00:01'),
(20048, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":false,\"id\":\"ACB986DC7302C9F67B98A2FDD945C751\"},\"pushName\":\"Neto\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637405098_935816829103070_9047649087411524026_n.enc?ccb=11-4&oh=01_Q5Aa3wEXzGisNlxqv-WG4w158L5kZz6ElKvINkNgXy24PzlblA&oe=69B88996&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Q5qLl2H0\\/tZgNesEO5hQdCu8kgLn4MK3lnkbFcEsb2Q=\",\"fileLength\":\"73850\",\"height\":1382,\"width\":395,\"mediaKey\":\"rElxTHNFYHghk7WSvr8dG0c4rTFbkLJAXY99z0yLSFw=\",\"fileEncSha256\":\"hzp\\/3RQv349ux3DwGFF9qabi+0Uf7cp7NCkLTzAePLg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637405098_935816829103070_9047649087411524026_n.enc?ccb=11-4&oh=01_Q5Aa3wEXzGisNlxqv-WG4w158L5kZz6ElKvINkNgXy24PzlblA&oe=69B88996&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771113600\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAAsAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD0dVgkc61rMmgvMpYSM895MWwrQNAf\\/8QAIhAAAgEDBAIDAAAAAAAAAAAAAAERAhIhAxBBUgQxIEJh\\/9oACAEBAAE\\/ACJ5YlCIrzlbzXd6Q6dXhIT8hcUszM2svfRl7X0ZmcbKfhNfVFVOo7YShE63VC3n8I5z7Ef\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAWEQADAAAAAAAAAAAAAAAAAAAQIIH\\/2gAIAQMBAT8ANf8A\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"XyaGTCA8K3Yz+bQOT5xqGr4DC+MCYGIm2A9rg0f\\/xV2bCeoYT0ekHQ==\",\"scanLengths\":[4058,37024,15107,17661],\"midQualityFileSha256\":\"wjb65WvdgHOwMZekDaFPYgxH+1GSHllkA6ILqxwXgKA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3Vj\\/LnxSGQWILD1dfUiUljL2hYBf9TBvsqb30eHSVLQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771113601,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:01.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:00:03'),
(20049, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:02.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:00:04'),
(20050, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKA-HeaKgscnzTrUvXZy-P_FpWxY5Q38G7mbffrWYAGw&oe=699E3200&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:01.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:00:04'),
(20051, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A58BF2E6999F786A1D8396283D701505\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771113602594,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:02.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:00:04'),
(20052, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKA-HeaKgscnzTrUvXZy-P_FpWxY5Q38G7mbffrWYAGw&oe=699E3200&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:02.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:00:04'),
(20053, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKA-HeaKgscnzTrUvXZy-P_FpWxY5Q38G7mbffrWYAGw&oe=699E3200&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:01.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:00:05'),
(20054, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":true,\"id\":\"A58BF2E6999F786A1D8396283D701505\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771113602,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:00:02.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:00:05'),
(20055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:21.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:22'),
(20056, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:22.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:22'),
(20057, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A58CCA3AE2B794286A6F797D34CF6767\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11957735_1577744070010720_5694974636375631434_n.enc?ccb=11-4&oh=01_Q5Aa3wFLBWAvxdHrSwHtcCStmWCADLkJnscJL8sYOg_kSrFROg&oe=69B88796&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"qbe5XSQuHsFQNwEUeqtgRW3nIwngtIZR810p\\/fdtEdk=\",\"fileLength\":\"8162\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"y4rXH5MSR+pY9w9hfVtfgvii2k3VfUfhG49D\\/96NnvE=\",\"fileEncSha256\":\"MhnAq3WLUpQoJtZzekT8zYCUnN9Rl7yrcuaSrbc6obA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11957735_1577744070010720_5694974636375631434_n.enc?ccb=11-4&oh=01_Q5Aa3wFLBWAvxdHrSwHtcCStmWCADLkJnscJL8sYOg_kSrFROg&oe=69B88796&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771113799\",\"waveform\":\"ADQ1MTVjYV9jYWFjTkhRPkZMU0RhY11PN0dcW2NjY1xaW1lfXlZQT0owLlJPTVZTUUxHQEs5QE9NSlRWWT1PWw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771113801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:21.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:22'),
(20058, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A58CCA3AE2B794286A6F797D34CF6767\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771113802544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:22.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:22'),
(20059, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:25.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:25'),
(20060, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A5EB6702EB0054491C3443FCDEC46CB7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"..\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Bom dia, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A5A9F5C3E4420D68D8C8CA69116B1DC9\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Bom dia, tudo bem?\\nSeu plano expira dia 14\\/02, renove já!\\nFormas de pagamento: 47996105435\\n*Caso vc receba a cobrança pelo app Infinite Pay, pode realizar o pagamento por lá, e desconsiderar este lembrete*\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771113804,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:25.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:25'),
(20061, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:25.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:26'),
(20062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5EB6702EB0054491C3443FCDEC46CB7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771113805253,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:25.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:26'),
(20063, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A58CCA3AE2B794286A6F797D34CF6767\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771113808091,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:28.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:28'),
(20064, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5EB6702EB0054491C3443FCDEC46CB7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771113808088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:28.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:28'),
(20065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A58CCA3AE2B794286A6F797D34CF6767\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771113808788,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:28.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:29'),
(20066, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:35.064Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:35'),
(20067, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:35.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:35'),
(20068, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"ACF056640A84791CA11E5CF3142D3F92\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Kkk\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yjI+R1Cqij+gVaL6IcUmB\\/71zEA1LEiYp\\/hUQWOLPzw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771113815,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:35.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:36'),
(20069, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:36.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:36'),
(20070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:35.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:37'),
(20071, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:36.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:38'),
(20072, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC789A64976A74E8CF7620801CAB4212\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Esqueci\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FFIBN76eamx4UmHDD+tQMEsnMPy6uZeFVVWPYXucHoA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771113819,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:39.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:39'),
(20073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:39.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:39'),
(20074, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:39.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:40'),
(20075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:39.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:40'),
(20076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:39.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:41'),
(20077, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:41.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:41'),
(20078, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"ACE41C5981E0EA42ED31C20A154ACB07\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Ja pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tcEV9WFc9wdcACPsbtfw\\/a0xRfgAweUQ6B3ePwyrXJY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771113821,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:41.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:03:41'),
(20079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:42.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:42'),
(20080, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:41.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:42'),
(20081, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB056BCE66F797B185FB4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 217226695151773\\nMensagem: \\\"Ja pago\\\"\\n\\nUse: \\/aprovar 217226695151773  (automático)\\nUse: \\/pago 217226695151773  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771113823,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:43.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:43'),
(20082, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09111C5363D89A7D8DF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 217226695151773\\nMensagem: \\\"Ja pago\\\"\\n\\nUse: \\/aprovar 217226695151773  (automático)\\nUse: \\/pago 217226695151773  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771113822,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:03:42.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:03:43'),
(20083, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:04:34.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:04:34'),
(20084, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC34A082B4B33E9D66D4B74C7DA64A7E\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637041557_1564469561306901_2003899054642019363_n.enc?ccb=11-4&oh=01_Q5Aa3wEGWUyFSN-C373jtidOgDR70DX-FwF9f0vBEuMKUyq1Hw&oe=69B86FE3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"tqyDqdOxm4LwIPM\\/8Fyg2xkfL2xDUz6Xp\\/ba3h8EO48=\",\"fileLength\":\"56547\",\"height\":1600,\"width\":639,\"mediaKey\":\"VrzuaBWbeXGc7rmwqPeAMLzwdt1U8ouGVm9G\\/rePpJ0=\",\"fileEncSha256\":\"+QbavFXOiqeXiR89R7bhqH1ekwrB0cnTyUr80K4kz1Q=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637041557_1564469561306901_2003899054642019363_n.enc?ccb=11-4&oh=01_Q5Aa3wEGWUyFSN-C373jtidOgDR70DX-FwF9f0vBEuMKUyq1Hw&oe=69B86FE3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771113873\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAgEDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPcvLrqxGIV0RcRkWXsWY3QAAD\\/\\/xAAjEAACAgECBgMAAAAAAAAAAAABAgAREgMQEyEiMUFRIDCB\\/9oACAEBAAE\\/ANS27ahXnNB0W+stu2quWJEwHoQBvBlmEjKgv78MgO\\/KZotm4HS6uDnDiYqqBXeYr6Gx00ezRESgKAML14OxdwaAE6vI34YDXf0f\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"HECJ4A63RC6ogUE54cl0Qpq6lQfdppNUQsnX0PyLi9+BIZKhUwihdg==\",\"scanLengths\":[5731,28801,10082,11933],\"midQualityFileSha256\":\"fY\\/WxRWNv9JAyxfOtSz3tWwCUunNbUl8ZPSaebWxlnY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"h80Pqd1TyUwjeRKc1VEcv6P8qB\\/FboQLs\\/IvxTSj9+k=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771113874,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:04:34.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:04:34'),
(20085, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:04:34.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:04:35'),
(20086, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:04:34.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:04:35'),
(20087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC82BB3965C65D697CA22A39917A1DE2\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/29527714_890318743856815_2758791224664039905_n.enc?ccb=11-4&oh=01_Q5Aa3wGFMFhnBmwtN9uDX6ai5VUUKLLcirAC8iK4B7jINIkiOg&oe=69B86DEF&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"qX9rGu\\/wdb+RAIyKsaWP2bXyMf8kPmZEgwM2Gb3F5tY=\",\"fileEncSha256\":\"RO5WaUIdh7ng24epMyQhBw3kbSQ+TyWdyc1pqbq9WiA=\",\"mediaKey\":\"MDy72nVnlmtsLW+VUodJYs\\/aGuHyvCduAbeZFFvrPGs=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/29527714_890318743856815_2758791224664039905_n.enc?ccb=11-4&oh=01_Q5Aa3wGFMFhnBmwtN9uDX6ai5VUUKLLcirAC8iK4B7jINIkiOg&oe=69B86DEF&_nc_sid=5e03e0\",\"fileLength\":\"279922\",\"mediaKeyTimestamp\":\"1771018486\",\"firstFrameLength\":279608,\"firstFrameSidecar\":\"0qVxkCRZq6R+tQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1771113994955\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"x7H+ufIQ2lGU2uL0cz1TBBBFQEz6Jz32KSDQrpbyUqg=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771113995,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:06:35.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:06:36'),
(20088, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:06:35.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:06:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20089, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:06:35.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:06:43'),
(20090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:06:35.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:06:43'),
(20091, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:15:52.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:15:53'),
(20092, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:16:02.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:16:03'),
(20093, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:16:14.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:16:14'),
(20094, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:16:16.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:16:16'),
(20095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC932C1AC671D97D6A732B43DBBE21DB\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Consegue liberar pra eu poder ver o jogo agora 9.30\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BRSjXIigrQzGPjFxOQQvX6CjvY+7aldpeBuTNrYeG20=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771114575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:16:16.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:16:16'),
(20096, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:16:16.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:16:16'),
(20097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:16:16.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:16:17'),
(20098, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A50188A33A21BFB8BDF45C612CB98945\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771114838095,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:38.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:20:38'),
(20099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:38.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:20:38'),
(20100, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:38.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:20:39'),
(20101, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A50188A33A21BFB8BDF45C612CB98945\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637325893_880672887924937_195723622764688439_n.enc?ccb=11-4&oh=01_Q5Aa3wF-xVbgLNNhGQj1b236z-ZI98afL3nHoP1UU0tbvD5gVA&oe=69B89116&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BjoiwYO6TgzPTrZwWoNUDh21zP85+YvqYnn5\\/TE5tPI=\",\"fileLength\":\"6562\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"3CXkQamWNK\\/HLAoLHAKAmjHxklNRyRA8K4relUO2dNI=\",\"fileEncSha256\":\"oJMCrqZ++9n3JtF17A\\/bh4Z2vO5OYyoKI3GzKcKAvc0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637325893_880672887924937_195723622764688439_n.enc?ccb=11-4&oh=01_Q5Aa3wF-xVbgLNNhGQj1b236z-ZI98afL3nHoP1UU0tbvD5gVA&oe=69B89116&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771114834\",\"waveform\":\"AE5aTEhWY2NjY15bYVpMVFlZXGJiXVpcYF5eU1hbUkZhXVhJQkQwTlNWV004PFpeTz08VVJJTFNYXmJbW0s\\/Uw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771114838,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:38.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:20:39'),
(20102, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A50188A33A21BFB8BDF45C612CB98945\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771114841986,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:41.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:20:42'),
(20103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A50188A33A21BFB8BDF45C612CB98945\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771114842588,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:42.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:20:42'),
(20104, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:46.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:20:46'),
(20105, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:49.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:20:49'),
(20106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:49.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:20:49'),
(20107, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC6992DAE21D8714DB1C15E2DCBF556D\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"l+yqHIqfsDQonEAa6Xn7KMtEnY7tsLCVAY2qi+y9Mt4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771114849,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:49.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:20:50'),
(20108, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:20:49.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:20:50'),
(20109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:11.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:21:12'),
(20110, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A5347BA0D43A4F9357F8EBAA44C31A1B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEihkSrk5j4w_pz4I4lag1xqa0kz8wz8w-UtThkvJz5MQ&oe=69B896BC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEihkSrk5j4w_pz4I4lag1xqa0kz8wz8w-UtThkvJz5MQ&oe=69B896BC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771114870627\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771114871,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:11.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:21:12'),
(20111, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:11.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:21:12'),
(20112, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:12.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:21:13'),
(20113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A528E143968B4863F4372B5560203D89\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/13747744_1454488779444413_7701946469407496941_n.enc?ccb=11-4&oh=01_Q5Aa3wERY_2XJB818rga5rnTYH-aOgI8-4TPmdjZKTYOGgGViQ&oe=69B8744B&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"RcDHtk8wclhYW9qnnnxq56XG9JGbl++MMPbYX9b6uxI=\",\"mediaKey\":\"+ffaQmALUgCfBW8yIvHHfyl692pNHqafZaarrsULL2k=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/13747744_1454488779444413_7701946469407496941_n.enc?ccb=11-4&oh=01_Q5Aa3wERY_2XJB818rga5rnTYH-aOgI8-4TPmdjZKTYOGgGViQ&oe=69B8744B&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1771114871\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"PHCNysginr0aew==\",\"isAnimated\":true,\"stickerSentTs\":\"1771114871229\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771114872,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:12.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:21:13'),
(20114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A528E143968B4863F4372B5560203D89\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771114872722,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:12.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:21:14'),
(20115, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5347BA0D43A4F9357F8EBAA44C31A1B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771114872219,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:12.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:21:14'),
(20116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:21:12.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:21:14'),
(20117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A528E143968B4863F4372B5560203D89\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771115035243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:55.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:23:55'),
(20118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A5347BA0D43A4F9357F8EBAA44C31A1B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771115035249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:55.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:23:55'),
(20119, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:57.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:23:58'),
(20120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:58.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:23:59'),
(20121, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC7627290AEB6426557D6431DC439B5A\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VDa1EFMAL+EMDjjUH6skyIcAMgb48g\\/+dUyAI6pKTdo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771115038,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:58.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:23:59'),
(20122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:59.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:24:00'),
(20123, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"presences\":{\"217226695151773@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:59.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:24:00'),
(20124, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:23:59.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:24:00'),
(20125, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":false,\"id\":\"AC8FCBCA3B1F8F25CDC3CFEDDB8E2892\"},\"pushName\":\"Eletricista  Rafa\",\"message\":{\"conversation\":\"Deus abençoe\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"\\/D5BNfhl8Edjow==\",\"senderTimestamp\":\"1770916913\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SCHLOJ5U82msYtQqbLBlM4hYqTB57n0bd0mNOMQTG9Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771115041,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:24:01.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:24:01'),
(20126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:24:01.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:24:01'),
(20127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:24:01.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:24:02'),
(20128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:24:01.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:24:02'),
(20129, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:43:22.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:43:23'),
(20130, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"257904330432515@lid\",\"fromMe\":true,\"id\":\"A51256B46B928E3236B267715E7B2397\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEihkSrk5j4w_pz4I4lag1xqa0kz8wz8w-UtThkvJz5MQ&oe=69B896BC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEihkSrk5j4w_pz4I4lag1xqa0kz8wz8w-UtThkvJz5MQ&oe=69B896BC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771116373360\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771116374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:46:14.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:46:14'),
(20131, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"257904330432515@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:46:14.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:46:15'),
(20132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"257904330432515@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/467452886_3546352152178169_4200947192043398542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEKA-HeaKgscnzTrUvXZy-P_FpWxY5Q38G7mbffrWYAGw&oe=699E3200&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:46:14.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:46:15'),
(20133, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A51256B46B928E3236B267715E7B2397\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771116378249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:46:18.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:46:18'),
(20134, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"257904330432515@lid\",\"id\":\"A51256B46B928E3236B267715E7B2397\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771116528572,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:48:48.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:48:49');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20135, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/409338604_1011397736831519_6353018851445311081_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTYn1ddOhAyjAOuPbL5mdqMpr2JEK933FFtjJjp3xz9w&oe=699E1D9F&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/560532242_2909192515958371_878417140690631978_n.jpg?ccb=11-4&oh=01_Q5Aa3wHKymJ35UWL5Rc_lKTyEgq1gqPeVonukw8xiDQMuIztkQ&oe=699E4498&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEECfnajiYPa6qeqpfYGaOaTWuO99UVZza59wGW2sRXGA&oe=699E235B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFEqmsU51EEHPs29OLcqzkg-bIlswnpWShm5irs31RSw&oe=699E4366&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxf6QG-iF6gecYBiDN7AwsFeXe4vgatIcHuCkDLMcRCw&oe=699E3D99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfd_gQC5Q9OR2SP-jJPig6Uq5nK11AJQXwnPAhbgRTw&oe=699E0FB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3KUdGyyj3-t8eJEpxdnlsYnOaO0CtvbjB3h__7eKxQw&oe=699E43BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPcNDM-1Gd6-eAUT33Ia772Pai-cHfIQYGuhFxHLkNxQ&oe=699E2C80&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuCF6LSppIynHrRkuXAz1hwlWwEP0IO3hJynjFMOabBQ&oe=699E0DC3&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrCP8Rcsck2KIQn1GFAHzTRwI8kIrUu08AS9Xgi2aIsQ&oe=699E2CDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425658_1321482943364483_7970227004254490360_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcuG5YKN246JZeZX8MRxdoyvnZJ6_DOP-zf3K4wUIaRQ&oe=699E1B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzwFe7JU8u9veYr8PZYtNTiqblmHVJqUmOvpkE8uosMQ&oe=699E2B15&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmR0_mbUXCWFjJduqV077XwzzX2_uzgD7fao3d6KbIgw&oe=699E3896&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ_c3i7TXoeBQ5DizaNW5sa1FbnobELs-Tj27lBRzzsw&oe=699E334B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmbRqKo9gZTfR9Amn-h6DJz6j_SbbQmULEkqUGP5A0sQ&oe=699E3646&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMFF5G15yVS_YyKfHGHVzQWoQMdeF6BmgJy0d9QYFwVw&oe=699E33E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB0AdORe78Eu6ntvNnC_zWwBtW_T-tbmgR0cM_L6kjIw&oe=699E384C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEc88HTYXWQD1WLpr-wr8c8YwCIsuVC0HBcuQpW6yKuqw&oe=699E30FB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVwSU_htzo4_rPa8Hww_bOJaOuLSj_bOqfNV2eLjyQCg&oe=699E329C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wET5-ijWeXxvXErMsE_ojsWXkEKXOl8JqWV-OvyOwAKvg&oe=699E1DB8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1eeLxBmxFWcLixDtJyeTXqxvoS8DvwhovB-zXNnh13w&oe=699E3209&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVHaj3QiyWyqEnhwQfxf95KeKZd0VFl6_w5ZBGfiqbHA&oe=699E184F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-OCVqJOggqfHxApTEyhzSE6synUuQOSEzlO1T6weXgA&oe=699E3218&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjh2-xXYuBQ_gnPGRp7HWY5w92FERffo_8TpZFObhchw&oe=699E2696&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX-ocgmVHxFdN7qt5qqRfC9GsyIse9xGqo-9tQHpzGMg&oe=699E455A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFO2T1Vqr7bP1DfGpPfgzdkT6vF2sQZXnHO4i1RuRB8ng&oe=699E10B6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnwry8da_KqdMdXIsWXk5r9UZv5HbOnsejO0Ee7HSKSQ&oe=699E21EF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOgR4jCDKEoMERHbcQbtuBLrFBKRBVuLOqWI1yGs4w_A&oe=699E286B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGf7XhGObeNEhRYNEH20CauFWdHFhj8dQRoGfqEOYCv8Q&oe=699E1F4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYR3rC2zy3ujKkKTrLGnG8tM2foqQT0f4QX-Wht2EHPg&oe=699E247B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNWz5UI2K368qjw9neTbuJYlqBqLegAasIjYO7GqvPRw&oe=699E3DC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE27_8juNzFwsrDOW5ygNyEuzHFUz2Sb30VNLFV_pQeIQ&oe=699E2315&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQAAnpspkqWbi_Ax96XFPoyCe7A2KG4SJMFTLbNfK6Wg&oe=699E2ACC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXY4PpbIeRZEM7me_CRZiJk-ULGCTG1TikllN4Y5t_zg&oe=699E425A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0502mQNhGWXTDbkaZ3nmqby-nYhnJN5O93mCSw2pZ8A&oe=699E342F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wElleab45lRYeKDXBDtaPF3e1kOzyEOgf_6eAG78ezx3w&oe=699E3865&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuBdYUPFLENHZHKoETtueL_Bflxe_GF2T_XHcj2KkPvw&oe=699E1890&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPSINBUg_y7MIJO6ByqCSK_hs6_Wp6sXyWGmMImGdR6w&oe=699E26AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMY50wRYQuKqYi3Oe9g0PvpSJRAqK6SG5ADP8WJMEtRA&oe=699E20FB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbnrJVgt11_QoUD_MnVK8N3lVgEa21KEsh-VL9DX2QQA&oe=699E2A69&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUubZ_Pk_hOXkQtS8kzG7vMA44CyM7whIivb_bhB07Og&oe=699E2DEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD2Oj13KEl3PUpeOx-Trq2yhtcEssfFrOpzLx4my6yjw&oe=699E3724&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbGUZfAHx6ebXH98xny5MmGOln6M8LYABv11p3flcJwg&oe=699E1CC5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg2ZusjacvhwL3nVU7KiNUXEiqqMemC2NmSvR4_ck7RA&oe=699E2470&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2nZsj34BO1igO_yEXGxmKZsAIQOP46yDGphSwSvkCqg&oe=699E4312&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG86yI7NCCJKEZZ5DBz5YSbLMwp4ZU76rAfgRUALpQTSA&oe=699E2095&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI521z8AxSeQnZtVlqqRDl4OJNegzZRZ7d84cSzVu-HQ&oe=699E3C91&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUIsy3qOdDpjDgBuZzChiDQJd1aL3XK6es1qd1ej1KpA&oe=699E42B9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4cUlEbXzeC1Y0O60G0kvhEsrMbt_D2HyaZ3qLyGOeoA&oe=699E1E37&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJMVkLymUusMyjS8NZMZIZ4JwZb6MSJDSTDgDA7tK4og&oe=699E2D6A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbywVdq2FJleLrR9L1ZzxbfzioyGD3Zedi8nH5iuQ01g&oe=699E26A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4zhTp8rABm4v0lJY7lZQo7xqzWbCJO0AZB3KaijXPQw&oe=699E2C0A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-brqcMQfejY4U6cbj8ERMTOUpETdzqkXZ_9SDRf-jg&oe=699E2C7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4e8C2EOuH6sLWr53o_agNzL-cH2lsJagoxGMOhLPOPQ&oe=699E152E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBP7iKH7BycRed1dYCF3Z0nzhcVegNcCbDZni7cIuTkQ&oe=699E142B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYUs1OVuCjawCnNribFHOdgsOLZVFpTuJl0SHiFmr2_A&oe=699E2595&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_Xr2Yt0dYjJFkbNZnZgT8Q9g8Chp9t7vZCY3YSOkbTQ&oe=699E1AEE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wEsuE0uqxviDuiFX7gnisrGR-62vAQHSIFpeKOOqy0tJA&oe=699E0D98&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3wHljDYuM_PMZOJDAGmhYPc7xx1wYS7V9A5f91lFqiA&oe=699E2293&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7Z8LSj_LF0TJLOaN553W6omF7DUrIrfozCfh0GBXeDA&oe=699E44F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdifmNRachqv8AW8kgCTnbbad0ysCKc3_9EK4cr1p7Ww&oe=699E3786&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbbiop_tGO4QtESkJJqbZsFUs8fFynkRdIY_yy-WgUAQ&oe=699E4521&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhNn68gFm0xfY0WaLH5OxkhhvroLtbU0ktVNcmsqIcJw&oe=699E24B8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHGEKC_5G-clyHJG5CpuKlQiJrZ1DSuZ-utMZ0PiA5Kg&oe=699E41B8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDPYEEW3hP5ZnjYk2hKyQmImcd_B_dN2F14jS3YqGeRg&oe=699E1840&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp2gbkf5xLIKmoOOrvq2iHFDjEPD0sCFdlrt3ZV5YS_g&oe=699E3D4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUwgrkrpMZICFZ-BbdkV7w76_LD96-zJHyDYL87XOiSA&oe=699E307E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHugtgaseOHB9y9jT9ptAbgsQxp9iq1DZZMK18GazwosA&oe=699E3402&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLki53ZkRUHdkIxWPJ62uZxrH4DtNPiJsIyGqBOh7SjQ&oe=699E214E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0abnkfv9yH3-eFzPmqLByeEqeZ5-LywcjAGW_jiPhKA&oe=699E2834&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9s2obQ1Y3bUGnXylidD1pRRAmDM1c6h_2f3y8WLF2LA&oe=699E0DD2&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0Gb1fd5kGUKgYVmZPOZiF6Y3skpQqSakvqD28NeHsNA&oe=699E3950&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu1N5uh5hIi81sVP6uBwQYR8ZZwk1caqXDxg02-wZegA&oe=699E2D3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJQhF4nIpKTAsOHa_LizD4QfvZauBZHXjBpNofzost9g&oe=699E3072&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF1z5OObq9J6QWLeO1lHAOSaiu7d-bHRi01VW5K8OG8A&oe=699E2AEF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGquG5hy5dzP6Sgd_e_jkrZQ2ZlaY_F6CDX3-TtGsbwxg&oe=699E1F7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAiC3pPCeh4n-XipFUD3scvTGLPxI7z3X3pRm1HFBBlg&oe=699E351F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wED0lMCrL9u31rjQDQ1nfbpqnZ-UJbAN9DeFZGgio2kSQ&oe=699E391A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1UWwjcfwO_07BkcewEOh8T_QDIUroTjsoou3CU4UXUQ&oe=699E2450&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFef8PkA9tq8sPz1A3RJ8Dsgp9l6OyFJM6xTFaByKftiw&oe=699E4044&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVQw0ATcMkBVxruU2blIoaVt2k8brBWRPaXBuXQMIljA&oe=699E0E97&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wF94chKamvA40Oe3mDBOyDHA0p9b4g2uyp0jVd3QXvUww&oe=699E0F3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAI2XuNMfS6VzTbLVOcxdPqe1hhZ-QJb7v5eiPi2__tA&oe=699E3595&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-N7_XjhCUzt3NQa3mCKX9eePRnH5xYOdSJ30n_jB1EQ&oe=699E428E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzZ28mdXQf_2hB41D5fJGhPNlcITWjx39Sx6h89lzUw&oe=699E1FB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVT-1wQyZ48OEMhXGJHM5pupM6P4xuDhbuUEQ-D4TLAQ&oe=699E2D44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEW0cFUNYk1VhLgUyUYQTGMaNVG01tzEK_TLzeQVMhLXg&oe=699E38FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdAs4H2bzeozzUaDr8j1sPX2DZPYvBwJ-rXH0b3khp3g&oe=699E3D25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHge5pQxO9eB60uD16hNdHS4HLIuSymC1e0yjJVuZmUw&oe=699E1C7F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoXh5fAA-a4RcklAztjoku-Bpf6rcAcTGUq7UYiaDtcg&oe=699E39C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTEorPjWIhQdwT8FIrpiTq8h5SANJWcLfU_kpnb3cAKg&oe=699E2861&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3FDEFq3brlRmirM1fIhwlkRGbyFO37UrtUKPEFDY_nw&oe=699E2387&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRh8S_WHBw_OCP4Ka4ONbQbGX-B-jhbro4AmzNtwWeg&oe=699E10E7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwmxSlhl32YnGuuTXoh3c-4oMW0Aw6JLuqJw2dVq8upQ&oe=699E3440&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy43eLTNI-P8o3PgGnQ7Op1j7BdnvOZKY8_PZRX4tm_A&oe=699E139D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJSAT9uy4uVzcaCkdnqgQpUuBNDAW28f5PQWM0y_F3Sg&oe=699E1B87&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1ojC4lmSrAmS8nksNfBoXk_JdaxiKpRrGaQyRnwzyOg&oe=699E1723&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_LlSgqL8rDhVSspt_WQIU3z4-ImiCR__XjMbUH5ya8Q&oe=699E2788&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFW-a-aKrbD5pZq3R6eSEgPwyN9Ab7zamQC8UABknrY3w&oe=699E28CA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5Bn3sb40ed7xpSKlazsKP8Sq_KMtSKMPfOXt7ZveLuw&oe=699E23D1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx6wPx2oU23U7JZkNPc2BXKl2jvWSrnP7_RnqmuWImlA&oe=699E359C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6PN66IgTU_AQOkzmYbxsXkEueJ-KRTVUbWSg_Zu6jYQ&oe=699E1776&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGto4EthLurZg6GUgBqjPFV2CrhZzrCuzU3Biz-YOa7bA&oe=699E33D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ737ak_4tq7fITFXONtWB46sJYAPMPrBknr39Kak-9Q&oe=699E1E97&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wGBFN7ybwcAsBbHOOLHXukmfOKqNVyRFD_zyXAGTcryDw&oe=699E0DFE&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wECt3qKS3mIbnWLmKFwD0yOJPewqPzPxzazKAI2t7iOJg&oe=699E15EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnrm_zyh0uCBCiMg_ZLyHxhC78mh55i9cDEWFZthYP7Q&oe=699E315A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS7M_BnVwjUyVwXwlCkuzZht9vK7ihHs1SaATUWrecTw&oe=699E2E36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWBeyWm7dM8wwzPvvJRBx5B1COiDWYIt1riVAO5VCxUg&oe=699E365B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlh1EVdfV9i7RWIDajQYNEhT61VT0XQsO_7UIvWOAG7g&oe=699E1AC7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGalv5660_yRBy2tAA_lx33aCoEyZhNjuUnGw0MbO_2yA&oe=699E300E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ_XeiWtLDqG0toFtoQowSpcuxIO6Gwa0TkTt40tbbzw&oe=699E34B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ6VcSmVVZSvAtEriEkaXYtRp6-qAGM3AOFJpdCuxAZA&oe=699E17A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBJDKVFpFydFpxPVaDacvVVKrOqkBNiFIZ9YfXKHvfZA&oe=699E450B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJzt7hT53q3OTU-CJG8kobsp6clRyS85d1_yjYb4cfkQ&oe=699E1B60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE3BJxkdiUpmobkCloRNhkpMa696zoKnB5be2bha3WWQ&oe=699E2812&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDw67rE_flOzCLKiDBTxQQIY7tYHYz4QZilHAGtIpemw&oe=699E2825&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdRkMIGHOtrDeV5yDT4x7zRNqFg-1Gn58yu6whpt1b_A&oe=699E3705&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyNQSCmv8Fgt8mUHKyVDzm6V6m7gV-cGXDUTrNa5hI5g&oe=699E23E3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"pro', 1, '2026-02-14 21:57:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20136, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"217226695151773@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:58:49.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:58:50'),
(20137, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"217226695151773@lid\",\"fromMe\":true,\"id\":\"A57F259A4141A8AC46AE6D77A27942C1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637410425_1405455301048777_397336955698182730_n.enc?ccb=11-4&oh=01_Q5Aa3wEmBmzDyC5zcBegOsJjSaoF5-BAuGEGQbIn6qRuqkn6ag&oe=69B88BC0&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"a68B3p+I1\\/F80SUNHIpFv9JCs46dISSXfHoF76JdVmg=\",\"fileEncSha256\":\"frJJVPYbOqgkeuIurjVsuB\\/fgEcp9+VV+Vauj57skeo=\",\"mediaKey\":\"Q+F8kq3lSTYFwg9\\/AdehmhjoMLV7+HIfFK84nNpu61E=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/637410425_1405455301048777_397336955698182730_n.enc?ccb=11-4&oh=01_Q5Aa3wEmBmzDyC5zcBegOsJjSaoF5-BAuGEGQbIn6qRuqkn6ag&oe=69B88BC0&_nc_sid=5e03e0\",\"fileLength\":\"46732\",\"mediaKeyTimestamp\":\"1771117128\",\"isAnimated\":false,\"stickerSentTs\":\"1771117128710\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771117129,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:58:49.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:58:50'),
(20138, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"217226695151773@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393886_1349289896516174_9007179744990950874_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4xcvjKdKCIzpm5IHDHDJVovwi1lakpJ3zv-vFIQ-PUg&oe=699E24B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:58:49.952Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 21:58:50'),
(20139, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A57F259A4141A8AC46AE6D77A27942C1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771117130787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T21:58:50.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 21:58:50');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20140, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wEECfnajiYPa6qeqpfYGaOaTWuO99UVZza59wGW2sRXGA&oe=699E235B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFEqmsU51EEHPs29OLcqzkg-bIlswnpWShm5irs31RSw&oe=699E4366&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxf6QG-iF6gecYBiDN7AwsFeXe4vgatIcHuCkDLMcRCw&oe=699E3D99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wFIfd_gQC5Q9OR2SP-jJPig6Uq5nK11AJQXwnPAhbgRTw&oe=699E0FB7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3KUdGyyj3-t8eJEpxdnlsYnOaO0CtvbjB3h__7eKxQw&oe=699E43BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGPcNDM-1Gd6-eAUT33Ia772Pai-cHfIQYGuhFxHLkNxQ&oe=699E2C80&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7y5BecbuFR6SDHrEHLW8MDWAD089eIpKvKrcdHUww4w&oe=699E4603&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wFrCP8Rcsck2KIQn1GFAHzTRwI8kIrUu08AS9Xgi2aIsQ&oe=699E2CDC&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425658_1321482943364483_7970227004254490360_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcuG5YKN246JZeZX8MRxdoyvnZJ6_DOP-zf3K4wUIaRQ&oe=699E1B15&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzwFe7JU8u9veYr8PZYtNTiqblmHVJqUmOvpkE8uosMQ&oe=699E2B15&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmR0_mbUXCWFjJduqV077XwzzX2_uzgD7fao3d6KbIgw&oe=699E3896&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ_c3i7TXoeBQ5DizaNW5sa1FbnobELs-Tj27lBRzzsw&oe=699E334B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmbRqKo9gZTfR9Amn-h6DJz6j_SbbQmULEkqUGP5A0sQ&oe=699E3646&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMFF5G15yVS_YyKfHGHVzQWoQMdeF6BmgJy0d9QYFwVw&oe=699E33E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB0AdORe78Eu6ntvNnC_zWwBtW_T-tbmgR0cM_L6kjIw&oe=699E384C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEc88HTYXWQD1WLpr-wr8c8YwCIsuVC0HBcuQpW6yKuqw&oe=699E30FB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVwSU_htzo4_rPa8Hww_bOJaOuLSj_bOqfNV2eLjyQCg&oe=699E329C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wET5-ijWeXxvXErMsE_ojsWXkEKXOl8JqWV-OvyOwAKvg&oe=699E1DB8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1eeLxBmxFWcLixDtJyeTXqxvoS8DvwhovB-zXNnh13w&oe=699E3209&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wEVHaj3QiyWyqEnhwQfxf95KeKZd0VFl6_w5ZBGfiqbHA&oe=699E184F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-OCVqJOggqfHxApTEyhzSE6synUuQOSEzlO1T6weXgA&oe=699E3218&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEjh2-xXYuBQ_gnPGRp7HWY5w92FERffo_8TpZFObhchw&oe=699E2696&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX-ocgmVHxFdN7qt5qqRfC9GsyIse9xGqo-9tQHpzGMg&oe=699E455A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wFO2T1Vqr7bP1DfGpPfgzdkT6vF2sQZXnHO4i1RuRB8ng&oe=699E10B6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEnwry8da_KqdMdXIsWXk5r9UZv5HbOnsejO0Ee7HSKSQ&oe=699E21EF&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOgR4jCDKEoMERHbcQbtuBLrFBKRBVuLOqWI1yGs4w_A&oe=699E286B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wGf7XhGObeNEhRYNEH20CauFWdHFhj8dQRoGfqEOYCv8Q&oe=699E1F4D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYR3rC2zy3ujKkKTrLGnG8tM2foqQT0f4QX-Wht2EHPg&oe=699E247B&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNWz5UI2K368qjw9neTbuJYlqBqLegAasIjYO7GqvPRw&oe=699E3DC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wE27_8juNzFwsrDOW5ygNyEuzHFUz2Sb30VNLFV_pQeIQ&oe=699E2315&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQAAnpspkqWbi_Ax96XFPoyCe7A2KG4SJMFTLbNfK6Wg&oe=699E2ACC&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXY4PpbIeRZEM7me_CRZiJk-ULGCTG1TikllN4Y5t_zg&oe=699E425A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0502mQNhGWXTDbkaZ3nmqby-nYhnJN5O93mCSw2pZ8A&oe=699E342F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wElleab45lRYeKDXBDtaPF3e1kOzyEOgf_6eAG78ezx3w&oe=699E3865&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFuBdYUPFLENHZHKoETtueL_Bflxe_GF2T_XHcj2KkPvw&oe=699E1890&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPSINBUg_y7MIJO6ByqCSK_hs6_Wp6sXyWGmMImGdR6w&oe=699E26AA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMY50wRYQuKqYi3Oe9g0PvpSJRAqK6SG5ADP8WJMEtRA&oe=699E20FB&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbnrJVgt11_QoUD_MnVK8N3lVgEa21KEsh-VL9DX2QQA&oe=699E2A69&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUubZ_Pk_hOXkQtS8kzG7vMA44CyM7whIivb_bhB07Og&oe=699E2DEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD2Oj13KEl3PUpeOx-Trq2yhtcEssfFrOpzLx4my6yjw&oe=699E3724&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wFbGUZfAHx6ebXH98xny5MmGOln6M8LYABv11p3flcJwg&oe=699E1CC5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wEg2ZusjacvhwL3nVU7KiNUXEiqqMemC2NmSvR4_ck7RA&oe=699E2470&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2nZsj34BO1igO_yEXGxmKZsAIQOP46yDGphSwSvkCqg&oe=699E4312&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wG86yI7NCCJKEZZ5DBz5YSbLMwp4ZU76rAfgRUALpQTSA&oe=699E2095&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI521z8AxSeQnZtVlqqRDl4OJNegzZRZ7d84cSzVu-HQ&oe=699E3C91&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUIsy3qOdDpjDgBuZzChiDQJd1aL3XK6es1qd1ej1KpA&oe=699E42B9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wG4cUlEbXzeC1Y0O60G0kvhEsrMbt_D2HyaZ3qLyGOeoA&oe=699E1E37&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJMVkLymUusMyjS8NZMZIZ4JwZb6MSJDSTDgDA7tK4og&oe=699E2D6A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wHbywVdq2FJleLrR9L1ZzxbfzioyGD3Zedi8nH5iuQ01g&oe=699E26A5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wH4zhTp8rABm4v0lJY7lZQo7xqzWbCJO0AZB3KaijXPQw&oe=699E2C0A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wHr-brqcMQfejY4U6cbj8ERMTOUpETdzqkXZ_9SDRf-jg&oe=699E2C7A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wE4e8C2EOuH6sLWr53o_agNzL-cH2lsJagoxGMOhLPOPQ&oe=699E152E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBP7iKH7BycRed1dYCF3Z0nzhcVegNcCbDZni7cIuTkQ&oe=699E142B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wGYUs1OVuCjawCnNribFHOdgsOLZVFpTuJl0SHiFmr2_A&oe=699E2595&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wH_Xr2Yt0dYjJFkbNZnZgT8Q9g8Chp9t7vZCY3YSOkbTQ&oe=699E1AEE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAxYappR8xuR-ffoOqQUEDs4KxuIIkBt6kFS_GoHwrGQ&oe=699E45D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wG3wHljDYuM_PMZOJDAGmhYPc7xx1wYS7V9A5f91lFqiA&oe=699E2293&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7Z8LSj_LF0TJLOaN553W6omF7DUrIrfozCfh0GBXeDA&oe=699E44F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdifmNRachqv8AW8kgCTnbbad0ysCKc3_9EK4cr1p7Ww&oe=699E3786&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbbiop_tGO4QtESkJJqbZsFUs8fFynkRdIY_yy-WgUAQ&oe=699E4521&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhNn68gFm0xfY0WaLH5OxkhhvroLtbU0ktVNcmsqIcJw&oe=699E24B8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHGEKC_5G-clyHJG5CpuKlQiJrZ1DSuZ-utMZ0PiA5Kg&oe=699E41B8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDPYEEW3hP5ZnjYk2hKyQmImcd_B_dN2F14jS3YqGeRg&oe=699E1840&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp2gbkf5xLIKmoOOrvq2iHFDjEPD0sCFdlrt3ZV5YS_g&oe=699E3D4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUwgrkrpMZICFZ-BbdkV7w76_LD96-zJHyDYL87XOiSA&oe=699E307E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHugtgaseOHB9y9jT9ptAbgsQxp9iq1DZZMK18GazwosA&oe=699E3402&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wHLki53ZkRUHdkIxWPJ62uZxrH4DtNPiJsIyGqBOh7SjQ&oe=699E214E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wG0abnkfv9yH3-eFzPmqLByeEqeZ5-LywcjAGW_jiPhKA&oe=699E2834&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU0CNnwt71Q7aT-Ps2X0Ln8G0IkmWcaVZ4bJkOfoN7hg&oe=699E4612&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0Gb1fd5kGUKgYVmZPOZiF6Y3skpQqSakvqD28NeHsNA&oe=699E3950&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wHu1N5uh5hIi81sVP6uBwQYR8ZZwk1caqXDxg02-wZegA&oe=699E2D3C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJQhF4nIpKTAsOHa_LizD4QfvZauBZHXjBpNofzost9g&oe=699E3072&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wHF1z5OObq9J6QWLeO1lHAOSaiu7d-bHRi01VW5K8OG8A&oe=699E2AEF&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wGquG5hy5dzP6Sgd_e_jkrZQ2ZlaY_F6CDX3-TtGsbwxg&oe=699E1F7C&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAiC3pPCeh4n-XipFUD3scvTGLPxI7z3X3pRm1HFBBlg&oe=699E351F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wED0lMCrL9u31rjQDQ1nfbpqnZ-UJbAN9DeFZGgio2kSQ&oe=699E391A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1UWwjcfwO_07BkcewEOh8T_QDIUroTjsoou3CU4UXUQ&oe=699E2450&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFef8PkA9tq8sPz1A3RJ8Dsgp9l6OyFJM6xTFaByKftiw&oe=699E4044&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8XLpwY1S2gPn11zh1xQqoyge2LSkkyiThFk11j02fpw&oe=699E46D7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wF94chKamvA40Oe3mDBOyDHA0p9b4g2uyp0jVd3QXvUww&oe=699E0F3A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAI2XuNMfS6VzTbLVOcxdPqe1hhZ-QJb7v5eiPi2__tA&oe=699E3595&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-N7_XjhCUzt3NQa3mCKX9eePRnH5xYOdSJ30n_jB1EQ&oe=699E428E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhzZ28mdXQf_2hB41D5fJGhPNlcITWjx39Sx6h89lzUw&oe=699E1FB5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVT-1wQyZ48OEMhXGJHM5pupM6P4xuDhbuUEQ-D4TLAQ&oe=699E2D44&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEW0cFUNYk1VhLgUyUYQTGMaNVG01tzEK_TLzeQVMhLXg&oe=699E38FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdAs4H2bzeozzUaDr8j1sPX2DZPYvBwJ-rXH0b3khp3g&oe=699E3D25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHge5pQxO9eB60uD16hNdHS4HLIuSymC1e0yjJVuZmUw&oe=699E1C7F&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoXh5fAA-a4RcklAztjoku-Bpf6rcAcTGUq7UYiaDtcg&oe=699E39C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wHTEorPjWIhQdwT8FIrpiTq8h5SANJWcLfU_kpnb3cAKg&oe=699E2861&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3FDEFq3brlRmirM1fIhwlkRGbyFO37UrtUKPEFDY_nw&oe=699E2387&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbRh8S_WHBw_OCP4Ka4ONbQbGX-B-jhbro4AmzNtwWeg&oe=699E10E7&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwmxSlhl32YnGuuTXoh3c-4oMW0Aw6JLuqJw2dVq8upQ&oe=699E3440&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGy43eLTNI-P8o3PgGnQ7Op1j7BdnvOZKY8_PZRX4tm_A&oe=699E139D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJSAT9uy4uVzcaCkdnqgQpUuBNDAW28f5PQWM0y_F3Sg&oe=699E1B87&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1ojC4lmSrAmS8nksNfBoXk_JdaxiKpRrGaQyRnwzyOg&oe=699E1723&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wE_LlSgqL8rDhVSspt_WQIU3z4-ImiCR__XjMbUH5ya8Q&oe=699E2788&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wFW-a-aKrbD5pZq3R6eSEgPwyN9Ab7zamQC8UABknrY3w&oe=699E28CA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wE5Bn3sb40ed7xpSKlazsKP8Sq_KMtSKMPfOXt7ZveLuw&oe=699E23D1&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx6wPx2oU23U7JZkNPc2BXKl2jvWSrnP7_RnqmuWImlA&oe=699E359C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wF6PN66IgTU_AQOkzmYbxsXkEueJ-KRTVUbWSg_Zu6jYQ&oe=699E1776&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGto4EthLurZg6GUgBqjPFV2CrhZzrCuzU3Biz-YOa7bA&oe=699E33D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZ737ak_4tq7fITFXONtWB46sJYAPMPrBknr39Kak-9Q&oe=699E1E97&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUxV01--9ybei1i8cbqxijFzDYaIKjd_hbZMUcjoUQWA&oe=699E463E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wECt3qKS3mIbnWLmKFwD0yOJPewqPzPxzazKAI2t7iOJg&oe=699E15EE&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnrm_zyh0uCBCiMg_ZLyHxhC78mh55i9cDEWFZthYP7Q&oe=699E315A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS7M_BnVwjUyVwXwlCkuzZht9vK7ihHs1SaATUWrecTw&oe=699E2E36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWBeyWm7dM8wwzPvvJRBx5B1COiDWYIt1riVAO5VCxUg&oe=699E365B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHlh1EVdfV9i7RWIDajQYNEhT61VT0XQsO_7UIvWOAG7g&oe=699E1AC7&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGalv5660_yRBy2tAA_lx33aCoEyZhNjuUnGw0MbO_2yA&oe=699E300E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ_XeiWtLDqG0toFtoQowSpcuxIO6Gwa0TkTt40tbbzw&oe=699E34B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ6VcSmVVZSvAtEriEkaXYtRp6-qAGM3AOFJpdCuxAZA&oe=699E17A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBJDKVFpFydFpxPVaDacvVVKrOqkBNiFIZ9YfXKHvfZA&oe=699E450B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJzt7hT53q3OTU-CJG8kobsp6clRyS85d1_yjYb4cfkQ&oe=699E1B60&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wGE3BJxkdiUpmobkCloRNhkpMa696zoKnB5be2bha3WWQ&oe=699E2812&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wGDw67rE_flOzCLKiDBTxQQIY7tYHYz4QZilHAGtIpemw&oe=699E2825&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdRkMIGHOtrDeV5yDT4x7zRNqFg-1Gn58yu6whpt1b_A&oe=699E3705&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyNQSCmv8Fgt8mUHKyVDzm6V6m7gV-cGXDUTrNa5hI5g&oe=699E23E3&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wESW8Gm6luhGIXh8mISmG5P4TUg7DPPicAdurqvVnO99w&oe=699E3773&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 I', 1, '2026-02-14 22:02:19');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20141, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773@lid\",\"id\":\"A57F259A4141A8AC46AE6D77A27942C1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771117771174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:09:31.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:09:31'),
(20142, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:23.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:23'),
(20143, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:23.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:23'),
(20144, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:25.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:25'),
(20145, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5B51ED9ABC39F418E4B93E44F6EC57F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos ativar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771118304,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:25.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:25'),
(20146, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:25.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:25'),
(20147, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5B51ED9ABC39F418E4B93E44F6EC57F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771118305242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:25.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:25'),
(20148, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A51ACBBB4E385D4DDC486BFA1D26458A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771118303,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:23.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:33'),
(20150, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5B51ED9ABC39F418E4B93E44F6EC57F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771118317247,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:37.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:37'),
(20151, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A51ACBBB4E385D4DDC486BFA1D26458A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771118317250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:37.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:37'),
(20152, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:38.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:38'),
(20153, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"ACC1E9AE33CD48E1C0701CC1E3289518\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Positivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jtNYPZQ1d29q+OaiAdpgfno1rMw+ovBWWIsvgQ9erKc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771118320,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:40.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:40'),
(20154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:40.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:40'),
(20155, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:40.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:41'),
(20156, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:40.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:41'),
(20157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:40.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:41'),
(20158, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:45.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:45'),
(20159, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC43185FBEAA09CEC532AC4FBAB1BF65\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Só um instante\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BnPkHC5QZW30xshlwwGibuefE2y\\/7tMSCrFwgxgiNck=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771118325,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:45.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:45'),
(20160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:45.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:46'),
(20161, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:45.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:46'),
(20162, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:45.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:46'),
(20163, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC460D9CCE1FF1E71E256725A212C1E1\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Estou indo pra casa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RW8tWUOml0CTwgKBSdVI+AvYoaGPG+4tWpScwOMPPPU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771118330,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:50.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:18:51'),
(20164, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:50.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:51'),
(20165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:51.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:51'),
(20166, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:18:51.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:18:51'),
(20167, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5DC3DF286B68E595C088A44A46EFA0D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771118360017,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:19:20.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:19:20'),
(20168, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:19:35.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:19:35'),
(20169, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5E1B0193C422DB807209A59A8D510AE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":127613},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":127613},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771118375,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:19:35.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:19:36'),
(20170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:19:35.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:19:36'),
(20171, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07A7A85E2D7C3E93FF5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771118376,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:19:36.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:19:36'),
(20172, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:22:16.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:22:17'),
(20173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wFOt4j7zlfm45S_fvET-idaoeX0zawSdvx0vW3fpHnnPA&oe=699E2154&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:22:16.868Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 22:22:17'),
(20174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5367B44799BEC16922B8E3A5B1C5F3A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQPY7c1B5dqE69_35y1vZ9bk56-jl7b-ic-QIvBqAI88ojFo1ei1MRk7rbjKp8jZFUC6JWAJF9YIK7sAJ3i6B16XKrvLOFmqJdm56jEOvA?ccb=9-4&oh=01_Q5Aa3wGF3VYDhQKdtsIJ5K5vYRhyDx_79N5GDiAslWPmusr78Q&oe=69B89E2C&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8tqQJbOMMjVGxCWq4vyXF5YsS8NX8oluNwXB\\/9ICp0c=\",\"fileLength\":\"125200\",\"height\":1600,\"width\":738,\"mediaKey\":\"mXUMo8rEFhM6JWEtd7WugH0c41bV7HsTbW42+szFPYY=\",\"fileEncSha256\":\"y2Y0z+3TeBqrI04KryZJrTaKM17Ug7dozG1hyMeLi7o=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQPY7c1B5dqE69_35y1vZ9bk56-jl7b-ic-QIvBqAI88ojFo1ei1MRk7rbjKp8jZFUC6JWAJF9YIK7sAJ3i6B16XKrvLOFmqJdm56jEOvA?ccb=9-4&oh=01_Q5Aa3wGF3VYDhQKdtsIJ5K5vYRhyDx_79N5GDiAslWPmusr78Q&oe=69B89E2C&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771118533\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAABQIDBgEEAQEBAQEAAAAAAAAAAAAAAAAAAQMC\\/9oADAMBAAIQAxAAAABTzZw04x8doqGhCjLT2qGqOR7VfVZ1K8QGjpuKoT6CMqSQUAH\\/xAAsEAABBAECAwUJAAAAAAAAAAABAAIDEQQSIRUzkRMUIjJTEDFBQlFhYnGC\\/9oACAEBAAE\\/ABG8AGj0To3k+U9FolqtB6LRIPkPRENB5YW18pHs2iy0LKz3QPIGNbVLJoYXVdFdvBsbVxyttT5dZTYTGKcp26o3t+JKZhhgGl4UUYY13islZLR3yM\\/kpAKP6T2+FlIef+VOwd7Yfo5OF7fZOGzFbAVklxz2ADYOR9ye22tTW1QpZOUMeSUaTrV71RRF+wxRu3LRa4xvylxgeiuMN9FcYHor\\/8QAGhEAAgIDAAAAAAAAAAAAAAAAAREAExAgYf\\/aAAgBAgEBPwCzktDULiGhDz\\/\\/xAAZEQADAAMAAAAAAAAAAAAAAAAAARICMEH\\/2gAIAQMBAT8AkgSx7o\\/\\/2Q==\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":127771},\"scansSidecar\":\"tVoy41aSvt9ej1RQTG6roQZdQ6vXuEFS6CpO+Sv4zgufl9+75GQbdw==\",\"scanLengths\":[11484,63672,22489,27555],\"midQualityFileSha256\":\"NO2DJK5ZdD+pdsyVWJuK8jW3+anxjCMcS4p8FZ5V7tE=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":127771},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771118536,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T22:22:16.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 22:22:17'),
(20175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:14:43.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:14:44'),
(20176, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC9EA6DCBF5775E80E096534FBDC452B\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/635043762_1409111283597867_5541868780216038342_n.enc?ccb=11-4&oh=01_Q5Aa3wFbZZydk-IWIbGvaPtYwxgm21sZvcOMoA5tS-48_Q1dZA&oe=69B8A767&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"BssH7oYog+hYQI0ri49lPTwd4fh+Boq+9R8ryr5iniM=\",\"fileLength\":\"6038\",\"pageCount\":2,\"mediaKey\":\"hexVtVlNWV2EXPiHCt+oMdpp66hVec6SKFHo0inbyA8=\",\"fileName\":\"1771121668123.pdf\",\"fileEncSha256\":\"VrA0WWliojTaxByXWrraViq\\/9nPrZtEUxGcS66d9NQ8=\",\"directPath\":\"\\/v\\/t62.7119-24\\/635043762_1409111283597867_5541868780216038342_n.enc?ccb=11-4&oh=01_Q5Aa3wFbZZydk-IWIbGvaPtYwxgm21sZvcOMoA5tS-48_Q1dZA&oe=69B8A767&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771121681\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/636987583_1542869353495156_4400346313501383325_n.enc?ccb=11-4&oh=01_Q5Aa3wH9Ld-99PwU_-dDMyxa682i3vErrp3bm40YcTER7QmZew&oe=69B89E48&_nc_sid=5e03e0\",\"thumbnailSha256\":\"5EECm8+HGLAMbqQ0D4ysNRvf0P9bTAIGJDTFiMRdUwA=\",\"thumbnailEncSha256\":\"9IPb6RhKmtNEK3aio4gPdQlj9Dx6JOwUO26Hex78H9A=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAAiGkFAAjidwAADJoAADl1GbQAB\\/\\/EAC4QAAIBAgQDBwMFAAAAAAAAAAECEQADEiAhMQQTkRAiQWFxgYIkQ6EyM1FTVP\\/aAAgBAQABPwDse9btsoYxMxScVYJVQ+p8s11DilbznyEUFcfcufikGEauT65PjXxr418a9uy6O7+orrVm6lqcVwtNBlbY5XXEIgH1rlHwt2ulKqrsoHoMt6MGrEeYobD6r20rlvH77dBQtOGBN5iP40yXZw6JiM7UTIDHh5PoKBkDSMt0Su5GvhQBXa9d6UqkbsTlcsBIWda5r\\/0PSkkaqRlvFQneMCatOhMtxOg8CQK5to\\/cTqKBB2M5Ls4dExa7UC897hOiipH+P8CkuEQOQyj2yEA1y18+pyR2f\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAhQFH\\/2gAIAQMBAT8AFk\\/\\/2Q==\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gMhxRiawGQpcnkNZPI53PariH+2zU\\/xxZ\\/SO2MAb8lQ=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771121683,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:14:43.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 23:14:44'),
(20177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:14:43.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:14:44'),
(20178, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:14:44.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:14:45'),
(20179, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:14:46.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:14:46'),
(20180, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"presences\":{\"30176524111924@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:20:06.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:20:07'),
(20181, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":false,\"id\":\"AC82AD41C4D45B2FB119FCD73ADF95ED\"},\"pushName\":\"Mickael LimaZk\",\"message\":{\"conversation\":\"Te mando todo dia 15 positivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6tWwy00MoIr5mxT+ZBNoukCK\\/DL6BEz7sINwOMA8vnQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771122016,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:20:16.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 23:20:17'),
(20182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:20:16.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:20:17'),
(20183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473407625_1381626582836301_5166579324200800276_n.jpg?ccb=11-4&oh=01_Q5Aa3wEul26m4n4tlQctSNYFl5zm7g84p7bn-1GAt8-XF57TeA&oe=699E4A52&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:20:16.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:20:17'),
(20184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473407625_1381626582836301_5166579324200800276_n.jpg?ccb=11-4&oh=01_Q5Aa3wEul26m4n4tlQctSNYFl5zm7g84p7bn-1GAt8-XF57TeA&oe=699E4A52&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:20:16.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:20:17'),
(20185, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:39:01.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:39:02'),
(20186, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"30176524111924@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:58:17.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:58:17'),
(20187, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"30176524111924@lid\",\"fromMe\":true,\"id\":\"A5A147F0EA7E470E577D30B4614934AE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637127508_1539770383774732_5512452103177915241_n.enc?ccb=11-4&oh=01_Q5Aa3wFzj5nZC0EHYSqan6NzJIsyAClnYK6_LxAm1-zHfNUgbw&oe=69B8A55A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"N8+5XEl0ozP+fGS3xStUHwoDAZV4ANmCPUi5ZM9rmuE=\",\"fileEncSha256\":\"1hYIVWeXTnhr9W2+uk4lwi4YcLWccMXyuwJI640TxNs=\",\"mediaKey\":\"lD04DfpHJfJ1LyOCP5+J8Xw6odkqfViTCkxBxaHWKkg=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/637127508_1539770383774732_5512452103177915241_n.enc?ccb=11-4&oh=01_Q5Aa3wFzj5nZC0EHYSqan6NzJIsyAClnYK6_LxAm1-zHfNUgbw&oe=69B8A55A&_nc_sid=5e03e0\",\"fileLength\":\"5856\",\"mediaKeyTimestamp\":\"1702488922532\",\"isAnimated\":false,\"stickerSentTs\":\"1771124296239\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771124297,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:58:17.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 23:58:17'),
(20188, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"30176524111924@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473407625_1381626582836301_5166579324200800276_n.jpg?ccb=11-4&oh=01_Q5Aa3wEul26m4n4tlQctSNYFl5zm7g84p7bn-1GAt8-XF57TeA&oe=699E4A52&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:58:17.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-14 23:58:18'),
(20189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5A147F0EA7E470E577D30B4614934AE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771124298020,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:58:18.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 23:58:18'),
(20190, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"30176524111924@lid\",\"id\":\"A5A147F0EA7E470E577D30B4614934AE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771124306887,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-14T23:58:26.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-14 23:58:27'),
(20191, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T00:08:11.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 00:08:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20192, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554796825524@s.whatsapp.net\",\"pushName\":\"Pedro Papelaria Gerente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971025559@s.whatsapp.net\",\"pushName\":\"Guto Iptv P\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791798698@s.whatsapp.net\",\"pushName\":\"Alessandro8698\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788657428@s.whatsapp.net\",\"pushName\":\"Arlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997665729@s.whatsapp.net\",\"pushName\":\"Bia5729\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581180111@s.whatsapp.net\",\"pushName\":\"Dona Suzete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796619007@s.whatsapp.net\",\"pushName\":\"Evaldo9007 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555196760683@s.whatsapp.net\",\"pushName\":\"Coelho0683\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992864532@s.whatsapp.net\",\"pushName\":\"Michael Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971432121@s.whatsapp.net\",\"pushName\":\"Saborellla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/241269446_399757014895142_2006066649116266905_n.jpg?ccb=11-4&oh=01_Q5Aa3wGlGNfIl1-2a5XVpm1ZIvw_6mVrQ-8WAoJ4QvgsbThtUA&oe=699E5B9B&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971592784@s.whatsapp.net\",\"pushName\":\"Adilson2784\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981882839@s.whatsapp.net\",\"pushName\":\"Jorge2839\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512996528393@s.whatsapp.net\",\"pushName\":\"Hamilton8393 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/537559293_3934018980235747_2548553071874063994_n.jpg?ccb=11-4&oh=01_Q5Aa3wHFEqmsU51EEHPs29OLcqzkg-bIlswnpWShm5irs31RSw&oe=699E4366&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592570963@s.whatsapp.net\",\"pushName\":\"Leno Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511974231762@s.whatsapp.net\",\"pushName\":\"michele1762\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999010171@s.whatsapp.net\",\"pushName\":\"Everton $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534426233_1881857112440481_4686676062441795407_n.jpg?ccb=11-4&oh=01_Q5Aa3wFxf6QG-iF6gecYBiDN7AwsFeXe4vgatIcHuCkDLMcRCw&oe=699E3D99&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788559375@s.whatsapp.net\",\"pushName\":\"Adriana Floricultura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521973153031@s.whatsapp.net\",\"pushName\":\"Cacau3031 $40 Voidplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/604458848_884612827636061_5182530645742641370_n.jpg?ccb=11-4&oh=01_Q5Aa3wHVsNNzbMxY4dYe2sr59GsaStplOaneCqXL4P4C6vXbNA&oe=699E47F7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997905387@s.whatsapp.net\",\"pushName\":\"Gedson99790 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534428695_904280585546254_9189445249326212886_n.jpg?ccb=11-4&oh=01_Q5Aa3wF3KUdGyyj3-t8eJEpxdnlsYnOaO0CtvbjB3h__7eKxQw&oe=699E43BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581249275@s.whatsapp.net\",\"pushName\":\"Grazy Massafera\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530292821@s.whatsapp.net\",\"pushName\":\"Ortho.b Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/290155131_1169640983823032_8253625349227114053_n.jpg?ccb=11-4&oh=01_Q5Aa3wGF4Z5J_3yBOXLt7_dkqtOlvvfx_ClT7Y6zTPCxsuZGpg&oe=699E64C0&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792100032@s.whatsapp.net\",\"pushName\":\"Exame Sangue C.Chagas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996605726@s.whatsapp.net\",\"pushName\":\"Aldo 5726 $40 Mytv Carroceria E Bau\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998599172@s.whatsapp.net\",\"pushName\":\"Charles9859 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997740951@s.whatsapp.net\",\"pushName\":\"Débora0951\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473401627_1125027385336510_3138755347069251333_n.jpg?ccb=11-4&oh=01_Q5Aa3wG7y5BecbuFR6SDHrEHLW8MDWAD089eIpKvKrcdHUww4w&oe=699E4603&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599000321@s.whatsapp.net\",\"pushName\":\"Original Festas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457819531_580186434345142_8032873753023723986_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2hH9zHHCTOSdk7oU40KtayA_GxhVHMMYgzRy8Fxe32Q&oe=699E651C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554998021695@s.whatsapp.net\",\"pushName\":\"Vô Cacemiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999948546@s.whatsapp.net\",\"pushName\":\"Tami8546 CLT Iptv Thamires\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556584152006@s.whatsapp.net\",\"pushName\":\"Geysa Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796847259@s.whatsapp.net\",\"pushName\":\"Júnior7259 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592670801@s.whatsapp.net\",\"pushName\":\"Patrícia Imóvel\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425658_1321482943364483_7970227004254490360_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLlPgx0pY1Ohy0AmDlRiawCdOn7jYNdxFNjhpM2_MmZQ&oe=699E5355&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554196067523@s.whatsapp.net\",\"pushName\":\"Ana Carolina7523\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799941093@s.whatsapp.net\",\"pushName\":\"Joao Carteiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999716799@s.whatsapp.net\",\"pushName\":\"Vitória\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/527347777_612962571614759_8652506420892339700_n.jpg?ccb=11-4&oh=01_Q5Aa3wFPpfEyIxspLE5p9b59-3QhmLUcTeIR_qK8Y_Y_j7HKuw&oe=699E6355&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519997553862@s.whatsapp.net\",\"pushName\":\"Luis Fernando Azarias\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556791042786@s.whatsapp.net\",\"pushName\":\"Mariano 2786 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/343625729_255265113646332_2031971862874078271_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmR0_mbUXCWFjJduqV077XwzzX2_uzgD7fao3d6KbIgw&oe=699E3896&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596020255@s.whatsapp.net\",\"pushName\":\"Prof Tânia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598175004@s.whatsapp.net\",\"pushName\":\"Thailon Wr\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558185689_1707804946574898_3497526071274240953_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZ_c3i7TXoeBQ5DizaNW5sa1FbnobELs-Tj27lBRzzsw&oe=699E334B&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596104143@s.whatsapp.net\",\"pushName\":\"Celso Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996004614@s.whatsapp.net\",\"pushName\":\"Silmara4614\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593339058@s.whatsapp.net\",\"pushName\":\"Elias Porcelanato Cordeiro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797049173@s.whatsapp.net\",\"pushName\":\"Eduarda Mulher Ezequiel4457 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625689584_1377633540850317_9057226858253425504_n.jpg?ccb=11-4&oh=01_Q5Aa3wGmbRqKo9gZTfR9Amn-h6DJz6j_SbbQmULEkqUGP5A0sQ&oe=699E3646&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511946574120@s.whatsapp.net\",\"pushName\":\"Marli4120\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986113628@s.whatsapp.net\",\"pushName\":\"Vilma 3628 $35\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/608895656_2056466371777445_2831168574391660030_n.jpg?ccb=11-4&oh=01_Q5Aa3wHMFF5G15yVS_YyKfHGHVzQWoQMdeF6BmgJy0d9QYFwVw&oe=699E33E2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554896214447@s.whatsapp.net\",\"pushName\":\"Filipi4447 $100 Revenda Space\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/339596019_219484344067940_2130848659282468738_n.jpg?ccb=11-4&oh=01_Q5Aa3wHB0AdORe78Eu6ntvNnC_zWwBtW_T-tbmgR0cM_L6kjIw&oe=699E384C&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592656064@s.whatsapp.net\",\"pushName\":\"Fotos Xodo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/517368628_1379639593942922_5636333179302513966_n.jpg?ccb=11-4&oh=01_Q5Aa3wEc88HTYXWQD1WLpr-wr8c8YwCIsuVC0HBcuQpW6yKuqw&oe=699E30FB&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997939965@s.whatsapp.net\",\"pushName\":\"Reginaldo 9965 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605297141_1147283450683627_1723433461788072551_n.jpg?ccb=11-4&oh=01_Q5Aa3wGVwSU_htzo4_rPa8Hww_bOJaOuLSj_bOqfNV2eLjyQCg&oe=699E329C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792017307@s.whatsapp.net\",\"pushName\":\"vitoria7307\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511999657212@s.whatsapp.net\",\"pushName\":\"Lívia5969 Novo Cristina oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195831037@s.whatsapp.net\",\"pushName\":\"Cleverson1037 Siqueira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998482565@s.whatsapp.net\",\"pushName\":\"2565\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596362488@s.whatsapp.net\",\"pushName\":\"Alane Novo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984108265@s.whatsapp.net\",\"pushName\":\"Rodrigo 8265 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491837968_1405013737199138_6304358052782194633_n.jpg?ccb=11-4&oh=01_Q5Aa3wEq137N6B0sZuorrE2TP0gPkeSAFdHigjVtZ2qTqFQVKg&oe=699E55F8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797427692@s.whatsapp.net\",\"pushName\":\"Apto Fazenda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791897333@s.whatsapp.net\",\"pushName\":\"Magia Total\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/425151266_490051190219741_1110119492988106655_n.jpg?ccb=11-4&oh=01_Q5Aa3wE1eeLxBmxFWcLixDtJyeTXqxvoS8DvwhovB-zXNnh13w&oe=699E3209&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554197583089@s.whatsapp.net\",\"pushName\":\"Marcelo ORIGINALNET REVENDA\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541528428_735156109155650_4793292067157574517_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqTU00nO72nnLSc8sAQuRTOWb4PmeRm5iRVZNYcAbfQQ&oe=699E508F&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992929493@s.whatsapp.net\",\"pushName\":\"Juan9493 Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997613758@s.whatsapp.net\",\"pushName\":\"Victor Nery\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511996445544@s.whatsapp.net\",\"pushName\":\"Fernando Bomba Cs 1. 6\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554288124590@s.whatsapp.net\",\"pushName\":\"Manoel4590 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5524992331558@s.whatsapp.net\",\"pushName\":\"Mae Carlos29662 Clt Iptv Claro\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799945053@s.whatsapp.net\",\"pushName\":\"Cláudio Costa Cliente Lotofácil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/415117087_706434668259030_9191489469021899272_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-OCVqJOggqfHxApTEyhzSE6synUuQOSEzlO1T6weXgA&oe=699E3218&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519971391465@s.whatsapp.net\",\"pushName\":\"Monica1465 Cabrera Duarte\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581125958@s.whatsapp.net\",\"pushName\":\"Flávio Itaú\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797272152@s.whatsapp.net\",\"pushName\":\"Thiago Prats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697279@s.whatsapp.net\",\"pushName\":\"Capitinga7279 $25\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518781959_1806074900263451_8734963635685018831_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZMgdyBQNmkhFO4J-biLZeEW4YmlEjOmNhgMl05kp4Jg&oe=699E5ED6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599549679@s.whatsapp.net\",\"pushName\":\"Renan Maggi Móveis\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554199881645@s.whatsapp.net\",\"pushName\":\"Juliana Rh Leaftmarketing\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511969644733@s.whatsapp.net\",\"pushName\":\"Prii 4733 $40 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/624641600_854470370885881_6388866730081677001_n.jpg?ccb=11-4&oh=01_Q5Aa3wGX-ocgmVHxFdN7qt5qqRfC9GsyIse9xGqo-9tQHpzGMg&oe=699E455A&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784037136@s.whatsapp.net\",\"pushName\":\"Bruno7136 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611548257_1189474749984933_5469841357815068952_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyTTnxwkCIsPiaE3Q_aDtu8CwQ_inavVOXiQqUMK_EBw&oe=699E48F6&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996481278@s.whatsapp.net\",\"pushName\":\"Talita1278\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796085942@s.whatsapp.net\",\"pushName\":\"Marlete\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981833327@s.whatsapp.net\",\"pushName\":\"Fernando3327\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593070241_1358390712430709_7313033802084426859_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJVSJpzW0BXR07Y3u1JpXttVD1tqNIBqjOFDPGQOIoaw&oe=699E5A2F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999192836@s.whatsapp.net\",\"pushName\":\"Gabriel2836 $70 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/541047093_1185029066877543_2234656273797187541_n.jpg?ccb=11-4&oh=01_Q5Aa3wFhbE3fGunQ8pFfCpnI10GMl-EhyRBiJ8YmlNCwMo5SLA&oe=699E60AB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521996415280@s.whatsapp.net\",\"pushName\":\"Wania5280 $130,00 2 P2cine 1 Void 1 Orion E P2p\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/419045709_969206474791959_6117842784255164032_n.jpg?ccb=11-4&oh=01_Q5Aa3wFX5mJmOjvdYj8oQqtW_WJq3id61V9-VxRwIjkHAjXcxw&oe=699E578D&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784079786@s.whatsapp.net\",\"pushName\":\"ELIAS9786 Clt Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521983325383@s.whatsapp.net\",\"pushName\":\"Thiago5383 $100 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521970851531@s.whatsapp.net\",\"pushName\":\"Priscila7108\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796857932@s.whatsapp.net\",\"pushName\":\"Viviane Pedro4758 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/606436759_1942236586661950_6244699804522722890_n.jpg?ccb=11-4&oh=01_Q5Aa3wGph7c6xa1w9WChEubEkfePpxHCOnTiB7OmzFFAgyd-TQ&oe=699E5CBB&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511987957885@s.whatsapp.net\",\"pushName\":\"Gisele7885\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596503252@s.whatsapp.net\",\"pushName\":\"Refrigeração Oliveira\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997603460@s.whatsapp.net\",\"pushName\":\"Júnior3460 Martins 😎?😎\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581264597@s.whatsapp.net\",\"pushName\":\"Harllen Cliente Lotofácil 17\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/165986439_202648435072876_1425479364818229831_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNWz5UI2K368qjw9neTbuJYlqBqLegAasIjYO7GqvPRw&oe=699E3DC2&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996181257@s.whatsapp.net\",\"pushName\":\"Lucas1257\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998257615@s.whatsapp.net\",\"pushName\":\"Ricardo Gasparini\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996336737@s.whatsapp.net\",\"pushName\":\"Marcão6737 $25 Dia 1\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5547933833319@s.whatsapp.net\",\"pushName\":\"Maysa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593065687@s.whatsapp.net\",\"pushName\":\"Cintia Caldas\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796650266@s.whatsapp.net\",\"pushName\":\"Sara Ziliotto\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999372702@s.whatsapp.net\",\"pushName\":\"João2702 Vítor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517981912834@s.whatsapp.net\",\"pushName\":\"Hotel Água Viva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56153856_310337809655891_6887478352651747328_n.jpg?ccb=11-4&oh=01_Q5Aa3wFTKLTEWBpjAplazUjOGFr2DsMnP-osn0t9XySDGqgNDg&oe=699E5B55&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515981030744@s.whatsapp.net\",\"pushName\":\"0744\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"393514397887@s.whatsapp.net\",\"pushName\":\"Fagner 7887 $90 Izaplay Falcone Novo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/367490850_857183692439869_2535712398323296013_n.jpg?ccb=11-4&oh=01_Q5Aa3wFnkuUiU9lSqMqHvSSyQIKgfLzfzkWyzWJ6b_QJEEXOnw&oe=699E630C&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791293798@s.whatsapp.net\",\"pushName\":\"Tia Pati\\/Cadi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997896827@s.whatsapp.net\",\"pushName\":\"6827\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534419675_1354044235643604_99958574077783470_n.jpg?ccb=11-4&oh=01_Q5Aa3wFXY4PpbIeRZEM7me_CRZiJk-ULGCTG1TikllN4Y5t_zg&oe=699E425A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511999151515@s.whatsapp.net\",\"pushName\":\"1515\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/122556183_726913954587825_4427139998247145781_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0502mQNhGWXTDbkaZ3nmqby-nYhnJN5O93mCSw2pZ8A&oe=699E342F&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481030553@s.whatsapp.net\",\"pushName\":\"Ana Sepat\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556696317089@s.whatsapp.net\",\"pushName\":\"Elci7089 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wElleab45lRYeKDXBDtaPF3e1kOzyEOgf_6eAG78ezx3w&oe=699E3865&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796277211@s.whatsapp.net\",\"pushName\":\"Michele Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993659997@s.whatsapp.net\",\"pushName\":\"carlos9997\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5551935052237@s.whatsapp.net\",\"pushName\":\"App Playstore\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592365364_692341853868703_4138368732526394393_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNSS7NjlY-M5oVQP9vGFmYzz_lLaAhUUaDcmb1uuJfgg&oe=699E50D0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599756868@s.whatsapp.net\",\"pushName\":\"Kêmela Junior\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592582656@s.whatsapp.net\",\"pushName\":\"Bela Arts Bolsas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473393633_1372416320804263_7940860258902356820_n.jpg?ccb=11-4&oh=01_Q5Aa3wEFsLk9BecjWOu2qr2-GAjUWtQkZKGzTfQIR-PAhbn2sw&oe=699E5EEA&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554195917897@s.whatsapp.net\",\"pushName\":\"Rosenilda7897 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996351254@s.whatsapp.net\",\"pushName\":\"Paulo 1254 $25 Vivo Isidoro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/446039520_883022183640672_7616046561030679615_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtt4KKiFB4TlmZuiz4Vlgwd2b7huqAW1NAnF8cqRV1yQ&oe=699E593B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556992280401@s.whatsapp.net\",\"pushName\":\"Charles 0401 $330 Vood Bronsson!!!😎\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/620323925_805692095900597_4703420676292056309_n.jpg?ccb=11-4&oh=01_Q5Aa3wHo7_uEIOg1dLIJWi0LZ_iNMFX5lQEgp-xH-SMUFOrm0Q&oe=699E62A9&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"559484478231@s.whatsapp.net\",\"pushName\":\"Alex A. Feitosa Revenda Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_4326179124291135_5484016130798880401_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUubZ_Pk_hOXkQtS8kzG7vMA44CyM7whIivb_bhB07Og&oe=699E2DEB&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981682343@s.whatsapp.net\",\"pushName\":\"thatiana2343 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592910907@s.whatsapp.net\",\"pushName\":\"Cley Maes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796096196@s.whatsapp.net\",\"pushName\":\"Gustavo Nutricionista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/424425180_805446708078104_8025938463322707227_n.jpg?ccb=11-4&oh=01_Q5Aa3wFD2Oj13KEl3PUpeOx-Trq2yhtcEssfFrOpzLx4my6yjw&oe=699E3724&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998402469@s.whatsapp.net\",\"pushName\":\"Anderson 2469 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wFf7nU6Z3oF07HBBfmm50WusJieeXckuVeHNsf1swBJyQ&oe=699E5505&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558594149469@s.whatsapp.net\",\"pushName\":\"Emanuel9469 $35 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605040934_1957074621512067_676212095999058347_n.jpg?ccb=11-4&oh=01_Q5Aa3wHIyBGzF34zUXX3KH072RS1vNMcttWKBu6j_4rs6b57Zg&oe=699E5CB0&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553397072011@s.whatsapp.net\",\"pushName\":\"Marcos2011\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799732071@s.whatsapp.net\",\"pushName\":\"Rosângela Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799900305@s.whatsapp.net\",\"pushName\":\"Fabiane0305 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534427379_1494803351730115_3707699573274584264_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2nZsj34BO1igO_yEXGxmKZsAIQOP46yDGphSwSvkCqg&oe=699E4312&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"553598109807@s.whatsapp.net\",\"pushName\":\"Sidney9807\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992307235@s.whatsapp.net\",\"pushName\":\"Edgar 7235 Mytv Lopes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605147948_2309771506188165_1246106714635335649_n.jpg?ccb=11-4&oh=01_Q5Aa3wEuplqGrtJSkn01C265WTmrRxIQcYmX_OZd9rmkpclXKg&oe=699E58D5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519995020019@s.whatsapp.net\",\"pushName\":\"Erica0019 Oliveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/518110347_4412634365636531_1845926093864722842_n.jpg?ccb=11-4&oh=01_Q5Aa3wGI521z8AxSeQnZtVlqqRDl4OJNegzZRZ7d84cSzVu-HQ&oe=699E3C91&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797624657@s.whatsapp.net\",\"pushName\":\"Thuani4657 Clt Iptv Panasonic\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784104195@s.whatsapp.net\",\"pushName\":\"Osni4195 $90 Live\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/322270591_566590678820664_8032555837015351220_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUIsy3qOdDpjDgBuZzChiDQJd1aL3XK6es1qd1ej1KpA&oe=699E42B9&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521997898787@s.whatsapp.net\",\"pushName\":\"Ricardo8787 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982810902@s.whatsapp.net\",\"pushName\":\"Jeisson0902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511998370782@s.whatsapp.net\",\"pushName\":\"LK Sabores!\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556530256232@s.whatsapp.net\",\"pushName\":\"D`talia Pizzaria e Choperia\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/100786034_690725748149713_2788647955541335634_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkjFNxxcgcCq_5ziiFYLiktFeK30QY0nAhl6kLFS0n5w&oe=699E5677&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797715753@s.whatsapp.net\",\"pushName\":\"Daniela Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797441100@s.whatsapp.net\",\"pushName\":\"Luisinho\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791355663@s.whatsapp.net\",\"pushName\":\"De Lurdes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558599460795@s.whatsapp.net\",\"pushName\":\"Aline 4294\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_2031870957742205_9076317051248646492_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJMVkLymUusMyjS8NZMZIZ4JwZb6MSJDSTDgDA7tK4og&oe=699E2D6A&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998583583@s.whatsapp.net\",\"pushName\":\"Gaby3583\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558694473039@s.whatsapp.net\",\"pushName\":\"Yasmin3039 $40 Void Rafaelly\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/617543272_34395653556700277_2141422969210449409_n.jpg?ccb=11-4&oh=01_Q5Aa3wFqFFjScs-FysM3oMh-X7ezh-y22s1kOkJgoqsSP-S1wg&oe=699E5EE5&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998710142@s.whatsapp.net\",\"pushName\":\"Amadeu0142\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996504717@s.whatsapp.net\",\"pushName\":\"Luis4717\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799679163@s.whatsapp.net\",\"pushName\":\"Eron5253 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555596559616@s.whatsapp.net\",\"pushName\":\"Jhenifer 9616 $40 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534415938_1453067382911615_8783043701610761337_n.jpg?ccb=11-4&oh=01_Q5Aa3wGH5_PKzknr_m01I8tanNIKZW5no-QJ1N9ELA6UIp2gvw&oe=699E644A&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592231703@s.whatsapp.net\",\"pushName\":\"Décio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997862659@s.whatsapp.net\",\"pushName\":\"Donizete2659\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797757915@s.whatsapp.net\",\"pushName\":\"Felipe 7915 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/506795326_1064994768322446_1893806284702342057_n.jpg?ccb=11-4&oh=01_Q5Aa3wF_nDr4VTB3MNfUMpf7kPtUnH3_NUIMZeVEwflzH29ieA&oe=699E64BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998315159@s.whatsapp.net\",\"pushName\":\"Gabriel5159\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996575030@s.whatsapp.net\",\"pushName\":\"Filipe 5030 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625189954_26055471187438847_4131153604190828101_n.jpg?ccb=11-4&oh=01_Q5Aa3wGhACJSgrVgEJIh2xBb1r8wuP9xLMrPD5wglq4g2kFsyg&oe=699E4D6E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788499385@s.whatsapp.net\",\"pushName\":\"Anderson Uber\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996747244@s.whatsapp.net\",\"pushName\":\"Naldin7244\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997334868@s.whatsapp.net\",\"pushName\":\"Motoboy Dog\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519995282807@s.whatsapp.net\",\"pushName\":\"Junior (Deni) Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998453953@s.whatsapp.net\",\"pushName\":\"Luiza3953 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996537015@s.whatsapp.net\",\"pushName\":\"Thiago7015\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799623004@s.whatsapp.net\",\"pushName\":\"Julio Excelência Tur\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511910511279@s.whatsapp.net\",\"pushName\":\"Victória V2ray $25 Usuario 11279\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557381257009@s.whatsapp.net\",\"pushName\":\"Luciana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515922301_1439776764211769_2828533069773259223_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjKwC3xCu6-gzGk4RC5MNouJFGXMBX6bFO86YdK1tOvA&oe=699E4C6B&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"556581286864@s.whatsapp.net\",\"pushName\":\"Tililica Baby•kids•teen• Moda infantil\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411156_1312346810077584_4998701475845033136_n.jpg?ccb=11-4&oh=01_Q5Aa3wE2Cy87VLX5EFAfHbD_IROdBb6fTu6wfjKApRVm85s87Q&oe=699E5DD5&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998559833@s.whatsapp.net\",\"pushName\":\"PeSantos9823\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971114382@s.whatsapp.net\",\"pushName\":\"Fátima (Eliezer) Carmo Costa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996567044@s.whatsapp.net\",\"pushName\":\"Aguinaldo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981057358@s.whatsapp.net\",\"pushName\":\"Luiz Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797646172@s.whatsapp.net\",\"pushName\":\"Kaio 6172 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507652795_1299962018294605_3516837554493761611_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwFgLl0Z5020gwcztNy6ZpeCYFVDXROOF6-B9vjOq85w&oe=699E532E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791575394@s.whatsapp.net\",\"pushName\":\"5394\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997616463@s.whatsapp.net\",\"pushName\":\"Ricardo6463\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518991032355@s.whatsapp.net\",\"pushName\":\"Inis Pelho Mae Grk\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"14077088391@s.whatsapp.net\",\"pushName\":\"Silvia8391 $100 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/421345466_2208215882904668_4535429189832580742_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAxYappR8xuR-ffoOqQUEDs4KxuIIkBt6kFS_GoHwrGQ&oe=699E45D8&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5527996508514@s.whatsapp.net\",\"pushName\":\"𝓥𝓘𝓒𝓣𝓞𝓡​ Vpn Ssh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799762402@s.whatsapp.net\",\"pushName\":\"Matheus Cunhado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799456350@s.whatsapp.net\",\"pushName\":\"Gui6350 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593338474@s.whatsapp.net\",\"pushName\":\"Carpe Diem\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/466773062_3784735001840894_1321758634286034330_n.jpg?ccb=11-4&oh=01_Q5Aa3wHxyzaDi3YDEf1G46YLvjRpHM8-XYDhBdZ_X5qeFAIokQ&oe=699E5AD3&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553291663603@s.whatsapp.net\",\"pushName\":\"Flavia3603 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796809095@s.whatsapp.net\",\"pushName\":\"Denise Mesa PC\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997877473@s.whatsapp.net\",\"pushName\":\"Neia7473 $90 Void Ssiptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791806490@s.whatsapp.net\",\"pushName\":\"Marcos Ambev\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784000884@s.whatsapp.net\",\"pushName\":\"Castelo Encantado\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788278392@s.whatsapp.net\",\"pushName\":\"Daiana Provençal\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515445438_723132347284985_7746661858424581954_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7Z8LSj_LF0TJLOaN553W6omF7DUrIrfozCfh0GBXeDA&oe=699E44F9&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"558791326028@s.whatsapp.net\",\"pushName\":\"Mari6028 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998265848@s.whatsapp.net\",\"pushName\":\"5848\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792584882@s.whatsapp.net\",\"pushName\":\"Altair Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899310676@s.whatsapp.net\",\"pushName\":\"Denys0676 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792634754@s.whatsapp.net\",\"pushName\":\"Anderson47554 Ios55$ 18\\/08\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983463968@s.whatsapp.net\",\"pushName\":\"Albano\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796893131@s.whatsapp.net\",\"pushName\":\"Tuhu Carnes Especiais Kits\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/106866124_923215458091074_8796481757358186405_n.jpg?ccb=11-4&oh=01_Q5Aa3wEdifmNRachqv8AW8kgCTnbbad0ysCKc3_9EK4cr1p7Ww&oe=699E3786&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"5528999078517@s.whatsapp.net\",\"pushName\":\"Luciana8517 P2cine $40\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992408360@s.whatsapp.net\",\"pushName\":\"Auria8360\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592996046@s.whatsapp.net\",\"pushName\":\"Serralheria Universal\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996601158@s.whatsapp.net\",\"pushName\":\"Rodrigo1158 $70 Void E Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/458197191_1074325710967132_9195276973416441327_n.jpg?ccb=11-4&oh=01_Q5Aa3wEbbiop_tGO4QtESkJJqbZsFUs8fFynkRdIY_yy-WgUAQ&oe=699E4521&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519991035259@s.whatsapp.net\",\"pushName\":\"Pablo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992491645@s.whatsapp.net\",\"pushName\":\"Nilson Canais\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/505205399_734803455981226_6349386391924744335_n.jpg?ccb=11-4&oh=01_Q5Aa3wFempuhcnpPaNNkmkHQjMmf1yxtK9ARlMzyxZoX85D0vw&oe=699E5CF8&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788084404@s.whatsapp.net\",\"pushName\":\"Antonio4404 Pai Do Ticão Felip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556196656234@s.whatsapp.net\",\"pushName\":\"Sam DEVELOP APPS\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605471274_1130363895651422_7858701074974808381_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHGEKC_5G-clyHJG5CpuKlQiJrZ1DSuZ-utMZ0PiA5Kg&oe=699E41B8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519981545251@s.whatsapp.net\",\"pushName\":\"Cida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996866315@s.whatsapp.net\",\"pushName\":\"Vanderson6315\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519982826008@s.whatsapp.net\",\"pushName\":\"joao Gomes Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/580960665_1916466809303394_5331064120345913801_n.jpg?ccb=11-4&oh=01_Q5Aa3wE-yN8irpgI7BZKXdjII-bfDQESwCTNg4Boo4z-c9uzJg&oe=699E5080&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554784373750@s.whatsapp.net\",\"pushName\":\"Victor Namorado Amanda Silvestro\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583287528_1535292880951714_7496635515362175285_n.jpg?ccb=11-4&oh=01_Q5Aa3wGp2gbkf5xLIKmoOOrvq2iHFDjEPD0sCFdlrt3ZV5YS_g&oe=699E3D4F&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796095335@s.whatsapp.net\",\"pushName\":\"Gaucho Tempo Bo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997304725@s.whatsapp.net\",\"pushName\":\"Paula4725\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989347906@s.whatsapp.net\",\"pushName\":\"Vanessa7906 Celso\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998329309@s.whatsapp.net\",\"pushName\":\"Rosangela9309 Moraes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799119211@s.whatsapp.net\",\"pushName\":\"Dayse Neves\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788913877@s.whatsapp.net\",\"pushName\":\"Mônica Hermes Decoração\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799122723@s.whatsapp.net\",\"pushName\":\"Emprego Fiorino\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555481642376@s.whatsapp.net\",\"pushName\":\"Jonathan2376 P2cine $90\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609934855_1234056668620746_3635634352999440478_n.jpg?ccb=11-4&oh=01_Q5Aa3wFUwgrkrpMZICFZ-BbdkV7w76_LD96-zJHyDYL87XOiSA&oe=699E307E&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554797518095@s.whatsapp.net\",\"pushName\":\"Claudineia Assembleia De Deus\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796121679@s.whatsapp.net\",\"pushName\":\"Carrinho De Bb\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519986057169@s.whatsapp.net\",\"pushName\":\"7169\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521986323035@s.whatsapp.net\",\"pushName\":\"Michele Login Rogeria0708\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554788390338@s.whatsapp.net\",\"pushName\":\"Resultado COVID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/342183054_3566817266882332_2555338762531500791_n.jpg?ccb=11-4&oh=01_Q5Aa3wHugtgaseOHB9y9jT9ptAbgsQxp9iq1DZZMK18GazwosA&oe=699E3402&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791170660@s.whatsapp.net\",\"pushName\":\"Marcelo Moderna\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554198722592@s.whatsapp.net\",\"pushName\":\"Gustavo2592 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554196563859@s.whatsapp.net\",\"pushName\":\"Keely3859 Internet 25$\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516997696680@s.whatsapp.net\",\"pushName\":\"Alex6680 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797332771@s.whatsapp.net\",\"pushName\":\"Produtos Pra Revender\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534425361_577978791991900_8123674185359869180_n.jpg?ccb=11-4&oh=01_Q5Aa3wG2P2xFDGIEdx1e1CepbpESSWNIHgQcUog5EKV3_fTmTQ&oe=699E598E&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998113328@s.whatsapp.net\",\"pushName\":\"Wiviane IPTV\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799305724@s.whatsapp.net\",\"pushName\":\"Lavatorio Itajai 200\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5522999080599@s.whatsapp.net\",\"pushName\":\"Dirceu 0599 $100 Orion\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473408306_588786453961191_715370103372321178_n.jpg?ccb=11-4&oh=01_Q5Aa3wH9h7jV70iay33YA2xH39ZA2NJYQbJNOO7Sj5ZXKESYaA&oe=699E6074&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791124913@s.whatsapp.net\",\"pushName\":\"Thiago ItpPrats\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981338561@s.whatsapp.net\",\"pushName\":\"Evangelino8561\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555198179478@s.whatsapp.net\",\"pushName\":\"Parente Gui Revenda\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/457802295_1780518002483178_6847499619385230713_n.jpg?ccb=11-4&oh=01_Q5Aa3wEU0CNnwt71Q7aT-Ps2X0Ln8G0IkmWcaVZ4bJkOfoN7hg&oe=699E4612&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796798165@s.whatsapp.net\",\"pushName\":\"Alexandre Bike Carol Teste Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791583424@s.whatsapp.net\",\"pushName\":\"Maninho Lanches\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/407371042_723681529640101_137954133131865_n.jpg?ccb=11-4&oh=01_Q5Aa3wH0Gb1fd5kGUKgYVmZPOZiF6Y3skpQqSakvqD28NeHsNA&oe=699E3950&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996855423@s.whatsapp.net\",\"pushName\":\"Luan Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997697092@s.whatsapp.net\",\"pushName\":\"Flávio7092\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5527998535710@s.whatsapp.net\",\"pushName\":\"Dudu5710 Filgueiras\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593373245@s.whatsapp.net\",\"pushName\":\"Tecnico Net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421793_1538114250814816_4452786427753401604_n.jpg?ccb=11-4&oh=01_Q5Aa3wFO_0cfzcHen_HIxF3z-A4Gk7ULpvrbcnlnnmYu4R6-yQ&oe=699E657C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519999807976@s.whatsapp.net\",\"pushName\":\"Renatinho\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/463401969_895931769140283_4562975997630929851_n.jpg?ccb=11-4&oh=01_Q5Aa3wEJQhF4nIpKTAsOHa_LizD4QfvZauBZHXjBpNofzost9g&oe=699E3072&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556596120895@s.whatsapp.net\",\"pushName\":\"Elaine Mães\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5517992487649@s.whatsapp.net\",\"pushName\":\"Carlos 7649 $25 Vivo Easy Android\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597789731@s.whatsapp.net\",\"pushName\":\"Gustavo9731 Revenda Internet\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989072098@s.whatsapp.net\",\"pushName\":\"Guidog\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868843_694728706827288_8314097310730622119_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOEWuM2YKXKIcNHHjMZ0Gzti8pGDP4XQPfBWH1SoT5Zg&oe=699E632F&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"555481398521@s.whatsapp.net\",\"pushName\":\"Suelen\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/601162176_873217902339834_1160822279566298206_n.jpg?ccb=11-4&oh=01_Q5Aa3wHk1wFyH3c743a-PYmhfswOvBo5-YHoDbftP-CwHom6rg&oe=699E57BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"559988086284@s.whatsapp.net\",\"pushName\":\"Jedson6284 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555591233370@s.whatsapp.net\",\"pushName\":\"Nany3379 E Claudio6410 $70 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797794798@s.whatsapp.net\",\"pushName\":\"Vanessinha✨ Perfume Bc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511972890524@s.whatsapp.net\",\"pushName\":\"Karina0524\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422217_866599599531839_9179580508136043086_n.jpg?ccb=11-4&oh=01_Q5Aa3wHAiC3pPCeh4n-XipFUD3scvTGLPxI7z3X3pRm1HFBBlg&oe=699E351F&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5521998030979@s.whatsapp.net\",\"pushName\":\"Pablo 0979 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/511511923_3563209000639306_1983119274387370727_n.jpg?ccb=11-4&oh=01_Q5Aa3wED0lMCrL9u31rjQDQ1nfbpqnZ-UJbAN9DeFZGgio2kSQ&oe=699E391A&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796201852@s.whatsapp.net\",\"pushName\":\"Vg Motorista Face Gean\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791695079@s.whatsapp.net\",\"pushName\":\"Ioan5079 $100 Impacto\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/337889636_1383240685552535_7030489041468771224_n.jpg?ccb=11-4&oh=01_Q5Aa3wEwfH4F_txzPbtKakAZCGkQh5_9f5JFvmMFlpvSSMHNfA&oe=699E5C90&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"554891609809@s.whatsapp.net\",\"pushName\":\"Casa Tijucas\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/315786797_630381052590158_4931659341494713854_n.jpg?ccb=11-4&oh=01_Q5Aa3wFef8PkA9tq8sPz1A3RJ8Dsgp9l6OyFJM6xTFaByKftiw&oe=699E4044&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799719451@s.whatsapp.net\",\"pushName\":\"Marlon9451 $35 VOID\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/630076259_919439873928315_872909657315439488_n.jpg?ccb=11-4&oh=01_Q5Aa3wE8XLpwY1S2gPn11zh1xQqoyge2LSkkyiThFk11j02fpw&oe=699E46D7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554789133007@s.whatsapp.net\",\"pushName\":\"Valdir Bike\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519971681138@s.whatsapp.net\",\"pushName\":\"Tia Iara\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519983160969@s.whatsapp.net\",\"pushName\":\"Marcio0969\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511953732483@s.whatsapp.net\",\"pushName\":\"Karina 2483 $40 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627103881_1387567872552966_3883975663130895216_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQvhjffATkN-xQQInmjNYx6YyIFthpNwJXnQdtgOml4Q&oe=699E477A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"556599029191@s.whatsapp.net\",\"pushName\":\"Fabio IBNR\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996991816@s.whatsapp.net\",\"pushName\":\"Donizete1816\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784509135@s.whatsapp.net\",\"pushName\":\"Cleiton9135 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996068770@s.whatsapp.net\",\"pushName\":\"Joao Victor primo Vitor\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993845458@s.whatsapp.net\",\"pushName\":\"Matheus5458 😁\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515998020139@s.whatsapp.net\",\"pushName\":\"Isabelli Filha Da Solange\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511977351101@s.whatsapp.net\",\"pushName\":\"Nelson Som\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556492763464@s.whatsapp.net\",\"pushName\":\"Gleytia\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797151536@s.whatsapp.net\",\"pushName\":\"Desejos Moda Prais\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515981090650@s.whatsapp.net\",\"pushName\":\"Cris0650\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796533718@s.whatsapp.net\",\"pushName\":\"Sorocaba3718 $35 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5516988167807@s.whatsapp.net\",\"pushName\":\"Priscila 7807 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/593585514_897918063195238_7075026598108992521_n.jpg?ccb=11-4&oh=01_Q5Aa3wFAI2XuNMfS6VzTbLVOcxdPqe1hhZ-QJb7v5eiPi2__tA&oe=699E3595&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899295937@s.whatsapp.net\",\"pushName\":\"Déborah Goes\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558899149588@s.whatsapp.net\",\"pushName\":\".\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796625103@s.whatsapp.net\",\"pushName\":\"Lu5103 $40 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592577479@s.whatsapp.net\",\"pushName\":\"Jamilly PW\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997015980@s.whatsapp.net\",\"pushName\":\"Tiago5980 $25 Vivo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414643_1441781914045608_3832576531654367259_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-N7_XjhCUzt3NQa3mCKX9eePRnH5xYOdSJ30n_jB1EQ&oe=699E428E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592032621@s.whatsapp.net\",\"pushName\":\"Nina Kit\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"551942800040@s.whatsapp.net\",\"pushName\":\"Tati Brutos\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491868250_1021726773274722_2024656932014885878_n.jpg?ccb=11-4&oh=01_Q5Aa3wH3cLUAc3B0_5im1PLe3sC_H65KzIdF89I4_9nI7O-D7A&oe=699E57F5&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519996453047@s.whatsapp.net\",\"pushName\":\"Claudio3047\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796129083@s.whatsapp.net\",\"pushName\":\"Aprendiz Costura\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554195269825@s.whatsapp.net\",\"pushName\":\"ibanes9825 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"559991339437@s.whatsapp.net\",\"pushName\":\"Eduradorosa3834 $30 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966723377@s.whatsapp.net\",\"pushName\":\"Leandro3377 $35 Live\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993557852@s.whatsapp.net\",\"pushName\":\"Daniela7852\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511984415701@s.whatsapp.net\",\"pushName\":\"Bárbara5701\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997121074@s.whatsapp.net\",\"pushName\":\"Cle1074\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556598153627@s.whatsapp.net\",\"pushName\":\"Senac\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491840937_697424139799988_1945866833025106189_n.jpg?ccb=11-4&oh=01_Q5Aa3wHBqZt4Wf45wzucAfFu1om-UV4x6QeZkpWsvDzQ8jmSGQ&oe=699E6584&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796362019@s.whatsapp.net\",\"pushName\":\"Dagoberto Funcionário Almir\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519992142726@s.whatsapp.net\",\"pushName\":\"Pai\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555181663542@s.whatsapp.net\",\"pushName\":\"Cassiano3542 Santos\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553198138603@s.whatsapp.net\",\"pushName\":\"Pos Pago\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592485164@s.whatsapp.net\",\"pushName\":\"Aparecida\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797106947@s.whatsapp.net\",\"pushName\":\"Filipe6947 $100 Void\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996288702@s.whatsapp.net\",\"pushName\":\"Valdirpl\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554312046_2020854338744602_7669989853113141283_n.jpg?ccb=11-4&oh=01_Q5Aa3wEW0cFUNYk1VhLgUyUYQTGMaNVG01tzEK_TLzeQVMhLXg&oe=699E38FD&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996049706@s.whatsapp.net\",\"pushName\":\"Mike9706\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5518996348529@s.whatsapp.net\",\"pushName\":\"Tiago8529\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791094594@s.whatsapp.net\",\"pushName\":\"Willian Mendes CRECI\\/SC: 61962\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609071805_1422788979297354_842263089655968878_n.jpg?ccb=11-4&oh=01_Q5Aa3wFdAs4H2bzeozzUaDr8j1sPX2DZPYvBwJ-rXH0b3khp3g&oe=699E3D25&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"554792620520@s.whatsapp.net\",\"pushName\":\"Casa Alugar\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784265039@s.whatsapp.net\",\"pushName\":\"Cazza Pizza Jd Tropical\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519999968905@s.whatsapp.net\",\"pushName\":\"Marcia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796536989@s.whatsapp.net\",\"pushName\":\"Maicon6989 $1 Ano P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397948_626321443102453_3614539220619106003_n.jpg?ccb=11-4&oh=01_Q5Aa3wHtSRu-asaZ8ez3H9kkZ67CwasqbnbnBcWoT5t02302mQ&oe=699E54BF&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554899668314@s.whatsapp.net\",\"pushName\":\"Maria Paulla Xaranga\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597730989_1441558184074492_1965149528915362245_n.jpg?ccb=11-4&oh=01_Q5Aa3wGoXh5fAA-a4RcklAztjoku-Bpf6rcAcTGUq7UYiaDtcg&oe=699E39C2&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"556598095493@s.whatsapp.net\",\"pushName\":\"Neiza Oliveira Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556599099009@s.whatsapp.net\",\"pushName\":\"Vet Pimenta\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796148889@s.whatsapp.net\",\"pushName\":\"Teixeirinha Uber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473411525_9332329633531270_3832629120182670924_n.jpg?ccb=11-4&oh=01_Q5Aa3wEZAJgYm9KklXDCKP7XEP0Ok7joSodMNJNaY4Sgb813Qg&oe=699E60A1&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"554791157543@s.whatsapp.net\",\"pushName\":\"Rafaela7543 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519991222061@s.whatsapp.net\",\"pushName\":\"Tio Tonho Void $35\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553182831234@s.whatsapp.net\",\"pushName\":\"Bruno1234 Cliente Iptv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534414620_1659789051671004_1149747678286455259_n.jpg?ccb=11-4&oh=01_Q5Aa3wGjp0_dk6FF0IHr65nHSvRNBoaWxoDgsOr3k7ynMi5Rag&oe=699E5BC7&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"556184026988@s.whatsapp.net\",\"pushName\":\"José6988 REVENDA SPACE\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993497654@s.whatsapp.net\",\"pushName\":\"Tom7654\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/575216765_1602166414459680_7430228441291268406_n.jpg?ccb=11-4&oh=01_Q5Aa3wFeoFJ6HBRMzNMn6GAc_kqzR8g0O7CackyOOJJxhQsqAA&oe=699E4927&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592245237@s.whatsapp.net\",\"pushName\":\"Malu Store\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/307885100_5809252705772931_933647314766696549_n.jpg?ccb=11-4&oh=01_Q5Aa3wHwmxSlhl32YnGuuTXoh3c-4oMW0Aw6JLuqJw2dVq8upQ&oe=699E3440&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519987065461@s.whatsapp.net\",\"pushName\":\"Samuca\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799998333@s.whatsapp.net\",\"pushName\":\"Estella Prof Bella\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797537806@s.whatsapp.net\",\"pushName\":\"Centro Espírita Alan Kardec\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799034933@s.whatsapp.net\",\"pushName\":\"Queila Polishop\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997791870@s.whatsapp.net\",\"pushName\":\"Simone1870\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799800081@s.whatsapp.net\",\"pushName\":\"Silvio0081 CLT Iptv Pai Hiure CLT Iptv Bnu\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394899_472041115960052_1422002694038638117_n.jpg?ccb=11-4&oh=01_Q5Aa3wGV7U8OabCG0Qkx7wYlZ4i41IP_0GUhc_q6OF8oKLoQUg&oe=699E4BDD&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"5514997684723@s.whatsapp.net\",\"pushName\":\"Élida4723 $40 Space\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993973128@s.whatsapp.net\",\"pushName\":\"Jamilly3128 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558199262386@s.whatsapp.net\",\"pushName\":\"Marcos 2386 $40 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996114184@s.whatsapp.net\",\"pushName\":\"Priscila4184 🥰\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5521994508333@s.whatsapp.net\",\"pushName\":\"Ana8333 $35 Iive\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519993234964@s.whatsapp.net\",\"pushName\":\"Neto Boy Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554899993573@s.whatsapp.net\",\"pushName\":\"Maikel8042 $35 P2cine\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554784141564@s.whatsapp.net\",\"pushName\":\"Dentista\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/479693552_1174944430972061_9092783255497295942_n.jpg?ccb=11-4&oh=01_Q5Aa3wEcarckY66W2UihFIPYRmoCIrMJh4cVkJmtDd6Ou2jOEw&oe=699E53C7&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796964174@s.whatsapp.net\",\"pushName\":\"Hemato Várzea Grande\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796105435@s.whatsapp.net\",\"pushName\":\"JTV\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473397339_617725107535862_2717876285757635254_n.jpg?ccb=11-4&oh=01_Q5Aa3wHpkaF9x1omVXuuiDCYIRFc-tdbLk5H2ZwzHNivgZ0z5A&oe=699E4F63&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"553898389826@s.whatsapp.net\",\"pushName\":\"Martins9826 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596880904@s.whatsapp.net\",\"pushName\":\"Dejilene\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519996032033@s.whatsapp.net\",\"pushName\":\"Leandro2033\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519989874910@s.whatsapp.net\",\"pushName\":\"Tico4910 Clt Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5514991918642@s.whatsapp.net\",\"pushName\":\"Glaucia8642 CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792569821@s.whatsapp.net\",\"pushName\":\"Evillyn Novo Faita\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/546636210_1220570093219720_8468439740633870339_n.jpg?ccb=11-4&oh=01_Q5Aa3wEhV-kWpygWgiLS1lsw2_5MNidEaQlooUmLFiRK7Hy9ig&oe=699E5FC8&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993426035@s.whatsapp.net\",\"pushName\":\"Silmara6035 $35 P2cine P2p\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997434304@s.whatsapp.net\",\"pushName\":\"Murilo4304 $25 V2ray Vivo Controle Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/514694976_1445882876489925_6368235989653405590_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2eiQsoqbkJZ40aP1CoeJnYBOkBOKMAYLL-JA6OkgqsQ&oe=699E610A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"554799160159@s.whatsapp.net\",\"pushName\":\"Edileusa Manicure\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792046750@s.whatsapp.net\",\"pushName\":\"Farmacia Preço Popular Sao Vicente\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/564252599_25226793963604734_491365796779461025_n.jpg?ccb=11-4&oh=01_Q5Aa3wH7eLaBYQLoR-RmOdTuG-YrUPBwgGCkZ7-9VFnD8MDztQ&oe=699E5C11&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"556592248588@s.whatsapp.net\",\"pushName\":\"Cido Cliente\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5512982203886@s.whatsapp.net\",\"pushName\":\"3886\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519987213426@s.whatsapp.net\",\"pushName\":\"Faustinoni3426\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/475704997_650576747390805_8718273774403774302_n.jpg?ccb=11-4&oh=01_Q5Aa3wGx6wPx2oU23U7JZkNPc2BXKl2jvWSrnP7_RnqmuWImlA&oe=699E359C&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},{\"id\":\"555199533425@s.whatsapp.net\",\"pushName\":\"Wesley3425 $40 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619338430_1620643785615323_2529848100833043385_n.jpg?ccb=11-4&oh=01_Q5Aa3wHkJgHY6OM_bZ7o5Zo0lyzW5rzoAq2y_CnpNO7AQYQlIA&oe=699E4FB6&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},{\"id\":\"5516991290807@s.whatsapp.net\",\"pushName\":\"Emerson07\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799971531@s.whatsapp.net\",\"pushName\":\"Casa 1201 Venda\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511966660048@s.whatsapp.net\",\"pushName\":\"Sil0048 CLT Iptv Silvana\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515997881583@s.whatsapp.net\",\"pushName\":\"Patrícia1583 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGto4EthLurZg6GUgBqjPFV2CrhZzrCuzU3Biz-YOa7bA&oe=699E33D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554788510235@s.whatsapp.net\",\"pushName\":\"Nova Estrela Kids\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/74782656_788907894958125_5581522923909247390_n.jpg?ccb=11-4&oh=01_Q5Aa3wF1c5zbu9hvcCB9gHxLn2gcjNsRJeGvor0qegNq0YkgDA&oe=699E56D7&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5512981188795@s.whatsapp.net\",\"pushName\":\"James 8795 $350 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585462062_1493553978364208_936284590592255946_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUxV01--9ybei1i8cbqxijFzDYaIKjd_hbZMUcjoUQWA&oe=699E463E&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515997312902@s.whatsapp.net\",\"pushName\":\"Thiago2902\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998137286@s.whatsapp.net\",\"pushName\":\"Léa7286\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519981662214@s.whatsapp.net\",\"pushName\":\"Sônia Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554791370119@s.whatsapp.net\",\"pushName\":\"Carol Trampo\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616294559_955574117134850_4812577442204595009_n.jpg?ccb=11-4&oh=01_Q5Aa3wEgIaMIxvVS-F0ZRwLwKV4Zm5-Ix-gj-emj-k9n-gM5eA&oe=699E4E2E&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519992888096@s.whatsapp.net\",\"pushName\":\"Palmeirense Rei Hélice\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/68244113_2437477049810334_5428219602737823744_n.jpg?ccb=11-4&oh=01_Q5Aa3wGnrm_zyh0uCBCiMg_ZLyHxhC78mh55i9cDEWFZthYP7Q&oe=699E315A&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},{\"id\":\"551140044938@s.whatsapp.net\",\"pushName\":\"VR Whatsapp\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/491843882_707961898312377_7909988342413864794_n.jpg?ccb=11-4&oh=01_Q5Aa3wFS7M_BnVwjUyVwXwlCkuzZht9vK7ihHs1SaATUWrecTw&oe=699E2E36&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511986211177@s.whatsapp.net\",\"pushName\":\"Pastor Marcelo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556593322701@s.whatsapp.net\",\"pushName\":\"Antônio Bruno\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553899173589@s.whatsapp.net\",\"pushName\":\"Sara3589 $40 Iza\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799042583@s.whatsapp.net\",\"pushName\":\"tatiane2583 $35 Izaplay\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556581155409@s.whatsapp.net\",\"pushName\":\"Dabia Novooo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799764746@s.whatsapp.net\",\"pushName\":\"Otica Bela Iris Navegantes\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/396497307_2205722969795617_9099437956701240982_n.jpg?ccb=11-4&oh=01_Q5Aa3wEWBeyWm7dM8wwzPvvJRBx5B1COiDWYIt1riVAO5VCxUg&oe=699E365B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519998085990@s.whatsapp.net\",\"pushName\":\"Rodrigo Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wF2-9SQi5CHLMtnBvnvdzXOuZ0G-48QqHKWIijotLu1sA&oe=699E5307&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},{\"id\":\"5518981363811@s.whatsapp.net\",\"pushName\":\"Charlla 3811 $40 Void Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519994671535@s.whatsapp.net\",\"pushName\":\"Mariane1535 $35 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/538553871_724271903977180_2157839953845855281_n.jpg?ccb=11-4&oh=01_Q5Aa3wGalv5660_yRBy2tAA_lx33aCoEyZhNjuUnGw0MbO_2yA&oe=699E300E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796502841@s.whatsapp.net\",\"pushName\":\"Riana Iptv Clt\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558592859866@s.whatsapp.net\",\"pushName\":\"Clara9866 $35 Void\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/595500168_1819266965239112_4740949446392414677_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ_XeiWtLDqG0toFtoQowSpcuxIO6Gwa0TkTt40tbbzw&oe=699E34B7&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796979983@s.whatsapp.net\",\"pushName\":\"Evelin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592460613@s.whatsapp.net\",\"pushName\":\"Tais Irmã Taiane\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"557581216218@s.whatsapp.net\",\"pushName\":\"Vini7218\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554799477471@s.whatsapp.net\",\"pushName\":\"Jeh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796241133@s.whatsapp.net\",\"pushName\":\"Bicho Chic\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473400615_954353342952084_4408026276976674411_n.jpg?ccb=11-4&oh=01_Q5Aa3wEonVIk3ScJdJmU7ng0yTFeXgeUBwNROVkylliOI7BLig&oe=699E4FE0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"5511982042225@s.whatsapp.net\",\"pushName\":\"2225\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796369042@s.whatsapp.net\",\"pushName\":\"Helio\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519998840356@s.whatsapp.net\",\"pushName\":\"Raquel Net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556596710937@s.whatsapp.net\",\"pushName\":\"Yvan\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996809589@s.whatsapp.net\",\"pushName\":\"Rapha9589 $35 Matrix\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627364109_25891548257174786_8300175494229950153_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBJDKVFpFydFpxPVaDacvVVKrOqkBNiFIZ9YfXKHvfZA&oe=699E450B&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},{\"id\":\"5519993387207@s.whatsapp.net\",\"pushName\":\"Marcia Lima Prima\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567695798_1590360292376706_3952532715879674428_n.jpg?ccb=11-4&oh=01_Q5Aa3wHHbs9kSoBF6PInQPKXy4ws_nudCJo5XaijfKHQhx52wA&oe=699E53A0&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},{\"id\":\"554796969061@s.whatsapp.net\",\"pushName\":\"Agropecuaria Barra Velha Papagaio Filip\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997518636@s.whatsapp.net\",\"pushName\":\"Cesar 8636 $35 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/507959079_3241312846035157_3326103341687111266_n.jpg?ccb=11-4&oh=01_Q5Aa3wEIErnTSckIQ9oThJhbbfGsBdvmMfbRfDZKLTgJviFLiw&oe=699E6052&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998595685@s.whatsapp.net\",\"pushName\":\"Danilo5685\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555381097294@s.whatsapp.net\",\"pushName\":\"Roberta 7294 $100 Mytv\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582550706_2101535300672578_3423383325248844586_n.jpg?ccb=11-4&oh=01_Q5Aa3wG-lxl_CXBLNXnx8JV1d7GGhLjoWZy0Q_bbgsXKGEevgQ&oe=699E6065&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515998120940@s.whatsapp.net\",\"pushName\":\"Jéssica0940\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796416548@s.whatsapp.net\",\"pushName\":\"Jeff Amigo Kaka\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797387599@s.whatsapp.net\",\"pushName\":\"Gpgp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797935980@s.whatsapp.net\",\"pushName\":\"Eliete 5980 $40 Mytv City lanches\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5528999537169@s.whatsapp.net\",\"pushName\":\"Victor 7169 $40 Izaplay\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/607515769_1578147989990492_3248597090627674528_n.jpg?ccb=11-4&oh=01_Q5Aa3wHdRkMIGHOtrDeV5yDT4x7zRNqFg-1Gn58yu6whpt1b_A&oe=699E3705&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},{\"id\":\"555197050996@s.whatsapp.net\",\"pushName\":\"Zezin\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"558781006255@s.whatsapp.net\",\"pushName\":\"Maurylio6255\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"556592293238@s.whatsapp.net\",\"pushName\":\"Janaína\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5515996314829@s.whatsapp.net\",\"pushName\":\"Bruno4829\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554792070284@s.whatsapp.net\",\"pushName\":\"Vini 0284 $100 P2cine\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/616144487_2606631333050183_8394217341681266466_n.jpg?ccb=11-4&oh=01_Q5Aa3wGO2UF2yHRGpxuz_JzbOt--O2onUbtIL4IWiQB8AWMekA&oe=699E5C23&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},{\"id\":\"5515996647672@s.whatsapp.net\",\"pushName\":\"Julio7672 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"555186132068@s.whatsapp.net\",\"pushName\":\"Jaque🌻 Esposa Juliano Xs\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796932601@s.whatsapp.net\",\"pushName\":\"Milena Giassi Futura CLT Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519984132779@s.whatsapp.net\",\"pushName\":\"Ludmilla2779\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554796410704@s.whatsapp.net\",\"pushName\":\"Ana Paula Borges Klock\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"5519997301630@s.whatsapp.net\",\"pushName\":\"Mário1630 $35 Void Bross Iptv\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553597078033@s.whatsapp.net\",\"pushName\":\"Jandrson8033 $25 Vivo\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"553391685311@s.whatsapp.net\",\"pushName\":\"Loryelly 5311 $40 Void UNY\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594533918_1960232208250590_78588773232050151_n.jpg?ccb=11-4&oh=01_Q5Aa3wESW8Gm6luhGIXh8mISmG5P4TUg7DPPicAdurqvVnO99w&oe=699E3773&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},{\"id\":\"558487079237@s.whatsapp.net\",\"pushName\":\"9237\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},{\"id\":\"554797275042@s.whatsapp.net\",\"pushName\":\"Elias5042 $40 I', 1, '2026-02-15 00:13:35');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20193, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"16149513269440@lid\",\"presences\":{\"16149513269440@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T00:39:48.389Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 00:39:48'),
(20194, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"16149513269440@lid\",\"presences\":{\"16149513269440@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T00:39:58.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 00:39:58'),
(20195, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163758798332105@lid\",\"presences\":{\"163758798332105@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T01:46:25.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 01:46:26'),
(20196, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T06:23:12.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 06:23:12'),
(20197, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:14:55.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:14:56'),
(20198, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:14:58.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:14:58'),
(20199, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AD3ACFA52A06F898369\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Bonjour\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nDui\\/XeJwe87hIWEZ+mrQhUSTpWM8h29uet5HQ0+rYU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771154098,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:14:58.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 08:14:58'),
(20200, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcKAx5ShFILBDUV6nv1bvG9PQqeYAqlf8Rufsw9AZH1A&oe=699ED810&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:14:58.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:14:59'),
(20201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcKAx5ShFILBDUV6nv1bvG9PQqeYAqlf8Rufsw9AZH1A&oe=699ED810&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:14:58.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:14:59'),
(20202, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcKAx5ShFILBDUV6nv1bvG9PQqeYAqlf8Rufsw9AZH1A&oe=699ED810&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:15:05.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:15:05'),
(20203, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AD3ACFA52A06F898369\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:15:04.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 08:15:05'),
(20204, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:15:07.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:15:07'),
(20205, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:15:11.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:15:11'),
(20206, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"presences\":{\"198685539487747@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:06.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:26:06'),
(20207, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:09.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:26:09'),
(20208, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"198685539487747@lid\",\"fromMe\":false,\"id\":\"AC828D4AE62D6B75F9C126B850681F3A\"},\"pushName\":\"Andre Luiz\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia amigão\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZxYTV+VO03H+js2BQy1cxWez1Mj9x3UUUmQBPiTjM3o=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771154769,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:09.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 08:26:10'),
(20209, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:09.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:26:10'),
(20210, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"pushName\":\"Andre Luiz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ0peVsBxst6nKp7M_NNht_iMGBBEN56_MWMEpmWfN6A&oe=699ED521&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:09.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 08:26:10'),
(20211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ0peVsBxst6nKp7M_NNht_iMGBBEN56_MWMEpmWfN6A&oe=699ED521&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:09.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:26:10'),
(20212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"presences\":{\"198685539487747@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:12.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:26:12'),
(20213, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"presences\":{\"198685539487747@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:26:19.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:26:19'),
(20214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:42:30.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:42:31'),
(20215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129914707681280@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:42:31.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:42:31'),
(20216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129914707681280@lid\",\"fromMe\":false,\"id\":\"4A80DA8724600DD66AF0\"},\"pushName\":\"Anderson Silva\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/637279987_1412095300943184_952171525394120801_n.enc?ccb=11-4&oh=01_Q5Aa3wER0ZzJ3M3LIJ0ltNLffljnp1tX9yVxFp6X1j1u8S0iQA&oe=69B92974&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"sicredi_1771155607\",\"fileSha256\":\"O3yR8jtAWsjQfmujl+DumKMo6NAmtIrWiEi+zn+QrjA=\",\"fileLength\":\"63173\",\"pageCount\":1,\"mediaKey\":\"Xf0GDof3nO0u8iHcJSywz\\/as1OQWZijbT4RMyDr0uPE=\",\"fileName\":\"sicredi_1771155607.pdf\",\"fileEncSha256\":\"xuRYup\\/Gg4PzoJ53i9wuypANR2s0dgRCnEBRaGcIHT8=\",\"directPath\":\"\\/v\\/t62.7119-24\\/637279987_1412095300943184_952171525394120801_n.enc?ccb=11-4&oh=01_Q5Aa3wER0ZzJ3M3LIJ0ltNLffljnp1tX9yVxFp6X1j1u8S0iQA&oe=69B92974&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771155626\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIADMDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0kpOlRZk2AIipNuLKABBJdTprBoInqOdUJ3QAAAAB\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwAn\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAwEBPwAn\\/8QAJhAAAQMBCAEFAAAAAAAAAAAAAQACERIDECAhMUFRYSITMkBCUv\\/aAAgBAQABPwBxI3CDnHQhCre50x46oC03IutACRIQhpkBNdO2F5zUlNPJhDX3TgtNbvHgpsRIEYHkg5IOn6odtwvJBVZWf6CB5Kkc3vZVuvS7Qso1Ko7VCAj4H\\/\\/+AAMA\\/9k=\",\"caption\":\"Bom dia\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771127301\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GYXAjirY2Bd2Sc\\/Qx9yyTnUrDi1ZrsM6hLhfTjuPuqE=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771155751,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:42:31.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 08:42:31'),
(20217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129914707681280@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Py1ZsJjD2R9wW6jF8m5Ebg4G4ULR6W4AljfLzVbokA&oe=699EC585&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:42:31.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 08:42:32'),
(20218, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129914707681280@lid\",\"pushName\":\"Anderson Silva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Py1ZsJjD2R9wW6jF8m5Ebg4G4ULR6W4AljfLzVbokA&oe=699EC585&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T08:42:31.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 08:42:33'),
(20219, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"166391445487662@lid\",\"presences\":{\"166391445487662@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:01:39.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:01:40'),
(20220, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"205325357551689@lid\",\"from\":\"205325357551689@lid\",\"id\":\"AC0A932AA74BAE782672E083B5CC7C2E\",\"date\":\"2026-02-15T12:38:45.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":true,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:46'),
(20221, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":true,\"id\":\"3EB08D4BD291BB9A42CD06\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"*NÃO ACEITAMOS LIGAÇÃO!* *Fique atento* nos *Horarios* de *funcionamento!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771159125,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:45.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:47'),
(20222, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"205325357551689@lid\",\"from\":\"205325357551689@lid\",\"id\":\"AC0A932AA74BAE782672E083B5CC7C2E\",\"date\":\"2026-02-15T12:38:45.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":true,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:47'),
(20223, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"205325357551689@lid\",\"from\":\"205325357551689@lid\",\"id\":\"AC0A932AA74BAE782672E083B5CC7C2E\",\"date\":\"2026-02-15T12:38:45.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":true,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:47'),
(20224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"3EB08D4BD291BB9A42CD06\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771159126414,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:48'),
(20225, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"63637.17894-55656\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771159126092,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:48'),
(20226, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"205325357551689@lid\",\"from\":\"205325357551689@lid\",\"id\":\"AC0A932AA74BAE782672E083B5CC7C2E\",\"date\":\"2026-02-15T12:38:45.000Z\",\"offline\":false,\"status\":\"offer\",\"isVideo\":true,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:45.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:48'),
(20227, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:48'),
(20228, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"205325357551689@lid\",\"from\":\"205325357551689@lid\",\"id\":\"AC0A932AA74BAE782672E083B5CC7C2E\",\"date\":\"2026-02-15T12:38:45.000Z\",\"offline\":false,\"status\":\"reject\",\"isVideo\":true,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:46.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:48'),
(20229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"3EB08D4BD291BB9A42CD06\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771159131077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:51.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:51'),
(20230, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:52.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:53'),
(20231, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:54.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:54'),
(20232, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"AC0FAC2194C6860A5AB684860099AEBB\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qo3uWBTMAfT6SFstBz0Om7DB4GFP79WsGVH5bspUkfA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771159134,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:54.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:54'),
(20233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:54.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:55'),
(20234, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:55.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:55'),
(20235, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:54.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:55'),
(20236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"AC9981962EF441E59A5A90E01DDB4735\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Joni\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"luz7ka8wPMGg64oVjmJ6DnL7kRiKajMd1GEVnZtq5KU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771159136,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:56.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:38:56'),
(20237, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:56.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:56'),
(20238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:57.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:57'),
(20239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:38:56.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:38:57'),
(20240, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:37.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:51:37'),
(20241, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"198685539487747@lid\",\"fromMe\":true,\"id\":\"A5FCD824EED23F52B8DA164251481E2B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771159896,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:37.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:51:37'),
(20242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"pushName\":\"Andre Luiz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ0peVsBxst6nKp7M_NNht_iMGBBEN56_MWMEpmWfN6A&oe=699ED521&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:37.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:51:38'),
(20243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129914707681280@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:39.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:51:39'),
(20244, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129914707681280@lid\",\"fromMe\":true,\"id\":\"A518D6CC4A4CBAD53E996A01933FDF91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771159899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:39.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:51:39'),
(20245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129914707681280@lid\",\"pushName\":\"Anderson Silva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Py1ZsJjD2R9wW6jF8m5Ebg4G4ULR6W4AljfLzVbokA&oe=699EC585&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:39.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:51:40'),
(20246, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:42.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:51:43'),
(20247, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":true,\"id\":\"A5F572FEA412563C0E1138E01A834146\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771159902,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:42.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:51:43'),
(20248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:43.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 09:51:43'),
(20249, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A5F572FEA412563C0E1138E01A834146\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771159903811,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:51:43.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:51:44'),
(20250, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A5F572FEA412563C0E1138E01A834146\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771160064533,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T09:54:24.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 09:54:25'),
(20251, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:30.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:30'),
(20252, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A55712266015D890A465921283289ACF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771160550,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:30.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:30'),
(20253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcKAx5ShFILBDUV6nv1bvG9PQqeYAqlf8Rufsw9AZH1A&oe=699ED810&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:30.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:31'),
(20254, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:31.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:31'),
(20255, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcKAx5ShFILBDUV6nv1bvG9PQqeYAqlf8Rufsw9AZH1A&oe=699ED810&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:32.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:32'),
(20256, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A58C25B46011025E9E00B15E2DCD4CEB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771160551,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:31.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:32'),
(20257, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A55712266015D890A465921283289ACF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771160552883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:32.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:33'),
(20258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A58C25B46011025E9E00B15E2DCD4CEB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771160553234,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:33.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:33'),
(20259, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:36.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:36'),
(20260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5DFE4036C4CCCB2D3BCB060B86FF5EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Deu certo?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771160556,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:36.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:36'),
(20261, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGcKAx5ShFILBDUV6nv1bvG9PQqeYAqlf8Rufsw9AZH1A&oe=699ED810&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:36.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:37'),
(20262, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5DFE4036C4CCCB2D3BCB060B86FF5EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771160557651,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:37.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:37'),
(20263, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:53.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:53'),
(20264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"198685539487747@lid\",\"fromMe\":true,\"id\":\"A5449FFF24CD739F4932F608B76210B6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bomdia men\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771160572,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:53.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:02:53'),
(20265, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"pushName\":\"Andre Luiz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJ0peVsBxst6nKp7M_NNht_iMGBBEN56_MWMEpmWfN6A&oe=699ED521&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:02:53.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:02:54'),
(20266, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:03.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20267, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129914707681280@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:40.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:40'),
(20268, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129914707681280@lid\",\"fromMe\":true,\"id\":\"A5C477BA832D75A9A4DF141F4D66D5D7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdoa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771160680,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:40.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:04:40'),
(20269, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129914707681280@lid\",\"pushName\":\"Anderson Silva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Py1ZsJjD2R9wW6jF8m5Ebg4G4ULR6W4AljfLzVbokA&oe=699EC585&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:40.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:41'),
(20270, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"129914707681280@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:47.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:48'),
(20271, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"129914707681280@lid\",\"fromMe\":true,\"id\":\"A5DCD5CF3B035757C08EA6D988D44E3F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wGJQanVUdJ6oZqIA46hHdybug5olxulyqSRvGjH1wPg-g&oe=69B93F7C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wGJQanVUdJ6oZqIA46hHdybug5olxulyqSRvGjH1wPg-g&oe=69B93F7C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771160686937\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771160687,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:47.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:04:48'),
(20272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"129914707681280@lid\",\"pushName\":\"Anderson Silva\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/515929385_3898527583778396_4625310243233569845_n.jpg?ccb=11-4&oh=01_Q5Aa3wH-Py1ZsJjD2R9wW6jF8m5Ebg4G4ULR6W4AljfLzVbokA&oe=699EC585&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:48.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:48'),
(20273, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:51.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:51'),
(20274, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":true,\"id\":\"A545118EEF54D34E7305EB6BE1F6B3D1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771160691,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:51.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:04:51'),
(20275, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:52.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:04:52'),
(20276, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A545118EEF54D34E7305EB6BE1F6B3D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771160693355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:04:53.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:04:53'),
(20277, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A545118EEF54D34E7305EB6BE1F6B3D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771160948728,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:08.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:09:09'),
(20278, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:12.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:12'),
(20279, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:16.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:16'),
(20280, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:16.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:16'),
(20281, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"ACB26B6EE404025ACA894D9F1178F426\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Vc vai levar a vo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qos9wx9OhJNuGQVs82i3uo9p3hGMo2f06dmdO80rgWA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771160956,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:16.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:09:16'),
(20282, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:16.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:16'),
(20283, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:16.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:16'),
(20284, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:17.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:17'),
(20285, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:17.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:17'),
(20286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"ACCA1DAE121DE679E0A84AB7A053630E\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Ou passo ai\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1BFdw0CZBRQxdIw0fKRDweJcamcHjxkrmSl1bhF4B10=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771160960,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:20.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:09:20'),
(20287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:20.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:20'),
(20288, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:20.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:21'),
(20289, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:20.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:22'),
(20290, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:27.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:28'),
(20291, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:29.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:30'),
(20292, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"ACCB390520763D9657A4278D264749AF\"},\"pushName\":\"Rose\",\"message\":{\"conversation\":\"Pegar ela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"58DO5j9+3\\/Fva8POxrs9htmfIpxPlY9AykxEwmqKNCM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771160969,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:29.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:09:30'),
(20293, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:30.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:31'),
(20294, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:30.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:31'),
(20295, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:34.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:34'),
(20296, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":true,\"id\":\"A541C65503CFA3AC77AD6796F24CB86C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32002120_1993357651281625_5528593556517077435_n.enc?ccb=11-4&oh=01_Q5Aa3wGumTsjRI2oNWo9C1H5O31iRB0Ge194khtUIfqx6lHfdg&oe=69B93EB9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PzGb\\/wYETNdDGYb6nqhrUcaxEmdtmDWqXVE9\\/ToLPmQ=\",\"fileLength\":\"8699\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"ht9B32ynBUDNzXW6nET\\/MIae1fVEHAhgWh+PFsPNmNg=\",\"fileEncSha256\":\"9TvUUzc54KGm0d2kO9OYvRN+6ocJRQ6u9nC52K\\/7W+Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32002120_1993357651281625_5528593556517077435_n.enc?ccb=11-4&oh=01_Q5Aa3wGumTsjRI2oNWo9C1H5O31iRB0Ge194khtUIfqx6lHfdg&oe=69B93EB9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771160971\",\"waveform\":\"AAAAAAAAAAANMlFWWVdRSS9KRC45R0g0DQAAAAAAAAALBQAAAAAISE5QV1Q9RVRVUT0+QCEsTFRKTkZLPB4MDg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771160973,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:34.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:09:34'),
(20297, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A541C65503CFA3AC77AD6796F24CB86C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771160974367,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:34.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:09:35'),
(20298, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:09:34.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:09:35'),
(20299, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A541C65503CFA3AC77AD6796F24CB86C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771161007382,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:07.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:10:07'),
(20300, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689@lid\",\"id\":\"A541C65503CFA3AC77AD6796F24CB86C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771161008239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:08.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:10:08'),
(20301, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:12.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:10:12'),
(20302, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"presences\":{\"205325357551689@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:19.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:10:19'),
(20303, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:20.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:10:20'),
(20304, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"205325357551689@lid\",\"fromMe\":false,\"id\":\"ACE2A127A643AF7319A74AD44349814F\"},\"pushName\":\"Rose\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/34762550_665712399938465_3380494056353069005_n.enc?ccb=11-4&oh=01_Q5Aa3wHvAmCGwqwZzFXc6fVINzDTe0AvFdb0eXSjRGGFkkAqvw&oe=69B946BA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IolaniW\\/LmmHP+cVuDtEEkMMR9nSN63CvvUr\\/z9Ge2U=\",\"fileLength\":\"15894\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"QMbfah16xZvVfj9PRXy+0Fy0NwHVYa1ckG\\/BVHQn\\/54=\",\"fileEncSha256\":\"BAwqyJXiYfuuYh9O5KXJls02N3m2rZVSYOnvBV2p2vI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/34762550_665712399938465_3380494056353069005_n.enc?ccb=11-4&oh=01_Q5Aa3wHvAmCGwqwZzFXc6fVINzDTe0AvFdb0eXSjRGGFkkAqvw&oe=69B946BA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771161014\",\"waveform\":\"AFZXIlVQUltbWEpXTldUUjMyT1pCTEdcO1IbHxQOWURKYlZDRFZbWEFIPhUYGw4aLEdVW1cgTR4XGxwhHx8cDw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"N4FCaV1fekRBkQ==\",\"senderTimestamp\":\"1770638786\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"iLk9zndbeUn\\/SPcziZFFUKoEqVMpe7mj0sJnPTX\\/cN0=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771161020,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:20.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:10:20'),
(20305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:20.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:10:20'),
(20306, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"205325357551689@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/543539153_2908277106031955_3900093011788928709_n.jpg?ccb=11-4&oh=01_Q5Aa3wExQ8b_1BgLVKb9J9hGMo1zTVyDPZOpO6Su2Y0chgb2WA&oe=699EC684&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:10:20.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:10:20'),
(20307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A5DCD5CF3B035757C08EA6D988D44E3F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162529353,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:29.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:29'),
(20308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A5C477BA832D75A9A4DF141F4D66D5D7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162529337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:29.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:29'),
(20309, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A518D6CC4A4CBAD53E996A01933FDF91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162529225,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:29.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:29'),
(20310, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A5106E28C7F5459B192EB96382EAE6D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162529344,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:29.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:30'),
(20311, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A5DCD5CF3B035757C08EA6D988D44E3F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162547748,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:47.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:47'),
(20312, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A518D6CC4A4CBAD53E996A01933FDF91\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162547724,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:47.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:48'),
(20313, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A5106E28C7F5459B192EB96382EAE6D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162547743,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:47.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:48'),
(20314, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"129914707681280@lid\",\"id\":\"A5C477BA832D75A9A4DF141F4D66D5D7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162547735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:35:47.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:35:49'),
(20315, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A5103E795D5956DAFD6B77E00ABED2D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162609299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:36:49.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:36:49'),
(20316, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A58CCA3AE2B794286A6F797D34CF6767\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162611557,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:36:51.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:36:51'),
(20317, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A5EB6702EB0054491C3443FCDEC46CB7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162611761,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:36:51.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:36:52'),
(20318, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A50188A33A21BFB8BDF45C612CB98945\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162616090,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:36:56.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:36:56'),
(20319, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A5347BA0D43A4F9357F8EBAA44C31A1B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162616794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:36:56.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:36:57'),
(20320, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A528E143968B4863F4372B5560203D89\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162617093,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:36:57.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:36:57'),
(20321, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"217226695151773:20@lid\",\"id\":\"A57F259A4141A8AC46AE6D77A27942C1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771162620447,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:37:00.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:37:00'),
(20322, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"presences\":{\"126263498919938@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:48:45.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:48:45'),
(20323, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"presences\":{\"126263498919938@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:48:55.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:48:55'),
(20324, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"presences\":{\"126263498919938@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:05.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:06'),
(20325, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"presences\":{\"126263498919938@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:06.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:06'),
(20326, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:07.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:07'),
(20327, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":false,\"id\":\"AC23AC9680ACBDBCE693C590016DC46C\"},\"pushName\":\"Maria Firmino\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637690662_925488249900489_8449549222484725478_n.enc?ccb=11-4&oh=01_Q5Aa3wHtv9EkDgwEU-_KP8gl8L_azunRBDU2dUmwNDYB1i3WtA&oe=69B93345&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"iHfBIQBUziOmnxr+rT9SFRDNsJxFMN5ObEfeXB5dVfA=\",\"fileLength\":\"46009\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"OLK2u9MVLXWrxSwwwEDqRkvWGtQLYjNf7D4ETPmKVsc=\",\"fileEncSha256\":\"pIfXQ3Xv4Ttg9st9IcByJx8KucgFqcrwut80X9XR2r0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637690662_925488249900489_8449549222484725478_n.enc?ccb=11-4&oh=01_Q5Aa3wHtv9EkDgwEU-_KP8gl8L_azunRBDU2dUmwNDYB1i3WtA&oe=69B93345&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771163326\",\"waveform\":\"ADQoJgAyOBoqMAMtOjEXAhYlKwkYGjEsLRIzAAA6QDU7Ji8uIhgwAAAAKyAFOTEvKyohAAAFFhw3MyspMBgAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AMe1k+1q4CCPaYC6L7LlhNwIc3g5efzQwoLU4avh5t8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771163346,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:07.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:49:07'),
(20328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:07.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:08'),
(20329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:07.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:08'),
(20330, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":true,\"id\":\"A56CC6B3B34C56C0563E18EC6633C1D7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771163350,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:10.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:49:10'),
(20331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:10.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:10'),
(20332, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A56CC6B3B34C56C0563E18EC6633C1D7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771163350627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:10.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:49:11'),
(20333, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:49:10.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:49:11'),
(20334, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:55:39.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:55:40'),
(20335, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":true,\"id\":\"A57B31166B246EA7AFDB6F2D01373E24\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/30222583_1403142957595705_7315266842398883970_n.enc?ccb=11-4&oh=01_Q5Aa3wEIda7v6V6LaEM60nqOxun0ZKILFWuKlubuIvlcaV7exA&oe=69B95852&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Zw2HXhhiX0ggVC7rj5DNjFSRDugejVliPgy+7gI5U2I=\",\"fileLength\":\"5677\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"Ki0a0zveEXb5hmSj\\/9PzxXf358Atmm\\/fKhpoytEiClc=\",\"fileEncSha256\":\"PYuYfgwY6BO7eawZSJjqhessO9meKr\\/QvgoiZT6dbUE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/30222583_1403142957595705_7315266842398883970_n.enc?ccb=11-4&oh=01_Q5Aa3wEIda7v6V6LaEM60nqOxun0ZKILFWuKlubuIvlcaV7exA&oe=69B95852&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771163738\",\"waveform\":\"AAAdQEdJSk1TT0lDQkVLUjs+TFBKQDlHT0QtQ1FUSjAvNztDRz8XEyM8Nh8fQkU\\/KgAwREREPj5ESklGREVERA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771163739,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:55:39.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:55:40'),
(20336, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:55:39.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:55:40'),
(20337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A57B31166B246EA7AFDB6F2D01373E24\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771163740950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:55:40.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:55:41'),
(20338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A57B31166B246EA7AFDB6F2D01373E24\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771163763635,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:56:03.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:56:04'),
(20339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A57B31166B246EA7AFDB6F2D01373E24\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771163764386,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:56:04.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:56:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20340, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":false,\"id\":\"AC706A758E101B7DBD01A23284803F3E\"},\"pushName\":\"Maria Firmino\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637320476_2697277860629061_8695114173772759927_n.enc?ccb=11-4&oh=01_Q5Aa3wHlKKeUJzamx1N0EbB43rEGaAvGMbv5J6mVBnlcx6afuw&oe=69B94A6B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"YR86SUjxlOEVnqFHBgAd39nTq6e6H4rgk6\\/HXAJKngg=\",\"fileLength\":\"180895\",\"height\":1200,\"width\":1600,\"mediaKey\":\"0ry4qSCchq2HYA7uCZF56e4x8ii3+9vyipJ74iZrmwA=\",\"fileEncSha256\":\"pHb5WvV8Xrq0a\\/SNhxyDQgUMKIgfywPwJL+bKgRzoSA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637320476_2697277860629061_8695114173772759927_n.enc?ccb=11-4&oh=01_Q5Aa3wHlKKeUJzamx1N0EbB43rEGaAvGMbv5J6mVBnlcx6afuw&oe=69B94A6B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771163960\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAC8APwMBIgACEQEDEQH\\/xAAxAAACAwEBAAAAAAAAAAAAAAADBAECBQAGAQADAQEBAAAAAAAAAAAAAAACAwQAAQX\\/2gAMAwEAAhADEAAAAMltBn1Y9SVq5BaQsJaQ41p2+RIG7XGKt1KnFY5RvauG3C3MuCgGcikdFqq5N1sVeIP\\/xAAmEAACAQQBAwMFAAAAAAAAAAABAgADERIhEwQxQSJRYRUyQlJx\\/9oACAEBAAE\\/AKNrmBplRfElyNR3Vm12nUboPOlqYqfViSsLsVN615R6U13NxZfeUxsQNOSgfxINpmPEqNehV\\/kosuriBlt2ileIWNjaK2LQGAwNGYcVX5EXVopuBFOKi4vqaygaZ\\/BnIIzhlmYIiVgtp9QH6RMcmyiYEFja8ZWVe\\/eLwClseuXT2jBPBjcHGlvu8zFPDQ67wbm5ubiKDe845hP\\/xAAiEQACAQMEAgMAAAAAAAAAAAABAgADBBIREyFhQUIicYH\\/2gAIAQIBAT8At+U\\/Zh9xV+bjoS6bBB2Zb1FVTqZu0z7CB03GOXgS\\/BqYYcwPxBU08TPqF9fWf\\/\\/EACARAAICAQMFAAAAAAAAAAAAAAABAgMRBBJBISIjYXL\\/2gAIAQMBAT8Auj3FkenBXHbUvpmmTnY\\/SJwyx1MhDx4ZplGve2NDjnA0JY5P\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"KxCUEQQiEcqLTkkjPjUGkLSHXUKp1YIiaIoTc\\/V47DCq9l\\/q+ogjQA==\",\"scanLengths\":[17879,75482,27431,60103],\"midQualityFileSha256\":\"LQP5iv0ju4Lw1G\\/mlCOjgM\\/E\\/xZMPX6wk4Biz6BxSAg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fnhqUgru5hGI003wZv5Fln5wel16jgOAeIGmJ\\/J9VOY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771163962,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:59:22.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 10:59:23'),
(20341, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:59:22.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:59:23'),
(20342, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:59:22.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:59:23'),
(20343, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T10:59:22.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 10:59:24'),
(20344, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"126263498919938@lid\",\"fromMe\":true,\"id\":\"A5AB9C78937868A38670F8DFDCD53A8B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637280027_1725826561732851_7598065704880916932_n.enc?ccb=11-4&oh=01_Q5Aa3wF4cD-9qqvpxAOBMykJOZ_5ZShsJO6Bww0bt-VZAPXKvQ&oe=69B93318&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"l+WflCsBtvV9JDAnbycEdvQ0ElRZOIPJUs4X+BManDg=\",\"fileLength\":\"45805\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"RbqNrbE0HxYXLb1yNLp86DeaqLfQ7KRgFTcMVkkw+BE=\",\"fileEncSha256\":\"Tj4jZyN3Y\\/vMQPgScjmTM6d72+hocGr+J9QFGyyzYBU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637280027_1725826561732851_7598065704880916932_n.enc?ccb=11-4&oh=01_Q5Aa3wF4cD-9qqvpxAOBMykJOZ_5ZShsJO6Bww0bt-VZAPXKvQ&oe=69B93318&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771164122\",\"waveform\":\"AENcVVBSSC1LNyA+VUpTAQAuXUhVChFNUBNUSw9UOlMAAEMqOjlJARg6VQMATkZCRB5NSVEAAFJSTwgABFVGTg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771164142,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:02:22.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:02:22'),
(20346, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"126263498919938@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:02:22.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:02:22'),
(20347, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"126263498919938@lid\",\"pushName\":\"Maria Firmino\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/532971463_1560215715342199_2844163484485508665_n.jpg?ccb=11-4&oh=01_Q5Aa3wF0YdOlVQqONIhcnyd7-1mJSejMUIQ-ivuhL5kh02z0yg&oe=699ED850&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:02:22.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:02:23'),
(20348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A5AB9C78937868A38670F8DFDCD53A8B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771164146886,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:02:26.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:02:27'),
(20349, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"126263498919938@lid\",\"id\":\"A5AB9C78937868A38670F8DFDCD53A8B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771164148305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:02:28.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:02:28'),
(20350, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"presences\":{\"164016882245846@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:13.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:17:14'),
(20351, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"presences\":{\"164016882245846@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:15.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:17:15'),
(20352, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:15.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:17:15'),
(20353, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":false,\"id\":\"AC6DE94E5B728148DA82B951CC3B2BC6\"},\"pushName\":\"Jeferson Silveira\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bom dia\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5E01B7FB12F9B685D83C33580B2AE35\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"izWpRRDjawuWzRU+qZHB4alWufpAnCArIntlC14fe5g=\",\"fileLength\":\"164524\",\"height\":1280,\"width\":1073,\"mediaKey\":\"\\/OvVV+Gx8XLHSNFQMhtRs9i0AnQXEXtryuluTsPqh1M=\",\"fileEncSha256\":\"C02W2Fp0LX5KTXBsudd2Wf1VpEAnBXpR\\/U0b+UxBoyQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771090608\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAhgMBIgACEQEDEQH\\/xAAyAAACAwEBAQAAAAAAAAAAAAADBAACBQYBBwEBAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADmy93TzcMZT6HjYnOW6XQODZ7nLk48u7bV5224wYXnXt5nz7F+nlr5zPqEtx\\/UqcZpXV9zHInI2PKikCNGarr3OvGzX0GJPUy6ujKSsyFt7PoNrn8mkdERC\\/j6JnRutijYHiDdclwvWrWDm1EWJw18+TtjcG1mdnbh\\/TvUcEB0pOFJXXtcIeOwZ5MkdOXjPK7mcnFwbkvw5VuXzEHC2C5WssKSD1S1jJ60AmZWL1t1pWVlXDemvPK4l7D9HgmHCUHNW1hFNCts+QR1r6uxFoZ10b9vRpVorI96pRdbF0xiY7SrVo2X00fY8IrE14pLeeK4Temcxo8ZzDHg3nMQQBoSkm7+kfz9KMgjkGJeHMXKTl5gGPbMBGJDObsUk507ddaz7aDCe+MhzE4YtppeW86ZEvt+t0WS9mzbLeXpDinmRYeovEbtn+nQeZLzSZwXNaLxn\\/\\/EADwQAAEDBAECBAEJBQgDAAAAAAECAxEABBIhBRMxFCJBUTIGFSMkM1JhcYElNEKRoRY1RVSSscHRU2KC\\/9oACAEBAAE\\/AH\\/kxepfWFXdoklZ0XYMndWXyYuzdIl20eCDK2g9shNJ+TmJR+zmCkRILpk\\/rFOcI0h5DZtrZLgyJlwxBBjUUng0FzVjZlMaHWMzQ+Tq1QVcfbH8nSP+KtPks+yXS7aMuSqU\\/SnX9KX8nBBI49gfiXj\\/ANUj5N\\/TOrLDCm1QUoD0Y1\\/Z7TYNpbBfr9KdxTnBsrZdwt7VJOgoPfCatvk4UsIQbW2cc9Vl0mk\\/J1QWCeNtSkCI6p3+eq\\/s45jC+PtSY9HCNzVxwITmgWlq3KNZPGQre+1I+SHKOCUPWyh7hZNWXyQ5Zt0krY+H75q7Xbi5dBsVunNGUKPtogVxKrI3boY491lWCvOqYImpHtV0poX7YVZFyUzlJ\\/2pxdmlJmzcxk9kkbNM9MNICGylMaB7igRB1Sr\\/AGttVi\\/8WIhJIIomzKjnxD2cxOJOu0zQTZJDhRxLmQERiRNLTYLT\\/dL0BQUZSRs025ZsK6jXGPJVidhBq3ug+VfV3UAAbWCmZpREnVOoYWvz25V23TIaAVgyUAmT6bpojI69KuRfm4UG75ttOYxSSNiNiIqwHJC4c8TdsuIxVCEHYNXouQ6y6LtLTSYyyVA70g36lafZKITBmTRF4Dq4bk9gqo5D\\/wA7P9aTnjtW4E7pSikSpYA\\/E0\\/4pS0LYu20piMVbBNdPklYzeNiO4T6\\/wA5orv943dt+ppkvBtPVcQV+pSYFeb739adUuYS4kGfU0C\\/P26K+sEfbpimSqdrkx71enj\\/ABTodYdWeqjKIgHHRriDxfjXvCtvBzBcqUdETT1za3S3WHGnAGlg5SO4pPzcoAJS5pMgHISAKC+PKMcXTE+9BfHsqSoNu\\/eB8xpp1txBUkGKuGGLhotupOMzo+1Kf4laEIU08OmdJhQj+VNK4qFFCHpHpKtxQ+ZFnJbDyV+shc0wnjbh09MO5Ahe8gJFeX2NPW9stanFtyfUzXRsB2aVv86Qm1TCEtLgkGrdDaCQlMfrVweQ66+iWQnMRkBsRurFfJm4X4kMBrFUYRM0VBMklI9zqrgvEI6S0je+3alL5HIY9ApqfxTQOjtNT+KaWu\\/StWBYUCo4yYgUHORKSIYB\\/OaLnJjWNv27zTCrghXWDYPpian8U04p7JWPTj8aze+80Kyf1BbNMFzJWZR21FX\\/ABXHC6c6906FdVHwoPlUU62K4nhuO8e6li\\/dcdLSyQsGImnLSxuUPtLuFhKHAhfkNHiONUSrx5iBr0AFJ4TjwhRHIriQKTxNm2vP5zX3GjSeOZU24tN0ClIlRikjjFJkcgj9RSuM4x26S6q+IcHlAIgUeF45b7yBfOhbZK1xIFL43iFk58m4CO80xa2CGPLflSU+4JVTNpZvrwbvUqVMRFPcMGoU5cAT+FOcFZOuZKuzJVTHC2tuDhdKM+hE0xwZV5kviCParl+5Fy4WLa3WAtEqUB504+\\/uDXF3Vwm9dL1iwwjA4qTE+ncim7m7Krmbe3095djY9zQuXvWyYmPvihcvYfujIMjWaaNy9\\/lWTv74oXLnQehplLkeUZCFUh+4U4c7C2ACDCgpJk0Ly99bFidb6iadubpLaVs2zHVX9oCsCmrm+IcLthbZfw\\/SDdW9ytSil6xYQiDvJJpi5uBcN52VulM+ZaVp0KeuLnNYbSyUj4ZVSLh\\/I5IZiNEKHevEEBPkaJjfmFMvk\\/aFA16Gr5Fsb2V8mpo5\\/ZifuiuLRbi8ew5JT68Fyg+m6Wwxb3JCrtwLdVkIHbfr\\/OghtcHx6+8gUFW+5vVkGDR6UoBvnNiRTKMEKJeKwYMmhe2bmaQ+BGjQYabQlz50cwmAe43R8JCgORPuRNQyf8WV+WqaVatlTyr7OEkbOgO9N3Fu4QlDyVGJgU8E+ruO6huf3k1Df+ZMUwE688671eXXHt3uLtqVu5fEEz6Vxt1YO3TiLe1wWEKlWMSKfurbxYbct8lIEhUfr\\/xQfssp6QnX8NF+zQVJLIH\\/AM96NzZQT0hofdpLqSxkEpAI0Dqkh4D90tYkkjKsnuniLK3xnYyECiYKSiytj+ooBcT4K3Cgr3FfSeYJsbbv7irYgKk27KCR3SRTpWVKAaSoD3oKVE9FqpVOmG6YJkygDVXPJ2bFz0ltErKokJn0mrLk7S5fW0y2QpKVGSmBV3ctWqA6prIkhOqF7bEAkRIBEilXtsAkxIPqBNIvLZZhMTMdqcaaebU242CnWq8BZa+gH8zVwOOtIQpg+cdkgmanicW5YjehB1XU4nLLET+tN2dish5LU5Qe5pNjZpIIYAIMjZp5y4DhDbKCn3JoJexP1ZoGPvUFXCTItmp3Hmq2WpQlaAlUbFXPJWDFz0nGz1CqJCZ9Jqy5GxuX1tMI86UqJMRoVeXLFu0Fut5AqAAoXlmQCYEgRIo3lokJgApPqBqkXVmswkpJmgRB1Tz7TCM3NJkChyVguTkDjSr+wCAuUkSOwpHI8crsUjU7FHk7NLiWxkSSAIBjdSPanSCFgJkwdTR63bwqZBP8dNBRUOpbhMn3mmiMu3pV1foZu+l83rcOQGYH4VYXyH7lxtNitqEqOZETV+90mQoW4clYEHdC5TAJtFSQOwmvEpCUlFospPfURTdw2pQAtVp3EkUIg+WnCAhRLeUCY96Tet6HgHQSPu0q8SES3YOKOpTEd6N4kNBfzesmRKQOwJpq6Q64hHg1pB2FKEARWvu1dYqfJNs4rDQIVAM0lpvKfCOg9x5q6smTZu\\/zqxWFZDoKRA9TVzc8om5wYt0qay+I+0VZXHJOXC03FultrFWJBq9cukNA26cl5CfyoP3gAliTAmDRfvClJSwB7gmkP3RICmMRP3qdS440tKHShR\\/iHcV4haHVIVfuygwQUU5dQ4geNcTIn4JBFJu1Afv7nxRtulXCg4r664kHfwSKN2U4E3649+nVmpThKkXi3ADsEUomTQfu8SehsH73emXblRhxoJHuDNNE5HfpVyjl\\/FQzctpbz7EiYirFHLeIc8RcNqRiqEpOwadF4lMog+8qgCh85HYdaKT+NFHImPpUJ36H0pLfLeSXGyPX8awfCVSr+tYud8h\\/Ols8qFrLbrRSVeUGujyuQBdZGjqujzCQkKeZ9Nn1NMM38KD6kH2xoNvjsacbuiTiuN0Rcg7eSDHvQTeH4XUmmUXGW1elX7nFHkCH0Pl0LHwnUwK4hfF+Ne8Ml\\/qYLkrOiJq7ebQw4VIUoERA7maWbEwhbT2SYmPSaS9x+lBL3kA9ferZ6wQ6UtqXkdAEmKX03G1oUklJEGvm2x35HP8AWafsuPYbLi0PFIPosmlvcWUITFwoJ0Iy7E0lzjFJ6SUvFOYMSRBV+dDjbIAwhz\\/WfWmbK1ZWFoDkj3WTSlpk6NXDln1jmy4pWQ7bBOqsV2sL6LbidbCvzNNLTkdHtVwOV8WrosslrIbVE9qsRyfiHPEtMpbwVjjEzVueRIc6hZUoL7SO36UBfQqUMzOiDX10D7FmY96Av4MtMT6EGv2j0HYSz1dY71STfgpCmmSI2coo\\/O2P2dsTJ1PcVPKCfoLY\\/rX7SLchi3C\\/aanlMB9Fb5bnzV+1StvyW4T\\/AB7339KWFSqAJqLifgboJfkabA1NNA5enar1uw8Y4p25eQvqokJTr4dCRXFt2CL57o3bzjvTVkF9oJmauba0s8nluPedyRjGjs19TME3bo3I3WNkACbpwpVvZ1qgmzVH113\\/AFGmWktpWOotU\\/e3V2bN+4aYU+6hxBJGGqKLAlUcm+hQ18dFXHIGXjHDlAKpmdRuivjg3PzlclOh8R9aHzZKsuRdV5cSCoxFWz1s80Cy5kkaq5ft0L6a3FJUdiBSbizUZFw5qff0oP8AHgKPXVv8D6VausuyW1kga7Vc+MF4vp8a24nMecoAJ13muON6blzq8a2wjBULAEmr3xZcZS3bJcbmVZJB9azux3sQdd9ClG7CkhNkgtwNaBBrO6\\/yA\\/mKTmUyUQYGorpjLLpjKInHdOKvkvLxsG3EfwmQD+tB2\\/x3xafyzH\\/VFy8gFPGgz6SKtw6tBL1olsz20qaCSnQQB+Qp8vh0YWwWkjZ0IoLvMv3JMfmKIdk\\/VhFW3U3k0En2Aq86Bvl5csWjmJbGQjX5xXGhrxrxHJqfVgqW9wPxpxJU2sIcxUQYVEwaZsPBsoBv3Mysla1bzWqoGknkTkFewFNMuIWSu5UsexSBQiDs05dWg6iFXASR5T6EE1apYzUlPJOLKEHIHUA+80hpGo5pWu0FNHolrBXKmQ58YIBH4GmVstuyrlC5AMpJTFNusO5dN0LgwSndLuLZK1JL6QQdiunan\\/EV7PoqkC3ZcSo3p9VYk+lW7zDiyEOhRxmBV0\\/F+v8AYwdOY+mg71XGvjxTmPEi38ivpIImuur2Fcl0n0NJet0OJylIIUfN+lC4TlCuOMhUThPb1k111ewo3CwhZCASBoUbnNeR4kFw9yQP96TelAKfmlScj5glIIoOslcniPTvgmjcpSrBXDCFblKAQaLqQU\\/sVJSf\\/VMirW7UDgnjyyFbJgAUstlSiWWyZntTj60LxRYoUBoHtTDynJ6lkhuAO+6YWErJS2gGO4Ff\\/8QAJxEAAQIEBQUBAQEAAAAAAAAAAAECAxEUUwQTUVJhEBIhQZExM0L\\/2gAIAQIBAT8AqYkvQmKiroLiovBVRV2lTF4KmJwVUVNpVRZehMTEXaej11kKnVClhb1KOFccUkK44o4N15SQt7ikhb3FHBuOKSFccUsO44z1lPtKhdpULtKl2wqF2lQu0qXbCpXagmIVf8oeZfino+iKnSfVCXBLwSNCXBLgToiGWy4wymXWGUy6wSEy60y2XWmWy60WEy80ymXWCQmy\\/q078PL+a\\/TuwqfkFfp34Wyv0R2FT8hL9O\\/DWl+nfhrS\\/RXYX3BX6d2Fsr9EdhvUFSSy9\\/hJZJ4UkuinnRSS6KedFJcKSXRREXQzW8mczkzmcmczkzW8ma0zmcmczkzWLqf\\/xAArEQABAgMFBwUBAAAAAAAAAAAAAQIDFJEEERITUgUVMVFTYaEgITBBQ7H\\/2gAIAQMBAT8AxKI93YxuMbuxiUxKY3djGojl+FCYXpMJp3Qh0JpyfjDoTTuhDoTLuiyhMu6LKE07oQ6Ey7osoTDl\\/FlDM7GZ2MxeRmryMzsZi8jNXkZq8hInb4U+FCWi6VoSsXS6hKxdLqKS0XS6hLRdLqEtF0uoSsXS6hKxdLqKS8RPpaE1F44hbZH1k5H1i2yOvF\\/hCbjav4TcbV4QnI6cHk5H1k3HX3V6+n39CISEa+69vkXZlpROLKibNtC\\/bKi7NtCaTd8fm3ybvj82+RNm2heCsqbttF917R2z7Q1blw1P\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"BYivqBjVcZ\\/NdZ08IF+75IOnTvIjusAcPPfDzvkUz4khcNypbhUhQw==\",\"scanLengths\":[14227,80678,30618,39001],\"midQualityFileSha256\":\"5FKXs9JOspQ9E+ZI63DfFaMy7DYXP5RnBgAc30wjFDI=\"}},\"remoteJid\":\"status@broadcast\"},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LKfHydqo4rCPpiyW\\/TRswEsC4ebt7J\\/0fM83EQXGAKc=\"}},\"contextInfo\":{\"stanzaId\":\"A5E01B7FB12F9B685D83C33580B2AE35\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"izWpRRDjawuWzRU+qZHB4alWufpAnCArIntlC14fe5g=\",\"fileLength\":\"164524\",\"height\":1280,\"width\":1073,\"mediaKey\":\"\\/OvVV+Gx8XLHSNFQMhtRs9i0AnQXEXtryuluTsPqh1M=\",\"fileEncSha256\":\"C02W2Fp0LX5KTXBsudd2Wf1VpEAnBXpR\\/U0b+UxBoyQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNgwHsnJglD5za5-ChBpn9cuVw6BhWSrxxA4XTwTlvZwGHGUl0q51eSX_4Eo3y2TCxUrLuXgA88FKx2m7iece4d8f49nV8Zx06AIcsX0Q?ccb=9-4&oh=01_Q5Aa3wFu_Y3ae0hOUL4xE4BRFIGyGxpp1Ep3iOOkzSMyvAxhQw&oe=69B821CF&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771090608\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAKAAhgMBIgACEQEDEQH\\/xAAyAAACAwEBAQAAAAAAAAAAAAADBAACBQYBBwEBAQEBAQEAAAAAAAAAAAAAAAECAwQF\\/9oADAMBAAIQAxAAAADmy93TzcMZT6HjYnOW6XQODZ7nLk48u7bV5224wYXnXt5nz7F+nlr5zPqEtx\\/UqcZpXV9zHInI2PKikCNGarr3OvGzX0GJPUy6ujKSsyFt7PoNrn8mkdERC\\/j6JnRutijYHiDdclwvWrWDm1EWJw18+TtjcG1mdnbh\\/TvUcEB0pOFJXXtcIeOwZ5MkdOXjPK7mcnFwbkvw5VuXzEHC2C5WssKSD1S1jJ60AmZWL1t1pWVlXDemvPK4l7D9HgmHCUHNW1hFNCts+QR1r6uxFoZ10b9vRpVorI96pRdbF0xiY7SrVo2X00fY8IrE14pLeeK4Temcxo8ZzDHg3nMQQBoSkm7+kfz9KMgjkGJeHMXKTl5gGPbMBGJDObsUk507ddaz7aDCe+MhzE4YtppeW86ZEvt+t0WS9mzbLeXpDinmRYeovEbtn+nQeZLzSZwXNaLxn\\/\\/EADwQAAEDBAECBAEJBQgDAAAAAAECAxEABBIhBRMxFCJBUTIGFSMkM1JhcYElNEKRoRY1RVSSscHRU2KC\\/9oACAEBAAE\\/AH\\/kxepfWFXdoklZ0XYMndWXyYuzdIl20eCDK2g9shNJ+TmJR+zmCkRILpk\\/rFOcI0h5DZtrZLgyJlwxBBjUUng0FzVjZlMaHWMzQ+Tq1QVcfbH8nSP+KtPks+yXS7aMuSqU\\/SnX9KX8nBBI49gfiXj\\/ANUj5N\\/TOrLDCm1QUoD0Y1\\/Z7TYNpbBfr9KdxTnBsrZdwt7VJOgoPfCatvk4UsIQbW2cc9Vl0mk\\/J1QWCeNtSkCI6p3+eq\\/s45jC+PtSY9HCNzVxwITmgWlq3KNZPGQre+1I+SHKOCUPWyh7hZNWXyQ5Zt0krY+H75q7Xbi5dBsVunNGUKPtogVxKrI3boY491lWCvOqYImpHtV0poX7YVZFyUzlJ\\/2pxdmlJmzcxk9kkbNM9MNICGylMaB7igRB1Sr\\/AGttVi\\/8WIhJIIomzKjnxD2cxOJOu0zQTZJDhRxLmQERiRNLTYLT\\/dL0BQUZSRs025ZsK6jXGPJVidhBq3ug+VfV3UAAbWCmZpREnVOoYWvz25V23TIaAVgyUAmT6bpojI69KuRfm4UG75ttOYxSSNiNiIqwHJC4c8TdsuIxVCEHYNXouQ6y6LtLTSYyyVA70g36lafZKITBmTRF4Dq4bk9gqo5D\\/wA7P9aTnjtW4E7pSikSpYA\\/E0\\/4pS0LYu20piMVbBNdPklYzeNiO4T6\\/wA5orv943dt+ppkvBtPVcQV+pSYFeb739adUuYS4kGfU0C\\/P26K+sEfbpimSqdrkx71enj\\/ABTodYdWeqjKIgHHRriDxfjXvCtvBzBcqUdETT1za3S3WHGnAGlg5SO4pPzcoAJS5pMgHISAKC+PKMcXTE+9BfHsqSoNu\\/eB8xpp1txBUkGKuGGLhotupOMzo+1Kf4laEIU08OmdJhQj+VNK4qFFCHpHpKtxQ+ZFnJbDyV+shc0wnjbh09MO5Ahe8gJFeX2NPW9stanFtyfUzXRsB2aVv86Qm1TCEtLgkGrdDaCQlMfrVweQ66+iWQnMRkBsRurFfJm4X4kMBrFUYRM0VBMklI9zqrgvEI6S0je+3alL5HIY9ApqfxTQOjtNT+KaWu\\/StWBYUCo4yYgUHORKSIYB\\/OaLnJjWNv27zTCrghXWDYPpian8U04p7JWPTj8aze+80Kyf1BbNMFzJWZR21FX\\/ABXHC6c6906FdVHwoPlUU62K4nhuO8e6li\\/dcdLSyQsGImnLSxuUPtLuFhKHAhfkNHiONUSrx5iBr0AFJ4TjwhRHIriQKTxNm2vP5zX3GjSeOZU24tN0ClIlRikjjFJkcgj9RSuM4x26S6q+IcHlAIgUeF45b7yBfOhbZK1xIFL43iFk58m4CO80xa2CGPLflSU+4JVTNpZvrwbvUqVMRFPcMGoU5cAT+FOcFZOuZKuzJVTHC2tuDhdKM+hE0xwZV5kviCParl+5Fy4WLa3WAtEqUB504+\\/uDXF3Vwm9dL1iwwjA4qTE+ncim7m7Krmbe3095djY9zQuXvWyYmPvihcvYfujIMjWaaNy9\\/lWTv74oXLnQehplLkeUZCFUh+4U4c7C2ACDCgpJk0Ly99bFidb6iadubpLaVs2zHVX9oCsCmrm+IcLthbZfw\\/SDdW9ytSil6xYQiDvJJpi5uBcN52VulM+ZaVp0KeuLnNYbSyUj4ZVSLh\\/I5IZiNEKHevEEBPkaJjfmFMvk\\/aFA16Gr5Fsb2V8mpo5\\/ZifuiuLRbi8ew5JT68Fyg+m6Wwxb3JCrtwLdVkIHbfr\\/OghtcHx6+8gUFW+5vVkGDR6UoBvnNiRTKMEKJeKwYMmhe2bmaQ+BGjQYabQlz50cwmAe43R8JCgORPuRNQyf8WV+WqaVatlTyr7OEkbOgO9N3Fu4QlDyVGJgU8E+ruO6huf3k1Df+ZMUwE688671eXXHt3uLtqVu5fEEz6Vxt1YO3TiLe1wWEKlWMSKfurbxYbct8lIEhUfr\\/xQfssp6QnX8NF+zQVJLIH\\/AM96NzZQT0hofdpLqSxkEpAI0Dqkh4D90tYkkjKsnuniLK3xnYyECiYKSiytj+ooBcT4K3Cgr3FfSeYJsbbv7irYgKk27KCR3SRTpWVKAaSoD3oKVE9FqpVOmG6YJkygDVXPJ2bFz0ltErKokJn0mrLk7S5fW0y2QpKVGSmBV3ctWqA6prIkhOqF7bEAkRIBEilXtsAkxIPqBNIvLZZhMTMdqcaaebU242CnWq8BZa+gH8zVwOOtIQpg+cdkgmanicW5YjehB1XU4nLLET+tN2dish5LU5Qe5pNjZpIIYAIMjZp5y4DhDbKCn3JoJexP1ZoGPvUFXCTItmp3Hmq2WpQlaAlUbFXPJWDFz0nGz1CqJCZ9Jqy5GxuX1tMI86UqJMRoVeXLFu0Fut5AqAAoXlmQCYEgRIo3lokJgApPqBqkXVmswkpJmgRB1Tz7TCM3NJkChyVguTkDjSr+wCAuUkSOwpHI8crsUjU7FHk7NLiWxkSSAIBjdSPanSCFgJkwdTR63bwqZBP8dNBRUOpbhMn3mmiMu3pV1foZu+l83rcOQGYH4VYXyH7lxtNitqEqOZETV+90mQoW4clYEHdC5TAJtFSQOwmvEpCUlFospPfURTdw2pQAtVp3EkUIg+WnCAhRLeUCY96Tet6HgHQSPu0q8SES3YOKOpTEd6N4kNBfzesmRKQOwJpq6Q64hHg1pB2FKEARWvu1dYqfJNs4rDQIVAM0lpvKfCOg9x5q6smTZu\\/zqxWFZDoKRA9TVzc8om5wYt0qay+I+0VZXHJOXC03FultrFWJBq9cukNA26cl5CfyoP3gAliTAmDRfvClJSwB7gmkP3RICmMRP3qdS440tKHShR\\/iHcV4haHVIVfuygwQUU5dQ4geNcTIn4JBFJu1Afv7nxRtulXCg4r664kHfwSKN2U4E3649+nVmpThKkXi3ADsEUomTQfu8SehsH73emXblRhxoJHuDNNE5HfpVyjl\\/FQzctpbz7EiYirFHLeIc8RcNqRiqEpOwadF4lMog+8qgCh85HYdaKT+NFHImPpUJ36H0pLfLeSXGyPX8awfCVSr+tYud8h\\/Ols8qFrLbrRSVeUGujyuQBdZGjqujzCQkKeZ9Nn1NMM38KD6kH2xoNvjsacbuiTiuN0Rcg7eSDHvQTeH4XUmmUXGW1elX7nFHkCH0Pl0LHwnUwK4hfF+Ne8Ml\\/qYLkrOiJq7ebQw4VIUoERA7maWbEwhbT2SYmPSaS9x+lBL3kA9ferZ6wQ6UtqXkdAEmKX03G1oUklJEGvm2x35HP8AWafsuPYbLi0PFIPosmlvcWUITFwoJ0Iy7E0lzjFJ6SUvFOYMSRBV+dDjbIAwhz\\/WfWmbK1ZWFoDkj3WTSlpk6NXDln1jmy4pWQ7bBOqsV2sL6LbidbCvzNNLTkdHtVwOV8WrosslrIbVE9qsRyfiHPEtMpbwVjjEzVueRIc6hZUoL7SO36UBfQqUMzOiDX10D7FmY96Av4MtMT6EGv2j0HYSz1dY71STfgpCmmSI2coo\\/O2P2dsTJ1PcVPKCfoLY\\/rX7SLchi3C\\/aanlMB9Fb5bnzV+1StvyW4T\\/AB7339KWFSqAJqLifgboJfkabA1NNA5enar1uw8Y4p25eQvqokJTr4dCRXFt2CL57o3bzjvTVkF9oJmauba0s8nluPedyRjGjs19TME3bo3I3WNkACbpwpVvZ1qgmzVH113\\/AFGmWktpWOotU\\/e3V2bN+4aYU+6hxBJGGqKLAlUcm+hQ18dFXHIGXjHDlAKpmdRuivjg3PzlclOh8R9aHzZKsuRdV5cSCoxFWz1s80Cy5kkaq5ft0L6a3FJUdiBSbizUZFw5qff0oP8AHgKPXVv8D6VausuyW1kga7Vc+MF4vp8a24nMecoAJ13muON6blzq8a2wjBULAEmr3xZcZS3bJcbmVZJB9azux3sQdd9ClG7CkhNkgtwNaBBrO6\\/yA\\/mKTmUyUQYGorpjLLpjKInHdOKvkvLxsG3EfwmQD+tB2\\/x3xafyzH\\/VFy8gFPGgz6SKtw6tBL1olsz20qaCSnQQB+Qp8vh0YWwWkjZ0IoLvMv3JMfmKIdk\\/VhFW3U3k0En2Aq86Bvl5csWjmJbGQjX5xXGhrxrxHJqfVgqW9wPxpxJU2sIcxUQYVEwaZsPBsoBv3Mysla1bzWqoGknkTkFewFNMuIWSu5UsexSBQiDs05dWg6iFXASR5T6EE1apYzUlPJOLKEHIHUA+80hpGo5pWu0FNHolrBXKmQ58YIBH4GmVstuyrlC5AMpJTFNusO5dN0LgwSndLuLZK1JL6QQdiunan\\/EV7PoqkC3ZcSo3p9VYk+lW7zDiyEOhRxmBV0\\/F+v8AYwdOY+mg71XGvjxTmPEi38ivpIImuur2Fcl0n0NJet0OJylIIUfN+lC4TlCuOMhUThPb1k111ewo3CwhZCASBoUbnNeR4kFw9yQP96TelAKfmlScj5glIIoOslcniPTvgmjcpSrBXDCFblKAQaLqQU\\/sVJSf\\/VMirW7UDgnjyyFbJgAUstlSiWWyZntTj60LxRYoUBoHtTDynJ6lkhuAO+6YWErJS2gGO4Ff\\/8QAJxEAAQIEBQUBAQEAAAAAAAAAAAECAxEUUwQTUVJhEBIhQZExM0L\\/2gAIAQIBAT8AqYkvQmKiroLiovBVRV2lTF4KmJwVUVNpVRZehMTEXaej11kKnVClhb1KOFccUkK44o4N15SQt7ikhb3FHBuOKSFccUsO44z1lPtKhdpULtKl2wqF2lQu0qXbCpXagmIVf8oeZfino+iKnSfVCXBLwSNCXBLgToiGWy4wymXWGUy6wSEy60y2XWmWy60WEy80ymXWCQmy\\/q078PL+a\\/TuwqfkFfp34Wyv0R2FT8hL9O\\/DWl+nfhrS\\/RXYX3BX6d2Fsr9EdhvUFSSy9\\/hJZJ4UkuinnRSS6KedFJcKSXRREXQzW8mczkzmcmczkzW8ma0zmcmczkzWLqf\\/xAArEQABAgMFBwUBAAAAAAAAAAAAAQIDFJEEERITUgUVMVFTYaEgITBBQ7H\\/2gAIAQMBAT8AxKI93YxuMbuxiUxKY3djGojl+FCYXpMJp3Qh0JpyfjDoTTuhDoTLuiyhMu6LKE07oQ6Ey7osoTDl\\/FlDM7GZ2MxeRmryMzsZi8jNXkZq8hInb4U+FCWi6VoSsXS6hKxdLqKS0XS6hLRdLqEtF0uoSsXS6hKxdLqKS8RPpaE1F44hbZH1k5H1i2yOvF\\/hCbjav4TcbV4QnI6cHk5H1k3HX3V6+n39CISEa+69vkXZlpROLKibNtC\\/bKi7NtCaTd8fm3ybvj82+RNm2heCsqbttF917R2z7Q1blw1P\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"BYivqBjVcZ\\/NdZ08IF+75IOnTvIjusAcPPfDzvkUz4khcNypbhUhQw==\",\"scanLengths\":[14227,80678,30618,39001],\"midQualityFileSha256\":\"5FKXs9JOspQ9E+ZI63DfFaMy7DYXP5RnBgAc30wjFDI=\"}},\"remoteJid\":\"status@broadcast\"},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771165035,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:15.725Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:17:16'),
(20354, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:15.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:17:16'),
(20355, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:16.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:17:17'),
(20356, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A56A8EA1165FEEAEEF7DC1AA5940ABE4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771165036,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:16.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:17:17'),
(20357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:15.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:17:17'),
(20358, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:16.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:17:18'),
(20359, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A56A8EA1165FEEAEEF7DC1AA5940ABE4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771165036612,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:16.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:17:18'),
(20360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A56A8EA1165FEEAEEF7DC1AA5940ABE4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771165039514,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:17:19.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:17:19'),
(20361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A5C264A2243ACF77FB24E55739E546D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771166948,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:08.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:08'),
(20362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:08.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:08'),
(20363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:08.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:08'),
(20364, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:09.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:09'),
(20365, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A51615A6301204E9244A8CF042D600DF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bom\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771166948,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:09.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:09'),
(20366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:09.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:10'),
(20367, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A5C264A2243ACF77FB24E55739E546D4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771166949678,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:09.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:10'),
(20368, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A51615A6301204E9244A8CF042D600DF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771166949682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:09.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:10'),
(20369, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A51615A6301204E9244A8CF042D600DF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771166956165,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:16.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:16'),
(20370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A5C264A2243ACF77FB24E55739E546D4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771166956170,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:16.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:16'),
(20371, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5E58367C5261BE2F58B6CEEC035C726\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":176197},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":176197},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771166959,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:19.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:19'),
(20372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:19.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:19'),
(20373, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"presences\":{\"164016882245846@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:19.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:20'),
(20374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAlJSQeld53rQJ59jAn1whSwzZTm_VXfO7lGJ35oZC_Q&oe=699F0254&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:19.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:20'),
(20375, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C7C56D3241276A3902\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771166960,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:20.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:20'),
(20376, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:25.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:25'),
(20377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":false,\"id\":\"AC9D3E92006D9A076F1B608F5BE7A2BE\"},\"pushName\":\"Jeferson Silveira\",\"message\":{\"conversation\":\"Manda seu pix\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RYfv5Drz0btyH9NmRc23r5GXaJHCSy9OwX+CgDw3A6w=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771166965,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:25.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 11:49:25'),
(20378, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB095671EB39B7F53727E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 164016882245846\\nMensagem: \\\"Manda seu pix\\\"\\n\\nUse: \\/aprovar 164016882245846  (automático)\\nUse: \\/pago 164016882245846  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771166965,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:26.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:26'),
(20379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:25.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:26'),
(20380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wGd2AaCImdRte_9ad_GlDvM2ZbjsH66MZd-9jPQpSaQow&oe=699ED70B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:25.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:26'),
(20381, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D96FC5BEB74D528102\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 164016882245846\\nMensagem: \\\"Manda seu pix\\\"\\n\\nUse: \\/aprovar 164016882245846  (automático)\\nUse: \\/pago 164016882245846  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771166966,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T11:49:26.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 11:49:27'),
(20382, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:01:59.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:02:00'),
(20383, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D7983696D3BF7E9785\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nErick Souza, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 40,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771167720,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:02:01.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:02:01'),
(20384, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0D7983696D3BF7E9785\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771167723463,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:02:03.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:02:03'),
(20385, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0D7983696D3BF7E9785\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771167737036,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:02:17.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:02:17');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20386, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A545A89EC99801A79ED580EB34AF7392\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":177097},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":177097},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771167861,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:21.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:04:21'),
(20387, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:21.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:21'),
(20388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAlJSQeld53rQJ59jAn1whSwzZTm_VXfO7lGJ35oZC_Q&oe=699F0254&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:21.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:21'),
(20389, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CC33E1BEE74EE8FDC9\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771167861,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:22.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:22'),
(20390, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5FE6AB08B30BBF560C381FEA3FE8848\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":177118},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":177118},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771167882,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:42.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:04:43'),
(20391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAlJSQeld53rQJ59jAn1whSwzZTm_VXfO7lGJ35oZC_Q&oe=699F0254&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:42.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:43'),
(20392, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:42.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:43'),
(20393, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0876353201A87803652\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771167883,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:43.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:43'),
(20394, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:49.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:49'),
(20395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A570A6156EAB3343685CB37EBB8F4483\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Adilson\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":177125},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":177125},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771167889,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:49.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:04:50'),
(20396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wEAlJSQeld53rQJ59jAn1whSwzZTm_VXfO7lGJ35oZC_Q&oe=699F0254&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:04:49.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:04:50'),
(20397, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A533A50A183002550EB13FFE4539CAA7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UE9LFTWQSF\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771167994,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:06:34.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:06:35'),
(20398, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:06:34.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:06:35'),
(20399, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:06:35.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:06:36'),
(20400, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A533A50A183002550EB13FFE4539CAA7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771167996571,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:06:36.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:06:36'),
(20401, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5A42FB1A6F5A1F824009E4D10EF95CF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771168678138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:17:58.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:17:58'),
(20402, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5A726020093486504501E7CF0EF50EF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771168678113,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:17:58.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:17:58'),
(20403, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5AAFB91886EA43E4FEAB3DCE2997524\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771168678130,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:17:58.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:17:58'),
(20404, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"15122697306187@lid\",\"id\":\"A5AE8074367B26CA43F63FEE3DDD03C7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771168678124,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:17:58.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:17:59'),
(20405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A533A50A183002550EB13FFE4539CAA7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771168778822,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:19:38.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:19:39'),
(20406, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"presences\":{\"164016882245846@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:20:02.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:20:02'),
(20407, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:20:05.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:20:05'),
(20408, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":false,\"id\":\"AC7F10DADC3E80CA41936DF518D84D98\"},\"pushName\":\"Jeferson Silveira\",\"message\":{\"conversation\":\"Eu não lembro o valor que valor é\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wA9ZV2XpLVG17Ls\\/qzc1TBBhpn0Z+YaD1jyjun9p+Qo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771168805,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:20:05.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:20:05'),
(20409, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:20:06.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:20:06'),
(20410, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:20:05.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:20:06'),
(20411, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:16.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:29:16'),
(20412, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A5F901CE74AF7D6768337964E6E25819\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/33538303_947539771296188_739118437009562548_n.enc?ccb=11-4&oh=01_Q5Aa3wGZ7qx46x9Zx6XdokWbcDeL1Uj4A_7rLzxo1LYXS2V03w&oe=69B954D1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wUnsfZ8\\/GRn6UhySxAtdtPyoW\\/jb3FabUasDB\\/6xBzc=\",\"fileLength\":\"6679\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"PBNAgjwSccoOxW8EGL3VDlKqoj+f9TGdeV4jJQ8FBPQ=\",\"fileEncSha256\":\"81ThiJdMHCavYRRfvnphg8hz08kuH+LhqsQdZy91GaU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/33538303_947539771296188_739118437009562548_n.enc?ccb=11-4&oh=01_Q5Aa3wGZ7qx46x9Zx6XdokWbcDeL1Uj4A_7rLzxo1LYXS2V03w&oe=69B954D1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771169354\",\"waveform\":\"AEZVUlReYmBcWE08Mj9STkFFYGJeRD1IWF9USz83Nj1PWl5fXlpSU0tDNjRLWlVIPTk7Mi9GUVFPU1ZXVFRVUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771169356,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:16.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:29:16'),
(20413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:16.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:29:17'),
(20414, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A5F901CE74AF7D6768337964E6E25819\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771169359142,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:19.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:29:19'),
(20415, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A5F901CE74AF7D6768337964E6E25819\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771169363601,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:23.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:29:23'),
(20416, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A5F901CE74AF7D6768337964E6E25819\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771169364503,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:24.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:29:24'),
(20417, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"presences\":{\"164016882245846@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:33.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:29:33'),
(20418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:34.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:29:34'),
(20419, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":false,\"id\":\"ACB5B7034EB753A613DF6C2B5BC9A282\"},\"pushName\":\"Jeferson Silveira\",\"message\":{\"conversation\":\"👍\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LgOrNSwvo1\\/VJYd1n1dpu+cxINU8blslMCj3CgNgzYY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771169374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:34.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:29:34'),
(20420, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:34.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:29:34'),
(20421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:29:34.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:29:35'),
(20422, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:30:54.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:30:55'),
(20423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":false,\"id\":\"AC77DC38FDE70E53572460F70A000201\"},\"pushName\":\"Jeferson Silveira\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/35087573_1289510193013615_5995153550651668512_n.enc?ccb=11-4&oh=01_Q5Aa3wGULN1iIkJveXRtY54WrqQOekF40OpJKF1TE-xPQ1eC_g&oe=69B949AA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"UhwN+NLnTVkykJo0tIRPMlrgRhNA5cOhLcaXcuDYR2o=\",\"fileLength\":\"6042\",\"pageCount\":2,\"mediaKey\":\"IZsCj7PTZOuDFTzGkT1L8fm05dHkijHqywkea\\/stB1g=\",\"fileName\":\"1771169446179.pdf\",\"fileEncSha256\":\"MT1z+ebDBaXH8eGRChkYK8bN7RIHJpUT2T16vlxiR0Q=\",\"directPath\":\"\\/v\\/t62.7119-24\\/35087573_1289510193013615_5995153550651668512_n.enc?ccb=11-4&oh=01_Q5Aa3wGULN1iIkJveXRtY54WrqQOekF40OpJKF1TE-xPQ1eC_g&oe=69B949AA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771169453\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/18893936_1612230853247337_1708060161840207256_n.enc?ccb=11-4&oh=01_Q5Aa3wG6xVCxwoho8Lwc6a4ROJqh1spLkgF4lEnQqOFXwsgTTg&oe=69B964C1&_nc_sid=5e03e0\",\"thumbnailSha256\":\"hMgnGmZtVyZH7KlUh9PSShX0pPe4qDyz633LAgXlKKQ=\",\"thumbnailEncSha256\":\"\\/BOaDbyQTgBEPpop+JU6R2xfM2SlHC3dLaB\\/yrhKrGE=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAAAiGkFAAjidwAADBsAADl1GbQAB\\/\\/EAC4QAAIBAgQDBgYDAAAAAAAAAAECEQADEiAhMRNxkQQQIlNhgiQyM0FDgVFUof\\/aAAgBAQABPwDue9btsoYxMxSdqsEqofU+ma6hxSt5z6CKCuPyXP8AKQYRq5PPJ7a9te2vbX67ro8PzEa1ZupanFcLTQZW2OV1xCIB51wj5drpQULsAOWW9GDViPUUNh8V+tK4bx9dugoWnDAm8xH8aZLs4dExGdqJkBj2eTyFAyBpGW6JXcjX7UAV2vXelKpG7E5XLASFmuK\\/kvXFfyHoZLxUJ4jAmrToTLdq0H2YgVxbR\\/InUUCDsZyXZw6Ji12oF58XZOiipH9M9BS3GEDgMoPLIQDXDX16nJHd\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwBH\\/8QAFxEAAwEAAAAAAAAAAAAAAAAAACFAUf\\/aAAgBAwEBPwAWT\\/\\/Z\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tdsDcBSZQKjo28pkEAphMeKcvijkOe3vTuTWXPMhGrE=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771169454,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:30:54.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:30:55'),
(20424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:30:55.188Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:30:55'),
(20425, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:30:55.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:30:56'),
(20426, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A56D0A8ED56685675145916745D9E0C7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wGJQanVUdJ6oZqIA46hHdybug5olxulyqSRvGjH1wPg-g&oe=69B93F7C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wGJQanVUdJ6oZqIA46hHdybug5olxulyqSRvGjH1wPg-g&oe=69B93F7C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771170110145\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771170110,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:51.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:41:51'),
(20427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:51.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:41:51'),
(20428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:51.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:41:52'),
(20429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:51.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:41:52'),
(20430, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:51.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:41:52'),
(20431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":true,\"id\":\"A508F327F8044087D7BC2C84268E5C0E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/13747744_1454488779444413_7701946469407496941_n.enc?ccb=11-4&oh=01_Q5Aa3wHbmAaZLjwi2SkQP87mV4Uzyl8WiyAFTdtLSSNtMHgKmQ&oe=69B9554B&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"RcDHtk8wclhYW9qnnnxq56XG9JGbl++MMPbYX9b6uxI=\",\"mediaKey\":\"+ffaQmALUgCfBW8yIvHHfyl692pNHqafZaarrsULL2k=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/13747744_1454488779444413_7701946469407496941_n.enc?ccb=11-4&oh=01_Q5Aa3wHbmAaZLjwi2SkQP87mV4Uzyl8WiyAFTdtLSSNtMHgKmQ&oe=69B9554B&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1771114871\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"PHCNysginr0aew==\",\"isAnimated\":true,\"stickerSentTs\":\"1771170110646\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771170111,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:51.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:41:52'),
(20432, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A56D0A8ED56685675145916745D9E0C7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771170112759,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:52.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:41:53'),
(20433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A508F327F8044087D7BC2C84268E5C0E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771170112766,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:41:52.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:41:53'),
(20434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A508F327F8044087D7BC2C84268E5C0E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771170338165,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:38.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:45:38'),
(20435, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164016882245846@lid\",\"id\":\"A56D0A8ED56685675145916745D9E0C7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771170338174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:38.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:45:38'),
(20436, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"presences\":{\"164016882245846@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:54.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:45:54'),
(20437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:57.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:45:57'),
(20438, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164016882245846@lid\",\"fromMe\":false,\"id\":\"AC05F26FF6CE49DB91353DEACEA0EA04\"},\"pushName\":\"Jeferson Silveira\",\"message\":{\"conversation\":\"Obrigado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nF5hXSLjwSK\\/aW4K003w9cSVSUP6OhPmHO18B5kvyTI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771170356,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:57.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 12:45:57'),
(20439, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164016882245846@lid\",\"pushName\":\"Jeferson Silveira\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:57.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:45:58'),
(20440, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164016882245846@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/582490316_1776732977048882_6556230375007371058_n.jpg?ccb=11-4&oh=01_Q5Aa3wEQmny-f1__8_-M6RQaI8g7KOCHusmfg6fKV8OqopuFow&oe=699F0F4B&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T12:45:57.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 12:45:58'),
(20441, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:47.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:47'),
(20442, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:50.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:50'),
(20443, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3A030AF620BB3C7071C7\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"bom Dia\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CgxGLoIRBgiuZJqo6VuOuPa3h8YyVXKtDs3Sto1586o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771173410,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:50.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 13:36:51'),
(20444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHlXeel4LiOUbMFtsXfCXDqgPuOyk9wg6Nkbsw-wBDoQ&oe=699F1050&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:50.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:51'),
(20445, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHlXeel4LiOUbMFtsXfCXDqgPuOyk9wg6Nkbsw-wBDoQ&oe=699F1050&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:50.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:51'),
(20446, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:51.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:51'),
(20447, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:55.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:55'),
(20448, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3ADC8BF342E402C0A613\"},\"pushName\":\"Thay\",\"message\":{\"conversation\":\"Não deu\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771013685\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"p0xr7ctPNV6gMuSYaqNCRIUIFciZV3f6xRhYCsk5uFk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771173415,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:55.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 13:36:55'),
(20449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHlXeel4LiOUbMFtsXfCXDqgPuOyk9wg6Nkbsw-wBDoQ&oe=699F1050&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:55.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:56'),
(20450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHlXeel4LiOUbMFtsXfCXDqgPuOyk9wg6Nkbsw-wBDoQ&oe=699F1050&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:36:55.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 13:36:56'),
(20451, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"198685539487747@lid\",\"id\":\"A5FCD824EED23F52B8DA164251481E2B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771174243995,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:50:43.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 13:50:44');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20452, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"198685539487747@lid\",\"id\":\"A5449FFF24CD739F4932F608B76210B6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771174245912,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T13:50:45.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 13:50:46'),
(20453, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"198685539487747@lid\",\"id\":\"A5449FFF24CD739F4932F608B76210B6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771176146883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:22:26.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:22:27'),
(20454, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"198685539487747@lid\",\"id\":\"A5FCD824EED23F52B8DA164251481E2B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771176146893,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:22:26.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:22:29'),
(20455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996010925@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A8F3DAE7BDF0A6D7DE8\"},\"pushName\":\"PAIAKAN 😎\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m239\\/AQOm_hom_1T5MYhdANYxkJU4_qyr5eP-5idVtOYXgiRhzN7bzXC5kjwE6JgFoBy9_G-CP6n2miwhKEarRYLyGbr46JHgB9t6hN9D9iCGgQ?ccb=9-4&oh=01_Q5Aa3wFm8W7IL3uCj24J4zfMCNCkVjlfumZjHGhtA7gIOuU_QQ&oe=69B978E8&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"V4IkbpSPGlB4DsxpsPWzBSNqvM8HPz3km6tL67rhDdI=\",\"fileLength\":\"39527\",\"height\":1280,\"width\":318,\"mediaKey\":\"zexeJP4AEo4VzHgVGIbX3V7c+hXjR3GWgh7vyUGIYCE=\",\"fileEncSha256\":\"zYOYCEq6UHGEBlmErqHGVg9U+Q7WtZnrMdUaI6u4oIk=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m239\\/AQOm_hom_1T5MYhdANYxkJU4_qyr5eP-5idVtOYXgiRhzN7bzXC5kjwE6JgFoBy9_G-CP6n2miwhKEarRYLyGbr46JHgB9t6hN9D9iCGgQ?ccb=9-4&oh=01_Q5Aa3wFm8W7IL3uCj24J4zfMCNCkVjlfumZjHGhtA7gIOuU_QQ&oe=69B978E8&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771176570\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABIDASIAAhEBAxEB\\/8QAGQABAQEBAQEAAAAAAAAAAAAAAAIBAwQF\\/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA+72yimCZoa0Qaa0cq8nU9CBz0LB\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/8QAIRABAAMBAAEDBQAAAAAAAAAAAQACESExECJRAwQSE4H\\/2gAIAQEAAT8AfuGt0KLPp2tY1M9O6+3ZnOchuSvVNltHCzDcOytT8lGIb5h4lD3LLVDuw8Qv1yNqp2GZNsWcyDvFP5OfMd\\/YuWlLA+Hfn0WwuVg3+D0\\/\\/\\/4AAwD\\/2Q==\",\"scansSidecar\":\"6x5mECCcGauaQL3l\\/S\\/5OOdO9Mni2m0wxYAnFg6hrJGymG+DJxxeHA==\",\"scanLengths\":[2665,16980,7846,12034],\"midQualityFileSha256\":\"mY1jqGTPjrJaN6CC2xJtBO0MHGH2XXkPN3cPQNmJ8eQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771168832\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jBasztsgEKY30lx2x+rRldOshZBupcqebMHmLiCDfjo=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771176572,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:32.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:29:33'),
(20456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996010925@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGEc6r03TiWeZXtpP59Yz9uzS9UX6rG9xuFyXZ7GaApg&oe=699F14D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:32.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 14:29:33'),
(20457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996010925@s.whatsapp.net\",\"pushName\":\"PAIAKAN0 0925 $35 Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGEc6r03TiWeZXtpP59Yz9uzS9UX6rG9xuFyXZ7GaApg&oe=699F14D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:32.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 14:29:33'),
(20458, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996010925@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:32.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 14:29:33'),
(20459, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"200592353919231@lid\",\"fromMe\":true,\"id\":\"A5FF491A20D5A04FD5F31C11E637183F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771176575,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:35.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:29:36'),
(20460, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"200592353919231@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:35.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 14:29:36'),
(20461, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"id\":\"A5FF491A20D5A04FD5F31C11E637183F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771176577369,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:37.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:29:37'),
(20462, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"200592353919231@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421658_1613999233091166_7250213965622387603_n.jpg?ccb=11-4&oh=01_Q5Aa3wGGEc6r03TiWeZXtpP59Yz9uzS9UX6rG9xuFyXZ7GaApg&oe=699F14D4&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:29:36.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:29:37'),
(20463, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:32:19.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 14:32:20'),
(20464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"id\":\"A5FF491A20D5A04FD5F31C11E637183F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771176802740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T14:33:22.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 14:33:23'),
(20465, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:12:06'),
(20466, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":false,\"id\":\"AC8BFC1FB53B7FC183F5E8E360618728\"},\"pushName\":\"Fábio Souza\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/25998843_1230888062515862_5430847926830372006_n.enc?ccb=11-4&oh=01_Q5Aa3wE5noCZhxroBwkYAogTAe608rUyPwB2UeO4ko-nXmYk6Q&oe=69B99674&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rLnwtNFEk7OIB6B1hfzLqZBnHCamiyJ24gS1Ij+kPPY=\",\"fileLength\":\"50624\",\"height\":1600,\"width\":347,\"mediaKey\":\"r0dXjBY2gshUm0vvlibIyJE4YlkSf4l29a297hxHWHE=\",\"fileEncSha256\":\"AeZIdvtMjwBwHD5wHF91kbMpssF0hxyouQ1b6uXgEfg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/25998843_1230888062515862_5430847926830372006_n.enc?ccb=11-4&oh=01_Q5Aa3wE5noCZhxroBwkYAogTAe608rUyPwB2UeO4ko-nXmYk6Q&oe=69B99674&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771179125\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgADgMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIEAwUBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPf7xYpbGSEXg0kWB\\/\\/EAB8QAAICAgIDAQAAAAAAAAAAAAECABEDIRASEyIxMv\\/aAAgBAQABPwDyZg5VQK4HfZKi+CLEFg\\/qAAiCoL3c1FyDdCasTvkF9SImR69mBnjZWYjtE+V1qDIdiiTFcsfk\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAgEBPwA\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAwEBPwA\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"PJQ6iFwOlVczNgcSqnvje3Sfy3soYsyCSt2qD0zPFswvjnidrI11ow==\",\"scanLengths\":[3431,23091,11530,12572],\"midQualityFileSha256\":\"GriFjobREnVoW0lOjCJmEGlSeW+Gl+W4Pzec3nTO3c8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"CrS9hHcFKrxYL0qnJMzQy8w\\/DCFPHo9eylgBDDO4U1M=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771179126,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:12:06'),
(20467, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLPX_B4M1z8442kPW9dHMiWiQG1sPagEz3F7GIEaL98A&oe=699F31BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:12:06'),
(20468, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A5D609D248072599C60E78019DE28F2F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771179126710,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:12:07'),
(20469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLPX_B4M1z8442kPW9dHMiWiQG1sPagEz3F7GIEaL98A&oe=699F31BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:12:07'),
(20470, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:12:08'),
(20471, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":true,\"id\":\"A5D609D248072599C60E78019DE28F2F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771179126,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:12:08'),
(20472, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFLPX_B4M1z8442kPW9dHMiWiQG1sPagEz3F7GIEaL98A&oe=699F31BB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:12:06.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:12:08'),
(20473, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A59DFD6A1DF8D5BCB6F47C9EBD7CC2FB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Negao\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771179929,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:29.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:25:29'),
(20474, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:29.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:25:29'),
(20475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYBjCJv8wLZyQrSljKrrN-U2wiRZenP7FU2vDAf9QHJg&oe=699F10E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:29.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:25:29'),
(20476, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A56F1484496D31C344A3C4B3D70F70EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vem aqui\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771179930,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:30.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:25:30'),
(20477, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:30.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:25:30'),
(20478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYBjCJv8wLZyQrSljKrrN-U2wiRZenP7FU2vDAf9QHJg&oe=699F10E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:30.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:25:31'),
(20479, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A59DFD6A1DF8D5BCB6F47C9EBD7CC2FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771179930680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:30.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:25:31'),
(20480, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A56F1484496D31C344A3C4B3D70F70EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771179930811,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:30.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:25:31'),
(20481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A538D3AA51284FEAEA3F4199C1C11295\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ta bem mais fresco\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771179933,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:33.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:25:34'),
(20482, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:33.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:25:34'),
(20483, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A538D3AA51284FEAEA3F4199C1C11295\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771179934110,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:34.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:25:34'),
(20484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYBjCJv8wLZyQrSljKrrN-U2wiRZenP7FU2vDAf9QHJg&oe=699F10E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:25:34.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 15:25:34'),
(20485, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A538D3AA51284FEAEA3F4199C1C11295\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771181919890,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:58:39.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:58:40'),
(20486, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A59DFD6A1DF8D5BCB6F47C9EBD7CC2FB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771181919905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:58:39.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:58:40'),
(20487, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A56F1484496D31C344A3C4B3D70F70EC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771181919900,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T15:58:39.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 15:58:40'),
(20488, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:31.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:32'),
(20489, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:38.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:38'),
(20490, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:38.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:39'),
(20491, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5346554E17E896AE25E806240C45529\"},\"pushName\":\"hpdesigner\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ola boa tarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5DE8FDDE40A4807476610814FF3E237\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636142793_4238623659759428_1467022842200550198_n.enc?ccb=11-4&oh=01_Q5Aa3wF5P-R93XUODts0lG-8Ie6Y2K-rj6n0RjmtFIlH-WPhuA&oe=69B6D7D4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"*AGENDA ATUALIZADA 🗓️*\\n\\nO final de semana chegou com muitos decisivos nos estaduais!\\n\\nConfira onde acompanhar as partidas e não perca nenhum detalhe\",\"fileSha256\":\"wWFPAcHWVN4VL4Ya+lWDdN2JJenvNEweWriZpIinoa4=\",\"fileLength\":\"215303\",\"height\":1232,\"width\":1080,\"mediaKey\":\"rAXJgIsQVxMq3rz1UkVQk5aPQBExkTuAl5EjPAnc5zU=\",\"fileEncSha256\":\"Ual1xD55RJVOfI2CXN2RPbIMkXKMv\\/Aj3ACUn0\\/na2o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636142793_4238623659759428_1467022842200550198_n.enc?ccb=11-4&oh=01_Q5Aa3wF5P-R93XUODts0lG-8Ie6Y2K-rj6n0RjmtFIlH-WPhuA&oe=69B6D7D4&_nc_sid=5e03e0&_nc_hot=1771104564\",\"mediaKeyTimestamp\":\"1771009199\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAPgMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAAEAAEDAgUBAQEBAQAAAAAAAAAAAAAAAAIBAwD\\/2gAMAwEAAhADEAAAAPEij6Z1cuLmep5vLPFZR3okaTXPnSqzXoASeyjvKWgziaZ89XZe2Cxqa4JGL6JVDY6nMLTh3hpySrBjWYSWSSde8ZLEDkN\\/\\/8QAKBAAAgIDAAAFAgcAAAAAAAAAAQIAEQMSIQQTFDFRInEjMjNBQlJh\\/9oACAEBAAE\\/AEZQovHctbvSbp\\/SbYzX0Q1ZPly0v9KNqQaSoQYj4vThSewMVFTcRGUEWRFz+GCi2EzsrZSVPIWUoRuITMaY\\/TXXYtFiDGCgGY9LW1n4CjuITIFdiUFCFAQAKjrRqYiB4YfMB61wkVwTH+ZY4bXhiHpERnF0vPtM5JeIH8i9+fEBIsQsYt2Knl5dbLTcg8ELugHfeO+xsiY6PhQIuw2qEvXtEDgrp0xseYrY9\\/iauHAPDCK2prMcknsQn0o5yKDRoymbly6Kamo2cqtBzcRixZ2NmJp+\\/wDIzMArkCY79KLPIoFmvaNRUwVaTIy0RpMbBXHJkIC\\/b\\/ITEzIMAU3BkXvDC6VwGeYLTntHz7CqitTAx\\/EKwNAwmf\\/EACARAAICAgEFAQAAAAAAAAAAAAECABEQIXEDEjJBQnL\\/2gAIAQIBAT8AOq96gJOoVAF3h\\/jiCEe8Prt4inYjEV5E46nx+YgtgI6Kq3WCxNcQEg3C5IrH\\/8QAHxEAAQQCAgMAAAAAAAAAAAAAAQACEHExQgMREiAh\\/9oACAEDAQE\\/AB97teIlm1o4Tcwza0cIVHHtaKEBoHfp\\/9k=\",\"contextInfo\":{\"forwardingScore\":2,\"isForwarded\":true},\"scansSidecar\":\"syf1Q1+kXMSxQ1IfdYPhMdbgF1W7PxtGfDlqCp5EOVj5Up\\/m7489gA==\",\"scanLengths\":[15589,109119,38645,51950],\"midQualityFileSha256\":\"ExqAPAHadfax9aXx74VrPeV0lKa6BrBA7fh3kBKdiWA=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"l1RD3eUB5N8QbaIybGlEjhUrnJN3WlhVcdjI1kI+iOU=\"}},\"contextInfo\":{\"stanzaId\":\"A5DE8FDDE40A4807476610814FF3E237\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/636142793_4238623659759428_1467022842200550198_n.enc?ccb=11-4&oh=01_Q5Aa3wF5P-R93XUODts0lG-8Ie6Y2K-rj6n0RjmtFIlH-WPhuA&oe=69B6D7D4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"*AGENDA ATUALIZADA 🗓️*\\n\\nO final de semana chegou com muitos decisivos nos estaduais!\\n\\nConfira onde acompanhar as partidas e não perca nenhum detalhe\",\"fileSha256\":\"wWFPAcHWVN4VL4Ya+lWDdN2JJenvNEweWriZpIinoa4=\",\"fileLength\":\"215303\",\"height\":1232,\"width\":1080,\"mediaKey\":\"rAXJgIsQVxMq3rz1UkVQk5aPQBExkTuAl5EjPAnc5zU=\",\"fileEncSha256\":\"Ual1xD55RJVOfI2CXN2RPbIMkXKMv\\/Aj3ACUn0\\/na2o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/636142793_4238623659759428_1467022842200550198_n.enc?ccb=11-4&oh=01_Q5Aa3wF5P-R93XUODts0lG-8Ie6Y2K-rj6n0RjmtFIlH-WPhuA&oe=69B6D7D4&_nc_sid=5e03e0&_nc_hot=1771104564\",\"mediaKeyTimestamp\":\"1771009199\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAPgMBIgACEQEDEQH\\/xAAuAAEAAwEBAAAAAAAAAAAAAAAEAAEDAgUBAQEBAQAAAAAAAAAAAAAAAAIBAwD\\/2gAMAwEAAhADEAAAAPEij6Z1cuLmep5vLPFZR3okaTXPnSqzXoASeyjvKWgziaZ89XZe2Cxqa4JGL6JVDY6nMLTh3hpySrBjWYSWSSde8ZLEDkN\\/\\/8QAKBAAAgIDAAAFAgcAAAAAAAAAAQIAEQMSIQQTFDFRInEjMjNBQlJh\\/9oACAEBAAE\\/AEZQovHctbvSbp\\/SbYzX0Q1ZPly0v9KNqQaSoQYj4vThSewMVFTcRGUEWRFz+GCi2EzsrZSVPIWUoRuITMaY\\/TXXYtFiDGCgGY9LW1n4CjuITIFdiUFCFAQAKjrRqYiB4YfMB61wkVwTH+ZY4bXhiHpERnF0vPtM5JeIH8i9+fEBIsQsYt2Knl5dbLTcg8ELugHfeO+xsiY6PhQIuw2qEvXtEDgrp0xseYrY9\\/iauHAPDCK2prMcknsQn0o5yKDRoymbly6Kamo2cqtBzcRixZ2NmJp+\\/wDIzMArkCY79KLPIoFmvaNRUwVaTIy0RpMbBXHJkIC\\/b\\/ITEzIMAU3BkXvDC6VwGeYLTntHz7CqitTAx\\/EKwNAwmf\\/EACARAAICAgEFAQAAAAAAAAAAAAECABEQIXEDEjJBQnL\\/2gAIAQIBAT8AOq96gJOoVAF3h\\/jiCEe8Prt4inYjEV5E46nx+YgtgI6Kq3WCxNcQEg3C5IrH\\/8QAHxEAAQQCAgMAAAAAAAAAAAAAAQACEHExQgMREiAh\\/9oACAEDAQE\\/AB97teIlm1o4Tcwza0cIVHHtaKEBoHfp\\/9k=\",\"contextInfo\":{\"forwardingScore\":2,\"isForwarded\":true},\"scansSidecar\":\"syf1Q1+kXMSxQ1IfdYPhMdbgF1W7PxtGfDlqCp5EOVj5Up\\/m7489gA==\",\"scanLengths\":[15589,109119,38645,51950],\"midQualityFileSha256\":\"ExqAPAHadfax9aXx74VrPeV0lKa6BrBA7fh3kBKdiWA=\"}},\"remoteJid\":\"status@broadcast\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":0},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771184558,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:38.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:42:39'),
(20492, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:38.955Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:39'),
(20493, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:38.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:39'),
(20494, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:39.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:42:40'),
(20495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A521549AC7D01077AED79E486B43D98D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771184561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:41.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:42:41'),
(20496, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:41.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:41'),
(20497, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A521549AC7D01077AED79E486B43D98D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771184561881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:41.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:42:42'),
(20498, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:42.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:42'),
(20499, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:44.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:44'),
(20500, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:42:54.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:42:55'),
(20501, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:09.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:09'),
(20502, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:11.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:11'),
(20503, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A525B2AECD34A1AF8F784C0C2635C1E3\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Cader as iptv?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GjQje4UWbaawsYdid5jXyNhJnOKGPWLIPNneJUvD00o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771184591,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:11.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:43:11'),
(20504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:11.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:12'),
(20505, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:12.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:12'),
(20506, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:39.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:39'),
(20507, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:44.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:44'),
(20508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:44.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:44'),
(20509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wESXYWcJN3xa5eObQyGm05jU9gqMTItM0zbraJxMZISsg&oe=699F2A24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:44.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:43:45'),
(20510, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5584E1E012BEE609EB0237CA1DD03B9\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"De filmes.\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"K\\/MXuwqYoJUJ13WMeX3GrxJAUHhf2scmMYbX\\/gtoFgs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771184624,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:43:44.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:43:45'),
(20511, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:02.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:02'),
(20512, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:12.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:12'),
(20513, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:19.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:19');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20514, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:19.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:19'),
(20515, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:29.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:29'),
(20516, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:38.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:38'),
(20517, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"presences\":{\"132684525396189@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:39.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:39'),
(20518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"132684525396189@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:40'),
(20519, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"132684525396189@lid\",\"fromMe\":false,\"id\":\"AC4E9FF2AF85B8BD42B029F56B897452\"},\"pushName\":\"Adenilson Machado\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde porque será q esse aplicativo não pega HBOMAX\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":39},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rEUlSMdFB5BwSyP0WWBYEub3lT6diFu+aS0whHTrFUc=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":39},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771184679,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:44:41'),
(20520, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"132684525396189@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:42'),
(20521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"132684525396189@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585423941_1332227775591067_1419451645564574021_n.jpg?ccb=11-4&oh=01_Q5Aa3wGeWhEdOTS9D7Fs6GPejBcFvL9QIm_pA4jVXG7Oi6t22g&oe=699F363E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:42'),
(20522, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"132684525396189@lid\",\"fromMe\":true,\"id\":\"A52F775AC7002821AB7FD58CE12E5253\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771184680,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:44:42'),
(20523, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"pushName\":\"Adenilson Machado\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585423941_1332227775591067_1419451645564574021_n.jpg?ccb=11-4&oh=01_Q5Aa3wGeWhEdOTS9D7Fs6GPejBcFvL9QIm_pA4jVXG7Oi6t22g&oe=699F363E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:44:42'),
(20524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:42'),
(20525, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132684525396189@lid\",\"pushName\":\"Adenilson Machado\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/585423941_1332227775591067_1419451645564574021_n.jpg?ccb=11-4&oh=01_Q5Aa3wGeWhEdOTS9D7Fs6GPejBcFvL9QIm_pA4jVXG7Oi6t22g&oe=699F363E&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:44:43'),
(20526, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"132684525396189@lid\",\"id\":\"A52F775AC7002821AB7FD58CE12E5253\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771184680794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:44:40.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:44:43'),
(20527, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"presences\":{\"1684281544836@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:50:45.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:50:46'),
(20528, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"presences\":{\"1684281544836@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:50:46.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:50:46'),
(20529, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:26.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:27'),
(20530, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1684281544836@lid\",\"fromMe\":false,\"id\":\"AC3490C802067AF8C81CAC148D38B1FD\"},\"pushName\":\"charles\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/592917367_1413099089751578_2491093000951734551_n.enc?ccb=11-4&oh=01_Q5Aa3wFswEcQl5DI4iFlULTGFaASRWoMLaNZ7WR939ylZTRNKg&oe=69B9A1DF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Dc\\/ll2OBr7p9fxYllb07pRSOo78ybXydn6kxl51\\/GUs=\",\"fileLength\":\"63876\",\"height\":1599,\"width\":899,\"mediaKey\":\"W2iuWWfEYVLkwmcUDCv3wMModAh6okQM9TBKrbS\\/an4=\",\"fileEncSha256\":\"T6oJhryZkwvvSbqu6EkzbDV9QA7zrIsgZlndNloAfb0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/592917367_1413099089751578_2491093000951734551_n.enc?ccb=11-4&oh=01_Q5Aa3wFswEcQl5DI4iFlULTGFaASRWoMLaNZ7WR939ylZTRNKg&oe=69B9A1DF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771185059\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAABBQEAAAAAAAAAAAAAAAAFAAECAwQGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAADNgTXKRbNJLUyOK05JaXHed6DNIKtRzTHXmwBHXlTSgKQ+9TtTDkQbMlSq\\/\\/8QAJxAAAgEDAgUEAwAAAAAAAAAAAAECAxESBFIQExQhQQUiMVEgQnH\\/2gAIAQEAAT8AQuD4Q9TXkhr6b+TqqX2RrQm7RZcRCEZJe9L7JPu8W7GlpuChJ+YlxMyEzTVXLGL\\/AFiZHIntOS9pyrP4NLK03\\/DqqW47PwWhtQ6dPaajClBuJky5ccjVVspJfhN9is\\/c2ZM\\/\\/8QAFxEAAwEAAAAAAAAAAAAAAAAAABEgAv\\/aAAgBAgEBPwCNK0f\\/xAAWEQADAAAAAAAAAAAAAAAAAAABIDD\\/2gAIAQMBAT8AQQ\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"u+u0p8VcQSattXvpuGFGvWbzQ3tp5QEvsJMQwWlWDyvDUV13hhQWDQ==\",\"scanLengths\":[9551,23918,9771,20636],\"midQualityFileSha256\":\"xTlkRCCNsSX8jqeeJBX+YOYPHiCK6UYaew13eyUxuq8=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6hmz5ulG3Qr0uFqYHLdIoTD9S3AuGioLClKMiwO6odY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771185086,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:26.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:51:27'),
(20531, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"pushName\":\"charles\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG3etctkz4QFhgq6ONmS4cc2NGUrsqoaEfwhON4gzi7A&oe=699F3308&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:26.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:51:28'),
(20532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"pushName\":\"charles\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG3etctkz4QFhgq6ONmS4cc2NGUrsqoaEfwhON4gzi7A&oe=699F3308&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:27.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:28'),
(20533, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1684281544836@lid\",\"fromMe\":true,\"id\":\"A57DD13EA2D07FD204A7F2555AB4F947\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771185087,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:27.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:51:29'),
(20534, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG3etctkz4QFhgq6ONmS4cc2NGUrsqoaEfwhON4gzi7A&oe=699F3308&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:26.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:29'),
(20535, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:27.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:30'),
(20536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1684281544836@lid\",\"id\":\"A57DD13EA2D07FD204A7F2555AB4F947\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771185087754,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:27.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:51:30'),
(20537, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"presences\":{\"1684281544836@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:30.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:30'),
(20538, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG3etctkz4QFhgq6ONmS4cc2NGUrsqoaEfwhON4gzi7A&oe=699F3308&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:37.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:37'),
(20539, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1684281544836@lid\",\"fromMe\":false,\"id\":\"ACAF045436EB0881D536527FA63C4CC6\"},\"pushName\":\"charles\",\"message\":{\"conversation\":\"Não ta pegando o app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gZTD13Ong7eSxJBdrXAwIAGNshvvOko\\/t+JQR5kGdCY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771185097,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:37.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 16:51:37'),
(20540, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:37.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:38'),
(20541, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"pushName\":\"charles\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wGG3etctkz4QFhgq6ONmS4cc2NGUrsqoaEfwhON4gzi7A&oe=699F3308&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T16:51:37.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 16:51:39'),
(20542, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0154B6A7339F73CA62F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187510611,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:50.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:51'),
(20543, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB080E1C9905FDFC65519\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187510757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:50.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:51'),
(20544, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0C1F456ED98531A7F68\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187510896,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:50.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:51'),
(20545, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0B7AE09E658E701A0F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187511063,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:51.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:52'),
(20546, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0BDA5424588E09AD3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187512144,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:52.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:52'),
(20547, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB02EAA32C58388F5711B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187512318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:52.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:53'),
(20548, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0B46460CF96C03A7C7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187511188,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:31:51.188Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:31:53'),
(20549, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB09582B475BFFABB18EB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:03'),
(20550, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB052BA52475BE3722390\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:04'),
(20551, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB09D135B47960F9EFDDD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:04'),
(20552, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0C6B4C571B077CDF830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523564,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:04'),
(20553, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB052322C4FE6A251247E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523700,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:04'),
(20554, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0058521D96E12E85D7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187524008,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:04.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:05'),
(20555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0D01451FA0989319A2F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523894,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:05'),
(20556, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0805FF06361A427903A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187524122,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:04.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:06'),
(20557, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB030B6DF033BB5B0ABB9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187523630,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:32:03.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:32:07'),
(20558, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A57CB246F9EE9628F5AB1B67EBF65222\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187601450,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:33:21.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:33:21'),
(20559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5E9B611539867A0EACB45B6A9F513A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187601595,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:33:21.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:33:22'),
(20560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A53ABA31C70D16191E77CB6BC0E5CFD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187602273,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:33:22.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:33:22'),
(20561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5E585503D4BCF38C88DF986D5BF3260\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187603445,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:33:23.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:33:23'),
(20562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5D35B3BD3AE67FE0A21B8AACD3CB6DE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187621459,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:33:41.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:33:41'),
(20563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5CEDA4C321ECC969A7F6EEB7C1381FC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187624356,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:33:44.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:33:44'),
(20564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A59336A1D5CDE5B6D2EECE9FA06FCE19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187737864,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:37.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:38'),
(20565, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5849FEBDC3521DF7BEF860EACC02E04\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187737954,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:37.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:38'),
(20566, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5A66374C349F3D6A1AB655A578A77B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187738072,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:38.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:39'),
(20567, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5738C253C9E012D52B7EAC2473AC54C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187739145,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:39.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:39'),
(20568, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A50051C0EDD6FA4228582BF3EC00C02E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187738173,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:38.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:39'),
(20569, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A526257DCCB5AFA0892BCE9FEE8A449F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187740083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:40.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:40'),
(20570, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A560235919CBB732D123C257C9D33BB0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187739941,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:39.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:40'),
(20571, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5C38B927B69A6C47D1FD4BFCE278750\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771187740230,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:35:40.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:35:41'),
(20572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5F51D3C8512973AB9FD2399DA18D073\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188017075,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:17.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:17'),
(20573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5312C0586ACD85A9962016C5F63C4E5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188017157,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:17.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:17'),
(20574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A53A7B89DCFE46C703E61A168EE6C9A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188017909,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:17.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:18'),
(20575, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A516D70950FB3B6E24336CB330FC13B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188018036,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:18.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:18'),
(20576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5644743DD7B49A35DE38FB534F158A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188018274,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:18.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:18'),
(20577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5D97AEA5822C7B5EBB3C169DE89254D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188018160,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:18.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:19'),
(20578, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5CE797DDDFE02C65D9DD691461B66FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188022407,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:40:22.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:40:22'),
(20579, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A51406A7E2D5E7C3A9D6B95CD1DC8387\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188061897,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:01.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:02'),
(20580, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A542F2DDF509FC6B935CEEED9C3A5E8F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188061956,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:01.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:02'),
(20581, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0344A55E598534B4D80\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062278,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:03'),
(20582, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0814D23C2939A907553\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:04'),
(20583, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB01B348845BAED6A8467\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062122,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.123Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:04'),
(20584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0BB7B48855F40691732\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188063198,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:03.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:04'),
(20585, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0E30BDD1B1BB70ECC26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188063098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:03.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:05'),
(20586, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0EC2E7D6FC853A20537\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062747,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:05'),
(20587, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB04EC43B2BAE3A23A2B4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062394,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:05'),
(20588, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0A032BE29A836F11B35\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188063304,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:03.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:05'),
(20589, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A552BBAAEF991150924FE604EF716E36\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062035,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:07'),
(20590, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0687D69BF6BC0659DC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188063411,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:03.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:07'),
(20591, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0C96A693A6580D987AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188062532,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:02.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:07'),
(20592, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A549ECA84E84303CE1C19905232A4EBB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188106616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:46.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20593, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5AABB851F7FA2C28F16C18B64D34C0A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188106716,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:46.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:46'),
(20594, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A57F14DF46DE0162C478EADC18C7FBB6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188106833,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:41:46.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:41:47'),
(20595, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0D7983696D3BF7E9785\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188280895,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:44:40.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:44:41'),
(20596, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A59DFD6A1DF8D5BCB6F47C9EBD7CC2FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188300010,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:45:00.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:45:00'),
(20597, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A56F1484496D31C344A3C4B3D70F70EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188300103,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:45:00.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:45:00'),
(20598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A538D3AA51284FEAEA3F4199C1C11295\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771188300186,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:45:00.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:45:01'),
(20599, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:46:16.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:46:17'),
(20600, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"176763791491157@lid\",\"fromMe\":false,\"id\":\"ACFF656EAF827FBF4C8D5AE874F2D73D\"},\"pushName\":\"Aldrey\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/637835593_1970186143854278_2619261017187332258_n.enc?ccb=11-4&oh=01_Q5Aa3wFP6nG3R98l8AyYmaoXL8oEZHP9jiBwwC6qUvco93H4qg&oe=69B99D84&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"G4UhOn+fLT7fNhdihw5j8bDzPzD5pd4NCX3CfSs2HSk=\",\"fileLength\":\"37207\",\"pageCount\":1,\"mediaKey\":\"ndKuCv7Cm\\/xiu9HvTxPRW5+LDm1aUgZ4NZqh4LOqNB4=\",\"fileName\":\"comprovante_picpay_PIX_15022026174524.pdf\",\"fileEncSha256\":\"s6qVtwAfF1swxd7tfSUIjLRfARqn0F+NI8RU\\/PipVYA=\",\"directPath\":\"\\/v\\/t62.7119-24\\/637835593_1970186143854278_2619261017187332258_n.enc?ccb=11-4&oh=01_Q5Aa3wFP6nG3R98l8AyYmaoXL8oEZHP9jiBwwC6qUvco93H4qg&oe=69B99D84&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771188376\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/32159206_876060738382274_7323955135354848086_n.enc?ccb=11-4&oh=01_Q5Aa3wHUE43fpXtyaQMBpdiIbJHCfHYras5sdvg3DF_67ECpIw&oe=69B9B346&_nc_sid=5e03e0\",\"thumbnailSha256\":\"9x39PBPlld1DDKG+ZETw7KZC2Pr+BYnuO1YOs\\/z+QTw=\",\"thumbnailEncSha256\":\"YBVrFrwTd5zyADz7d9Bq7e8G1zS68E\\/HmUca+WeZ2zM=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAsAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD3Sck2Z6KAAAiOc6nP0AAACs8J22z0AAAFLASRIAAAAAAAUmSRIud8qm8xYA\\/\\/xAAwEAACAQIEBAMGBwAAAAAAAAABAhEAAwQSMZETICJTECEwFEFRUmFxI0BCYpKh4f\\/aAAgBAQABPwB3KiQpP2pcTLAG2wnTy9C4Gy9Mz9K\\/GJMs+wpReOtxxEaxz3hcKHh60pvggFVidZ93oYnOtuU1mhicSEjy1pMTivJcq689xQwAJA869ij9Y\\/iKW1kIIb+hz4hWKdJgzQS7BHEbY1asYi0wY3B9jz3MuXqEiat3bdodKUHX4isy\\/EczoHEGuFa7a7VwrXyLtXBtdtdqVVUQoAH0\\/L3rvDUGJEgVnt++4N6DW+4N6BVtGmjdRWgmg9ruDeg1vuDelIYSDI8GXMIkijYHzGuEAZnwdHztAMTQt3QZjcf7VpLjHqAAH7fH\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAQP\\/aAAgBAgEBPwB3\\/8QAFxEBAAMAAAAAAAAAAAAAAAAAEQExQP\\/aAAgBAwEBPwAlvd\\/\\/2Q==\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544910\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"thumbnailHeight\":480,\"thumbnailWidth\":339,\"caption\":\"Certinho Johnny\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PZJVPHJqrCnHKIGeYM6Ry+T8vTzJ0p2p6OrgqZ+kiZk=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544910\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"documentMessage\",\"messageTimestamp\":1771188377,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:46:17.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:46:17'),
(20601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"176763791491157@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wGe36XfWbLJ76aCtY6KzhtbbosXr9iYnQR5tAVD-GGtaw&oe=699F57F6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:46:17.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:46:17'),
(20602, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:46:17.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:46:18'),
(20603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wGe36XfWbLJ76aCtY6KzhtbbosXr9iYnQR5tAVD-GGtaw&oe=699F57F6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:46:17.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:46:18'),
(20604, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"176763791491157@lid\",\"fromMe\":false,\"id\":\"AC5690C04F4A9ABBD5E1DFFDBA875AA1\"},\"pushName\":\"Aldrey\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Pagamento aprovado no Pix*\\nALDREY, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 15\\/02\\/2026\\n*De:* ALDREY SILVANA MATHEUS RECCHIA\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\\n\\nObrigado pelo pagamento! 😉\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544910\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false},\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FIwm4o1OVp9i0Dp5h\\/B28T2KNRCzDqiHWmVbiLcwjR4=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544910\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false},\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771188420,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:47:01.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 17:47:01'),
(20605, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:47:01.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:47:01'),
(20606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wGe36XfWbLJ76aCtY6KzhtbbosXr9iYnQR5tAVD-GGtaw&oe=699F57F6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:47:01.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:47:01'),
(20607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"176763791491157@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wGe36XfWbLJ76aCtY6KzhtbbosXr9iYnQR5tAVD-GGtaw&oe=699F57F6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:47:01.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:47:01'),
(20608, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01DE0DAE6B3BE363A94\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 176763791491157\\nMensagem: \\\"*Pagamento aprovado no Pix*\\nALDREY, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 15\\/02\\/2026\\n*De:* ALDREY SILVANA MATHEUS RECCHIA\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\\n\\nObrigado pelo pagamento! 😉\\\"\\n\\nUse: \\/aprovar 176763791491157  (automático)\\nUse: \\/pago 176763791491157  (PIX Manual)\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\",\"canonicalUrl\":\"https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAARACADASIAAhEBAxEB\\/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAEEAwb\\/xAAiEAACAgEDBAMAAAAAAAAAAAABAgADBBEhMRIiQWFxgaH\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEQMRAD8A7spb1EiwAeB08fsybIVWZDlUhkGrAjdeOd\\/YlMlvoxzYXNKs1naxCAn79bCBquVQzKgurZ2GoAYbzUgkjfSS0Y2Mjq60orLx2AEfEqgOKEIDhCED\\/9k=\",\"thumbnailDirectPath\":\"\\/o1\\/v\\/t24\\/f2\\/m234\\/AQP2D5BhsIqiNFaMwy9KME1IWWVJXzQNmJGIzm6WBFqrHQbzXJY-BYiKrSvjdnVeAKC9Kcg3NNf3pleQkJcP-QbwqZjZcY9NO23A-6NxIQ?ccb=9-4&oh=01_Q5Aa3wGeYX-VcVZ4hPJm_KDdvrjQ8IfgWSmV0svevN9hAxfpJA&oe=69B9B79D&_nc_sid=e6ed6c\",\"thumbnailSha256\":\"+KDgkpaOhN9YNfNYhxiRMKMb1tCP54zYZtbjfYxeTLw=\",\"thumbnailEncSha256\":\"PZPKP3q2Xdf53hHyTLOQsbeYpFYSAZvHYilVciiONXw=\",\"mediaKey\":\"uqJdjmEVQ8USK+QX6ozaGi9fs8aOCooLTqCu8Tb5F58=\",\"mediaKeyTimestamp\":\"1771188424\",\"thumbnailHeight\":630,\"thumbnailWidth\":1200}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771188424,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:47:04.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:47:04'),
(20609, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B89A68F9CA60DC6A81\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 176763791491157\\nMensagem: \\\"*Pagamento aprovado no Pix*\\nALDREY, seu pagamento para JOHNNY SCHMITT DE SOUZA - CNPJ: 46.502.413\\/0001-75 *foi confirmado!* ✅\\n\\nAqui estão os dados da cobrança:\\n\\n*Valor cobrado:* R$ 35,00\\n*Data do pagamento:* 15\\/02\\/2026\\n*De:* ALDREY SILVANA MATHEUS RECCHIA\\n*Para:* jtvplay\\n\\nVocê pode *conferir o seu recibo* aqui: https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\\n\\nObrigado pelo pagamento! 😉\\\"\\n\\nUse: \\/aprovar 176763791491157  (automático)\\nUse: \\/pago 176763791491157  (PIX Manual)\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\",\"canonicalUrl\":\"https:\\/\\/recibo.infinitepay.io\\/bb061083-fedf-4930-82e4-20b0dcad6054\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAARACADASIAAhEBAxEB\\/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAEEAwb\\/xAAiEAACAgEDBAMAAAAAAAAAAAABAgADBBEhMRIiQWFxgaH\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEQMRAD8A7spb1EiwAeB08fsybIVWZDlUhkGrAjdeOd\\/YlMlvoxzYXNKs1naxCAn79bCBquVQzKgurZ2GoAYbzUgkjfSS0Y2Mjq60orLx2AEfEqgOKEIDhCED\\/9k=\",\"thumbnailDirectPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPcB6_1dUo255SO_5nBIlFT0mgoKbAHGbm5LP6VCD1RCJ_FlcKxrA5kiKLXnE2pu0w8orxZkt6VTblege1ZYe0ywPtDG0iqrzPwMXKkmw?ccb=9-4&oh=01_Q5Aa3wHrtJ7YSKzDojloQrBKxBkY--FeaqroY-LqpeoyDdztrQ&oe=69B99102&_nc_sid=e6ed6c\",\"thumbnailSha256\":\"+KDgkpaOhN9YNfNYhxiRMKMb1tCP54zYZtbjfYxeTLw=\",\"thumbnailEncSha256\":\"nAQCDDVwLhLTxV\\/BiEmVGDfXbmkHcihXojjtuXxx+io=\",\"mediaKey\":\"5dBmb0zxVMfKguvpnp4ONSFlWLONoR5GV6JILUfdCg8=\",\"mediaKeyTimestamp\":\"1771188426\",\"thumbnailHeight\":630,\"thumbnailWidth\":1200}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771188426,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T17:47:06.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 17:47:07'),
(20610, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"176763791491157@lid\",\"id\":\"A579648B02189AB36B29C96C0B8B1FD6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771189681633,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:08:01.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:08:02'),
(20611, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:08:02.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:08:03'),
(20612, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"176763791491157@lid\",\"fromMe\":true,\"id\":\"A579648B02189AB36B29C96C0B8B1FD6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544910\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544910\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771189682,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:08:02.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:08:03'),
(20613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"176763791491157@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wGe36XfWbLJ76aCtY6KzhtbbosXr9iYnQR5tAVD-GGtaw&oe=699F57F6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:08:03.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:08:03'),
(20614, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"presences\":{\"231516101730347@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:12:50.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:12:51'),
(20615, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"presences\":{\"231516101730347@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:12:59.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:12:59'),
(20616, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:13:00.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:13:00'),
(20617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"231516101730347@lid\",\"fromMe\":false,\"id\":\"AC2784D226060D12A0A6A4E95CB1B625\"},\"pushName\":\"Maxsulivan 😝\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11966660_791550290651767_1986627709273074769_n.enc?ccb=11-4&oh=01_Q5Aa3wG_ZevEZ9lGX0LlE18j2U0TxUmSrUSyOq9u2q4ANcAW2w&oe=69B9BD54&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"k0jq4wYM9fbkSyXUwrloh99kfQ4n9OTQHDOTF33mAxk=\",\"fileLength\":\"20087\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"AX6PJ753JiL8ObeB\\/AQ41+x1+F9fEzbIcwv3JgJaNKA=\",\"fileEncSha256\":\"n\\/xBHBT04dBmD8hdMCI67MC5sWqrCWJiMv\\/m7jeee8Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11966660_791550290651767_1986627709273074769_n.enc?ccb=11-4&oh=01_Q5Aa3wG_ZevEZ9lGX0LlE18j2U0TxUmSrUSyOq9u2q4ANcAW2w&oe=69B9BD54&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771189972\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"waveform\":\"AGNiMmBOXlVgNWBYTy0mUENAPUhYS1w7YytfM1VKVlhWSTInOjQrLTIoOV5hWlpFSFA8RFxDY2JhRlpPPVE6OA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1768935638\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FciPEPdvOU5rE8Nv3t5H7NTA+j1BTFWHBF7mfa4Hdtg=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771189980,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:13:00.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:13:01'),
(20618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"231516101730347@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDNSxFEoVkv0jcOUdttb_Chr8IlbOtV0ZZ8qwA2PHX3Q&oe=699F6190&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:13:00.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:13:01'),
(20619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"231516101730347@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473410268_1679021549686195_6125512259699526328_n.jpg?ccb=11-4&oh=01_Q5Aa3wHDNSxFEoVkv0jcOUdttb_Chr8IlbOtV0ZZ8qwA2PHX3Q&oe=699F6190&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:13:00.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:13:01'),
(20620, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:34:12.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:34:13'),
(20621, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5C1A2C16CB9185378C73B44C6FAC30F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771191252,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:34:12.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:34:13'),
(20622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0eIkl1WInyp3dMa0lsA9QxyVnKui5BzmM0sDQQZHRSQ&oe=699F6264&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:34:13.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:34:13'),
(20623, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A556827EAC2960AF6D0F17AA633B26BD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual marca da tv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771191274,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:34:34.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:34:34'),
(20624, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:34:34.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:34:35'),
(20625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wE0eIkl1WInyp3dMa0lsA9QxyVnKui5BzmM0sDQQZHRSQ&oe=699F6264&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:34:34.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:34:35'),
(20626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"222355238465613@lid\",\"presences\":{\"222355238465613@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:41:09.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:41:10'),
(20627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:42:20'),
(20628, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104870300373115@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:42:20'),
(20629, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104870300373115@lid\",\"fromMe\":false,\"id\":\"AC78973CA33D0964975B8EF7427C9F91\"},\"pushName\":\"Adriana Salvi Inocêncio\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595419897_2216408488893660_540095142968037024_n.enc?ccb=11-4&oh=01_Q5Aa3wHTNg_JZZZuqDi7RfhmmeDT8L261U_V1OEymYtW0ks8Gw&oe=69B9B81D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"WSfzTcsp7ek24SOF4oVwRc7qCQvETZU0JmbPa0p5THY=\",\"fileLength\":\"51289\",\"height\":1538,\"width\":360,\"mediaKey\":\"x2JaqhLwu3zPj2Y5XTfrV91VAd80fy+IeNZlkRK70ao=\",\"fileEncSha256\":\"F1iIRidFt2qqfbmPv8QuInp9FLGDqP\\/eZA3GvwU4H\\/Y=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595419897_2216408488893660_540095142968037024_n.enc?ccb=11-4&oh=01_Q5Aa3wHTNg_JZZZuqDi7RfhmmeDT8L261U_V1OEymYtW0ks8Gw&oe=69B9B81D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771191738\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAEAMBIgACEQEDEQH\\/xAArAAADAQEBAAAAAAAAAAAAAAAAAQIDBAUBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPf3AU0zKmzOuXYVAf\\/EAB0QAAIDAQADAQAAAAAAAAAAAAERAAIhEgMQMTL\\/2gAIAQEAAT8Ap5avnfsEw+qmpaww4V1KLZk8YtrhyAjUfQdWlsBsf1O7NcFQEwlEDmAz\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAgEBPwA\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAwEBPwA\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"hge+iTogge0i1upO43kq3Mi2q+7IPEb+N8\\/Bxm+mqI5UjQRcg1ZI5A==\",\"scanLengths\":[3359,23260,11882,12788],\"midQualityFileSha256\":\"7rKM6WIOc6e7KF4xu+EUBlYjzs\\/V8Q+JsJVMwyt+mmQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Uzbnffo49X0lCYQW2kag5IH64NWH7UHXBepE\\/HP1B1k=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771191740,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:42:20'),
(20630, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104870300373115@lid\",\"pushName\":\"Adriana Salvi Inocêncio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581003874_875890998726407_2668414562097892714_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_55FsIRtlwA_MyhE_vWciyz1wy6m0PdFVv29gJBdupQ&oe=699F3A51&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:42:20'),
(20631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104870300373115@lid\",\"fromMe\":true,\"id\":\"A504AEAC67789E7A6BA8294AB6BCD40F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771191740,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:42:21'),
(20632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104870300373115@lid\",\"pushName\":\"Adriana Salvi Inocêncio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581003874_875890998726407_2668414562097892714_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_55FsIRtlwA_MyhE_vWciyz1wy6m0PdFVv29gJBdupQ&oe=699F3A51&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:21.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:42:21'),
(20633, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104870300373115@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:42:21'),
(20634, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104870300373115@lid\",\"id\":\"A504AEAC67789E7A6BA8294AB6BCD40F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771191741082,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:21.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:42:22'),
(20635, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104870300373115@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581003874_875890998726407_2668414562097892714_n.jpg?ccb=11-4&oh=01_Q5Aa3wG_55FsIRtlwA_MyhE_vWciyz1wy6m0PdFVv29gJBdupQ&oe=699F3A51&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:42:20.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:42:22'),
(20636, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"id\":\"842E8DC400DBA2444FBBE61E23471E07\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771191796243,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:16.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:16'),
(20637, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"id\":\"0DB520CE8433DA912D47899557A7ADBE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771191796250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:16.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:16'),
(20638, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"id\":\"2FD55408C3BAD907388C25F6D51293D1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771191796234,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:16.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:17'),
(20639, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:17.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:17'),
(20640, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:19.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:19'),
(20641, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2CB68AC75A4AEA8C89\"},\"pushName\":\"Bruna\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"9bR4nOLlei9QQA==\",\"senderTimestamp\":\"1770903374\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2+lUJNen7yOSu5T3wTG+U7R5Qo7KrJs8zPPYtfOKlaY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771191799,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:19.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:19'),
(20642, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"203371080339685@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:20.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:20'),
(20643, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:20.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:21'),
(20644, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:19.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:21'),
(20645, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:19.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:21'),
(20646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"203371080339685@lid\",\"id\":\"A5FAF09705FF7F5931F4794813E5FDA6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771191800596,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:20.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:22'),
(20647, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"203371080339685@lid\",\"id\":\"A5FAF09705FF7F5931F4794813E5FDA6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771191800604,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:20.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:22'),
(20648, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:19.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:22'),
(20649, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"203371080339685@lid\",\"fromMe\":true,\"id\":\"A5FAF09705FF7F5931F4794813E5FDA6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771191800,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:20.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:22'),
(20650, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:29.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:29'),
(20651, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:32.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:32'),
(20652, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:32.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:32');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20653, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:32.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:33'),
(20654, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:32.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:33'),
(20655, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A396D31E22C2C4968BF\"},\"pushName\":\"Bruna\",\"message\":{\"conversation\":\"Minha tb não está funcionando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"9bR4nOLlei9QQA==\",\"senderTimestamp\":\"1770903374\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VV0rn0dPMt3zndGuO4JvljV3vXHDQNbrvOxvSg5ATQg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771191812,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:32.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:43:33'),
(20656, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:34.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:34'),
(20657, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:43:58.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:43:59'),
(20658, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:07.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:07'),
(20659, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:24.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:24'),
(20660, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:32.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:32'),
(20661, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:33.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:33'),
(20662, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:43.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:43'),
(20663, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:54.131Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:54'),
(20664, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:59.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:59'),
(20665, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:44:59.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:44:59'),
(20666, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:02.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:02'),
(20667, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:02.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:45:02'),
(20668, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"122956323762205@lid\",\"fromMe\":false,\"id\":\"A5A7B705EABF772DA74AB2EF20EB9257\"},\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite mano.\\nTo tentando encontrar pelo ou menos um app na tv tcl Android, mas nao to axando\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":68},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"WCS9xTY7Zhjj3A==\",\"senderTimestamp\":\"1771187078\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LvcZqR5LZu5vonWzG2l8l2SNREBGImvei1EUpAZyjjc=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":68},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771191902,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:02.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:45:03'),
(20669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:02.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:03'),
(20670, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:03.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:04'),
(20671, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"122956323762205@lid\",\"id\":\"A5F6CBFA1DD646C2E71639870E43B2C2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771191903679,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:03.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:45:04'),
(20672, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"122956323762205@lid\",\"fromMe\":true,\"id\":\"A5F6CBFA1DD646C2E71639870E43B2C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771191903,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:03.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:45:04'),
(20673, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:03.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:05'),
(20674, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:15.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:15'),
(20675, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:19.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:19'),
(20676, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"122956323762205@lid\",\"fromMe\":false,\"id\":\"A5C10AE88DB013BE48E440E646F49839\"},\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"message\":{\"conversation\":\"Pode me ajudar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"WCS9xTY7Zhjj3A==\",\"senderTimestamp\":\"1771187078\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3h8e0LLGLDYod0uhHnWEt3uhxaW9pD1euZt61BpjHo8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771191919,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:19.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:45:19'),
(20677, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:19.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:20'),
(20678, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:45:19.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:45:20'),
(20679, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"198685539487747@lid\",\"fromMe\":false,\"id\":\"ACF724B44F042499B9582B80B89EED74\"},\"pushName\":\"Andre Luiz\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637782198_837377422671468_750424600294014658_n.enc?ccb=11-4&oh=01_Q5Aa3wErQQb4bldbPeuEB7fCqdq0FRLQfg12VLAahMmnLstTYw&oe=69B9B7EC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ITXxg8lyiyumVRpeA7sPKLCTyelxGV2EfoV\\/eJy3T1M=\",\"fileLength\":\"44183\",\"height\":1422,\"width\":360,\"mediaKey\":\"IVsobFv5VCcY2LC+ZwadbSjk6KfGL8TCVVjYqoQGcJM=\",\"fileEncSha256\":\"WU0sO+he7VJUyVq2lTQn39S7sqSZWPOE4+7zunzRJeo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637782198_837377422671468_750424600294014658_n.enc?ccb=11-4&oh=01_Q5Aa3wErQQb4bldbPeuEB7fCqdq0FRLQfg12VLAahMmnLstTYw&oe=69B9B7EC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771192001\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAEgMBIgACEQEDEQH\\/xAAqAAEBAQEBAAAAAAAAAAAAAAAAAQIDBgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9D0xsqCsaKgqCoMzj0NsjANg\\/8QAIBAAAgIDAAEFAAAAAAAAAAAAAQIAERASIQMTICJRUv\\/aAAgBAQABPwAuiObMRtheD4wSSywKF6uCQJ6i\\/Rwpe2oQ7VwT5SgIGBNeyxA9X2F7gaFDtdiAVi22rXkDN+cf\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"scansSidecar\":\"Q18zosCQ6+lQIF9bwbMyr0d0hgUf1GFH3YDZcsTNFNNmOeoxjrzLaQ==\",\"scanLengths\":[3168,20005,10046,10964],\"midQualityFileSha256\":\"yNYGaC6wO7p+8GfJIZZvwA\\/gcu1d66MngHt4SGE9Q\\/M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NttQtVziwK5yxPEoM7I7PDEyEs0Xcq2zbcUW\\/5wy51Y=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771192002,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:42.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:46:43'),
(20680, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDp-po0BYN6wCulyD7kmJwt3NN4Y5qlyjfG8Wf9LnXZg&oe=699F45A1&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:42.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:44'),
(20681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"pushName\":\"Andre Luiz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDp-po0BYN6wCulyD7kmJwt3NN4Y5qlyjfG8Wf9LnXZg&oe=699F45A1&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:43.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:44'),
(20682, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:42.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:44'),
(20683, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"presences\":{\"198685539487747@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:45.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:45'),
(20684, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"presences\":{\"198685539487747@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:52.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:53'),
(20685, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:53.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:53'),
(20686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDp-po0BYN6wCulyD7kmJwt3NN4Y5qlyjfG8Wf9LnXZg&oe=699F45A1&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:53.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:54'),
(20687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"pushName\":\"Andre Luiz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDp-po0BYN6wCulyD7kmJwt3NN4Y5qlyjfG8Wf9LnXZg&oe=699F45A1&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:53.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:46:54'),
(20688, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"198685539487747@lid\",\"fromMe\":false,\"id\":\"AC63B1053F5AE0AABDF4E08EFB8DCED1\"},\"pushName\":\"Andre Luiz\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595571977_1472338237849761_6024313891915956880_n.enc?ccb=11-4&oh=01_Q5Aa3wHqsrTB_UHXRLCNM92lIQDIPr1OeRyX7uM12TQjjxKuHQ&oe=69B9CB9D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"InPmPQ\\/2nVbxyJtNPY+IjI5lH2J0KUrb9jBbZsIEIcg=\",\"fileLength\":\"15961\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"MaqMN5lH52RxBEwYgSqKgvrg0lc2NiW4yWB3HBKdb1Q=\",\"fileEncSha256\":\"zaDqFydp2mOZnTPozWTV\\/CXMyxsMQqHHHnjG0Yspsmc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595571977_1472338237849761_6024313891915956880_n.enc?ccb=11-4&oh=01_Q5Aa3wHqsrTB_UHXRLCNM92lIQDIPr1OeRyX7uM12TQjjxKuHQ&oe=69B9CB9D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771192006\",\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"waveform\":\"ABkbDgwZDx9bIkUfUj82OUw0JUAUSjILBgAECgMEAxA+LTsNPj06ETMpNzYoPDoYLQ4iMAw8PDgOFxssNgkGFQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GY3gQFB9qcV\\/+EvPNSntpVs78bn85qSd1FUEkNIhVKU=\"}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547913\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771192013,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:46:53.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:46:54'),
(20689, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"122956323762205@lid\",\"fromMe\":true,\"id\":\"A5583F4B6684D398CA0DD0E4B3FE56FA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/589297478_792921583218365_7962357956047450933_n.enc?ccb=11-4&oh=01_Q5Aa3wGkEzEzEPjbwy8XkPAkUuVhhgALLTKxfHKdrLyyV83B5Q&oe=69B9AF48&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1dN1lxXu4rEH\\/RwuU1x0O7Y+1LcHj2dZS4UeLOAP8G0=\",\"fileLength\":\"57445\",\"seconds\":25,\"ptt\":true,\"mediaKey\":\"bUjMcfO19dCCj6aKbBeT4G+huaJey2lKqA4ZaL\\/9eEQ=\",\"fileEncSha256\":\"66+rz+rNw62WnbD2kD2Ff4SbOlunjn+u+6CqyfwLEAw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/589297478_792921583218365_7962357956047450933_n.enc?ccb=11-4&oh=01_Q5Aa3wGkEzEzEPjbwy8XkPAkUuVhhgALLTKxfHKdrLyyV83B5Q&oe=69B9AF48&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771192311\",\"waveform\":\"ABxZRU5ROWFiXVcsRB5eY1wZKlZjVFlRTURRIk5GMCIiQB8XWU1BRh0lOTpRP0ItOE9SNEdOQj5EUjxiPFdZRg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771192346,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:52:26.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:52:27'),
(20690, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:52:26.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:52:27'),
(20691, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:52:26.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 18:52:27'),
(20692, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"122956323762205@lid\",\"id\":\"A5583F4B6684D398CA0DD0E4B3FE56FA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771192348402,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T18:52:28.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 18:52:28'),
(20693, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"122956323762205@lid\",\"id\":\"A5583F4B6684D398CA0DD0E4B3FE56FA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771193607662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:13:27.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:13:28'),
(20694, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"122956323762205@lid\",\"id\":\"A5583F4B6684D398CA0DD0E4B3FE56FA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771193611986,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:13:31.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:13:32'),
(20695, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:13:35.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:13:35'),
(20696, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"presences\":{\"122956323762205@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:14:00.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:14:01'),
(20697, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:14:05.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:14:05'),
(20698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:14:05.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:14:05'),
(20699, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"122956323762205@lid\",\"fromMe\":false,\"id\":\"A52ABC4941B622468C8BC1EB9AABD181\"},\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"message\":{\"conversation\":\"Ta ok, vou ver aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"WCS9xTY7Zhjj3A==\",\"senderTimestamp\":\"1771192162\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ce1CYI+av81h7hyyyhLe+DVB1Ye52eCTfz24N2s8GJ8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771193645,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:14:05.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:14:06'),
(20700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"122956323762205@lid\",\"pushName\":\"G.S.A - CANAIS \\\"Gildilei\\\"\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473394889_990894436321696_6827832402074668469_n.jpg?ccb=11-4&oh=01_Q5Aa3wFoR2H5fjrHYKSd2bRZkUtU3mVBqwhhDg5M3YBICE36MQ&oe=699F5B9B&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:14:05.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:14:06'),
(20701, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"203371080339685@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:19:37.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:19:37'),
(20702, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"203371080339685@lid\",\"fromMe\":true,\"id\":\"A5AFD5BB8FA131424F5A299D046CC0FD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa noite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771193977,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:19:37.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:19:37'),
(20703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:19:37.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:19:37'),
(20704, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"203371080339685@lid\",\"id\":\"A5AFD5BB8FA131424F5A299D046CC0FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771193978477,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:19:38.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:19:38'),
(20705, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1684281544836@lid\",\"fromMe\":true,\"id\":\"A58661831D93FD0686565827275C5ED0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa noite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771194000,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:00.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:20:01'),
(20706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:00.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:20:01'),
(20707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"pushName\":\"charles\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzfIFaigmY8VTzdCbGKQn0So87eT2GEON0sjOxPfbXkg&oe=699F6B48&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:01.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:20:01'),
(20708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1684281544836@lid\",\"id\":\"A58661831D93FD0686565827275C5ED0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194001649,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:01.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:20:01'),
(20709, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:04.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:20:05'),
(20710, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1684281544836@lid\",\"fromMe\":true,\"id\":\"A589666DFD8C2631FC5215562E3F873B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771194004,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:04.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:20:05'),
(20711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1684281544836@lid\",\"id\":\"A589666DFD8C2631FC5215562E3F873B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194005195,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:05.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:20:05'),
(20712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"pushName\":\"charles\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzfIFaigmY8VTzdCbGKQn0So87eT2GEON0sjOxPfbXkg&oe=699F6B48&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:20:05.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:20:06'),
(20713, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":true,\"id\":\"A59A174DBF0932F01E3E99AB9442A3C5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771194098878\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771194100,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:21:40.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:21:40'),
(20714, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:21:40.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:21:40'),
(20715, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A59A174DBF0932F01E3E99AB9442A3C5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194101579,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:21:41.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:21:41'),
(20716, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCTPcTHnmoKwD79KG216QwmhFRqAgH88rMLcso5jD_oA&oe=699F69FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:21:40.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:21:41'),
(20717, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"176763791491157@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:24:41.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:24:42'),
(20718, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"176763791491157@lid\",\"fromMe\":true,\"id\":\"A5CA2AF0732805B33CC4A11572DA2DFD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"stickerSentTs\":\"1771194280605\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1720544\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771194281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:24:41.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:24:42'),
(20719, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"176763791491157@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/540732976_828784623279173_4671954304355585219_n.jpg?ccb=11-4&oh=01_Q5Aa3wGe36XfWbLJ76aCtY6KzhtbbosXr9iYnQR5tAVD-GGtaw&oe=699F57F6&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:24:42.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:24:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"176763791491157@lid\",\"id\":\"A5CA2AF0732805B33CC4A11572DA2DFD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194283774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:24:43.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:24:43'),
(20721, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A59A174DBF0932F01E3E99AB9442A3C5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771194289083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:24:49.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:24:49'),
(20722, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:25:35.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:25:35'),
(20723, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":false,\"id\":\"ACB249BA794AB992DC7925973B66DD53\"},\"pushName\":\"Fábio Souza\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/589139054_4205385099792019_4818856029546738607_n.enc?ccb=11-4&oh=01_Q5Aa3wH7Bt8byYZ29UiEMVISYV_BV86SF5cI5wjwHPl7Wf8IFg&oe=69B9C03E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Se puder dar uma conferida, por favor\",\"fileSha256\":\"OBm5+CBdLcXjw1eUYhp2gJE03TNwdIIfYxwZ87z4wB4=\",\"fileLength\":\"60450\",\"height\":1600,\"width\":720,\"mediaKey\":\"L3CU5r+p\\/QXk2N9kmKecjgH6VUHNp2Fzhkl3isJLm6Y=\",\"fileEncSha256\":\"IOWy1S95mptH49ShXIzkC3ttHC+OO5\\/+zWTEjHt8pd0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/589139054_4205385099792019_4818856029546738607_n.enc?ccb=11-4&oh=01_Q5Aa3wH7Bt8byYZ29UiEMVISYV_BV86SF5cI5wjwHPl7Wf8IFg&oe=69B9C03E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771194334\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAAtAAACAwEBAAAAAAAAAAAAAAAAAQIDBAUGAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA8yDG4oLIzFXdWbbuXKzqZMqBxcri0NgCA\\/\\/EACUQAAEDAwIGAwAAAAAAAAAAAAEAAhEDEBIhMQQTFCBRYTJCUv\\/aAAgBAQABPwC0It92AJRBG96ZIKe6TYNJ2WFRv1RpVYJwMLErh+nGtQp\\/Lc2Wu0BT8ds4bCqNpD4vUqR+iiT5Um0+lI8dhi8qbf\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"EG2Zi9s50U9saQW6IBNoNKf0WPcWoJ98Y\\/ln872hY7BTQK7iBDIJ9g==\",\"scanLengths\":[6846,27260,11252,15092],\"midQualityFileSha256\":\"1950HgY9M1G4BBp0+r4eL8n5k5Ei1yZzh\\/1Za0Gz6g0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rOtZ3\\/Ux27jz85dvnIzdLWPgFcQDuGJCQ+lMFr1+4Is=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771194335,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:25:35.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:25:35'),
(20724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCTPcTHnmoKwD79KG216QwmhFRqAgH88rMLcso5jD_oA&oe=699F69FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:25:35.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:25:35'),
(20725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCTPcTHnmoKwD79KG216QwmhFRqAgH88rMLcso5jD_oA&oe=699F69FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:25:35.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:25:36'),
(20726, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104870300373115@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:21.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:26:21'),
(20727, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104870300373115@lid\",\"fromMe\":true,\"id\":\"A529425E59F0769EEE386A15F023B959\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771194379989\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771194380,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:21.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:21'),
(20728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104870300373115@lid\",\"pushName\":\"Adriana Salvi Inocêncio\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/581003874_875890998726407_2668414562097892714_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzV8qZ_abwz64KitVT-bDCQwgC-05BuMWcsSu-PDcNZQ&oe=699F7291&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:21.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:26:22'),
(20729, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104870300373115@lid\",\"id\":\"A529425E59F0769EEE386A15F023B959\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194381515,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:21.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:22'),
(20730, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A55CCF3BAF423A185D5EECAE35747396\",\"date\":\"2026-02-15T22:26:51.000Z\",\"offline\":false,\"status\":\"offer\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:52'),
(20731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wENVAXxXi1nm7ev-obRdv45AhWnl0rKP-y6h0FywryE4g&oe=699F5432&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:26:52'),
(20732, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"3EB06C474D6F5500534142\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"*NÃO ACEITAMOS LIGAÇÃO!* *Fique atento* nos *Horarios* de *funcionamento!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771194412,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:52'),
(20733, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A55CCF3BAF423A185D5EECAE35747396\",\"date\":\"2026-02-15T22:26:52.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:53'),
(20734, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A55CCF3BAF423A185D5EECAE35747396\",\"date\":\"2026-02-15T22:26:52.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:53'),
(20735, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A55CCF3BAF423A185D5EECAE35747396\",\"date\":\"2026-02-15T22:26:52.000Z\",\"offline\":false,\"status\":\"reject\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:53'),
(20736, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"63637.17894-57147\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194412816,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:54'),
(20737, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB06C474D6F5500534142\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194412799,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:54'),
(20738, 'call', 'JTVPLAY', '{\"event\":\"call\",\"instance\":\"JTVPLAY\",\"data\":{\"chatId\":\"21981793632295@lid\",\"from\":\"21981793632295@lid\",\"id\":\"A55CCF3BAF423A185D5EECAE35747396\",\"date\":\"2026-02-15T22:26:52.000Z\",\"offline\":false,\"status\":\"ringing\",\"isVideo\":false,\"isGroup\":false},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:52.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:54'),
(20739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB06C474D6F5500534142\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771194415358,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:26:55.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:26:55'),
(20740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1684281544836@lid\",\"id\":\"A589666DFD8C2631FC5215562E3F873B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771194501638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:21.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:28:22'),
(20741, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"1684281544836@lid\",\"id\":\"A58661831D93FD0686565827275C5ED0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771194501644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:21.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:28:22'),
(20742, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"presences\":{\"1684281544836@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:24.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:28:25'),
(20743, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:27.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:28:27'),
(20744, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"1684281544836@lid\",\"fromMe\":false,\"id\":\"AC844534B998951E1D1B9F20C73B7F73\"},\"pushName\":\"charles\",\"message\":{\"conversation\":\"Voltou ja\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Flb+7EvfijYhPf1LUi8GGmUWH2GFfDUc4NLcvo3Xh\\/0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771194507,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:27.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:28:28'),
(20745, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"1684281544836@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzfIFaigmY8VTzdCbGKQn0So87eT2GEON0sjOxPfbXkg&oe=699F6B48&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:27.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:28:28'),
(20746, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"1684281544836@lid\",\"pushName\":\"charles\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/597700085_1779164439432416_8268425849926526395_n.jpg?ccb=11-4&oh=01_Q5Aa3wEzfIFaigmY8VTzdCbGKQn0So87eT2GEON0sjOxPfbXkg&oe=699F6B48&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:28:27.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:28:28'),
(20747, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":true,\"id\":\"A543A3883E6B14D246E0098D000C0A6E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reincia o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771194912,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:35:12.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:35:12'),
(20748, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:35:12.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:35:12'),
(20749, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCTPcTHnmoKwD79KG216QwmhFRqAgH88rMLcso5jD_oA&oe=699F69FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:35:12.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:35:12'),
(20750, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A543A3883E6B14D246E0098D000C0A6E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194913843,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:35:13.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:35:14'),
(20751, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"198685539487747@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:36:10.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:36:10'),
(20752, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"198685539487747@lid\",\"fromMe\":true,\"id\":\"A5EC84243265AC3143B000D09ACF342B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wFkm44x8GLPcqguQzqOVnm4ZKwpYjjvnKiwmgcVXv7ypA&oe=69B9AFFC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"stickerSentTs\":\"1771194969522\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":7776000,\"ephemeralSettingTimestamp\":\"1706547\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771194970,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:36:10.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:36:10'),
(20753, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"198685539487747@lid\",\"pushName\":\"Andre Luiz\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627754357_1607175363748335_264812007842044259_n.jpg?ccb=11-4&oh=01_Q5Aa3wFDp-po0BYN6wCulyD7kmJwt3NN4Y5qlyjfG8Wf9LnXZg&oe=699F45A1&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:36:10.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:36:11'),
(20754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"198685539487747@lid\",\"id\":\"A5EC84243265AC3143B000D09ACF342B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771194972625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:36:12.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:36:12'),
(20755, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"184043811405991@lid\",\"id\":\"A543A3883E6B14D246E0098D000C0A6E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771195195478,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:39:55.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:39:55'),
(20756, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"presences\":{\"184043811405991@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:18.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:40:18'),
(20757, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"presences\":{\"184043811405991@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:24.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:40:24'),
(20758, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"presences\":{\"184043811405991@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:24.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:40:24'),
(20759, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:25.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:40:25'),
(20760, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCTPcTHnmoKwD79KG216QwmhFRqAgH88rMLcso5jD_oA&oe=699F69FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:25.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:40:26'),
(20761, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"184043811405991@lid\",\"fromMe\":false,\"id\":\"AC242B8704694A3EFBE926505B92A494\"},\"pushName\":\"Fábio Souza\",\"message\":{\"conversation\":\"Deu certo, obrigado 🙏🏽\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QAzkgP52zMFBOuISRrzL4HmNoE9Cfj\\/RKxPSCoaaqL0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771195225,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:25.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:40:26'),
(20762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"184043811405991@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/592599898_1899847370643487_6594669507043787222_n.jpg?ccb=11-4&oh=01_Q5Aa3wFCTPcTHnmoKwD79KG216QwmhFRqAgH88rMLcso5jD_oA&oe=699F69FB&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:40:26.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:40:26'),
(20763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"203371080339685@lid\",\"id\":\"A5AFD5BB8FA131424F5A299D046CC0FD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771195448369,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:08.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:44:08'),
(20764, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:09.198Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:44:09'),
(20765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:12.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:44:12'),
(20766, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AA45D2273E376E5C1E7\"},\"pushName\":\"Bruna\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"9bR4nOLlei9QQA==\",\"senderTimestamp\":\"1770903374\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pD+oEpPYKwzpdejcTD1UUffsMFgpl2RSliWH1V6Yw+M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771195452,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:12.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:44:12'),
(20767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:12.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:44:13'),
(20768, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:12.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:44:13'),
(20769, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:14.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:44:14'),
(20770, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:44:56.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:44:56'),
(20771, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AC85CB6FE2C32BA9188\"},\"pushName\":\"Bruna\",\"message\":{\"conversation\":\"Poderia me ajudar?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"9bR4nOLlei9QQA==\",\"senderTimestamp\":\"1770903374\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dhtMzKS6Gz2IWHj+knxyJrvW8V5HRAuA+mleM5RgWeg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771195501,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:01.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:45:02'),
(20772, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:01.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:02'),
(20773, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:02.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:02'),
(20774, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:02.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:03'),
(20775, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:06.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:06'),
(20776, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:09.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:09'),
(20777, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ABC0C1B4CDEB1AF2FA1\"},\"pushName\":\"Bruna\",\"message\":{\"conversation\":\"Minha tv não está funcionando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"9bR4nOLlei9QQA==\",\"senderTimestamp\":\"1770903374\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"E2gkhB67PgpasrMFNDTGx1BnW13DX+uyEzSQmyzjI3I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771195509,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:09.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:45:10'),
(20778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:09.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:10'),
(20779, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:09.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:10'),
(20780, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:45:12.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:45:12'),
(20781, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"198685539487747@lid\",\"id\":\"A5EC84243265AC3143B000D09ACF342B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771195574299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:46:14.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:46:14'),
(20782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:46:52.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:46:52'),
(20783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5511950523665@s.whatsapp.net\",\"pushName\":\"Bruna 3665 $90 Salomão 😷\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:46:52.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:46:53'),
(20784, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5511950523665@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:46:52.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:46:53'),
(20785, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511950523665@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A3718E0C23F3413D1FF\"},\"pushName\":\"Bruna\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQNiMipOUzAuUZ5GU7Z6QCItx9ldfbOuGZSbonbY_Sl9e7qpCDEaR7vffNSMnELXvXpYhC83l17gtn8z5z6l1JfKWw3ke48aPfVl_A8ZEQ?ccb=9-4&oh=01_Q5Aa3wF058GbAdj30d65gAACh_U4LaUcocldZ6FNqq18dsJKYA&oe=69B9D468&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"XFL3oh8LaOFmXeJqp3IW7K0m5xIo8PP527X4zFWEdhI=\",\"fileLength\":\"93860\",\"height\":803,\"width\":1280,\"mediaKey\":\"polttfWdPGhGBI+dR330adBJlYWibvbY97QkZlO4ymA=\",\"fileEncSha256\":\"q3NQQgXvktqC2RK1WiJ\\/tv5hJO1ZSvSLSAbrCelwLVc=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQNiMipOUzAuUZ5GU7Z6QCItx9ldfbOuGZSbonbY_Sl9e7qpCDEaR7vffNSMnELXvXpYhC83l17gtn8z5z6l1JfKWw3ke48aPfVl_A8ZEQ?ccb=9-4&oh=01_Q5Aa3wF058GbAdj30d65gAACh_U4LaUcocldZ6FNqq18dsJKYA&oe=69B9D468&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771195611\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAIDAQUE\\/8QAGQEAAgMBAAAAAAAAAAAAAAAAAAIBAwUE\\/9oADAMBAAIQAxAAAADm0g7FiTA4mDe3UanVwYI83R49bs54aFZho3srMq1aCkpyWk9mW5gS+qxPv1aJoyLENxNxrcnACSk9H6ry2rSsQA8zBZk7ECVkA3RAXpAA\\/8QAGxEAAgIDAQAAAAAAAAAAAAAAABEQIAEhQRL\\/2gAIAQIBAT8AQo2bOjjFeCoxjPQ5\\/8QAHxEAAgIBBAMAAAAAAAAAAAAAAAECERIQEyExA1Fh\\/9oACAEDAQE\\/ANEuTCC7RXj+D5hQosj2NWJL2Xouy2pGeqMLdmBiJC4N+ZvzP\\/\\/EACsQAAIBAwIEBQQDAAAAAAAAAAABAgMREiExBEFRkRATMlJhBSJCcaGx0f\\/aAAgBAQABPwCFao\\/zYqs\\/cxVJP8mZy6sc5dWRqO61ZkjJDafIppvbwTExvQ5o5CpzeqQ6VT2n0zHOTnHJWOH4ajVzygv8OMpU6NXGnPJf0I5C9SEr2FohvTf+Sj5lKTxFOvraT131MJt\\/JhJK7ELdC2NWx0Z23XcU2+Zk+rFN9WZN8xCeqIW0y2LJxdr3HkupHwjaxLTYhNPRnNEW1i0rkG8NizlyI+F7DlcTIy1RT1x1t8kVpubP1CT6Ms+j7GMnyfYUJX2fYxfR9iL1RH0r9Fxt9RcTTUUlB\\/IuKh7WLiIyf2xdydXiIT1sv2jz6+949jGTnk2tyNekoq8jz6XuHXo+4\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"9LcSioVZeBwVag==\",\"firstScanLength\":7341,\"scansSidecar\":\"9LcSioVZeBwVaqryxecilXG+2zx\\/zVbYLulMCUg1RnGfcwntA2P2xg==\",\"scanLengths\":[7341,33450,13030,40037],\"midQualityFileSha256\":\"3fPS\\/iO6RecwYR\\/\\/3Q08dOtJs0E6bqckzjKHIMzg\\/mg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"9bR4nOLlei9QQA==\",\"senderTimestamp\":\"1770903374\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770241997\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pYvg1DkOu1KtF2YmztlDiXOm\\/SO0iRsFGMAzItXnlmc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771195612,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:46:52.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 19:46:53'),
(20786, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:47:34.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:47:34'),
(20787, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:47:40.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:47:41'),
(20788, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:50:59.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:50:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20789, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"presences\":{\"203371080339685@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T19:51:04.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 19:51:04'),
(20790, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5C1A2C16CB9185378C73B44C6FAC30F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771196720593,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:05:20.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:05:21'),
(20791, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A556827EAC2960AF6D0F17AA633B26BD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771196720797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:05:20.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:05:21'),
(20792, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83666097143868@lid\",\"presences\":{\"83666097143868@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:16:19.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:16:19'),
(20793, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"203371080339685@lid\",\"fromMe\":true,\"id\":\"A59102CF1176BE2534052364E61C1821\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597651211_2405533789964411_5400696905692055829_n.enc?ccb=11-4&oh=01_Q5Aa3wFSB8fh_GzUnrdwn1Yw2ad1MauQI23n6oElSQwq5KiwyQ&oe=69B9CEBC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jQLM1E\\/2QO6d8jE76737wHFvrSIADZgo7edDWI54d58=\",\"fileLength\":\"25771\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"H1z313CQoBR9UCOiMqJmyldhJU6\\/5PUFHUgc3nVThac=\",\"fileEncSha256\":\"2I41BFRiW7aey7DMN3o+i6iAOwRfhaYlxMdpmBw8chA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597651211_2405533789964411_5400696905692055829_n.enc?ccb=11-4&oh=01_Q5Aa3wFSB8fh_GzUnrdwn1Yw2ad1MauQI23n6oElSQwq5KiwyQ&oe=69B9CEBC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771198348\",\"waveform\":\"AF1eXDlMKVcpUD5JUVMqUltKVyxLJDdJS0omU0MAIQQYIChEWFkwVRJJUVtJNDBBQ0xLLEwgQlUjUwBRTEdRIQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771198360,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:40.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:32:41'),
(20794, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:40.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:32:41'),
(20795, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"203371080339685@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:40.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:32:41'),
(20797, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"203371080339685@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:42.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:32:42'),
(20798, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"203371080339685@lid\",\"fromMe\":true,\"id\":\"A581315DBFCFCA649AD9F8B914A45203\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/599459779_901888122428438_1189079887388761455_n.enc?ccb=11-4&oh=01_Q5Aa3wGGf64fRZ_s-AwxQ4NHQJk-I8fP_CYiKNo_pUthd0ANxg&oe=69B9B60E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"AR8j7Lw0vRs4nhmuu7gXXIrsW08H9ZsfTgXeJGj2KPU=\",\"fileLength\":\"2420\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"z3X5CazVqfuM7H11evUQuc94bqVQBAJKH9f8SAC+zqM=\",\"fileEncSha256\":\"JzR76KIaQ5QSfFKroglkx1D6Lmq08wHPWBBFRojM194=\",\"directPath\":\"\\/v\\/t62.7117-24\\/599459779_901888122428438_1189079887388761455_n.enc?ccb=11-4&oh=01_Q5Aa3wGGf64fRZ_s-AwxQ4NHQJk-I8fP_CYiKNo_pUthd0ANxg&oe=69B9B60E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771198361\",\"waveform\":\"WVdWVFNNRj43N0BIUVlaW1xdXVxbW08+LRwXJjRCTT4wIhMXHCIoLTI3PD88OTY0ODxARUhLTlFRTUpGP05LUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771198362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:42.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:32:43'),
(20799, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:42.927Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:32:43'),
(20800, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"203371080339685@lid\",\"id\":\"A581315DBFCFCA649AD9F8B914A45203\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771198363365,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:43.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:32:43'),
(20801, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"203371080339685@lid\",\"fromMe\":true,\"id\":\"A55DD20E0C7196200372DC01DB841E17\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UEDGYRAY7I\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771198366,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:46.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:32:47'),
(20802, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"203371080339685@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:46.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:32:47'),
(20803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"203371080339685@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/422346177_1441801236494209_7081837877131694297_n.jpg?ccb=11-4&oh=01_Q5Aa3wHWJP_y-gZy-NHecJTygKupzRIVC49_ZnXifOp4t7bmKg&oe=699F6C47&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:47.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 20:32:47'),
(20804, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"203371080339685@lid\",\"id\":\"A55DD20E0C7196200372DC01DB841E17\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771198367575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:32:47.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:32:48'),
(20805, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104870300373115@lid\",\"id\":\"A529425E59F0769EEE386A15F023B959\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771199997174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T20:59:57.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 20:59:58'),
(20806, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:35.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:04:35'),
(20807, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:35.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:04:35'),
(20808, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":false,\"id\":\"AC04C623444B8C2F5830CE3818E30FF9\"},\"pushName\":\"Paulo Fontoura\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/637679287_26020827170912110_6670568473475837364_n.enc?ccb=11-4&oh=01_Q5Aa3wH3qht22ImdaNhc0-X1x7Ke3wLk47DSr9r9Z6XWYFsP3g&oe=69B9C459&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"wzy73EeQ7eOe5wNRNIi7bO\\/wxhh5jAjz357MJL1W+Ek=\",\"fileLength\":\"6044\",\"pageCount\":2,\"mediaKey\":\"rUsUByVppy8Goqu1Lw1HYxjtNRE+6fiMKEwEkCAPIBo=\",\"fileName\":\"1771200251409.pdf\",\"fileEncSha256\":\"htMFr\\/Xx79gLnc4aknXVXm912lXfolgllEC2wc0xfxo=\",\"directPath\":\"\\/v\\/t62.7119-24\\/637679287_26020827170912110_6670568473475837364_n.enc?ccb=11-4&oh=01_Q5Aa3wH3qht22ImdaNhc0-X1x7Ke3wLk47DSr9r9Z6XWYFsP3g&oe=69B9C459&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771200274\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/589725536_1454254113075063_2682624091202710286_n.enc?ccb=11-4&oh=01_Q5Aa3wFKTXZpIyfdvAcSJdDP1ljigCdXTpPeDAZDQkyLBPpbgw&oe=69B9C1F2&_nc_sid=5e03e0\",\"thumbnailSha256\":\"JDWGxp7xqi3GGCPUjuJ14rFms\\/rI3uLdR79JPzkMoo0=\",\"thumbnailEncSha256\":\"Rs6oqP6ATJc7Z9a+XEXGRKtH9PfvUci8oR6P0jbe\\/qw=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEsybAABCFsFAAjidwAASzJsAADl1GbQAB\\/\\/xAAtEAACAAMFBgYDAQAAAAAAAAABAgADERITICExBCJhcYKREENRU4GhJDNBZP\\/aAAgBAQABPwDwedLlsoY0rWkJtUglVD5nhimobVVnOeApAVx5kz6hBZGbk88HTHTHTHTHx4TRujeIziTNSVW1MLVgMrDI4XW0KUB5xcn25XaFRV0UDkMM6ljNiOIgaD8r4yi7en727CBKcMCZzEemWCbWzklo10gmoDHZ6nkIBqBlTDNFV1Iz\\/kAFdJ03tCqRqxOFywFQK5xev7D\\/AFF6\\/stANQMqYJxUJvNQViU6E1basvQkCL2UfMTuIBB0NcE2tnJLWekAvXe2Tsoi1\\/jPYQswggXDKPjAQDF2vHucFPD\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AEf\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAIUBR\\/9oACAEDAQE\\/ABZP\\/9k=\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88},\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/X4gWpPjUFX8dZFU4TfcVlTTW8tPqTlFe2DfeGQImiw=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":88},\"messageType\":\"documentMessage\",\"messageTimestamp\":1771200275,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:35.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 21:04:35'),
(20809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJSniCW6WujKO8DkU6TUpKi5SKEldeCDMFH7-mTBowxw&oe=699F75AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:35.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:04:36'),
(20810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJSniCW6WujKO8DkU6TUpKi5SKEldeCDMFH7-mTBowxw&oe=699F75AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:35.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:04:36'),
(20811, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:38.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:04:38'),
(20812, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":true,\"id\":\"A5E24DCE79C95721F987FFEBC5734989\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1749238289\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1749238289\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771200277,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:38.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 21:04:38'),
(20813, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wFJSniCW6WujKO8DkU6TUpKi5SKEldeCDMFH7-mTBowxw&oe=699F75AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:38.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:04:39'),
(20814, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"id\":\"A5E24DCE79C95721F987FFEBC5734989\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771200278233,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:04:38.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 21:04:39'),
(20815, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T21:54:36.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 21:54:37'),
(20816, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"presences\":{\"111141506297958@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T22:06:48.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 22:06:48'),
(20817, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A3F5BE7C17809F6A8F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Paulo Itj vizinho*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 25,00*\\r\\n• Próximo vencimento: *17\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771204009,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T22:06:49.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 22:06:49'),
(20818, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB051A43AB6337C8A2789\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Pagamento Confirmado!*\\n\\nOlá, *Paulo Itj vizinho*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n📋 *Detalhes:*\\n💰 Valor: *R$ 25,00*\\n📅 Novo vencimento: *17\\/03\\/2026*\\n✅ Status: *Em dia*\\n\\nObrigado pela preferência! 🙏\\n\\nSeu acesso está garantido até *17\\/03\\/2026*.\\n\\n_Continue aproveitando nossos serviços!_ 🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771204032,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T22:07:12.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 22:07:12'),
(20819, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"id\":\"3EB0A3F5BE7C17809F6A8F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771208702736,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:02.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:25:03'),
(20820, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"id\":\"3EB051A43AB6337C8A2789\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771208703655,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:03.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:25:04'),
(20821, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMuqJ8pyRz-D-RrmfP2MB-ZPXuL0kLbDTOYcDO9DLDpw&oe=699FADEA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:27.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:25:27'),
(20822, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMuqJ8pyRz-D-RrmfP2MB-ZPXuL0kLbDTOYcDO9DLDpw&oe=699FADEA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:27.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:25:28'),
(20823, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":false,\"id\":\"AC6DA0D8E078BD096E7F7A95F956069A\"},\"pushName\":\"Paulo Fontoura\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":false,\"id\":\"3EB051A43AB6337C8A2789\"},\"text\":\"🙏🏿\",\"senderTimestampMs\":\"1771208725838\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771208728,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:28.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:25:28'),
(20824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMuqJ8pyRz-D-RrmfP2MB-ZPXuL0kLbDTOYcDO9DLDpw&oe=699FADEA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:28.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:25:29'),
(20825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wGMuqJ8pyRz-D-RrmfP2MB-ZPXuL0kLbDTOYcDO9DLDpw&oe=699FADEA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:25:28.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:25:29'),
(20826, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:53.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:37:54'),
(20827, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ5omxkmnT6c1tr6z4O7V8_63xarI4fthgwCh19Di2tQ&oe=699F9192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:54.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:37:54'),
(20828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:54.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:37:54'),
(20829, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":false,\"id\":\"AC2C0768DF718994027B380235443A61\"},\"pushName\":\"Luiz Henrique\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/527039594_2116840669113789_4776623045503371581_n.enc?ccb=11-4&oh=01_Q5Aa3wGBqtwmdvkt8FLFFPDvM9FBqSmy_ZvU7SmYWchSvC0xnw&oe=69BA0573&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"OI\\/N3xSvvl+0pUG3pWc09LmhB2ZZOuA7KpzJlxEaAGs=\",\"fileLength\":\"6055\",\"pageCount\":2,\"mediaKey\":\"wf8wBwMW4km8fD\\/ak1TkIn6aMRyepXmWeJ3+ld74WOU=\",\"fileName\":\"1771209462953.pdf\",\"fileEncSha256\":\"o3BUmDE3KQLywZ6bA\\/2MYlXvhZrQKzYNxfJbccxhvjo=\",\"directPath\":\"\\/v\\/t62.7119-24\\/527039594_2116840669113789_4776623045503371581_n.enc?ccb=11-4&oh=01_Q5Aa3wGBqtwmdvkt8FLFFPDvM9FBqSmy_ZvU7SmYWchSvC0xnw&oe=69BA0573&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771209473\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/597458184_889933766984028_5646797641839989556_n.enc?ccb=11-4&oh=01_Q5Aa3wFRC-dn4GjipeeuRDvPlv7dfzCaY1YLhvmIxT2uvqj-_A&oe=69B9E85B&_nc_sid=5e03e0\",\"thumbnailSha256\":\"FeSm2wZn9fgZEpha0YDy7ePVxL7d4dLhngJdLW1eXW8=\",\"thumbnailEncSha256\":\"aKz0mHedvjOyxDpIJhb30T3rHV\\/ROuBtzrTtULou2q0=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQMCBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wHLnNfQlQCWcGgAAJjuOegAAkuRslAAIQ6AAAy1HNoAA\\/8QAMBAAAgECAwYEBAcAAAAAAAAAAQIDABESICEEEzFhcZEQIlKCFDJDU0JRZIGSoaL\\/2gAIAQEAAT8A8HmjjZQxte9qTaoCVUPqeWaVDiusznkLUFcfUk\\/qkGEWLk9cntr217a9tft4TWCavh1GtQzRxhryFiaE0R\\/EKDK3Bgckuq\\/IG14EXo4jc\\/Cr\\/EUgjI82zqD0FKiL8qgdBkcqB5uFWh9X+qxL6hQdCbBhklvh0QNrwNWRbA7KDzsK3MX2k7ChFGDcRrf87ZJRdeJHSlBXQTSdqVSpN3JyuSBcC9b1\\/svSuxNjGw55ZioTzNYXqJ4zq206D1ECt7EfqJ3FAg8DfJLfDomLXhQL382ydlFYv0Z7CkkIIG4ZQemQgGt2vPuclvD\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAECAQE\\/AEf\\/xAAXEQADAQAAAAAAAAAAAAAAAAAAIUBR\\/9oACAEDAQE\\/ABZP\\/9k=\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"S1jdYdspZQcidAZzTRz0Y4r\\/GQlNDmLa3uz8UCVanp8=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771209474,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:54.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:37:54'),
(20830, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A59E03803400FB4A56417F98CEA6A7E2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771209475538,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:55.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:37:55'),
(20831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ5omxkmnT6c1tr6z4O7V8_63xarI4fthgwCh19Di2tQ&oe=699F9192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:54.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:37:56'),
(20832, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:56.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:37:57'),
(20833, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":true,\"id\":\"A59E03803400FB4A56417F98CEA6A7E2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771209476,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:56.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:37:57'),
(20834, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wHQ5omxkmnT6c1tr6z4O7V8_63xarI4fthgwCh19Di2tQ&oe=699F9192&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:37:57.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-15 23:37:57'),
(20835, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A59E03803400FB4A56417F98CEA6A7E2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771209491905,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:38:11.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:38:12'),
(20836, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A59E03803400FB4A56417F98CEA6A7E2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771209502446,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-15T23:38:22.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-15 23:38:22'),
(20837, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814:26@lid\",\"id\":\"A5B979DEEE0FE4BF256EB951D2FBF170\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771212765753,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T00:32:45.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 00:32:46'),
(20838, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814:26@lid\",\"id\":\"A5AE4BE8727A78FCEDE0104D9181223F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771212787027,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T00:33:07.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 00:33:07'),
(20839, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814:26@lid\",\"id\":\"A5FB46DB598D04CD345400B1D71D4193\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771212787009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T00:33:07.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 00:33:07'),
(20840, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814:26@lid\",\"id\":\"A5853FC2773EF7733D911555A0FC6D15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771212787016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T00:33:07.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 00:33:07'),
(20841, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"223578951790814:26@lid\",\"id\":\"A5AE045310C3C26F4E6B69FA44FC714A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771212787021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T00:33:07.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 00:33:08'),
(20842, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T04:38:53.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 04:38:54'),
(20843, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T06:32:06.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 06:32:07'),
(20844, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T06:46:54.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 06:46:55'),
(20845, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T07:24:15.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 07:24:16'),
(20846, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"824717627536@lid\",\"id\":\"A56CE57EB3FD8E2243B446DB2AE60E8B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771238471296,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T07:41:11.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 07:41:11'),
(20847, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"3EB08D4BD291BB9A42CD06\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771240222042,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:10:22.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:10:22'),
(20848, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"A5F572FEA412563C0E1138E01A834146\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771240222059,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:10:22.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:10:22'),
(20849, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"A541C65503CFA3AC77AD6796F24CB86C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771240222072,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:10:22.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:10:23'),
(20850, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"205325357551689:10@lid\",\"id\":\"A545118EEF54D34E7305EB6BE1F6B3D1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771240222065,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:10:22.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:10:23'),
(20851, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4AE06574FE6DAF4301C5\"},\"pushName\":\"Pablo\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/590394975_4138378403078478_5129571587230517595_n.enc?ccb=11-4&oh=01_Q5Aa3wGzrqgXtPKzvre_ArftdtSUEhZakELQ2U9-r_PGNC-JNA&oe=69BA5A56&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"ComprovanteSantander-1771240563.3392282\",\"fileSha256\":\"1+74XZDTrAUZJ4MIpdCHLsBW+ELsomjpDOTYTmjrTLc=\",\"fileLength\":\"6042\",\"pageCount\":2,\"mediaKey\":\"4Nt6p9Y4i26xUY2p5f5WVnxmg+ABKByh\\/lbhNnQmb3M=\",\"fileName\":\"ComprovanteSantander-1771240563.3392282.pdf\",\"fileEncSha256\":\"8EgJB0af+xeTuOlZMyjEBMe3Jnm6M7q03\\/2VtPjNxnw=\",\"directPath\":\"\\/v\\/t62.7119-24\\/590394975_4138378403078478_5129571587230517595_n.enc?ccb=11-4&oh=01_Q5Aa3wGzrqgXtPKzvre_ArftdtSUEhZakELQ2U9-r_PGNC-JNA&oe=69BA5A56&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771240569\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACcDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIBAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD00hNzRoIm8K3NAIzRtABzJOuxYBIKBgP\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AH\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AH\\/\\/xAAjEAEAAgIBBAEFAAAAAAAAAAABAhEAIRADEjFBIBNRUoGR\\/9oACAEBAAE\\/AMlLtLw6ovjBvxxKRF3iEjefTjgUa4mo6r94Sm\\/jhfvmQLusCI3rO4+\\/M6susiR91nbE9cypd4dp7Ph1EE8YMK3V4I+Oer5Nhkdta\\/mBIfVcsbwjXw\\/\\/\\/gADAP\\/Z\",\"caption\":\"\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"QGimkMCYe00iiNeZgnhmVB5a6JWYY4mgAcwqhAx6R9I=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771240571,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:11.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:16:12'),
(20852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wHorYlg_hg8pNEqdDAsPAJZB1lRCfSoqwoI143kX4c64A&oe=69A01F5C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:11.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 08:16:12');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20853, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:11.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 08:16:12'),
(20854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wHorYlg_hg8pNEqdDAsPAJZB1lRCfSoqwoI143kX4c64A&oe=69A01F5C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:11.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 08:16:12'),
(20855, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5075813C3A8A0339E1FEE2BAEB0C3FD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771240573,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:14.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:16:14'),
(20856, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:14.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 08:16:14'),
(20857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5075813C3A8A0339E1FEE2BAEB0C3FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771240575379,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:15.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:16:15'),
(20858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:14.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 08:16:15'),
(20859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5075813C3A8A0339E1FEE2BAEB0C3FD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771240577364,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:16:17.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:16:17'),
(20860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792683090:92@s.whatsapp.net\",\"id\":\"A5FB5CF338858E3C1D604742BA059246\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771242707289,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T08:51:47.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 08:51:47'),
(20861, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:09:49.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:09:50'),
(20862, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:09:59.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:00'),
(20863, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:07.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:07'),
(20864, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"presences\":{\"252012138635473@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:07.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:07'),
(20865, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC2D5D7F649D1AFBF22D1A8DDE34AC93\"},\"pushName\":\"Carol Schultz\",\"message\":{\"conversation\":\"Acho que a dindinha tá com ranço de vc\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MTduc5qj0wywkPFMS6vharQWv2CRBB0SJJ0gETfga9E=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771243807,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:07.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 09:10:07'),
(20866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wExUU90mBFWfnqorwchAIHRN3pb2YmEntqPt77Y_Xp_tQ&oe=69A01F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:07.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:07'),
(20867, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wExUU90mBFWfnqorwchAIHRN3pb2YmEntqPt77Y_Xp_tQ&oe=69A01F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:07.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:08'),
(20868, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":true,\"id\":\"A55537DD6F93DAFDA1C92C7776FDB416\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"To nem ai\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771243824,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:24.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 09:10:25'),
(20869, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:24.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:25'),
(20870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wExUU90mBFWfnqorwchAIHRN3pb2YmEntqPt77Y_Xp_tQ&oe=69A01F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:24.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:25'),
(20871, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A55537DD6F93DAFDA1C92C7776FDB416\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771243824775,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:24.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 09:10:25'),
(20872, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"252012138635473@lid\",\"id\":\"A55537DD6F93DAFDA1C92C7776FDB416\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771243843828,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:43.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 09:10:44'),
(20873, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:47.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:47'),
(20874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wExUU90mBFWfnqorwchAIHRN3pb2YmEntqPt77Y_Xp_tQ&oe=69A01F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:47.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:48'),
(20875, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"252012138635473@lid\",\"fromMe\":false,\"id\":\"AC4D6D856DBFE4252E76F3D3EE3A6A84\"},\"pushName\":\"Carol Schultz\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/588632194_1621306085690477_3955412830988233931_n.enc?ccb=11-4&oh=01_Q5Aa3wE1yGdDekpKU_6rSMeEBngmpLRaaNRgIogtPxwpJQCpAA&oe=69BA8E08&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"\\/dHA3GDDVLyPcj7NLAph3H3aqwjftBbIW7sOra5Cyxs=\",\"fileEncSha256\":\"nTzhYK1Rpy+6ir+aFMy6sTGYPBKikbwa2KKHeYVl5VI=\",\"mediaKey\":\"E07LENHd\\/\\/4JGK58E65sGp3S2H\\/OT5tWbAq+Ry6PSEI=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/588632194_1621306085690477_3955412830988233931_n.enc?ccb=11-4&oh=01_Q5Aa3wE1yGdDekpKU_6rSMeEBngmpLRaaNRgIogtPxwpJQCpAA&oe=69BA8E08&_nc_sid=5e03e0\",\"fileLength\":\"12446\",\"mediaKeyTimestamp\":\"1771243847\",\"isAnimated\":false,\"stickerSentTs\":\"1771243846979\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cs3MFQTPcbD+N14yVuMHhE+zVg7FTVbtVgZFjIKs\\/MY=\"}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771243847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:47.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 09:10:48'),
(20876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"252012138635473@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/625479483_1384881062857983_8976836385419141337_n.jpg?ccb=11-4&oh=01_Q5Aa3wExUU90mBFWfnqorwchAIHRN3pb2YmEntqPt77Y_Xp_tQ&oe=69A01F93&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T09:10:47.947Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 09:10:48'),
(20877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5A221CF14C20F194685AB4779EF7907\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590938658_1258224366420410_7254985474120118054_n.enc?ccb=11-4&oh=01_Q5Aa3wHg2_JNAr_vXhB8dJrS1zMagOkZZBzFYpzYbG-i6uQYAw&oe=69BA73BF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ijyIU5y2yuLl0lFYfPQMd7qOkcxKFYcA6ZjpFjEGyJI=\",\"fileLength\":\"7189\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"3SLPf3X5602rtiJ948FyP0dXRsG\\/oQUoq5PVy3O1H2w=\",\"fileEncSha256\":\"+lY2qa09\\/LZFzyiJBbT46Q+MHnIF81\\/UAK15FrO1dXo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590938658_1258224366420410_7254985474120118054_n.enc?ccb=11-4&oh=01_Q5Aa3wHg2_JNAr_vXhB8dJrS1zMagOkZZBzFYpzYbG-i6uQYAw&oe=69BA73BF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771248374\",\"waveform\":\"AB4fGhcySEZKVllZWlpXUFJWSjxWUQ82TFJTV1lSTkYDS1VEPkFMV0knTEdHUVZSUE5MSDdTMTlENERUUFJPRw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771248376,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:26:16.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:26:17'),
(20878, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:26:16.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:26:17'),
(20879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wHorYlg_hg8pNEqdDAsPAJZB1lRCfSoqwoI143kX4c64A&oe=69A01F5C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:26:17.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:26:18'),
(20880, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A221CF14C20F194685AB4779EF7907\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771248378254,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:26:18.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:26:18'),
(20881, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A221CF14C20F194685AB4779EF7907\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771249210513,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:10.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:11'),
(20882, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5A221CF14C20F194685AB4779EF7907\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771249212340,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:12.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:12'),
(20883, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:17.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:18'),
(20884, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:21.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:21'),
(20885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A2A6138496DCDFA5232\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Bom dia mano\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FWpHaXsyR1E88LVctzY54Q8CI0AYwub9vhzvtVx3G7I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771249221,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:21.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:21'),
(20886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:21.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:22'),
(20887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wHorYlg_hg8pNEqdDAsPAJZB1lRCfSoqwoI143kX4c64A&oe=69A01F5C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:21.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:22'),
(20888, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:23.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:23'),
(20889, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":true,\"id\":\"A53AC712518B9DBAAA9CF62C70FD0832\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771249229,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:29.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:30'),
(20890, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:29.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:30'),
(20891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-eFb87G9ZGpgNXHtot4Q-ayLO49nPwE6PNwske75J1A&oe=69A03A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:30.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:31'),
(20892, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A53AC712518B9DBAAA9CF62C70FD0832\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249231646,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:31.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:31'),
(20893, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:32.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:32'),
(20894, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":true,\"id\":\"A5A0C1B8067647B4B0D8C836C41DA8BE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wHounljKzpxyOhi5K8nioC3XcvConHCfTyqSL_cIXBHPQ&oe=69BA90FC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wHounljKzpxyOhi5K8nioC3XcvConHCfTyqSL_cIXBHPQ&oe=69BA90FC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771249231307\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771249232,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:32.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:32'),
(20895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-eFb87G9ZGpgNXHtot4Q-ayLO49nPwE6PNwske75J1A&oe=69A03A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:32.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:33'),
(20896, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A5A0C1B8067647B4B0D8C836C41DA8BE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249232756,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:32.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:33'),
(20897, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209268187901974@lid\",\"fromMe\":true,\"id\":\"A51491F959052F7C950E8E7F69297B32\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637966126_1153260056760526_1634761179171206732_n.enc?ccb=11-4&oh=01_Q5Aa3wE3amERYfYwaCLgBE0PWM7c4TTFfqD9E9yKnxxJFiJDBg&oe=69BA903D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"EvvxIwwnl6CSfH9uXuM28OKNhnloJZ+H8khmKwaodrM=\",\"mediaKey\":\"KpjRVRQbz2Boy0MN8Z4gE+b1y1Yj5GRtf5wCYwtrD4I=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/637966126_1153260056760526_1634761179171206732_n.enc?ccb=11-4&oh=01_Q5Aa3wE3amERYfYwaCLgBE0PWM7c4TTFfqD9E9yKnxxJFiJDBg&oe=69BA903D&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1771249232\",\"isAnimated\":false,\"stickerSentTs\":\"1771249232822\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771249233,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:33.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:34'),
(20898, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209268187901974@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:33.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:34'),
(20899, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209268187901974@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/328067547_1089082682794626_3862538925593460518_n.jpg?ccb=11-4&oh=01_Q5Aa3wF-eFb87G9ZGpgNXHtot4Q-ayLO49nPwE6PNwske75J1A&oe=69A03A52&_nc_sid=5e03e0&_nc_cat=111\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:33.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:34'),
(20900, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A51491F959052F7C950E8E7F69297B32\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249234213,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:34.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:35'),
(20901, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4AECB0AB7EFD9E39FC73\"},\"pushName\":\"Pablo\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNST-tzsxJiDE5hPs5imjpDETvPEyBePc0c95SCwR0YK0phHnR0VIOInSDZyAt6E62w5tKtFVbA7hjCgpfaKryQet19VpSuXWCEkG2KNg?ccb=9-4&oh=01_Q5Aa3wFnNDUwZFIM_yfRIwW0UKIL_-JASo6CK2yJlPuIl0iz8g&oe=69BA7C88&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"eSK9nuoVmzLbnAXPQifzDrxk5IW2xHMxrLG8tj20h\\/k=\",\"fileLength\":\"31361\",\"height\":591,\"width\":1280,\"mediaKey\":\"2KANqd9LNEqwmRlTqgWEco6TUMg7CSQVDQhX50Lumr0=\",\"fileEncSha256\":\"UhVuO3OL8op30Fq0w5RVLz4Kgxymk59U2SXgwGJ\\/eMU=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m235\\/AQNST-tzsxJiDE5hPs5imjpDETvPEyBePc0c95SCwR0YK0phHnR0VIOInSDZyAt6E62w5tKtFVbA7hjCgpfaKryQet19VpSuXWCEkG2KNg?ccb=9-4&oh=01_Q5Aa3wFnNDUwZFIM_yfRIwW0UKIL_-JASo6CK2yJlPuIl0iz8g&oe=69BA7C88&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771249241\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCAAhAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAIDBAUBBv\\/EABUBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAADFll0DzTX6J1lYn7C1kgoQy0yWeN9IzG0XM1nRGAqkBLf9uB0A8dUBGAr\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AH\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AH\\/\\/xAAqEAABAwMCBAUFAAAAAAAAAAABAAIDBAUREjEQE1KRFCE1UXEGFiAyQf\\/aAAgBAQABPwC2ztge4uZqyFJVx8l7fDNy7Z3sgEEEFzQQ0aR5ISDpCc7UdsL6epYquqeyZuQBlXe3U9M2PlMwTunRMH88079ygggggqWrlpHl0LtJKludVNjmP1Y2XipD7LOTlBBBBDjS08lVM2KMZcdl9vV\\/S3uhYa3pb3QsFd0t7qeB9NMYpBhw3QQ42P1OL5\\/C8eoy\\/KCC\\/\\/4AAwD\\/2Q==\",\"scansSidecar\":\"v3OC2XMRwhkLTEm8s+fMn6tUXTBSRRX\\/9I5abM1\\/NHJI\\/bH\\/S1C7UQ==\",\"scanLengths\":[3953,15268,4837,7301],\"midQualityFileSha256\":\"nVb2K2YjRfW1R4jzfabmqQO0dbrG7QpT7IGt2lVL9eQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k9F\\/AHmQ9jT3FasGnHh3\\/rn91KxQC3hM+dV6xdLQR\\/o=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771249243,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:43.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:44'),
(20902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:43.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:44'),
(20903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:43.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:44'),
(20904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:43.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:44'),
(20905, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:51.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:51'),
(20906, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:58.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:58'),
(20907, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A6056A433F867362FA5\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Não tinha entrado mais\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fSG+uHgEa0xgaXOh9lFrDFLChwDfDlLVzVFnyPiX8Lo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771249258,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:58.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:40:58'),
(20908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:58.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:59'),
(20909, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:40:58.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:40:59'),
(20910, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:00.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:01'),
(20911, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:01.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:01'),
(20912, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AE365CA8CDF0EB5756F\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Mais ta assim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kLyBoFLECy73BgH7Gd9++4CjULgh6bSY2zYqcyx5FWs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771249265,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:05.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:41:05'),
(20913, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:05.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:05'),
(20914, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:05.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:06'),
(20915, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:05.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:07'),
(20916, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:07.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:07'),
(20917, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:27.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:27'),
(20918, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5D9B4F676FF6FD76943D4FBABB3F9D3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596477626_25776780862013671_2696219172171420637_n.enc?ccb=11-4&oh=01_Q5Aa3wGsBTRg7OZ9xhvJJImGxGtCrbnNI29vXmgCJEw8kzux2w&oe=69BA7F86&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7g1GiUlzkzMROcBYZfPay8INsji60qJfBWgQyPiMyQA=\",\"fileLength\":\"9854\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"ZjnZ5kh4G0MFD2XA4Ln0NJexdujlCbPaOQMVJxSed1M=\",\"fileEncSha256\":\"5nCYJssqMGiEsPFf3z3WA61gZ0nDa0gmTF0xttP+m8k=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596477626_25776780862013671_2696219172171420637_n.enc?ccb=11-4&oh=01_Q5Aa3wGsBTRg7OZ9xhvJJImGxGtCrbnNI29vXmgCJEw8kzux2w&oe=69BA7F86&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771249284\",\"waveform\":\"ABkbGiFVNFlgVGNeTk09GE5dVFJaYD9dS0VhXDpUXj5JTlIsNyg\\/U1tWSjIjVko4VGBCSk9FVWNZPjZNVFFLXA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771249286,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:27.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:41:27'),
(20919, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5D9B4F676FF6FD76943D4FBABB3F9D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249288034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:28.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:41:28'),
(20920, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:27.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:41:28'),
(20921, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5430B6EC3189824E834BBDF70A9EA83\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"http:\\/\\/dnsassist.online\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771249319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:59.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:42:00'),
(20922, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:41:59.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:42:00'),
(20923, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:42:00.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:42:01');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20924, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5430B6EC3189824E834BBDF70A9EA83\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249320536,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:42:00.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:42:02'),
(20925, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:42:04.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:42:05'),
(20926, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5C6577702938C98C6AD31C205F41E2D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ *Usuário:* 272856967\\n✅ *Senha:* 120050483\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771249324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:42:04.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:42:05'),
(20927, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5C6577702938C98C6AD31C205F41E2D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249325965,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:42:05.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:42:06'),
(20928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:42:05.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:42:06'),
(20929, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5430B6EC3189824E834BBDF70A9EA83\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771249525399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:25.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:45:25'),
(20930, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5C6577702938C98C6AD31C205F41E2D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771249525404,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:25.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:45:34'),
(20931, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5D9B4F676FF6FD76943D4FBABB3F9D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771249525392,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:25.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:45:34'),
(20932, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5D9B4F676FF6FD76943D4FBABB3F9D3\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771249531477,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:31.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:45:34'),
(20933, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:38.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:45:38'),
(20934, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:39.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:45:39'),
(20935, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AD028AE7442F3F38672\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Fecho\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k+uNMB2T3UPy9DQIPH9AtOIUEbCj1gme58TD+Gc0Y8Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771249539,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:39.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:45:40'),
(20936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:39.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:45:40'),
(20937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:39.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:45:40'),
(20938, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:48.093Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:45:48'),
(20939, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:45:58.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:45:58'),
(20940, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:00.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:00'),
(20941, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A01CC91146DE89F6BA0\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"To treinando , assim que chegar en casa eu do uma olhada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zQuIGQp\\/klGszkGKkIJ7LC+tQtE66gdZKuYjjfTMqWI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771249560,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:00.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:46:01'),
(20942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:00.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:01'),
(20943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:00.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:01'),
(20944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A67EC8746169B1DC267\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Vlw\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tWbjG9WW57LRT64Hf93BjDHvcRzwmBxNI6FnjnUorRA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771249561,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:02.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:46:02'),
(20945, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:02.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:02'),
(20946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:02.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:03'),
(20947, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:02.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:03'),
(20948, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:46:04.784Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:46:05'),
(20949, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A59EDA5121A31317B6B8282241D8C635\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/636090068_1575172243773225_3854706541085223591_n.enc?ccb=11-4&oh=01_Q5Aa3wFBRM8WEUlQ7C60ABcSqw2RsNA71xZLiDLodfrBmXkXXg&oe=69BA8AD2&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Py4boFUVIivjA3vaf5FSw3GR5dQUcq0ZqhT\\/Rb\\/\\/VS0=\",\"fileEncSha256\":\"IjzBVnpCwSS27o2EgDL28Zwol235IovLRjMXWoAicGg=\",\"mediaKey\":\"uO2tJWDdkj7WrbwfJ+AYHVtiFXH\\/yP8MOqWBIpElgSw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/636090068_1575172243773225_3854706541085223591_n.enc?ccb=11-4&oh=01_Q5Aa3wFBRM8WEUlQ7C60ABcSqw2RsNA71xZLiDLodfrBmXkXXg&oe=69BA8AD2&_nc_sid=5e03e0\",\"fileLength\":\"17606\",\"mediaKeyTimestamp\":\"1771022304\",\"isAnimated\":false,\"stickerSentTs\":\"1771249941271\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771249941,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:52:22.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:52:22'),
(20950, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:52:22.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:52:22'),
(20951, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:52:22.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 10:52:22'),
(20952, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A59EDA5121A31317B6B8282241D8C635\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771249944422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T10:52:24.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 10:52:24'),
(20953, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A51491F959052F7C950E8E7F69297B32\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771250572792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T11:02:52.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 11:02:53'),
(20954, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A53AC712518B9DBAAA9CF62C70FD0832\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771250572807,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T11:02:52.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 11:02:53'),
(20955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209268187901974@lid\",\"id\":\"A5A0C1B8067647B4B0D8C836C41DA8BE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771250572801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T11:02:52.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 11:02:53'),
(20956, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A59EDA5121A31317B6B8282241D8C635\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771253176085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T11:46:16.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 11:46:16'),
(20957, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:26.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:26'),
(20958, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:32.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:33'),
(20959, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:33.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:33'),
(20960, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:39.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:39'),
(20961, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58550C64CFB5F3DFD65AD1C7F1ABC9D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajusa\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":267656},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":267656},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771258418,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:39.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:13:39'),
(20962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:39.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:39'),
(20963, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC6948DB6DCAEBF22F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771258420,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:40.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:40'),
(20964, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:43.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:43'),
(20965, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:50.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:50'),
(20966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:50.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:51'),
(20967, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:50.996Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:51'),
(20968, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AABF997B2EAFE0AA79C\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596634714_908005115519424_8447265971513025276_n.enc?ccb=11-4&oh=01_Q5Aa3wHhY_jhQrCtd72ldV9GvwOxJl88pFt518h8GnOq4GwKHA&oe=69BAB019&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wYosz0VtN9OK4Cq9F0OYxdDEJ1XsOnWk\\/koIVRqrSgA=\",\"fileLength\":\"36118\",\"seconds\":16,\"ptt\":true,\"mediaKey\":\"gYKjkjMkHbpPW07ldgIRA8HUXzesp6dqu6h12nHLgNo=\",\"fileEncSha256\":\"U4dllauWEBpzJKzJVBqWYgfKQ19eRTI0fklg1S+Td48=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596634714_908005115519424_8447265971513025276_n.enc?ccb=11-4&oh=01_Q5Aa3wHhY_jhQrCtd72ldV9GvwOxJl88pFt518h8GnOq4GwKHA&oe=69BAB019&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771258413\",\"streamingSidecar\":\"eH+lv4fNnEogXw==\",\"waveform\":\"AgM1TS4NMzAuGQlCZElEJ00vEgpkZGRUOEtfTiIIBAdPZGRiZE9gZD8PBztBZE1KZDBCLB8QBwQDIUIVCgUMEQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771252368\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"berU69RUbS\\/dFLWinllfjbMC9MyWuOzi\\/irdmN7pkhs=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771258430,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:50.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:13:52'),
(20969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:51.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:52'),
(20970, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:52.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:52'),
(20971, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A592B48EA4F89672AB97A2A0255B0A40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pendentes\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":267668},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":267668},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771258432,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:52.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:13:53'),
(20972, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:52.557Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:53'),
(20973, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08F628F874C8D8FC3D3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771258433,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:53.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:53'),
(20974, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:52.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:55'),
(20975, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:55.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:56'),
(20976, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AE39B15C26503C9E4E9\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595472961_912276134540272_4394165375300972238_n.enc?ccb=11-4&oh=01_Q5Aa3wE689Z7WYNeRuLUwvNAb2O6QZ_Xq98wAZ77TNhVLuzHIA&oe=69BAAC68&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oUsSp10Cy9Y2QhoZN7KEnGyIcrPJEpKGVGN4ferMPhY=\",\"fileLength\":\"8462\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"Ryb6GR0xygnQgZPXym4Y0Yjt+rd0R9bvO887mFsa9oI=\",\"fileEncSha256\":\"VS6LGqlhboCxvkmmIf+07Y7Cpo85qjdWxveoUKgpoag=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595472961_912276134540272_4394165375300972238_n.enc?ccb=11-4&oh=01_Q5Aa3wE689Z7WYNeRuLUwvNAb2O6QZ_Xq98wAZ77TNhVLuzHIA&oe=69BAAC68&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771258432\",\"streamingSidecar\":\"4vs9NW2tSPvYEQ==\",\"waveform\":\"AAEDBgoOEA4NCwoJCgsQIC8wJx4oN0M+ODU0Mi8qJScrLi8xMjIyOENORjw1Nzg4MSojHBUgLTUsIxwaFhQTEg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771252368\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+RDQGKNLAzK7qCh8l0qTZe19UCF0\\/regsUk3X6nC38g=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771258436,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:56.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:13:56'),
(20977, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:56.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:56'),
(20978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:56.470Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:57'),
(20979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:13:56.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:13:57'),
(20980, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:14:25.908Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:14:26'),
(20981, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ED937EEFE53455F48E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\ncarol, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 100,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771258466,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:14:27.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:14:27'),
(20982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0ED937EEFE53455F48E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771258467499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:14:27.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:14:27'),
(20983, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AABF997B2EAFE0AA79C\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:26.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:17:27'),
(20984, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AE39B15C26503C9E4E9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:26.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:17:27'),
(20985, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:26.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:28'),
(20986, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:26.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:28'),
(20987, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:30.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:30'),
(20988, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:33.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:33'),
(20989, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:34.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:34'),
(20990, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"presences\":{\"209165460963368@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:43.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:43'),
(20991, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:43.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:43'),
(20992, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":false,\"id\":\"3AFEF84CDBCC94ED4813\"},\"pushName\":\"Thay\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590833959_889800383951827_1829065800762168993_n.enc?ccb=11-4&oh=01_Q5Aa3wGmljKa3QtE-ZVA0boZpCmZHbZUnE8ltgjz7J1T1zufkw&oe=69BAB419&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"nY12rA8aaV5x9QxNLqW\\/BkccoixjbbZ+Ba7S\\/7o2iWg=\",\"fileLength\":\"19392\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"mjZFZN8Lg5wUZyaUqNsXm5ZKoVRJ4gk\\/\\/JU9REDMCuc=\",\"fileEncSha256\":\"gtooKaUfZ4vbim3GLwa7iBlroEUWcXgDbZq1XX+gpRU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590833959_889800383951827_1829065800762168993_n.enc?ccb=11-4&oh=01_Q5Aa3wGmljKa3QtE-ZVA0boZpCmZHbZUnE8ltgjz7J1T1zufkw&oe=69BAB419&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771258654\",\"streamingSidecar\":\"42d+Kr\\/OQ\\/UgwA==\",\"waveform\":\"AAIcPD8xYkxcV09JNTUjICk4TGNHND1EOVA4MCcnMjUvJj5YZGFTUD0qJzI0MDQrJy4oNiQtQ0s4OCoiGA4IBg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771252368\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fV8syRjDqMuEEG1vNAolJyPl0NWgA7EMNDjphxQnGCk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771258663,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:43.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:17:44'),
(20993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:43.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:44'),
(20994, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:17:43.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:17:44'),
(20995, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:30.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:30'),
(20996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00E4A66D024438D9C54\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/ajuda\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771259856,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:36.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:37:36'),
(20997, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:36.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(20998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:36.456Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:36'),
(20999, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB058EE21A3257003E7C2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771259857,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:37.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:37'),
(21000, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:41.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:41'),
(21001, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:44.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:44'),
(21002, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:48.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:49'),
(21003, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:50.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:50'),
(21004, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:50.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:51'),
(21005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B3D356461818DCF1F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771259870,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:50.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:37:51'),
(21006, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A5798F943D3B9B877E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771259871,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:37:51.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:37:52'),
(21007, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:38:18.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:38:18'),
(21008, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:38:18.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:38:18'),
(21009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:27.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:27'),
(21010, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:33.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:33'),
(21011, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:33.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:33'),
(21012, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:37.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:37'),
(21013, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:37.504Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:37'),
(21014, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:39.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:40'),
(21015, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:40.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:40'),
(21016, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:44.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:44'),
(21017, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:46.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:46'),
(21018, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:41:56.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:41:57'),
(21019, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:07.197Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:07'),
(21020, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:18.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:18'),
(21021, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:28.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:29'),
(21022, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:39.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:39'),
(21023, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:40.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:40'),
(21024, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:42.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:42'),
(21025, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:44.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:45'),
(21026, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:55.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:55'),
(21027, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:57.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:57'),
(21028, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:42:58.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:42:58'),
(21029, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:04.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:05'),
(21030, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:05.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:06'),
(21031, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:15.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:16'),
(21032, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:25.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:26'),
(21033, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:28.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:28'),
(21034, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:29.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:30'),
(21035, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:40.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:40'),
(21036, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:42.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:43'),
(21037, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:44.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:44'),
(21038, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:54.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:54'),
(21039, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:43:59.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:43:59'),
(21040, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:00.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:44:00'),
(21041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"36906721108142@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:01.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:44:01'),
(21042, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"36906721108142@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554649930_1465986701335427_7865204551073421149_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPQbOeHpcULec7beUqoKy4w0nsjbbY6HINJSjSOUDgwA&oe=69A0561E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:01.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:44:01'),
(21043, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:01.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:44:02'),
(21044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"36906721108142@lid\",\"fromMe\":false,\"id\":\"AC58A90B242BCF6E6C66FC5517B98894\"},\"pushName\":\"Sou mais que vencedor🙏\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde! Quero comunicar  que  o Eduardo  não  quer  continua com o app. não  está  usando e sou eu que pago.Vou continuar  só  com o meu. Obrigada 🤗\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":378},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6ew5fssudBqLpEQqHtcZ55dR1esQW7bNtNWVk1JRw7g=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":378},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771260240,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:01.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:44:02'),
(21045, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"pushName\":\"Sou mais que vencedor🙏\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554649930_1465986701335427_7865204551073421149_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPQbOeHpcULec7beUqoKy4w0nsjbbY6HINJSjSOUDgwA&oe=69A0561E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:01.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:44:02'),
(21046, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0403971459F290BAA45\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 36906721108142\\nMensagem: \\\"Boa tarde! Quero comunicar  que  o Eduardo  não  quer  continua com o app. não  está  usando e sou eu que pago.Vou continuar  só  com o meu. Obrigada 🤗\\\"\\n\\nUse: \\/aprovar 36906721108142  (automático)\\nUse: \\/pago 36906721108142  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771260242,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:02.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:44:02'),
(21047, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F237E1A14EB617E8C1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 36906721108142\\nMensagem: \\\"Boa tarde! Quero comunicar  que  o Eduardo  não  quer  continua com o app. não  está  usando e sou eu que pago.Vou continuar  só  com o meu. Obrigada 🤗\\\"\\n\\nUse: \\/aprovar 36906721108142  (automático)\\nUse: \\/pago 36906721108142  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771260243,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:44:03.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:44:03'),
(21048, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:54:17.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:54:18'),
(21049, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:54:20.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:54:20'),
(21050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04F7B34A3C245AAF5F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771260860,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:54:20.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 13:54:21'),
(21051, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:54:20.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:54:21'),
(21052, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0902C10C040EF79C9B7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771260861,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T13:54:21.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 13:54:22'),
(21053, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:26.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:00:27'),
(21054, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:28.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:00:29'),
(21055, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D9E1110AEC5617FA41\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771261228,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:28.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:00:29'),
(21056, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:29.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:00:30'),
(21057, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BFFDC8EDD795F026C4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771261229,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:29.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:00:30'),
(21058, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"36906721108142@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:58.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:00:58'),
(21059, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"36906721108142@lid\",\"fromMe\":true,\"id\":\"A5246D4F893121DB68D8885DCAE64AAB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771261258,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:58.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:00:58'),
(21060, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"pushName\":\"Sou mais que vencedor🙏\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554649930_1465986701335427_7865204551073421149_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPQbOeHpcULec7beUqoKy4w0nsjbbY6HINJSjSOUDgwA&oe=69A0561E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:58.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:00:59'),
(21061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"36906721108142@lid\",\"id\":\"A5246D4F893121DB68D8885DCAE64AAB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771261259372,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:00:59.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:00:59'),
(21062, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"36906721108142@lid\",\"fromMe\":true,\"id\":\"A5E43A1A0635800DDCEE344D6AD06778\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tranquilo, a senhora me informa no próx vencimento que arrumamos o aviso de cobrança\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771261290,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:30.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:01:31'),
(21063, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"36906721108142@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:30.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:01:31'),
(21064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"pushName\":\"Sou mais que vencedor🙏\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554649930_1465986701335427_7865204551073421149_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPQbOeHpcULec7beUqoKy4w0nsjbbY6HINJSjSOUDgwA&oe=69A0561E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:31.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:01:31'),
(21065, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"36906721108142@lid\",\"id\":\"A5E43A1A0635800DDCEE344D6AD06778\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771261292779,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:32.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:01:32'),
(21066, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04C3C171E9146D5057B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\ncarol, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 100,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771261302,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:42.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:01:43'),
(21067, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB04C3C171E9146D5057B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771261303554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:43.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:01:43'),
(21068, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A5E821C5ABA5C7866419EEE4D410A98C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fecho\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771261318,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:58.977Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:01:59'),
(21069, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:58.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:01:59'),
(21070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:01:59.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:02:00'),
(21071, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A5E821C5ABA5C7866419EEE4D410A98C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771261320771,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:02:00.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:02:01'),
(21072, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"209165460963368@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:02:07.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:02:07'),
(21073, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"209165460963368@lid\",\"fromMe\":true,\"id\":\"A57ACCB55D28F5E0D507EA9B6B695A23\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qualquer coisa estou a disposição\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771261327,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:02:07.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:02:08'),
(21074, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"209165460963368@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/611517152_839656908900979_6761495864870302171_n.jpg?ccb=11-4&oh=01_Q5Aa3wH230sDX4p_f5WdpIrSTHPpusf-xSBYPMFeycDT3PDzSw&oe=69A061D0&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:02:08.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:02:08'),
(21075, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"209165460963368@lid\",\"id\":\"A57ACCB55D28F5E0D507EA9B6B695A23\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771261329023,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:02:09.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:02:09'),
(21076, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:07:17.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:07:17'),
(21077, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"36906721108142@lid\",\"id\":\"A5E43A1A0635800DDCEE344D6AD06778\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771262076079,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:14:36.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:14:36'),
(21078, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:15:45.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:15:45'),
(21079, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:15:46.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:15:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21080, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0144E43C1B17BBFEE3E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771262146,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:15:46.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:15:47'),
(21081, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:15:46.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:15:47'),
(21082, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C92464B68352A8DBE2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771262147,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:15:47.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:15:47'),
(21083, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C000C0A16C52B4E149\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\ncarol, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 100,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771262417,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:20:17.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:20:18'),
(21084, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0C000C0A16C52B4E149\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771262418530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:20:18.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:20:18'),
(21085, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"36906721108142@lid\",\"id\":\"A5E43A1A0635800DDCEE344D6AD06778\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771263702489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:42.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:41:42'),
(21086, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"36906721108142@lid\",\"id\":\"A5246D4F893121DB68D8885DCAE64AAB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771263702499,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:42.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:41:42'),
(21087, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"presences\":{\"36906721108142@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:45.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:41:45'),
(21088, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"36906721108142@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:46.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:41:46'),
(21089, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"36906721108142@lid\",\"fromMe\":false,\"id\":\"AC73B466B7F9C7E455FD994C909E654B\"},\"pushName\":\"Sou mais que vencedor🙏\",\"message\":{\"conversation\":\"👍\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NbJbdOfDZiJgw2PlPO1UDfXi\\/KOAVy4+LQzR3zrSTvY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771263706,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:46.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:41:46'),
(21090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"36906721108142@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554649930_1465986701335427_7865204551073421149_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPQbOeHpcULec7beUqoKy4w0nsjbbY6HINJSjSOUDgwA&oe=69A0561E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:46.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:41:47'),
(21091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"36906721108142@lid\",\"pushName\":\"Sou mais que vencedor🙏\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/554649930_1465986701335427_7865204551073421149_n.jpg?ccb=11-4&oh=01_Q5Aa3wHPQbOeHpcULec7beUqoKy4w0nsjbbY6HINJSjSOUDgwA&oe=69A0561E&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:41:46.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:41:47'),
(21092, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:49:29.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:49:30'),
(21093, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:56:51.319Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:56:51'),
(21094, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F48D9BF5AAD9E998F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771264621,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:57:02.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:57:02'),
(21095, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:57:02.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:57:02'),
(21096, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01B37F732593C3C4512\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhum cliente com pagamento pendente!*\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771264623,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:57:03.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:57:03'),
(21097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:57:02.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:57:03'),
(21098, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"presences\":{\"87484876771482@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:21.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:58:22'),
(21099, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FC9FB9C8919E6A0D1E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *livia*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 0,01*\\r\\n• Próximo vencimento: *13\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771264702,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:23.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:58:23'),
(21100, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"id\":\"3EB0FC9FB9C8919E6A0D1E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771264704443,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:24.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:58:24'),
(21101, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:41.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:58:41'),
(21102, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E80C562007518B1A55\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771264727,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:47.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:58:47'),
(21103, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:47.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:58:47'),
(21104, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHuBGdUgpgJxRhoN_naxgx38iVfs9SWdkj1aOiBpYl4zA&oe=69A053D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:47.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:58:48'),
(21105, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EA36AAE973F44F3DB6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *CLIENTES PENDENTES*\\n\\n─────────────────────\\n👤 *livia*\\n📱 554792083580\\n📅 Venceu há 3 dias\\n💰 R$ 0,01\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771264727,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:58:48.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:58:48'),
(21106, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09270DA342A5BF621F8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nlivia, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 0,01\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771264791,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:59:52.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 14:59:52'),
(21107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"id\":\"3EB09270DA342A5BF621F8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771264793222,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T14:59:53.222Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 14:59:53'),
(21108, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07C6F24BAF30362695E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\ncarol, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 100,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771264893,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:01:33.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:01:34'),
(21109, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB07C6F24BAF30362695E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771264894537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:01:34.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:01:34'),
(21110, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:08:32.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:08:32'),
(21111, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0587BD93E12C9F9EED9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQO-10lLrMLUBAjjL_GtXhOoHE2UHeP6ziiGAM8XwagsTTVF-mOu93qcok1l75EII6_QTJgzL-RF_2TWUUD0JK7sZuudHWgk9UaMocT39w?ccb=9-4&oh=01_Q5Aa3wH0Kka92drwoo38KYlo71SXia53hYyEeZLhyll3Lu-BkA&oe=69BAD718&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"ruXoKXnV+g1jR\\/n6kggMzlZEk2NHU1PFhbrKibSyiNI=\",\"fileLength\":\"121201\",\"height\":900,\"width\":1600,\"mediaKey\":\"VYM7Dwe8V7OacUQjwZnVyzJE1QBD98buiOSh7B6wTcc=\",\"fileEncSha256\":\"Js+SCH7UaclwLMmaEOtoG67x8oo4YHLIqR1r91NHE0g=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQO-10lLrMLUBAjjL_GtXhOoHE2UHeP6ziiGAM8XwagsTTVF-mOu93qcok1l75EII6_QTJgzL-RF_2TWUUD0JK7sZuudHWgk9UaMocT39w?ccb=9-4&oh=01_Q5Aa3wH0Kka92drwoo38KYlo71SXia53hYyEeZLhyll3Lu-BkA&oe=69BAD718&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771265290\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHQAAAgICAwEAAAAAAAAAAAAAAAMHCAQFAQIGCf\\/EADsQAAIBAwIFAgMCDAcBAAAAAAECAwAEEQUGBwgSEyEiMRRBUTJhFSMkM0ZxgZOktNPjFjRCVnKElLH\\/xAAbAQACAwEBAQAAAAAAAAAAAAADBAIFBgcBAP\\/EADQRAAECBAQDBgILAAAAAAAAAAEAAgMEBRESIaHRMUFCBhVRUpGxFMEjNENTYWJygZKisv\\/aAAwDAQACEQMRAD8Ahm85YtOuT3BugpISMt8ESCMfTu\\/qrHl5YoZGLS7zZySSS1ixJP1\\/Pfqqc2alM1d6fRpAm5hj1O6xMOCALC\\/qVBq8sdtE6yR7wKupDKRYkEEexH42ujcslr8925\\/6J\\/q1ODN86UzfWgmjyP3ep3TLZdp8fUqETyzWg\\/Sv+BP9WuJOW23di8m7SxJySbIkk\\/vasfw62na783pYbVv9fh0O1u0uZZtRmjDx20cNvJOzsCyDpxEQSWAAOflU6nkrhvNIj1vbvFL8P283mE6bpMDiQDIJV3vFQjIx9r3\\/AG1TT8WiU2IIUyMLiL8HHIm3K6bhU4RRdo1O6+fC8uFtE4kTdZVlIYEWRBB\\/e11PLnbD9Kj\\/AOM\\/1av9ZclWt3n4O+I13W7L45phP39HsT8AEDFTN29RbIk6QF7XcI616ugZI1XFvlGbhbw+1XfbcQxqY0wwfkv4I7Hc7s8cX2++2MdzP2TnGPnmlIc\\/QIz2w4ZuXEAZP4n9kwKYwcWn1O6oo\\/Lvbs7SvupmdySzGzOST7knu06x4BaZa3i3N9qsV\\/GGDPDNbSqHwwJBKTBvOCD59icYOCJYZqUzVaupcmQW4NTuisp8C+K2p3UeWvCKCyt7i2i1uTpuR6898A\\/jIpDlRN0tloYyQwIyoPuqlcO54JaHcGR3mgEkgGXWKbPV6ctjvYySCT4x62wB6cSUzZpTNmvjJSwyDAiNo8qTctP8nbqIY+Xu1APf3VMxz47doqgD6YLH\\/wC0VLRbz70UD4CVHR7pjuiVPTqd17Vm+ZpTN99DN9aUzfWtU5yz7GIZvmaUzZoZs0tmoLnJpjFJXLlpOm7h406BoGsWwubDU4NTs7qEsVEkMmnXKOuVIIypIyCD5q+0Wz9s7bubbWtF2mZ76AraRm3de5HFNKiu5MrqCsaefcssSMkYORG1EeVZs8wW0f8AlffyFxVs+bnVbvReX3c97Z7h0jRXaXTbd7nVrS4ubSSKXULeKW2kjto5J8To7wBol7imUMrIyh15d2ziOE81oOWAe7laS0NuG5GamDPnGP21EHNwccve6j99h\\/PW9Vo5YLPbkfEjYdvtviPPrmuWWpTzb1ifU7wvbanLoU0UlsEmElzcW0ot7aVJLmQ2\\/VZkxS9zphNlubrxy87r\\/XYfz1vWbpn12D+tvuE0eC+czNSmbPzoZs0pmzXYnOXzGIZs\\/OlM2aGals3yFBc5NsYgtRSy1FQxI+Be0ZvrSmb6ihmzS2arxzlj2MQzUpmoZqUzfWgucmmMUm8teorpPG3b2qyNAqWUOp3DG4nEMQCadct65G8Ivjyx8AZPyq768bdm3XwlrpWvbbvtRu5YoVtYty2J9TOFIUiQszYJKgL6jgenPj578MN\\/Pwy37pW+o9KOpnTPiPyUXPw5k7tvJD4k6H6cdzq+yfbHjOanK5559RlmWWPYGpQKsUkZjj3OhVmYrhz1WRPUvSQMHp9bdQb04wPaakzk\\/ONjS7btDQOXG58SPFGcZhthBtbncX+Y+asrrPGPSNPsoLy1vtqus9wsXcu902tvCiMocMX9WWKsG6VByvkH2zG3MjxG27uvgLurTtN3Jta+ulgsZpYNL12O9kTGoWwyFVQSnkZY4wSBjzmoyHPZfrjPDvUGwAPO6E8kZ8\\/5L3OR93pHt5z5jirzdXHE7YGrbEfYE2nDVOwDdPr5uRF2545fzfw6dWe30\\/aGM584xVPJUCoQJmFEezJrgTw5EfmUmCcdEGK2Hnln\\/r5KvrNSmahmpTN8q6G5yt2MQzUtmoZqUzZoTnJpjFyX80Uov99FDxI4YtFqPGy600xC52xZv3o45F+H1uGfAeJJAG7at0npkUFTgqwdGAdHVcmXjLo6RqB8FJM6QviOe47adaKzKzNbg9SFmRulWUsh6WZSGJRWOHaKpHMxNG7LDEkXAK01zx67M6Qx7WFwjRq5ljvsIrEKSh6ow2R1EHAI9JwT4J7XfHFIGUQ7fiuQyoxMV6wCllUlT1xL5UkqceMqcEjBJRXh7QVE\\/aaN2UhGeOa5v+NNvakiDTLW8xK8YMF5KMqoUh\\/XAvpbqIH+r0tkD0k5GocW9PtVujA+l3nw8s0cYguboG5VJEVZI+u1XCyB2devpYLE\\/UEYorFFQ77qJA+lOX4Nz\\/r7WRvionEZLVXHG1Y1jZNAjlMilmVL1gYz1EdLZiAzgBvGRhh5zkDGbjkf9sfxv9uiip99zx69BsvRNxh1aDZKbjkfltf+N\\/t0p+OWPH+GP43+3RRUhV5w8X6DZFE9HHVoNkyLjtcyslpHtuPEj4USXyqis2ATlo8L7DzkYx70+04qapfWKX2n7Vt7lpbg2q2sWopJdFgok6hB0dwpjPrC9PpIJHsSive85rzaDZFbPzHm0Gy1s3GiWFYnfbMeJkLqF1FWIAYrhgEypyp8Ng4wcYIJKKKmKjMnq0Gyl3lNebQbL\\/\\/Z\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771265312,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:08:32.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:08:32'),
(21112, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0587BD93E12C9F9EED9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771265312495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:08:32.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:08:33'),
(21113, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOaWZNfW7DT_kIt_uAu6RLtlJjzd5AOrU2sUIgT_thQg&oe=69A06265&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:08:32.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:08:33'),
(21114, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"3EB0587BD93E12C9F9EED9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771265313928,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:08:33.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:08:34'),
(21115, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:13:12.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:13:13'),
(21116, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:13:16.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:13:16'),
(21117, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A04B11FD5265D55D60\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771265596,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:13:16.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:13:16'),
(21118, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:13:16.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:13:17'),
(21119, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB077622C872A46B3E392\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *CLIENTES PENDENTES*\\n\\n─────────────────────\\n👤 *livia*\\n📱 554792083580\\n📅 Venceu há 3 dias\\n💰 R$ 0,01\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771265597,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:13:17.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:13:17'),
(21120, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:15:19.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:15:19'),
(21121, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:15:20.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:15:20'),
(21122, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09BFF677D226E4392F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cobrar 47984173345\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771265720,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:15:20.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:15:20'),
(21123, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:15:20.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:15:21'),
(21124, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB036FBA5F9B1F3ACCA10\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771265721,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:15:21.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:15:21'),
(21125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"178099677315112:40@lid\",\"id\":\"A50038C64A2965DB7BC893935CD37728\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771266294284,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:24:54.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:24:54'),
(21126, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0587BD93E12C9F9EED9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771267102406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:38:22.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:38:22'),
(21127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOaWZNfW7DT_kIt_uAu6RLtlJjzd5AOrU2sUIgT_thQg&oe=69A06265&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:38:33.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:38:34'),
(21128, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOaWZNfW7DT_kIt_uAu6RLtlJjzd5AOrU2sUIgT_thQg&oe=69A06265&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:38:34.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:38:34'),
(21129, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A53CFFF009A06D62554BDC7A58596233\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"3EB0587BD93E12C9F9EED9\"},\"text\":\"👏🏻\",\"senderTimestampMs\":\"1771267113341\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771267114,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:38:34.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:38:34'),
(21130, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOaWZNfW7DT_kIt_uAu6RLtlJjzd5AOrU2sUIgT_thQg&oe=69A06265&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:38:34.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:38:35'),
(21131, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGOaWZNfW7DT_kIt_uAu6RLtlJjzd5AOrU2sUIgT_thQg&oe=69A06265&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:38:34.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:38:35'),
(21132, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:25.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:25'),
(21133, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:27.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:27'),
(21134, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:28.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:28'),
(21135, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:30.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:30'),
(21136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BEA9AF12103A627801\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771267890,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:30.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:51:30'),
(21137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:30.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:31'),
(21138, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C22AFB9B70B07002BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *CLIENTES PENDENTES*\\n\\n─────────────────────\\n👤 *livia*\\n📱 554792083580\\n📅 Venceu há 3 dias\\n💰 R$ 0,01\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771267891,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:31.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:31'),
(21139, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:36.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:36'),
(21140, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:39.514Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:39'),
(21141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:39.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:40'),
(21142, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04B21FB21F65D83F913\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cobrar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771267899,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:39.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:51:40'),
(21143, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0823B9AB1C2E5B7AE91\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771267900,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:51:40.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:51:40'),
(21144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"93651879362735@lid\",\"presences\":{\"93651879362735@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:52:01.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:52:01'),
(21145, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"93651879362735@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:52:03.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:52:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21146, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"93651879362735@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:52:03.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:52:03'),
(21147, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"93651879362735@lid\",\"fromMe\":false,\"id\":\"ACB9124BCF2C0707AF8207224B47C1AD\"},\"pushName\":\"KSPLAY OFICIAL BRASIL ⚜️\",\"message\":{\"conversation\":\"Boa tarde.\\nTemos painel ilimitado ♾️ por 100.00 reais mensal\\n\\n11 96576-5862\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wQy330\\/V81q86GwLHMCrHOvlLaX0R0TfbNVYkJOK\\/MA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771267922,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:52:03.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:52:04'),
(21148, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"93651879362735@lid\",\"pushName\":\"KSPLAY OFICIAL BRASIL ⚜️\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:52:03.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:52:04'),
(21149, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:54.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:54'),
(21150, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:56.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:56'),
(21151, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC7ADD210061235E7B7B554F1B9C2547\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"06Kp9PAEXM0u2yuK\\/aji8tbqlrTugCPiDN3gom8Xj40=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771268036,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:56.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:53:57'),
(21152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:56.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:57'),
(21153, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:56.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:58'),
(21154, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:56.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:58'),
(21155, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:58.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:59'),
(21156, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:58.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:53:59'),
(21157, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC55D94246720EA998E18615C147C03E\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Tudo bem?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"K+RkFFgbkLohDCrj4z6Dsryh5ZwBZCXPBbaGIYUifks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771268038,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:58.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:53:59'),
(21158, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:53:58.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:00'),
(21159, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:05.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:05'),
(21160, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:14.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:14'),
(21161, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:16.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:16'),
(21162, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:26.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:26'),
(21163, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:34.285Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:34'),
(21164, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:39.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:39'),
(21165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:39.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:40'),
(21166, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC26F840AF09F5A7FBF600FD64EB8D15\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Não estou conseguindo ver filmes, o app reinicia toda vez que vou tentar ver um filme\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mByUsqg6\\/v0XoGN+DcynYv0N2GhN0MfdA+XYqqmSJqs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771268079,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:39.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:54:40'),
(21167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:39.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:40'),
(21168, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:44.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:44'),
(21169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:54.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:54'),
(21170, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACFA3364F1C576F52F51DD4237A91194\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Podemos testar aquele outro app que vc me falou?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ys8Se6Tp0QrEe46IFLf3KfOzD\\/Ne1k1OzXNdSCtKWpA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771268094,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:54.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:54:54'),
(21171, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:54.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:55'),
(21172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:54.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:56'),
(21173, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:55.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:56'),
(21174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACBC9DA873BCC18D5F6092059CEC7E0C\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Para ver se melhora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sG8VfrcGTw8KQgnP7xYlDf0PDbvmeKezWcsgO13dWSo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771268099,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:59.263Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:54:59'),
(21175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:59.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:54:59'),
(21176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:59.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:55:00'),
(21177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:54:59.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:55:00'),
(21178, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:55:55.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:55:55'),
(21179, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:55:57.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:55:57'),
(21180, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:55:57.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:55:58'),
(21181, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:56:00.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:56:01'),
(21182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:56:01.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:56:01'),
(21183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:56:01.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:56:02'),
(21184, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC6D46F4661B2460E139CCAAFAE3C8A9\"},\"pushName\":\"✓\",\"message\":{\"extendedTextMessage\":{\"text\":\"Este\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A564D36C460F7BD74BFBA14BAD1238C0\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Bob player\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oygUp\\/SXHnUaz9AAlV\\/TSpkJ9VBBhZh3cTQc\\/1KbQRg=\"}},\"contextInfo\":{\"stanzaId\":\"A564D36C460F7BD74BFBA14BAD1238C0\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Bob player\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771268161,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:56:01.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 15:56:02'),
(21185, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T15:56:01.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 15:56:02'),
(21186, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5D8F146FF8D61FB9F236CC9BBDA7CC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270117151,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:37.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:38'),
(21187, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:38.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:28:38'),
(21188, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5D8F146FF8D61FB9F236CC9BBDA7CC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637962765_1569945050964973_651427166287573235_n.enc?ccb=11-4&oh=01_Q5Aa3wG8knCzTAfttTn2w8u-xvqdtEyBDxjzstGc_lVTYpAdqA&oe=69BAF5A5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cl71gnMc5Vui+bncO6lkVXDEvRcfEa1CCnxyMXiHrho=\",\"fileLength\":\"21461\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"fLxRq2meJyBO7QT6bQ\\/ReL6EFFcI9iXCSonsm6OTU0s=\",\"fileEncSha256\":\"cewRbYnmWkFZe87jt7XeRQXD1JZRLnLawzR2i28ye9A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637962765_1569945050964973_651427166287573235_n.enc?ccb=11-4&oh=01_Q5Aa3wG8knCzTAfttTn2w8u-xvqdtEyBDxjzstGc_lVTYpAdqA&oe=69BAF5A5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771270107\",\"waveform\":\"ABMWHl9RSzFHNSMVFx0PUVROKlpNUFAxMkJSSjEcLxogTkwxMEI8Kz8\\/ORgNEhwUHEg1UlMaT1w8TBwTDhAPDQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771270118,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:38.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:38'),
(21189, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:38.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:28:39'),
(21190, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:41.763Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:28:41'),
(21191, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A52AFA11BDB41ADE037B1ABE86EE378B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Baixa ele\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270121,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:41.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:41'),
(21192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A52AFA11BDB41ADE037B1ABE86EE378B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270121916,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:41.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:42'),
(21193, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:42.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:28:42'),
(21194, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A561ABB6E9D10BDDD9E2D6B1ABCFC3BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Da pra testar 7 dias\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270125,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:45.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:45'),
(21195, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:45.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:28:45'),
(21196, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A561ABB6E9D10BDDD9E2D6B1ABCFC3BF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270125802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:45.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:46'),
(21197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:45.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:28:46'),
(21198, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5D8F146FF8D61FB9F236CC9BBDA7CC9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270130026,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:50.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:50'),
(21199, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A561ABB6E9D10BDDD9E2D6B1ABCFC3BF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270130020,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:50.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:50'),
(21200, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A52AFA11BDB41ADE037B1ABE86EE378B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270130023,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:50.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:51'),
(21201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5D8F146FF8D61FB9F236CC9BBDA7CC9\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771270132945,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:28:52.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:28:53'),
(21202, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:03.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:04'),
(21203, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:06.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:07'),
(21204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:06.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:07'),
(21205, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACF22ACB217B0C795B1A4CBE2ACB3E89\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Se for paga outro deixa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jbbC8GtnBbRJgypv7X9KIgeJIVXMKQ9UIXi+RS4vukY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771270146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:06.851Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:29:07'),
(21206, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:07.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:07'),
(21207, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:12.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:13'),
(21208, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:15.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:16'),
(21209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:16.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:16'),
(21210, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC37D9BCD62FCF47621538A5A2089325\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Outro mês eu testo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nWvWw\\/BgqDEV1xjYYbq+75M2TPhU7nCheGAZKV5ntaI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771270155,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:15.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:29:16'),
(21211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:16.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:17'),
(21212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:28.435Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:28'),
(21213, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:31.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:31'),
(21214, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACB10FE4DD562ED200B1336A0C5A1116\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Já gastei MT nesse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ru3yFVQ2M2T5zzZCh3sQaIVck\\/YbrQsLxEpFnLeftTM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771270170,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:31.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:29:31'),
(21215, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:31.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:32'),
(21216, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:29:31.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:29:32'),
(21217, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:22.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:23'),
(21218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A515EAAB4D1A16DCE9D0758BBB94ED09\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270223117,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:23.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:24'),
(21219, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:23.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:25'),
(21220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A515EAAB4D1A16DCE9D0758BBB94ED09\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270222,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:22.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:25'),
(21221, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A55A7F4434941FDCF7D2222378AF0EB3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Assist mais\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270227,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:27.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:27'),
(21222, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:27.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:27'),
(21223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:27.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:28'),
(21224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A55A7F4434941FDCF7D2222378AF0EB3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270227593,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:27.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:29'),
(21225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:30.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:30'),
(21226, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A558DB3D0CD7C90942FE5E932F37439D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oi easy player\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270230,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:30.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:30'),
(21228, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:30.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:31'),
(21229, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:33.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:33'),
(21230, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5B2316FC642A00175D399CFACCCC9B8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ou\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A558DB3D0CD7C90942FE5E932F37439D\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Oi easy player\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A558DB3D0CD7C90942FE5E932F37439D\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Oi easy player\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771270232,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:33.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21231, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B2316FC642A00175D399CFACCCC9B8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270233239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:33.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:34'),
(21232, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:33.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:35'),
(21233, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A558DB3D0CD7C90942FE5E932F37439D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270235622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:35.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:36'),
(21234, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A55A7F4434941FDCF7D2222378AF0EB3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270235625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:35.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:36'),
(21235, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A515EAAB4D1A16DCE9D0758BBB94ED09\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270235627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:35.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:37'),
(21236, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B2316FC642A00175D399CFACCCC9B8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771270235620,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:35.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:37'),
(21237, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:40.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:40'),
(21238, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:43.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:43'),
(21239, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00D56696DBB8CF88A46\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/cobrar\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270243,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:43.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:44'),
(21240, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:43.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:44'),
(21241, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03E7D156F2EC62F8068\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771270244,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:44.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:45'),
(21242, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"presences\":{\"180749806342387@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:47.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:47'),
(21243, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:51.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:52'),
(21244, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0580403AF3D1442152C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"\\/pendentes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771270251,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:51.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:30:52'),
(21245, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554791592447@s.whatsapp.net\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:52.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:52'),
(21246, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06CEABAA80519D54871\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *CLIENTES PENDENTES*\\n\\n─────────────────────\\n👤 *livia*\\n📱 554792083580\\n📅 Venceu há 3 dias\\n💰 R$ 0,01\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771270252,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:30:52.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:30:53'),
(21247, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0637C9C62D89617F935\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA*\\n\\nlivia, vence hoje!\\n\\n📋 PIX:\\n🔑 {pix_tipo}: `{pix_chave}`\\n👤 {pix_beneficiario}\\n💰 R$ 1,00\\n\\n🆔 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771270493,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:34:54.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:34:54'),
(21248, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"id\":\"3EB0637C9C62D89617F935\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270495768,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:34:55.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:34:55'),
(21249, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DB7ACBE093BBA5E2B5\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *ATENÇÃO - PAGAMENTO ATRASADO*\\n\\nOlá livia,\\nSeu pagamento está atrasado há 3 dias.\\n\\nApós 1 dias, seu acesso será suspenso.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771270898,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:41:38.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:41:39'),
(21250, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"id\":\"3EB0DB7ACBE093BBA5E2B5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771270900591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:41:40.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:41:40'),
(21251, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB069382E4C4CC7F31570\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *ATENÇÃO - PAGAMENTO ATRASADO*\\n\\nOlá livia,\\nSeu pagamento está atrasado há 3 dias.\\n\\nApós 1 dias, seu acesso será suspenso.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771271077,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:44:37.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:44:37'),
(21252, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"id\":\"3EB069382E4C4CC7F31570\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771271079813,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:44:39.813Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:44:40'),
(21253, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A591933753E89F9EBED53D45F9AED349\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pendentes\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":280851},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":280851},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771271616,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:53:36.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 16:53:36'),
(21254, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:53:36.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:53:36'),
(21255, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:53:36.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:53:36'),
(21256, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02545FE49B6EA6E1587\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *CLIENTES PENDENTES*\\n\\n─────────────────────\\n👤 *livia*\\n📱 554792083580\\n📅 Venceu há 3 dias\\n💰 R$ 1,00\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771271617,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T16:53:37.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 16:53:37'),
(21257, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068A6CDB4867F7C98D8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA - PIX MANUAL*\\n\\nOlá carol,\\nSua mensalidade vence hoje!\\n\\n📋 *Dados para PIX:*\\n🔑 *Tipo:* \\n🔑 *Chave:* ``\\n👤 *Beneficiário:* \\n💰 *Valor:* R$ 100,00\\n\\n📌 Após pagar, aguarde a confirmação.\\n\\n🆔 Fatura #8\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771272051,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:00:52.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:00:52'),
(21258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB068A6CDB4867F7C98D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771272052898,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:00:52.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:00:53'),
(21259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58938EB4FE7BD1BECE4F2F897B6EF6B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771272181711,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:03:01.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:03:02'),
(21260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A58938EB4FE7BD1BECE4F2F897B6EF6B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/597196643_929504536429698_2413981321429301279_n.enc?ccb=11-4&oh=01_Q5Aa3wEWtkogWjgPfcUk09zhP5NTsMuYbfEXNakzHqY9l_kUKA&oe=69BAF19C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jmnAqeLV5vESFCxgtU00AS0HFJaIaf6CZkD8OCM8LbE=\",\"fileLength\":\"74117\",\"height\":1280,\"width\":575,\"mediaKey\":\"tcnFbtOdMCSE5taYKuvXG6JiZ47GvB5pGiEsOAwLX5I=\",\"fileEncSha256\":\"XSr950dcY+MLp\\/e8NTuPNQE2i6zdI\\/FDIic40VFYHK8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/597196643_929504536429698_2413981321429301279_n.enc?ccb=11-4&oh=01_Q5Aa3wEWtkogWjgPfcUk09zhP5NTsMuYbfEXNakzHqY9l_kUKA&oe=69BAF19C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771272180\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAEBQABAwIBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAEM0MYXWeOUWC1QLg\\/FAH6F+6D93mqV8mOYKHzFZ4uS9ITIf\\/8QAJhAAAgIBAwMDBQAAAAAAAAAAAAECAxEEEiEiMVETQVIUIzNhcf\\/aAAgBAQABPwDLxjKNn7Irkcm1hlEVKT4ybIpZ2JGI8LaixJJmmbUmPLXJtZYsRZS+tLyLSS92PSPyi\\/SzhW2U\\/lh\\/SxdZ79y1p6awpf3Ice5blyTJY5LkvprSt4nF+GLV1d2h6mj4l+pg6pxUO5Qk5co9OA644LFiLIyhFcPkd3iR6r+RVZp3VarW92Ok\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAGREBAAMBAQAAAAAAAAAAAAAAAQAQERIC\\/9oACAEDAQE\\/AFydT0KwHbV2dN\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"mkn+W5iyCfLfJfCZ4j5Sdu+6XEELhQe6saG4oc4KQJPT2Lg3ZM0GMA==\",\"scanLengths\":[6984,27399,13893,25841],\"midQualityFileSha256\":\"xj3KBNATOCxLOzaa+6\\/PpmuGkYqLw35nYyyzW7wkNJs=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771272182,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:03:03.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:03:03'),
(21261, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:03:03.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:03:03'),
(21262, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:03:03.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:03:03'),
(21263, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DA3E77D8DC2B7D3D6E\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *COBRANÇA - PIX*\\n\\nOlá *carol*,\\nSua mensalidade vence hoje!\\n\\n💰 *Valor:* R$ {valor}\\n📅 *Vencimento:* {data_vencimento}\\n\\n🔑 *Chave PIX:* \\n👤 *Beneficiário:* \\n\\n📲 *Ou acesse o link para pagar com QR Code:*\\nhttps:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/pagar\\/index.php?id=9\\n\\n📌 Após pagar, a confirmação é automática!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771272515,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:08:36.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:08:36'),
(21264, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0DA3E77D8DC2B7D3D6E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771272516564,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:08:36.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:08:36'),
(21265, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A590CD3F4153DB7630818E6BC2D05A31\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771272779365,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:12:59.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:13:00'),
(21266, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:13:00.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:13:01'),
(21267, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A590CD3F4153DB7630818E6BC2D05A31\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Preciso que você ajuste pra mim quando tiver em configurações linkado pra estar cobrando com o mercado pago, o cliente vai receber esse link, né, com um template bem legal. A gente vai ter que melhorar o template ali do mercado pago pra não chegar textos desnecessários, né? Só vai chegar o texto de vencimento, avisando o cliente certinho, o nome dele, o valor e avisando pra ele clicar no link e fazer o pagamento. E quando tiver lá em configurações, clicado pra fazer a cobrança, pra fazer a cobrança manualmente, vai chegar a mensagem para o cliente sempre com uma chave Pix cadastrada no meu sistema daquelas três que eu tenho disponível ali, entendeu? Então o que que acontece? Quando tiver mercado pago, ele cobra a mensagem e o webhook dá baixa automática no sistema. Quando tiver em configurações, linkado para cobrar com Pix manual, a baixa quem vai fazer sou eu, através dos comandos ali ou através do painel, entendeu? Quando tiver ativado o mercado pago, não pode estar funcionando o boot, o boot tem que ficar desativado daí, entendeu? Pra não gerar conflito, acredito, né?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771272780,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:13:00.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:13:01'),
(21268, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:13:01.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:13:01'),
(21269, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"A590CD3F4153DB7630818E6BC2D05A31\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:13:30.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:13:30'),
(21270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0F78486138D3B98CBC1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771272810944,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:13:30.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:13:31'),
(21271, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:47.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:19:48'),
(21272, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:53.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:19:54'),
(21273, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:54.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:19:54'),
(21274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:55.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:19:56'),
(21275, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:56.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:19:56'),
(21276, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACBFA7D0FBC3E01B9A9DEAAA6D520BB4\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou fica nesse Ms esse mes\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"F6e2Ai4pvPdi46z4mi+19IRn5riFAvJuFmf0U6RW3bA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771273195,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:55.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:19:56'),
(21277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:19:56.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:19:56'),
(21278, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A54D86A6A22A44DF4101CCF269E9D0DF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/598563602_2827219030946042_2069243202673785434_n.enc?ccb=11-4&oh=01_Q5Aa3wFbxlH3usoaGaiYILfaF-7RL-rFF6qTNbg7mFxe7-tlgA&oe=69BAEA53&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sHgDcjCYeLlUm\\/AFsVwwlGArXbXKPPygzhbUbHdxnKA=\",\"fileLength\":\"6298\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"tvMW0z6Myhs7CvS7NKSdvUeqgDWjCBSryJ8ngfwoQx0=\",\"fileEncSha256\":\"Wob+QerrhjM8\\/buza3CbdIh7Zg8j8ZBZESH5Q1cMH74=\",\"directPath\":\"\\/v\\/t62.7117-24\\/598563602_2827219030946042_2069243202673785434_n.enc?ccb=11-4&oh=01_Q5Aa3wFbxlH3usoaGaiYILfaF-7RL-rFF6qTNbg7mFxe7-tlgA&oe=69BAEA53&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771273248\",\"waveform\":\"ABMUEA8SFxENExwmPGFjXD85XVoeL0hDNVdPMD9RVVVYSEhQUktKSkZSV0YjAQADAgMJAxEJCw8fS05FTlVRSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771273249,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:20:49.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:20:49'),
(21279, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:20:49.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:20:50'),
(21280, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:20:49.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:20:50'),
(21281, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54D86A6A22A44DF4101CCF269E9D0DF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771273249998,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:20:49.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:20:52'),
(21282, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54D86A6A22A44DF4101CCF269E9D0DF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771273607006,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:26:47.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:26:47'),
(21283, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A54D86A6A22A44DF4101CCF269E9D0DF\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771273607495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:26:47.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:26:47'),
(21284, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:19.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:19'),
(21285, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:20.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:20'),
(21286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC138415DCA689EC05EB3BA6A3453A1D\"},\"pushName\":\"✓\",\"message\":{\"extendedTextMessage\":{\"text\":\"Esse?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A55A7F4434941FDCF7D2222378AF0EB3\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Assist mais\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uUH+bWg2rmEF5Rzry+3HEyA6MGtcw7VkKX9jpGEYxqw=\"}},\"contextInfo\":{\"stanzaId\":\"A55A7F4434941FDCF7D2222378AF0EB3\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Assist mais\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771273640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:20.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:27:20'),
(21287, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:20.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:20'),
(21288, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:20.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:21'),
(21289, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:23.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:23'),
(21290, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:25.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:25'),
(21291, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:27:42.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:27:42'),
(21292, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:28:39.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:28:40'),
(21293, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5D8254E354C57C9B53E74CC6F6ACAD7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771273719,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:28:39.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:28:40'),
(21295, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:28:40.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:28:40'),
(21296, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5D8254E354C57C9B53E74CC6F6ACAD7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771273738972,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:28:58.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:28:59'),
(21297, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:13.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:14'),
(21298, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:21.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:22'),
(21299, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:21.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:23'),
(21300, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:22.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:23'),
(21301, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4215B3CF119117816560285C7EC123\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Baixa pela internet esse?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MTRkHLJ6AU4ioPI5C3U4QznoT8T6MiPfaxF48dAe0SE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771273821,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:21.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:30:23'),
(21302, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:25.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:25'),
(21303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC97A0AF11111E20D00453E8DA56BF5E\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"No app não aparece ele\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AC2dX25DYtEh+h92d\\/XqKngyFVFeOOKo723mpE6SfsA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771273828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:28.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:30:28');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21304, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:28.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:28'),
(21305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:28.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:29'),
(21306, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:28.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:30'),
(21307, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:42.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:42'),
(21308, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC82B2391A784063040CBF1A3C98779F\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/597442877_878567351842563_2055248847991245010_n.enc?ccb=11-4&oh=01_Q5Aa3wEk6GvBD7_tQ6W4QvisQgDrjaH4iwoq02jPTQgXHo8IzQ&oe=69BAE3EE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"R\\/z0dVblexvpPq5Fl5XloGGhdfr2UUnaODuHtwn9ROM=\",\"fileLength\":\"94446\",\"height\":1599,\"width\":899,\"mediaKey\":\"frsvvMQwbBMMFeUECFpE2YTtj4yaOj9oyRo0700jpSU=\",\"fileEncSha256\":\"vVRe9Zq6sUoKzNLGP5JvK3fH\\/Nj\\/EL2FRhpIsKmGpeg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/597442877_878567351842563_2055248847991245010_n.enc?ccb=11-4&oh=01_Q5Aa3wEk6GvBD7_tQ6W4QvisQgDrjaH4iwoq02jPTQgXHo8IzQ&oe=69BAE3EE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771273841\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAAAgEDBQQBAAMBAAAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAMyGipWGQAgCvQpv0ccj1NVHUZ6JVpq8cmNNIvPO8DpEHMqcQ+wzhP8A\\/8QAIxAAAQQABgIDAAAAAAAAAAAAAQACAxEEEhMxUVIgIRQwMv\\/aAAgBAQABPwD6CVYRdId7UDcNkDn50+WAH1hzSmpxGWItWR\\/UrVjFg\\/pRYmICidtlLM0uFH0E7EElp4XzD0Rlawlpis3upJA+qZXgWNO4RjZ1Rhj4RiZwtJnCtWrR8XzPsha0nK\\/\\/xAAbEQABBQEBAAAAAAAAAAAAAAARAAECEiIQIP\\/aAAgBAgEBPwDrRiDZlgPpZVpAeSv\\/xAAcEQACAgMBAQAAAAAAAAAAAAAAAQIREBKRUoH\\/2gAIAQMBAT8Az84NNSRrH2uGsbssvNH\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"Dnpj7NFNw+V3bQkU1C239DdN\\/Bf\\/\\/5EmoEBlDS+l7xV8nQrSAER7ew==\",\"scanLengths\":[10358,42030,12474,29584],\"midQualityFileSha256\":\"vPIB3+IWGggaYyVpIOx7wdm4J40jePqgowQHftYqrhw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"J7lC1UquAy9LBGffxR+OAET2zItiMQ6yOH1iKCVUm\\/A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771273842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:42.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:30:42'),
(21309, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:42.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:43'),
(21310, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:30:42.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:30:43'),
(21311, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:33:09.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:33:09'),
(21312, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:33:11.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:33:12'),
(21313, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:33:13.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:33:13'),
(21314, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:33:13.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:33:14'),
(21315, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03944A0D77BC88838BC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá carol!*\\r\\n\\r\\nSua mensalidade vence *hoje*!\\r\\n\\r\\n💰 *Valor:* R$ 100,00\\r\\n📅 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n👇 *Clique abaixo para pagar via PIX:*\\r\\nhttps:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/pagar\\/index.php?id=8\\r\\n\\r\\n✅ Após o pagamento, a confirmação é automática!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771273998,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:33:19.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:33:19'),
(21316, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB03944A0D77BC88838BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771273999476,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:33:19.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:33:19'),
(21317, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E680B9895171E16031\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá carol!*\\r\\n\\r\\nSua mensalidade vence *hoje*!\\r\\n\\r\\n💰 *Valor:* R$ 100,00\\r\\n📅 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* Email\\r\\n📌 *Chave:* contato@voidplay.com.br\\r\\n👤 *Beneficiário:* VoidPlay Principal\\r\\n──────────────────\\r\\n\\r\\n📌 Após pagar, envie *\\\"pago\\\"* aqui no WhatsApp!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274114,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:14.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:15'),
(21318, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:15.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:15'),
(21319, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0E680B9895171E16031\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771274115785,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:15.785Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:35:16'),
(21320, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:23.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:23'),
(21321, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:28.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:28'),
(21322, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:38.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:38'),
(21323, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:47.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:48'),
(21324, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:55.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:55'),
(21325, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:58.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:58'),
(21326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:58.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:35:59'),
(21327, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACA8EB6DB3EA9B7ABC721AF242444614\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"O irmão deixa como está mesmo, tô meio sem tempo vc não está dando atenção aqui deixa como está blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fwfgXl5VgDLcEoe9nRWt33nJGa2KW\\/56at8JNBRUFcc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771274158,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:58.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:35:59'),
(21328, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:59.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:36:00'),
(21329, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:59.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:36:00'),
(21330, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:58.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:36:00'),
(21331, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:59.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:36:01'),
(21332, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC8BDA4FD36D095BA5228AF336DB4F54\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Obg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/gkBIal4Gx52nBn5L69zo8OExkOtjR8ABLxWpEHT4BE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771274159,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:59.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:36:01'),
(21333, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:35:58.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:36:01'),
(21334, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB04C3C171E9146D5057B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245418,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.418Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:26'),
(21335, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0DA3E77D8DC2B7D3D6E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245374,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:26'),
(21336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A58938EB4FE7BD1BECE4F2F897B6EF6B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245388,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:26'),
(21337, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB03944A0D77BC88838BC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245368,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:27'),
(21338, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0ED937EEFE53455F48E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245425,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:27'),
(21339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB07C6F24BAF30362695E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:27'),
(21340, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:26.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:27'),
(21341, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:28.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:28'),
(21342, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0E680B9895171E16031\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245358,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:29'),
(21343, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:28.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:29'),
(21344, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0C000C0A16C52B4E149\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:29'),
(21345, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB068A6CDB4867F7C98D8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274245401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:25.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:29'),
(21346, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5F0C28E1103781826D8B1928E7C160F\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1771273471\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VW4DRHyjHGn7esn1hELTl601GXaXYGCwbGSogSSNg5o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771274249,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:29.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:30'),
(21347, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:29.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:30'),
(21348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:29.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:30'),
(21349, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:29.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:31'),
(21350, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:44.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:44'),
(21351, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:47.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:47'),
(21352, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:49.230Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:49'),
(21353, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:50.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:51'),
(21354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A5EFDDEB6AE2822B079060A53DAFA6C4\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1771273471\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"K4ov315cSwD8NVrCrCHu98Rb906kovky+6i0uzX2I7s=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771274270,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:50.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:51'),
(21355, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:50.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:51'),
(21356, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D4056C523536D76F80\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 4792012997\\nMensagem: \\\"pago\\\"\\n\\nUse: \\/aprovar 4792012997  (automático)\\nUse: \\/pago 4792012997  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274271,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:52.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:52'),
(21357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaTYHQO3hgBVdkQ5oBSZubFOT5EFQ_8GLFYnSo95EuKw&oe=69A0A5B2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:51.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:52'),
(21358, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E9EBA84ADE4D2681F0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 4792012997\\nMensagem: \\\"pago\\\"\\n\\nUse: \\/aprovar 4792012997  (automático)\\nUse: \\/pago 4792012997  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274272,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:52.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:53'),
(21359, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0964CBB1DA7FC2D0508\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Pagamento detectado!*\\n\\nRecebemos sua mensagem sobre pagamento.\\n\\n⏳ Estamos verificando e em breve você receberá a confirmação!\\n\\n📞 Dúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274271,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:51.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:37:53'),
(21360, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0964CBB1DA7FC2D0508\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771274271891,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:37:51.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:37:53'),
(21361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B65973A3E71F7C324199547246A82B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771274530930,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:10.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:12'),
(21362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:12.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:12'),
(21363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:12.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:13'),
(21364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5B65973A3E71F7C324199547246A82B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/40804609_4211120792482881_5932270850316155040_n.enc?ccb=11-4&oh=01_Q5Aa3wH7xMA_-Gvm8dXR97pktaM9riaaJfqmvwDPEpKKEUFf_Q&oe=69BAF691&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"74V9ObYBdoV0HDekUUp1xvkrYJCfTwxrsibNKuuJItE=\",\"fileEncSha256\":\"E8f8hNAg7z8PRYpVIJZ+Mq+6wq8JS5tOLKp\\/OFCmdwY=\",\"mediaKey\":\"qHq1Qvhpmn+YswdlnBfzltCYH+YD0Hqiz+MaEdLyLgY=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/40804609_4211120792482881_5932270850316155040_n.enc?ccb=11-4&oh=01_Q5Aa3wH7xMA_-Gvm8dXR97pktaM9riaaJfqmvwDPEpKKEUFf_Q&oe=69BAF691&_nc_sid=5e03e0\",\"fileLength\":\"217220\",\"mediaKeyTimestamp\":\"1771274529\",\"isAnimated\":false,\"stickerSentTs\":\"1771274529334\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771274532,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:12.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:13'),
(21365, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5497D94DA7CBB2F6B5C225EF23AFAA1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11763094_1850606225591365_1916861809789312535_n.enc?ccb=11-4&oh=01_Q5Aa3wEkVR8qFom6r1CxJE2CjqhHxFDFw4ypo6K1OdhmwQ67oQ&oe=69BB0492&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4okj3mQV\\/poV1\\/Kq7TBSvSLOGU85ZPXjHv8HQgMMmCU=\",\"fileLength\":\"14250\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"0635kIgSzX8D1TpFsxsX9mUuWkRDreFhGko6babt7js=\",\"fileEncSha256\":\"hyTuGhf4ODBkyP7QEXkTPyLYUMrJ00o0vonjkuZOFEA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11763094_1850606225591365_1916861809789312535_n.enc?ccb=11-4&oh=01_Q5Aa3wEkVR8qFom6r1CxJE2CjqhHxFDFw4ypo6K1OdhmwQ67oQ&oe=69BB0492&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771274532\",\"waveform\":\"AAcBACJgPCZjNl8uRmNGP09QUEtVPlQlKFwlLE1RVVZVUFlSREEpVVVOOEweCgAAAEJgKFlGRmFNXFpJRUtWUQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771274537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:17.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:17'),
(21366, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:17.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:17'),
(21367, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5497D94DA7CBB2F6B5C225EF23AFAA1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771274537893,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:17.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:18'),
(21368, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:17.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:18'),
(21369, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A54BF7B833E5D81789C6ED1D12062E71\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283785},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283785},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771274547,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:27.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:27'),
(21370, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:27.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:27'),
(21371, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:27.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:28'),
(21372, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0003FCEE9F0CC011D4C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274548,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:28.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:28'),
(21373, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5D5E3250FFCAFC793FDABDB0139695F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/status\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283794},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283794},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771274559,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:39.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:39'),
(21374, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:39.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:39'),
(21375, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:39.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:39'),
(21376, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB094B9023EEBC8BEF5C4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ Erro ao buscar status\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274559,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:39.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21377, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:57.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:58'),
(21378, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A509FAD8025E16475AC4E623E455E039\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reenviar 47992012997\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283813},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283813},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771274577,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:57.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:42:58'),
(21379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:58.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:58'),
(21380, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05C34368B5EC6653AE6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nTelefone: 47992012997\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274578,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:42:58.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:42:59'),
(21381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:11.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:43:11'),
(21382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A504F55CD2288C44BCEB60B90F3541B9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reenviar 4792012997\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283826},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283826},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771274591,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:11.331Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:43:11'),
(21383, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0488742DB843B08CDA4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Telefone deve ter 11 dígitos (com 9)*\\n\\nVocê digitou: 4792012997 (10 dígitos)\\n\\nUse \\/corrigir TELEFONE_ANTIGO TELEFONE_NOVO para corrigir\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274592,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:12.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:43:12'),
(21384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:11.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:43:12'),
(21385, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:37.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:43:37'),
(21386, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5F29C92A831417B3DD2B74851B0E7C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/reenviar 47992012997\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283852},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":283852},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771274617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:37.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 17:43:37'),
(21387, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A493CECFE5A8148046\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"❌ *Cliente não encontrado*\\n\\nTelefone: 47992012997\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771274617,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:38.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:43:38'),
(21388, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T17:43:37.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 17:43:38'),
(21389, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB066B366A891B2838BC3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, carol!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ 100,00\\r\\n📅 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* Email\\r\\n📌 *Chave:* contato@voidplay.com.br\\r\\n👤 *Beneficiário:* VoidPlay Principal\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771275699,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:01:39.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:01:40'),
(21390, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB066B366A891B2838BC3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771275700200,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:01:40.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:01:40'),
(21391, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:20.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:21'),
(21392, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC8B1B54D84C5E143F83906292F6B555\"},\"pushName\":\"Sampa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/598059878_1841798206520466_4822987999151109838_n.enc?ccb=11-4&oh=01_Q5Aa3wHytJVKMorbgA0aSRdaR8T1C55m2otzeEdHdltVWjdMpg&oe=69BAF28C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Ci+SgBGSINLuD+t+dVQnvpRZJIrks+s7oMNiMyqe01k=\",\"fileLength\":\"58533\",\"height\":1600,\"width\":639,\"mediaKey\":\"MFKsh5ax1fPScMoy7d3CP\\/YgWOe6PR2QsQVts9ls6SE=\",\"fileEncSha256\":\"04ezN06mwRNDmcd8huvRdV7sDpVTnqpi6CkleP0YbGQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/598059878_1841798206520466_4822987999151109838_n.enc?ccb=11-4&oh=01_Q5Aa3wHytJVKMorbgA0aSRdaR8T1C55m2otzeEdHdltVWjdMpg&oe=69BAF28C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771275859\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAgEDBQEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPcuetdGIxCuiLicijb59DG6AAAf\\/8QAIRAAAQQCAgMBAQAAAAAAAAAAAQACERIDIRAiEzFBMIH\\/2gAIAQEAAT8AyS7QyFu1gexs93O5dkbesbVYQt8KkpzhMV\\/qBBEjmwHvStjaPaD2TEobXUohpkaXjHFGuJMFMgDQKvuKngveDAAXb6OfGA6Z\\/D\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"3LPVMLKikx69Gj7X0xSbScYqNz2gsl24fifeBTeaRCoGjJYbWtj6gQ==\",\"scanLengths\":[5809,29764,10514,12446],\"midQualityFileSha256\":\"aliT63zxkKcRWxJUpYSicWswfoK30FTa78dAUas0V7A=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kcyd4wRu5ti44QgW7BXM3jFMmSR1SAGZrgTwiq4J9hc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771275860,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:20.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:04:21'),
(21393, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:21.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:21'),
(21394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:21.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:22'),
(21395, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC24306BAF2C489B6851BD01A8945447\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ddNYkjVyWrDuTQLP8s\\/e8+kHgNs77v+i\\/M6sJYKNZv4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771275862,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:22.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:04:22'),
(21396, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:22.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:23'),
(21397, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:22.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:23'),
(21398, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:22.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:23'),
(21399, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:24.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:24'),
(21400, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACC32300D9A7DE4A1FE0E24CE5167813\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Tá na mão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ErAr+GkxCSvVsmmef9x4MWWq8ogs5uk9XRlqep4bPEw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771275863,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:24.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:04:24'),
(21401, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:24.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:25'),
(21402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:24.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:25'),
(21403, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:24.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:25'),
(21404, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:21.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:26'),
(21405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:22.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:26'),
(21406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC69758D20F615210BC8AD71785962E0\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Se consegue liberar ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vo1JMx3tMgad002VbyviloC25k3c+5ol8QLjsvENuzk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771275869,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:29.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:04:29'),
(21407, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:29.302Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:29'),
(21408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:29.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:30'),
(21409, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:29.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:30'),
(21410, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:57.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:57'),
(21411, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A56288CEDE757E857934E39C8C8C958A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":285132},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":285132},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771275897,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:57.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:04:57'),
(21412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:57.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:58'),
(21413, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A2407B55A5262BFABC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771275898,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:04:58.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:04:58'),
(21414, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:05:02.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:05:02'),
(21415, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57515D3BE3EAAC122279A3752968FF3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Rodrigo\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":285137},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":285137},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771275901,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:05:02.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:05:02'),
(21416, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wHcwBlIvy5OiS5WWF9B_B3Z0bBwnIJcdBCDCWuNVf4g-w&oe=69A08C14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:05:02.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:05:03'),
(21417, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5E4569394D320748C1D59DDCFC749FD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771275944,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:05:44.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:05:45'),
(21418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:05:44.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:05:45'),
(21419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:05:45.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:05:46'),
(21420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A531E49D1587A651967364A409C08053\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEr12bKJY4jFPEyTFJ6gCAvBbEhb8TgKuFBfcLavaU4yA&oe=69BB017C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEr12bKJY4jFPEyTFJ6gCAvBbEhb8TgKuFBfcLavaU4yA&oe=69BB017C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"stickerSentTs\":\"1771276178958\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771276180,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:09:40.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:09:41'),
(21421, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:09:40.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:09:41'),
(21422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:09:41.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:09:41'),
(21423, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A531E49D1587A651967364A409C08053\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771276181673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:09:41.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:09:41'),
(21424, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC2D00F04E27212D750211BAB2165F4C\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Briagdo irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xKmr7X8l4po+2EjKWH+7GAD\\/1hUJE1mSKPvHJI\\/xizU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771276247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:10:48.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:10:48'),
(21425, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:10:48.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:10:48'),
(21426, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:10:48.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:10:48'),
(21427, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:10:48.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:10:49'),
(21428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wElAdUhoh3YOh9LIWzmeVK3pHjxAomIIoFCcVlL8Ac6KQ&oe=69A08A5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:45.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:19:46'),
(21429, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wElAdUhoh3YOh9LIWzmeVK3pHjxAomIIoFCcVlL8Ac6KQ&oe=69A08A5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:46.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:19:46'),
(21430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"87484876771482@lid\",\"fromMe\":false,\"id\":\"AC6A5CF2A04486644411B1CAEF81D1E7\"},\"pushName\":\"Livia\",\"message\":{\"extendedTextMessage\":{\"text\":\"Confira o vídeo de 🌷✨️_𝒍𝒊𝒍𝒊_𝒆𝒅𝒊𝒕𝒔07✨️🌷! #TikTok Abra o TikTok para ver a publicação de  @🌷✨️_𝒍𝒊𝒍𝒊_𝒆𝒅𝒊𝒕𝒔07✨️🌷 Meu presentin de Deus 🥺♥️ #_l... https:\\/\\/vm.tiktok.com\\/ZS9J3FYtdwtEG-ZJnnI\\/ Esta publicação é compartilhada via TikTok Lite. Baixe o TikTok Lite para curtir mais publicações: https:\\/\\/www.tiktok.com\\/tiktoklite\",\"matchedText\":\"https:\\/\\/vm.tiktok.com\\/ZS9J3FYtdwtEG-ZJnnI\\/\",\"description\":\"43.7K gostos, 313 comentários, \\\"Meu presentin de Deus 🥺♥️”\",\"title\":\"TikTok · 🌷✨️_𝒍𝒊𝒍𝒊_𝒆𝒅𝒊𝒕𝒔07✨️🌷\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAQwAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRnWFlaAAABeAAAABRiWFlaAAABjAAAABRyVFJDAAABoAAAAChnVFJDAAABoAAAAChiVFJDAAABoAAAACh3dHB0AAAByAAAABRjcHJ0AAAB3AAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAFgAAAAcAHMAUgBHAEIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z3BhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABYWVogAAAAAAAA9tYAAQAAAADTLW1sdWMAAAAAAAAAAQAAAAxlblVTAAAAIAAAABwARwBvAG8AZwBsAGUAIABJAG4AYwAuACAAMgAwADEANv\\/bAEMABgQFBgUEBgYFBgcHBggKEAoKCQkKFA4PDBAXFBgYFxQWFhodJR8aGyMcFhYgLCAjJicpKikZHy0wLSgwJSgpKP\\/bAEMBBwcHCggKEwoKEygaFhooKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKP\\/AABEIAIwAjAMBIgACEQEDEQH\\/xAAcAAABBQEBAQAAAAAAAAAAAAAHAgMEBQYBCAD\\/xABAEAACAQMCAwUEBgYKAwAAAAABAgMABBEFEgYhMQcTQVGxFCJhcSMyQnKBkRUkUnOh0RYzNENTYmOCweGSsvD\\/xAAbAQACAgMBAAAAAAAAAAAAAAADBAIFAAEGB\\/\\/EADERAAEEAQIFAwEGBwAAAAAAAAEAAgMRBBIhBQYTMUFhcaFRIjKRscHRFBUjNEKB4f\\/aAAwDAQACEQMRAD8AEW2n4I8yofiK4i86n2kYLr86tJJNG6qI4tey2Qalq1NbTXRmr5czSeDUo4IzTQFKA51i2lUoLmvguaWBWLF1KeTrSApxTiCsWwE9HUuB9rVEQU+laKIDStIrjGMVLivSOhxVOh5U+tCc0Jhsjh2V7FqLDkeYrFdqVwbi1sB5O\\/oKv48451mO0EZtrPP7begpWdoawlN48jnvDSsKBXdtKxXcUjdp+lVKOdTbVsOnzFRwlPW4IlT7wrb2altji3dboRirGbQb+Kwgu3gzDNt2BWBb3vqkr1GfCozgKjHyBomQW97BfJcWTwjEUNoBKwVWBTO4Z67TtPKj8W4i\\/BDCxuqzR9qSvCOFx55kEjtOkWD62h1qmj3elyIl7GqlwSNrhhy6g48RUIKCMggjzopk3Vjo8dvC10su+aTeBjeQeWfdJ8PhUmYX7w3Do8sPcx24EKRgI7sPf5Y\\/PHnVNHzSdNPiJd5r2tXUvKQ1WyUBvi\\/cBDPSdHvNVMnsMasI8ZZnCjJ6AE+J8qhhcNhhg9MHrRUk76W9t4R30bR36D2ZYgsKxg5DZx8POqzWDc6hpOoNqRxhXxEykFH3e5t90Afmc0WDmXqT9Mx7E0P1v9kLI5WEcHUEgsCz+lfusECuM55Dxp1dpAJYYPIHNEeSaY+0W1nLMskTxRwW6xgxMuBuDcvzp5ri4OpyC3SUW0fegROgwm0e7gbcD4c6x3NLASOme9d\\/WljeU5CAeoO19vQFDhdmcblB8s0+oULksAPPNEPUJbm20+yVby7e7nhMkjBVxG4UfR8lJB+Hj8KrLWLuZtQvI1gjugIRll+qzDLYGCFJ88UWPmJrg8ujI0i\\/H4fKFJyy5pYGyA6jXn8fhZRGj\\/xE8+oqRGYzjDqfka2Y1EwwwvNG4721kkHeQqS0wbCtlRjIA5Gvpri4e+tLcCQK7wpPC0Q2SB8biRt+fPNLnmeI9mHx8pgcqS+ZB5+Fl0jwBWW7Q1xa2WP2m9BWvgiDRrtJK490k55eFZbtGjK2lifN29BV5OdUZVJjsLZQsFiu4pQU0rbSA2VlSr9tOQJmVPvCkA1IthmeP7w9aJahVojeynyp028kiIrvI6oMIGYkKPIZ6fhVmsQx0qTFEPAVbOd9VVNh8AqrQ3aszC7uwzdSJ3BPz51zfcgjNzckgEA983IHqOvjV37OMdKjyQAc8ZqA0fREMbx5K+sdNnubGMzalNDDLuRIB3sm4DkfdU4xT11w\\/qw7tALm7t9oeJgxAH+xjkEY8qm27JFYW1wHfMETgJFMI3aRnHu5IOBjJ6eFSr24huNQiu\\/aII7eJoyk0syiQKBzD5Od3wFcxNxHMhle4R226G3yukh4ZhyxMBkp1Wd\\/hV2oWms3adzK9ukfMyJHOEDnABLjPPoBU+xgk03S1E7ma6wshRp3ZVUttQLg4+P41AXXOGLee2a61XTmkjW4EmQTveTOzw5gZ6+GK7pur6NMkUNrdi8kWOONtkiomVO7kTkkZ5dBST587Ij6EcQZ5229fzPwnY8bBgk675S8+u\\/p+Q+Vdaq0dzbyXBur6JkupUPs5ClgAvXmM4x486z5gltrhnguJcsocSqxVnU8xnn1q+mihlVGeHuypdh3NyVzv+tncrZ\\/DFRJVU\\/VAUABVXduwAMDngZ\\/IVY8Ljy4nlk4GivlIcSdiSsD4b137bKuSa4QsVurkMxyxEzcz59aXG02wqbi42HqvfNg5+GacMTM2AOdTILB3jzjB8quyGDuAqRoeT3UJVxgKMDyrJ9pKH2WxH+dvQUQY9ObHPGaxnafAYbSw3Dq7+goU0gLCAjRRkOBKGwjruynsivtwpCynKCoEfNTbT+uj+8KrEPOptq30qfMUyQlGuRjhfcvLmasrS3kcAkYFZzSbtUlBfmK1dreW5XIfB8qsZdQ7JLHka7clTI7J35Y5eddfSWPQZqz0yeB9uZARWkMEPs5cMuAMk\\/Cq987mFWTI2vFoU8U3trw7Y9\\/cANM\\/KOMdWP8qDWu63qOrSlrmUrF4RpyUVf8d6y+t8Q3M4yYUYxxL4BR\\/PrVBBayXM8UKAbpHCDPmTigPyC\\/2RGwhqqAhPjSlLIQVYgjoQaIHF\\/ZdxBw3Es8kK3loVBaa2ywT5jqKxTW236woesFS0kLScK8aX+nyJBeu9zZ9Dk5ZB5g0Y9NEd1bR3EMgkikG5WHQivPcMYzy5Cir2PawEuJtIuXBRlMkO49COoorMgj7JUHRA\\/aC30aor425NSwxQZAqQt1YwZLttamIr21uZym8op6EjrRzZ8INgbWkLfKp94Vge1i8W5tbAL9l39BWt1qFImzDKXHiKG3HkhMNqCc4ZvQVJ0QMZcEITOEgYVjnkxTXe0mVqY3fGlg1HL1GWI+VSraImVAB9oU+sPwqXZw\\/rEWOu4etS1rBEt\\/a6bKPrIw+Yq4s7M8h0q9s7O5fImB2+XnVmsEcaBFiXcfHFWD8nwkY8Jo3VbZ2DoQWzj4eNSeI7mWz4X1J4dylYGYflVva25DAsK5rtn7bo15bgZMsTKPxFIySak\\/HHpGy8toz+NTtHY\\/pix\\/fp\\/7CojI8cskbgh0Yqw8iKmaKR+lbI+U6Z\\/8hSJTQXtJVDQhWAIK4IPjQ5457J9I18SXGnY06\\/PPcg+jc\\/5l\\/wCRWp4l4s0fhjT+\\/wBWvI48JkRg5ZuXlXnzjTtsk4iley0nUY9PtDy2o+JHHxbw\\/CgjuilYbV9Pm0rVLuwuCjTW0rROY2ypIOORqVwlO8HE+nMhO4yhfz5VXujfWJ3A892c5rTdmWj3Gq8YWSwR7liJlYnkAAP54phjgCCgObYIRTlgLNmR8DzNJE0CLsYF8eIOKv8AV9Iu44y0kBKjxTnWWnjAJ5Yq3jeJB3VPKwxHsuTXMeXCgnPmelYftAyLe0YnqzegrXNGM5xWT7Rx+p2P329BU5hTCEOAl0gJWFZs0iumvsUgrDurcJUmyUe1Q\\/fHrTWKfsh+tw\\/fHrS1ptH8Ssgqfpc8Mj\\/ToAfAmmFsnb7NOxWbIcld2PCmHFpFITNVq+iFvJlVIyvUVDT2eK6ntHIVsb4iT1B8PwPr8Krr4ttinsVfvUBOwf3i+K\\/OrKDRkuhBPelt0Z3LzwSCOhpF7gwWSmRvsAgR2t8LyWGrx6xp0DNY3hImCLnupPHPkDQ\\/MMiy7gQqnxJ8a9DdpXajw3wzZXGnqsOoXcgKG2XmuT+1QXt+H5eItNsNasmjtknkkgktnfkrg5AHl7pHXzoDZNXZE00qLWo21OGJLqRpUyN245zjoKx+ucOXHtW62tY5bZugUDI\\/LnRG1PQdS0m9SxubNveTcCjBgB0zyNaHS+z7iO8WN\\/YxFbvzEruu0jz5E1hruptNIN2wvuGb23jmZ5tMuCF2tzMbHw\\/+60fYOz\\/WE4VaeGa6hluIDM0FrL3byL9lCwBPPrgfxqzuey\\/TRw5dQzyG91WRfoiB7sb5yCBRR065trOLTdJuLuFdVS2UiAuN7AAA4HjUQ5rxTSt\\/dOoheX+C9F4rk1G7HC11q+m6pb7nENxKzw3AXqMsBz+BBFFHgrXv6aQ3dpqdoNP4nsOVzABtEoHVgPA0ZUnhjZiyqkh+scYJocazoWe1fSNb0pQkjqY7rby3KPE\\/hkflRIZHQm7Wp2Rz2NNBRDpJz1rD9qdkYLPT\\/i7+goxXFqktzI8PONmJUjpQ57ZrXu7HS8jrI\\/oKtn5GpiqWYwa7YIO93Xe7NTu5r7uvhQdaLoU8R0\\/ZR4vID\\/qL619yp61x7TD98etL2mqXpcTQ+Yrrd1KhXPXxHUVTwhftZzXdR1aw0TTbnUtQkCW1su45+0fBR8TUpAGNJKg1xcaU+6urLQrCbUdXnjgiT3mLYxkeIHma86dqHbhf653+ncK7rLTvqSXbHDP8vL5D\\/qqTijW+Iu1biNba3jkFpn6G1UkKqZ+s58B60U+Bux7S9GWK51YLfXy8xuXEcfwVf+a57LzY8Y6pTbvACsI4b9kBuGuC+IuIpe90+2eNX+tfXYOT91aK3DfAN\\/wxa2yT3j3tslyLmVHXnuxg7cdAeXL4Ub4rWG3QLEiqoHIAVHuYldSGAxXP5HG8l7rbQH0\\/6nGRRjxaE80kyzP7Tvmts\\/RyKNxVfJvl513TeLZuHklaHU3MZYssATcuPLGP+\\/jWt1bh2OYs1rPJbuepQ8j+FYbWuDtQuHIudWuJIf2Ado\\/hTMHGGuNudSmcdpFAKS\\/blrEscsdlpNiZgCEdy4yfu5\\/5oFaxxBxJd8cjXNcmlh1MODG6kqgA6Kp8KN+jcJWljjaoJ8zU\\/VOF7G\\/tzHcQRupHiKb\\/AJ\\/Ex1VstHABHfdROFO2q+kEdrrOmpdKMASs2xz8c4waIdnxpp+o6pZaXbW5s7m+jeRealyi9eYPLrQjsOA\\/0deb7K7kWDPOFwHX+NEXTuGhc8S8NavDsWbT2kjlwAN0TRsMfg2PzpiHi2PNkNa2jaBLiOZGXIiwRKiKioFVRgAeAobduSZsdJ5Y+kk9BRTTFDTtzx7DpP7yT0FdCXKsAQcEVd7oVJVeVK2is1LNKjg09aPi7gz+2vrTWMCmUk23lv8AvF9RWErAvUYWPyFAvtw1G61niaw4Z01e894YiHR5SM5b\\/Kq8z8\\/jR3ZMdBQ94U4dSbtG4l1y6Tc8Ui2tvu+yuxXYj5lgP9tK8RyP4eAvHdEx2hz6Ktuz\\/g+04V0hYYwHupBunnI952\\/l8K07uAKclO0VDdsmvOppHOcXONkqzaLX0j1W3k5UHFTX5io0sQfrSjiSjMpYk6veaveTQaVgRQttkmP8cVey6Da22nSXeq6oyRIhZpC4UAYoY9pLcY8GpdTcK6ct3pdwCzSxIXeEnruUc8fHp515xvdS1zUIu6vdQupI\\/wDDklbA\\/Cu74di4Yha6NoPqdzaSeZnvIC9iWuucBNp6zycRwBNudxnAP5VYaJd8G3tokiaxDJ3h9wm4ALeXKvC0sE0X2cj4V2JbqJlkiDK6nIKnBBqw6EB\\/wH4BQqUGt17Z4gjg0i706SzufaLK8k7oBjlkbBI\\/A4xWi0KUxTIa8mdmvEGt65xbomlyNJKkUwkkZiSdq8yTXq2z9yRa4\\/jkTMXMjfCKvfb3T+M50kRD1tBKT4UNO24lrLScj+8k9BRJtyGhQ+Yoc9tn9i0n95J6Cu7a8PjDx5pUmkh2lCtByFLxSV6UrNZa2osnIVA5m\\/th\\/qr6irCTpUOFQdQt8\\/4i+takdQW2r1jtGaZS3ihlmeNArSkM5HicAZ\\/ICn16mkuetIcX\\/tz\\/AKRIfvKJcnFV9xPHAm+Zwq+ZqwuayHF6iQ2sb842ZQV8DmaIehI\\/GuIih684jJq1YatLbV5b3MN1HvgkDr8KgNrWnBiDdJkdRg+QPl5EfmKgcPW62c0yxE7TEGwcYByemKzjQRNO5ZFYv7jEjqFW1UA\\/hn8zTkPCWSSyRlxptfKh1iADXdb6ORZY1eNsowyCPGs3xDoPC945fWtNsXkfrI0QDH\\/cOdN8VXTadw3LPFHG5t7QyokgJXd3kSjIBHgzD8aqLWQX+n23tEURWdYpHUL1z3hxk88DAxz8BWsLhrnjqh5Asjbvspvn0mgEpuyfge8Qyx6eoTxMczYH8agt2X8CKcR2Ts+Mhd7kkeePKkXl9JJqt1ZFIgg01Zw6rhgY4AQPLB3c+WeQwRitFKP1s\\/tLJO6t4qe9AGPlnPzAp44szBZmdS0MlxOyjaBw5omiZk0awgtzIvORVyzDyJPOr6E\\/SLTIRYwqIMKoAA+FOw\\/1i1yUsjpJdTiT7qx8LaacM2qZ8qHnbfgWWlfvJPQURNN\\/sqUO+3H+xaT+8k9BXqEBrFZ7Bc+8f1ChSOlKpCUummmwhFf\\/2Q==\",\"thumbnailDirectPath\":\"\\/v\\/t62.36144-24\\/637970549_1584826779468951_496715850974949739_n.enc?ccb=11-4&oh=01_Q5Aa3wHBYvNIf4672RPu31URHG6NbwfK229ytERHna0tDf1Uxw&oe=69BADF50&_nc_sid=5e03e0\",\"thumbnailSha256\":\"KDusUs9Gfh3TUAXR84eYEhyn\\/qcbOQttFb\\/QSJRynbM=\",\"thumbnailEncSha256\":\"lb6UejzXEblmC7UUTJf0ZlbCDPNzBGftRFNlZNIVr1w=\",\"mediaKey\":\"38uIxhOdvdyE+wePBvcTZwCiBp\\/kgH9X1d5KNfEJeqE=\",\"mediaKeyTimestamp\":\"1771276769\",\"thumbnailHeight\":828,\"thumbnailWidth\":600,\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HRYpvzskn3lUJE0szd6M361b45ygh5fHfqBZIsAbkdI=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771276786,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:46.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:19:46'),
(21431, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wElAdUhoh3YOh9LIWzmeVK3pHjxAomIIoFCcVlL8Ac6KQ&oe=69A08A5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:46.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:19:46'),
(21432, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:46.365Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:19:46');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21433, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"3EB069382E4C4CC7F31570\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771276787094,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:47.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:19:47'),
(21434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"3EB0DB7ACBE093BBA5E2B5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771276787097,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:47.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:19:47'),
(21435, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"3EB09270DA342A5BF621F8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771276787109,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:47.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:19:47'),
(21436, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"3EB0FC9FB9C8919E6A0D1E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771276787116,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:47.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:19:47'),
(21437, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"3EB0637C9C62D89617F935\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771276787101,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:47.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:19:48'),
(21438, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"87484876771482@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619321208_919353993948740_6423423974777167492_n.jpg?ccb=11-4&oh=01_Q5Aa3wElAdUhoh3YOh9LIWzmeVK3pHjxAomIIoFCcVlL8Ac6KQ&oe=69A08A5D&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:19:46.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:19:49'),
(21439, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A50335EF789111710F5EA7045A0341CD\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637897417_1432207918553337_978498987698872625_n.enc?ccb=11-4&oh=01_Q5Aa3wEhAqCPRRrfgC8y2IHNI5L5zSzj7Xxcm3RYawiDFQcbwA&oe=69BB08DA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"oreP6xMLK9eIhwfd4j94EWo2U9rZRptFdtCh7H0djWQ=\",\"fileLength\":\"6019\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"\\/ImGkllR7+WvYfroE5Y3hs8Kwv7bncar5P+z7i488Qo=\",\"fileEncSha256\":\"ve6e97J60ISpGuqN\\/n5RfDq3v9YHQ+dlUgIBh2qrfhg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637897417_1432207918553337_978498987698872625_n.enc?ccb=11-4&oh=01_Q5Aa3wEhAqCPRRrfgC8y2IHNI5L5zSzj7Xxcm3RYawiDFQcbwA&oe=69BB08DA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771277483\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AA0MI1dgX11bW0ZVY2NjYEkwLFljUD5fYFVLSlJYWltjX1VSWlVZW1pVLkNZVkMjNFRbVVhbTxhEVEoyJT9UXA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771277484,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:31:24.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:31:25'),
(21440, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:31:24.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:31:25'),
(21441, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGO0Iv28srHIxqjESLNtTJEUy7TRvnfddYJX4KIOcc76w&oe=69A09AA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:31:24.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:31:25'),
(21442, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A50335EF789111710F5EA7045A0341CD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771277485542,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:31:25.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:31:25'),
(21443, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50335EF789111710F5EA7045A0341CD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771277498903,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:31:38.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:31:39'),
(21444, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":true,\"id\":\"A52770989B1DE041C7FE29DA634E59D8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/589054188_1227782858899088_7390559919469905244_n.enc?ccb=11-4&oh=01_Q5Aa3wGyCjIttN9-UyGHiy_PpCHwXkPer0QLtMdY-SFnzkFmwg&oe=69BB0BC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Xeot8u6kIpYgm6pDrRHj5g8WiqE686eqJC48sTv1JQ8=\",\"fileLength\":\"9291\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"p\\/DnH8PYSmVPJCg2\\/5gDXs2yWNc0l4BsN1sQR52OfB8=\",\"fileEncSha256\":\"SgdTsdB97\\/bInqOYAK+3y056svd3FL+UX5VrbAkI9QA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/589054188_1227782858899088_7390559919469905244_n.enc?ccb=11-4&oh=01_Q5Aa3wGyCjIttN9-UyGHiy_PpCHwXkPer0QLtMdY-SFnzkFmwg&oe=69BB0BC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771277682\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":158746},\"waveform\":\"ABxgXVlTYl9UNR5TU1daY2NgWjcyRTtCJk1bXWBgPldSQBpRPiZMXlBBLlFZSGNcSUViXl06OVQ8HU9YT1BRUg==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":158746},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771277685,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:45.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:34:45'),
(21445, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:45.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:34:45'),
(21446, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:45.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:34:45'),
(21447, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A52770989B1DE041C7FE29DA634E59D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771277686568,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:46.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:34:46'),
(21448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:47.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:34:47'),
(21449, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":true,\"id\":\"A5051B7864886D551DA26AD76AF32D41\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UENLCYT69R\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771277687,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:47.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:34:47'),
(21450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:48.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:34:48'),
(21451, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A5051B7864886D551DA26AD76AF32D41\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771277688852,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:34:48.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:34:49'),
(21452, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:31.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:31'),
(21453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:33.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:33'),
(21454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:33.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:33'),
(21455, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:33.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:34'),
(21456, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:34.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:34'),
(21457, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":false,\"id\":\"ACCF437079DA57FE51F643F7940AAFA3\"},\"pushName\":\"Viviane\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LvDt7J60QCm495uhpWaKdnZ2g5Q7D9c5lCW1ni7GG7Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771277733,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:34.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:35:35'),
(21458, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:34.185Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:35'),
(21459, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:35:34.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:35:35'),
(21460, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A5051B7864886D551DA26AD76AF32D41\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771277806160,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:46.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:36:46'),
(21461, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"3EB0D9C50F904F83783135\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771277806168,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:46.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:36:46'),
(21462, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":false,\"id\":\"ACC2C8425237DFD9A463A3D992FEFF28\"},\"pushName\":\"Viviane\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/599864984_1421339259716860_7298695017796548652_n.enc?ccb=11-4&oh=01_Q5Aa3wH9nAQV0PoBc6cd0upBtAcK5_c3160OPcBNToeb-PKbaA&oe=69BAF200&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"NRCjWFC9HY7557jaDEpajxY+diXOMwSpgJELF9BU9jg=\",\"fileLength\":\"80251\",\"height\":1599,\"width\":690,\"mediaKey\":\"UOW2KybWRYfCj2QkLLgKQgETtXZ80vrujuyUflbW3n4=\",\"fileEncSha256\":\"OcK3\\/jN9nfvjbATdHpsoDw6IQ9XzCpo5+ppYjORKd08=\",\"directPath\":\"\\/v\\/t62.7118-24\\/599864984_1421339259716860_7298695017796548652_n.enc?ccb=11-4&oh=01_Q5Aa3wH9nAQV0PoBc6cd0upBtAcK5_c3160OPcBNToeb-PKbaA&oe=69BAF200&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771277806\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAHwMBIgACEQEDEQH\\/xAAsAAADAQEBAAAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD0V829WBGbVDaZiygphjUM1M2ZsAoD\\/8QAIBAAAgIBBQADAAAAAAAAAAAAAREAAhIDECFBUTFSYf\\/aAAgBAQABPwCltQalmRj1GN1ckr2VQXHMe2Vw+AYL3HwBvW1MjlxHpfaC9B3sQGeIh0pifBBl3Cbfkq+1GNjSzgraYH3bKzmRmUZhbiPkD8gc\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"gqu4JXaWZ\\/O3Fn8GAy5ev8Oi6jIDE7mFKa7oMQoGUcWnm2Apjj3EeQ==\",\"scanLengths\":[6641,37266,16653,19691],\"midQualityFileSha256\":\"yQqGPggisg\\/rpK0XyY6fHjoTSp6HJKWTEmSgECQf\\/3I=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"52JG242JqnB4sclk9llsZ\\/NCR9DVB8m7ze+79XagC0o=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771277807,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:47.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:36:47'),
(21463, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:47.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:47'),
(21464, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:47.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:48'),
(21465, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:47.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:48'),
(21466, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:49.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:49'),
(21467, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:57.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:57'),
(21468, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:58.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:58'),
(21469, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:58.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:59'),
(21470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:58.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:36:59'),
(21471, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":false,\"id\":\"AC446BBC1739F052B250048F1E8BA14C\"},\"pushName\":\"Viviane\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596545507_924452260094339_6356067232459992572_n.enc?ccb=11-4&oh=01_Q5Aa3wFQxYSyY7pJxau-j6JVfWyrCHME9MTR9uXuNPqpZj0ZKg&oe=69BAFAA6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9xx2lB+KrVqUA9L8IBWQYMPaC7DXFzlTYFgZbSeb0sw=\",\"fileLength\":\"17455\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"nm6gTed6adVTqgItdgRIh5EhPR3\\/fVO\\/oj1JPZgz8yc=\",\"fileEncSha256\":\"TQtwfQg\\/Sr+EfnJjjuTmFg1GGXPyCKfagWxPn3sK2MI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596545507_924452260094339_6356067232459992572_n.enc?ccb=11-4&oh=01_Q5Aa3wFQxYSyY7pJxau-j6JVfWyrCHME9MTR9uXuNPqpZj0ZKg&oe=69BAFAA6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771277811\",\"waveform\":\"AAAACQAsITVALj8iRkI0MS85Li0mNyE6MCEKKCI1Qig5By4ILjAwIiowHQ0mJiczEg8FAAIJBREyRT01LgEDAg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V6reDT4h+APA0k6pg0zfyyZq4A9b6ZfeGGzIytd4VB4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771277818,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:36:58.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:36:59'),
(21472, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":true,\"id\":\"A5EFF5C054A259723AFAF81FD54D3C6B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596412892_2457123524722190_7346304554392445644_n.enc?ccb=11-4&oh=01_Q5Aa3wGoXko5o4nMRfBpDeQNSpa8DMkKf7wMOGczeN1Ckhgcow&oe=69BAEC18&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jieyvGJgZj1KkmfZteydZfLEWejI3G\\/ssa7lfEDlnP4=\",\"fileLength\":\"17887\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"dDFt3r5ibBKYp4vmCcZPlSFXpkBmIC2FDoXDbdBff9A=\",\"fileEncSha256\":\"vec50vABLjuquYx\\/dwIvbupQ6TsX8E1d2j8HK5SZQ9c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596412892_2457123524722190_7346304554392445644_n.enc?ccb=11-4&oh=01_Q5Aa3wGoXko5o4nMRfBpDeQNSpa8DMkKf7wMOGczeN1Ckhgcow&oe=69BAEC18&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771278107\",\"waveform\":\"AFhfXlFZWV1CWFk5VEk\\/Nk5MT1U2OE1PWlZMWBs6QVpDUEtMSlYmFxEUGxdVV0ZdUkFbWFgyNFg1REVOUjBOVA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771278113,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:41:53.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:41:54'),
(21473, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:41:53.978Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:41:54'),
(21474, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609295189_2087315655140039_3589135110950174866_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOxMJQPP6kH74DYS1lVm2uUloJ7wGe0iKAzZ_gyuiR1g&oe=69A08D32&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:41:54.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:41:54'),
(21475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A5EFF5C054A259723AFAF81FD54D3C6B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771278114279,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:41:54.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:41:54'),
(21476, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A5EFF5C054A259723AFAF81FD54D3C6B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771278127589,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:07.590Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:42:08'),
(21477, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A5EFF5C054A259723AFAF81FD54D3C6B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771278129176,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:09.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:42:09'),
(21478, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:22.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:42:22'),
(21479, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:25.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:42:25'),
(21480, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:26.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:42:26'),
(21481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":false,\"id\":\"ACE735428CD83B65653261E11F3E7C06\"},\"pushName\":\"Viviane\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595506587_2034766103763035_4560368989255320570_n.enc?ccb=11-4&oh=01_Q5Aa3wFoDSs6KEmi7t-ykf4OBnV-S9w8os3RAFCO-ocwIQJ8cw&oe=69BB14B4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"DlU7M54uDWhjEb8BGRocJgXqcdY5q26ZgP\\/1DB1q87s=\",\"fileLength\":\"8294\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"MnwMTtB27FDDn8Gd7ahNIN6vaksSUB9b\\/ut01xS5B\\/I=\",\"fileEncSha256\":\"2C100ki8kJaH7wWDKJy5NxrYOXJqh5DtpZSMEloeThQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595506587_2034766103763035_4560368989255320570_n.enc?ccb=11-4&oh=01_Q5Aa3wFoDSs6KEmi7t-ykf4OBnV-S9w8os3RAFCO-ocwIQJ8cw&oe=69BB14B4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771278143\",\"waveform\":\"ACEhLEw\\/KTRJRkU4NylGRTk6OT9JRTwxKCYiOj9DQT5BQ0ZBR0FKWktPTlJPQzRDTVZTUj49NjUzMS8rNTMyNg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5+OIl\\/LJZdPZO+NcqTstkR2y93lsXPb5c\\/j5hpkzfNE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771278145,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:26.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:42:26'),
(21482, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:26.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:42:27'),
(21483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:42:26.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:42:27'),
(21484, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"171309132738561@lid\",\"fromMe\":false,\"id\":\"AC0DA7D408601F966CF749DBB5E7F9B8\"},\"pushName\":\"Augusto Rodrigues Macedo\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/596523946_2212725399534574_3652844919266425516_n.enc?ccb=11-4&oh=01_Q5Aa3wEsQ4jK8YLwnQZQ0Q-aRIgZZChdMvkug9DiDW_nfWiycg&oe=69BB1303&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Johnny boa noite, o playlist JTV mytv dos meus aplicativos Bob Player e XCLOUDTV vai vencer daqui a 5 dias e eu sei que estamos em época carnavalesca mas tem como você instalar uma outra playlist nos meus aplicativos de televisão e vídeos?\",\"fileSha256\":\"0MEBYedr4Jq1Y6Kbi4\\/OhTj2Dn8XEsIN57EFxwHrOJE=\",\"fileLength\":\"126886\",\"height\":900,\"width\":1600,\"mediaKey\":\"sCwDixvQU4eVenOzqcrwM2\\/+OnsntiG7n6bzxrOOhLo=\",\"fileEncSha256\":\"1SndtrF1DVA4uNX9Dx4E7vxXATV4JxipsmBLr+IjWJs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/596523946_2212725399534574_3652844919266425516_n.enc?ccb=11-4&oh=01_Q5Aa3wEsQ4jK8YLwnQZQ0Q-aRIgZZChdMvkug9DiDW_nfWiycg&oe=69BB1303&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771278416\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACMAPwMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAwQFAgEBAAMBAAAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAMbx9AoO3CqbylTOenyxdWlhU64dROaVJoxsqLst8WWqwBADAAAAP\\/\\/EACUQAAICAgEDAwUAAAAAAAAAAAECAAMREgQTITFBQlEQICJDUv\\/aAAgBAQABPwAWMfdN3+YrOTgGMblXYgYi2WN4nWYTqN\\/MDn1EpoFm2TiDgg++Lxrt26Yj8ewdrB38+YOIcbLYoicZrWIBHaHgXAZzPUyhsMYXTQY8yy4tlPGIzMxgBM4o0ztLLW0bziLKnOxgtMfUt4lNq0\\/rVs\\/Mc7OSMDMSzEtv\\/BgO2Zufpk\\/f\\/8QAHhEAAgEEAwEAAAAAAAAAAAAAAAECAxESIRMgQVH\\/2gAIAQIBAT8AjTurqJhH4cafhKKXhTlikmXFpk99f\\/\\/EABwRAAIDAAMBAAAAAAAAAAAAAAECAAMREiAhUf\\/aAAgBAwEBPwBrwpILTm32Gwj0mI5bPZbXzJImYI40ZK8Xr\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"lLfZcY7QNe5ffDHIOtXOYNmbysgu10Soz6Q0+zWRPxhkXQde3VIIZQ==\",\"scanLengths\":[12880,46234,20863,46909],\"midQualityFileSha256\":\"rw\\/6zWXIHevuefpfsosxCJOrbePEqrW+OarE8gSO0R0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"bQ4985oNp+BSLw==\",\"senderTimestamp\":\"1771020609\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"59rHuKXBDL0DkEWTdlG8r3rHoimBINem4LrSnIP\\/UE8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771278653,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:50:53.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:50:54'),
(21485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:50:53.690Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:50:54'),
(21486, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:50:53.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:50:54'),
(21487, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:50:53.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:50:57'),
(21488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:53:09.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:53:09'),
(21489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:54:05.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:54:06'),
(21490, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:08.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:55:08'),
(21491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:10.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:55:10'),
(21492, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"171309132738561@lid\",\"fromMe\":false,\"id\":\"AC43B432E8545248E954187781FCF057\"},\"pushName\":\"Augusto Rodrigues Macedo\",\"message\":{\"conversation\":\"Tanto os aplicativos XCLOUDTV quanto o Bob Player estão com o mesmo problema do áudio  muito baixo em todos os canais, principalmente na Globo Rio em HD e FHD H265, o áudio não acompanha o vídeo, sinal fora de sincronia e parado no SD, HD, FHD H265, 4K e UHD em todos os canais abertos e fechados, oscilação de sinal (avança e retrocede), travamento constante e cortes de sinal, o que pode ser isso e o que é que eu faço para sanar esse problema o mais rápido possível?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"bQ4985oNp+BSLw==\",\"senderTimestamp\":\"1771020609\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SFseYYhL0zdy+18+oKzEDDWsxkbgIhWOnGiE\\/XNoM+4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771278926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:26.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:55:26'),
(21493, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:26.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:55:27'),
(21494, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:27.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:55:27'),
(21495, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:26.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:55:27'),
(21496, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:55:51.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:55:52'),
(21497, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:56:00.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:56:00'),
(21498, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"171309132738561@lid\",\"fromMe\":false,\"id\":\"AC0A608A29524236669002735301C7E5\"},\"pushName\":\"Augusto Rodrigues Macedo\",\"message\":{\"extendedTextMessage\":{\"text\":\"Estou mandando mensagem\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"ACB7A5A9E739B96B472315DF773CA8F1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"NAO ME LIGA!\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"bQ4985oNp+BSLw==\",\"senderTimestamp\":\"1771020609\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YkA\\/uvP6dzWxBdUi5WpnqpjyHU8o67DnKKfRBNxQNB0=\"}},\"contextInfo\":{\"stanzaId\":\"ACB7A5A9E739B96B472315DF773CA8F1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"NAO ME LIGA!\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771278960,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:56:00.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:56:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:56:00.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:56:01'),
(21500, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wEGEE3S5WimbbR7pRdrFBihgojxDoAmFu5qc_8UNSDjlQ&oe=69A08967&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:56:00.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:56:01'),
(21501, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"171309132738561@lid\",\"fromMe\":false,\"id\":\"AC0A608A29524236669002735301C7E5\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:56:56.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:56:56'),
(21502, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJddtY0NwSehQWEHOJGy0bgcNZsn5KJplUaC-EKqpXxw&oe=69A0C1A7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:56:56.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:56:56'),
(21503, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:02.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:03'),
(21504, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:10.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:10'),
(21505, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:11.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:11'),
(21506, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:21.476Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:21'),
(21507, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:25.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:25'),
(21508, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"presences\":{\"171309132738561@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:30.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:30'),
(21509, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"171309132738561@lid\",\"fromMe\":false,\"id\":\"AC938F60BE136413C69F4B367E31C518\"},\"pushName\":\"Augusto Rodrigues Macedo\",\"message\":{\"conversation\":\"Vamos deixar pra quinta-feira depois do Carnaval combinado?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"bQ4985oNp+BSLw==\",\"senderTimestamp\":\"1771020609\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AyRfAETxJWsKUCtxaoukD6EEyL4GS4kWa5jK1HIoYOA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771279058,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:38.188Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 18:57:38'),
(21510, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:38.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:38'),
(21511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJddtY0NwSehQWEHOJGy0bgcNZsn5KJplUaC-EKqpXxw&oe=69A0C1A7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:38.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:39'),
(21512, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wHJddtY0NwSehQWEHOJGy0bgcNZsn5KJplUaC-EKqpXxw&oe=69A0C1A7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T18:57:38.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 18:57:39'),
(21513, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":true,\"id\":\"A54B63112E284257097A9AF4604092F6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vlww bj\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771279411,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:03:31.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 19:03:32'),
(21514, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"42155120816316@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:03:31.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:03:32'),
(21515, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/609295189_2087315655140039_3589135110950174866_n.jpg?ccb=11-4&oh=01_Q5Aa3wHOxMJQPP6kH74DYS1lVm2uUloJ7wGe0iKAzZ_gyuiR1g&oe=69A08D32&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:03:31.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:03:32'),
(21516, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A54B63112E284257097A9AF4604092F6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771279411877,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:03:31.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 19:03:32'),
(21517, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:42:11.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:42:11'),
(21518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180341532831791@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:45:52.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:45:53'),
(21519, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180341532831791@lid\",\"fromMe\":false,\"id\":\"AC2FF8E5432E1A9206390A9628B7E80D\"},\"pushName\":\"Everson Hunka\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/recibo.infinitepay.io\\/16c8eab9-3dfa-4ba3-b8d2-4efb36ffc938\",\"matchedText\":\"https:\\/\\/recibo.infinitepay.io\\/16c8eab9-3dfa-4ba3-b8d2-4efb36ffc938\",\"description\":\"Confira o comprovante da transação\",\"title\":\"Comprovante | InfinitePay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABOAE4DASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAAAAIDBAUGBwEI\\/8QAMBAAAgEDAwMCBAYCAwAAAAAAAQIDBAURAAYSEyEiFEEHMVSTCBUyUWFxIyQzgpH\\/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAv\\/EABYRAQEBAAAAAAAAAAAAAAAAAAABEf\\/aAAwDAQACEQMRAD8A+qdGsvuTfNm29V3Kkrmnesobabq8EMfN3gCzEsvsMdBgSxChnjXOXUFO3t3T3qtigG2L3RQu88bVNS9J00aJijghJ2f9Y49lPcg\\/LvoNVo1ndtboG4bZZbhRWi4pR3KIzc5Hp\\/8AVQoHjMoEpPmrKVChiMjlx1RXv4qWey2uqr6+gu0cVFTLVVyGKMS0aSMy04lQuGDTFcKoBK5BkEY76Df6NZ287sprTdqi3zUdXLJFQit6kRi4OzSCOOAZcESyOcRhgFchgrEqwGgikSWJJInV43AZWU5DA\\/Ig+40CtGjRoDRo0aCLU22hqvVepoqab1cIpqjqRK3WiHLEb5Hkvm\\/ie3k37nTsFNBAMQQxRjk7eCAd3bkx7e5buf3PfSPQ0n0sH2xo9DSfSwfbGghUe3LHRfl\\/orNbaf8ALup6LpUqJ6Xqf8nTwPDlk544z76cjsVojqKOeO10Cz0bSvTSLToGgaUkylDjKlyTyI\\/Vk5zqT6Gk+lg+2NRLXJZrvQRV1qe311FLnp1FMUljfBIOGXIOCCP7B0Ddu2xYLZU01RbrHa6SemiMEEkFJHG0UZYsUUgAqpZmOB2yxPvqypKaCjpYaWjhigpoEWOKKJAqRoowFUDsAAAABpHoaT6WD7Y0ehpPpYPtjQSNGo\\/oaT6WD7Y0ehpPpYPtjQSNGo\\/oaT6WD7Y0ehpPpYPtjQSNch\\/ErcJrdt3abxG5vDLuSkiqKe2SOlRUwlJeUScGViWAwACO+Plrr2qq\\/wC3rXuD8t\\/N6X1H5dWx3Cl\\/yMnTnjzwfxIzjJ7HIPuNBwXblRum4\\/Dn4iz7avtbbqWorUo7FT324qa2ilDBJ6dnYkxM2RHGjNyB4nILdRtf+HOlgsVuvu2OpeqWvtU8TVFnuVRDUig6qc1MU0ShXV\\/JiO2CD4gks+9l2Rtye6Xq4VVqhqZ7ysK3BahmliqBEAI+UTEpleIwQudNfDrY9n2BtyKz2KNjErM0lRMqdacli2ZGVV5EcuI7dgANByW6\\/FOhofjHca+e4wNa6Gpptsx0c1yWFBI8haqrTE3dekcR8uIVhnD4Ha+2y81P+IyqhptxXS7We5baa7wxz1nWp4zJVqo6CrhQnBRxIycE9znXUr5YrdfVoVutP1xRVcVdT+bLwmjOUfxIzg+xyD7jVNu\\/ZFtv6XurSMQXy42WexitLOwSCTkccOXE4Y8s4z7ZxoMf8faSGWjt1Na2rTvC9TJa7WIbhUxJEMlpJ3iikXKRoWYvwbBKcgV7axu59z1tvuzXX\\/fq9ifDyWC21BF0khq7jVEwo0siBQJemSPFuCuSSHZWKjr+1Nh2qyUm2nngSputjtq26CpywRPECSRIiSqO5HdwORBwSR20xuT4WbK3LuSO\\/Xzb9NV3ROGZWd1WTgfHqIGCyew8gcgAHIAGg2ujRo0BpE0azQvG5YK6lSUYq2D+xGCD\\/I76Xo0GbtNnuiWd6S615mkcwZkimkVvEIHw+QwyF+Q+Z5MSOfFbCGG6LMkk1QkmSOpGrBYxg8fEdMthgS5BYkMqqGIJOrTWZvm+9uWLctv2\\/dbj0LvcOn6aDoSN1Oo5RPJVKjLAjuR\\/PbQezWq81N5knkrBTUYqY5EihqZGyiEHJXiO7BSpQHhiTOCyZd61227QURilr2if0zouZfUhJWdiHy6hyFBUAFjkdj+nk1rVXGipJFjqqymhdshVklVScAE4BPtkf+jSKW7W6rx6W4Uk\\/L5dOZWz3cex\\/eOQf9G\\/Y6Cur7VXVF2jqErJkpw9NIyRVTxAlDJz8eLAqwaPK5GePcjHdFtsdbS3MTzXSrqIEleQJNOzluajOQoVQAR4rghRyPzYcNCCCAQQQe4I0aA0aNGgZrJ\\/TQiQQzTEuicIly3kwXP9DOSfYAnSaerjn6hAdFXGGkXiHHFW5DPt5Y\\/sEakaNBDguUE0xiVKpWEYkzJSyouCAQOTKBy7jxzn5jHY6yu5fhptzce7aC\\/XGKY1dJkvBHIFhqcrx\\/zJjy8VCn5clAVuSgAbbRpgrXttpuc9PcJ7dST1K8JIpp6YdVCnIp+oclKl3x8ipZvlk6i0e3dt0EMsdDZbTBFO0RkSCkjUSFGBjLBR34kggn9PzGNXmjQV1njoIxUyW+mam68oMgaB4S7rGiAhWAzhEQdu3j\\/B1MqKiOCLqPzK4JHBGcnAJ7BQSewP9\\/LTujQV92uZt9NBLFQ1teZZViEdIgZlJz5NyICqMYJJ7Z76sNGjRVsySR\\/\\/2Q==\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mODCNcUVOO0n4cpayTPYf9cApr181vrfaK2hP6TeOt8=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771281952,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:45:52.756Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 19:45:53'),
(21520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180341532831791@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379582419_271000795811507_6934215264591736970_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeuZlfOcmJKjvi2jr4rHmzIEWS8uYZoIv0-hOfmBPJNA&oe=69A0A2EC&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:45:53.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:45:53'),
(21521, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:45:53.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:45:54'),
(21522, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180341532831791@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/379582419_271000795811507_6934215264591736970_n.jpg?ccb=11-4&oh=01_Q5Aa3wHeuZlfOcmJKjvi2jr4rHmzIEWS8uYZoIv0-hOfmBPJNA&oe=69A0A2EC&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:45:52.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:45:54'),
(21523, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50335EF789111710F5EA7045A0341CD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771282516004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:16.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 19:55:16'),
(21524, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50335EF789111710F5EA7045A0341CD\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771282516935,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:16.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 19:55:17'),
(21525, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:31.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:55:32'),
(21526, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:34.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:55:34'),
(21527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGO0Iv28srHIxqjESLNtTJEUy7TRvnfddYJX4KIOcc76w&oe=69A09AA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:34.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:55:34'),
(21528, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A563A3A06B83E973995366139FBA6E8D\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Quanto era mesmo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lf+akVQbizkEG8RCs2Fk9IPYHUiAIBWHoj2+hHZadas=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771282534,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:34.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 19:55:35'),
(21529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGO0Iv28srHIxqjESLNtTJEUy7TRvnfddYJX4KIOcc76w&oe=69A09AA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T19:55:34.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 19:55:36'),
(21530, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:01:03.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:01:04'),
(21531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGO0Iv28srHIxqjESLNtTJEUy7TRvnfddYJX4KIOcc76w&oe=69A09AA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:01:04.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:01:04'),
(21532, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A549834838C262C851C65457D9CC319F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771282865098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:01:05.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:01:05'),
(21533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A549834838C262C851C65457D9CC319F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771282865979,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:01:05.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:01:06'),
(21534, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A549834838C262C851C65457D9CC319F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771282863,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:01:03.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:01:07'),
(21535, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:02:44.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:02:45'),
(21536, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5978B9B51BCC3BA4E2EDFEFBAF426EE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/598666959_1632532797749665_5112083255689397827_n.enc?ccb=11-4&oh=01_Q5Aa3wGZwvZVomzmoV9v2ufgQjCf2DkSis-KtMvAQuGxxQQLWQ&oe=69BAFAD2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"DYF7XmJXpDsnBxQnHRX9WOrzJR7xyMuVtn7d5NgAdLE=\",\"fileLength\":\"46048\",\"height\":1600,\"width\":354,\"mediaKey\":\"9vV4f1SHHjFAwiVMKkOw+cOe1PvtdgAy5mae5GMoAZI=\",\"fileEncSha256\":\"gvLr\\/UbFsIphNsXUroP9V0hHTGit+6pwjWWbMpMUUZ8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/598666959_1632532797749665_5112083255689397827_n.enc?ccb=11-4&oh=01_Q5Aa3wGZwvZVomzmoV9v2ufgQjCf2DkSis-KtMvAQuGxxQQLWQ&oe=69BAFAD2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771282963\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgADwMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAgMFAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADvbzQAAZCQf\\/\\/EAB8QAAICAgIDAQAAAAAAAAAAAAECABESIQMQIjFRYv\\/aAAgBAQABPwBudswFEWyNzixGQbZuERVq930ABcIgAUQOpNA9eAaI6W1XcxS7mQ+y4w\\/NxCT7Wp\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AD\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AD\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"oMcxmhHll91j3GyXj6BcdGISEUkFDfA2wB4BWdWpU14CPw6rh3PB3A==\",\"scanLengths\":[3329,20337,10436,11946],\"midQualityFileSha256\":\"oYyi1Jw2+z565W5V66NcmeRMmWI2mXPsUdF6+ALSGOg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771282964,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:02:44.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:02:45'),
(21537, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGO0Iv28srHIxqjESLNtTJEUy7TRvnfddYJX4KIOcc76w&oe=69A09AA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:02:45.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:02:45'),
(21538, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5978B9B51BCC3BA4E2EDFEFBAF426EE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771282965920,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:02:45.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:02:46'),
(21539, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5978B9B51BCC3BA4E2EDFEFBAF426EE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771282966803,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:02:46.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:02:47'),
(21540, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219155051638982@lid\",\"id\":\"A5AFC2DDE38D3D9295930B7C6946CF20\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771283560599,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:40.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:12:41'),
(21541, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:41'),
(21542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219155051638982@lid\",\"fromMe\":false,\"id\":\"AC798D4F94EC52E396E7FB83D84E985A\"},\"pushName\":\"Selma Hunka\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637960769_1267454445302925_1268861242142202752_n.enc?ccb=11-4&oh=01_Q5Aa3wE855Ww2SXjT9fSW6AMfYMM2lweKj11UdI2-1yfjbYXmQ&oe=69BB2D38&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Pagamento tv\",\"fileSha256\":\"inkfJk26OCu85y+IXAfayBmDW7LFM\\/AttnQ\\/UcxEVWA=\",\"fileLength\":\"101338\",\"height\":1280,\"width\":924,\"mediaKey\":\"y3VDWHV+zjExFwc1O2VLtfY1JqFMYLNHmva6Og0N9PA=\",\"fileEncSha256\":\"CAWtitERqkqmn23rnFBuPueHEqUk+snBm5ZJJb3IA2A=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637960769_1267454445302925_1268861242142202752_n.enc?ccb=11-4&oh=01_Q5Aa3wE855Ww2SXjT9fSW6AMfYMM2lweKj11UdI2-1yfjbYXmQ&oe=69BB2D38&_nc_sid=5e03e0&_nc_hot=1771283559\",\"mediaKeyTimestamp\":\"1771279195\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgANAMBIgACEQEDEQH\\/xAAuAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAUBAQEBAQAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAPqenza4b6dvP6FCAMxrctIRk0DDpdQBLyOqFzdtZw3TM3AokNS6BA0D\\/8QAJRAAAgIBAwQBBQAAAAAAAAAAAQIAEQMSICEQMTJRBBNBUmKB\\/9oACAEBAAE\\/AMuXOuZFRLQ9zLbniK7lqOMge9uf5H030U0XLzVmYs2titG9rBT3qBV93KHraygtyIFUdh1Ib7GHXB2js4IoQZOPE7iOduhru4BGBJHMp\\/YlZL8hCH9iXXeax04uWJY60IBGUX4yv1gUfjU0Dp\\/JU\\/\\/EABYRAQEBAAAAAAAAAAAAAAAAABEgMP\\/aAAgBAgEBPwAoxJ\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAABA\\/9oACAEDAQE\\/ACf\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"18bFzTolhJQvGrStLTEUMPd73UeGz\\/tTAGexAjxRNMk2NQHSf7cYPg==\",\"scanLengths\":[11095,48528,16949,24766],\"midQualityFileSha256\":\"p9wU90ta7C4pALzjYCD0uGBJiex8sqwvl4\\/5b\\/Q6OBk=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"epAuPtpJ+amC7vZC4DALolfdffTtr1GiSinFKyuRI1A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771283560,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:12:41'),
(21543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:41'),
(21544, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219155051638982@lid\",\"fromMe\":true,\"id\":\"A5E83A85560EFE5A01ED0816F06C5F88\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771283561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:12:42'),
(21545, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"presences\":{\"219155051638982@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:42'),
(21546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"pushName\":\"Selma Hunka\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.924Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:42'),
(21547, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0095F2FC8C883ED068F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 219155051638982\\nMensagem: \\\"Pagamento tv\\\"\\n\\nUse: \\/aprovar 219155051638982  (automático)\\nUse: \\/pago 219155051638982  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771283562,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:42.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:43'),
(21548, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06531D65FE93BB6980F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 219155051638982\\nMensagem: \\\"Pagamento tv\\\"\\n\\nUse: \\/aprovar 219155051638982  (automático)\\nUse: \\/pago 219155051638982  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771283561,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:42.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:43'),
(21549, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"pushName\":\"Selma Hunka\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:12:43'),
(21550, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219155051638982@lid\",\"id\":\"A5E83A85560EFE5A01ED0816F06C5F88\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771283561828,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:12:44'),
(21551, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:41.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:44'),
(21552, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:51.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:51'),
(21553, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219155051638982@lid\",\"fromMe\":false,\"id\":\"ACF87A201A74EB00800175862A740627\"},\"pushName\":\"Selma Hunka\",\"message\":{\"conversation\":\"Pagamento Everson Aparecido Hunka\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AV5GE56+HOuLXOTCT9iDWlbrrAM\\/+8IsV7VOksUxfgc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771283571,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:51.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:12:51'),
(21554, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"pushName\":\"Selma Hunka\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:51.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:52'),
(21555, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01AFB3A63C5A2ECDDA4\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 219155051638982\\nMensagem: \\\"Pagamento Everson Aparecido Hunka\\\"\\n\\nUse: \\/aprovar 219155051638982  (automático)\\nUse: \\/pago 219155051638982  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771283572,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:52.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:52'),
(21556, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:51.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:52'),
(21557, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05C5EE34315FD6346CB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 219155051638982\\nMensagem: \\\"Pagamento Everson Aparecido Hunka\\\"\\n\\nUse: \\/aprovar 219155051638982  (automático)\\nUse: \\/pago 219155051638982  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771283572,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:12:52.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:12:53'),
(21558, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"225558998814846@lid\",\"id\":\"B9E060A04538D125BF9D59222D5BBB21\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284202222,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:23:22.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:23:22'),
(21559, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"225558998814846@lid\",\"id\":\"3EB02D3F05014591B2D290\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284202196,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:23:22.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:23:22'),
(21560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"225558998814846@lid\",\"id\":\"C2538E05B133A5626499AA749806FAB3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284202213,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:23:22.213Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:23:23'),
(21561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"225558998814846@lid\",\"id\":\"3A898A6DD69747624B92\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284202228,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:23:22.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:23:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"225558998814846@lid\",\"id\":\"0A6042F37CC60B7AFD8CEE9CA4929276\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284202206,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:23:22.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:23:23'),
(21563, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219155051638982@lid\",\"id\":\"A5D14BAC888D9F9802DD590A36D1F45D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771284379305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:19.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:19'),
(21564, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:19.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:20'),
(21565, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219155051638982@lid\",\"fromMe\":true,\"id\":\"A5D14BAC888D9F9802DD590A36D1F45D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771284379,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:19.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:20'),
(21566, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:21.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:21'),
(21567, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219155051638982@lid\",\"fromMe\":true,\"id\":\"A5F00B698C76E3717288BD91CE51504C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEr12bKJY4jFPEyTFJ6gCAvBbEhb8TgKuFBfcLavaU4yA&oe=69BB017C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wEr12bKJY4jFPEyTFJ6gCAvBbEhb8TgKuFBfcLavaU4yA&oe=69BB017C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771284379997\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771284380,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:21.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:21'),
(21568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"pushName\":\"Selma Hunka\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:20.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:22'),
(21569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"pushName\":\"Selma Hunka\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:21.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:22'),
(21570, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219155051638982@lid\",\"id\":\"A5F00B698C76E3717288BD91CE51504C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771284381911,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:21.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:22'),
(21571, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219155051638982@lid\",\"id\":\"A5D14BAC888D9F9802DD590A36D1F45D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284397736,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:37.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:37'),
(21572, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"219155051638982@lid\",\"id\":\"A5F00B698C76E3717288BD91CE51504C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284397731,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:37.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:37'),
(21573, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"presences\":{\"219155051638982@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:42.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:42'),
(21574, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:43.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:44'),
(21575, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"219155051638982@lid\",\"fromMe\":false,\"id\":\"AC28EBD8D14E6CABED4F0253DFE55B2E\"},\"pushName\":\"Selma Hunka\",\"message\":{\"conversation\":\"🙏🙏🙏\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"s9oqXsEz9fkJFr\\/SMJUHEOweWLbrrQGKESdC8Ki\\/5ck=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771284403,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:43.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:26:44'),
(21576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"219155051638982@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:44.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:44'),
(21577, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"219155051638982@lid\",\"pushName\":\"Selma Hunka\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/513968902_2314188462370001_6159518207275326035_n.jpg?ccb=11-4&oh=01_Q5Aa3wEyEGrhIRlBC-W_7q6A8oRw8r69uvmxBHaaXWUqoajlBw&oe=69A0C072&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:26:44.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:26:45'),
(21578, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A549834838C262C851C65457D9CC319F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284610611,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:10.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:30:11'),
(21579, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5978B9B51BCC3BA4E2EDFEFBAF426EE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284610603,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:10.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:30:11'),
(21580, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:31.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:30:31'),
(21581, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:41.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:30:41'),
(21582, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:43.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:30:43'),
(21583, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A5F899991231EA164E687FC9CC96109B\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Deixa que vou pagar o veneno pro Valério, pode ser\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jaRbPVehQXvayJjJqhDc+0baqczXef0Db8IvFSwALow=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771284643,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:43.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:30:43'),
(21584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:43.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:30:44'),
(21585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:30:43.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:30:44'),
(21586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:44.050Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:44'),
(21587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:47'),
(21588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"AC883F29923ABE9AFA1FB159842CD23E\"},\"pushName\":\"Eduardo\",\"message\":{\"conversation\":\"Boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"p4gN5arIT4GpY9zY64PndVo13kKqQMevcY9Atpp5TLA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771284887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:34:47'),
(21589, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:47'),
(21590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:47'),
(21591, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:48'),
(21592, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:48'),
(21593, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":true,\"id\":\"A57306CA2BC82ECE3A6F4489B26E4C5F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771284887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:47.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:34:49'),
(21594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:48.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:49'),
(21595, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"175986435948678@lid\",\"id\":\"A57306CA2BC82ECE3A6F4489B26E4C5F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771284888098,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:48.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:34:49'),
(21596, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:50.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:51'),
(21597, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:53.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:53'),
(21598, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:59.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:59'),
(21599, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:59.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:34:59'),
(21600, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"AC706906F0B077BD4CF2BA1E414B9747\"},\"pushName\":\"Eduardo\",\"message\":{\"conversation\":\"A tv não está funcionando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mFjOq0U0OrLXMyt\\/LD8ni9gmAHuAkkvEEDUgho0rgpY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771284899,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:59.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:35:00'),
(21601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:34:59.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:35:00'),
(21602, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"presences\":{\"175986435948678@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:39:12.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:39:13'),
(21603, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:39:15.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:39:15'),
(21604, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"175986435948678@lid\",\"fromMe\":false,\"id\":\"ACF18F57E972DA07E316D9AEADAA1933\"},\"pushName\":\"Eduardo\",\"message\":{\"conversation\":\"Voltou\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WuUxljor50oECs2+WXwgzzJfd6fESx2H2RwvxCGC8mk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771285155,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:39:15.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 20:39:16'),
(21605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:39:15.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:39:16'),
(21606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"175986435948678@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/469694413_985031217003754_2345772200298340898_n.jpg?ccb=11-4&oh=01_Q5Aa3wGA8j_jPfkw1sJbpbNiht3C3U9pQ5FN6OlNTNIT4I8zTA&oe=69A0D375&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T20:39:15.503Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 20:39:16'),
(21607, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:00.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:00'),
(21608, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:01.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:01'),
(21609, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:01.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:01'),
(21610, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:01.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:01'),
(21611, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A1423EAC445FA1B24EC\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286840\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"EBoKHeBerJ6NL5GIw62odTdifkJcMtX3qOJ1wcd8ruI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771287121,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:02.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:02'),
(21612, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:02.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:02'),
(21613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:02.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:03'),
(21614, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A58377A885331E3F683B93F6793C3124\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771287123,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:03.487Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:03'),
(21615, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A58377A885331E3F683B93F6793C3124\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287123982,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:03.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:04'),
(21616, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A58377A885331E3F683B93F6793C3124\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771287123989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:03.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:04'),
(21617, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:02.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:04'),
(21618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:03.484Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:05'),
(21619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:03.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:05'),
(21620, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A6EF90FFBD49F0E5F3F\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Tudo bem?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286840\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AWlSnVDDhQilczHv22M1EYAC15Vh44bF+reWlOY9KCo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771287126,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:06.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:06'),
(21621, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:06.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:06'),
(21622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:06.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:07'),
(21623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:06.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:07'),
(21624, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:48.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:48'),
(21625, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:58.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:58'),
(21626, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:59.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:12:59'),
(21627, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A8E7F7547E3BA29046C\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Sou esposa do Elvis Júnior\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286840\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"H3iCF5i7hloQ7dqbaojuk8B9rM\\/m5cxr8XTv9VTQuD8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771287179,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:59.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:12:59'),
(21628, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:59.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:00'),
(21629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:59.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:00'),
(21630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:12:59.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:00'),
(21631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A9E48413D4D13F0453A\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Está dando erro pra abrir o aplicativo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286840\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k9Moi7+QlY0OBKzm9liuIzy4ekGdOoasj1whO49rLyo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771287187,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:07.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:13:07'),
(21632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:07.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:08'),
(21633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:08.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:08'),
(21634, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:07.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:08'),
(21635, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:31.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:31'),
(21636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:31.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:31');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21637, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3AFD57AA7BFAF715E1AC\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/30089300_1435922908254500_4466919027135487397_n.enc?ccb=11-4&oh=01_Q5Aa3wFeTCYSZ5j_EG20gLFdVP7RdsfsN9awdMyWJ8cAAEZfJQ&oe=69BB2B6A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"xqUZoUzluCAMsNEk7YW7R\\/ZjKWfNTjuJfmHaYZVFh3w=\",\"fileLength\":\"664552\",\"seconds\":4,\"mediaKey\":\"T6zzS3n14xvSDzkqpIF3HnVtonQwJgkbAtRSaH9XX4U=\",\"height\":848,\"width\":480,\"fileEncSha256\":\"QNMyn5F6lWhv6\\/YFMe48fn6QZ7KfH6Rv05dwZTmRoi4=\",\"directPath\":\"\\/v\\/t62.7161-24\\/30089300_1435922908254500_4466919027135487397_n.enc?ccb=11-4&oh=01_Q5Aa3wFeTCYSZ5j_EG20gLFdVP7RdsfsN9awdMyWJ8cAAEZfJQ&oe=69BB2B6A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771287209\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAECAwUE\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECBAMF\\/9oADAMBAAIQAxAAAADpqy+dvdeAm9pYzZuTxrYNQzhHORv9jtUuiFFVjg31c1Lx8+oiYJpnGXpVbBDaTiEq76M8XDMY3rFzkGuBkLYAx56ojNNIlyQCQDRQEkOkLpgJf\\/\\/EACERAQACAQMEAwAAAAAAAAAAAAEAAhIDEBEEITFREyBh\\/9oACAECAQE\\/ACqz42YMRNjg7wv+Tnk4SdRWpXsbFr+plqB4mep6mtazXvtkzJmTFX6Pk3\\/\\/xAAbEQACAwEBAQAAAAAAAAAAAAAAAQIQETFBEv\\/aAAgBAwEBPwDLwwXNE9O+EklScvD6kOcjW+3ptbb4xrEq\\/8QAKBAAAgIBAgQGAwEAAAAAAAAAAQIAAxESIQQxQVEQExQiMlJhcZEF\\/9oACAEBAAE\\/ADYuPkILjnOqG4ljhsAQ3D7CJxnRu\\/ONxygkBSZXxKOuc4\\/E8+v7CC6s7ahHfKnDQ2WfYzzLfsZrs7man7mL5jHAyZWloO6t\\/IP1E+QlThVwaw2es0EtsJpI5iHE2xKLm4ezWgBP5jf61\\/ZP5POa2ws2MntFO4ivlxtylJLM2BzjrgDKn8iMK2vBCEJ1EtVBfmtDo7GXAeZ7FwO0YGVfKAytQF14Mp1OxWuGm4Vlydv3Kq7HYYxnHUwltRxvp5mWhlK6h8uUHDvYDjHtGTK\\/kfAIdIw2IispJzvDY7DQDtEDqcq28GpVOevOAM7A6sgcswCxVYowyRvvKh7j38PRWHpPQ2T0Nk9DbPQ2T0Fk9DbE4OxekPD2DpMTExNM0zTMTEx45EyJmcVYyrscSvjE9q5yT1gYEZEzP\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"dxgW+LXgBB+wEnjKpL3499AwIR7sao1Pdl9US1965FhtOu3ZhWwmpZdY0KjKiKUxJVUIp1i1UXjLYbMISXEU6UEjrify\\/cl4J6FAvDLpZnyfadx8+q7BbzikcoEKlM5GlsnCGkteND1lPKd8Awc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286840\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"M6WFh4X\\/QC+9V5g95yTPF1rvN+mqTJrLi1IAV2QPlhE=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771287211,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:31.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:13:32'),
(21638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:31.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:32'),
(21639, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:32.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:33'),
(21640, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:42.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:42'),
(21641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:42.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:42'),
(21642, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3ADF19713E02835632A2\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Consegue me ajudar? Meu marido disse que está pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286840\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/UQlTZL7d0oxYl\\/qzfRof1z\\/B9\\/2\\/DAdCvApDPEL+yM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771287222,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:42.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:13:43'),
(21643, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:42.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:43'),
(21644, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A721B8510DA7CF3000\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 26117712945355\\nMensagem: \\\"Consegue me ajudar? Meu marido disse que está pago\\\"\\n\\nUse: \\/aprovar 26117712945355  (automático)\\nUse: \\/pago 26117712945355  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771287223,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:43.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:43'),
(21645, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0955BA3171D7F766E3A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 26117712945355\\nMensagem: \\\"Consegue me ajudar? Meu marido disse que está pago\\\"\\n\\nUse: \\/aprovar 26117712945355  (automático)\\nUse: \\/pago 26117712945355  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771287223,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:13:44.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:13:44'),
(21646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50D26D03436F864D4ECC35B6755FE26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287505468,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:25.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:26'),
(21647, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A50D26D03436F864D4ECC35B6755FE26\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287506461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:26.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:26'),
(21648, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:26.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:18:27'),
(21649, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A50D26D03436F864D4ECC35B6755FE26\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"A Carol vai pagar pra mari\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771287506,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:26.913Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:27'),
(21650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:27.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:18:27'),
(21651, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:32.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:18:32'),
(21652, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:32.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:18:32'),
(21653, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A544897F117844B37A85800090E9EFC6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Eu nao pedi veneno ela q vai pagar\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771287512,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:32.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:33'),
(21654, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A544897F117844B37A85800090E9EFC6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287512797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:32.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:33'),
(21655, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A544897F117844B37A85800090E9EFC6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287513375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:33.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:33'),
(21656, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A5ED49F88CD22D45A9F63B7ED31FB5CA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Fla p mari manda o pix p ela blz\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771287528,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:48.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:48'),
(21657, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:48.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:18:48'),
(21658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5ED49F88CD22D45A9F63B7ED31FB5CA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287528723,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:48.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:49'),
(21659, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:48.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:18:49'),
(21660, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228:70@lid\",\"id\":\"A5ED49F88CD22D45A9F63B7ED31FB5CA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287530355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:18:50.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:18:50'),
(21661, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:19:13.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:19:14'),
(21662, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A598369403379E9B253C0AE093099188\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/11240561_1285027293469333_6857201065624341980_n.enc?ccb=11-4&oh=01_Q5Aa3wFZk-0fmZ-vGf6dnh_JHH70vcHPBHTuUbYpjTl3RHdphg&oe=69BB0C34&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"FBob5+hd7S+iPmORojSoMUt4R8K75R3OXv1iSyqBdho=\",\"fileLength\":\"6065\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"BSbFOPd84sVuqn3OeUSlBNDOC7iHzcW7L+3vR5Lfzx0=\",\"fileEncSha256\":\"DQ+Uc\\/\\/xYNC8U7qAdJj928tlT58jJ8tjmcg2KotiWLI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/11240561_1285027293469333_6857201065624341980_n.enc?ccb=11-4&oh=01_Q5Aa3wFZk-0fmZ-vGf6dnh_JHH70vcHPBHTuUbYpjTl3RHdphg&oe=69BB0C34&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771287552\",\"waveform\":\"ADJJUE5OVFNJOFFXV08qRE46CStGU1JFVFpYUksrOWBgO0NHOFZaV1RWWk47LC5IU1JPQiAKBgc+Tk1RUU04IQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771287553,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:19:13.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:19:14'),
(21663, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A598369403379E9B253C0AE093099188\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771287555169,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:19:15.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:19:15'),
(21664, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:19:14.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:19:15'),
(21665, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A598369403379E9B253C0AE093099188\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771287610553,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:10.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:20:10'),
(21666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A598369403379E9B253C0AE093099188\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771287610817,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:10.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:20:11'),
(21667, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:16.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:20:16'),
(21668, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:21.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:20:22'),
(21669, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:21.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:20:22'),
(21670, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A53F5D5B4E426C65432\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"15996880285\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287607\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"LxiGjCaZZ3IKXZAAG0b2GddEKCi7+brRhyN+3Olvh80=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771287621,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:21.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:20:22'),
(21671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:20:22.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:20:23'),
(21672, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A515DA6201DA1D4048D08DA24D0EA52A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637787048_1391961729076889_6028682416604687896_n.enc?ccb=11-4&oh=01_Q5Aa3wEf7zqe79VZc8mx_mtt6igmbMD2OW5Ba9vA_valsxlYUA&oe=69BB206D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"8NLVQrhXm1P2BkZOOXwTMX3gH26SEmsagKwiQDIvjyI=\",\"fileLength\":\"23741\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"sD1MfwFsfJYHUL1QuDLAdiO8tjUOAWyfcFCpDI6\\/8xs=\",\"fileEncSha256\":\"y5Gmpbr+mU8GE1dj4mI1CaP6MN8NnGqGB1w2O1XGn48=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637787048_1391961729076889_6028682416604687896_n.enc?ccb=11-4&oh=01_Q5Aa3wEf7zqe79VZc8mx_mtt6igmbMD2OW5Ba9vA_valsxlYUA&oe=69BB206D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771288162\",\"waveform\":\"AD5aXWM2TDQoH0ReMFRKQElXRFNCW0ZZUF0uVSRTLVIrAA1ZQ2EcWGFSTEspWl5GXDhQTkktTFRZU0dNUQJPIQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771288171,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:31.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:29:31'),
(21673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:31.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:29:31'),
(21674, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:31.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:29:31'),
(21675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A515DA6201DA1D4048D08DA24D0EA52A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771288172396,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:32.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:29:32'),
(21676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A515DA6201DA1D4048D08DA24D0EA52A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771288179185,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:39.186Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:29:39'),
(21677, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A515DA6201DA1D4048D08DA24D0EA52A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771288180759,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:40.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:29:40'),
(21678, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:51.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:29:52'),
(21679, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:53.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:29:53'),
(21680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3AFC3F849A47F1CA3BC1\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Ta\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ifakgYr6pMWOdpc3EoN9GIXKyJsdebPxR2KriJaXxYk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771288193,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:53.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:29:53'),
(21681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:53.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:29:54'),
(21682, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:29:53.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:29:55'),
(21683, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:12.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:13'),
(21684, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:16.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:16'),
(21685, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:17.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:17'),
(21686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:17.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:17'),
(21687, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A960B7829BDCB6C4C2A\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637899650_1953120952259976_4395867558383288088_n.enc?ccb=11-4&oh=01_Q5Aa3wHhLygC5C2gc16IRo0AnsSLznUnaL5wek-NiknaSGczVg&oe=69BB1039&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QXGGY4p3em0e+y7w9Uf9SDhNx7E5TPuRPbaieVGvl7Y=\",\"fileLength\":\"8362\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"O6UwLfLOCO9vCsM+4DnE8uKTuuTvEiE1e8GbrLAmkNI=\",\"fileEncSha256\":\"wrWRUEubwxVCg02TkP55U88W4lJrClLoL9CRzIS0IXQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637899650_1953120952259976_4395867558383288088_n.enc?ccb=11-4&oh=01_Q5Aa3wHhLygC5C2gc16IRo0AnsSLznUnaL5wek-NiknaSGczVg&oe=69BB1039&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771288392\",\"streamingSidecar\":\"aboYgapP1LkaLA==\",\"waveform\":\"AQ4bLUVdYFxXTUM3Kx4oNkFCREpUXllUT0xJUFpiWE1HRUM5MCw5R09TWE5ERFJgWk1ANiwjGxMQDQoJCAcHBw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8SN3DFXgFOBLLCf6s3UwtphtdLstddJq5pmo49HVnW4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771288397,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:17.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:33:18'),
(21688, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:17.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:19'),
(21689, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:17.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:19'),
(21690, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:25.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:26'),
(21691, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:26.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:27'),
(21692, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:26.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:27'),
(21693, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A68BA9E280506FCB123\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/31851859_1410718004130734_8378109482593027935_n.enc?ccb=11-4&oh=01_Q5Aa3wGNSWIIHyEZmXCsdFd2NtI8NbNBZH9MXaAgSa-_i5kBpA&oe=69BB224F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"6Px3pqC8TzjQPCiU4TZoozL07pWfo5k0ZZK3j\\/L5kG8=\",\"fileLength\":\"17950\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"w\\/jq25zPBqpxhI+ozT3lXIxyJc8ZcXxOdmGeRUJiKQc=\",\"fileEncSha256\":\"HmN2z68VL4AetHxmI2AlETn8HJGdGH2BwDYnxgV7DhY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/31851859_1410718004130734_8378109482593027935_n.enc?ccb=11-4&oh=01_Q5Aa3wGNSWIIHyEZmXCsdFd2NtI8NbNBZH9MXaAgSa-_i5kBpA&oe=69BB224F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771288397\",\"streamingSidecar\":\"mwDobvtiXf4u7Q==\",\"waveform\":\"AAEDLFtFWGFaTUdZYWBQNCEyUWRkZEpHTU8\\/M0VZY1w1IRQQIGBNR0hNXUY+LxsRDQsVMVVNOzY\\/UmNkZFMtAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"suUO9X6eBx7WDV8dVDgvE4Bq4s5Cx2AxZyZBMfOoPoc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771288406,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:26.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:33:27'),
(21694, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:33:26.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:33:27'),
(21695, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:34:42.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:34:42'),
(21696, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A31D640EFAC0D1520B9\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/593471642_1255929203148126_8125450696079898825_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ-JeClOABAqsn6C5sYaV_PjOpIqppIMj67V6GuwjGUw&oe=69BB24E5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"5d6Z\\/Ai5ddvcjtafyQODJGq\\/3R6QHkjbkmq8lVrkox4=\",\"fileLength\":\"3545502\",\"seconds\":22,\"mediaKey\":\"UTmeBtMy\\/0c1v2tnQ6IdnQz\\/Rb\\/6MCT5A4nowOBVYak=\",\"height\":848,\"width\":480,\"fileEncSha256\":\"y7kNUjRZ1EoEa6cgtn+sd1TvHTyEihl7N1\\/nel+NZh4=\",\"directPath\":\"\\/v\\/t62.7161-24\\/593471642_1255929203148126_8125450696079898825_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ-JeClOABAqsn6C5sYaV_PjOpIqppIMj67V6GuwjGUw&oe=69BB24E5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771288481\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAwEBAQEAAAAAAAAAAAAAAAQFAwIBBv\\/EABgBAQEBAQEAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACvGsRsbmcOno5IDa6cOquc91QOenp1PyyP7W5qTxZ9SLtS1VMdIxUXky3kVPF00V5jexB8r6M+bEbnUFJbO+GxNnvoXNrXHaWcdHTLeYcenQBngBsAZgH\\/xAAbEQADAQEAAwAAAAAAAAAAAAAAAREQAgMxUf\\/aAAgBAgEBPwBi5Q+DycxCysfT+jr95SlKUuRvOVVtyn\\/\\/xAAbEQADAQADAQAAAAAAAAAAAAAAAREQAhIgUf\\/aAAgBAwEBPwBFOxwdYy5EL6shCEJrxuev\\/8QAMBAAAQMCBAQEBAcAAAAAAAAAAQACAwQRBRIhMRQyQVEVIlJxEBMjMyRCQ2FjkaH\\/2gAIAQEAAT8Am5VMfM5G4J90b3WvxoR5SqHlcpuVS8zkyEviIDbknQrhJHOyBmrd1LTvuS1ug3RaVlKpBZhVD9tylaXNsE+ikLyhh04Nw+yFDUtJIlNzvqjh1Qb+ffdeES90MIm7qLDpY22sFTQyRtLSPgUUUEXBoJKiqI5NjY32KurqonbBHndsvFYl4nEqupMsuaOQtHa6Es+v1j\\/akq6kgNZILW1ummQPDs+vuoq+MMAc7UBeIQepYpUgh0L9G91khP6hTaTMA5riQjROvzOTqbJzSEe6MH8qFK+1w8m64aUfnKNPKN5FjH3SgqG3CsVgsZbfJYJwPyzr0VG0cLHcdEWt7BYuPpsDRYk9FiAdLJ+6FO8Kjs2naCRdZh3Cxi5LMv8Aie4CIixzFUZ\\/DMv2V1iQJMeXe6mpw55NyuFHqKFKejyjSv8AWU+lcd3XTqF5d0TYZmiwciyoHVPjmcQSL2X\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"LXI2ib\\/q73G\\/ncs0TsNm7Ei\\/Pzj6QCPLRB9FkK0aFxJpQarYeUtVxL\\/cV3Snk4fFTUm3oqMf1pzqBG09dJHNlPVmGQj4Gx0Cb2bYkTHzDLbFsk7qyTETdBRzLr5ErrmIplWXCKhkaLiA9oTs9+mY4P5xgZyPop2KYR75D4SPKfoulFeiRJcovTpcHRev+\\/SYOE8pZpdewAVphhWSyF551HeUKmr3zwJlHZsUFKsq\\/rrIeKfb5HPnxnc3lQt4Ghxgd9f0WSy0WD8ggj00XBNDWW0CKFMCKJ9JuDi3MFGzQ2xg7yg+V7PfrWU2MJ5Hf2AVSbvBl1bxNIVVJI3iglj2OnMAfazFhkiwAe6qGXmXNjv4mSCsyzaBSgz3AS6uFr+InutOA1fugUMLn0pJI+ISIVHXxy44\\/dS8aULH3sJZ9FLaeTAuAuMRvixyH3GpYsZrB\\/6Lsb2Ch8YhycsRxTm5seWEQAPIshguSFxHAuT4OfABnnpHTFZ3\\/pfho\\/HAZdSOfsmj5uxbn5PVq0pzYSKc4mvCdcBfec7UMwTiMg45e2515xdI8C4qeyCTVJiK0qh0RTVd3wBR282hYZLppXSJrehPCLeowXoZmbytGkkep5y5uwZsD8jykGNTDEjepcwd4jMEiU6UXhHmMIw2G3cS6PPubozTySa6HMsHT21QTbPM7LfJTLhVc0wJ7ogKZbZkUUM7x\\/q4PhztmzF7cyZQ9yg0F1RnWA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wPmjMeFwmFbT+RusjnKBPoeWlOFaZSMBA7aytJHW8ds=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771288482,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:34:42.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:34:43'),
(21697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:34:42.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:34:43'),
(21698, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:34:42.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:34:43'),
(21699, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:35.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:36:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21700, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":false,\"id\":\"ACEC729238AD8654C155E8CDBE3A3C09\"},\"pushName\":\"Gabriel W\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637897431_4420757831579916_8107912306812065591_n.enc?ccb=11-4&oh=01_Q5Aa3wH8rMC6O5JpQ3Efn_fGH_xDJpzQTpna1nAPTyY3AMrM0w&oe=69BB3732&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"cBhnKwXVdSCAMf7uBFN3o8Om7JS1pqT6Mde7l5dz4iQ=\",\"fileLength\":\"50981\",\"height\":1600,\"width\":406,\"mediaKey\":\"DdcafBM8d3fJkm70QOkyekV9H3qgIPASbBqeh8hPTo0=\",\"fileEncSha256\":\"yB3FU2WwiIQhIhhDqyakBPdPgjEkOuxP7KWq0LpuuKY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637897431_4420757831579916_8107912306812065591_n.enc?ccb=11-4&oh=01_Q5Aa3wH8rMC6O5JpQ3Efn_fGH_xDJpzQTpna1nAPTyY3AMrM0w&oe=69BB3732&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771288595\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEIAEAMBIgACEQEDEQH\\/xAAqAAEBAQEBAAAAAAAAAAAAAAAAAQIDBgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9D0sKgqDLFM6D\\/\\/EAB4QAQABBAMBAQAAAAAAAAAAAAEAAhAREiIxQQME\\/9oACAEBAAE\\/AKH9PJPkdyjZOQDcqFQsAdTBnNwNtYuJszZih7bWl8t\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAgEBPwA\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAIP\\/aAAgBAwEBPwA\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"NVpEam9WCE\\/09W+y1KcRPQTL9h1pkGH\\/+VZSLCFFZa7zrafSB6GzUQ==\",\"scanLengths\":[3813,23034,11486,12648],\"midQualityFileSha256\":\"A\\/+GkAv0QeWwzLq\\/BmkSSPMpUskONRvNx3\\/ngfFuoN0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VvGxq7wRbWjwojvRuEO4+SRBQso+EVrxVosbB2ggCak=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771288596,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:36.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:36:37'),
(21701, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:36.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:36:37'),
(21702, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:36.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:36:37'),
(21703, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:36.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:36:38'),
(21704, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A576E51C91CFBCCE53F2AD2D2DE07308\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771288598127,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:38.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:36:38'),
(21705, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":true,\"id\":\"A576E51C91CFBCCE53F2AD2D2DE07308\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771288597,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:37.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:36:39'),
(21706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:37.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:36:39'),
(21707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:38.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:36:40'),
(21708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A576E51C91CFBCCE53F2AD2D2DE07308\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771288614585,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:36:54.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:36:55'),
(21709, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"presences\":{\"108237655404548@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:41:34.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:41:35'),
(21710, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:41:38.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:41:38'),
(21711, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":false,\"id\":\"ACAA1186C8DFCEE4F26C7B4672B16E90\"},\"pushName\":\"Gabriel W\",\"message\":{\"conversation\":\"Me fala qndo tiver ativo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"8Mzpli4ZaPuyzgshtDEXP6sQlp3P7rqvaTaudEcPCdI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771288898,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:41:38.446Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:41:38'),
(21712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:41:38.768Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:41:39'),
(21713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:41:38.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:41:39'),
(21714, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":true,\"id\":\"A5A4C52A42E91AF6FC5F15F34ECC30A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771289359,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:19.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:20'),
(21715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:19.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:20'),
(21716, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A5A4C52A42E91AF6FC5F15F34ECC30A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289360239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:20.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:21'),
(21717, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:20.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:21'),
(21718, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:22.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:22'),
(21719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":true,\"id\":\"A59F0809B2F04BB9DBC508DF881F23F8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wF5BIzFEJliArflwm5dLhB5h9OP2-Pwm2fhWxM2CZFt6g&oe=69BB39BC&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wF5BIzFEJliArflwm5dLhB5h9OP2-Pwm2fhWxM2CZFt6g&oe=69BB39BC&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771289361285\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771289362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:22.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:22'),
(21720, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"108237655404548@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:23.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:23'),
(21721, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"108237655404548@lid\",\"fromMe\":true,\"id\":\"A5E00DE8B91BE8ED6516CE7723311988\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637966126_1153260056760526_1634761179171206732_n.enc?ccb=11-4&oh=01_Q5Aa3wE1vUysvDD066rBHixcrXzus2jLYl2lxKBe2bIKBwOEAw&oe=69BB38FD&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"98dAOg4mfGWqqQLoBf1xwTeCcIkT1ARAbOm+O4QWKls=\",\"fileEncSha256\":\"EvvxIwwnl6CSfH9uXuM28OKNhnloJZ+H8khmKwaodrM=\",\"mediaKey\":\"KpjRVRQbz2Boy0MN8Z4gE+b1y1Yj5GRtf5wCYwtrD4I=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/637966126_1153260056760526_1634761179171206732_n.enc?ccb=11-4&oh=01_Q5Aa3wE1vUysvDD066rBHixcrXzus2jLYl2lxKBe2bIKBwOEAw&oe=69BB38FD&_nc_sid=5e03e0\",\"fileLength\":\"53112\",\"mediaKeyTimestamp\":\"1771249232\",\"isAnimated\":false,\"stickerSentTs\":\"1771289362313\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771289362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:23.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:23'),
(21722, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A5E00DE8B91BE8ED6516CE7723311988\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289363403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:23.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:24'),
(21723, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A59F0809B2F04BB9DBC508DF881F23F8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289362691,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:22.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:24'),
(21724, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:22.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:25'),
(21725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"108237655404548@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/594435056_1396406954966504_9101036588784824645_n.jpg?ccb=11-4&oh=01_Q5Aa3wHmhR31ef7Q1HcnDS8Js2CiUo5hI43a1F4DZfSNxPR0Iw&oe=69A0DF5A&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:23.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:25'),
(21726, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A511EB377B9E134B5AEE8E6ED86C082D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596617405_1757078175455194_8670366580121589439_n.enc?ccb=11-4&oh=01_Q5Aa3wG7R4Lo3Z9f8PWunOG7fPUmJjdDgmjMMS8gWebOsj1Rlw&oe=69BB2BBC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"BoZPv2zU9yD5ppUY9Tah1RWOkfwSH4kyEy++wg5PHX4=\",\"fileLength\":\"6547\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"i51ggHOFjchkxzmZaxJBFAoTQ1GGq+mJd0Zy6p3okfk=\",\"fileEncSha256\":\"sfFPQbtv615azDgOmpP6FLY5TcIVQx4lGgZ7+tYOcKc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596617405_1757078175455194_8670366580121589439_n.enc?ccb=11-4&oh=01_Q5Aa3wG7R4Lo3Z9f8PWunOG7fPUmJjdDgmjMMS8gWebOsj1Rlw&oe=69BB2BBC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771289373\",\"waveform\":\"AAIAAAAILFxcWFFHPjc7Q0JCTE1NLg8XP0kwKD9PT0YmRjEwQEEkTEwwIS1DPkI4IyNBPz5ERTQYBgEBJTs9Qg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771289374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:34.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:35'),
(21727, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:34.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:35'),
(21728, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:35.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:35'),
(21729, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A52A4A940DE849F1A7752CE2F0B764F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Xcloud\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771289376,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:36.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:36'),
(21730, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:36.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:36'),
(21731, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:36.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:49:37'),
(21732, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A511EB377B9E134B5AEE8E6ED86C082D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289377303,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:37.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:37'),
(21733, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A52A4A940DE849F1A7752CE2F0B764F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289377401,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:49:37.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:49:37'),
(21734, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:35.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:50:36'),
(21735, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A51C271A08D01FD20098B2ED7FCBA330\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ou\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771289435,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:35.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:36'),
(21736, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:36.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:50:37'),
(21737, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:37.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:50:37'),
(21738, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A5C77479677952B560DD72E3F266F72E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637771790_1644656870215886_3204742298397404308_n.enc?ccb=11-4&oh=01_Q5Aa3wHU9ASxeEext1kmjWXX_3u2I77UcDnYYdjFOGAuGma1HQ&oe=69BB35C6&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"hRrUuyUp0qGDw13sg0lMrMFARJn7bRWeaW\\/ZmT\\/8PUM=\",\"mediaKey\":\"68WKmJ7qsNNurElTY+wMQulsjwMGFN6RD8W5blESbQE=\",\"mimetype\":\"image\\/webp\",\"height\":512,\"width\":512,\"directPath\":\"\\/v\\/t62.15575-24\\/637771790_1644656870215886_3204742298397404308_n.enc?ccb=11-4&oh=01_Q5Aa3wHU9ASxeEext1kmjWXX_3u2I77UcDnYYdjFOGAuGma1HQ&oe=69BB35C6&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1771289436\",\"isAnimated\":false,\"stickerSentTs\":\"1771289436665\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771289437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:37.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:37'),
(21739, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:37.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:50:38'),
(21740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A51C271A08D01FD20098B2ED7FCBA330\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289437882,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:37.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:38'),
(21741, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5C77479677952B560DD72E3F266F72E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289439291,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:39.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:39'),
(21742, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A523D550C4F5F413DB51AC3F979009A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Se nao achar\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A52A4A940DE849F1A7752CE2F0B764F2\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Xcloud\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"A52A4A940DE849F1A7752CE2F0B764F2\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Xcloud\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771289441,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:41.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:41'),
(21743, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:41.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:50:41'),
(21744, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:41.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 21:50:42'),
(21745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A523D550C4F5F413DB51AC3F979009A7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771289442545,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:42.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:42'),
(21746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A5E00DE8B91BE8ED6516CE7723311988\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289447746,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:47.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:47'),
(21747, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A5A4C52A42E91AF6FC5F15F34ECC30A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289447759,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:47.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:47'),
(21748, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"108237655404548@lid\",\"id\":\"A59F0809B2F04BB9DBC508DF881F23F8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289447750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:47.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:48'),
(21749, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A52A4A940DE849F1A7752CE2F0B764F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289449334,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:49.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:49'),
(21750, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A51C271A08D01FD20098B2ED7FCBA330\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289449337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:49.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:50'),
(21751, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A511EB377B9E134B5AEE8E6ED86C082D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771289450065,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:50.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:50'),
(21752, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A523D550C4F5F413DB51AC3F979009A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289449346,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:49.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:50'),
(21753, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A511EB377B9E134B5AEE8E6ED86C082D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289449330,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:49.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:52'),
(21754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5C77479677952B560DD72E3F266F72E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771289449339,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T21:50:49.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 21:50:52'),
(21755, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:47.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:47'),
(21756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A27D968CE9EABEBF27D\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/596939191_1237379854479665_5441054621219515250_n.enc?ccb=11-4&oh=01_Q5Aa3wHLmYyhsxyZ_nFL56eguBHtLxO9KNE5X3z_Pxk5klNEng&oe=69BB4AC6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"3TyLmjAeQ8sx5KUy9GzvRovEkpYHw4yv3+37f+AK\\/5k=\",\"fileLength\":\"92997\",\"seconds\":0,\"mediaKey\":\"vSu8jJVEcYBCFpdJgmboDE144zEr7GCCiE3mjEMdpYo=\",\"height\":848,\"width\":480,\"fileEncSha256\":\"ESUmnZgBY6ZE376ENp0hn5nF4Ei8mF0J40nctQSvnsc=\",\"directPath\":\"\\/v\\/t62.7161-24\\/596939191_1237379854479665_5441054621219515250_n.enc?ccb=11-4&oh=01_Q5Aa3wHLmYyhsxyZ_nFL56eguBHtLxO9KNE5X3z_Pxk5klNEng&oe=69BB4AC6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771290466\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQBAgUDBv\\/EABkBAAMBAQEAAAAAAAAAAAAAAAABAgQDBf\\/aAAwDAQACEAMQAAAA1iEE3+WYsG0eeqzfjAlnoDCEemzdHMkVvz76udFmuOjlQ6RaqSSt\\/M0svzNikTz0c+1lr9ZbTvxqblBz6ZZo8\\/SnDtQThyrFZaELHYa7AJlQDNXBnSABUC3\\/AP\\/EACARAAIBBAEFAAAAAAAAAAAAAAABAhESIVEDECIwMWH\\/2gAIAQIBAT8AFktZay2WhnEu3AvvVnHKkfZe9kZ7ZfHfgRRPDFGp\\/8QAHhEAAgICAgMAAAAAAAAAAAAAAAECERBRITESEyD\\/2gAIAQMBAT8AKLRaLQifY8okuSlolHSPF6+U7y0dDl6+Ef\\/EAC0QAAEEAQIFAgQHAAAAAAAAAAEAAgMRBBIhBSIxQVEUMhAVQmETIDNTcYKR\\/9oACAEBAAE\\/APhalkLapGcho83SEpA3IRy9Ehadwn8QY00G2os2N45jpKJ2KyZXtqnEIzv7vKyJ5Q7leSEZ5z9RRlnP1FXKe5VSHuVGHNcCbTvaVl9QpAXUBuSosWW+aFxWRC+Nluh0DyrVq1aeeUrLPME95aWluxtepyP3HKWSaUU9xcPutBvoiwtF0v6lObQuiFJ7Css84\\/hTGqReSOUlQxyzuprv9U2PNE9rSb1eEMKYxF\\/4nTstbx1JRc4jclS+wrK\\/UU42C1NA6lRzOjNsJCdlSvI1OJrojnTEVqKMlmyCtf2Ke3U2lLhhxsHdHAYRuV8vhHZHAh8L0EPhegh8IYEPhfL4fH5Cj8S4NFlRTtlutqVq1aJWXnTRTFjWikeKTBwGlqi4lIZAHtAb3Km4tGC5uklHKfZ0khpX\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"streamingSidecar\":\"lc6KCR9IKLQRvUEsBBGJp+P5t2s=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NDNvsHJHpfvlthlKgi+Nyptm4tRB+hn5iOa087w6GvM=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771290467,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:47.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:07:47'),
(21757, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:47.275Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:47'),
(21758, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:47.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:48'),
(21759, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:48.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:49'),
(21760, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:48.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:49'),
(21761, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A3A1DFAD65F68320571\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/QSHc5HaZ6WH3H4V3UgAg7Wis4p7jBuj23M9lENcsC4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771290468,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:48.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:07:49'),
(21762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:48.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:50'),
(21763, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:07:47.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:07:50'),
(21764, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A35B22BE1AAB6F0F4D6\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOUwqF1KcIKGHvYtffOGgGcTVWZ2RH7WyJN8H9ahRpLoVpS1b6Vt3q0UEPEK7V4l1iC6gzO5JY3NwbNTPakN5-aZxTmHgekAMdhtZcfVA?ccb=9-4&oh=01_Q5Aa3wHcpKAM-L63ZkT-IkA-iWLk11tuyrjzNAzdnyKoTJrcNQ&oe=69BB44EC&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"4Entkaz3KTmio1bGKTl\\/CbTbecrcdzw2+Duzgo3W1Zc=\",\"fileLength\":\"117495\",\"height\":1600,\"width\":900,\"mediaKey\":\"xdHmis7xKGAzvcrCYwPZ+8tS2olHoFG5nuuEyA+dFxo=\",\"fileEncSha256\":\"y+tOQt+wWchVBCHS\\/Q9xo\\/7hK0O3jF1Gkm7sSOJR6q0=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOUwqF1KcIKGHvYtffOGgGcTVWZ2RH7WyJN8H9ahRpLoVpS1b6Vt3q0UEPEK7V4l1iC6gzO5JY3NwbNTPakN5-aZxTmHgekAMdhtZcfVA?ccb=9-4&oh=01_Q5Aa3wHcpKAM-L63ZkT-IkA-iWLk11tuyrjzNAzdnyKoTJrcNQ&oe=69BB44EC&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771290545\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAgMBAAAAAAAAAAAAAAAAAAIDBAUB\\/8QAGQEAAwEBAQAAAAAAAAAAAAAAAQIDAAQF\\/9oADAMBAAIQAxAAAACqnY6tBy6\\/TGimolJ5jW0qYQPOpaR49TRaBOiEqFmnNXq61ZK5Q5C08VwhavDf7VKDXm087moynFNsR7ZwRjnYCJSqu11IqAGsY450eBJ1ohtW6B3UDFgCP\\/\\/EACERAAICAgIBBQAAAAAAAAAAAAABAhEDEiExBBMgMkFR\\/9oACAECAQE\\/AMGOM5VIliguiEILtEljrhGVJvg8f5HJbSN\\/1EqbITcHaHnbPXkPLJmz9n3Qot9FlmzLZsz\\/xAAeEQADAQACAgMAAAAAAAAAAAAAAQIREiEDMSBBYf\\/aAAgBAwEBPwBvCqf0c3o730Qyl0UN7WETK9sX4NjlMfili8Uo4r4Pc6Kan2YYYhLOzij\\/xAApEAABBAAFAwMFAQAAAAAAAAABAAIDEQQSITFBBRRREBMVICQyQlJh\\/9oACAEBAAE\\/ALTn6FFlkrIPKbCXGgntLDqrTdUDSJTae8tuk3DMLtSaTcI2zuQo42M4UsbHb7lHDgHKQLQY0mtAR55Uh1NCkSsPXc67IBgddaeEC2rqlJzTSo2l16E0nsJbWU6f4pQTeYURsnknVFRaYhGYN1G6OITH5hqVhZ48Pmzgm\\/COOw5s+2QQpMdh9ftwViJGySFzWBo8D0DgybXZPkZX5J0gvQps+Vdxa94Hgoyj+bT7cbDaXaSZiK25TunPeeEOl+XL4tv9L41nlDp0fJQ6fEhgYfC7OIfr6n6XysY4Bx1P0zYqKJ2V7qPhO6jhwPytfJwVynYqJrWuLgA7ZYrFML7jdZCZ1CQOzE2PC7yNd4xHHN4WMLZ5A8DVPica2XtmuFJHnABOybAG\\/shE3kr\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"mN+IV3+3OU0otQ==\",\"firstScanLength\":11057,\"scansSidecar\":\"mN+IV3+3OU0otWp1NZru8OTHhkvF7rpc7N3HAmWKRUj698aDErX2PQ==\",\"scanLengths\":[11057,44563,19476,42397],\"midQualityFileSha256\":\"z4X3nf2EEpmDCZ37poFiaAVBW4c557nWHej5rLHK5ik=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KJWs5EDLFkbsIVa5A7\\/WcpY9a0Bv0aF0gWCJ6BL18bY=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771290545,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:09:05.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:09:06');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:09:05.979Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:09:06'),
(21766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:09:06.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:09:07'),
(21767, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:09:06.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:09:07'),
(21768, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A5158BA5A18DCC498778B400F9FB72A6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771290626,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:26.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:26'),
(21769, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5158BA5A18DCC498778B400F9FB72A6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771290626800,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:26.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:27'),
(21770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:26.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:10:27'),
(21771, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:26.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:10:27'),
(21772, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5158BA5A18DCC498778B400F9FB72A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771290626789,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:26.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:27'),
(21773, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:30.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:10:31'),
(21774, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A5A9B20CDF7B22E22CBDAE8F64DC79F5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Primeiro campo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771290630,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:30.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:31'),
(21775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:31.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:10:31'),
(21776, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5A9B20CDF7B22E22CBDAE8F64DC79F5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771290631397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:31.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:32'),
(21777, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5A9B20CDF7B22E22CBDAE8F64DC79F5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771290632902,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:32.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:33'),
(21778, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:33.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:10:33'),
(21779, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A5F0D9099E70DC59A96C3D4EFC4F78D9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"zeus10\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771290633,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:33.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:33'),
(21780, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5F0D9099E70DC59A96C3D4EFC4F78D9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771290633770,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:33.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:34'),
(21781, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5F0D9099E70DC59A96C3D4EFC4F78D9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771290633779,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:33.779Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:10:34'),
(21782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:10:33.465Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:10:35'),
(21783, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:11:07.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:11:07'),
(21784, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:11:08.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:11:09'),
(21785, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:11:09.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:11:09'),
(21786, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A2B247E3F3917C4A893\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Coloquei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UVbuGHn9V4dUFdi7nEgfyww\\/tHJsVAN6sCXl2C8aC5k=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771290668,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:11:08.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:11:10'),
(21787, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:11:09.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:11:10'),
(21788, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5D1ACD93D5FBC3F65C884D9F7B16E00\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771290751058,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:12:31.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:12:31'),
(21789, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:12:31.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:12:31'),
(21790, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A5D1ACD93D5FBC3F65C884D9F7B16E00\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Dados da Lista\\n\\n*Usuário:* d6qv4t51\\n*Senha:* e4b3z5vx\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771290751,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:12:31.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:12:31'),
(21791, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5D1ACD93D5FBC3F65C884D9F7B16E00\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771290751880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:12:31.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:12:32'),
(21792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:12:31.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:12:33'),
(21793, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5D1ACD93D5FBC3F65C884D9F7B16E00\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771291672563,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:27:52.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:27:53'),
(21794, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:02.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:03'),
(21795, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:04'),
(21796, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:04'),
(21797, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A66A1A47846A3B5DC7D\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Deu certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fHVTlFObhj7ADDm4XA8rYN2AYHB4FZg+4KPsNSeYyNQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771291684,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:04'),
(21798, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:04'),
(21799, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A50BA73F2123D2AF6D1297E1C54F9590\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Deu certo?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771291684,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.810Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:05'),
(21800, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:05.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:05'),
(21801, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A50BA73F2123D2AF6D1297E1C54F9590\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771291685442,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:05.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:06'),
(21802, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:06.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:06'),
(21803, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:06.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:07'),
(21804, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A50BA73F2123D2AF6D1297E1C54F9590\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771291685431,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:05.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:07'),
(21805, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"presences\":{\"26117712945355@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:08'),
(21806, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:04.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:08'),
(21807, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:06.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:08'),
(21808, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A29C7A401B8F98CC5DA\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"conversation\":\"Obrigada\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gREEkmgn3+Q1ucKAP6MHSPKPaeZhWqHLWnRbkXSSs1Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771291686,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:06.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:08'),
(21809, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":true,\"id\":\"A5C1BB46BB2F42C00145F384BD73EE1D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/589104198_1723158111993445_5921292517993822650_n.enc?ccb=11-4&oh=01_Q5Aa3wGi3yjXLzCMsP4Ht3B31OOPTb6weqCZEuu2xTvHlgQqqQ&oe=69BB2E1A&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"0YL3+Wdf8BKqB39UelsU3s7XgN1nkcv33g2fYY0js7k=\",\"fileEncSha256\":\"4BEG1hSEJzZl1l1ngYeW1EiJDAEtSaTusxe\\/50TaETE=\",\"mediaKey\":\"PLgqmnCoYfxHk8T80xkJ0RW3i+q7DmIHYHkUUvkUF+o=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/589104198_1723158111993445_5921292517993822650_n.enc?ccb=11-4&oh=01_Q5Aa3wGi3yjXLzCMsP4Ht3B31OOPTb6weqCZEuu2xTvHlgQqqQ&oe=69BB2E1A&_nc_sid=5e03e0\",\"fileLength\":\"38132\",\"mediaKeyTimestamp\":\"1771291690\",\"isAnimated\":false,\"stickerSentTs\":\"1771291690297\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771291691,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:11.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:11'),
(21810, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:11.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:11'),
(21811, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:11.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:12'),
(21812, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5C1BB46BB2F42C00145F384BD73EE1D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771291691823,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:11.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:12'),
(21813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"26117712945355@lid\",\"id\":\"A5C1BB46BB2F42C00145F384BD73EE1D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771291691829,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:11.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:12'),
(21814, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"3A4B733536465DFE1EFD\"},\"pushName\":\"Rebeca Barros ✨\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771287985\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"26117712945355@lid\",\"fromMe\":false,\"id\":\"A5C1BB46BB2F42C00145F384BD73EE1D\"},\"text\":\"🙏\",\"senderTimestampMs\":\"1771291694983\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771291695,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:15.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:28:15'),
(21815, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"26117712945355@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:15.857Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:16'),
(21816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"26117712945355@lid\",\"pushName\":\"Rebeca Barros ✨\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:28:16.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:28:16'),
(21817, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:35:27.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:35:27'),
(21818, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wErUm72Or1O7FAGDBNC0OuFE_vfVvEzOjiaQj_T1ps4sg&oe=69A0C454&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:35:27.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:35:27'),
(21819, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A59CB3A417EC7AC6EDCAFD109C2F28D1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Olá José Tenório, tudo bem? Esperamos que sim!\\n\\nSua fatura vencerá em breve. Fique atento para evitar imprevistos!\\n\\nVencimento: 15\\/08\\/2025\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":301365},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":301365},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771292127,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:35:27.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:35:30'),
(21820, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A544897F117844B37A85800090E9EFC6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771292550541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:30.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:42:31'),
(21821, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A50D26D03436F864D4ECC35B6755FE26\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771292550548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:30.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:42:31'),
(21822, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A5ED49F88CD22D45A9F63B7ED31FB5CA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771292550529,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:30.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:42:31'),
(21823, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A50D121F7B661389B76023AFF82934F7\"},\"pushName\":\"Erick\",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2},\"reactionMessage\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A544897F117844B37A85800090E9EFC6\"},\"text\":\"😂\",\"senderTimestampMs\":\"1771292556935\"}},\"messageType\":\"reactionMessage\",\"messageTimestamp\":1771292557,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:37.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:42:37'),
(21824, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:37.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:42:38'),
(21825, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:37.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:42:38'),
(21826, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:42:59.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:42:59'),
(21827, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:03.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:04'),
(21828, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:06.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:06'),
(21829, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:07.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:08'),
(21830, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A55E71BF4F209920ED3AA3550690B9CE\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ela já mandou sábado\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5ED49F88CD22D45A9F63B7ED31FB5CA\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Fla p mari manda o pix p ela blz\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o86KB09jMM8zM+B9JlgKq4ofEpdqYWkotn5leQRbhtw=\"}},\"contextInfo\":{\"stanzaId\":\"A5ED49F88CD22D45A9F63B7ED31FB5CA\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Fla p mari manda o pix p ela blz\"},\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771292587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:07.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:43:08'),
(21831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:08.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:08'),
(21832, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:08.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:09'),
(21833, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:14.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:15'),
(21834, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BEEFC978FDA1256A65\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, carol!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ {valor}\\r\\n📅 *Vencimento:* {data_vencimento}\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* {pix_tipo}\\r\\n📌 *Chave:* {pix_chave}\\r\\n👤 *Beneficiário:* {pix_beneficiario}\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771292596,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:16.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:16'),
(21835, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB0BEEFC978FDA1256A65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771292596759,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:16.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:43:16'),
(21836, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:24.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:24'),
(21837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:27.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:28'),
(21838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A586637E6E88271BEA70A8D64BDA4660\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual pix mando ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"i6PeocsnA2r6P1oC8cjIXdO3MzuAzpN\\/V6UVPKUNT4s=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771292607,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:27.974Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:43:28'),
(21839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:28.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:28'),
(21840, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB050D7C2B29B9F1BF328\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 32465758515228\\nMensagem: \\\"Qual pix mando ?\\\"\\n\\nUse: \\/aprovar 32465758515228  (automático)\\nUse: \\/pago 32465758515228  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771292609,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:29.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:29'),
(21841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:28.293Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21842, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0978B6568019ACD01D8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 32465758515228\\nMensagem: \\\"Qual pix mando ?\\\"\\n\\nUse: \\/aprovar 32465758515228  (automático)\\nUse: \\/pago 32465758515228  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771292608,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:28.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:29'),
(21843, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:47.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:47'),
(21844, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB0BEEFC978FDA1256A65\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771292629024,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:49.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:43:49'),
(21845, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"3EB066B366A891B2838BC3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771292629027,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:49.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:43:49'),
(21846, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:49.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:50'),
(21847, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:50.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:50'),
(21848, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wFBNlVSOlMZ5iGpvXU3C7kqecPn_0sEgRKe2DLrn-IZ5g&oe=69A0D2E5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:50.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:51'),
(21849, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A52E01F7F9A38B58115973DEE5D81778\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"137,62\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lYDuU8r5Wp1O4OEjRFRJGh\\/7vWuiJZ9xay4kHZRmDPQ=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771292629,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:49.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:43:51'),
(21850, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:58.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:58'),
(21851, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:58.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:58'),
(21852, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:43:59.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:43:59'),
(21853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8H35LrslQWTqHRc2zdX3zpW5rV5uwKZJC-i6358SoSA&oe=69A0DDF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:44:02.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:44:02'),
(21854, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8H35LrslQWTqHRc2zdX3zpW5rV5uwKZJC-i6358SoSA&oe=69A0DDF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:44:03.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:44:03'),
(21855, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":false,\"id\":\"A50690FECFA211762BED4FFC0CBF877B\"},\"pushName\":\"carolla\",\"message\":{\"conversation\":\"\\/pix\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"GNrs1zMjpSwayw==\",\"senderTimestamp\":\"1771289512\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pCFj840i5XH3r\\/WVk3wPLf1FInlQe9G\\/7xBov7e2fNE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771292643,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:44:03.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 22:44:04'),
(21856, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:44:03.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:44:04'),
(21857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8H35LrslQWTqHRc2zdX3zpW5rV5uwKZJC-i6358SoSA&oe=69A0DDF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:44:03.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:44:04'),
(21858, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"pushName\":\"carolla\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8H35LrslQWTqHRc2zdX3zpW5rV5uwKZJC-i6358SoSA&oe=69A0DDF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T22:44:03.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 22:44:04'),
(21859, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T23:04:11.084Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 23:04:11'),
(21860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A569EE9BD8711B3CDE43EC7CEAFC9606\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771297161872,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T23:59:21.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 23:59:23'),
(21861, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A569EE9BD8711B3CDE43EC7CEAFC9606\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/635043541_1393280772007193_6020315122628423710_n.enc?ccb=11-4&oh=01_Q5Aa3wFHOPp-DJ4qpDJOqobffFBHse61fJELgtMIW4q_fYQhlQ&oe=69BB503E&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"I2SVus4s4V5FSPoM8IEDe7gj5TwjEVLhzQH78Dl7KXQ=\",\"fileEncSha256\":\"\\/T+qtku5TpNxCdlm2rPBVP+Tfcw9iwAWfD\\/k2Q1LcxU=\",\"mediaKey\":\"NUkIBmqff\\/ye13GAfhE5fTslQ4\\/2XhOPyDxkV+U\\/XsA=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/635043541_1393280772007193_6020315122628423710_n.enc?ccb=11-4&oh=01_Q5Aa3wFHOPp-DJ4qpDJOqobffFBHse61fJELgtMIW4q_fYQhlQ&oe=69BB503E&_nc_sid=5e03e0\",\"fileLength\":\"494046\",\"mediaKeyTimestamp\":\"1771081151\",\"firstFrameLength\":493650,\"firstFrameSidecar\":\"3f0bFuqpUE81Ow==\",\"isAnimated\":true,\"contextInfo\":{\"stanzaId\":\"A50690FECFA211762BED4FFC0CBF877B\",\"participant\":\"21981793632295@lid\",\"quotedMessage\":{\"conversation\":\"\\/pix\"}},\"stickerSentTs\":\"1771297160110\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"stanzaId\":\"A50690FECFA211762BED4FFC0CBF877B\",\"participant\":\"21981793632295@lid\",\"quotedMessage\":{\"conversation\":\"\\/pix\"}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771297162,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T23:59:23.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-16 23:59:23'),
(21862, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T23:59:23.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 23:59:23'),
(21863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wG8H35LrslQWTqHRc2zdX3zpW5rV5uwKZJC-i6358SoSA&oe=69A0DDF2&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-16T23:59:23.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-16 23:59:24'),
(21864, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T07:41:14.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 07:41:14'),
(21865, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5C1A2C16CB9185378C73B44C6FAC30F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771327883714,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:23.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 08:31:24'),
(21866, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A556827EAC2960AF6D0F17AA633B26BD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771327883704,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:23.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 08:31:24'),
(21867, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:26.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 08:31:26'),
(21868, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A580EC0AC95FB92AAF4A49D9B6C903F6\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Lg\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7f1yr06191rOa5gcsS+sKy0Z4duQfIrae2HDWcgT+nE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771327886,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:26.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 08:31:26'),
(21869, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5BB0C6E368396B357103354A46216F4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771327887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:27.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 08:31:27'),
(21870, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_8oALJkU5CNGDNijHjcqnyEsfnmG0FEOzAAS96sg2w&oe=69A15CA4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:27.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 08:31:27'),
(21871, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:27.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 08:31:28'),
(21872, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5BB0C6E368396B357103354A46216F4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771327887698,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:27.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 08:31:28'),
(21873, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_8oALJkU5CNGDNijHjcqnyEsfnmG0FEOzAAS96sg2w&oe=69A15CA4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:26.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 08:31:28'),
(21874, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wFP_8oALJkU5CNGDNijHjcqnyEsfnmG0FEOzAAS96sg2w&oe=69A15CA4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T08:31:26.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 08:31:29'),
(21875, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05015E4E2F3F72D0AE0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, carol!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ 100,00\\r\\n📅 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* Email\\r\\n📌 *Chave:* contato@voidplay.com.br\\r\\n👤 *Beneficiário:* VoidPlay Principal\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771329617,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:00:17.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:00:18'),
(21876, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB05015E4E2F3F72D0AE0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771329618102,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:00:18.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:00:18'),
(21877, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E3B0F22A47AC49C0F1\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, livia!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ 40,00\\r\\n📅 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* Email\\r\\n📌 *Chave:* contato@voidplay.com.br\\r\\n👤 *Beneficiário:* VoidPlay Principal\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771329624,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:00:24.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:00:24'),
(21878, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"id\":\"3EB0E3B0F22A47AC49C0F1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771329624994,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:00:24.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:00:25'),
(21879, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"87484876771482@lid\",\"id\":\"3EB0E3B0F22A47AC49C0F1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771331217376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:26:57.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:26:57'),
(21880, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:42:11.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:42:11'),
(21881, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":false,\"id\":\"AC47E8B29514298B658F5F69C6142160\"},\"pushName\":\"Stelia Saude\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637899278_909597121819362_7700858693379836313_n.enc?ccb=11-4&oh=01_Q5Aa3wE6eL5paV1qZ7pXQb-rkrhbqrENpRzThH0k6cvYtojWPw&oe=69BBC17B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"cQiPNtVGWVksjuvRuQ7jkvTKWzCIevm3SfS\\/TxiA4ek=\",\"fileLength\":\"67737\",\"height\":1600,\"width\":450,\"mediaKey\":\"08kYiQD1TzJdhWPzEAfajwfzzJ1\\/BBxLc82RPKv4vus=\",\"fileEncSha256\":\"05noBB5hzN1BLQC1XvzQFCAE6gYKHu\\/fr\\/HCJRyxjZw=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637899278_909597121819362_7700858693379836313_n.enc?ccb=11-4&oh=01_Q5Aa3wE6eL5paV1qZ7pXQb-rkrhbqrENpRzThH0k6cvYtojWPw&oe=69BBC17B&_nc_sid=5e03e0&_nc_hot=1771332130\",\"mediaKeyTimestamp\":\"1771332130\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADsAEAMBIgACEQEDEQH\\/xAApAAEBAQEAAAAAAAAAAAAAAAAAAgEGAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAADo6DQGCLD\\/xAAhEAABAwQBBQAAAAAAAAAAAAABAAIhAxESIhAgMkJRYf\\/aAAgBAQABPwAOrtyDyJ7U3K2xlBlUE7wpv86QQeHMqeLkAYlDME7hC8SFgz0gAF\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAECAQE\\/AB\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAg\\/9oACAEDAQE\\/AB\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"krph\\/jCkVPsLojTUDebOrC6aLyfGzj\\/d53KYvh6+U+648UR3WvFVTg==\",\"scanLengths\":[4619,31939,14484,16695],\"midQualityFileSha256\":\"0OrMM3+eeFEu1cbMYJvFGE94xx8Ky2\\/vqenFN79QObY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZSUkqMSCPS9aawq7VuHkDt8cti7aRrhISX5kUhBYC38=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771332130,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:42:11.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:42:11'),
(21882, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:42:11.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:42:12'),
(21883, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:42:11.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:42:12'),
(21884, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:49.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:46:49'),
(21885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C9579E480276164E40\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"46.502.413\\/0001-75\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771332409,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:49.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:46:49'),
(21886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv7ZSNEbqYhtotkP8VErTokDCNA7G0-l6fLN8-gmDm2g&oe=69A17BA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:49.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:46:49'),
(21887, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB098D221CD6AFE6D9718\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"cnpj negao\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771332411,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:51.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:46:51'),
(21888, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:51.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:46:51'),
(21889, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv7ZSNEbqYhtotkP8VErTokDCNA7G0-l6fLN8-gmDm2g&oe=69A17BA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:52.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:46:52'),
(21890, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB098D221CD6AFE6D9718\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771332412139,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:52.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:46:52'),
(21891, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C9579E480276164E40\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771332411758,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:51.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:46:52'),
(21892, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08B39548D0D46F5192C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"carol pagou a mari la já blz\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771332418,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:58.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:46:58'),
(21893, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:58.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:46:58'),
(21894, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv7ZSNEbqYhtotkP8VErTokDCNA7G0-l6fLN8-gmDm2g&oe=69A17BA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:58.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:46:59'),
(21895, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB08B39548D0D46F5192C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771332418901,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:46:58.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:46:59'),
(21896, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"554792602871@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:47:03.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:47:03'),
(21897, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C13874CB6F4A324295\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQM_HQnY_SkxJo6-zWPzlk9v3H7CbFEDsr7U_ICoYYPcmCZGHINtb5nOEPO8bO8dz6essAkbqOLkzYTY8uDcMI2ofMxU1q48dCsegVKfrA?ccb=9-4&oh=01_Q5Aa3wEYkRd1HYYusnDhhODE5-EUFqpUHORiChkpOPoW9WkseA&oe=69BBC302&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"6J1AjHOxWgWKU3kkuJ0lR9bSoyaORCIlzVmE\\/92MH5g=\",\"fileLength\":\"190134\",\"height\":900,\"width\":1600,\"mediaKey\":\"ZsV67wCeM+5BD+2Zh65fLh8wpPNTVgwec+NlbL5zLm4=\",\"fileEncSha256\":\"Anfw70iYJ6PXm0WSB4z0e5OdpY21pH06VvunSdd69TQ=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQM_HQnY_SkxJo6-zWPzlk9v3H7CbFEDsr7U_ICoYYPcmCZGHINtb5nOEPO8bO8dz6essAkbqOLkzYTY8uDcMI2ofMxU1q48dCsegVKfrA?ccb=9-4&oh=01_Q5Aa3wEYkRd1HYYusnDhhODE5-EUFqpUHORiChkpOPoW9WkseA&oe=69BBC302&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771332420\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD\\/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD\\/wAARCAA4AGQDASIAAhEBAxEB\\/8QAHgAAAgICAwEBAAAAAAAAAAAAAAgEBgUJAQMHAgr\\/xABFEAACAQIEBAMEBQgGCwAAAAABAgMEEQAFBhIHCBMhCSIxFBUyQRZTYZPRGSMlRFFxhdMmM0KRwdRIVGJmc4GGkpTD5P\\/EABwBAAEFAQEBAAAAAAAAAAAAAAUBAgMEBgAHCP\\/EADgRAAECAwQGBwUJAAAAAAAAAAECAwAEEQUSITEGQVFhkdETFDKBobHwIiNCUsEHFkNicYLT4vH\\/2gAMAwEAAhEDEQA\\/AFHqNMad9j09X5lxC0Xlcmo6SSqmj95V1ZJl0asQiVi0tLL05H2ArGpZgCDIEv2Z3lq8Oqh5huDmR8WDxdXT5zl6tBl3uM1XT6FTJDfqe0x7r9Pd8Ate3e18JrV1cLANDIHeSCOKQGljjC7VX4dpPe692sGbuT3ZsbauSTiDlPDrk10BnGb0VXUxVVbmdGq05iXaxrquTc7SuiItoiLlh3YAdzg5Mzz6RfCvBPKAJlZKXbK3RRKRiaq5x5h+R9oja\\/MEO3p\\/RY\\/53HLeD\\/SO5kfmEuzdyTpc3J+f67hpM+5rNF6eVKjNdNakgRZjFtQ5fJ1W2hrALOSVAIG5ewJAJvjAVPOpwzzGnkoaXL9YUMz+ZaiGloTIlmBsod2U9gR3U9ifnYimm0pkkAqHAcoHqtXR5CrinQDsqoHxheh4P9IEMY5hLKxBK\\/Rc2JHp+u\\/acfP5H2hP+kEO3+6x\\/wA7hv8ALON+Q0mWwCSHUOav7HTVzTTpRLO0dRGsqXSPYDtWRVOxbDaLk\\/EYmbcx+kcsrHo6rL8+jlp7pIsK0cilj37sGIuPSwPbuCLjAV\\/TSUllqQ5MpF0kHAZgkfLuPCNjLaJuzbaXGWFEKAIxOIIBB7WwjjCmv4QFJI7SScwm52JJY6XJJP8A5uAeD\\/SBDGOYSysQSv0XNiR6frv2n+\\/DbZbzPaCrt6e6c4jEME0zyzQxW2xRNIx8jE3IU2sPU\\/IYxmcc3Whsggo5830ZqWl9vhE8MUkVKJumQCGeLrb47hgRvAv8sGrItKZt5su2aoOJBpgE50rTLZFOesNuzXA1NtlCiK0JVllthZYPCTqKZ6iSm5lamJ6uMQ1DJpx1M0YZWCvau8w3IjWPa6qfUDHTF4QtPCVMXMMVMbb4yNMMCj3HmW1d2PYd8MNLz1cKYvi0rqc\\/up6b+djM0XN9w8zDKqjNqfTWfdKnrqXL2R0p0Yy1CzMhuZdoUCB7kkWuvyuQU6rbQUEdGancnlFRySkm2y6sUSMzVXOF5pfChyGkq3qk4uUbh1h3RvkFTtZ0ZGaQ2zEEs5Rt1yQOq+0KdhWJUeEhkFQZHfjJTCSQC7jTkt93lu1vb7XJBJ7W87WA8oDD5lzn8NsrjeWp03nDqkohPQqMvnO4ruuBHUElbH4h5b9r37YxkfPfwollWFdKaoDNf1p6a3p\\/xsXWrI0kuC4ySBuSYGqfsQrJUsVO9Q+sLFWeEpkuXTdCt5kFLkbht04kdhci1mq2PyPe+DDlZxnlLqeLK9S0MUsVNm2XQ10KSgB1SW7qGAJFwGF7EjBgAqem2lFClYjcOUFBZ8qsXgnA7zzjR9UV+l6vJpFkqK2DMkEQj6dEzpKFgjQq8j1R2jerntGf2jaCI02Xct1NpSs5CtBDWNLqGbL48zzKVjkkMMk0ZWtrDvfqgqsYF7sLHuBexIOqyorJ6uQS1EzyOsaRAu5YhUUKouT6BVAA9AAALAY3CciOhNMcReTTQWRaryz26liqc0q0TryRWkXMKlQbxsp9JG7Xt3w566AL+VYq2jKuTsm7LsgFShQXuz30Bw7oqOo9O8BsmcwalyrjBl7iV021VLQwsJAqOy2ZQbhZI2I+QdD6EYwMVDyuyTgR1PFRHHcHdlw\\/ww2z8qnBV\\/i0Xf8AiVX\\/ADsdJ5SuCBO76Em47gjM6wf+7EV6UpkfXfGEGhtqhdQiXp+4njdHlHlmYV\\/CelXLqQ0OvZxLlWXxU7w0tHIZI1oYGQAkf1giMRfb2BJt5SMVWr1BwAmbdKOIN\\/ntWhH+OGTreXThdmLxSVmmDI0NPBSoTXVItFDGsUa9pe9kRRc9za5ubnEJ+WLg4ZBE+lF3sCwX3jVXIFrm3V9Bcf3jHl0\\/opOzM0682hm6pSiK3q0Jrj7Oe2Pp2x9JLEkpBiXmOnvpQlJu3btQADdqqt3ZUDDhHgGQV\\/ASaaqek+n5Boa1ZUm9jCmP2aTqW2m+7Zu2\\/wC1a\\/a+MdqXTvCWggkj1NkvGyliQwpIKqjpIwCkT9IMWUfDEkm0H0VWt2BwytJyy8JaCR5qTSrRtJFJC36QqiCkiMjCxl+asw+y\\/bviG\\/KfwVk+PRt\\/4jV\\/zsej6DXNHZRbM57Kiqo6IYUoM6lNDUbDq2RktK52UtadQ\\/IX7oTT3lL1ak4UJwy15wn1TFyr9+pJxW\\/5HLsWbLV5dKHQWbtT1HEiXLPe2W9bqDL2mE3Rrels7bSm3rbr979O3zwxtbylcCoUWSXQxZWcKxGaVa7R6liTOBYAEn7AbXPbEzL+V\\/gnNkD5fl2mlmyrMpKeu\\/N5pVSJK0aSCGRX6x7bZ5LbTYhr97C2ntG30qZKrPWtLopdKqUBrrxMUJBMgtxLVqJUpgn2gmlSN2I84UjOqTlry6SE5zl\\/F6iergjqoVlp8vi6sLi6SICBdGHcMOx9RjERycqUlQqRy8W0c3sQctFu2HFfk64Ev8WiL\\/xOs\\/n4jVPJ1y90sElbV6NSCGBDLJK+b1iLGqi5YsZ7AAC9\\/lgF969LhlOCnr8sadFmfZgRQyT9d13+SPjL\\/df0U0r7jarbLvcFD7Gavb1zB0xs6mzy79tt23te9u2DGWz7JqDThoNPZVCYaLK6GKipoy7OUiiuiLuYljYKBckk\\/MnBiopa3DfcNVHP9dcY5wNBZDAoiuFc6aq90aFczqFlqEdKR6YCngXY4QEkRIC\\/lRRZiNw7E2YXZzd23OeHAtfLyj6EGXVNPBLvzQs08DSqYxmsu9QA62YrcBr2BIJDWsdKstU8wUOIxtAA2RqvooHewF+yj1+dz6kk7rPDVnjp+UfQs0xIT9LrfaT395z\\/ALP3HF+awQKbYqM9qGYipNaDp9fP8ke2zqbMnlXdbpb7XqTa+2ot626kd93TbqEVJrQdPr5\\/kj22dTZk8q7rdLfa9SbX21FvW3Ujvu6bdTIe9aH65vu2\\/DHHvWg+uP3bfhihfVsHAcot1iDBSazUx+059krgBepsyiVNx\\/NbrXqTa+2e3rbqR+vTbqd0WX5sauCtrMypXkgheK0VIyK2\\/pkmxkY\\/EhI7+hA72uZHvag+uP3bfhg975f9efu2\\/DCX1egI6sFTFnDK4o66jiYhthkpGcKbPYkCRbgEx3Ha+1vTcCkKel1ixk9mz7Jo77+n1Mplfbfq7L2qRe26nv6X6cttvUXpTfe+X\\/Xn7tvwxx73y\\/68\\/dt+GOClD\\/BHRClkzLLVlrs\\/zfLDRw75VdadqVYUUTMWkkaVxYR9ME2WxR29GCpXqTiHwwyyIwUOstF0kZbcUiz6CNb\\/ALbD59hi0z5jTVDxJS1KrICzBpI22qdjAE+l+5Ha4vjvgqlUP7VmFLIS5KdMbLJ8gbsbn7e37hh6VN\\/iJJO4gfQw01JqIqZ4scN1+LiJo8fv1JD+OMfnfFDhdmeVVWXy8TNHJ14mRXTUVI7xsR2dVlDRllNmG5WW4FwR2x6D7ZSf61D\\/AN4x01VUHitRZjSRS70O6UdRdoYbxYMvcrcA37Eg2NrFSWT8J4\\/1hwVdx9eMeca1oq2pzt3pqSeVQCCyRlhfe3btgxbZSGqJ2UggyuQQfUXwYjhkfn2z7Q4p4KCErlFM6wRs0tDUe0NPvhikBltO6o1nF1ATa5kRgGRlRyeB3OVlnBHgVkPBNMhps6GXl3qcwps6r8uaSKpnapkjV4oFlgljMxiLozqTGxXerA4MGCSvedvH1ugQX3ATQ04ReqbxR8vySWgpqHgTmVXHR0xWOWXX1VOvn2syy9enLSupJG5w1trBWsRedN4r+YU2Ys44K0FXQvGhSKDUEiyIzJGSGkelAO0mQGyAEjsSAGcwYi6BvUId1p3WfKJ1d4r9PSEiDgpSVlpXjBg1RKLqoUh\\/PQL5W3ED+15TcDyk91V4qVLRtXsvC7Jq9YaiVKZabUdWjTRo0SK6mTLgCJN8kilumQkbB1VtokMGE6skgYnDx9bqQ7rThxivz+KjE81LmFXwQaoql85Wm1jUQwrtaVVR4TS7GOxySfMDdCfMihKzN4kuVZizVeecFtQyVssYjmbL+KGbUMBAItshRSqGwFyDc97nzEYMGJOrtE5QgmXR8XlFuPi6AenL2D\\/1X\\/8AHjpk8XaoFSjLy\\/xCAI4dDqgl2e67SG9ksAAHuNpvde4sQxgxIJZo6of1hzbHyvi0wVFUm3l4USyFI951j0wbE7QzGkAsNx+I27m+Jw8UjMdTZVuy7l9jkklmkhSng170qrekJk3dJKZZWTaGsV7Fl233FQTBh5lWadnzh3TLOBMV+i8WWakpIaao4CCWWNFV3+lbeZgLE+elZvUf2mY\\/tJ9cGDBiQSbPy+JhOmWNcf\\/Z\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"viewOnce\":false}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771332423,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:47:03.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:47:03'),
(21898, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"554792602871@s.whatsapp.net\",\"pushName\":\"Erick Irmão Do Jhow Souza\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv7ZSNEbqYhtotkP8VErTokDCNA7G0-l6fLN8-gmDm2g&oe=69A17BA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:47:03.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:47:04'),
(21899, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0C13874CB6F4A324295\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771332423442,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:47:03.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:47:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21900, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A5966EFC8FBDB5EAD06BA8FD524D70EC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771332841939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:01.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:54:02'),
(21901, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A5966EFC8FBDB5EAD06BA8FD524D70EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771332842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:02.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:54:02'),
(21902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:02.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:03'),
(21903, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:02.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:03'),
(21904, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"87484876771482@lid\",\"presences\":{\"87484876771482@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:02.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:03'),
(21905, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:02.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:03'),
(21906, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A5966EFC8FBDB5EAD06BA8FD524D70EC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771332850584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:10.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:54:10'),
(21907, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"presences\":{\"239319906275410@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:12.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:13'),
(21908, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"presences\":{\"239319906275410@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:19.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:20'),
(21909, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"presences\":{\"239319906275410@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:19.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:20'),
(21910, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:27.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:27'),
(21911, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":false,\"id\":\"ACA4F4B835461FFA9004473FBC961C5F\"},\"pushName\":\"Stelia Saude\",\"message\":{\"conversation\":\"Ja paquei eles estão me cobrando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ClMAcd1+6Rx\\/T+CcMOf8vqa30LxNVDAPycMZb\\/nx86U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771332867,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:27.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 09:54:27'),
(21912, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:27.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:28'),
(21913, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T09:54:28.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 09:54:28'),
(21914, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:29.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:00:30'),
(21915, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A5235109FD247E7A50E4F74346C098AA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597824012_1662874794704062_7014210847828071351_n.enc?ccb=11-4&oh=01_Q5Aa3wEyUM0IHFYOVidRfH1275DDFOAd_86AKzC9A9Nm0LWF6w&oe=69BBD906&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+d016HNilVUG5BsYaLkpmwGWDjdOc3YvT\\/tcMjxRjgk=\",\"fileLength\":\"9106\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"JrUqvn9IbN20lxnHnbBNtoFDB9ulMe2nt+68NJUMvfo=\",\"fileEncSha256\":\"lnFx+qefGHzA5ZJGnNH3eN7HLUK8Hvewrywr9DJ0kKQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597824012_1662874794704062_7014210847828071351_n.enc?ccb=11-4&oh=01_Q5Aa3wEyUM0IHFYOVidRfH1275DDFOAd_86AKzC9A9Nm0LWF6w&oe=69BBD906&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333226\",\"waveform\":\"AAAAACFGYl9iYV9PLVlWVjhSWEZKWlg5P1RaODNIN1BeUCghSlpKXlxPRlxbXFJYWVEOO2JaERVFTE5KUU8rPg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333229,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:29.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:00:30'),
(21916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:30.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:00:30'),
(21917, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A5235109FD247E7A50E4F74346C098AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333231318,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:31.318Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:00:31'),
(21918, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:37.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:00:37'),
(21919, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A57905449A7AE9E4127DFB6452CE07AF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia negao\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771333237,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:37.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:00:37'),
(21920, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:37.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:00:38'),
(21921, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A57905449A7AE9E4127DFB6452CE07AF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333239625,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:00:39.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:00:39'),
(21922, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A57905449A7AE9E4127DFB6452CE07AF\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333316021,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:01:56.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:01:56'),
(21923, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5BB0C6E368396B357103354A46216F4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333316027,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:01:56.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:01:56'),
(21924, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:01:59.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:01:59'),
(21925, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:02:10.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:02:11'),
(21926, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:02:11.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:02:11'),
(21927, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:02:21.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:02:21'),
(21928, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5C5828C3238D5BAF742F88F9B27BAF7\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Bom dia quero contratar a iptv de filmes\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/aXjXQYiJaKI+pra7H5akJmriPXObQt3yWdzNbfGizU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771333341,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:02:21.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:02:21'),
(21929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:02:21.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:02:22'),
(21930, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:02:21.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:02:22'),
(21931, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:11.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:12'),
(21932, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A594E72F58841028BCBD00F3D1F49C02\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/56115087_968066279243967_5447706031400235682_n.enc?ccb=11-4&oh=01_Q5Aa3wFFCoSBh6nPeoUpxXYjDbpt6Nzwb_daPeVs0hm1RDED0w&oe=69BBE5E7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"iROp6DIRlN7OUW7I\\/C3eJK24Hv1HJPsBHBAvg6zVzOw=\",\"fileLength\":\"5633\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"t0pZRnzViHyYJDtsusGXoYPLbGljuqZDIjUNZfZoGVs=\",\"fileEncSha256\":\"vqPuYdCRBgvCTqLDYULeJ3TNrE\\/mR5YCjT9JzoEiIgU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/56115087_968066279243967_5447706031400235682_n.enc?ccb=11-4&oh=01_Q5Aa3wFFCoSBh6nPeoUpxXYjDbpt6Nzwb_daPeVs0hm1RDED0w&oe=69BBE5E7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333510\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"waveform\":\"AAADBQAAAAYmTGBeV1NRUlVSUFdZWVZKTEhBUVNSUlVQTE9NPTFLUks5HjBDRTY1PlA9OUFNUFJSUlRTSx8OCg==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":5},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333511,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:11.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:12'),
(21934, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:11.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:12'),
(21935, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A57688F58535D9295C20DC1EC6A8A957\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637842566_1236909884539176_2365012028782223225_n.enc?ccb=11-4&oh=01_Q5Aa3wFCH_PUjQy_lbzDxYg0YM7qOUjNoPyqvA41bIwQye4mUg&oe=69BBBD57&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"ip\\/81H7HG9ccNQ9vbzHlar8SL+Ii04xvOfwTMf+wwC8=\",\"fileLength\":\"7768\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"o+e5RR7j9trjmo7RmaoRjkYy0BQYqUt82XOasRPvvxo=\",\"fileEncSha256\":\"sykqrrH47NWdB8WkEpovIr2c0emT4w0huQwpfYT6UA4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637842566_1236909884539176_2365012028782223225_n.enc?ccb=11-4&oh=01_Q5Aa3wFCH_PUjQy_lbzDxYg0YM7qOUjNoPyqvA41bIwQye4mUg&oe=69BBBD57&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333516\",\"waveform\":\"AA4JFRUHDgkPM15WU1dVSDMmMUVJPUpWWU8gGUhUWSRTQj46PTdRQitDR01LTFdQMRcYDgYMBAkHAQAVITAbEw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333518,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:18.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:18'),
(21936, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:18.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:19'),
(21937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:18.849Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:19'),
(21938, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A57688F58535D9295C20DC1EC6A8A957\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333520666,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:20.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:20'),
(21939, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A594E72F58841028BCBD00F3D1F49C02\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333531274,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:31.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:31'),
(21940, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A594E72F58841028BCBD00F3D1F49C02\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771333531764,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:31.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:32'),
(21941, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:34.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:35'),
(21942, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:42.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:42'),
(21943, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:43.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:43'),
(21944, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5A3EABE683349ADD53E35A9311E8CFB\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595913871_26375294455493432_2331286055889760879_n.enc?ccb=11-4&oh=01_Q5Aa3wFkb05537--SgpeTZjVotDJ_JmxCaJr3eXu6mSjUHz_Eg&oe=69BBE028&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xeltLRqqdTzjaXNV3k9+JnNmkbKoa1fVyRlKtAHMUlE=\",\"fileLength\":\"15158\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"lJo0BqtHzGffzWOlDBcsQWY1ULYJi6Y30xeH0DqCxHM=\",\"fileEncSha256\":\"PruZwlIpmZNM5f1Z4TWn9fhnMut0JEsHS1BPBJy5qCw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595913871_26375294455493432_2331286055889760879_n.enc?ccb=11-4&oh=01_Q5Aa3wFkb05537--SgpeTZjVotDJ_JmxCaJr3eXu6mSjUHz_Eg&oe=69BBE028&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333536\",\"waveform\":\"MD5KRkxXXWBiL2NCXVVJWE0nPUcmWz8nJCcrKy1RN0lhTDMxSDpjTio+LCkqIyckMCMvLjQ7MDhGSDY8TU1RNw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/Il1e6u\\/OhtajA4zqzN27C2LRUab1QlDTlJGN9aMxmA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:43.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:44'),
(21945, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:43.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:44'),
(21946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:43.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:44'),
(21947, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:43.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:46'),
(21948, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:54.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:54'),
(21949, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:54.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:55'),
(21950, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:55.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:56'),
(21951, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A53D4F4D4923F34D2D8C40734DE8CC68\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637897735_2118173992055186_8229419043192139644_n.enc?ccb=11-4&oh=01_Q5Aa3wGZ-tjimDuyHSXU8yVjHw4XkpjBo6_-7ggoS2lnVRAGzw&oe=69BBC1AD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"g1zEz0R54dxiNyxpGI7QgzE6aM2x1xSobukomSegFbc=\",\"fileLength\":\"25858\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"\\/o1HAEL0uqhn6L4O3Tkkeo4YUECu2qdbUtCj2amNJPA=\",\"fileEncSha256\":\"tVyalS2wyISFx6DnGUVGw6nwSibnnI\\/1wI8aumlMt6U=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637897735_2118173992055186_8229419043192139644_n.enc?ccb=11-4&oh=01_Q5Aa3wGZ-tjimDuyHSXU8yVjHw4XkpjBo6_-7ggoS2lnVRAGzw&oe=69BBC1AD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333545\",\"waveform\":\"S1pWQz1KTVBHXl9DMzQ1Mx4ABCoGCgsmJ0RBMzwxMkVOQUtBUj40MzEqVlNLQ0FSSDpJS0E0RTVFNTk4LkQ2Ow==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Xu6zV0\\/NhEJUtXohFU+s2ix7llqW\\/f8QdcGqDiTXT2c=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333555,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:55.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:05:56'),
(21952, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:55.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:56'),
(21953, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:05:56.143Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:05:57'),
(21954, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:06:03.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:06:04'),
(21955, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5046F06B547CA8DE28C80A9AA4FB965\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/594858838_1270430368280664_8668402933364466702_n.enc?ccb=11-4&oh=01_Q5Aa3wEL6Tzu7wEGLdgnhroHc6yI4aJ7omKv9zogqJMh4N6okQ&oe=69BBD5A0&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Z7cNftp+BwrYfjBcsBR\\/wWKPB0pi9+771H6yi6yJvbg=\",\"fileEncSha256\":\"Xk3E4wLPQAdjpftTLIxD4ZHeBbIspsIx2K5SLjq2Pv0=\",\"mediaKey\":\"4JRlGQ2aIVuSwi+Z4LQqZmikF+MlWoH\\/UpL+xqy6QVQ=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/594858838_1270430368280664_8668402933364466702_n.enc?ccb=11-4&oh=01_Q5Aa3wEL6Tzu7wEGLdgnhroHc6yI4aJ7omKv9zogqJMh4N6okQ&oe=69BBD5A0&_nc_sid=5e03e0\",\"fileLength\":\"34796\",\"mediaKeyTimestamp\":\"1771333563\",\"isAnimated\":false,\"stickerSentTs\":\"1771333563134\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771333563,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:06:03.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:06:04'),
(21957, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:06:04.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:06:04'),
(21958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5046F06B547CA8DE28C80A9AA4FB965\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333617595,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:06:57.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:06:57'),
(21959, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A57688F58535D9295C20DC1EC6A8A957\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333617600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:06:57.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:06:58'),
(21960, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A57688F58535D9295C20DC1EC6A8A957\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771333621692,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:01.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:07:01'),
(21961, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:08.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:08'),
(21962, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:09.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:09'),
(21963, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A59A16EC2FB9122BDD23A13F8DDA9DAB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/35723853_1551817475877526_5204604367962215555_n.enc?ccb=11-4&oh=01_Q5Aa3wElAI6uIS3RGAccPgFCXJlRq_v4F2FaYSjJGTdG2PZ6Qg&oe=69BBE627&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"p3JjwP9B4gf0+cm61pHFAjAnPUQUkwyoQCWTmeTOSi0=\",\"fileEncSha256\":\"HoP9bDXNzSOQkWwFADUMVYD8Z3JGfAy7GDjO08NJliY=\",\"mediaKey\":\"Xo4BXI7AVO1WI7SEzaCcGj4oaUaQ\\/Y8ZTt8NUu0aFpM=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/35723853_1551817475877526_5204604367962215555_n.enc?ccb=11-4&oh=01_Q5Aa3wElAI6uIS3RGAccPgFCXJlRq_v4F2FaYSjJGTdG2PZ6Qg&oe=69BBE627&_nc_sid=5e03e0\",\"fileLength\":\"58498\",\"mediaKeyTimestamp\":\"1771333628\",\"isAnimated\":false,\"stickerSentTs\":\"1771333628815\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771333629,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:09.583Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:07:10'),
(21964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A59A16EC2FB9122BDD23A13F8DDA9DAB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333629877,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:09.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:07:10'),
(21965, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:09.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:10'),
(21966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:11.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:11'),
(21967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5DDCFECE2F3F9371FC47162C0CE507B\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Na tv ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6le0+iOWakU2wLbyyWjGyxfwp2DVZ9oEeMbIcEatjRI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771333631,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:11.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:07:11'),
(21968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:11.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:12'),
(21969, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:11.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:12'),
(21970, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:15.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:16'),
(21971, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5C31704C5CEC7EC9C5D654A128F517F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771333635,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:15.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:07:16');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(21973, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:16.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:17'),
(21974, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:18.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:19'),
(21975, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5DB19FE818663DE0806A738A09F10F1\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Ja ja\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"xRSeJPRh67f9Rr2RuogVuGVyMdFFXcUSroNzCnzoD\\/o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771333640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:20.337Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:07:20'),
(21976, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:20.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:20'),
(21977, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:20.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:21'),
(21978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:07:20.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:07:21'),
(21979, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A59A16EC2FB9122BDD23A13F8DDA9DAB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333702705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:22.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:08:23'),
(21980, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:23.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:24'),
(21981, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5CF52ED7D35BBB770643C62D5FDBA01\"},\"pushName\":\"dlnet\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/516024538_879490118310121_7124199779157633517_n.enc?ccb=11-4&oh=01_Q5Aa3wG8rqIj6fyzADLiQwXH17B0XwUFhf1rALGVa4rxrJJjhA&oe=69BBE397&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"4J5zrb5R9GQDgRZIkxE+hPplmowOYw9U3NNXzO0VtNI=\",\"fileLength\":\"65968\",\"height\":1600,\"width\":525,\"mediaKey\":\"9RHZtkGHAU8zH4jTHFBWwl9\\/kVhiP2mdLBycBmgDyVo=\",\"fileEncSha256\":\"zBtLVyOBolwHBs54EGDNLyM9XQt+AbbYvktL2vQXOjE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/516024538_879490118310121_7124199779157633517_n.enc?ccb=11-4&oh=01_Q5Aa3wG8rqIj6fyzADLiQwXH17B0XwUFhf1rALGVa4rxrJJjhA&oe=69BBE397&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333702\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFwMBIgACEQEDEQH\\/xAAqAAEAAwEAAAAAAAAAAAAAAAAAAQIDBgEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA6UkhIpatgkUtEgGemOwBhoFwf\\/\\/EACEQAQADAAEDBQEAAAAAAAAAAAEAAhEhAxASEyIxQVFi\\/9oACAEBAAE\\/AKna1RMYbvZnqNXimz1f5jPtgUPyMW+5UGFD7IzT9yfByxR+I19y+cMTN2ZhE6ZfV5lfANIsar1ea8ZCuJh2\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwAv\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwAv\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"uUQd+lTgKMHZNZtyYEJFaYWrFOVBtloM378+Iel9YJE+eIO4b2zDUw==\",\"scanLengths\":[5397,30155,13810,16606],\"midQualityFileSha256\":\"0kkq3\\/QoY5ohJSbEtYV7u\\/iXi2Gf8Cd8mpCWHChO0FA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aLODJXYLpaq7tS4Ksu+h2euZgakkESI8IGG1eF4+29g=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771333703,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:23.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:08:24'),
(21982, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:23.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:24'),
(21983, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:23.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:25'),
(21984, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:23.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:25'),
(21985, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:27.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:28'),
(21986, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5AEA5AD06B0973F2C98C2F2119721FB\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595112661_919663544120796_7669360157737382196_n.enc?ccb=11-4&oh=01_Q5Aa3wEvf4GURcpt_hBqxIs-XafQd0bzTPh20ky-CynOujFQUA&oe=69BBE15E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2CIFZ1khRk5gYVYKtuqJ4YgGdg3YqCeLrYrYW+0R+gQ=\",\"fileLength\":\"9756\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"vMTftNgQgQE9aKMCSI428dpuCCnZ1s2C4C0zpDr9CcY=\",\"fileEncSha256\":\"Z9+DXUJP3ILInLq0sAJMhNh8sly781Y+xPAjMcqizqM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595112661_919663544120796_7669360157737382196_n.enc?ccb=11-4&oh=01_Q5Aa3wEvf4GURcpt_hBqxIs-XafQd0bzTPh20ky-CynOujFQUA&oe=69BBE15E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333705\",\"waveform\":\"VUtMSkhJVl1aUk1TVFlSTl9TOk1WVVJLUllUT1ZAN0BMS0NJPS4vMzMzNCwwNjc7RURTXEpYQjs9ODczPDozQg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"rRumnP7KIVJzmHp5bF1kU84vennzX\\/yXBh2mOUp8H8U=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333708,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:28.918Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:08:29'),
(21987, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:28.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:29'),
(21988, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:29.077Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:29'),
(21989, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:08:29.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:08:30'),
(21990, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:08.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:09'),
(21991, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5B4FC85A2E1A652733EA59F01C0DFB1\"},\"pushName\":\"hpdesigner\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/594855430_907685448298229_557890838319996060_n.enc?ccb=11-4&oh=01_Q5Aa3wEkW3DYukRomtjmAywwMfb6Tppeiwvhr2vAb1a7HZV2Tw&oe=69BBCB76&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"1AzkFD1MPB\\/Xbo2PnPUWqxs9LTrnloAsnKmUdIMUpJU=\",\"fileLength\":\"138083\",\"height\":899,\"width\":1599,\"mediaKey\":\"uG59CQKTSVkm1GvrFhrJ+utvjkV+drkH0zMT5qmoaLM=\",\"fileEncSha256\":\"oqpQHXm1QPSYo0bLPxqq4tTgFAz1lG4ztwhmtW5lK+8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/594855430_907685448298229_557890838319996060_n.enc?ccb=11-4&oh=01_Q5Aa3wEkW3DYukRomtjmAywwMfb6Tppeiwvhr2vAb1a7HZV2Tw&oe=69BBCB76&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333804\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAABAUCAwEBAAMBAAAAAAAAAAAAAAAAAAABAgP\\/2gAMAwEAAhADEAAAAJPrdOlB2ysI5dxtbixzkZpTHNsUmp5jq9qdqn3zyyJ2gCuKATgBnuAc\\/wD\\/xAApEAACAgEDAgMJAAAAAAAAAAABAgADEQQSIRBTEzJRBRQiMTM0QUJx\\/9oACAEBAAE\\/AE01li5VJ7pd2jFVayRZXM1dqYq7UZVz5cQhfSPjPE091aeG5LfAIvtKk\\/o81N4tuJCHEIcjOOBCzvzjGJsewZwTiMp9IaWaaZkzh4zadFOCMiJcfE3E\\/OZRQoJ\\/OSZVbSbH3ZCERra69wrYlYLwFYEckxrSZSqNXkyrRpYm+MuCRAo6cTjpo\\/oWzSfaRvMf7B1PT\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAABAhEQMRIhQf\\/aAAgBAgEBPwCh8V6Ou6xGbSocULVFD1ln\\/8QAHREBAAICAgMAAAAAAAAAAAAAAQARAxAxQQITUf\\/aAAgBAwEBPwCC9lQt6l1MmP2Ja6FOHXhzPuif\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"ef2jDIkhw4bJR5hLVh8H9YPlKs6bVDkr5dP7vwXp43bDi7yKx31UBg==\",\"scanLengths\":[14561,64213,24308,35001],\"midQualityFileSha256\":\"jjam2gycAMQBcxbfTyjNpos4iM3\\/EbkKLdRqEwxIlEo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kwNJUSKO6H\\/C7BgCVWYTP+Kp00VZf50S62LQwO8AiiM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771333808,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:08.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:10:09'),
(21992, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:08.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:08'),
(21993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:08.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:09'),
(21994, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:10.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:10'),
(21995, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:12.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:13'),
(21996, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5A7DD84D9D4B0DE176C63185BD3A7F9\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Qual ai\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JYQsf8cOAEkKVV4EinO72CiIG6H\\/aR7IzJCbCSSQM+M=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771333812,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:12.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:10:13'),
(21997, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:12.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:13'),
(21998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:10:13.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:10:13'),
(21999, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5EF4E233CFE8905E762E580DFE75DB6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593964164_1634569741005174_535569695491696219_n.enc?ccb=11-4&oh=01_Q5Aa3wHqPPiYhPs-NTQYVj3YIi527zvqqBJ5INaGbuvTsfA1ng&oe=69BBD185&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"9fYT1QeWt1BgQTH0e39PbSiytoFWHaQiRIFkDqkgmTo=\",\"fileLength\":\"3446\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"A5RJgI4MZSsKr1qQmA2dx14PxOJA6W90tsiOeyGbx0I=\",\"fileEncSha256\":\"FHdcZ0nxQ2UaNbhVM9WDspikTe4PTz4eK1WfBIGMPmo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593964164_1634569741005174_535569695491696219_n.enc?ccb=11-4&oh=01_Q5Aa3wHqPPiYhPs-NTQYVj3YIi527zvqqBJ5INaGbuvTsfA1ng&oe=69BBD185&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333944\",\"waveform\":\"AAECAQAAAAABAQAAAAAAABAtPTQrIxo0UVpcUj0zQU5RU1VWVVJRUlNVVlZWTUNCRkVAPDo4PUNJUFJQTkpAUA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333944,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:24.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:25'),
(22000, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:24.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:25'),
(22001, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:25.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:26'),
(22002, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5EF4E233CFE8905E762E580DFE75DB6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333945938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:25.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:26'),
(22003, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:27.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:27'),
(22004, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A559C0994304BFFD3DD0601B7380AA8A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637771790_1644656870215886_3204742298397404308_n.enc?ccb=11-4&oh=01_Q5Aa3wF1GZeHp3t9-l013ynh9QljD5OvO5UWgewYM7NheNkTeA&oe=69BBDE86&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"Pj7Q7iSpOxhKhpqzWzYvdKw8Hbg8hpQD2JAmsEi1gUA=\",\"fileEncSha256\":\"hRrUuyUp0qGDw13sg0lMrMFARJn7bRWeaW\\/ZmT\\/8PUM=\",\"mediaKey\":\"68WKmJ7qsNNurElTY+wMQulsjwMGFN6RD8W5blESbQE=\",\"mimetype\":\"image\\/webp\",\"height\":512,\"width\":512,\"directPath\":\"\\/v\\/t62.15575-24\\/637771790_1644656870215886_3204742298397404308_n.enc?ccb=11-4&oh=01_Q5Aa3wF1GZeHp3t9-l013ynh9QljD5OvO5UWgewYM7NheNkTeA&oe=69BBDE86&_nc_sid=5e03e0\",\"fileLength\":\"11538\",\"mediaKeyTimestamp\":\"1771289436\",\"isAnimated\":false,\"stickerSentTs\":\"1771333947167\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771333947,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:27.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:27'),
(22006, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:27.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:28'),
(22007, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A586395A5FE9C48C6DD59AE2DEF56228\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637838150_2172489406892259_8642896535990679966_n.enc?ccb=11-4&oh=01_Q5Aa3wF9MGJd8mtPmtKEFyPthbSlZbDbqIinHpkZepET2SrWeA&oe=69BBD9F8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"QqwwT0Wfsmg3lMGStHJciCs3nuk785KKbZI58KH\\/0KQ=\",\"fileLength\":\"5110\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"2v47yCy3xQ1COK+CgMMbFled+nyovRhvKIeuLc7NmJY=\",\"fileEncSha256\":\"4UGYpReJsWrZkw8u9zRDGhW6sReR+5Gsl2Z2VSW203o=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637838150_2172489406892259_8642896535990679966_n.enc?ccb=11-4&oh=01_Q5Aa3wF9MGJd8mtPmtKEFyPthbSlZbDbqIinHpkZepET2SrWeA&oe=69BBD9F8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333949\",\"waveform\":\"AAAQNDxBQz83Jz5SVVZWVkY1NUJRUVNTOyUVOU5WVVZYUD0bOUxMPzxLTkxGRTwaL0YuMDo9Pj1AMRw6QjpFSw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333950,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:30.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:30'),
(22008, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:30.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:30'),
(22009, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A586395A5FE9C48C6DD59AE2DEF56228\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333951011,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:31.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:31'),
(22010, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:31.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:31'),
(22011, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A586395A5FE9C48C6DD59AE2DEF56228\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333952448,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:32.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:32'),
(22012, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A559C0994304BFFD3DD0601B7380AA8A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333952453,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:32.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:32'),
(22013, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5EF4E233CFE8905E762E580DFE75DB6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333952456,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:32.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:33'),
(22014, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5EF4E233CFE8905E762E580DFE75DB6\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771333954801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:34.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:35'),
(22015, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:38.507Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:38'),
(22016, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":true,\"id\":\"A5212365EB9E0EFF2AB52866DFB31F64\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/595504544_846680598400726_787145991134646517_n.enc?ccb=11-4&oh=01_Q5Aa3wHGGh9Jfw6Xrr3TnVURywlfLvXCynXvJHiI4SzHhYRstA&oe=69BBE1B3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"UcW38lF+9oolXuVMKe0LARzG0gPuEUxcoY8LAqMbMGc=\",\"fileEncSha256\":\"J3W9U+oRWmLCFDo2nDq\\/P5qxOfBTmoP5JNjJ9fouYy4=\",\"mediaKey\":\"bWSZO8Uc0DJxCkpI9VKgl3zP9t\\/l+o+HGIXt+A8OJFw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/595504544_846680598400726_787145991134646517_n.enc?ccb=11-4&oh=01_Q5Aa3wHGGh9Jfw6Xrr3TnVURywlfLvXCynXvJHiI4SzHhYRstA&oe=69BBE1B3&_nc_sid=5e03e0\",\"fileLength\":\"637660\",\"mediaKeyTimestamp\":\"1771333957\",\"firstFrameLength\":637188,\"firstFrameSidecar\":\"8uiDC0lz6eh5Lg==\",\"isAnimated\":true,\"stickerSentTs\":\"1771333957181\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771333958,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:38.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:38'),
(22017, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5212365EB9E0EFF2AB52866DFB31F64\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771333958794,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:38.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:39'),
(22018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:38.822Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:40'),
(22019, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A586395A5FE9C48C6DD59AE2DEF56228\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771333960126,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:40.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:40'),
(22020, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:43.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:43'),
(22021, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"140797685063807@lid\",\"id\":\"A5212365EB9E0EFF2AB52866DFB31F64\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771333967013,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:47.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:47'),
(22022, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:48.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:48'),
(22023, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5F28A7E79CCDD7B7A4DCF898D26569C\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Sim lG\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KXhKavgMW3VAET1mOWVyuWvdzXbWhQxChCFw45\\/wR1Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771333968,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:48.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:48'),
(22024, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:48.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:49'),
(22025, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:49.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:49'),
(22026, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:48.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:49'),
(22027, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"presences\":{\"140797685063807@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:53.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:53'),
(22028, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:54.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:54'),
(22029, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"140797685063807@lid\",\"fromMe\":false,\"id\":\"A5140636222A4E0A2F56779EDC89F1BE\"},\"pushName\":\"dlnet\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/593958610_1243269107248316_5978379477055263251_n.enc?ccb=11-4&oh=01_Q5Aa3wFDVa-_4A62i1qCdSUXUihZvzYU7FOzGLlQbVpBtmQLVw&oe=69BBE956&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TnIpEEMfAblIxxaDXRnY1ldij0540kmpISb0E+B\\/tQ8=\",\"fileLength\":\"9122\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"Xc8JRlROiUdprtQ+3xnmmuGavCxvlCx4NLxdsqfmP6E=\",\"fileEncSha256\":\"XCCWjJMP3JCIDd5cwCmdHVXuFbNApROT6pICA5jiCfc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/593958610_1243269107248316_5978379477055263251_n.enc?ccb=11-4&oh=01_Q5Aa3wFDVa-_4A62i1qCdSUXUihZvzYU7FOzGLlQbVpBtmQLVw&oe=69BBE956&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771333971\",\"waveform\":\"Q0ZLTUQ+Uls8PE9ORUEyM1E9QkpHR0pNSkJCPjUzPTA9OkFDRklMRkc8Nj9DOi88ODk4PkFHRUFAO0A+Q0JBOg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"KfuGNu6xWY93SB12D2G0SBYmxXii6\\/Yx4MzZzsfqCIY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771333973,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:54.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:12:54'),
(22030, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:54.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:55'),
(22031, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"140797685063807@lid\",\"pushName\":\"dlnet\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/627114889_25550578027944208_372504024700219771_n.jpg?ccb=11-4&oh=01_Q5Aa3wEUkYgq_YbE88dzrhgBq5SxSmbxAG6qJB4wbC0ASryd4Q&oe=69A16BF5&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:12:54.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:12:55'),
(22032, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:13:54.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:13:55'),
(22033, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:02.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:14:03'),
(22034, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A574E436065F1FB4AA6D92F13769E7A0\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Instalei já\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"APkjZ0jX2j6nKMKIodg+0OMvGEUBLGtN1y\\/IV41sVYk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771334042,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:02.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:14:03'),
(22035, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:02.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:14:03'),
(22036, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:02.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:14:04');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22037, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5E488201A0EFECE53AE245ED96F676B\"},\"pushName\":\"hpdesigner\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/593729874_1242469854496663_2398919524989631659_n.enc?ccb=11-4&oh=01_Q5Aa3wHZ1GwZGbK20awOB-TPTWbY2w8r45k7UgoRRRK3cIiGkA&oe=69BBCC5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Qxe73DuZ1ykOcn4Xws2x4wdNB4xrsu5cMfM+5BZnw7U=\",\"fileLength\":\"117288\",\"height\":899,\"width\":1599,\"mediaKey\":\"DdRXcn470soFm1nzBs5YGfUcTFJX6tSKFGgTaInZZX4=\",\"fileEncSha256\":\"GaLqrnYQaYtpou0heFgB6LPluuJnhWZHpIm00aQDZpQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/593729874_1242469854496663_2398919524989631659_n.enc?ccb=11-4&oh=01_Q5Aa3wHZ1GwZGbK20awOB-TPTWbY2w8r45k7UgoRRRK3cIiGkA&oe=69BBCC5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771334055\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAgQDBQEBAAMBAAAAAAAAAAAAAAAAAAIDBAH\\/2gAMAwEAAhADEAAAAOf7Q9iJqNF1EqWYtGW+CyK1dpPHBW3P3KXpZ85MLR4rZrJVB2SgTns4AXt4Dv8A\\/8QAIRAAAgICAgIDAQAAAAAAAAAAAAECEQMhEhMEMjNBQlP\\/2gAIAQEAAT8A4SkdEyOCQsFRJYWmdbRLRD0iYouUU0rFGVvRJNbZzZ7NtmRUSSpsxO8aMDqCuTQ+C33bHOqqVlN7I4cXFPsSbJ+Ph\\/ojPijBXFo8f4kQkuCJOjsoXkKh5Ex5OWnIk1emYNY0Q9SR9sR+RFIh6o\\/\\/xAAcEQACAgIDAAAAAAAAAAAAAAAAARARAkEDBCH\\/2gAIAQIBAT8AsxRfh2NQmi62czujUOP\\/xAAcEQADAQACAwAAAAAAAAAAAAAAAQIDESBBQnH\\/2gAIAQMBAT8AdMuxXy+DEcmmdeCJS9DP51\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"VWUiNCzuR5B2TILKWnyxenuLCjjvKCn+Q6iPE7q\\/5W6xC2x1iy8IJQ==\",\"scanLengths\":[12346,56140,17794,31008],\"midQualityFileSha256\":\"Lic3YZkx31CEHQnHAliLCj4jqAa5TU\\/g2+tF\\/8rXFVI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IckxJq2n8wsxqL6BfBfxYbe\\/FNEKjlha5DlDlcyqkoc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771334056,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:16.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:14:16'),
(22038, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:16.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:14:16'),
(22039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:16.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:14:17'),
(22040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:14:16.928Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:14:18'),
(22041, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:23.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:18:23'),
(22042, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5539ADB2786C36C81D8EE04FE2312B5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Provedor\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771334303,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:23.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:18:23'),
(22043, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:23.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:18:24'),
(22044, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5539ADB2786C36C81D8EE04FE2312B5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771334304915,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:24.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:18:25'),
(22045, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5FBE8205E9C41BFF6D2D641383A9A38\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"zeus10\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771334307,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:27.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:18:27'),
(22046, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:27.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:18:27'),
(22047, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:27.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:18:28'),
(22048, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5FBE8205E9C41BFF6D2D641383A9A38\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771334307474,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:27.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:18:28'),
(22049, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:45.843Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:18:46'),
(22050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A50604765E055C3EC8B7328D03DD2AF6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"*Usuário:* 5znzwcf8\\n*Senha:* ayqn6dgu\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771334325,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:45.844Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:18:46'),
(22051, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:46.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:18:46'),
(22052, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A50604765E055C3EC8B7328D03DD2AF6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771334326216,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:18:46.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:18:47'),
(22053, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A50604765E055C3EC8B7328D03DD2AF6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771334354621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:19:14.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:19:15'),
(22054, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5539ADB2786C36C81D8EE04FE2312B5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771334354647,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:19:14.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:19:15'),
(22055, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5FBE8205E9C41BFF6D2D641383A9A38\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771334354638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:19:14.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:19:15'),
(22056, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:23.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:24'),
(22057, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:28.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:28'),
(22058, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:31.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:31'),
(22059, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:33.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:34'),
(22060, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:34.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:34'),
(22061, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A5235109FD247E7A50E4F74346C098AA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771334677034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:37.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:24:37'),
(22062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A5235109FD247E7A50E4F74346C098AA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771334678182,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:38.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:24:38'),
(22063, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:42.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:43'),
(22064, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A52C8B2AA238B49A4A7952F694F24191\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Feito todo esse processo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7diW35lpT4Di6BVf421Md9BzODBQY2Sv3MK6V\\/\\/i5mw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771334682,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:42.897Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:24:43'),
(22065, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:43.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:43'),
(22066, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:24:43.061Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:24:44'),
(22067, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:06.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:06'),
(22068, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:06.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:06'),
(22069, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":false,\"id\":\"ACC0E68DE39ED2B8F2A4E06EFF3E049C\"},\"pushName\":\"Stelia Saude\",\"message\":{\"extendedTextMessage\":{\"text\":\"Olá 👋\\n\\nEste é um número para envio de mensagens automáticas e não conseguimos responder por aqui.\\n\\nPrecisa falar com a gente?\\n\\n💬 Mande uma mensagem no chat do App InfinitePay ou em nosso site.\\n✉️ Você também pode enviar um e-mail para ajuda@infinitepay.io\\n\\nApp: https:\\/\\/infinitepay.onelink.me\\/JmLI\\/g9irqbij\\n\\nUm abraço,\\n\\nEquipe InfinitePay\",\"matchedText\":\"https:\\/\\/infinitepay.onelink.me\\/JmLI\\/g9irqbij\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4\\/NoXvEfnbdVwLjkzyOXDOvnVPdiVvi5XZ3HoMBt11c=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771334705,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:06.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:25:06'),
(22070, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:06.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:06'),
(22071, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:26.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:26'),
(22072, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:26.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:26'),
(22073, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":false,\"id\":\"ACB3979BCD9B30526D6A39739329F742\"},\"pushName\":\"Stelia Saude\",\"message\":{\"extendedTextMessage\":{\"text\":\"*Aviso de cobrança em aberto*\\nOi, STELIA 👋\\n\\nEstamos passando para lembrar que *você possui uma cobrança de jtvplay (JOHNNY SCHMITT DE SOUZA – CNPJ: 46.502.413\\/0001-75) em aberto.* Referência: JTVPLAY INFORMA:  SEU PLANO IRÁ VENCER, RENOVE JÁ! MAIS INFOS: (47) 99159-2447.\\n\\nO valor atualizado da cobrança é *R$ 40,00*.\\n\\nPara pagar, *é só clicar no link:* https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md[rid]=tkb38\\n\\n⚠️ Pode haver cobrança de multa e juros por atraso, dependendo da data de pagamento.\",\"matchedText\":\"https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md[rid]=tkb38\",\"previewType\":\"NONE\",\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e3o4oJpfuwTg\\/TzM6Z6vbEz84TEGZOPRFDEiTUY0cqo=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true,\"businessMessageForwardInfo\":{\"businessOwnerJid\":\"199450228170836@lid\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771334725,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:26.034Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:25:27'),
(22074, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:26.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:27'),
(22075, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04BB6B7F00B0CFAF29F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 239319906275410\\nMensagem: \\\"*Aviso de cobrança em aberto*\\nOi, STELIA 👋\\n\\nEstamos passando para lembrar que *você possui uma cobrança de jtvplay (JOHNNY SCHMITT DE SOUZA – CNPJ: 46.502.413\\/0001-75) em aberto.* Referência: JTVPLAY INFORMA:  SEU PLANO IRÁ VENCER, RENOVE JÁ! MAIS INFOS: (47) 99159-2447.\\n\\nO valor atualizado da cobrança é *R$ 40,00*.\\n\\nPara pagar, *é só clicar no link:* https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md[rid]=tkb38\\n\\n⚠️ Pode haver cobrança de multa e juros por atraso, dependendo da data de pagamento.\\\"\\n\\nUse: \\/aprovar 239319906275410  (automático)\\nUse: \\/pago 239319906275410  (PIX Manual)\",\"matchedText\":\"https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md\",\"canonicalUrl\":\"https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md\",\"description\":\"Você recebeu uma cobrança de ${{handle}} no valor de\",\"title\":\"Cobrança de $jtvplay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAASACADASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQDBQYBB\\/\\/EACsQAAIBAwICCQUAAAAAAAAAAAECAwAEEQUSIVEGFCIxMmFxcnOhsbLB0v\\/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAQIhETP\\/2gAMAwEAAhEDEQA\\/AMvAhbGGQerAUygwccOHI1yC5jEaqUfIABOV4\\/SnUuoGBBhcA8iv81olsRf6XpOmtZwzz3LhnGdoIH6zUyxJFcMsTbot3YJ78VBpFiLvTF3MwkUkxhWAOPPlTjWc1m0azMrbxnINVLnevSs4efR03HRRSkRquiBPXJvgX8qvtX8Nv7j9qKKivQD\\/2Q==\",\"thumbnailDirectPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQPoxu6pa0OAOMq-26xu2puO9WydvTaMLMWG8Mq2IbhDxFa8VhyCUtSTYzwt05eJkWcVeVLOu1Fx2Nw3-gYYFybdGjNP2AmUCddFNFZUlw?ccb=9-4&oh=01_Q5Aa3wGFo1YSzPSOj76eROOFRhci3KvE35-8uCs2rKVkGm9RUQ&oe=69BBF338&_nc_sid=e6ed6c\",\"thumbnailSha256\":\"qC3XpkZw9VK0oKrTeb3vv9bIWi7NipBvJEGD8gUc+Ns=\",\"thumbnailEncSha256\":\"2HgkPsF56L1bh8az2FQhS4p5p\\/McVjhqGT\\/5hpW++Bo=\",\"mediaKey\":\"GvwOhkjk4eG2E7rHlWakgWoH\\/GbFaRCGySr0NouLywk=\",\"mediaKeyTimestamp\":\"1771334729\",\"thumbnailHeight\":675,\"thumbnailWidth\":1200}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771334729,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:29.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:29'),
(22076, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB038C01760D6AB22056C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 239319906275410\\nMensagem: \\\"*Aviso de cobrança em aberto*\\nOi, STELIA 👋\\n\\nEstamos passando para lembrar que *você possui uma cobrança de jtvplay (JOHNNY SCHMITT DE SOUZA – CNPJ: 46.502.413\\/0001-75) em aberto.* Referência: JTVPLAY INFORMA:  SEU PLANO IRÁ VENCER, RENOVE JÁ! MAIS INFOS: (47) 99159-2447.\\n\\nO valor atualizado da cobrança é *R$ 40,00*.\\n\\nPara pagar, *é só clicar no link:* https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md[rid]=tkb38\\n\\n⚠️ Pode haver cobrança de multa e juros por atraso, dependendo da data de pagamento.\\\"\\n\\nUse: \\/aprovar 239319906275410  (automático)\\nUse: \\/pago 239319906275410  (PIX Manual)\",\"matchedText\":\"https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md\",\"canonicalUrl\":\"https:\\/\\/invoice.infinitepay.io\\/jtvplay\\/7ESRTdfvoB?md\",\"description\":\"Você recebeu uma cobrança de ${{handle}} no valor de\",\"title\":\"Cobrança de $jtvplay\",\"previewType\":\"NONE\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAASACADASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAQDBQYBB\\/\\/EACsQAAIBAwICCQUAAAAAAAAAAAECAwAEEQUSIVEGFCIxMmFxcnOhsbLB0v\\/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAQIhETP\\/2gAMAwEAAhEDEQA\\/AMvAhbGGQerAUygwccOHI1yC5jEaqUfIABOV4\\/SnUuoGBBhcA8iv81olsRf6XpOmtZwzz3LhnGdoIH6zUyxJFcMsTbot3YJ78VBpFiLvTF3MwkUkxhWAOPPlTjWc1m0azMrbxnINVLnevSs4efR03HRRSkRquiBPXJvgX8qvtX8Nv7j9qKKivQD\\/2Q==\",\"thumbnailDirectPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQPeb5gpZB9v4-OWHL-FykDt6n8rKhmM4vW__O5-Bq0jE0xDR4Gph5LoQ7eu9D32z6JWM7gPffZoKp6mQkibGx3bc2THB_MEfeJglSpHGw?ccb=9-4&oh=01_Q5Aa3wFaDSAsz8bYswhjZFhGbAgTprEg0b4j4T1Lx6Dq_k_e-A&oe=69BBEE61&_nc_sid=e6ed6c\",\"thumbnailSha256\":\"qC3XpkZw9VK0oKrTeb3vv9bIWi7NipBvJEGD8gUc+Ns=\",\"thumbnailEncSha256\":\"V\\/I8OwiSh1IeO1W6IzuhmeWdXshBx\\/ZMepndKelFVo4=\",\"mediaKey\":\"VylnmosgRTeakBvHhTzD5Q7ic0lTtJkNVdlmHG2Gqr4=\",\"mediaKeyTimestamp\":\"1771334731\",\"thumbnailHeight\":675,\"thumbnailWidth\":1200}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771334731,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:25:31.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:25:31'),
(22077, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A55F9E8C342D77BA5D7A731E65BF6FF1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771335360725,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:00.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:36:01'),
(22078, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239319906275410@lid\",\"fromMe\":true,\"id\":\"A55F9E8C342D77BA5D7A731E65BF6FF1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637838177_2088091405256738_8446726530868144692_n.enc?ccb=11-4&oh=01_Q5Aa3wErNDMaj6H7XksyXmtC9z1I3plsVSElHfzBupTYQ5GOVA&oe=69BBC645&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"6KM+7\\/2mb2KYFwpIV8AtW6KFjqyLnim+aqsMpwkwhio=\",\"fileLength\":\"28260\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"nZVHOS5vM3ryT0QmZ3YtzFEr4F+qPfPuSd8m8rylPfI=\",\"fileEncSha256\":\"AfAzLWxtuC2lO7MaSb9uAuS7qSUc\\/eGnPRb0cOpY+8M=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637838177_2088091405256738_8446726530868144692_n.enc?ccb=11-4&oh=01_Q5Aa3wErNDMaj6H7XksyXmtC9z1I3plsVSElHfzBupTYQ5GOVA&oe=69BBC645&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771335348\",\"waveform\":\"AAUTY1RWYTE7WVAzTUdUU1FSQF5OQElAWFhVUzpYWENiQGBGKgUFMjkdXBNMUE5ZGgALABcpJikzOVhZDU0GRw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771335361,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:01.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:36:01'),
(22079, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239319906275410@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:01.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:36:01'),
(22080, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239319906275410@lid\",\"pushName\":\"Stelia Saude\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/558322181_1550909686087858_489199578610525487_n.jpg?ccb=11-4&oh=01_Q5Aa3wG17C2YfdhI4xvIR2gzqQOm0-t2Q3GMKcCaoA_MUc0-iA&oe=69A175DA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:01.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:36:01'),
(22081, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:04.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:36:04'),
(22082, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A504631AA33062761BD3138FAFA33A64\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/588642524_1233747334997382_386547437877710822_n.enc?ccb=11-4&oh=01_Q5Aa3wGz2DMdmHwig0TRb_0Ts_H421KXL_sw-eOgBEyY-ZF07g&oe=69BBEEC5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"rxFxGmhsZld83jluTL0hhP5g2V2yk2Vvp3HQ3bf+xkU=\",\"fileLength\":\"4089\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"Q3EUK0V+z3f7kmtksd6N1cLw\\/MnL\\/zOnyMaGSqncpdU=\",\"fileEncSha256\":\"+s5gXgK2yBjAxcdzoZkAhBBbPc7QEYExbFg9PNRMNe8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/588642524_1233747334997382_386547437877710822_n.enc?ccb=11-4&oh=01_Q5Aa3wGz2DMdmHwig0TRb_0Ts_H421KXL_sw-eOgBEyY-ZF07g&oe=69BBEEC5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771335363\",\"waveform\":\"AAAAAAIOEwsMGBkQFBwdHCUvRVhYWFZNOjI0QlZbXFhTOCIxPkRKTlJUVVNNRUtVOyI+VldXU1FTTUBDT1FRUQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771335364,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:04.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:36:04'),
(22083, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:36:04.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:36:05'),
(22084, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:42:29.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:42:29'),
(22085, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC9727242D0F7178F5E5A2A6F9BD7AFE\"},\"pushName\":\"Vanderlei\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/40159115_2089862495195879_9122948529574842981_n.enc?ccb=11-4&oh=01_Q5Aa3wFmH1496OLNzDp0TRU_DaN1KxyOL_yVdYwvU5-dgLZcFg&oe=69BBDD26&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"t1a79RvVP\\/Le\\/Wds+cgmebKjgY4Q+IN0dolSr48tBDQ=\",\"fileLength\":\"6024\",\"pageCount\":2,\"mediaKey\":\"zb0XAp8iSBPRzIwSRj+cjcEYGiBeOufrekYO1Fkqxw4=\",\"fileName\":\"1771335731570.pdf\",\"fileEncSha256\":\"Zv+VRC1DbkkAT\\/d8XVxL2IFRxwC+k0yNJqJsa0fWhcg=\",\"directPath\":\"\\/v\\/t62.7119-24\\/40159115_2089862495195879_9122948529574842981_n.enc?ccb=11-4&oh=01_Q5Aa3wFmH1496OLNzDp0TRU_DaN1KxyOL_yVdYwvU5-dgLZcFg&oe=69BBDD26&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771335748\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/637779413_1188208849797241_1521320136499767303_n.enc?ccb=11-4&oh=01_Q5Aa3wEo_J80NzyMdv99qApI00HcdZIb7nzBHhpc5ZJn97Xr-A&oe=69BBEBA3&_nc_sid=5e03e0\",\"thumbnailSha256\":\"9C5VyqAgYTV\\/bd\\/rZFaWHXzMenS\\/O9+I7OnYGGr5ayY=\",\"thumbnailEncSha256\":\"BW4f+Vz2UKb5StbQFJaYg+5Wlse50vkyRYm3KQ94koA=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAANAMBIgACEQEDEQH\\/xAAsAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAAD7wGWea+hKgEswdAAAIhpBQAQ5HZKAAQhoAADl1GbQAB\\/\\/xAAvEAACAAMFBgQHAQAAAAAAAAABAgADERITICExBBBhcYKRIkOBoSMkMjNBUVNU\\/9oACAEBAAE\\/ANzzpctlDGla0hNqkEqofM8MU1Daqs5zwFICuPMme0ILIzcnng6Y6Y6Y6Y9N00eH6iM4lTUlk2ppYGAytocLraFKA84uj\\/OV2hVVdFA5DDOpYzYjiIGg+a9Mou3p99uwgSnDAmcxH6ywTK2RRA2YgnMWtnqaa0GKaKrqRyhQVyE6Z2hVKk1cnCxYCoFYvXy+C8I7NqhXnhnFQniagrEp5ZNW2nIfhiBF7KPmJ3EAg6GuCbWzklrPSAXr4tk7KIqP8fsISYwIFwyj0wEAxdrx7nBTd\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8AR\\/\\/EABcRAAMBAAAAAAAAAAAAAAAAAAAhQFH\\/2gAIAQMBAT8AFk\\/\\/2Q==\",\"thumbnailHeight\":480,\"thumbnailWidth\":263},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6LG1pcSZOBoNR6Li02Naiu607p6X07ioMtSOZg0mr44=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771335749,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:42:29.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:42:29'),
(22086, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:42:29.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:42:29'),
(22087, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:42:29.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:42:30'),
(22088, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:42:29.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:42:30'),
(22089, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A504631AA33062761BD3138FAFA33A64\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771336449424,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:54:09.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:54:10'),
(22090, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A504631AA33062761BD3138FAFA33A64\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771336478709,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:54:38.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:54:39'),
(22091, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A504631AA33062761BD3138FAFA33A64\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771336479397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:54:39.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:54:39'),
(22092, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A55D190533230E7A7069EF2592CDA7C0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdiaa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771336682,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:02.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:03'),
(22093, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:02.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:58:03'),
(22094, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:02.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:58:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22095, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A516F0DF42901D23AE28C78B0A5250D7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wGrs-6K485rHc8UFKDGzAJGIw724aA921tptHqBLCzEiQ&oe=69BBE27C&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/634917497_809460225513950_691053353298016180_n.enc?ccb=11-4&oh=01_Q5Aa3wGrs-6K485rHc8UFKDGzAJGIw724aA921tptHqBLCzEiQ&oe=69BBE27C&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771336683263\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771336684,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:04.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:04'),
(22096, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:04.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:58:04'),
(22097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:04.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:58:05'),
(22098, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A55D190533230E7A7069EF2592CDA7C0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771336686629,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:06.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:06'),
(22099, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A516F0DF42901D23AE28C78B0A5250D7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771336686637,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:06.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:06'),
(22100, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:08.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:58:08'),
(22101, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A574F9263ACF3C20FD5199ECDF763074\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/40968799_1824090604907870_3986436337360272378_n.enc?ccb=11-4&oh=01_Q5Aa3wETONOauXCV8kMkMNBKQvyVnKY1j0mhbTjtp4wuX5PDhg&oe=69BBE034&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"wfcqHWknRb77BB5bqcJ2hVE\\/gbzoH9Ey+OqfyTw8fwc=\",\"mediaKey\":\"7SlK09Vh25fmmvzKrm200tXxRSsBG8+GREzDpmHo0xA=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/40968799_1824090604907870_3986436337360272378_n.enc?ccb=11-4&oh=01_Q5Aa3wETONOauXCV8kMkMNBKQvyVnKY1j0mhbTjtp4wuX5PDhg&oe=69BBE034&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1771336687\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"dINYbtoIrL33NQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1771336687285\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771336688,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:08.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:08'),
(22102, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:08.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 10:58:09'),
(22103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A574F9263ACF3C20FD5199ECDF763074\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771336693926,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:13.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:14'),
(22104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A55F9E8C342D77BA5D7A731E65BF6FF1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771336701640,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:21.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:22'),
(22105, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239319906275410@lid\",\"id\":\"A55F9E8C342D77BA5D7A731E65BF6FF1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771336702636,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T10:58:22.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 10:58:22'),
(22106, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"presences\":{\"163883738206363@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:07:41.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:07:41'),
(22107, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:07:45.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:07:45'),
(22108, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":false,\"id\":\"A5A12CB309549ABDFDBAF88CC09BC14A\"},\"pushName\":\"hpdesigner\",\"message\":{\"conversation\":\"Testando agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Xc9yfUs+7w601bD0ohOD3Ptm1juEnr7jNFILT6z9UTM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771337265,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:07:45.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:07:45'),
(22109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:07:46.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:07:46'),
(22110, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wHy4LKYAhfowMKrB9B1cof4_qX2kIyVhvCEwz8V2ygHuA&oe=69A194E4&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:07:45.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:07:46'),
(22111, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:20.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:09:20'),
(22112, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164102144045259@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:20.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:09:21'),
(22113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164102144045259@lid\",\"fromMe\":false,\"id\":\"AC36B16F2C5F3D5C421655348DE152C6\"},\"pushName\":\"jorgekit\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/56108246_1603888290653646_6479170381643293193_n.enc?ccb=11-4&oh=01_Q5Aa3wHw4grK-7nxpURXc3j4-ObxU2Y6H96l-O8ApJ4E-o4qhA&oe=69BBEAEF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"q1nIolJHYnUraZS8w0\\/AyFQvBf82NgamC4WfhIHJZJQ=\",\"fileLength\":\"136492\",\"pageCount\":1,\"mediaKey\":\"44cDu8Vx0RQzSis5JGkRntrQXUk\\/fxgJKVe9a9V8HE4=\",\"fileName\":\"comprovante2026-02-17_110844.pdf\",\"fileEncSha256\":\"qtNoNGVKmhSV8t3Kt4lV6OQsW4xgauWebu95iv1yIGM=\",\"directPath\":\"\\/v\\/t62.7119-24\\/56108246_1603888290653646_6479170381643293193_n.enc?ccb=11-4&oh=01_Q5Aa3wHw4grK-7nxpURXc3j4-ObxU2Y6H96l-O8ApJ4E-o4qhA&oe=69BBEAEF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771337359\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/595816988_911212021315021_3028057933533161916_n.enc?ccb=11-4&oh=01_Q5Aa3wHO0D7Frm5CGjFFk8KlUpFO2KjoGTCRBP_aE0yaQ8oNYw&oe=69BBDE87&_nc_sid=5e03e0\",\"thumbnailSha256\":\"mJ0GfJSw4jkObVyBba1JRgEOPzGa321TcIFSmjgEL9U=\",\"thumbnailEncSha256\":\"YIgPHIPqaNrxOlsxigabvYex+06mX6Qo6fDhnNa2\\/2k=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAAGAMBIgACEQEDEQH\\/xAAwAAADAQEBAQAAAAAAAAAAAAAAAQIDBAUGAQEBAAMAAAAAAAAAAAAAAAAAAQIDBP\\/aAAwDAQACEAMQAAAA7\\/O+jw6uWTsNO7vSeGe4EsUWMAi8dRiDLSEbCDGLVajI\\/8QAKxAAAgECBAQFBQEAAAAAAAAAAQIDABEEBRIhEBNBgTEyUWGCFRZSU3GS\\/9oACAEBAAE\\/AMyzPG4fGTpFK4VWr63mX73rIcxxmKxxSaYsgjNYnKIsRNNJK8u77BSLV9v4IrfXPWXZbFgcUssRcgowbVUgHMO7+HQ0Fv1fuaj81SqDKd37GlUbbN3JpPNUqrzCLH\\/VqjQEene9BQKmZecSVT5JqpHgBAUAE+i24Pq5pUXt7GlFupPCV9E3it\\/drUJ0vu8YHQh70GVr6WB\\/hqa4lNi3Zb0kUjKDrA+PCcKXJIao5NHgrGla\\/SpHIYiwNcw\\/iKjJJ3FqkicuSKEb9TSKQa\\/\\/xAAaEQACAgMAAAAAAAAAAAAAAAABAgMRADAx\\/9oACAECAQE\\/AFeIKLXJCpa15r\\/\\/xAAbEQACAQUAAAAAAAAAAAAAAAABAgMAESIwMf\\/aAAgBAwEBPwBkmJNmqMMFy7r\\/AP\\/Z\",\"thumbnailHeight\":480,\"thumbnailWidth\":119},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"b6EPRGK6A3p12yLFgIBm\\/OR\\/4RzUI271aIWsVopWIxk=\"}},\"contextInfo\":null,\"messageType\":\"documentMessage\",\"messageTimestamp\":1771337360,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:20.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:09:21'),
(22114, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164102144045259@lid\",\"pushName\":\"jorgekit\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345487038_267355025685293_4099877007898174180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNOiepYrq8udeFZ4boo_HRynnMozI-WZNdNL8O6bPZBw&oe=69A183CF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:21.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:09:21'),
(22115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164102144045259@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345487038_267355025685293_4099877007898174180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNOiepYrq8udeFZ4boo_HRynnMozI-WZNdNL8O6bPZBw&oe=69A183CF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:21.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:09:22'),
(22116, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A516F0DF42901D23AE28C78B0A5250D7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771337393355,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:53.356Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:09:53'),
(22117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A55D190533230E7A7069EF2592CDA7C0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771337393361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:53.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:09:53'),
(22118, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A574F9263ACF3C20FD5199ECDF763074\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771337393349,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:09:53.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:09:54'),
(22119, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"272425547726933@lid\",\"fromMe\":true,\"id\":\"A5765431BC3177684CB2CD5D0436DC53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":7},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771337467,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:11:07.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:11:08'),
(22120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"272425547726933@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:11:07.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:11:08'),
(22121, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"272425547726933@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:11:08.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:11:09'),
(22122, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"272425547726933@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:11:12.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:11:12'),
(22123, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"272425547726933@lid\",\"fromMe\":true,\"id\":\"A5CA76CA143863163907CCBFE430A74F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Bomdia Marcelo\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":11},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771337472,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:11:12.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:11:12'),
(22124, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"272425547726933@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:11:12.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:11:14'),
(22125, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164102144045259@lid\",\"fromMe\":true,\"id\":\"A5EA42FD0855FB678BEB020A65997C7D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771338467,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:47.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:27:47'),
(22126, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164102144045259@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:47.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:27:47'),
(22127, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164102144045259@lid\",\"pushName\":\"jorgekit\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345487038_267355025685293_4099877007898174180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNOiepYrq8udeFZ4boo_HRynnMozI-WZNdNL8O6bPZBw&oe=69A183CF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:47.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:27:48'),
(22128, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164102144045259@lid\",\"id\":\"A5EA42FD0855FB678BEB020A65997C7D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771338467886,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:47.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:27:48'),
(22129, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164102144045259@lid\",\"fromMe\":true,\"id\":\"A527DC5ABEEA2DAD430003B357E33AB5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/590419542_2321831371661234_1033289147145217077_n.enc?ccb=11-4&oh=01_Q5Aa3wF2y_I6laQIk45whZzcbV6WCwfRvobiMQR93gYf6ljDXg&oe=69BBD10E&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/590419542_2321831371661234_1033289147145217077_n.enc?ccb=11-4&oh=01_Q5Aa3wF2y_I6laQIk45whZzcbV6WCwfRvobiMQR93gYf6ljDXg&oe=69BBD10E&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771338468452\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771338469,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:49.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:27:50'),
(22130, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164102144045259@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:49.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:27:50'),
(22131, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164102144045259@lid\",\"id\":\"A527DC5ABEEA2DAD430003B357E33AB5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771338470031,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:50.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:27:50'),
(22132, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164102144045259@lid\",\"pushName\":\"jorgekit\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345487038_267355025685293_4099877007898174180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNOiepYrq8udeFZ4boo_HRynnMozI-WZNdNL8O6bPZBw&oe=69A183CF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:50.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:27:51'),
(22133, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164102144045259@lid\",\"id\":\"A5EA42FD0855FB678BEB020A65997C7D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771338479300,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:59.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:27:59'),
(22134, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"164102144045259@lid\",\"id\":\"A527DC5ABEEA2DAD430003B357E33AB5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771338479292,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:27:59.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:27:59'),
(22135, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164102144045259@lid\",\"presences\":{\"164102144045259@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:28:02.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:28:02'),
(22136, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"164102144045259@lid\",\"fromMe\":false,\"id\":\"AC6DF2566847FA5DBF287E6C888D50A5\"},\"pushName\":\"jorgekit\",\"message\":{\"conversation\":\"bom dia bom feriado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"D\\/bY9c0l9tP84Z5Ep3m08JqC\\/lcD0RmdfPkVEt\\/BuPY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771338491,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:28:11.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:28:11'),
(22137, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164102144045259@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345487038_267355025685293_4099877007898174180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNOiepYrq8udeFZ4boo_HRynnMozI-WZNdNL8O6bPZBw&oe=69A183CF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:28:11.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:28:11'),
(22138, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"164102144045259@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:28:11.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:28:12'),
(22139, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"164102144045259@lid\",\"pushName\":\"jorgekit\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/345487038_267355025685293_4099877007898174180_n.jpg?ccb=11-4&oh=01_Q5Aa3wFNOiepYrq8udeFZ4boo_HRynnMozI-WZNdNL8O6bPZBw&oe=69A183CF&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:28:11.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:28:12'),
(22140, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C13874CB6F4A324295\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771339544535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:45:44.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:45:45'),
(22141, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB08B39548D0D46F5192C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771339544544,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:45:44.544Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:45:45'),
(22142, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0C9579E480276164E40\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771339544559,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:45:44.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:45:51'),
(22143, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB098D221CD6AFE6D9718\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771339544552,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:45:44.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:45:51'),
(22144, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:46:55.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:46:56'),
(22145, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A552052C4FD97B87DBA35C93685EBF8B\"},\"pushName\":\"Erick\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/597281471_4707166852843942_735702320023973428_n.enc?ccb=11-4&oh=01_Q5Aa3wFlB_ZnGgi9odVziRvF83T9Dopa_8CuFR03tDJ3R6D9yg&oe=69BBFBD2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"f12XtKt7zvrCt4RziVFzCPpBuF2eFCZYzt18+YL9E50=\",\"fileLength\":\"72994\",\"height\":1355,\"width\":395,\"mediaKey\":\"Akt7cyRaIVLgfPrR2+SEzLXXdSfJ5zXRDlSCJLreY58=\",\"fileEncSha256\":\"+k+6fVAlWbN1zqEajwmccIlA4V2fFrdUd49Dm21KlOA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/597281471_4707166852843942_735702320023973428_n.enc?ccb=11-4&oh=01_Q5Aa3wFlB_ZnGgi9odVziRvF83T9Dopa_8CuFR03tDJ3R6D9yg&oe=69BBFBD2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771339614\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAArAAEBAQEBAAAAAAAAAAAAAAAAAQIDBgEBAQAAAAAAAAAAAAAAAAAAAAH\\/2gAMAwEAAhADEAAAAPR4tKo4G7OajthZaozNaMgsCg\\/\\/xAAjEAABBAEEAQUAAAAAAAAAAAABAAIREiEQEzFBMgMiUWFx\\/9oACAEBAAE\\/AFWXTYoKH5yFUTPekutwveDhvKafVEiis20wVuN+1utb86G8YcECVZ0+KkHnT9EqAR4JnHEIOknSyM9LKE9r\\/8QAFhEAAwAAAAAAAAAAAAAAAAAAECCB\\/9oACAECAQE\\/ADH\\/AP\\/EABYRAAMAAAAAAAAAAAAAAAAAABAggf\\/aAAgBAwEBPwA1\\/wD\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"scansSidecar\":\"lj5iTl0kyeGtpUlHcQQixwBPJu3fN\\/mvZOh2DBSKHM5dchZjNliA9g==\",\"scanLengths\":[4053,36637,14865,17439],\"midQualityFileSha256\":\"ZqxIfrDypM8KJtrCVqQJKcWZAr8Q+BeqV3aO9ahH3k4=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oANMUpAlvCnLS9GEQLidmAjMynfMV5ulsQ1OMJrvj3c=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771339615,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:46:55.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 11:46:56'),
(22146, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv7ZSNEbqYhtotkP8VErTokDCNA7G0-l6fLN8-gmDm2g&oe=69A17BA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:46:56.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:46:57'),
(22147, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wGv7ZSNEbqYhtotkP8VErTokDCNA7G0-l6fLN8-gmDm2g&oe=69A17BA5&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T11:46:55.869Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 11:46:58'),
(22148, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00D0E376BC68BF13D3D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Olá, carol!*\\r\\n\\r\\nPassando para dar um lembrete amigável 😊\\r\\n\\r\\nSua mensalidade vence em *3 dias*, no dia *{data_vencimento}*.\\r\\n\\r\\n💰 *Valor:* R$ {valor}\\r\\n\\r\\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\\r\\n\\r\\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771340508,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:01:48.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:01:49'),
(22149, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB00D0E376BC68BF13D3D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771340509385,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:01:49.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:01:49'),
(22150, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC79C946E6CC02AF08CA357737CB9E46\"},\"pushName\":\"Vanderlei\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/587382251_887862100884946_2275774694576361554_n.enc?ccb=11-4&oh=01_Q5Aa3wEKWV7cGMtu2QT_2MFIa_JHchyoRQxmHI0l0witgtO6zw&oe=69BBFA63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"t\\/DWnrMBAQWV9R7Gl1Y53cWNG3mK9XPbAcmt055Yz7o=\",\"fileLength\":\"89696\",\"height\":899,\"width\":1599,\"mediaKey\":\"+fWLY7r3C8D2DNLBkfn7e51mPNKBQrLGWc\\/bTt9b1QQ=\",\"fileEncSha256\":\"i6lsh9pxMNgyIJ00CFnwVhgfwcvDzjml4ZJ7H03xRdo=\",\"directPath\":\"\\/v\\/t62.7118-24\\/587382251_887862100884946_2275774694576361554_n.enc?ccb=11-4&oh=01_Q5Aa3wEKWV7cGMtu2QT_2MFIa_JHchyoRQxmHI0l0witgtO6zw&oe=69BBFA63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771340532\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAvAAADAQEAAAAAAAAAAAAAAAAAAgMEAQEBAQEBAQEAAAAAAAAAAAAAAAIBBQME\\/9oADAMBAAIQAxAAAACTyt1KeY7VFUXPXLnnXTltV37PpRM8mtlaeRADmOAHah9Tkgl\\/\\/8QAIhAAAwACAgEEAwAAAAAAAAAAAAECAxESIVETMUFhBBAz\\/9oACAEBAAE\\/AOC47IxdJ7G+LKypInKtFPaGN9nqJz0QrSl8iedbbJ\\/HvLL6KwNr7RSy610VNJLbN6+Cf5vRGRrHK+zE32mK2rS2XZlueJVpo9\\/kw0ha7naIpb90Xp+zW0eomVRTOSNs2\\/LOT8s5V5Ym\\/P6Yz\\/\\/EABoRAQEAAwEBAAAAAAAAAAAAAAEAAxEhMRD\\/2gAIAQIBAT8AF1bD2Em5ctEp9x+WW\\/\\/EABgRAQEAAwAAAAAAAAAAAAAAAAEQACAh\\/9oACAEDAQE\\/AI0ce7f\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"KIqkDFCEbzOa\\/wAKczb+3tvOELGk+E\\/QRvDl7FJFgKma5dk37xedKQ==\",\"scanLengths\":[15157,37297,13321,23921],\"midQualityFileSha256\":\"LJL1EsxWSCMVwRKkqAqNkvKpen3QNb8jpcdQIWR1XuU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OiXWDkFLMjCUX9EITahFd7r7qXWLaaI4dUC4fVs\\/F50=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771340533,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:13.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:02:13'),
(22151, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:13.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:02:14'),
(22152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:13.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:02:14'),
(22153, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wGaQdZwOs7M87CqejvGlwln6KL7pF5LtnZcn-g2QXMoOA&oe=69A179D9&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:13.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:02:14'),
(22154, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A526EBAE652406F82FA843B78BC9E5C2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771340578118,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:58.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:02:58'),
(22155, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:59.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:02:59'),
(22156, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A526EBAE652406F82FA843B78BC9E5C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595544414_1438226960989930_4169673045207579539_n.enc?ccb=11-4&oh=01_Q5Aa3wEbg4V1UBk6ZT2Myfc-FamvA1Z6ZgNLbp9gTGPWEKbfug&oe=69BBE36C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"7d1MqWLjC906vAN9O3m+Z0UdTDfHCkV64BRKGAuN9Bw=\",\"fileLength\":\"14667\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"uIdnAyNmRIizL3oyHQ1FH+Bzxdc8YHzfWc5boIc+wSk=\",\"fileEncSha256\":\"n+REKuASA40FyCsuJFjsGND3q5Lr7n0MEPsptqmss70=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595544414_1438226960989930_4169673045207579539_n.enc?ccb=11-4&oh=01_Q5Aa3wEbg4V1UBk6ZT2Myfc-FamvA1Z6ZgNLbp9gTGPWEKbfug&oe=69BBE36C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771340572\",\"waveform\":\"AAUYBxcaExIUY1hcWVFRT1o9EBATAgQSDTxaSRETDBVKVUNQSk0kQFdXRhoSCAMGEAg\\/T1NJMVkmPy5PT1tSFg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771340579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:59.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:02:59');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:02:59.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:03:00'),
(22158, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A526EBAE652406F82FA843B78BC9E5C2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771340616719,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:03:36.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:03:37'),
(22159, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A526EBAE652406F82FA843B78BC9E5C2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771340616728,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:03:36.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:03:37'),
(22160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A526EBAE652406F82FA843B78BC9E5C2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771340617175,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:03:37.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:03:37'),
(22161, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:03:46.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:03:46'),
(22162, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:03:56.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:03:56'),
(22163, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:04:00.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:04:00'),
(22164, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:04:01.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:04:01'),
(22165, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC3A18710F422DDEA752A96758CFD88F\"},\"pushName\":\"Vanderlei\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/588715199_1250758213645981_1278665023436206259_n.enc?ccb=11-4&oh=01_Q5Aa3wG0LrvDJDgwQVgeJc4UqUDVSPcMovkzrm7aXHVWA_IyQQ&oe=69BBF46D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"B0BoFnzlW0WdtY6lZb7cRKGZIRJ\\/HBdfWUifbrLcBjs=\",\"fileLength\":\"31169\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"YNEL07xwKcogCVvdc+lQpjMCHsgIMabP+WyC\\/TMzxDY=\",\"fileEncSha256\":\"rNrC9X0NBVpvlSWUdB4DGtLqUfIYtywk4cJ+8x2pQWs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/588715199_1250758213645981_1278665023436206259_n.enc?ccb=11-4&oh=01_Q5Aa3wG0LrvDJDgwQVgeJc4UqUDVSPcMovkzrm7aXHVWA_IyQQ&oe=69BBF46D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771340628\",\"waveform\":\"ABxDQ1BHSEhELxMOBwpUT0owSUhLAjFLR1FUUhtXPzk4DBMBREwbT1E\\/TUQADwAaETg6SUBJPUNOOiIWBBYAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fJxDlrgzX68fizRs5h0fkg\\/W96VgFHy7x4lr7YhX\\/n4=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771340641,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:04:01.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:04:01'),
(22166, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:04:01.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:04:02'),
(22167, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:04:01.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:04:02'),
(22168, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A58024B20F1EDBACB40BD062DDED7BE2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592146106_1599372367793926_1108022120050746612_n.enc?ccb=11-4&oh=01_Q5Aa3wF_gWFxFh-sIIAK29NhxOo7tam-slXsgC3Ri4nzH_mr4w&oe=69BC0BF9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"uomTJ85e+sQapipaZwBRoW4WYATphLZe3f1VUc6nqZs=\",\"fileLength\":\"10190\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"Pgl4GgqmxMNVMz8bFMPy4hYNbxNE6FwWWiZbJ7nbwH0=\",\"fileEncSha256\":\"4aAHp34mOBJP8jSfccmvRcvOImRmYoaZDMscKy2SEtE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592146106_1599372367793926_1108022120050746612_n.enc?ccb=11-4&oh=01_Q5Aa3wF_gWFxFh-sIIAK29NhxOo7tam-slXsgC3Ri4nzH_mr4w&oe=69BC0BF9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771340750\",\"waveform\":\"ABYXKSMNDTxgY1tVVlpSS1lOOllOQkFQVl0lSExVOEhJNUBMYGNRV1E4LkZRUExPX1NPEVNTUEQ9K0dDVihQQA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771340753,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:05:53.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:05:53'),
(22169, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:05:53.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:05:53'),
(22170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:05:53.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:05:54'),
(22171, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A58024B20F1EDBACB40BD062DDED7BE2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771340753935,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:05:53.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:05:54'),
(22172, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A58024B20F1EDBACB40BD062DDED7BE2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771340764968,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:06:04.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:06:05'),
(22173, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A58024B20F1EDBACB40BD062DDED7BE2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771340765883,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:06:05.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:06:06'),
(22174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC587C6D35D680E0EED1529E0A44BB5A\"},\"pushName\":\"Vanderlei\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/587369215_862616156831954_2432771265605485540_n.enc?ccb=11-4&oh=01_Q5Aa3wFulInKfrLJKmHZZTJUaEoGxCtPFFJ3t-BqESGrMPJ4mA&oe=69BBFA55&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"3RhR4RJBg1s6c8Ami2kb2x2mWilA4bPi1OrWNPli3hE=\",\"fileLength\":\"73546\",\"height\":899,\"width\":1599,\"mediaKey\":\"8XuX9BrNod\\/4caULUxqfg3O0s\\/OyTJjfz3XbkH42lyk=\",\"fileEncSha256\":\"QSjJ63bN8qnGEzU2vnoYot2+SCaMmVJRSwKY2Cyf1Ec=\",\"directPath\":\"\\/v\\/t62.7118-24\\/587369215_862616156831954_2432771265605485540_n.enc?ccb=11-4&oh=01_Q5Aa3wFulInKfrLJKmHZZTJUaEoGxCtPFFJ3t-BqESGrMPJ4mA&oe=69BBFA55&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771340818\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAwQCAQUBAQEBAQEAAAAAAAAAAAAAAAABBQME\\/9oADAMBAAIQAxAAAADInWln06nzONhCRWtDahfCy+q\\/sg504xqQanKecoM7S50DoBxoR\\/\\/EACMQAAICAQMEAwEAAAAAAAAAAAABAhESA0FSEyEyUSAiMUL\\/2gAIAQEAAT8AuO6EJiZY2NjZlkU4NPKx6Opjkn2ZUnX2oi5905DyjJVOxuagpZi\\/EQmkzqQex1bVGacao7UzFIwQmJx3mkKUOaM4JeaFqx5IU4v+kXHmi480dWK3Nby+Nv2W\\/Yj\\/xAAaEQEAAwEBAQAAAAAAAAAAAAABAAIREiBB\\/9oACAECAQE\\/AOirjOhmmwRm0fpMpErNDz\\/\\/xAAfEQACAQIHAAAAAAAAAAAAAAABAgADMRETICJBUWH\\/2gAIAQMBAT8AamXBI4honuZBvjChS8ZD7CHm+EM2n\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"DRVb6JasH8wrvosHoooAWvUQO5pLXto3LziSM92ZQ0gcAyswORdqvw==\",\"scanLengths\":[10202,35263,8403,19678],\"midQualityFileSha256\":\"qfJdrPI0Tn22cq\\/CQbZdfVV+lyS85dYbTYLdeFNKclw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bHwyiFbFA+521cJL5m82Ao2\\/eDSNYf9Hj\\/yoJw\\/AiJI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771340819,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:06:59.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:07:00'),
(22175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:06:59.919Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:00'),
(22176, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:00.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:01'),
(22177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:00.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:02'),
(22178, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:01.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:02'),
(22179, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:04.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:04'),
(22180, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:05.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:05'),
(22181, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC3E717A7A2CB54D5DEF8A9CCB75170D\"},\"pushName\":\"Vanderlei\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637832570_1423152659840725_1423119652786167738_n.enc?ccb=11-4&oh=01_Q5Aa3wGOdzNdY3UZbfLghz_PCM5LdNoW7f5QtjP1MopLqSGwKQ&oe=69BBD915&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"j7IkEFZiDm05o\\/4pkFHtMeETpxwm\\/aTnr\\/AvIQuWNYY=\",\"fileLength\":\"5529\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"A+u7fTT\\/DqJ+Q4MO1EIWpH65ceIypouk9jr5\\/NCTiXQ=\",\"fileEncSha256\":\"iZyRkRaAwwo8+UN1+t3t50FzOcO6FLD62jYKXlhwhcw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637832570_1423152659840725_1423119652786167738_n.enc?ccb=11-4&oh=01_Q5Aa3wGOdzNdY3UZbfLghz_PCM5LdNoW7f5QtjP1MopLqSGwKQ&oe=69BBD915&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771340823\",\"waveform\":\"AAAAAAACBw4VHEROT1JQUVJTVVZWVFJSTzssNEpOTUxUVkg8OTlLUVBRUlFGMSEdEAQEAAAAAAAAAAEEBQIAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DlKXAAOl9\\/+oYAztFA0M6fy16zocPiqAIpMWijP2VuU=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771340825,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:05.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:07:05'),
(22182, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:05.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:06'),
(22183, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:07:05.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:07:07'),
(22184, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:43.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:11:44'),
(22185, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC2EC0F5221B3B48AEB9CC48636E9B33\"},\"pushName\":\"Vanderlei\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/34735483_1698538757791244_164491660113942300_n.enc?ccb=11-4&oh=01_Q5Aa3wEqhnPvu99Z8ICfQryb87eiEsq1HtiocD2WAMKb3TwUWw&oe=69BBE638&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Ou8nAog8pJwXTejHEh9Z57pUsLgNLlZbhTuimW0tuBo=\",\"fileLength\":\"35091\",\"height\":899,\"width\":1599,\"mediaKey\":\"UVLI+TglMB6WOz3taLq01eKTDMOR\\/15JNbFrC8LAKO0=\",\"fileEncSha256\":\"rJRkx4PK1GY9gMXLIVD8LEdZIBpcCkUzH66aPee9dxs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/34735483_1698538757791244_164491660113942300_n.enc?ccb=11-4&oh=01_Q5Aa3wEqhnPvu99Z8ICfQryb87eiEsq1HtiocD2WAMKb3TwUWw&oe=69BBE638&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771341102\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAAIDAQAAAAAAAAAAAAAAAAADAQIFBP\\/aAAwDAQACEAMQAAAAg0n1M3Q8aCHFWK9mcGedfDc69nczWTp5AiLNn7U8gDO0xwbTZQOzkMQJZ\\/\\/EAB8QAAMAAQUAAwAAAAAAAAAAAAABAhEDEBIxUTJBQv\\/aAAgBAQABPwBkiYmZMjY2c0SxMdaS\\/Q2vpjY3tNE0KzMvtHMdHIVE0KhUvRUvTkZMi1JW2WZfpLZPW1Gr8j\\/\\/xAAbEQEBAAIDAQAAAAAAAAAAAAAAAQIRAxAxMv\\/aAAgBAgEBPwDFWlStrW+sE8c3y\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAACARIDERAxMv\\/aAAgBAwEBPwDJBXZogZCUKFeGG7MPo\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"35SO2TvLWOKysBC7oDMqklJGLkbo4bOq4pF7HR0vBw8spyktFiAx2A==\",\"scanLengths\":[7270,17209,1911,8701],\"midQualityFileSha256\":\"uUem6yaPuS8HkpmJbfTOdAqciXx6ptwzoaywHZbrZY0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IOZHi+ao37e18o2gPBY73uVMB+rrx8Tt6Zrok91g20Q=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771341103,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:43.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:11:44'),
(22186, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:44.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:11:44'),
(22187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:43.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:11:45'),
(22188, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:52.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:11:52'),
(22189, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A512D3E1E6059CE638252F644D4720A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590239382_1877547112892712_4395496592932481382_n.enc?ccb=11-4&oh=01_Q5Aa3wGtqVhlXlnKcfbWAw_Sjq6ik7wzIaStLxAvT1tM67nB2A&oe=69BBEF25&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"T7n0vghM1\\/hgQq\\/\\/JrKjLOC0Lto8pN+kLxUmKUs3fmI=\",\"fileLength\":\"9905\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"ef0Pg33RcLbOhB9TFkA2Jp8r0Rfooi3W2Gb9wF2Qou0=\",\"fileEncSha256\":\"V3YCfiVr6iA2SDbZNtlbOLJoeT0MwYppRrPl+7Tgs3Y=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590239382_1877547112892712_4395496592932481382_n.enc?ccb=11-4&oh=01_Q5Aa3wGtqVhlXlnKcfbWAw_Sjq6ik7wzIaStLxAvT1tM67nB2A&oe=69BBEF25&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771341109\",\"waveform\":\"ACEpMDMxNy80KiAdHRgaFzpbWT0eK1NjRVZdXmBYY2NZTTBFSUxcYFApWGBWURtXVVBAVEI4OVBZWlNaXzVcWg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771341112,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:52.444Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:11:52'),
(22190, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:52.761Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:11:52'),
(22191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A512D3E1E6059CE638252F644D4720A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771341112802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:52.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:11:53'),
(22192, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A512D3E1E6059CE638252F644D4720A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771341118500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:58.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:11:58'),
(22193, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A512D3E1E6059CE638252F644D4720A0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771341119447,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:11:59.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:11:59'),
(22194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:12:31.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:12:31'),
(22195, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC8639812AB8188A4FF50BDC6CDC1222\"},\"pushName\":\"Vanderlei\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/521778920_1630722708058989_8507771699953865390_n.enc?ccb=11-4&oh=01_Q5Aa3wHFEciPV4c7fVEmKKfm06cWz5hX4flxK1F7RnOuUhIkLQ&oe=69BBFF14&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"241n4jWC6FBOI\\/C\\/tJbTT7bBzReycYKSVLy5AlrVAo8=\",\"fileLength\":\"48134\",\"height\":899,\"width\":1599,\"mediaKey\":\"Seddw82AxZEfAfO1pse0Hz+bRs5gctq59Vxz+9+3i6I=\",\"fileEncSha256\":\"tfRACyVYkc4g2paWXZKajbB3tRgPJXfsKv8yIme7kgA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/521778920_1630722708058989_8507771699953865390_n.enc?ccb=11-4&oh=01_Q5Aa3wHFEciPV4c7fVEmKKfm06cWz5hX4flxK1F7RnOuUhIkLQ&oe=69BBFF14&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771341150\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAwQCAQUBAAMBAQEAAAAAAAAAAAAAAAECAwQABf\\/aAAwDAQACEAMQAAAASYl9PDf2DlE9Jfn5U+pqZyyhfA06L2QMaNeZwBwnqd5jgG3eweWugEOgo\\/\\/EACIQAAIBAwMFAQAAAAAAAAAAAAABAgMREgRSUxATFCFRIP\\/aAAgBAQABPwC+Lv8ADyIO8hainuPKpbhaqjuJVoSll3PRSkmm1K45DZaW0s+MxlxDhPjLOz9GnuqfSMiMhSMjIbXwv0jNimxTYqjM2ZGRkIiIX5\\/\\/xAAbEQEBAAEFAAAAAAAAAAAAAAABAAIQERIgIf\\/aAAgBAgEBPwDH24k4hMNvLodP\\/8QAHBEAAwADAAMAAAAAAAAAAAAAAAECAxESEBNB\\/9oACAEDAQE\\/AHKez1QThj4ylqqLgeNnByUPz\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"SQK7\\/eA8Kgc5qFcXpjWtBQWpD3Pl0SXKbyAa5wmiWaNzuEs1XYLdog==\",\"scanLengths\":[8194,22665,3490,13785],\"midQualityFileSha256\":\"4xvAKozrnwAS8PYwghXRF3+8\\/QnZYG6FOg2ST7N3ctE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wRPznty9yaldoGRmktCayFsnE4biMDU+7L8NXGvpE90=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771341151,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:12:31.710Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:12:31'),
(22196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:12:31.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:12:32'),
(22197, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:12:32.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:12:32'),
(22198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A5D337C40B9B6DAAC0019BCAC4315E2C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/598147269_839208629124504_1645356746945377548_n.enc?ccb=11-4&oh=01_Q5Aa3wFwDYOYRqhj6CK6BwyCvaIraiSP6dtFf2RIOspawibM9A&oe=69BBF106&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"gS73bT3QtDaCIRujSNrKpLRVzSmNuInS5M2mH8\\/Bz2I=\",\"fileLength\":\"4490\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"zLSfKB2hUk3X\\/89hs0433Lpj2Qs1Hs8gD09wcuFuyPI=\",\"fileEncSha256\":\"NYabL9ogWaa9lK6VGXVN3JMVPRzGjnGP7pMKT77OJ8I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/598147269_839208629124504_1645356746945377548_n.enc?ccb=11-4&oh=01_Q5Aa3wFwDYOYRqhj6CK6BwyCvaIraiSP6dtFf2RIOspawibM9A&oe=69BBF106&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771341216\",\"waveform\":\"AA0XGBUODhARExUXGTRPXGNjTS9GWmBjY2JiYl9UUVRENEBDN0VgYmJeVkg5KjxJTE1NTEtLQCMrSEM5JSpNVw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771341217,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:13:37.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:13:38'),
(22199, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:13:37.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:13:38'),
(22200, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A5D337C40B9B6DAAC0019BCAC4315E2C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771341218235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:13:38.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:13:38'),
(22201, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:13:37.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:13:39'),
(22202, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A5D337C40B9B6DAAC0019BCAC4315E2C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771341226102,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:13:46.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:13:46'),
(22203, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A5D337C40B9B6DAAC0019BCAC4315E2C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771341229287,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:13:49.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:13:49'),
(22204, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:00.052Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:00'),
(22205, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:01.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:01'),
(22206, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:02.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:02'),
(22207, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC7C5809A11FD2FE97ABB57073951C03\"},\"pushName\":\"Vanderlei\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/35828056_1597781994802396_3309619042932950968_n.enc?ccb=11-4&oh=01_Q5Aa3wHo0ogXwi6CQx5J2yML7eVECzaNghQ113AzzpycYYgRfA&oe=69BBE4CE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"XG5JkBKTT+p7xOl25yiXNME9yLVxFPi9tQqirbK\\/\\/fU=\",\"fileLength\":\"2969\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"yOk33cNwzeFW0EPMGxQr18QwSi41VdLCjWteURkbqp4=\",\"fileEncSha256\":\"d+NcQ33lZZxW602u7MIomvklD1+yZzk27mMGQB1z0i0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/35828056_1597781994802396_3309619042932950968_n.enc?ccb=11-4&oh=01_Q5Aa3wHo0ogXwi6CQx5J2yML7eVECzaNghQ113AzzpycYYgRfA&oe=69BBE4CE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771341301\",\"waveform\":\"AAAAAAABDx0jJCYqLSsnIyIhIiMjHxsaGRkaGiIpNEFORj45NzVBTVBMSUI8ODc3P0ZJS0pCOjs\\/PjkzOT82Mw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Le35tIAwQOn9qKxgqNAVZKSux9ocbJeBpP3A6jhSAEk=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771341302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:02.415Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:15:02'),
(22208, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"pushName\":\"Vanderlei\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:02.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:03'),
(22209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:02.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:03'),
(22210, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC7C5809A11FD2FE97ABB57073951C03\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:11.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:15:11'),
(22211, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:11.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:12'),
(22212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:13.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:13'),
(22213, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"presences\":{\"157144297013315@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:18.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:18'),
(22214, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:19.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:19'),
(22215, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:19.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:19'),
(22216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"ACC369E84D9E4D8B7EC314EB532F06AD\"},\"pushName\":\"Vanderlei\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637904694_879936691508316_4939499894753309295_n.enc?ccb=11-4&oh=01_Q5Aa3wEXUen-azCsCcl1U0GkGy2UZhBk7hrNpj-9rdMqJGZEmQ&oe=69BC0639&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"VgpAZ\\/rOZXzfx1HcahXWw1JiwsP4fsYB32gPXlmWYH4=\",\"fileLength\":\"12113\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"Lgfw1YFLsysLGThvfj1ap24U83VLfjap5zflK\\/P8boA=\",\"fileEncSha256\":\"di9G4Oor+FhHEN+EumnFiWRwBSsivJpDrBs+sUuq9x4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637904694_879936691508316_4939499894753309295_n.enc?ccb=11-4&oh=01_Q5Aa3wEXUen-azCsCcl1U0GkGy2UZhBk7hrNpj-9rdMqJGZEmQ&oe=69BC0639&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771341315\",\"waveform\":\"AAAADSctS09FSUlDR0Y2Uk9LUElLTjw\\/N1E4U01QS09DNDA3OU5CVjtNUC9WR1FPRy4RKBsnDBImIT8jNA4REA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Wu8dOAikUyL6exBE0mhmb9TfjUSD5MTsJ9L6csQUVyw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771341318,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:19.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:15:20');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:15:19.396Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:15:20'),
(22218, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:28:59.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:29:00'),
(22219, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:28:59.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:29:00'),
(22220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":false,\"id\":\"AC7037628B864B209AC4116231433481\"},\"pushName\":\"Elci Brezolin\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637843073_1391853012152210_1367044724847535992_n.enc?ccb=11-4&oh=01_Q5Aa3wF_LHHg0dwSYOiyG9mky8At62_AK6EPtWn1qU3fYhUdFQ&oe=69BC0C1B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"YOUDFfHWnfpjQkVZAsTkAiUp7vPp3v7FZz1z9EB1jlY=\",\"fileLength\":\"90726\",\"height\":2305,\"width\":635,\"mediaKey\":\"rGWfd7QolYknUDB\\/l48B\\/c+fXFu6TmIZHq1iX71uMJg=\",\"fileEncSha256\":\"GDUznWD4BFBpyX6LNWPOQ6ZRmRcXBJrh4qpKOrUzGsU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637843073_1391853012152210_1367044724847535992_n.enc?ccb=11-4&oh=01_Q5Aa3wF_LHHg0dwSYOiyG9mky8At62_AK6EPtWn1qU3fYhUdFQ&oe=69BC0C1B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771342138\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAFAMBIgACEQEDEQH\\/xAArAAEAAwEBAAAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPSzgNwce9rkJGG\\/F2EgrNLFgVsAH\\/\\/EACEQAQABBAICAwEAAAAAAAAAAAECAAMQERIhIkIxMlFx\\/9oACAEBAAE\\/AAX2y8zfm1GSv3lUfikZTd1CF2J4wH+tG9d0wRyX+MpbqM2XriYcl41bvRANO8NuH60AY5d1qe+zDY73yz\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":[]},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UhGmMI8b+6E1wZb1bU2r6N+ZXXbfa6HxbkyUtYJC+EA=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771342139,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:28:59.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:29:00'),
(22221, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr_OJpy9uZwQEQ51DAfRJSU1fo5LNqwTntV-aoREbdyw&oe=69A18425&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:29:00.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:29:01'),
(22222, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"pushName\":\"Elci Brezolin\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr_OJpy9uZwQEQ51DAfRJSU1fo5LNqwTntV-aoREbdyw&oe=69A18425&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:29:00.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:29:01'),
(22223, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr_OJpy9uZwQEQ51DAfRJSU1fo5LNqwTntV-aoREbdyw&oe=69A18425&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:29:29.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:29:29'),
(22224, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":false,\"id\":\"AC7037628B864B209AC4116231433481\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:29:28.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:29:29'),
(22225, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:40:40.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:40:40'),
(22226, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":true,\"id\":\"A541103873A6F55173CB38BAE7270414\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637942369_1458056112561848_1859791690428516692_n.enc?ccb=11-4&oh=01_Q5Aa3wGTRZchPzibldagfCNyxwpQ5exaV8Lhy7_Qr1WbKkIxtg&oe=69BBF983&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+MzNJKtbY8MG1tpDvYtTVRBaHQ7tvfbF49B0xIM6iWc=\",\"fileLength\":\"6400\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"AaSLB3yMzthzuwHIL5Bk6zeNdL79kRWxm\\/MG1JLUqPE=\",\"fileEncSha256\":\"4RFEn5s20+FXd9T1ne85xh9TFslt2dJ0iOSjLecaXDs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637942369_1458056112561848_1859791690428516692_n.enc?ccb=11-4&oh=01_Q5Aa3wGTRZchPzibldagfCNyxwpQ5exaV8Lhy7_Qr1WbKkIxtg&oe=69BBF983&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771342838\",\"waveform\":\"AAg1WGJgXUZGY2NVMC9aWVNaY1syTVxeXl5UTVFfX11aW2JgVCwFAgACCyhdXVxbSyA\\/TlBAGDpKUFBUX2FSPg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771342840,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:40:40.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:40:41'),
(22227, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:40:40.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:40:41'),
(22228, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A541103873A6F55173CB38BAE7270414\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771342841554,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:40:41.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:40:41'),
(22229, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":true,\"id\":\"A55AD4FD195E92DD556221F3595CD329\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Oii\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771342860,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:00.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:41:01'),
(22230, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:00.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:41:01'),
(22231, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr_OJpy9uZwQEQ51DAfRJSU1fo5LNqwTntV-aoREbdyw&oe=69A18425&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:01.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:41:01'),
(22232, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A55AD4FD195E92DD556221F3595CD329\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771342861774,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:01.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:41:02'),
(22233, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":true,\"id\":\"A5C2AE14C4946A047648935B82EB4F43\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637900686_2091965904709793_7980061705219823355_n.enc?ccb=11-4&oh=01_Q5Aa3wErWx-mcIqcihVk-nJ3QWCggkb1odmSqKuzJiYUPwLdyA&oe=69BBED10&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"SEa83zKoUdjYHeJ1LaRxm4LHmWhr5M4\\/pgQM31yk8Qg=\",\"fileLength\":\"5696\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"JrvNI2L7apbLP70MUJB8caB3BihSEehzoU0KSzD0E4w=\",\"fileEncSha256\":\"CEXajMF+puL2EvogcLXia+j1uc43YY6Dw0u8Dal8hME=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637900686_2091965904709793_7980061705219823355_n.enc?ccb=11-4&oh=01_Q5Aa3wErWx-mcIqcihVk-nJ3QWCggkb1odmSqKuzJiYUPwLdyA&oe=69BBED10&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771342870\",\"waveform\":\"AAcOEhIWExQ2SFNXV1lYUk0\\/OE9RUEo3O0RLSlReYl1bWFJJNCAmNzszMzk6NDkpGRkOBQEHKz9BQ0ExFzpFRw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771342871,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:11.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:41:11'),
(22234, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:11.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:41:12'),
(22235, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A5C2AE14C4946A047648935B82EB4F43\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771342871680,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:11.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:41:12'),
(22236, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wFr_OJpy9uZwQEQ51DAfRJSU1fo5LNqwTntV-aoREbdyw&oe=69A18425&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:41:11.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:41:12'),
(22237, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A541103873A6F55173CB38BAE7270414\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771343467792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:51:07.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:51:08'),
(22238, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"157144297013315@lid\",\"id\":\"A541103873A6F55173CB38BAE7270414\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771343470266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:51:10.267Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:51:10'),
(22239, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"157144297013315@lid\",\"fromMe\":false,\"id\":\"AC0F6BC0D16FA1E553710BAC07CCB508\"},\"pushName\":\"Vanderlei\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/594514137_1898593977688691_2622967163388389105_n.enc?ccb=11-4&oh=01_Q5Aa3wGtGsxBgRr8GZPhygUG_j1ezZdP7GewE9nW6o5NQG4aQQ&oe=69BA56DB&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"bykjbzha7eSxHuc4V2YfLKYxyKPRQFp\\/\\/ELWCuQBDsI=\",\"fileEncSha256\":\"VuZpxXHaVu6VogUlo0oNLV6tWdr2DMd3kfwGKYnG2D0=\",\"mediaKey\":\"jGeFNmlWV8HNx0\\/tjGLi1BPu5Qhlykn0rJzAH8xzFJw=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/594514137_1898593977688691_2622967163388389105_n.enc?ccb=11-4&oh=01_Q5Aa3wGtGsxBgRr8GZPhygUG_j1ezZdP7GewE9nW6o5NQG4aQQ&oe=69BA56DB&_nc_sid=5e03e0&_nc_hot=1771343485\",\"fileLength\":\"52456\",\"mediaKeyTimestamp\":\"1771239400\",\"isAnimated\":false,\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"stickerSentTs\":\"1771239401000\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"V64ylQG5MzG1SZG9WrN6Z1AuZldJJneKSln9sYZ8xV0=\"}},\"contextInfo\":{\"forwardingScore\":1,\"isForwarded\":true},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771343485,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:51:25.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 12:51:26'),
(22240, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:51:25.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:51:26'),
(22241, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:51:26.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:51:27'),
(22242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"157144297013315@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/190482839_1192026281324586_6724907061392574967_n.jpg?ccb=11-4&oh=01_Q5Aa3wFZ-ep9nRA0TLh-PZFqyMznD4wEIHkRODdRiXZtpmwK9g&oe=69A1B219&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T12:51:26.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 12:51:27'),
(22243, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:25:25.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:25:26'),
(22244, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:25:36.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:25:36'),
(22245, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:25:46.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:25:46'),
(22246, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:25:56.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:25:57'),
(22247, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:26:00.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:26:01'),
(22248, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:26:02.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:26:02'),
(22249, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC22960A28AFD3B21329EAA8DBCE0555\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637838739_1272002708153567_8091905104135541881_n.enc?ccb=11-4&oh=01_Q5Aa3wGU6kkllpM1pxHk9lYn5VyGio1yO5zNBLKrFxWGmtKDVA&oe=69BC14E3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"dLb9s+uniybCxrX3lBdth85vF3AIUPZLr0F2SVAqXHc=\",\"fileLength\":\"80423\",\"seconds\":35,\"ptt\":true,\"mediaKey\":\"RiS5tvgelueZyRO5rU9LpV\\/MWDVeRERpbdDJkJM6U18=\",\"fileEncSha256\":\"RltiCzY3mNR9P702AmVRhJrYHqTR3URZzxZE\\/WdpKTs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637838739_1272002708153567_8091905104135541881_n.enc?ccb=11-4&oh=01_Q5Aa3wGU6kkllpM1pxHk9lYn5VyGio1yO5zNBLKrFxWGmtKDVA&oe=69BC14E3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771345527\",\"waveform\":\"AFQ7F1UAAABISkkmHDxHBzNFLwAACDNHFwBQP0NWOlA6QTRBRE4yAEgsUys2SQokThBGMxVRSkMxTzsAUQMANQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OzOZBTv1tH\\/Qx6Ts37+HuMQrb5AXglGs2SCpywn3VkA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771345561,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:26:02.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:26:02'),
(22250, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXOa8KxHtdtjzJVNR3o9ddxbu5SI10mH6pZVh2AH89IQ&oe=69A19BF2&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:26:02.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:26:02'),
(22251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXOa8KxHtdtjzJVNR3o9ddxbu5SI10mH6pZVh2AH89IQ&oe=69A19BF2&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:26:02.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:26:03'),
(22252, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A531E49D1587A651967364A409C08053\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771346491455,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:41:31.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:41:31'),
(22253, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5E4569394D320748C1D59DDCFC749FD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771346491447,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:41:31.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:41:31'),
(22254, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5B65973A3E71F7C324199547246A82B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771346624715,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:43:44.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:43:45'),
(22255, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5497D94DA7CBB2F6B5C225EF23AFAA1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771346624705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:43:44.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:43:45'),
(22256, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:47.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:51:47'),
(22257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5AC0B9382EAAB646230C223FAEA2F6F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/m3u-ip.tv\\/browser\\/settings\\/index.html#add_playlist\",\"matchedText\":\"https:\\/\\/m3u-ip.tv\\/browser\\/settings\\/index.html#add_playlist\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771347107,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:47.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:51:47'),
(22258, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:47.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:51:48'),
(22259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5AC0B9382EAAB646230C223FAEA2F6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771347107650,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:47.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:51:48'),
(22260, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:48.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:51:48'),
(22261, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5B39A10A0B293496746B7752B69F94D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"http:\\/\\/assistz.top\\/get.php?username=azcyp14x&password=618cmczt&type=m3u_plus&output=ts\",\"matchedText\":\"http:\\/\\/assistz.top\\/get.php?username=azcyp14x&password=618cmczt&type=m3u_plus&output=ts\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771347108,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:48.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:51:49'),
(22262, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:48.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:51:49'),
(22263, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5B39A10A0B293496746B7752B69F94D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771347108727,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:51:48.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:51:49'),
(22264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A56706DC1C8A5E48FE44182704E8AB13\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/12086104_955580890317497_2697706564412231275_n.enc?ccb=11-4&oh=01_Q5Aa3wEelhq8gAciCf52tqYXzrLIP4Vp80aljBdZPoedRWPvgQ&oe=69BBF867&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PJ7QQBpaoxDEzmuZ5HuzJx1jaYzHs9rYQvRtviJubjY=\",\"fileLength\":\"24775\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"gxIQeF3EfOLkNCSfSzXSDSM2kcqn+UxFe3ftXVrlJos=\",\"fileEncSha256\":\"iumollkCQFUd3nHmU9b0Uu2fSKD2ZYb0HTXyknua3M0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/12086104_955580890317497_2697706564412231275_n.enc?ccb=11-4&oh=01_Q5Aa3wEelhq8gAciCf52tqYXzrLIP4Vp80aljBdZPoedRWPvgQ&oe=69BBF867&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771347111\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AFpSVF5HUlEJUl45CBQJHlxaVFRUQzhUNU1RSj5JVypXTVtRJDlKLAwKCkxMXkpCUGBaUyFRRyM0VENMSEhJXw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771347120,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:00.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:52:00'),
(22265, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:00.520Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:52:00'),
(22266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:00.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:52:01'),
(22267, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A56706DC1C8A5E48FE44182704E8AB13\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771347120837,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:00.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:52:01'),
(22268, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:20.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:52:20'),
(22269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:26.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:52:26'),
(22270, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:26.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:52:26'),
(22271, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:26.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:52:27'),
(22272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC40E04DA7B1F3B3B7F01B4AB2DE99DE\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"Showwwwww vc e foda irmão\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"g6ER8xXoyLZtX2vItN4TRBfRUng8qCLoxr\\/ZjcNXSV4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771347146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:52:26.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:52:27'),
(22273, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"presences\":{\"267598054875383@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:50.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:56:50'),
(22274, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:51.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:56:51'),
(22275, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:51.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:56:51'),
(22276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"pushName\":\"Alex Glauber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:51.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:56:52'),
(22277, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"presences\":{\"267598054875383@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:52.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:56:52'),
(22278, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:51.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:56:52'),
(22279, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":false,\"id\":\"2A1D380CA0FCF02984B2\"},\"pushName\":\"Alex Glauber\",\"message\":{\"conversation\":\"Opa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6jR\\/Cx+5OwKe736EYzXRowRr1N367Tw8L3LuoO6zb0w=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771347411,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:56:51.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:56:53'),
(22280, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:57:00.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:57:01'),
(22281, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":false,\"id\":\"2A37065AE393CBF1B741\"},\"pushName\":\"Alex Glauber\",\"message\":{\"conversation\":\"Manda a chave aí pátrao\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eNsZy3C5LXaQxOHuwVuW3gFpMWIdoxNdLQueGudg8f4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771347420,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:57:00.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 13:57:01'),
(22282, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:57:00.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:57:01'),
(22283, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"pushName\":\"Alex Glauber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T13:57:00.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 13:57:01'),
(22284, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:25.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:07:26'),
(22285, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":true,\"id\":\"A557A0F79585F954E8707E7DA38019AE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomm\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771348045,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:25.474Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:07:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22286, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:25.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:07:26'),
(22287, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A557A0F79585F954E8707E7DA38019AE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348046736,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:26.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:07:26'),
(22288, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":true,\"id\":\"A5B60C7FA9CCD40E6E89FE3BA7A91923\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UEWKL8A32Z\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771348047,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:27.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:07:27'),
(22289, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:27.402Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:07:27'),
(22290, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A5B60C7FA9CCD40E6E89FE3BA7A91923\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348048461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:28.462Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:07:28'),
(22291, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:07:27.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:07:28'),
(22292, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5B39A10A0B293496746B7752B69F94D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348155469,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:09:15.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:09:16'),
(22293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5AC0B9382EAAB646230C223FAEA2F6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348155461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:09:15.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:09:16'),
(22294, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A56706DC1C8A5E48FE44182704E8AB13\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348155477,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:09:15.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:09:16'),
(22295, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:42.954Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:44'),
(22296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXOa8KxHtdtjzJVNR3o9ddxbu5SI10mH6pZVh2AH89IQ&oe=69A19BF2&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:43.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:44'),
(22297, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC49ADE9D8922C03A70DED47C5BAEF2F\"},\"pushName\":\"Sampa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637759479_26309346748702869_6727014343543456639_n.enc?ccb=11-4&oh=01_Q5Aa3wHikaPidbiZGouPyugso8INmKtX2hRrMqjVysRMwcKayQ&oe=69BC2A3B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"pjWYmdjmIydUnS+E5Stf6IAiAF+uRPS0wuAML8ihoOk=\",\"fileLength\":\"146956\",\"height\":899,\"width\":1599,\"mediaKey\":\"D6NA\\/YOQdH1cu+eLIw6TP4Voo2M4S9cARoOo2d3mBng=\",\"fileEncSha256\":\"PG3n0ZXGYXLTONJbhn4B\\/w8pzQtKSGkER2C7MMbdgwQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637759479_26309346748702869_6727014343543456639_n.enc?ccb=11-4&oh=01_Q5Aa3wHikaPidbiZGouPyugso8INmKtX2hRrMqjVysRMwcKayQ&oe=69BC2A3B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771348361\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAwQCAQUBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAADjEMJzOnNKhnnumreTU47y2+fb28U0FEueunzalma\\/OBmwazwAGAgQA\\/\\/EACcQAAICAQIFAwUAAAAAAAAAAAECAAMRBBITISIxQRAgUTJSYWJx\\/9oACAEBAAE\\/ABsawhiRNlH3NHXSjpLNOBpSfqMNGmUZ3mB6DjqacWj9oHDFsTTXg71dOqHafEuGLCW7QCk97CJZtVsK24REcoX8CUMiOC4yIzo7sUGBKB12H8wTXcikHotjBCM8ozEzjuvYzTPkMT5MDD5E1lvEs\\/kBhMEW2lUsBTJYco3eKTMn5MPsMbvP\\/8QAHBEBAAICAwEAAAAAAAAAAAAAAQACAxAREiFB\\/9oACAECAQE\\/AMWOvULU9nFReAiH0JlAPKwY6Qhtn\\/\\/EABwRAQEAAgIDAAAAAAAAAAAAAAECAAMRMRAgIf\\/aAAgBAwEBPwDbdtrGxDOaQ5pw5Oqc1NL9pxMOjxNPr\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"MI6WdMkRH7ZQBai47XQy0b9ATl+XRA8KgZrY32rzTALWC10Iv1pw9w==\",\"scanLengths\":[14069,51482,27005,54400],\"midQualityFileSha256\":\"G+mIkuVvkXbkj+rRWGBgoqKE2fkxD2H\\/WoCZKAqzs60=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"poYKIssrObPv6hrMHyIkmZ0nykufYRAwYuExd4dHIQU=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771348362,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:42.904Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:12:44'),
(22298, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:42.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:44'),
(22299, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXOa8KxHtdtjzJVNR3o9ddxbu5SI10mH6pZVh2AH89IQ&oe=69A19BF2&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:43.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:44'),
(22300, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:48.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:49'),
(22301, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:50.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:50'),
(22302, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC0201F28C63242C5B334CE24C618D74\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637832056_794244430369196_2548575287199142002_n.enc?ccb=11-4&oh=01_Q5Aa3wHJel4AxumFzM4zBY1fnst008GvcjeIF46C5Z_1OzrnCQ&oe=69BC19D8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MBKq9ijkUSlNabJ4sn7OwQ2mYwnzajr62S38\\/7jPwYg=\",\"fileLength\":\"13903\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"KTlPQvCGEwB0M0zOotZnEUUi\\/9lSgIgDkgdKQoCNd+A=\",\"fileEncSha256\":\"BhXa3QQTNQjQkIkECXDhLotI8peIAoS9RKevU1KbV7A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637832056_794244430369196_2548575287199142002_n.enc?ccb=11-4&oh=01_Q5Aa3wHJel4AxumFzM4zBY1fnst008GvcjeIF46C5Z_1OzrnCQ&oe=69BC19D8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771348364\",\"waveform\":\"AAAAAABNLltWUyYQCiIuS0MnRERPT0gmNTo9LENXVFFCPQ5KT0Y+QEFTTTxAUU1KS05VTUdSR0FKTE4rUkcMVw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+5R56dEFS3aviRjPB5dvZAsNUcwmy3T6\\/vucSPo9hCY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771348369,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:50.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:12:50'),
(22303, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:50.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:51'),
(22304, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:12:50.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:12:51'),
(22305, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A5B60C7FA9CCD40E6E89FE3BA7A91923\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771348551343,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:15:51.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:15:51'),
(22306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A557A0F79585F954E8707E7DA38019AE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771348551334,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:15:51.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:15:51'),
(22307, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:06.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:06'),
(22308, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:08.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:08'),
(22309, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:08.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:08'),
(22310, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC7E772654642063A1C348AC20F620EC\"},\"pushName\":\"Marii Soares\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ola\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pzSFe9lV\\/cQmWlSwRCYjNEZDAt5BAL8JdFyupgIgpg8=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":16},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771348748,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:08.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:08'),
(22311, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:08.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:08'),
(22312, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:08.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:08'),
(22313, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:08.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:09'),
(22314, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:10.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:11'),
(22315, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":false,\"id\":\"2AE0DC3B6080D91E5362\"},\"pushName\":\"Alex Glauber\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/24326118_2150080585809198_3432644209112458531_n.enc?ccb=11-4&oh=01_Q5Aa3wHSRRzzZHuMRHmVwWmOIXiELFzJ4waO2t0Zy6zFWCtJCA&oe=69BC1995&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"lnoMc0KPkhLZZ95dTh3BVTo5ca3+pNjcgtkc7rc8tZo=\",\"fileLength\":\"164737\",\"height\":1600,\"width\":900,\"mediaKey\":\"ILJTVe\\/1KJp84OWzCUlYQifvUhDTOPEKsA0yzr9yZdw=\",\"fileEncSha256\":\"tP8+0nD5zYGn7inABJNRTvpVXfb5gSyWyfxqaBkhzns=\",\"directPath\":\"\\/v\\/t62.7118-24\\/24326118_2150080585809198_3432644209112458531_n.enc?ccb=11-4&oh=01_Q5Aa3wHSRRzzZHuMRHmVwWmOIXiELFzJ4waO2t0Zy6zFWCtJCA&oe=69BC1995&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771348748\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAIDBAEF\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAQMEAAL\\/2gAMAwEAAhADEAAAANebTmUy1OM5TOrEcnTgPkmwSySynmeuM1Ep3jYk6T53kGc472RpBb\\/e4colq8+7EmiD5xoEtxy1Z+Xe0KtMbTZNnVeDoAQxcIcUenwKohAOTgDpwEM\\/\\/8QAGxEAAgIDAQAAAAAAAAAAAAAAAAECMRAgIRH\\/2gAIAQIBAT8AhePMNtMheiRC9G+kX3R2RvLHZ\\/\\/EABwRAAEEAwEAAAAAAAAAAAAAAAEAECExAgMgEf\\/aAAgBAwEBPwDMQ3rAQtlc7K4AhbBHApZU4b\\/\\/xAAsEAACAgEDAgQEBwAAAAAAAAABAgARAwQSITFBBVFScRMUImEkMjM0coGR\\/9oACAEBAAE\\/AK4uOL1Z\\/iIKAsmopW6BEqXagASuY45h0p1Wd8StVnkzI4VLhB+cB7MlzYGFEXFxIGsLRlVBxCTfSNRE0NDX5JqctqRNPkGTMldkqVxBvHeoA3nFVhwzXCsYCZtR8A52HU8CZ7ZD5zw4fiV9jKNcQMo6xMyNdXx9oXGzdRgbcfyke8cTV\\/UMoHqnW5oXrWqvvBPh8UCQYqBZtsdajcdzHPEx6cZc2QHoTHYBZov3yH7w2VoGjELjqwMsVVzfxUZozTw\\/nVtH6zSHZrEvzl2CIFG2rMZBt22feFALpm\\/2IaXv\\/cYzwznU5DHWY1rUJfql8dYCfVOne4xgaoWueEm9Rljr9MbjUKfvN048oWjNN3MLTwb9bKZ\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"kOufOQ1oPdRXVw==\",\"firstScanLength\":14043,\"scansSidecar\":\"kOufOQ1oPdRXV7b1IbYz49Qv+6HeLyty1DB6DyFnY0k5f0U3UoDfaQ==\",\"scanLengths\":[14043,58933,31039,60720],\"midQualityFileSha256\":\"H7sDrZjSawJXTzLSrLx97DGUADC8F0TzJXpMJs+mKFM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gj5EJ7t3Cin9yJLXld\\/NnMlqL\\/zn9uvdMZA3tPbvwYM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771348750,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:10.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:11'),
(22316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"pushName\":\"Alex Glauber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:11.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:12'),
(22317, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:11.304Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:12'),
(22318, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:12.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:13'),
(22319, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:12.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:13'),
(22320, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC947354A74531138AD3CA008DB8EAD6\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Meu aplicativo não está funcionando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"n72gFjpps5qbnlYIKALZhMGjNdII\\/GmhJVZap77ofks=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771348752,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:12.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:13'),
(22321, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"presences\":{\"267598054875383@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:12.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:14'),
(22322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:12.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:14'),
(22323, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":false,\"id\":\"2AB98BE5C8055156D1B2\"},\"pushName\":\"Alex Glauber\",\"message\":{\"conversation\":\"Libera aí por gentileza\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7gSfIWRUHXECK5a4HfDIlUO7DAV9phgsl1rUhOZYP8g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771348757,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:17.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:18'),
(22324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:17.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:18'),
(22325, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"pushName\":\"Alex Glauber\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:18.089Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:19'),
(22326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:18.247Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:19'),
(22327, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:20.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:20'),
(22328, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACEEBB5D81D22B11FB5EB164D41E2D6B\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Tá dando conta inválida\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MTYMfjTfWIH2BOifPdpIcoAyj4cmQznaxBqSPfGhdlQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771348764,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:24.386Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:24'),
(22329, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:24.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:24'),
(22330, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:24.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:25'),
(22331, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:24.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:25'),
(22332, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC5A2B2588EB999322C173EEEF74538C\"},\"pushName\":\"Marii Soares\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/589447114_2341274823007431_299161858157964537_n.enc?ccb=11-4&oh=01_Q5Aa3wEh-gjWtGJVs0_nCHX8XjD3KoytHV8Fm8BRxwYBuSorlQ&oe=69BC1BC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"EVmMG4Rw9CANxUt+\\/79e8YMUojSoHQqnRXd3D2U7xiY=\",\"fileLength\":\"1039028\",\"seconds\":5,\"mediaKey\":\"rFy8qTX2Is11tU8+T6RovaHkP\\/Q3E6utJHxkqSdUxMU=\",\"height\":850,\"width\":474,\"fileEncSha256\":\"vNwfHf4CnFLNkK8uaMWz+8ltrx5ie3MlVbfSwFXUOKQ=\",\"directPath\":\"\\/v\\/t62.7161-24\\/589447114_2341274823007431_299161858157964537_n.enc?ccb=11-4&oh=01_Q5Aa3wEh-gjWtGJVs0_nCHX8XjD3KoytHV8Fm8BRxwYBuSorlQ&oe=69BC1BC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771348795\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAAMBAQAAAAAAAAAAAAAAAAABBAID\\/9oADAMBAAIQAxAAAADAuxbOk31S4YU6YLrft9fmzrFz6jhBi8c\\/LOygvPlsFJ15w\\/FpeMI1Cgs3QNACKAC\\/\\/8QAIRAAAgICAwACAwAAAAAAAAAAAAECAxESITJREyIjMUH\\/2gAIAQEAAT8AxLwSl4QT8Gitfc+GXo6pr+lFEZxzKxRLoqE9VJSKu5GMpbSyuDMnByLJEGVdytrDJShhsusymVlPck1H9MnMnyVlPc49OPR6inFFEluZRsjJwUP8kTVGiNUalTwxSNjZemy9K7ILOWf\\/xAAeEQABBAIDAQAAAAAAAAAAAAAAAQIDERITECAxQf\\/aAAgBAgEBPwDSPZjfFrfhPeoQSZE+Es+baoQvt\\/\\/EAB4RAAEDBAMAAAAAAAAAAAAAAAABEVECEBMxAyAh\\/9oACAEDAQE\\/AMdcGrNVJybtlWBferDDH\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"MRBgzz20Ux5u3gfCd1pKnROm4Q\\/in0DBAV9Xm8HmWXv+aO\\/jyBmSFah1jSn0MsfYjlVwH4gxkcYC0\\/w5TJIQuKRneb6\\/D1dojhJS9xL6nSLAYSPU4FqctmhKfutHcLQCHd7JWGocygGzYnybcOEO\\/6jzhyinxbYJ7BN07C1vLoMGc21rhoGmL97wLi0gSd4Mu+KqXFXKyIeI9qv3+iAdHQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mL4YCcHEytE87ql0qyi1NHZMFMN3Ol5U1825B\\/c7Zr4=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771348796,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:56.809Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:19:57'),
(22333, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:56.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:57'),
(22334, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:56.972Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:57'),
(22335, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:19:57.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:19:58'),
(22336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5F9DE745B0A0CD06BD5C8C6BD310926\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348858498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:20:58.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:20:59'),
(22337, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5F9DE745B0A0CD06BD5C8C6BD310926\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa tarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771348859,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:20:59.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:20:59'),
(22338, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:20:59.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:21:00'),
(22339, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:20:59.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:21:00'),
(22340, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5F9DE745B0A0CD06BD5C8C6BD310926\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348860487,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:00.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:21:00'),
(22341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":true,\"id\":\"A5EFF512013E3D681AA673D507F47311\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/590419542_2321831371661234_1033289147145217077_n.enc?ccb=11-4&oh=01_Q5Aa3wFsHPHYFDLIwnpkKqOIKQEa5qi5Z_Ci0APwIWHmp72zjw&oe=69BC094E&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/590419542_2321831371661234_1033289147145217077_n.enc?ccb=11-4&oh=01_Q5Aa3wFsHPHYFDLIwnpkKqOIKQEa5qi5Z_Ci0APwIWHmp72zjw&oe=69BC094E&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"stickerSentTs\":\"1771348881575\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771348882,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:22.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:21:22'),
(22342, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:22.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:21:23'),
(22343, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:23.001Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:21:23'),
(22344, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A5EFF512013E3D681AA673D507F47311\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348884071,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:24.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:21:24'),
(22345, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267598054875383@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:32.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:21:33'),
(22346, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267598054875383@lid\",\"fromMe\":true,\"id\":\"A53C884FF04A10350D5405B87578C500\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/40968799_1824090604907870_3986436337360272378_n.enc?ccb=11-4&oh=01_Q5Aa3wEV_Y8ILwYE7Vu8WR0gUFphIlGJ-6HaIVb9EbNuSNuTdw&oe=69BC1874&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"wfcqHWknRb77BB5bqcJ2hVE\\/gbzoH9Ey+OqfyTw8fwc=\",\"mediaKey\":\"7SlK09Vh25fmmvzKrm200tXxRSsBG8+GREzDpmHo0xA=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/40968799_1824090604907870_3986436337360272378_n.enc?ccb=11-4&oh=01_Q5Aa3wEV_Y8ILwYE7Vu8WR0gUFphIlGJ-6HaIVb9EbNuSNuTdw&oe=69BC1874&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1771336687\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"dINYbtoIrL33NQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1771348892235\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771348892,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:32.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:21:33'),
(22347, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A53C884FF04A10350D5405B87578C500\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771348894055,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:34.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:21:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22348, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267598054875383@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550839104_1355475489389377_2506782554335813_n.jpg?ccb=11-4&oh=01_Q5Aa3wHi3hRQyH4I9AGK4HMbBcpXq5tEaa2bRDr0nPdsMczxQQ&oe=69A1BD7F&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:21:33.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:21:34'),
(22349, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:22:37.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:22:37'),
(22350, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:22:38.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:22:39'),
(22351, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:22:39.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:22:39'),
(22352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC5EEE879726D4FC47857AACD6967D45\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Boa tarde\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"59o3dW2vueyYCs+E6NPLPkDZ7jHMBKW0NufWbp5TBcc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771348958,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:22:38.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:22:40'),
(22353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:22:39.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:22:40'),
(22354, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5949A0D53A3A01CFBD938E433C30D57\"},\"pushName\":\"J T V P L A Y\",\"message\":[],\"messageTimestamp\":1771349080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:40.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:41'),
(22356, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:42'),
(22357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wEXOa8KxHtdtjzJVNR3o9ddxbu5SI10mH6pZVh2AH89IQ&oe=69A19BF2&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:40.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:42'),
(22358, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5152A206CC80ED7F614FD6C1232A411\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349081138,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:42'),
(22359, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:40.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:42'),
(22360, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5152A206CC80ED7F614FD6C1232A411\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595899913_1624798272000847_8310918073483201135_n.enc?ccb=11-4&oh=01_Q5Aa3wEphXx0jHQ1YIY8jZQVSiNLAlUWfZEX64x_xJULSIBFhQ&oe=69BC230E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rjeDSQYTGYWjsmU+yB1dnNlXkU6IwIJJ85hJJoE0Gbk=\",\"fileLength\":\"83165\",\"height\":1600,\"width\":738,\"mediaKey\":\"oV\\/UHblUnQIbqK7BPZppIqkRB2yKBCjSbREGNwp\\/Au8=\",\"fileEncSha256\":\"24uvt7AO4rclJQfPZeFZiC5ofH0u32NcOeBatsx9RCk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595899913_1624798272000847_8310918073483201135_n.enc?ccb=11-4&oh=01_Q5Aa3wEphXx0jHQ1YIY8jZQVSiNLAlUWfZEX64x_xJULSIBFhQ&oe=69BC230E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349079\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAuAAADAQEBAAAAAAAAAAAAAAAAAQIDBgUBAQEBAQAAAAAAAAAAAAAAAAABAwL\\/2gAMAwEAAhADEAAAAPXrmb0w6V827MZxONaIRcwTtoDITh56ZksBAH\\/\\/xAAjEAACAgEEAQUBAAAAAAAAAAABAgARAxITITEiFCAyUVJC\\/9oACAEBAAE\\/APU4jfms9Sn7WDPjPbib2M\\/0IuPIvPEAyCuoGyA3QhyOewJuNoB1Tcb9TeebzSl0g6pS18oAp7aEAdG5a6ROJfuTlSeYFergV++ajFlvuIfEeVRiLsPNwfcd7FCBvsXEcKfgDCws+ImoVWkT\\/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAESUSD\\/2gAIAQIBAT8Akgp6U97\\/AP\\/EABsRAAEEAwAAAAAAAAAAAAAAABMAAQJSIGFx\\/9oACAEDAQE\\/AC8Rn0hwqhwq2f8A\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"x5xqzI8Pfaz6g\\/aVxA4vrrCJiQlAUnYjWDWuL1LwPSPUrwIwk6FqSQ==\",\"scanLengths\":[7720,44314,14757,16374],\"midQualityFileSha256\":\"ZF9ggw1CUuPl1avsZr7p6mMcjZ3gQKGH9admUu+HU9E=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771349080,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:40.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:43'),
(22361, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A512C7383C986B2FA2CA730A24963FAE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349081395,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:44'),
(22362, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A542FB02D0A9D7F666B2D60F5026CADF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349082662,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:42.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:44'),
(22363, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:42.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:44'),
(22364, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A512C7383C986B2FA2CA730A24963FAE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/595064599_1428152262119999_8722429355714531374_n.enc?ccb=11-4&oh=01_Q5Aa3wEHw_T8nQoY42swxnnuAysp378Ufq-1nNKtAjwf6d8Cig&oe=69BC1458&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"khxajUzNIA6VMFUqgYhrU8yrDLEK6C5K1MRWGt+eba8=\",\"fileLength\":\"79179\",\"height\":1600,\"width\":738,\"mediaKey\":\"O0Bk6HJjVnoGUyZHBMAf2qsAJd9p84X4mL0u5QuOBM8=\",\"fileEncSha256\":\"52y619G\\/uJ3RSmzZRouhsBHQABRgB3iKjmzBeflrk\\/I=\",\"directPath\":\"\\/v\\/t62.7118-24\\/595064599_1428152262119999_8722429355714531374_n.enc?ccb=11-4&oh=01_Q5Aa3wEHw_T8nQoY42swxnnuAysp378Ufq-1nNKtAjwf6d8Cig&oe=69BC1458&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349079\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIAMBIgACEQEDEQH\\/xAAtAAACAwEBAAAAAAAAAAAAAAAAAwECBAYFAQEBAAAAAAAAAAAAAAAAAAAAAv\\/aAAwDAQACEAMQAAAA9U5a9R1BygTOQNZkDMOvN5jSstcYUQ5BABEAf\\/\\/EACYQAAIBAwQBAwUAAAAAAAAAAAECAAMRIQQSExQxQVFTECAjMlL\\/2gAIAQEAAT8A7unz+VZ3qPypO7pj5qrO7pvlWJpw4vDpVtOtDp7C+Ijuq4nNUMNaoIajlZzzmENYGc+LfaigqCfeGmLzYvqBG2+nmU2sPED+4gZGzaOwZsSl+mFm1rSwVc2htugJHgzc39GEn6f\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAElEBAiD\\/2gAIAQIBAT8AXYL1Bto233\\/\\/xAAZEQADAQEBAAAAAAAAAAAAAAAAAlITEiD\\/2gAIAQMBAT8A0SjRKOEkzSff\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"scansSidecar\":\"vJm9bRR7s6buw+I7mktwNH2Q3h0RroIHIGIKwsNu0hGQ+WUBv7idNA==\",\"scanLengths\":[7545,40524,14408,16702],\"midQualityFileSha256\":\"LQ76EzjdsuHGJj7tfHNCDROgcFRws3bzrQdfVxdi6HI=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771349081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:44'),
(22365, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A542FB02D0A9D7F666B2D60F5026CADF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349082006,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:42.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:44'),
(22366, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A542FB02D0A9D7F666B2D60F5026CADF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vamos mudar seu app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349081,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:45'),
(22367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:45'),
(22368, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:45'),
(22369, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:41.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:46'),
(22370, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:51.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:51'),
(22371, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A573D154594B2A7E441497063AC843BF\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595436337_26313328041605079_6542181684877955281_n.enc?ccb=11-4&oh=01_Q5Aa3wHGxip-OTIjDXNpSQjrNnhm63mH3ZE6xqt_lScKP39ROw&oe=69BC0D80&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"kQcEiMnw14yGFCekh7hA0Fb8RE+4NOg+O+U691DLakA=\",\"fileLength\":\"22293\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"LIlkA0BgZZU1nGvY3d4D1X88dK0VCdoVLXERfnaVCfE=\",\"fileEncSha256\":\"iBMQy4sLqBpdxo9o\\/gbFlNDeB\\/GadBxWFqRzvte3\\/OY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595436337_26313328041605079_6542181684877955281_n.enc?ccb=11-4&oh=01_Q5Aa3wHGxip-OTIjDXNpSQjrNnhm63mH3ZE6xqt_lScKP39ROw&oe=69BC0D80&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349082\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AB8oYVs5QFZgLEJdN1NCWk1JUEpDTkgUEyQrQ1pBVUcuWE0dExQVEhkJEjJBVB9KTCNOU1BUIxFSR0ZYUk4pDQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771349091,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:51.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:51'),
(22372, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A573D154594B2A7E441497063AC843BF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349091702,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:51.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:52'),
(22373, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:51.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:52'),
(22374, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:52.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:53'),
(22375, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:55.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:55'),
(22376, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A542FB02D0A9D7F666B2D60F5026CADF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349096129,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:56.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:24:56'),
(22377, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:24:58.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:24:58'),
(22378, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:01.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:01'),
(22379, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:02.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:02'),
(22380, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:03.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:03'),
(22381, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A57801162DC655E82A1BD180FB85D82D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura na tv o app playsim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349103,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:03.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:25:03'),
(22382, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A57801162DC655E82A1BD180FB85D82D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349103345,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:03.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:25:04'),
(22383, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A57801162DC655E82A1BD180FB85D82D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349103315,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:03.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:25:04'),
(22384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:03.408Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:04'),
(22385, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:03.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:05'),
(22386, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:05.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:05'),
(22387, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:06.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:06'),
(22388, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC549DBD8F66DDBCDB176F537586CA77\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594887554_1288097169891727_4949153944313246795_n.enc?ccb=11-4&oh=01_Q5Aa3wG2_sCBRt1Et_H-1_q_ahgi-EwuOMsCpos_A2lmFTAHBw&oe=69BC0E02&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TaL\\/tAl7x9Uy3y21ThAafGC8kBpO11pMls6VkveQ3sY=\",\"fileLength\":\"7550\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"VWFjsB3J6IQE9SgItfeaUjFX3r13F9IMV7eAL0pjugI=\",\"fileEncSha256\":\"cW1eoCZV5tbODPbfbnkXFj7e4Bw4hBe2BYLzlWxlvLU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594887554_1288097169891727_4949153944313246795_n.enc?ccb=11-4&oh=01_Q5Aa3wG2_sCBRt1Et_H-1_q_ahgi-EwuOMsCpos_A2lmFTAHBw&oe=69BC0E02&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349104\",\"waveform\":\"AAAzUFxcXFRZWVFSTldMTFdGU1xbWlJDTlpWTTswLSw3S1dYXFtOOT1VSjM1LisvNDxXW1pMN1dJM1dWS1hUUg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"s7BOuC4XE4L+dqK1pG7jGxV32PWKrqIUSXowICPJuqc=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771349106,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:06.362Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:25:06'),
(22389, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:06.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:07'),
(22390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:06.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:07'),
(22391, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:06.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:07'),
(22392, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:08.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:08'),
(22393, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC93D8A80B28A2BE9F7A9EE7B0240428\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Vou procurar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/yyOR2y+bhlpxO6qTEJXOZ3bCNAMLpHH3lkIRmXxcOA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771349108,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:08.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:25:08'),
(22394, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:08.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:09'),
(22395, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:05.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:09'),
(22396, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:05.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:09'),
(22397, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:25:08.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:25:10'),
(22398, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:26:05.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:26:06'),
(22399, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:26:07.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:26:07'),
(22400, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:26:07.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:26:07'),
(22401, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACA5E9A647363038D3488FCDA455AD6B\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Não tem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Kn4I019dK\\/RlOaXeNPGHN7QBwuWO5muR06M\\/93xScf4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771349167,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:26:07.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:26:07'),
(22402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:26:07.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:26:07'),
(22403, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5E6418701DC9FCDDD44C2E2FA968A10\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qual a marca da tv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349238,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:18.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:27:19'),
(22404, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:18.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:27:19'),
(22405, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5E6418701DC9FCDDD44C2E2FA968A10\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349238960,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:18.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:27:19'),
(22406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:19.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:27:20'),
(22407, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A57801162DC655E82A1BD180FB85D82D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349240089,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:20.090Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:27:20'),
(22408, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5E6418701DC9FCDDD44C2E2FA968A10\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349240566,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:20.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:27:20'),
(22409, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:24.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:27:25'),
(22410, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:28.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:27:28'),
(22411, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACFF3F673C34504EB75A176E11E93123\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Samsung\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pmALeNSiBM9ubOkIVMv0txvp2CschR1xDAA5PDPbPOg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771349248,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:28.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:27:28'),
(22412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:28.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:27:29'),
(22413, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:27:28.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:27:29'),
(22414, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5133F2A895A9A013D560C58C031991C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637986870_1838302273394874_7184657119592588026_n.enc?ccb=11-4&oh=01_Q5Aa3wFLapxsO3JSU_V4FvZbZo4p3HSGPgjtuOjBDTpXDDLVcA&oe=69BC21C5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"EXUxsM+eZS9kNQ4CHFPboWuXqh3I+dv5vTVfZFH7Ue8=\",\"fileLength\":\"8538\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"ktFVonrDzQieTW4qxMVQMtDkHnDS7VsG+gGvPi\\/Foag=\",\"fileEncSha256\":\"S6YoeiL5+mV5Fkcz0GsERvTvJzGzXkMFc+DzUTiSYj4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637986870_1838302273394874_7184657119592588026_n.enc?ccb=11-4&oh=01_Q5Aa3wFLapxsO3JSU_V4FvZbZo4p3HSGPgjtuOjBDTpXDDLVcA&oe=69BC21C5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349304\",\"waveform\":\"AAU7UU4+MUZRTVFPR0pLTUs6NC1AV0k+NVZQSUZCQkI+R1BaRkhTWWBPQFtXLS5EYFs5QCwrL2FXRlNeV1NbUw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771349306,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:28:27.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:28:27'),
(22415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:28:27.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:28:27'),
(22416, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5133F2A895A9A013D560C58C031991C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349307320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:28:27.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:28:28'),
(22417, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5133F2A895A9A013D560C58C031991C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349308567,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:28:28.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:28:28');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22418, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:28:27.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:28:28'),
(22419, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:29:02.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:29:02'),
(22420, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACD26732DD920F62AB84E93169406517\"},\"pushName\":\"Marii Soares\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/594979507_4311443472446174_5476365060926941207_n.enc?ccb=11-4&oh=01_Q5Aa3wEPFX2AHPbK5yzNQWn6CzqMFfpoUVphpDuXNLiwitkHxA&oe=69BC18DC&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"rULfCQ49zjnjqIgsqfH2pcJzqs+VaepUEZdITYArHjo=\",\"fileLength\":\"101908\",\"height\":1599,\"width\":899,\"mediaKey\":\"iw6j6UNf4sMLJUguMP8L1NrTNC9VNtKLR++knxxnCKg=\",\"fileEncSha256\":\"Pcl1kbRjjPAmxtj5Em+6LJBeplJwnawPgoXxbo+9RrQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/594979507_4311443472446174_5476365060926941207_n.enc?ccb=11-4&oh=01_Q5Aa3wEPFX2AHPbK5yzNQWn6CzqMFfpoUVphpDuXNLiwitkHxA&oe=69BC18DC&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349340\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAQMCBAUBAQEBAQEAAAAAAAAAAAAAAAEABAID\\/9oADAMBAAIQAxAAAADwzoWhirqoGwPdzGWr26TlTdRyDa3mnXoOWXqxyiYcHgz2ilQBH\\/\\/EACMQAAICAQMEAwEAAAAAAAAAAAABAhEDBBMhMUJSYRASQVH\\/2gAIAQEAAT8AplM5\\/pRQsE6uuDakbUh45IoUcEYpSHLSrsZu6TwY56TwZej8GOUubqyV0qRHHJ23Qsc430Kl6Jyblf5ZLomQpxLVlQJLl++TtRbg6Y2fZj1OR1aQtVkSpJE9VllV0PNNm5MRXxRR\\/8QAHxEAAQMEAwEAAAAAAAAAAAAAAAECExESUVIDQWGR\\/9oACAECAQE\\/AIX6kL9SNwja9qW+r9LG5UwULfSR2SV+Sbk2P\\/\\/EAB4RAAICAQUBAAAAAAAAAAAAAAABERJREBMhQWFx\\/9oACAEDAQE\\/AIZDxpT6Ufptr0XZPBZFnkl5JeT\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"VJeUjiquwOgke9DFRIIfozFlJOq8RponCVwv1VdJuCicsIE+iykgRA==\",\"scanLengths\":[12828,36113,15191,37776],\"midQualityFileSha256\":\"YFdMO3fL9eHcESVCeJK2PHyvuCl4jCoRUynd6IYm6cE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"hwXz7xffFqWZAw0m3LA9BbRhIc5fqwztTio4NKJ6L2U=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771349342,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:29:02.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:29:02'),
(22421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:29:02.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:29:03'),
(22422, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:29:02.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:29:03'),
(22423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5360CD362FB58B8F6E37B540F0733E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Aq nessa tela no canto inferior direito\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC5A2B2588EB999322C173EEEF74538C\",\"participant\":\"118507056427159@lid\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/589447114_2341274823007431_299161858157964537_n.enc?ccb=11-4&oh=01_Q5Aa3wEh-gjWtGJVs0_nCHX8XjD3KoytHV8Fm8BRxwYBuSorlQ&oe=69BC1BC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"EVmMG4Rw9CANxUt+\\/79e8YMUojSoHQqnRXd3D2U7xiY=\",\"fileLength\":\"1039028\",\"seconds\":5,\"mediaKey\":\"rFy8qTX2Is11tU8+T6RovaHkP\\/Q3E6utJHxkqSdUxMU=\",\"height\":850,\"width\":474,\"fileEncSha256\":\"vNwfHf4CnFLNkK8uaMWz+8ltrx5ie3MlVbfSwFXUOKQ=\",\"directPath\":\"\\/v\\/t62.7161-24\\/589447114_2341274823007431_299161858157964537_n.enc?ccb=11-4&oh=01_Q5Aa3wEh-gjWtGJVs0_nCHX8XjD3KoytHV8Fm8BRxwYBuSorlQ&oe=69BC1BC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771348795\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAAMBAQAAAAAAAAAAAAAAAAABBAID\\/9oADAMBAAIQAxAAAADAuxbOk31S4YU6YLrft9fmzrFz6jhBi8c\\/LOygvPlsFJ15w\\/FpeMI1Cgs3QNACKAC\\/\\/8QAIRAAAgICAwACAwAAAAAAAAAAAAECAxESITJREyIjMUH\\/2gAIAQEAAT8AxLwSl4QT8Gitfc+GXo6pr+lFEZxzKxRLoqE9VJSKu5GMpbSyuDMnByLJEGVdytrDJShhsusymVlPck1H9MnMnyVlPc49OPR6inFFEluZRsjJwUP8kTVGiNUalTwxSNjZemy9K7ILOWf\\/xAAeEQABBAIDAQAAAAAAAAAAAAAAAQIDERITECAxQf\\/aAAgBAgEBPwDSPZjfFrfhPeoQSZE+Es+baoQvt\\/\\/EAB4RAAEDBAMAAAAAAAAAAAAAAAABEVECEBMxAyAh\\/9oACAEDAQE\\/AMdcGrNVJybtlWBferDDH\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"MRBgzz20Ux5u3gfCd1pKnROm4Q\\/in0DBAV9Xm8HmWXv+aO\\/jyBmSFah1jSn0MsfYjlVwH4gxkcYC0\\/w5TJIQuKRneb6\\/D1dojhJS9xL6nSLAYSPU4FqctmhKfutHcLQCHd7JWGocygGzYnybcOEO\\/6jzhyinxbYJ7BN07C1vLoMGc21rhoGmL97wLi0gSd4Mu+KqXFXKyIeI9qv3+iAdHQ==\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"AC5A2B2588EB999322C173EEEF74538C\",\"participant\":\"118507056427159@lid\",\"quotedMessage\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/589447114_2341274823007431_299161858157964537_n.enc?ccb=11-4&oh=01_Q5Aa3wEh-gjWtGJVs0_nCHX8XjD3KoytHV8Fm8BRxwYBuSorlQ&oe=69BC1BC9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"EVmMG4Rw9CANxUt+\\/79e8YMUojSoHQqnRXd3D2U7xiY=\",\"fileLength\":\"1039028\",\"seconds\":5,\"mediaKey\":\"rFy8qTX2Is11tU8+T6RovaHkP\\/Q3E6utJHxkqSdUxMU=\",\"height\":850,\"width\":474,\"fileEncSha256\":\"vNwfHf4CnFLNkK8uaMWz+8ltrx5ie3MlVbfSwFXUOKQ=\",\"directPath\":\"\\/v\\/t62.7161-24\\/589447114_2341274823007431_299161858157964537_n.enc?ccb=11-4&oh=01_Q5Aa3wEh-gjWtGJVs0_nCHX8XjD3KoytHV8Fm8BRxwYBuSorlQ&oe=69BC1BC9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771348795\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAKAMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAAMBAQAAAAAAAAAAAAAAAAABBAID\\/9oADAMBAAIQAxAAAADAuxbOk31S4YU6YLrft9fmzrFz6jhBi8c\\/LOygvPlsFJ15w\\/FpeMI1Cgs3QNACKAC\\/\\/8QAIRAAAgICAwACAwAAAAAAAAAAAAECAxESITJREyIjMUH\\/2gAIAQEAAT8AxLwSl4QT8Gitfc+GXo6pr+lFEZxzKxRLoqE9VJSKu5GMpbSyuDMnByLJEGVdytrDJShhsusymVlPck1H9MnMnyVlPc49OPR6inFFEluZRsjJwUP8kTVGiNUalTwxSNjZemy9K7ILOWf\\/xAAeEQABBAIDAQAAAAAAAAAAAAAAAQIDERITECAxQf\\/aAAgBAgEBPwDSPZjfFrfhPeoQSZE+Es+baoQvt\\/\\/EAB4RAAEDBAMAAAAAAAAAAAAAAAABEVECEBMxAyAh\\/9oACAEDAQE\\/AMdcGrNVJybtlWBferDDH\\/\\/Z\",\"contextInfo\":[],\"streamingSidecar\":\"MRBgzz20Ux5u3gfCd1pKnROm4Q\\/in0DBAV9Xm8HmWXv+aO\\/jyBmSFah1jSn0MsfYjlVwH4gxkcYC0\\/w5TJIQuKRneb6\\/D1dojhJS9xL6nSLAYSPU4FqctmhKfutHcLQCHd7JWGocygGzYnybcOEO\\/6jzhyinxbYJ7BN07C1vLoMGc21rhoGmL97wLi0gSd4Mu+KqXFXKyIeI9qv3+iAdHQ==\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771349554,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:34.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:35'),
(22424, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:34.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:35'),
(22425, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5360CD362FB58B8F6E37B540F0733E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349554747,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:34.748Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:35'),
(22426, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:34.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:35'),
(22427, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5360CD362FB58B8F6E37B540F0733E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349556381,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:36.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:36'),
(22428, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5A0224A875816320214E896E488F9BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349563216,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:43.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:43'),
(22429, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:43.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:43'),
(22430, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5A0224A875816320214E896E488F9BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tem o código mac\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349562,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:43.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:43'),
(22431, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5A0224A875816320214E896E488F9BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349563259,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:43.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:44'),
(22432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:43.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:44'),
(22433, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:56.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:56'),
(22434, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A57A86C868E53FDF7F7972BB98088CC8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349576,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:56.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:56'),
(22435, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wEtZ74CKznHbbHuO7PLXkbgKIZhFWJuUU09gcI0w5HMYQ&oe=69A1CD24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:56.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:57'),
(22436, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A57A86C868E53FDF7F7972BB98088CC8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349577669,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:57.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:57'),
(22437, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:57.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:58'),
(22438, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A541B89EBAF45ACEF4EB457BB235E9AC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Eai men\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349577,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:57.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:58'),
(22439, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A541B89EBAF45ACEF4EB457BB235E9AC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349578130,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:58.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:58'),
(22440, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5B7D7C50537D66423C03A9C0DCFE3C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Consegue me enviar uma foto legível\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:59.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:32:59'),
(22441, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:59.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:32:59'),
(22442, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5B7D7C50537D66423C03A9C0DCFE3C6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349579661,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:59.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:33:00'),
(22443, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wEtZ74CKznHbbHuO7PLXkbgKIZhFWJuUU09gcI0w5HMYQ&oe=69A1CD24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:58.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:00'),
(22444, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:59.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:00'),
(22445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5B7D7C50537D66423C03A9C0DCFE3C6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349579461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:32:59.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:33:01'),
(22446, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"163883738206363@lid\",\"fromMe\":true,\"id\":\"A5EC3E307F3D1C8978AB5BDBDFD21C24\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bora fechar?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349582,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:02.231Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:33:02'),
(22447, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"163883738206363@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:02.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:02'),
(22448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"163883738206363@lid\",\"pushName\":\"hpdesigner\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420253_869391022366308_8060735350633084158_n.jpg?ccb=11-4&oh=01_Q5Aa3wEtZ74CKznHbbHuO7PLXkbgKIZhFWJuUU09gcI0w5HMYQ&oe=69A1CD24&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:02.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:03'),
(22449, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"163883738206363@lid\",\"id\":\"A5EC3E307F3D1C8978AB5BDBDFD21C24\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349582524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:02.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:33:03'),
(22450, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC7FD04B5395ECD830B85A5C2E13D50C\"},\"pushName\":\"Marii Soares\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/593743163_1580612436535091_1640255762693240930_n.enc?ccb=11-4&oh=01_Q5Aa3wEEK77LFEd0Z1TTmkejExkMjvjFjue0Msv0J03sXSdMoQ&oe=69BBFD0D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"L\\/ugOXaoWd8MLP3FHr8B81uB9Gp4bxuEErMnlXz9nY8=\",\"fileLength\":\"102849\",\"height\":1599,\"width\":899,\"mediaKey\":\"V1as57K86uxha9l49vOFXQuOb4Kh4qC4lLgOk2ZbvAQ=\",\"fileEncSha256\":\"MndecanG+QGC64w\\/jA7yjve0L+RxfTF2\\/iKxKBEhTiA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/593743163_1580612436535091_1640255762693240930_n.enc?ccb=11-4&oh=01_Q5Aa3wEEK77LFEd0Z1TTmkejExkMjvjFjue0Msv0J03sXSdMoQ&oe=69BBFD0D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771349599\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAwAAACAwEAAAAAAAAAAAAAAAAAAwECBAUBAAMBAQEAAAAAAAAAAAAAAAACAwEEBf\\/aAAwDAQACEAMQAAAATXoI9Hpxp1rdMpAS7dGVTryKdgpKBRkuzmyRyO7PNBYKiLEtiOrGRhQsB\\/\\/EACMQAAIBAgUFAQAAAAAAAAAAAAABAgMSERMhQVEEFCIxgRD\\/2gAIAQEAAT8AyHyOhLkdKS3JXIukTaa0i2OrH1gTqIqQxi5J\\/idBPVslLpNPBk30zlpFpFXKt8JGnJKCi1JolY2mkita9kVC5nee8YHcS4J1W9iTbMGZyM1GYhzRc+RHw+Hw04LUWotRai1H\\/8QAIREAAgEDAwUAAAAAAAAAAAAAAAEDAhESE0JhBCAxUVL\\/2gAIAQIBAT8AWL2mEW6lGjF8iS5MXa5nwKZrwh9RIa1fvs\\/\\/xAAeEQABAwQDAAAAAAAAAAAAAAAAAQIRAxATUSAhMf\\/aAAgBAwEBPwCKY9rU8tjkqdaJMj9iuVeP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"iQ2iNxHkBPHPd8cILVqR3ywr55CjRpGxaq7IEG21uZJI2jkkLAQg7Q==\",\"scanLengths\":[11813,43417,13240,34379],\"midQualityFileSha256\":\"kWzjDh8d8uVMHUiI0yoOPPTdtK2G8VgkXdkTxV82M00=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TQ+pZoyP6qhpUAUBHubdV3B2Ja7rFgr0AMDVdTbeBXM=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771349600,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:20.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:33:20'),
(22451, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:20.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:20'),
(22452, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:20.388Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:21'),
(22453, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:33:20.550Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:33:21'),
(22454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:32.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:37:33'),
(22455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A555FD183B0DF4298B0ADF511C291602\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"68:72:c3:1a:05:04\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349852,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:32.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:37:33'),
(22456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:33.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:37:34'),
(22457, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A555FD183B0DF4298B0ADF511C291602\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349854242,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:34.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:37:34'),
(22458, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A555FD183B0DF4298B0ADF511C291602\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349854273,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:34.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:37:34'),
(22459, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5A0224A875816320214E896E488F9BC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349853747,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:33.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:37:35'),
(22460, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5B7D7C50537D66423C03A9C0DCFE3C6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349853750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:37:33.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:37:36'),
(22461, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5DE2829B083E5F856F5935F17BBF0E9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Reinicia o app e testa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771349901,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:38:21.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:38:21'),
(22462, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:38:21.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:38:21'),
(22463, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5DE2829B083E5F856F5935F17BBF0E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349901587,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:38:21.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:38:21'),
(22464, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGZeq3zqtyl1an9el0VTQhG1QgBbrKYHP3miowY0eK8Rg&oe=69A1A63A&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:38:21.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:38:21'),
(22465, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5DE2829B083E5F856F5935F17BBF0E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771349902399,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:38:22.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:38:22'),
(22466, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159:49@lid\",\"id\":\"A5DE2829B083E5F856F5935F17BBF0E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771350124260,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:42:04.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:42:05'),
(22467, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A5EFF512013E3D681AA673D507F47311\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771350204295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:43:24.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:43:24'),
(22468, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A5EFF512013E3D681AA673D507F47311\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771350204271,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:43:24.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:43:25'),
(22469, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A53C884FF04A10350D5405B87578C500\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771350204278,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:43:24.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:43:25'),
(22470, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267598054875383@lid\",\"id\":\"A53C884FF04A10350D5405B87578C500\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771350204288,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:43:24.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:43:25'),
(22471, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:51:04.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:51:05'),
(22472, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"171309132738561@lid\",\"fromMe\":false,\"id\":\"AC29929EEB80230135E53B5A4147202D\"},\"pushName\":\"Augusto Rodrigues Macedo\",\"message\":{\"extendedTextMessage\":{\"text\":\"Você melhora sua conexão Wi-Fi com 7 ajustes simples no roteador - Olhar Digital https:\\/\\/share.google\\/645bUVmsvIId4I0dD\",\"matchedText\":\"https:\\/\\/share.google\\/645bUVmsvIId4I0dD\",\"description\":\"Aprenda como acelerar e estabilizar sua conexão Wi-Fi doméstica com ajustes no roteador, frequência correta e controle de dispositivos conectados.\",\"title\":\"Você melhora sua conexão Wi-Fi com 7 ajustes simples no roteador\",\"previewType\":\"NONE\",\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"bQ4985oNp+BSLw==\",\"senderTimestamp\":\"1771020609\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Q4ozIpgH8FmuskQen2YOCan3pG939OSAmZsrlHZlUCY=\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771350664,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:51:04.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 14:51:05'),
(22473, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wH148SMo2baU1IHjUoRtHbsRqs3kmuoGTuDE1tWBBEtQQ&oe=69A1A2A7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:51:04.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:51:05'),
(22474, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"171309132738561@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/56019296_417845109053504_6193351787248877568_n.jpg?ccb=11-4&oh=01_Q5Aa3wH148SMo2baU1IHjUoRtHbsRqs3kmuoGTuDE1tWBBEtQQ&oe=69A1A2A7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T14:51:04.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 14:51:05'),
(22475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A55AD4FD195E92DD556221F3595CD329\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771353434893,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:37:14.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 15:37:15'),
(22476, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A5C2AE14C4946A047648935B82EB4F43\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771353434882,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:37:14.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 15:37:15'),
(22477, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A5C2AE14C4946A047648935B82EB4F43\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771353436218,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:37:16.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 15:37:16'),
(22478, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132310779334753@lid\",\"presences\":{\"132310779334753@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:48:22.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:48:22'),
(22479, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:51:00.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:51:00'),
(22480, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:51:03.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:51:03'),
(22481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:51:03.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:51:03');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22482, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":false,\"id\":\"3AFF01BB35D4BD473432\"},\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"message\":{\"videoMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7161-24\\/594013549_1220577833523755_3636701741500157787_n.enc?ccb=11-4&oh=01_Q5Aa3wEmUMfozFDhPSLlF177IbLavf-etrom0qv37ZJWwYN2xQ&oe=69BC2D36&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"video\\/mp4\",\"fileSha256\":\"p79+qw\\/MVEwCwZ7in8X\\/bAvGbIqDw9hIaYZdaHcHMX4=\",\"fileLength\":\"3043534\",\"seconds\":18,\"mediaKey\":\"5KPQIMX3jkqXmsR2h+WQdhOJS3lTBFyy0opiWGyZMlg=\",\"height\":480,\"width\":848,\"fileEncSha256\":\"9ZWx5QcYYwjbmbuIQUHB2HkYzk+v1Ba0DBpkPI6SaYc=\",\"directPath\":\"\\/v\\/t62.7161-24\\/594013549_1220577833523755_3636701741500157787_n.enc?ccb=11-4&oh=01_Q5Aa3wEmUMfozFDhPSLlF177IbLavf-etrom0qv37ZJWwYN2xQ&oe=69BC2D36&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771354261\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAEDBAIF\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAECAwT\\/2gAMAwEAAhADEAAAAPKdJ7ajdBTPXwxOZnDqhMS08aue\\/snxdLK+PZGVlL20vCVKOqdQyrSp9znxTPWqp3HuZkBZfPR8eVaZpJN0myGmHNOxnKWNhjCQA0AcoAQAf\\/\\/EAB8RAAICAgIDAQAAAAAAAAAAAAABAhEDExJRISIxYf\\/aAAgBAgEBPwBYJNWh4JoUG3SNM+jVPocqtnPsU4L2NiLHKLTR47HxodF\\/oschYpGuQ8Um7Rrb+lstls5M5M\\/\\/xAAeEQACAgICAwAAAAAAAAAAAAAAAQIREhMhUQMiYf\\/aAAgBAwEBPwDXIcJISbdGEujF9D4s2fBSS5o2Isc4sWJ6DUS12KDNbMGPxtmt1TLZbLZbLZ\\/\\/xAArEAACAgEDAgUEAgMAAAAAAAABAgADEQQSITFRExQiQWEgMlKRBXFCgbH\\/2gAIAQEAAT8A+gDmH6LdHZSu4nI7gzae8CxKwT1mi\\/i0urZi3IHE1GmFTkbukIxMt2m9u0ppss4ydo5hqYuABnJhoYPtKmco+MYlGtalCAcZEvuNjEzGYFzCvOJp2ApdifiaVwuoHqyBGG92Y2NktgAe08MqSrtuIPWanR+DUtgcNuml0raliExxLqjTaUYciDSkVeKCCO0yC7fEHGmP9zQqpfvHrow7iwgg9IK0wdrbsjOY\\/A5syB7TTHHNbFTLFR\\/WWLMfeBCqECw49xG09fiepiMxVR69qo5\\/qUE1uccSyuw59JG7mVU3KMlDjEYAE45xKbMKcf8AIbU24yMExb0xjI5lrIzDnpNJqRSCQ2OICDaW+c9JfqjbtPTaO0s12+lUGOJXYK0tUj7\\/AImj1K6fxFYAhhjkSh1W5XZcgHpiF9M1\\/iFdv+pq7a2QmsDd3go427Rx7iLS9Z4Gcw1sFyRxNmWGDiNSxA+I+kLKSBzEpsrBAHWOpAwwEr05fJDAAe0GtuHRjDrrj\\/kf3PO3YxuM83b+U85fj7zPOX\\/mf3PM2\\/mf3DfYerGeLZ7MZ\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"streamingSidecar\":\"QNoR0dmIZ3tEd35A+lncho0WxFLqo132kUgrmT6XbkKsufojqLhIbNPBP33aLgpRHhNTfwzbQnQ6jb8JQEOnf5bcVZ8lKSKz+yoJk73gKQ\\/QTU8f0VamR97pgYwvTmxNpcZQQW7Y5eo3ZDhzlU4t\\/yjt1zsgEEW394Gm9dUjdoZOp+esue+ytUKr8hk6DpUDuv9jvhzQoydRLNivf1daYCHjPqTdzAByqYZxUVbRq3y5bEpB4B\\/8mitdSA1mjui00itv2h\\/zi7QtgqBir2C1derN0lVkON3AhoJjD\\/s0w5iq1JDtjngPbZ\\/q8j9S9Y8XzxowgmJLTCapdpnxHoucg8CWQ0cyXR5Oe\\/W5RdfywN5GVYBL+gNxngfTPylOysz3vl0SbI4p80aPYkh+8Nw70ORGRN\\/8hJcQ6nGCxQwTDU5qVJJgMHozCQQbvftre\\/gLHkuZ1X8Cx8QuKB4kHxRWLz\\/glnhzeGZA\\/aEq7LnbNgGIWvXESQzb5qqL5mBquxV2LpMewx5WKzq8iXjRNeSEdEQX5qauzBsfs4mXmQOB3UK1Pvtxddi0FE6huGW3Qs1PHURprbexbRzXlX5C7l+jrVDH6YKN91hxxbpVHVwRjSD1b13PP4Q=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771347905\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"pq711o2GM0qn2zzXFpzYzFhs52pQp2y8us9cZvyVlSM=\"}},\"contextInfo\":[],\"messageType\":\"videoMessage\",\"messageTimestamp\":1771354263,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:51:03.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 15:51:04'),
(22483, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:51:03.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 15:51:04'),
(22484, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:58:42.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:58:43'),
(22485, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:58:52.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:58:52'),
(22486, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:58:52.395Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:58:52'),
(22487, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:59:02.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:59:03'),
(22488, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:59:06.463Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:59:06'),
(22489, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:59:11.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:59:11'),
(22490, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:59:43.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:59:43'),
(22491, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T15:59:54.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 15:59:54'),
(22492, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:03.351Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:03'),
(22493, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:05.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:06'),
(22494, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:10.270Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:10'),
(22495, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:10.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:10'),
(22496, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:13.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:13'),
(22497, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":false,\"id\":\"AC676EEC76F902231B5E3EE596AF6FA7\"},\"pushName\":\"Elci Brezolin\",\"message\":{\"conversation\":\"Oi. Boa tarde. Por aqui tudo certo, quase virando sapo de tanta água e aí?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"769+Qo9YVI4qamc6tUpBwtf6EAWcGYDC7oCoc8MQdxs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771354823,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:23.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:00:24'),
(22498, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLm0_rebC6RUOIIIJBCdOzSTRY2ztoeLzzrPTDSfWlDQ&oe=69A1BC65&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:24.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:24'),
(22499, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLm0_rebC6RUOIIIJBCdOzSTRY2ztoeLzzrPTDSfWlDQ&oe=69A1BC65&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:24.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:24'),
(22500, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:00:23.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:00:25'),
(22501, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:37.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:02:38'),
(22502, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":true,\"id\":\"A556BFA6B25DC9D3DBC41D50997CAD53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Kkkk\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC676EEC76F902231B5E3EE596AF6FA7\",\"participant\":\"238495322902583@lid\",\"quotedMessage\":{\"conversation\":\"Oi. Boa tarde. Por aqui tudo certo, quase virando sapo de tanta água e aí?\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"AC676EEC76F902231B5E3EE596AF6FA7\",\"participant\":\"238495322902583@lid\",\"quotedMessage\":{\"conversation\":\"Oi. Boa tarde. Por aqui tudo certo, quase virando sapo de tanta água e aí?\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771354957,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:37.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:02:38'),
(22503, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLm0_rebC6RUOIIIJBCdOzSTRY2ztoeLzzrPTDSfWlDQ&oe=69A1BC65&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:38.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:02:38'),
(22504, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A556BFA6B25DC9D3DBC41D50997CAD53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771354958931,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:38.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:02:39'),
(22505, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:42.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:02:42'),
(22506, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":true,\"id\":\"A54589D7046DEB61600937F4912EA249\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boatarde\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771354962,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:42.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:02:42'),
(22507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLm0_rebC6RUOIIIJBCdOzSTRY2ztoeLzzrPTDSfWlDQ&oe=69A1BC65&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:42.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:02:43'),
(22508, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A54589D7046DEB61600937F4912EA249\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771354962594,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:42.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:02:43'),
(22509, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":true,\"id\":\"A52AFC3F2487732763963BA5A85825A8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Aqui calor de 42 gral\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771354975,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:55.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:02:55'),
(22510, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:55.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:02:56'),
(22511, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLm0_rebC6RUOIIIJBCdOzSTRY2ztoeLzzrPTDSfWlDQ&oe=69A1BC65&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:56.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:02:56'),
(22512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A52AFC3F2487732763963BA5A85825A8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771354975990,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:02:55.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:02:57'),
(22513, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"238495322902583@lid\",\"fromMe\":true,\"id\":\"A5F83862DB7F5CFF16EB2308B62867A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Quase fritando haha\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771354998,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:03:18.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:03:18'),
(22514, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"238495322902583@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:03:18.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:03:18'),
(22515, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/416084283_1521313871745371_8484175024238222909_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLm0_rebC6RUOIIIJBCdOzSTRY2ztoeLzzrPTDSfWlDQ&oe=69A1BC65&_nc_sid=5e03e0&_nc_cat=102\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:03:18.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:03:19'),
(22516, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A5F83862DB7F5CFF16EB2308B62867A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771354999581,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:03:19.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:03:19'),
(22517, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"131713812398171@lid\",\"id\":\"A5FDB3F41E59C91F595904DF3D902307\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355061249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:21.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:04:21'),
(22518, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A5F83862DB7F5CFF16EB2308B62867A0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355064220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:24.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:04:24'),
(22519, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A54589D7046DEB61600937F4912EA249\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355064228,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:24.229Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:04:24'),
(22520, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A556BFA6B25DC9D3DBC41D50997CAD53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355064235,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:24.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:04:25'),
(22521, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"238495322902583@lid\",\"id\":\"A52AFC3F2487732763963BA5A85825A8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355064223,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:24.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:04:25'),
(22522, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:30.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:04:31'),
(22523, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:35.478Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:04:35'),
(22524, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:04:41.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:04:42'),
(22525, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:05:02.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:05:02'),
(22526, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:05:05.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:05:05'),
(22527, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:05:50.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:05:51'),
(22528, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"238495322902583@lid\",\"presences\":{\"238495322902583@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:05:51.515Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:05:51'),
(22529, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":true,\"id\":\"A5AFEF28D2F7C9AAE9E2C6E36EE1D255\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Opa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771355465,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:05.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:06'),
(22530, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:05.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:11:06'),
(22531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:05.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:11:06'),
(22532, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:07.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:11:07'),
(22533, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5988AD2BCC9731FD6D7FFDC4B4184A2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771355468121,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:08.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:08'),
(22534, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:06.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:11:08'),
(22535, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":true,\"id\":\"A5988AD2BCC9731FD6D7FFDC4B4184A2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boa\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771355466,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:06.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:08'),
(22536, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5AFEF28D2F7C9AAE9E2C6E36EE1D255\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771355466740,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:06.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:08'),
(22537, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:12.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:11:12'),
(22538, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":true,\"id\":\"A55E9BD9B3FA695433832B515E55CE0F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura o app playsim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771355472,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:12.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:12'),
(22539, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:12.811Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:11:13'),
(22540, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A55E9BD9B3FA695433832B515E55CE0F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771355473004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:13.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:13'),
(22541, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A55E9BD9B3FA695433832B515E55CE0F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355473025,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:13.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:14'),
(22542, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5AFEF28D2F7C9AAE9E2C6E36EE1D255\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355473014,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:13.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:14'),
(22543, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5988AD2BCC9731FD6D7FFDC4B4184A2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771355473017,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:11:13.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:11:14'),
(22544, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:12:56.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:12:57'),
(22545, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:12:57.561Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:12:57'),
(22546, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:12:57.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:12:57'),
(22547, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":false,\"id\":\"3A0AE74417ED311D2646\"},\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM47eqxGdz7y5bHl8oBKoH3XgR3eGNL_C9HVLMh66Iy6uvOgD1_w0axpUKwUfk76LFRC6EOG-TMAPbJFKpNzvTmfl0OKx6AmToKgxJQpg?ccb=9-4&oh=01_Q5Aa3wHOUvaz4OMla0Gg-AgI4meBkj3qLPUk9qOalZG5s8DodQ&oe=69BC427B&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Rn4n7Bygw5L3uGhhOj+UrtFhSIPCq+MNi7MPSWFY6Ik=\",\"fileLength\":\"92087\",\"height\":720,\"width\":1280,\"mediaKey\":\"gGU\\/t1LRc7wxEoZrk5hZGTnCJC6qZPirUbwngAGSuSQ=\",\"fileEncSha256\":\"TLfyHKbXU62AHxgrOW0d80r5GF0A7ps\\/+ck6dcMQong=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQM47eqxGdz7y5bHl8oBKoH3XgR3eGNL_C9HVLMh66Iy6uvOgD1_w0axpUKwUfk76LFRC6EOG-TMAPbJFKpNzvTmfl0OKx6AmToKgxJQpg?ccb=9-4&oh=01_Q5Aa3wHOUvaz4OMla0Gg-AgI4meBkj3qLPUk9qOalZG5s8DodQ&oe=69BC427B&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771355576\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAEDAgUE\\/8QAFwEBAQEBAAAAAAAAAAAAAAAAAQACA\\/\\/aAAwDAQACEAMQAAAA4JvUya0mWFI1mgZVq9ziZ29Ym4vvmpugc7NdI5wnQfoOeoR9khi6YYloTylTR10Lhu+o0WEfR51qkzfkGdOLQAwJnkIwA2AK\\/8QAGxEAAgIDAQAAAAAAAAAAAAAAABEBEhAgMSH\\/2gAIAQIBAT8A7rHkYQhFhjGPRkcKwVgrAox\\/\\/8QAGxEAAwADAQEAAAAAAAAAAAAAAAERAhASICH\\/2gAIAQMBAT8AaacfnPLp3zCE2iPXOLH8ZTplZXr\\/xAAtEAACAQMBBwIGAwEAAAAAAAABAgADBBESBRMhMUFRcRRhECIyUpGhIzAzcv\\/aAAgBAQABPwD+mpT0DOZTpIyBmqhc9IR8xCnPvN2\\/aFWHMQKx5CaH+0w5HMSmjVWCqOJlwPkluEFEalUk94KVE5yPGIaCgA4B7iJSUHLUwcdI1tT5ggZ6DpHW3XgzYPmFbLA4gnzCtoEwrAN3Bl3sOgtu7h2yoyJQoK9PiBw94y00GvQdPYGG4o4OEcH\\/AKm8f72\\/M3tT72\\/MZmY5Yk+fi11dMpVqrEGUagRAMkHxN4hJyxAPPAho0OOGb24TcW+n6nz4i29tgancd+E9NaYzvW8YlahRC\\/xOWPuIVIhpCLb6uIxDbH2hUCECN8aojDHOKATx4QW9Mn\\/URNnb5WZHBAMurX076WwTjpFSmcahwi0rZhyaNStl5hpcIijUo4Qxecp41npKderRUimZc1GrEM5ycQ\\/TEbdn5WlVxVI1N+pcAbo4h2hT7wbQpiDaaLyh2pkc\\/wBQ34Ma+XpPW+0N7Huy64n\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"bu9uFu+n2d1F8g==\",\"firstScanLength\":8038,\"scansSidecar\":\"bu9uFu+n2d1F8o7HYzEhCx63C5NZmoNJirps3GiQRWmZ8tVSfssPuQ==\",\"scanLengths\":[8038,37763,15658,30626],\"midQualityFileSha256\":\"GS\\/IEy4FG1Gwb9HHUNBV4XqAnjAFx4GvVple2AJkTBQ=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771347905\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Fzkl91E\\/r2YlrsLVhFECK+5soFJCDMTpjentdlpfPI8=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771355577,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:12:57.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:12:58'),
(22548, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:12:57.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:12:58'),
(22549, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:14:25.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:14:25'),
(22550, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":false,\"id\":\"3A7B8DC3C25BC66ED5C3\"},\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m237\\/AQPkQz1py-PHJgaMY-9wi16FaYH3EaFoqlAdxrrMVJszL-e8XVJoXVZPX9XiwR9dVA95R3rdr8t8Ki6WLdC4_P8QmPc2DMPmSmZt5UVKqg?ccb=9-4&oh=01_Q5Aa3wHQoiG1qVAKR-o_7lAgvEYDz_zmF-1XuqSNnIqQZSq6DQ&oe=69BC2ACD&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"OUFEZQiUZtIqjtoQ6I9oozNUcY2k2ak\\/yDQ6sYZr4Ew=\",\"fileLength\":\"83838\",\"height\":720,\"width\":1280,\"mediaKey\":\"J2gVKMoL4rKz20Rp6NMZuq4qkX\\/0Id+IaYL2rx4+UN4=\",\"fileEncSha256\":\"O27v+GQQdokC1KehqVd2JM6MBVPu7BYf6CtDDG4gX74=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m237\\/AQPkQz1py-PHJgaMY-9wi16FaYH3EaFoqlAdxrrMVJszL-e8XVJoXVZPX9XiwR9dVA95R3rdr8t8Ki6WLdC4_P8QmPc2DMPmSmZt5UVKqg?ccb=9-4&oh=01_Q5Aa3wHQoiG1qVAKR-o_7lAgvEYDz_zmF-1XuqSNnIqQZSq6DQ&oe=69BC2ACD&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771355663\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAMBAgQFBv\\/EABcBAQEBAQAAAAAAAAAAAAAAAAACAQP\\/2gAMAwEAAhADEAAAAORLLbSTVGM06ZVlNKsLAYzscPudDxcbDhc5TM7IOWOHfms6xPDl6dNFTNaNhbEbVz0AjBZV+fOy4qqc7qLRTRm3fQnFKjjSEyAMANEAAB\\/\\/xAAaEQEBAQEBAQEAAAAAAAAAAAAAEQESEAIg\\/9oACAECAQE\\/AInkRmVxrhxqRXTpn0v4zyqqrr\\/\\/xAAcEQACAgMBAQAAAAAAAAAAAAAAARESAhATITH\\/2gAIAQMBAT8AqyrOeRTJFWZuGXOh1MXKksSmQhpNfBZx5pCaRKKrcag\\/\\/8QALhAAAQQBAQUGBgMAAAAAAAAAAQACAxEEIRITMTNRBRRBQlKRIiNDU2FxEDKB\\/9oACAEBAAE\\/AAFSpUgNSqVfy2MAaBCMIY5q9k0tx+Chjftd11HxI4h8HJ0Dx4hGOQeIQfqAouy2Pja\\/ft1FoYcoFDIZSOFPWksZXc8gj+0ZQxMgE22M2u7Tgcph\\/Sm7PyJXWIg39LKx3479mQUVfxUscvMLbjYRXVAuA5TfdW6+WfdB0g+mfdBzvQ\\/3W2\\/o8f6t88fcWc4vkBdtcPFAEm0HSDzO90JpR53LGc2S97O5nRTbEcRdFkknoowHMDjl0a4Kad8biGSl35Qy5z5yrklcNuyo+zogNXWndnR+pHs5ng9HChaSDIjiwjhIjjRXzQhjR7JO8APRBtPCiY3dsJjbqOix53boaBOmcfAIzuIGg0TpifK1b4jyNT9XE0iE87JtYsrXY7PmNvZ6qEMDANsFFrK5gTi0aBwKth4vAREd8wItjut6E5sY4SgqZ7RRsKN+KIx87XxFoSzDhIVvpvuFbcp+oVcn3CvmXzCqf6yqf6yixx4uK3R6r\\/\\/+AAMA\\/9k=\",\"contextInfo\":[],\"firstScanSidecar\":\"4FbEnwo5SBfhRw==\",\"firstScanLength\":7723,\"scansSidecar\":\"4FbEnwo5SBfhR2XpVfQ3oMUX1SLCj+nMmxvUFWs7jSVjxjwiwq5YBg==\",\"scanLengths\":[7723,29777,13672,32664],\"midQualityFileSha256\":\"HIx5MN2uhNgEcvLr54CJm3PtgLYOH0fqfh\\/+szymDd0=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771347905\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Q1oEicWfAgrvQAsBTBlrlhzPusZ9dSVPWHkJOOVwa3o=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771355665,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:14:25.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:14:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:14:25.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:14:26'),
(22552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:14:25.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:14:26'),
(22553, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"presences\":{\"179714652111099@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:03.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:16:04'),
(22554, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"presences\":{\"179714652111099@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:12.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:16:12'),
(22555, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"presences\":{\"179714652111099@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:15.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:16:15'),
(22556, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:22.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:16:22'),
(22557, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":false,\"id\":\"3A5C51ACDAD3808BEBF2\"},\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"message\":{\"conversation\":\"Pronto só mandar o código nome e senha\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771347905\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ekrODIkz\\/PBSgklchs0Ok\\/zGGQNlq\\/bKVr07xZKGP\\/g=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771355782,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:22.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:16:22'),
(22558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:22.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:16:23'),
(22559, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wGuyBvzAU_1KXHpRahlNM78j1G4xlkwucH7U0WOMi85Xg&oe=69A1B606&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:16:22.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:16:23'),
(22560, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:01'),
(22561, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:03'),
(22562, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":428},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:18:03'),
(22563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:04'),
(22564, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:04'),
(22565, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"iao7\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:05'),
(22566, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:06'),
(22567, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:06'),
(22568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:07'),
(22569, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hQLc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:07'),
(22570, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:08'),
(22571, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.620Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:08'),
(22572, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:09'),
(22573, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:09'),
(22574, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:09'),
(22575, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"fKLB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:10'),
(22576, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KXyl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:10'),
(22577, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:11'),
(22578, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:18:01.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:18:11'),
(22579, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:12'),
(22580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:12'),
(22581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"vpJh\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:12'),
(22582, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PoHA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:13'),
(22583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KXyl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:13'),
(22584, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:13'),
(22585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"A8Rn\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:14'),
(22586, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"hQLc\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:14'),
(22587, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.646Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:14'),
(22588, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.642Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:15'),
(22589, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.605Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:15'),
(22590, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.643Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:16'),
(22591, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:16'),
(22592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:17'),
(22593, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:18'),
(22594, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:18'),
(22595, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:18'),
(22596, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:19'),
(22597, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:19'),
(22598, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:20'),
(22599, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:20'),
(22600, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:20'),
(22601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"OEXG\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:21'),
(22602, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:21'),
(22603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.688Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:21'),
(22604, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:22'),
(22605, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"qBgZ\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.647Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:22'),
(22606, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:22'),
(22607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:23'),
(22608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3tPp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:23'),
(22609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"eIaD\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:23'),
(22610, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:24'),
(22611, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PRtX\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:24'),
(22612, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PRtX\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:25'),
(22613, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:25'),
(22614, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:25'),
(22615, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:25'),
(22616, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PwNi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:25'),
(22617, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:26'),
(22618, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PRtX\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:26'),
(22619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3qFu\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:26'),
(22620, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:27'),
(22621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"BQMB\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:27'),
(22622, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"KXyl\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:27'),
(22623, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3XnA\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:28'),
(22624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3tPp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:28'),
(22625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"Jmg9\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:28'),
(22626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PRtX\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.677Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:29'),
(22627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:29'),
(22628, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"OEXG\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:29'),
(22629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:29'),
(22630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"PwNi\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:30'),
(22631, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:30'),
(22632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"jUMa\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:30'),
(22633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8na0\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:31'),
(22634, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"pkhS\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:31'),
(22635, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:31'),
(22636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:31'),
(22637, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3tPp\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:32'),
(22638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:32'),
(22639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:32'),
(22640, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:32'),
(22641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"MVdH\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:17:59.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:18:32'),
(22642, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:18:00.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:18:33'),
(22643, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":true,\"id\":\"A5EF7F27284FBDE06DCA7285B1E0F72E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"2519\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771355998,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:19:58.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:19:58'),
(22644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:19:58.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:19:58'),
(22645, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:19:58.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:19:58'),
(22646, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5EF7F27284FBDE06DCA7285B1E0F72E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771355999311,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:19:59.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:19:59'),
(22647, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5EF7F27284FBDE06DCA7285B1E0F72E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771356007848,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:20:07.848Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:20:08'),
(22648, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:20:08.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:20:08'),
(22649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:20:09.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:20:09'),
(22650, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":true,\"id\":\"A52811FAF2D020A6FE8437DFA36A1121\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"✅ *Usuário:* 664381655\\n✅ *Senha:* 235207230\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771356008,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:20:08.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:20:09');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22651, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A52811FAF2D020A6FE8437DFA36A1121\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771356009360,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:20:09.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:20:10'),
(22652, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A52811FAF2D020A6FE8437DFA36A1121\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356009351,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:20:09.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:20:10'),
(22653, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":false,\"id\":\"3A4CA2461F104E7C6D71\"},\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m238\\/AQOzwDIvnuXj4lYtXhGlaJ_XaOpqZ7GJSmfXVOJbJLPLrNev5d5Fka5nmcJSZQIUEoSlQ99BJk1q7ko66K-QoDFAHU7OtArlf_Fxm6WUag?ccb=9-4&oh=01_Q5Aa3wG_H0k5PQNT82dPMMGHzqySOmY4iClQOvS7MPxl_MqRNg&oe=69BC3F32&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"46bLAQVqx046+4fpwBtYNsmt0uQOZLlOjZNSLGLKUOQ=\",\"fileLength\":\"90883\",\"height\":720,\"width\":1280,\"mediaKey\":\"T+5IkwytZQGT5muPE3oINsc2isCwrt4BPtw1qg7AL60=\",\"fileEncSha256\":\"HySUJ\\/1s05+AFIOYSUCnzstQ6znXlzWzuPw1G8fDwVA=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m238\\/AQOzwDIvnuXj4lYtXhGlaJ_XaOpqZ7GJSmfXVOJbJLPLrNev5d5Fka5nmcJSZQIUEoSlQ99BJk1q7ko66K-QoDFAHU7OtArlf_Fxm6WUag?ccb=9-4&oh=01_Q5Aa3wG_H0k5PQNT82dPMMGHzqySOmY4iClQOvS7MPxl_MqRNg&oe=69BC3F32&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771356207\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAIDBAUBBv\\/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAw+6zy4xtoY5oLLR7aRICYl0niXeLjVVJpYLpEtl2aZYGqSvJm11tRrGsyCHe6nByajsedbE9AuELtpjdrX7jLZtmIV3oZvegAAAAAf\\/EABoRAAMBAQEBAAAAAAAAAAAAAAABERASIDH\\/2gAIAQIBAT8AhCEZHq+kzo6E9aJlL6\\/\\/xAAaEQACAwEBAAAAAAAAAAAAAAAAEQEQIAIx\\/9oACAEDAQE\\/AGOmO+qjwQriYwha\\/8QALhAAAQQAAwUGBwEAAAAAAAAAAQACAxEhIjEEEhNBUgUgUWFxgRQVIzNCkaEy\\/9oACAEBAAE\\/AAqVKlXddBs4ymL3BUewRbQ7djjNhfJnl32zS+TnHK5P7ODTVkG07s+m3vo7C6ra+0djk5EFfCTVYAKlbQBoeiilezM278kNtnAsPJTu0J20d7XkmzPlmDn8zop4XvcKwHO0yBrW03RcPMcMFMGiKgwCipbLqrAL8gKvDxQ+3oT5BOwsUR6rZyGyMJBoG1tEzHnUhQOZukm1bMTf8W0iN0DqcLTmHdtgAQiBFkYqidWO9inNrQFBpy\\/6CkaeIczlvSBlB7go5H6GRxU28G2X+1KGhYDaW7Z0VUNCnNBPgqNDA0Dqi3McT7p2lKFt8ypaLSCSPKlBNERYd+1xo61QljIGb+p74+TkJowKL+adPGXHPguJHV74Tdphx+oG+i+IjcCOMCgCNHELN1lZus\\/tU7rKo9RVO6ii0n8iuGfFcPz7o7v\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"1fBzPf+5PPoTpQ==\",\"firstScanLength\":6962,\"scansSidecar\":\"1fBzPf+5PPoTpd\\/I85Ubq3OoCjL4U3q1XbZc+efWVdTTKLDkvn4b9A==\",\"scanLengths\":[6962,36901,16957,30061],\"midQualityFileSha256\":\"L9tRB8YdBZx66XB7XMSM2ocffJTV0TMatRCnnHoF9ks=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771347905\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HL6CE0EIHqqcLAepBAoHKZz08XXCcfz5jMf61EpgzSQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771356208,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:28.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:23:29'),
(22654, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:28.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:29'),
(22655, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:28.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:29'),
(22656, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:29.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:30'),
(22657, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"presences\":{\"179714652111099@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:40.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:41'),
(22658, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"presences\":{\"179714652111099@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:45.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:45'),
(22659, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"presences\":{\"179714652111099@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:48.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:48'),
(22660, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:48.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:48'),
(22661, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":false,\"id\":\"3ABDCF6BCC146741448A\"},\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"message\":{\"conversation\":\"Certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771347905\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0ZST0vnlkuRi1NhRYhwK7lfFQV8jahU39wSDzcWL8Vw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771356228,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:48.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:23:49'),
(22662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:48.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:49'),
(22663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:23:48.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:23:49'),
(22664, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A573D154594B2A7E441497063AC843BF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356353906,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:25:53.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:25:54'),
(22665, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5152A206CC80ED7F614FD6C1232A411\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356353892,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:25:53.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:25:55'),
(22666, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5949A0D53A3A01CFBD938E433C30D57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356353884,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:25:53.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:25:56'),
(22667, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A512C7383C986B2FA2CA730A24963FAE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356353898,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:25:53.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:25:56'),
(22668, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"179714652111099@lid\",\"fromMe\":true,\"id\":\"A5D785AD414C981831AF32EBEC7BCFEE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/589414931_1226841269031672_7227303294368202285_n.enc?ccb=11-4&oh=01_Q5Aa3wEU2uEuv9FmJqpVCRXWrU1IcFiUj1oyFGcPJGO-4Q2G3Q&oe=69BC1AB3&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"jt7zVxpeYkvZm0kEdowDTbN0s1mFojKcpQ2pUBafsIQ=\",\"fileEncSha256\":\"dMtaiZjamcEsRWkWPQzSeXQxqWRplJMvNrhx\\/czFH6Y=\",\"mediaKey\":\"kJ5vP5Am8f1vanrwIZa9tc9JFEDJUq+uqhdGeRzxyXg=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/589414931_1226841269031672_7227303294368202285_n.enc?ccb=11-4&oh=01_Q5Aa3wEU2uEuv9FmJqpVCRXWrU1IcFiUj1oyFGcPJGO-4Q2G3Q&oe=69BC1AB3&_nc_sid=5e03e0\",\"fileLength\":\"435248\",\"mediaKeyTimestamp\":\"1771356433\",\"firstFrameLength\":434830,\"firstFrameSidecar\":\"xkd8SyffQlVk3Q==\",\"isAnimated\":true,\"stickerSentTs\":\"1771356433840\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771356434,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:27:15.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:27:15'),
(22669, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"179714652111099@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:27:15.020Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:27:15'),
(22670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5D785AD414C981831AF32EBEC7BCFEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356436117,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:27:16.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:27:16'),
(22671, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"179714652111099@lid\",\"pushName\":\"🦥  𝔅 𝔉𝔞𝔯𝔦𝔞𝔰  🦍\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/618997398_4267469500163995_2247667662135112790_n.jpg?ccb=11-4&oh=01_Q5Aa3wFfS48-a3EM086CKOcXZVl70ehgInTRawx8skxAYBhgLQ&oe=69A1EE46&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:27:15.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:27:16'),
(22672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"179714652111099@lid\",\"id\":\"A5D785AD414C981831AF32EBEC7BCFEE\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771356441320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:27:21.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:27:21'),
(22673, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:28:09.158Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:28:09'),
(22674, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534424018_1342248460622906_950895524871271542_n.jpg?ccb=11-4&oh=01_Q5Aa3wGJqhET3Vyl7xOgFFFuqoT89Z0ubKHljT7NuHaaOWdj_w&oe=69A1D432&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:28:09.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:28:09'),
(22675, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACE3A738B7DFE0149F5FB8CDB7F6F7B8\"},\"pushName\":\"Sampa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637985774_1577183283491064_2890194716876429064_n.enc?ccb=11-4&oh=01_Q5Aa3wENcWK3rxiI1v5G6sQzomjt1dgqsI6w5xl9TQ426YxPbw&oe=69BC4D63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"Irmão ele deu este erro Aki\",\"fileSha256\":\"2MrXKVcsN2xga\\/UccUPeXqmzhZm1AVLqJlx+PrGW6rQ=\",\"fileLength\":\"80738\",\"height\":899,\"width\":1599,\"mediaKey\":\"edwu0n5LTOoIXTGlJJxB5HEsDJpSSkvbltCHKORcU7g=\",\"fileEncSha256\":\"J02ywWGp80TgW0+DpaMVMzu57a+Ujyfzv86OVF+7C4U=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637985774_1577183283491064_2890194716876429064_n.enc?ccb=11-4&oh=01_Q5Aa3wENcWK3rxiI1v5G6sQzomjt1dgqsI6w5xl9TQ426YxPbw&oe=69BC4D63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356488\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAvAAACAwEAAAAAAAAAAAAAAAAAAgEDBQQBAAMBAQAAAAAAAAAAAAAAAAABAwIE\\/9oADAMBAAIQAxAAAADJd57YaBXMlYiyPkmdEpi9HNfeGlA8XSlyBnkJcW8DPdIZxCg3wKBT\\/8QAJRAAAgIBAwMEAwAAAAAAAAAAAAECEQMQEjEEMlEhIiNiM0Fh\\/9oACAEBAAE\\/AKaIdyFtor7FfYy9nIrbJYZ3wyclJ3RjVyPk8M9\\/hlyJxnst8MxTUJpsn1kJNPahHT\\/kQ5N+RubGpEt22nwMsRgdZEOdfojNv0SHP+GWTePjR6Ye9EuSOk+zX\\/\\/EABwRAAMAAgMBAAAAAAAAAAAAAAABAhETEiBhMf\\/aAAgBAgEBPwD5OWjdPptn0vlLWJKXKWjTJpkfRn\\/\\/xAAdEQACAgIDAQAAAAAAAAAAAAAAAQIRE2EDECEx\\/9oACAEDAQE\\/AH9pMxPQuJ6IVJesunZlloyyI+D6Qj\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"KfktXMK2FDCNqygqjjfI+ZPDRFoVb\\/\\/pH9hxq2l610zyog0w2+CxhQ==\",\"scanLengths\":[10770,27422,10974,31572],\"midQualityFileSha256\":\"sZZ\\/aG1cr8qpLG3sm1g6\\/PPgOhm+FBMUHB6gaPOfB4w=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VGC6my5eeH\\/Yuso4mt1UNZsD\\/hMOYfOh9fQO+o32KFw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771356489,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:28:09.159Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:28:10'),
(22676, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:28:09.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:28:10'),
(22677, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:28:11.112Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:28:11'),
(22678, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:28:13.625Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:28:13'),
(22679, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:34.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:29:34'),
(22680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5469ADE1F5D0FFF8C35868D3185D6CE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/lvstore.top\\/control\\/actions\\/aplicativos\\/iptv-smarters-pro-1-1-1.exe\",\"matchedText\":\"https:\\/\\/lvstore.top\\/control\\/actions\\/aplicativos\\/iptv-smarters-pro-1-1-1.exe\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771356574,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:34.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:29:34'),
(22682, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:34.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:29:35'),
(22683, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A59F65F9FC893375515C2EDEC976B49B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587376984_1627463385057477_3217777671261170544_n.enc?ccb=11-4&oh=01_Q5Aa3wEQrb8wSG53CyAE6fM5_8AxVBVxF6ZiHYe6C2g-a-ZODg&oe=69BC2D1B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wFc2cJOoVHiXizhu3FguOILzQDgIJd\\/Cf5\\/ozrIloUw=\",\"fileLength\":\"17589\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"nComa9cFf\\/lbS+1vymNujw2FcNkJUYEOO7f0UkrlS34=\",\"fileEncSha256\":\"nzK+72sUcO0SyAt7utiB9nQtFWOxkspgTEE3toEZMgE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587376984_1627463385057477_3217777671261170544_n.enc?ccb=11-4&oh=01_Q5Aa3wEQrb8wSG53CyAE6fM5_8AxVBVxF6ZiHYe6C2g-a-ZODg&oe=69BC2D1B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356576\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ACFUO1QpV0dWH1dMSldPJFJZPiZCUjgVAAEAOVNFUk5bT0NJWVUyN1pYVFAuWElDT1JVN0AFAAYAAAAdQT5KKA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356583,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:43.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:29:43'),
(22684, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:43.482Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:29:43'),
(22685, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:43.864Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:29:44'),
(22686, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A59F65F9FC893375515C2EDEC976B49B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356583706,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:43.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:29:45'),
(22687, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A59F65F9FC893375515C2EDEC976B49B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356588131,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:48.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:29:48'),
(22688, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5469ADE1F5D0FFF8C35868D3185D6CE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356588129,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:29:48.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:29:48'),
(22689, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:09.130Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:09'),
(22690, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:12.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:13'),
(22691, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:13.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:13'),
(22692, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACA491FE3468D42F9E77C207E67D149F\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587364106_2049821799193745_1535065731941992873_n.enc?ccb=11-4&oh=01_Q5Aa3wEBsEA2uHGGdkuL_5E9LV75C4Gj2L9bAB2-qEGxRTstyw&oe=69BC3D07&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cCzQ58xIIkbmyFx+RrtJldc4+QiPMoSkacGbyh6WIeY=\",\"fileLength\":\"8162\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"0BodAhy3gzMp2Z9qsBgzewj9Yz3NA2N1znqKNu4Zt+I=\",\"fileEncSha256\":\"Z6ZI8AKvhjmF8qWuzUu11GEGZqm6jZNrMSLQKCjTlXA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587364106_2049821799193745_1535065731941992873_n.enc?ccb=11-4&oh=01_Q5Aa3wEBsEA2uHGGdkuL_5E9LV75C4Gj2L9bAB2-qEGxRTstyw&oe=69BC3D07&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356611\",\"waveform\":\"AAAAAAAAAAAAAAAAAAAAAAAABCJKVVRKWVdMV1Y1CCBLUzovSD4xMVk4HTUhADxYUkoWEDJLTkVGT1FIPC5NSQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"gZ8C8r8\\/qgYWgx+a5gHLiv8Nyo6h4TH62Fv\\/AxUJmZw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356613,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:13.509Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:30:13'),
(22693, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:13.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:14'),
(22694, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:13.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:14'),
(22695, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A5F1DF10EFD07809E7CEEE5DE2288DC0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637192433_792413246601387_5042656424862577606_n.enc?ccb=11-4&oh=01_Q5Aa3wGHq7E6a-8sY9XfThHz4VBkiCXgD3MjCet1TXVYfGiAOA&oe=69BC1A1B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"CkWojnaTfmN5aZFXbl3vexFutb9N2X9VYaiSgSdlQ9c=\",\"fileLength\":\"7239\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"jJxWWOHE2mlEfO73gkDxsdawxAAj8gLbOZ+BGOaUkwI=\",\"fileEncSha256\":\"qxLNv2bRSigdDITWj47fN0VE0UlnO3Uu9C4VrAkETpk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637192433_792413246601387_5042656424862577606_n.enc?ccb=11-4&oh=01_Q5Aa3wGHq7E6a-8sY9XfThHz4VBkiCXgD3MjCet1TXVYfGiAOA&oe=69BC1A1B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356638\",\"waveform\":\"AAoICAcIQWNfW1hJMEJhYUxQGSc7PUBGUllYWFQ+DQVSUShAQ0kzQ11ZVFZCIlhFW1tYUlEoN05PQz9NSlRVSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356640,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:40.580Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:30:41'),
(22696, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:40.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:41'),
(22697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:40.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:41'),
(22698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:57.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:58'),
(22699, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A59AA86C7D869320661BECF07ECD6B18\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637901028_4682366741994234_8743190637344052948_n.enc?ccb=11-4&oh=01_Q5Aa3wFxxDln8upqW5Sslgi6DbBPKzoMnLabpfV5g4c4a7bjLQ&oe=69BC1AE7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IIQVaH9Js2UCYZGKoEf5LztFZqlVS+YwK\\/LhaEgqdl4=\",\"fileLength\":\"11164\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"ij7\\/wsIBeACH6PkRDQvZNDRyOCC4xsXMlRxQLksQPb4=\",\"fileEncSha256\":\"bPcKdoCleRdHe\\/VLlCnIUbDKlv5WinUPSugfz5jXH1c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637901028_4682366741994234_8743190637344052948_n.enc?ccb=11-4&oh=01_Q5Aa3wFxxDln8upqW5Sslgi6DbBPKzoMnLabpfV5g4c4a7bjLQ&oe=69BC1AE7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356653\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ABAPEA4PGBYWDBERFRMPSVtUMldRVUxKR0pDV0FQUFAyRFdYGj5GQT9CQEBBPy4CAgUDAQQgPzZMSQtMRlBVSA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356657,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:57.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:30:58'),
(22700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:58.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:30:58'),
(22701, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A59AA86C7D869320661BECF07ECD6B18\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356657980,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:57.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:30:59'),
(22702, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A59AA86C7D869320661BECF07ECD6B18\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356657999,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:30:58.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:30:59'),
(22703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5F1DF10EFD07809E7CEEE5DE2288DC0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356670241,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:10.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:10'),
(22704, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:17.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:17'),
(22705, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:21.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:21'),
(22706, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5FF61FE69049EA8E9CB46AD91629F15\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"https:\\/\\/m3u-ip.tv\\/browser\\/settings\\/index.html#add_playlist\",\"matchedText\":\"https:\\/\\/m3u-ip.tv\\/browser\\/settings\\/index.html#add_playlist\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771356681,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:21.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:22'),
(22708, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5FF61FE69049EA8E9CB46AD91629F15\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356681535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:21.536Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:22'),
(22709, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:21.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:22'),
(22710, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:22.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:23'),
(22711, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5F1DF10EFD07809E7CEEE5DE2288DC0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771356688426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:28.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:28'),
(22712, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5F1DF10EFD07809E7CEEE5DE2288DC0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771356689951,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:29.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:30'),
(22713, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:34.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:34'),
(22714, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:44.192Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:44'),
(22715, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:47.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:48'),
(22716, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5F7F4EDA3056222FB2E579916F30CD0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Url: http:\\/\\/assistz.top\",\"matchedText\":\"http:\\/\\/assistz.top\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771356707,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:47.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:48'),
(22717, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:48.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22718, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:49.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:49'),
(22719, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":false,\"id\":\"3A4197F9ABDB6BBE4270\"},\"pushName\":\"Clovis Faria\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/528080268_916213407891966_5916539944886537417_n.enc?ccb=11-4&oh=01_Q5Aa3wFx8-pqYvTSB9oVI0q8D-8eAibURlAn_94kT52qiP0Veg&oe=69BC3BB5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MM1Sl9Zf4tw6YmQ951UqMqXT23JGIAZK1blUNuDiwEI=\",\"fileLength\":\"31899\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"O78XmFnPfjFfWQ1nXlkN0O+aDV+ayfq4ELO55N1IHE8=\",\"fileEncSha256\":\"hg3iiNfSYN91QzwkQUEOrep7D37yrln+N1rBisCd578=\",\"directPath\":\"\\/v\\/t62.7117-24\\/528080268_916213407891966_5916539944886537417_n.enc?ccb=11-4&oh=01_Q5Aa3wFx8-pqYvTSB9oVI0q8D-8eAibURlAn_94kT52qiP0Veg&oe=69BC3BB5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356693\",\"streamingSidecar\":\"K3yhmfeIjg041Q==\",\"waveform\":\"Ml1kZGRkZFxhZGRkW2NjSVdkZF1kZGNkV2RkSlFCSkxGZGRgYV1jZENUVGReZFleRGJUZGRkZGRkZGRkUVhkZA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286448\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WHROUjc1ZXKmLUBnkRdwhOp0mxDkEqfSkR1GFbiQTaE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356708,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:49.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:49'),
(22720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5F7F4EDA3056222FB2E579916F30CD0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356708225,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:48.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:49'),
(22721, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:49.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:50'),
(22722, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:48.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:51'),
(22723, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:49.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:31:51'),
(22724, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5F7F4EDA3056222FB2E579916F30CD0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356708290,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:31:48.290Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:31:51'),
(22725, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:15.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:32:16'),
(22726, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:16.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:32:17'),
(22727, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5D290B1B6BDB10A22E919A050ED44B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356736101,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:16.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:32:17'),
(22728, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5D290B1B6BDB10A22E919A050ED44B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356735998,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:15.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:32:17'),
(22729, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5D290B1B6BDB10A22E919A050ED44B2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"username=azcyp14x password=618cmczt\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771356735,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:15.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:32:17'),
(22730, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:34.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:32:34'),
(22731, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A523149F8EFB4AC4AB7EBB4EFEF1ADDA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/24006934_4355335441409703_4627438980374120760_n.enc?ccb=11-4&oh=01_Q5Aa3wHxZ6U6YGULGBw0BxIZkTlqj7zJQpLuhXmPwCoz9vWUJA&oe=69BC38A5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PVYln++iMQuXGn8mev4O6wj8Q9wXZNTtExt5lfIUA+Q=\",\"fileLength\":\"12509\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"aLW9AbNdMz+dQPEI0QGX96rhPif3oDKi1VXZmIc+tyc=\",\"fileEncSha256\":\"PS4HplnM3NsTptBdaMwUzntwnilZaJPh1+mo4X\\/U2Rc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/24006934_4355335441409703_4627438980374120760_n.enc?ccb=11-4&oh=01_Q5Aa3wHxZ6U6YGULGBw0BxIZkTlqj7zJQpLuhXmPwCoz9vWUJA&oe=69BC38A5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356750\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAIPN00rXlRUKkJRVUxRJk5MVlU9WEBIU0YuQ1M7E0pQUxpZXTUYEjhAVFRXQ1hVVFFXR0NSU1IfQVA8LhNESg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356754,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:34.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:32:34'),
(22732, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A523149F8EFB4AC4AB7EBB4EFEF1ADDA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356754817,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:34.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:32:35'),
(22733, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A523149F8EFB4AC4AB7EBB4EFEF1ADDA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356754792,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:34.793Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:32:35'),
(22734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:32:34.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:32:35'),
(22735, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:02.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:33:02'),
(22736, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A54953ADD9135103CD2D92A63B4E7CE8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/34673773_878727141820426_448273837716145421_n.enc?ccb=11-4&oh=01_Q5Aa3wHWOl4Z1dK6DnVfxeGOYOSSEPe7OhcSv96qy5fToEyF3Q&oe=69BC421F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pOuSh4hKv8SwU3GArwI4EJ2DermZvX1\\/LQGWmDMahTE=\",\"fileLength\":\"8422\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"sywAeARjVqWs1v4Hde0hE5qo8XDt3xvwBpmvWjFqyuk=\",\"fileEncSha256\":\"74O958fEFdRl8vwdvKeSqZad1jTl8kE4ZH2JtEmIdYk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/34673773_878727141820426_448273837716145421_n.enc?ccb=11-4&oh=01_Q5Aa3wHWOl4Z1dK6DnVfxeGOYOSSEPe7OhcSv96qy5fToEyF3Q&oe=69BC421F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356779\",\"waveform\":\"AAQKAAMCCwsOBQkKCQwMCwYKDggIChhMXFhcWFJKSE4rNlJRMzlEVFhOTFFKPUhNT1cnUVJRVEooQEJWPhQ0RQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356782,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:02.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:33:02'),
(22737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:02.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:33:03'),
(22738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A54953ADD9135103CD2D92A63B4E7CE8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356784004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:04.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:33:04'),
(22739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A54953ADD9135103CD2D92A63B4E7CE8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771356796992,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:16.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:33:17'),
(22740, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A54953ADD9135103CD2D92A63B4E7CE8\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771356798295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:18.295Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:33:18'),
(22741, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:35.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:33:35'),
(22742, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:33:43.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:33:43'),
(22743, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"132860619034854@lid\",\"presences\":{\"132860619034854@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:34:13.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:34:13'),
(22744, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511972421904@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04441E64D2DE834ED19\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Dry \\/ Ios VIvo*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *18\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771356854,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:34:15.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:34:15'),
(22745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"132860619034854@lid\",\"id\":\"3EB04441E64D2DE834ED19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356860530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:34:20.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:34:20'),
(22746, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:34:56.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:34:56'),
(22747, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:06.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:07'),
(22748, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:10.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:10'),
(22749, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:10.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:11'),
(22750, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC38ED48C3D11E56719CE8D6D087A902\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594014236_952241353911707_8173349039026613617_n.enc?ccb=11-4&oh=01_Q5Aa3wG5FLky8ze2m7PkNpEmKEpeaSVY-fcgVZusyFVy7FTNpA&oe=69BC2C93&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"wd0I9EXOM9R4ZS\\/cRlWvDCKXBqkNmvlSP4UjYjhdI9M=\",\"fileLength\":\"30798\",\"seconds\":14,\"ptt\":true,\"mediaKey\":\"OdSOHzrDx8f8BSD9EFdgCiCfuma3rt45JrSVfjDM3uQ=\",\"fileEncSha256\":\"SUVbBjU9S24IdyT\\/5zqIu4Bwc6hdqpFEvw\\/nn+pU8NU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594014236_952241353911707_8173349039026613617_n.enc?ccb=11-4&oh=01_Q5Aa3wG5FLky8ze2m7PkNpEmKEpeaSVY-fcgVZusyFVy7FTNpA&oe=69BC2C93&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356898\",\"waveform\":\"AAAAAABNUyJHSwAiSj4AAQAzGlRJS0U8AABTNlFFRjpDTk4MAAAAKkFRSjlXEgAXJxZGRTsQRTElQTNDABk9Sw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"SToGinJ2CctQIz6Lqkiu+pTNx0KZHaGaGyTrpXTkky8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356910,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:10.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:35:11'),
(22751, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:11.245Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:11'),
(22752, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:11.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:11'),
(22753, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:24.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:24'),
(22754, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B2ACDFB442F1556928\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Clovis \\/ Ios Vivo*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *07\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771356925,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:25.753Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:25'),
(22755, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:26.442Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:26'),
(22756, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC3ED79331ADFC42470A251C604CFBE7\"},\"pushName\":\"Sampa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637835281_820138774421926_5314112288074499183_n.enc?ccb=11-4&oh=01_Q5Aa3wHKCaN3cdjwXa1oyhWzNSqhs1mt2yKzk7-37fatIUj6mw&oe=69BC4DB0&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"w7BVKTfxDh1U\\/Zxd49WB9NZLxj0zs3NiBzY1KvTcMz0=\",\"fileLength\":\"173861\",\"height\":1599,\"width\":899,\"mediaKey\":\"2OcAviLKvFga5hAoHGTyI0lWp7OOsLTAKguAYcHWGz4=\",\"fileEncSha256\":\"53Yr4WHxqiiVCC+rqWyMOM7zwob5gVW9EGRpj6aObsU=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637835281_820138774421926_5314112288074499183_n.enc?ccb=11-4&oh=01_Q5Aa3wHKCaN3cdjwXa1oyhWzNSqhs1mt2yKzk7-37fatIUj6mw&oe=69BC4DB0&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356925\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADwAIQMBIgACEQEDEQH\\/xAAuAAACAwEAAAAAAAAAAAAAAAAABQEDBAIBAQEBAQAAAAAAAAAAAAAAAAECAwD\\/2gAMAwEAAhADEAAAAFmVzMWkh7XcKhiTWZqrbaZVcW1sqSDLfQ5SMKjRScPJzoGK7oTmd\\/XC82A\\/\\/8QAKhAAAgECAwYGAwAAAAAAAAAAAQIAAxEEEiEQExQiM1EjMUFTYWJCQ3H\\/2gAIAQEAAT8AqK4AZZdwQYy3MFJjNw3cQPgX5Qjzd4Nf1vCuEty0zL0V13E4jDexMJ1IxRvxMyr2MqqoRrCXmC6sJ+Zf7SsfDbWZpgetLn4h\\/olceE2uzCECp5ze\\/aGqB6gyrUzU28ti5QCSZmbuYlZ1mdib32cWfbWGoKjXKCUKFJxqsNClryzh0n\\/\\/xAAeEQABAwQDAAAAAAAAAAAAAAAAAQIRElFioRAhQf\\/aAAgBAgEBPwBrLqU5aIz0I6CqfEIIE46uUqQp\\/8QAIBEBAAEDAwUAAAAAAAAAAAAAAQACERIDIKExMkFikf\\/aAAgBAwEBPwCvUu3BmSvZzL+nMqoF6sNMEcqvsvsF8kyJkT\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"TtpqNz\\/6UbeohCfaniUCe3d9NNsO0SvU\\/5LP65+UHHPWJm8WJSBYfQ==\",\"scanLengths\":[12450,53463,34742,73206],\"midQualityFileSha256\":\"XXb2kw0jQxMkCz+VFgQpVzPeHogj2Qm0nUROQcXWwQs=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WR3csep3+i\\/ofxHt0+oCqESC7WtcmWL\\/hPVi+lJBtM0=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771356926,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:26.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:35:26'),
(22757, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:26.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:27'),
(22758, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:26.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:27'),
(22759, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"3EB0B2ACDFB442F1556928\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356927463,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:27.464Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:35:27'),
(22760, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"3EB0B2ACDFB442F1556928\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771356935147,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:35.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:35:35'),
(22761, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:41.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:41'),
(22762, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:35:48.808Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:35:49'),
(22763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5EDEC758C93F5C53A2EE2544AA95550\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356961274,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:01.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:02'),
(22764, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5EDEC758C93F5C53A2EE2544AA95550\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771356961305,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:01.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:02'),
(22765, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:02.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:03'),
(22766, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:03.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:03'),
(22767, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5EDEC758C93F5C53A2EE2544AA95550\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/598197057_1285583120287398_1959690694492373745_n.enc?ccb=11-4&oh=01_Q5Aa3wH3f9Hg_gpYBiH0NqM_itcq39QGAq9F0lzpdaOEOkYzBw&oe=69BC4895&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"35f14+RIlT3mWoNlxZwZ3fqUlpcHE3hHQKQ6Dkym9iU=\",\"fileLength\":\"12072\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"ogr0gl0Jwk6CaAMcpovRNkfZzfGAW6sx9inSiPtk1F0=\",\"fileEncSha256\":\"QOlppn6ljCq6cmAwC+9lfJIfvega3AcmB1am7jKfCfA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/598197057_1285583120287398_1959690694492373745_n.enc?ccb=11-4&oh=01_Q5Aa3wH3f9Hg_gpYBiH0NqM_itcq39QGAq9F0lzpdaOEOkYzBw&oe=69BC4895&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356956\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AFhPUyxWW1dYWVZVMFRSV0tGE0JHUzYQM1hUNTQtUFpWNh89PB5PSEs0P1FNRUxVVD5TRVQ+NkkwTEVPNkNLHA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356962,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:02.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:03'),
(22768, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:07.740Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:07'),
(22769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:08.915Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:09'),
(22770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:09.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:09'),
(22771, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:10.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:10'),
(22772, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:11.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:11'),
(22773, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":false,\"id\":\"3A8B8518E46B100EB8ED\"},\"pushName\":\"Clovis Faria\",\"message\":{\"conversation\":\"👍🏾\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286448\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RfaVAhhhABQuJb8fMMPn1lj6I81HYmN+1hwDG1tpu+o=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771356970,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:11.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:11'),
(22774, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:11.082Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:12'),
(22775, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:11.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:12'),
(22776, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wHP-gaWNboWtvm9qlegNQ73oZq_46s-8n8fwwPcM-W2rA&oe=69A1E5BC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:11.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:12'),
(22777, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:15.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:15'),
(22778, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:16.232Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:16'),
(22779, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACFCB5459B88A0FA97A563115A1D9159\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590195817_1489008769455467_1611822217031828688_n.enc?ccb=11-4&oh=01_Q5Aa3wGOTSww7-5gKOcQzefWoPcu831P_yBcPAylUYNPGJIRpQ&oe=69BC4BA5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"r3sU5SxcFGVPo9ZfNqNvr9XjQ4tA+YFwWoCY0DyZq9o=\",\"fileLength\":\"9100\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"g\\/T2XStvRfoI4ZG6QT1Q2RO3vCwJ4Zj3+H9cC34TU9U=\",\"fileEncSha256\":\"\\/lAPc1beEfrrvpU\\/KbenNNWrZenW9fyslHr+\\/Sdo42c=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590195817_1489008769455467_1611822217031828688_n.enc?ccb=11-4&oh=01_Q5Aa3wGOTSww7-5gKOcQzefWoPcu831P_yBcPAylUYNPGJIRpQ&oe=69BC4BA5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356973\",\"waveform\":\"AAAWWVpYRyZJQTZaU0I4HE09RUc\\/HwEAAAAAL1BHPjggAgAAAAAADEU8QT5BREpISjQBAAAAAAAAAABAQldIOA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GjAhkAKLn97t7eifYRHumaSHx+y6yU2cSnwigbgia90=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771356976,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:16.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:16'),
(22780, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:16.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:17'),
(22781, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:16.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:17'),
(22782, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:36.610Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:36'),
(22783, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"pushName\":\"Fabricio \",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:36.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:37');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22784, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"35562429903034@lid\",\"fromMe\":false,\"id\":\"4A38B7D05EB4D8970321\"},\"pushName\":\"Fabricio \",\"message\":{\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771342290\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770763101\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2vB46rrIldhAoOut1KpVhkq3etl7+e23+wtuUW9yH1A=\"},\"documentWithCaptionMessage\":{\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/595615788_3516900818451286_1088822535291267919_n.enc?ccb=11-4&oh=01_Q5Aa3wHlqQV89TMVx2_u4jD09qXb14AUgp3QYn9EkhnIxKPIbg&oe=69BC25D5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"title\":\"Comprovante\",\"fileSha256\":\"J+EsAFrrqC9SXfkCh5cXkuGcbn7hFR2wCpFzvABoocs=\",\"fileLength\":\"19619\",\"pageCount\":1,\"mediaKey\":\"9dtpPjZ79\\/rJN0fykV7ATYRWUPHTIhgJUfUmoYU+lRU=\",\"fileName\":\"Comprovante.pdf\",\"fileEncSha256\":\"F9zldT5ssGjaA596YH+201g5uQww9wl+vGkDleIfYZs=\",\"directPath\":\"\\/v\\/t62.7119-24\\/595615788_3516900818451286_1088822535291267919_n.enc?ccb=11-4&oh=01_Q5Aa3wHlqQV89TMVx2_u4jD09qXb14AUgp3QYn9EkhnIxKPIbg&oe=69BC25D5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771356962\",\"contactVcard\":false,\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAC4DASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAECAwb\\/xAAUAQEAAAAAAAAAAAAAAAAAAAAA\\/9oADAMBAAIQAxAAAAD0lxDqxTSDnLDrc6AOebk63kOrGygAAAAA\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAgEBPwB\\/\\/8QAFBEBAAAAAAAAAAAAAAAAAAAAMP\\/aAAgBAwEBPwB\\/\\/8QAIxAAAQMDBAIDAAAAAAAAAAAAAQACEQMSISAxQVEQIhMyQP\\/aAAgBAQABPwB2\\/wBoVw7GmpbPsm2HaEbiPUhC6MxKygqok7qlT5OQgANtFQZ3hBzpgEIF07DRUAJymsaOELW8qR2pHfirJIwSg0HhydTzEEhGnBgAwviHZQED8f8A\\/\\/4AAwD\\/2Q==\",\"caption\":\"Boa tarde Jhony\"}}}},\"messageType\":\"documentWithCaptionMessage\",\"messageTimestamp\":1771356996,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:36.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:36:37'),
(22785, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:36.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:37'),
(22786, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:36:37.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:36:38'),
(22787, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"35562429903034@lid\",\"fromMe\":true,\"id\":\"A540A1DCD190F2B3BEAEF2B7820C94E1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597009623_921045620318586_2411330320582787249_n.enc?ccb=11-4&oh=01_Q5Aa3wGGCjPvlTJps-v--wbCM2R3KBVSzo8mkXFk0nmwm7PUFg&oe=69BC49D1&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"\\/P9hnRAz2UkzkshwH2aBSt6CyTcWmwkyMaW3cJoll7Y=\",\"fileLength\":\"29353\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"4qoC2u3AwuKp9LQbG7w30V7jriCBmlzQPU70A92zbI4=\",\"fileEncSha256\":\"HCyJHIfj4iP9ohmUe8rEoNLPSzKkNcCyPEmyPmxbAWo=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597009623_921045620318586_2411330320582787249_n.enc?ccb=11-4&oh=01_Q5Aa3wGGCjPvlTJps-v--wbCM2R3KBVSzo8mkXFk0nmwm7PUFg&oe=69BC49D1&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357026\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":34},\"waveform\":\"AAEQU1tDRzNDTlFJQy5UXEdOQUdMVRorKAEABDdYUVJAPyRVTlRBWU5WFD5HAgIASi8xTjlPU0NLTi5TU1QoSg==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":34},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357039,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:37:19.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:37:19'),
(22788, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:37:19.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:37:19'),
(22789, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"pushName\":\"Fabricio \",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:37:19.828Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:37:20'),
(22790, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5C46DFEDE1031CCA99836922A17842E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/588639884_25899973312993791_2799317435159384913_n.enc?ccb=11-4&oh=01_Q5Aa3wEXwZpsgPAAHf1gcxPWulEY17Did4l94yqiov__bFllQw&oe=69BC472B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"0IqWbQPOboCD+fLAG1oPbjS2GSzPJcO4Z5SAzPVcrdE=\",\"fileLength\":\"22930\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"CWNiJ2SuKfpF4+hXZ9mIFm7PRgpSgQO0rCfTUriELj0=\",\"fileEncSha256\":\"uigvuzzEcBIL12T9sTG0ja4krBCVfHjpAubxggaanYM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/588639884_25899973312993791_2799317435159384913_n.enc?ccb=11-4&oh=01_Q5Aa3wEXwZpsgPAAHf1gcxPWulEY17Did4l94yqiov__bFllQw&oe=69BC472B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357090\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAACH1kSUVhNUE1NT09MVTszHUxTUFJDQyw8TkcrT1QOU1NTVUwEAAAAAUBOUFVNQFRWEgQADQIBTChfCyU1Ow==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357099,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:19.679Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:38:20'),
(22791, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:19.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:38:20'),
(22792, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5C46DFEDE1031CCA99836922A17842E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357099938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:19.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:38:21'),
(22793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:20.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:38:21'),
(22794, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5C46DFEDE1031CCA99836922A17842E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357099987,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:19.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:38:21'),
(22795, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:41.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:38:42'),
(22796, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A581328AEE0061E7551FE61DD58439E6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/598208615_920706550426244_6422277472360511384_n.enc?ccb=11-4&oh=01_Q5Aa3wHCXAW55nCdehb5ARvRZzGFJkbsoPWffY2KRbbXWU35zQ&oe=69BC4F62&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1YsUAL9xrqG\\/OuqEWaEo6o7gsEkyf37s4d2AAfc9mRE=\",\"fileLength\":\"42921\",\"seconds\":20,\"ptt\":true,\"mediaKey\":\"s+kzb0Z1xwIcO2nJ2oWLFyNI3WGIVlN9gbN+fulHlQg=\",\"fileEncSha256\":\"jjp5dKUwwVZg5zuZYFXmAYZfFUTo58qYbZnZpeFlVvU=\",\"directPath\":\"\\/v\\/t62.7117-24\\/598208615_920706550426244_6422277472360511384_n.enc?ccb=11-4&oh=01_Q5Aa3wHCXAW55nCdehb5ARvRZzGFJkbsoPWffY2KRbbXWU35zQ&oe=69BC4F62&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357102\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"ADUmKFpQTxdFR1BCSTc2WB5FST0YPVBCRzEFAAUcSk8qDAEGDRJOTDJWSy1TU2AfGE5POFhdM00NAAA8LEg\\/Sg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357121,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:41.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:38:42'),
(22797, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A581328AEE0061E7551FE61DD58439E6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357122149,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:42.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:38:42'),
(22798, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:42.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:38:43'),
(22799, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A581328AEE0061E7551FE61DD58439E6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357122294,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:38:42.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:38:43'),
(22800, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:39:26.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:39:27'),
(22801, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:39:36.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:39:36'),
(22802, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:39:36.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:39:37'),
(22803, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC15F0CBF7B5F4AB628E4A27E879BB92\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590986856_1569689377618156_3883297159435882900_n.enc?ccb=11-4&oh=01_Q5Aa3wFT-y80VRo1EUeBpRAkGA3DHmEwe0umRmaG0qGKJVTQQw&oe=69BC3E4B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"O2dHMU6Z+dYYdu2Nb50WwdR136HDotZjKDj4DpPzY10=\",\"fileLength\":\"22092\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"l8moWT4PaJs1MmEFn+0cB6aUmVZdUJSFLUhKrnmyrfc=\",\"fileEncSha256\":\"Ec9bwQ4DsKdOoWKIE27mWWlVgO+QjjlGaowpJ+w0R40=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590986856_1569689377618156_3883297159435882900_n.enc?ccb=11-4&oh=01_Q5Aa3wFT-y80VRo1EUeBpRAkGA3DHmEwe0umRmaG0qGKJVTQQw&oe=69BC3E4B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357168\",\"waveform\":\"AAAADEVRPkdPRSJMSC0vS007VhkaIwAABQAENktIKyMJFiQSQglKMgk9Riw9QjdGRTQxSkI3UU0hAAAAACY+TA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XJNMEYykUrfH5VARIZk6XmmfTdqC8BKRKoDAf04Pl0k=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357176,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:39:36.938Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:39:37'),
(22804, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:39:37.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:39:37'),
(22805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:39:37.324Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:39:38'),
(22806, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:32.654Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:33'),
(22807, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACD00CE56D474675B03BBFE2452C8CC5\"},\"pushName\":\"Sampa\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/527044840_1452436872983514_233328945171605099_n.enc?ccb=11-4&oh=01_Q5Aa3wHZjVdybD0m5xf4pvUFP8QOJS09GXKW9ffQmAzIdit2_w&oe=69BC4636&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"YKJtvkQdITZQL5TR9vchW3cEgN5cfN3krtVJuwnPkj4=\",\"fileLength\":\"137841\",\"height\":899,\"width\":1599,\"mediaKey\":\"tqSR3jkF+so7BsdRuVekOlgHM7wqE26ndNh+GEodc\\/s=\",\"fileEncSha256\":\"\\/7K\\/NB\\/DYzcnmNPLaPU\\/7HD3IPE2JNr4FvVa0Symxq0=\",\"directPath\":\"\\/v\\/t62.7118-24\\/527044840_1452436872983514_233328945171605099_n.enc?ccb=11-4&oh=01_Q5Aa3wHZjVdybD0m5xf4pvUFP8QOJS09GXKW9ffQmAzIdit2_w&oe=69BC4636&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357291\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACEAPAMBIgACEQEDEQH\\/xAAwAAADAQEBAAAAAAAAAAAAAAAAAgQDAQUBAAMBAQEAAAAAAAAAAAAAAAABAgQDBf\\/aAAwDAQACEAMQAAAA83emrRngH42q6XKvFWiXh19avzLNHn5Dpx1rVPiVhBzCXrkDBgmlYA5wA\\/\\/EACgQAAIDAAAEBQQDAAAAAAAAAAECAAMRBCExURASExQVIjNBYkJhcf\\/aAAgBAQABPwAKXcxOE8\\/8jPYfsZ8f\\/Znx57mPwXpqSWMasgMdMHQSjajZUygkfmV\\/TL2s9VsbBFNx5eY6Zt6ka04jWoOdYRaEfV\\/HODcHOUktZcf3mAS2hnckERablGBhPbWbpaXOK6ie0fjUZHUgwWcpTfWtlpLZrw8RU+Y4jXhRoKmDiueFRs90B1Al\\/EJZWyxqyBvhd91\\/98NPeac6mae8051hJ7+H\\/8QAHxEAAgICAQUAAAAAAAAAAAAAAAECEQMSIxMgMkJS\\/9oACAECAQE\\/AMeOCx3KKOP5RxP1RnUbWqok3okqsfVQtydurJeT7P\\/EACIRAAICAQEJAAAAAAAAAAAAAAECABEDEgQTFCAxMkNScf\\/aAAgBAwEBPwDJmZs+hXoGU11vjcKZV8hmBmo6jcCLxBL3pgTZ3HUw48XuYlC6i9o+cn\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"\\/VkhOzEC2hFJ1z5rbatu8aXGO2P00aN94m+V0sbJm7r3xuG0dPohng==\",\"scanLengths\":[13193,56035,24083,44530],\"midQualityFileSha256\":\"6UJUVgKtdvNJFoXJoolZVKeWRf6prE0In6\\/I9m+H25o=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oBPtxJWrhAOOGHFBTKpH1ndtrMvv1l969oiBavIq7Jg=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771357292,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:32.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:41:33'),
(22808, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:32.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:33'),
(22809, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:32.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:33'),
(22810, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:33.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:34'),
(22811, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:36.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:37'),
(22812, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:37.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:37'),
(22813, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC68EDBD8F80ED8FA24DF5799F767DC3\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637983781_1445656500548180_4493847961014149736_n.enc?ccb=11-4&oh=01_Q5Aa3wHcqpmIPH6vT0kHphfq-jHxBV4wic2Brpj3BZZHcqUAIA&oe=69BC4897&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"PFwgkwbVHV7008Mcj5zTjBryTnmkoim+iLWFtPpLgug=\",\"fileLength\":\"9657\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"\\/kBXn54MaLsq\\/90E6GM7kxsEKDToL4OPEjDoG75LrZY=\",\"fileEncSha256\":\"JQw8rzL1yF\\/4Rv0FsoYQwEREfLi6i0YwXByAy7uCeUw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637983781_1445656500548180_4493847961014149736_n.enc?ccb=11-4&oh=01_Q5Aa3wHcqpmIPH6vT0kHphfq-jHxBV4wic2Brpj3BZZHcqUAIA&oe=69BC4897&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357294\",\"waveform\":\"AAIrTk9LSlhFTU9NUjonQUdLLBUAOUtUUTsWPVVNSj9GEjpDU0pPRDdFRUlZTFVUSkolRUY4RVNQRjxAQExMUw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JT3xHmBE4bq1yrNyOm3y4pCoDUUdFiSTwe241acPqZo=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357297,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:37.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:41:37'),
(22814, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:38.076Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:38'),
(22815, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:41:37.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:41:39'),
(22816, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"322323882047@lid\",\"presences\":{\"322323882047@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:42:36.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:42:36'),
(22817, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F7F3B4EC7EB9F3E373\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Gabriel \\/ Vivo ios*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *20\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771357357,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:42:37.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:42:37'),
(22818, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"id\":\"3EB0F7F3B4EC7EB9F3E373\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357359255,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:42:39.256Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:42:39'),
(22819, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5AFB1AD060D8B1ECF440DDFBF38F7BB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357456301,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:16.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:16'),
(22820, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5AFB1AD060D8B1ECF440DDFBF38F7BB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357456306,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:16.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:16'),
(22821, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:18.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:18'),
(22822, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5AFB1AD060D8B1ECF440DDFBF38F7BB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597862616_1428755325360005_8327268551033612404_n.enc?ccb=11-4&oh=01_Q5Aa3wHwx6uzJ0ypvHull5kIqO6eMS-zHUCOB7pkcnoDKUJeMA&oe=69BC4D2B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"rhCL0yIzLxkeDi1fQRg2hiMZQtJLMMGsstBAdhZsiBg=\",\"fileLength\":\"2865\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"nlRhJfDVRu+1M96F98T+MTWgqsbIuM9eSTe80gY3K+Q=\",\"fileEncSha256\":\"pXtt3pcSJ7dIOxZxxUPAa+LnqQbK9Nj09HYCwMUN64I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597862616_1428755325360005_8327268551033612404_n.enc?ccb=11-4&oh=01_Q5Aa3wHwx6uzJ0ypvHull5kIqO6eMS-zHUCOB7pkcnoDKUJeMA&oe=69BC4D2B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357454\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAABAQAAAAAAAQIIGixAVFhcWlhVUkxDOCkpQFNZXVxbW1tBIiErLi0oHRMIAAAAAAAAAAAAAAAAAAAAAAAAAA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357457,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:18.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:18'),
(22823, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:18.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:19'),
(22824, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:23.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:24'),
(22825, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"322323882047@lid\",\"id\":\"3EB0F7F3B4EC7EB9F3E373\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771357466497,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:26.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:26'),
(22826, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:34.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:34'),
(22827, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:34.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:34'),
(22828, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:35.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:35'),
(22829, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACD6420BE6BA7B5CE2BD204BD173E0DE\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/34689131_1272933294897725_23969052274186936_n.enc?ccb=11-4&oh=01_Q5Aa3wFqwZvwGQ-CvWP59gPmwmISyx6WVTnpFlF3HaB9vmMcLg&oe=69BC383B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"KpmWTBSryzO5yoOyeg7MU2+7Jo9gMMvdToDI+u3oJ6I=\",\"fileLength\":\"24875\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"J3BXJ+Y3oaSQsRZWn2MS1GH8eJofgl+BRoN5Y8xSLTU=\",\"fileEncSha256\":\"+hWDqhtnwhRPWqMrSWIkxkjV\\/riP\\/cn1AAxv0vE2nL0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/34689131_1272933294897725_23969052274186936_n.enc?ccb=11-4&oh=01_Q5Aa3wFqwZvwGQ-CvWP59gPmwmISyx6WVTnpFlF3HaB9vmMcLg&oe=69BC383B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357465\",\"waveform\":\"AAAdAFRJTlcTUlcoPyZVT1JTAAAYAAoADy1OPkdYVEIzVD9GKE1SP09KDjs3SDpOPgU6U0dAT1NPPQAATjhNRw==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"luvyHQsPfXtuOsks09n5880+xxIwgPjQ39I8Yu7gBJw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357475,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:35.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:35'),
(22830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:35.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:36'),
(22831, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:36.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:36'),
(22832, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5F4DC914446CA1745ACBC86D1F8B023\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/18981980_2324531631401245_2650045103792512292_n.enc?ccb=11-4&oh=01_Q5Aa3wFcTl3YClWq_3XD54bAjmT1OpAeVlbsp2SyuLLu3fkzEw&oe=69BC3C69&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"\\/1h1hIf2t6bZnoTXFLj6f4jAjXDW5IBLb7AK4abn730=\",\"fileLength\":\"4140\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"j9OHtH9rS+tqXzniuKS64rMBvatjdTYBYWh6XJFebNI=\",\"fileEncSha256\":\"zMLGAklKY4jmoY6fui8pk7U4zIPm2Vo3b3nhT83\\/SZ4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/18981980_2324531631401245_2650045103792512292_n.enc?ccb=11-4&oh=01_Q5Aa3wFcTl3YClWq_3XD54bAjmT1OpAeVlbsp2SyuLLu3fkzEw&oe=69BC3C69&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357475\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAACAgAOIzxVVVVXWVlYV0EjMkdSWlZUVEAdK0lNT1BRUVFTUU1PVEc4Ix09T1BRUVFRTkxHQj49PUFHSQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357475,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:36.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:36'),
(22833, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5F4DC914446CA1745ACBC86D1F8B023\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357476352,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:36.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:37'),
(22834, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5F4DC914446CA1745ACBC86D1F8B023\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357476277,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:36.278Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:37'),
(22835, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:35.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:38'),
(22836, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:36.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:38'),
(22837, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:47.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:47'),
(22838, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5A04957B92A13C6B21F3A7570C76AC9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Showww\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771357487,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:47.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:47'),
(22839, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:47.786Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:48'),
(22840, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5A04957B92A13C6B21F3A7570C76AC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357487695,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:47.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:48'),
(22841, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5A04957B92A13C6B21F3A7570C76AC9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357487653,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:47.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:48'),
(22842, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:55.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:55'),
(22843, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5B0C6EAA03CD2A8CD7BF8EC08AD9371\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/21391988_1784975008845463_8954427420621701470_n.enc?ccb=11-4&oh=01_Q5Aa3wHMoNyNtdkR895NZJPlpQAaLP9-f2EilM11bFsFkKKX8A&oe=69BC4DF3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IXE\\/tkp1JkbvLkKeSjAkJ2XCJ1PdmlKiFTh7sIb9npE=\",\"fileLength\":\"12917\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"L8QIJpB+eQ\\/6LG+RIZpHInT5OJhSJI3z4xVhQt32W98=\",\"fileEncSha256\":\"ieu0YQsCZCnVxxf8tWkZl9QDWGTMAxDMC8FV95UB3EE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/21391988_1784975008845463_8954427420621701470_n.enc?ccb=11-4&oh=01_Q5Aa3wHMoNyNtdkR895NZJPlpQAaLP9-f2EilM11bFsFkKKX8A&oe=69BC4DF3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357491\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAM+WjI4RE9RTVdKFihXJEpVR1xBV1IpQE5PLVJWO0g\\/R0JKR15SUVBePUFRUUAfFj5ITU1ONURNOkMvPC8yOg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357495,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:55.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:56');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22845, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5B0C6EAA03CD2A8CD7BF8EC08AD9371\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357495894,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:55.894Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:44:56'),
(22846, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:44:55.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:44:56'),
(22847, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:01.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:45:02'),
(22848, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:12.259Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:45:12'),
(22849, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:14.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:45:15'),
(22850, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:15.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:45:15'),
(22851, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"ACFA849777022F865292A1B04D1F701F\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594021013_1416413916918702_960136205133912776_n.enc?ccb=11-4&oh=01_Q5Aa3wGmh0J5GMfkDyyHjC4vNBzf4fCuZ6gefWWPjUeI5YcODA&oe=69BC4A43&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TbW3zDIXQco6tpKxeOuDSmLPWafI+F+E5V+gRtK3GL8=\",\"fileLength\":\"29641\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"DsX5hTQ1vsZ3rhhPLF1+uSHZUcjggNMd1K4eLz2\\/JBY=\",\"fileEncSha256\":\"B1HwcRj\\/aMseFXePQEckozAr\\/uoix5Cg19ArR9Rey8s=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594021013_1416413916918702_960136205133912776_n.enc?ccb=11-4&oh=01_Q5Aa3wGmh0J5GMfkDyyHjC4vNBzf4fCuZ6gefWWPjUeI5YcODA&oe=69BC4A43&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357503\",\"waveform\":\"AAAAAFNWMldDMEVFPktBQ0omODpOAwEyUlMPTUtELS9WOxlSVC0jOT8\\/Q1JRKwAeSERTSUhEOkpUO0ZMVi4AAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FBR\\/ZME\\/taRYSjKBKsD43uDypFL1SVmAZVgbp88eNko=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357515,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:15.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:45:15'),
(22852, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:15.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:45:16'),
(22853, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:45:16.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:45:16'),
(22854, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:31.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:46:31'),
(22855, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554797180643@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB099DD7A27A935F5B75A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Rodrigo*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 40,00*\\r\\n• Próximo vencimento: *18\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771357592,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:33.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:46:33'),
(22856, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554797180643@s.whatsapp.net\",\"id\":\"3EB099DD7A27A935F5B75A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357594467,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:34.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:46:34'),
(22857, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554797180643:49@s.whatsapp.net\",\"id\":\"3EB099DD7A27A935F5B75A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357594563,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:34.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:46:35'),
(22858, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:42.224Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:46:42'),
(22859, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5973F0A2585B7DD7A21644AE8BC5588\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357611480,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:51.481Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:46:51'),
(22860, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A5973F0A2585B7DD7A21644AE8BC5588\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357611486,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:51.486Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:46:51'),
(22861, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:52.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:46:52'),
(22862, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:53.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:46:53'),
(22863, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A5973F0A2585B7DD7A21644AE8BC5588\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637912094_1422006048867152_3352416952811930143_n.enc?ccb=11-4&oh=01_Q5Aa3wHCaxKFpWdmELEg3pB_HcJMz3mTTZ7Dix5_cvQw0sUbmg&oe=69BC32D7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"OND\\/x+GYTemFXp9LAKwB4y3cgRf\\/0VsmtXomcOLWVgw=\",\"fileLength\":\"12969\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"9luqyEXqj+9OyTR4D7ioB4vZH0QmVm1XyuKAAdQZOzY=\",\"fileEncSha256\":\"w+c4t39AOaKEDt9fITroQXIvGiH5Y9DRrTHH36NVqxg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637912094_1422006048867152_3352416952811930143_n.enc?ccb=11-4&oh=01_Q5Aa3wHCaxKFpWdmELEg3pB_HcJMz3mTTZ7Dix5_cvQw0sUbmg&oe=69BC32D7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357606\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAkLD11iU1NHN1RGUF5GRSo\\/Mj8dVlBKSEdKTEs5BwAAABxYVT1ZS1pPTUhWTzBSVU0\\/VU1KKlU1Ejk0SUwyAA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357612,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:53.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:46:53'),
(22864, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:46:53.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:46:54'),
(22865, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:01.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:01'),
(22866, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A548563685B2E3C12D5BF898F1C5AB84\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637836190_2114858289273309_8158734371213853909_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ_jN9-3PwkuZlPl3MyErPKx9qKbilMQX39kVG7leLZw&oe=69BC2CBF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"VAzL9aWi2vysPvn70F83s1vKrc1AYcRwi2\\/NiAN6Pxw=\",\"fileLength\":\"21777\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"mjZD8M0+7kdKcxVewcicaPReM79CpHgV6D1hcNrC+W4=\",\"fileEncSha256\":\"pzNcVOQazZkZTvo8WzkZzlWJD9Im9fDAoMVvA2PXocE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637836190_2114858289273309_8158734371213853909_n.enc?ccb=11-4&oh=01_Q5Aa3wHQ_jN9-3PwkuZlPl3MyErPKx9qKbilMQX39kVG7leLZw&oe=69BC2CBF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357612\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AA08GFJYUFAgUik2Uk9STElWUzIvOTJPW1cgPilMUjJRUkBASkkLP05MU1ApOzpUHUYLDQMHT1c9R1lSRDVDQQ==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357621,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:01.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:47:01'),
(22867, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A548563685B2E3C12D5BF898F1C5AB84\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357621450,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:01.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:47:01'),
(22868, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A548563685B2E3C12D5BF898F1C5AB84\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357621443,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:01.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:47:02'),
(22869, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:01.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:02'),
(22870, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:02.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:03'),
(22871, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:06.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:06'),
(22872, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:14.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:14'),
(22873, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:24.714Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:25'),
(22874, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:26.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:26'),
(22875, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:27.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:28'),
(22876, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:28.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:28'),
(22877, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:28.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:28'),
(22878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:28.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:29'),
(22879, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:29.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:47:29'),
(22880, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC16754A554240DA700AD35404483067\"},\"pushName\":\"Sampa\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637980492_895580346792026_7885883597300460691_n.enc?ccb=11-4&oh=01_Q5Aa3wF5jToPr3Mx_g3SKXA8aM0SUlK8_VMvKkJA7QhSUqAmkw&oe=69BC340A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"l3FxGGTnX8xXbaXdJi2vt760jW8QlseScNnRieBFKN4=\",\"fileLength\":\"28389\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"MxEYeXzQxDjEBJ9J8+CwXMSbxdKdR3QaYHJy+xCvB1U=\",\"fileEncSha256\":\"LJ1Xt9W8SQdgTls9vGETUCaNclySSG3kefTVS1HObPI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637980492_895580346792026_7885883597300460691_n.enc?ccb=11-4&oh=01_Q5Aa3wF5jToPr3Mx_g3SKXA8aM0SUlK8_VMvKkJA7QhSUqAmkw&oe=69BC340A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771357636\",\"waveform\":\"AFJJV0w6OEUkGgI1VlVUAAAAHFIlU09GO0ZUVVZTUitOTVITM1AlMi0dU0JJRk5SU1MBAAAVSktKUAIIEx8ASg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+QWtjTFiS7KfETO1RNZL4o5N9V5OvmiCK+4LbaNGRsw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771357648,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:47:28.745Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:47:29'),
(22881, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"presences\":{\"62333061746885@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:48:16.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:48:16'),
(22882, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB097688A077D72BFD8A3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Kev \\/ IOS VIVO*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *17\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771357697,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:48:18.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:48:18'),
(22883, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964:49@lid\",\"id\":\"A58FAD5427D7FEE3B15931E4B300BD34\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357760610,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:20.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:49:21'),
(22884, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A58FAD5427D7FEE3B15931E4B300BD34\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357760791,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:20.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:49:21'),
(22885, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"A58FAD5427D7FEE3B15931E4B300BD34\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/40968799_1824090604907870_3986436337360272378_n.enc?ccb=11-4&oh=01_Q5Aa3wG14yisLwEQXUBZbV9_PgIOYf-I-8tsWXMyJlxM73L17g&oe=69BC50B4&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"OWdvx6BQ9FcyWhZ0pbSk5Cj01e8X+30d79YwelZ633w=\",\"fileEncSha256\":\"wfcqHWknRb77BB5bqcJ2hVE\\/gbzoH9Ey+OqfyTw8fwc=\",\"mediaKey\":\"7SlK09Vh25fmmvzKrm200tXxRSsBG8+GREzDpmHo0xA=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/40968799_1824090604907870_3986436337360272378_n.enc?ccb=11-4&oh=01_Q5Aa3wG14yisLwEQXUBZbV9_PgIOYf-I-8tsWXMyJlxM73L17g&oe=69BC50B4&_nc_sid=5e03e0\",\"fileLength\":\"321106\",\"mediaKeyTimestamp\":\"1771336687\",\"firstFrameLength\":320730,\"firstFrameSidecar\":\"dINYbtoIrL33NQ==\",\"isAnimated\":true,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771357759208\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1698846446\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771357762,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:22.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:49:22'),
(22886, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:22.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:49:22'),
(22887, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:22.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:49:23'),
(22888, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"presences\":{\"148468597284964@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:25.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:49:25'),
(22889, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":false,\"id\":\"AC9F5B4CC7AF1BA4D421DB5439DEA286\"},\"pushName\":\"Sampa\",\"message\":{\"conversation\":\"🙏🙏🙏🙏🙏🙏🙏\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"RQc+ZjxC5QMa4g==\",\"senderTimestamp\":\"1770668356\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"vwfL36qq2lRa\\/gVRX\\/iSIJohzogM0nIM8QNTSYKpYUI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771357766,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:26.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:49:26'),
(22890, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:26.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:49:26'),
(22891, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:27.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:49:27'),
(22892, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"148468597284964@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:49:26.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:49:27'),
(22893, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"208404849111077@lid\",\"presences\":{\"208404849111077@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:51:49.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:51:50'),
(22894, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A8B8F1EA6F512D87BF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Leandro \\/ VIVO IOS*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *08\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771357910,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:51:51.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:51:51'),
(22895, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"3EB0A8B8F1EA6F512D87BF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771357971818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:52:51.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:52:52'),
(22896, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:55:16.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:55:17'),
(22897, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F6F9F3C350FEA8C778\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Pablo \\/ Combo Tv + ios*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 60,00*\\r\\n• Próximo vencimento: *16\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771358117,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:55:18.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:55:18'),
(22898, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"3EB0F6F9F3C350FEA8C778\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358120383,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:55:20.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:55:20'),
(22899, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"3EB0F6F9F3C350FEA8C778\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358181048,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:56:21.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:56:21'),
(22900, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"200592353919231@lid\",\"presences\":{\"200592353919231@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:56:53.890Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:56:54'),
(22901, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996010925@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB012120922E574C4D6D3\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Diego Paiakan \\/ ViVo IOS*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *17\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771358214,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:56:55.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:56:55'),
(22902, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"id\":\"3EB012120922E574C4D6D3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358218266,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:56:58.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:56:58'),
(22903, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"presences\":{\"215049113178302@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:18.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:18'),
(22904, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997872089@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0320CEC5A34A167F844\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Josue \\/ VIVO IOS*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 35,00*\\r\\n• Próximo vencimento: *21\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771358299,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:19.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:20'),
(22905, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"3EB0320CEC5A34A167F844\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358300825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:20.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:58:21'),
(22906, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:21.406Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:21'),
(22907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:21.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:22'),
(22908, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:22.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:22'),
(22909, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:23.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:23'),
(22910, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:58:23.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 16:58:23'),
(22911, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"132860619034854@lid\",\"id\":\"3EB04441E64D2DE834ED19\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358373107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T16:59:33.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 16:59:33'),
(22912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"35562429903034@lid\",\"id\":\"A540A1DCD190F2B3BEAEF2B7820C94E1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358459985,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:00:59.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:00'),
(22913, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113043723792419@lid\",\"presences\":{\"113043723792419@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:06.138Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:06'),
(22914, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB087D93C223DE04939FB\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Solan \\/ IOS VIVO*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 30,00*\\r\\n• Próximo vencimento: *10\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771358467,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:07.394Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:07'),
(22915, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"35562429903034@lid\",\"id\":\"A540A1DCD190F2B3BEAEF2B7820C94E1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358471959,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:11.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:12'),
(22916, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"35562429903034@lid\",\"id\":\"A540A1DCD190F2B3BEAEF2B7820C94E1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771358473467,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:13.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:13');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22917, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:19.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:20'),
(22918, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:21.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:21'),
(22919, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC401EE7621548CD4360E8F6B48A9471\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Opa iae mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5500B860089E1285381A6965BF6EECC\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQN59d88hliD8TnETlmWuAq0S8JAbIZt_APDWMa-hcswtZ66VigFDZuGN4oADCJJ-l8i1rPrTYjJoXFINsgU82DbfjjV76UEpz2TSeDw3Q?ccb=9-4&oh=01_Q5Aa3wG-8p2C2D-6VULUKUtGFV17iq2zP8ezQGOD7hPVcNS54Q&oe=69BB2C7E&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"It9bD3hSyAmXT8eCOm2PQxnZizVPuqdNsOw0iaPOSIo=\",\"fileLength\":\"130092\",\"height\":887,\"width\":1080,\"mediaKey\":\"k9WqkmaajhCne+DtVJHxrH8ZtAUY5bAJdifUiUPE1J8=\",\"fileEncSha256\":\"rej1wJFmL5+fYpA8antihNTjbp8FJTHQDGqLmLzBbJ0=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQN59d88hliD8TnETlmWuAq0S8JAbIZt_APDWMa-hcswtZ66VigFDZuGN4oADCJJ-l8i1rPrTYjJoXFINsgU82DbfjjV76UEpz2TSeDw3Q?ccb=9-4&oh=01_Q5Aa3wG-8p2C2D-6VULUKUtGFV17iq2zP8ezQGOD7hPVcNS54Q&oe=69BB2C7E&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771283627\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAG8AhwMBIgACEQEDEQH\\/xAAyAAACAwEBAQAAAAAAAAAAAAADBAIFBgABBwEBAQEBAQEAAAAAAAAAAAAAAAECBAMF\\/9oADAMBAAIQAxAAAADM6G7Jy8+cnt6zLOL69oyUN75Jg19RDVoO0D5k470eZhY64tvzjvqXJVzYnNJNlPFdKw4GrcKSVcmwaq0rHgbDJ8yj9eapLrnoAf58b069sxll83Yzwzya5Grro1JsD2m48w4zfWePFlrPcNGvo\\/YjlUPSn82iVo3MrAtZE0aKvkN+0RJbhapasuXKkkeTU8q86t6KA4mN8\\/szhwj76cLXXFcLdI1AhM5C1TLC0+IM9DjNtHPfoPJhYxuuu1+Go8jKFSy7eay6B0O8JvNqfSS1GeN0uYKyXfRYVtor5+lbZBfs9UdFLRFZ93gLYpY002GWdVJDe7y\\/w+l\\/\\/8QAOxAAAQMDAgQEBAMGBQUAAAAAAQIDEQAEEgUhEyIxQRQyUWEGFSNxUpGhFjNCU4HRJCVEkuJVc4KD4f\\/aAAgBAQABPwBz4WvUOKSu7skqyiC7BpvQmVurQ1ZWalJAlHHziCJnbvEVdaC0y0Cuyt0bhIPFJ7zGyd6GhBW4srIydzxOnWIEe9HQgVBPgLIQkjHjGcoEbxSPhlfilui2tiypEJb40wYAmca\\/ZtU5HTrYwuY4pAI9IAp74YKwsIsGEyoFJDx5QDMeXehoScih2wss8ZKQ6UwJmelMfDiRxzwLZ1DiiW\\/rbpB7TFfs8CUHwdoIPMA7I6D2p\\/4ZU6w4lqxt0KURCg6eWIkeWmfhpTbDKDYWynEgZrLhOVK0HhSHLCyB6CXj6RJkV8mZyldpYEegex7nuB7078NOrbUhqytUnAgEukkKIACvLTfwZq4WDnb\\/AO81eizN0ta9NU8tDgkhZndI5gK0tdmb1wM6c4yoNL5zMETT7DFwjB1vJPpJFPlhu7DQ08LBRuoT6Hp+VOKs0glVkuJCZwMntTdtaEIcFsEkwoSCCDUjE7dxUj8NPuW1xmLjTH1dtkqNf4FtGbelPEwEwUKBiYomxICvlVwZAG7atgas32TLbdm8yN1c6CkVI9KfZYdUeI0lUSN6uEstHlsc5SZKQfypjByQu0KCmPMZ9tjTSG0bIQAKuRqJfUGr9psFwFCSQSRAlJEVYjUxcuG4vGXG8FQhBEgzSBeeKuYvkESIRnJTMRt2pIvwpJU6yUzzdRWOplaYuGcIG\\/c0pF7Ji7SD2TtERTXGDcOLSVTuRVwm+zzZuG0oCdwvce5ojV4Khc20QSNjBpbWqKUhSLxpIBMpxkKFJTq6Dz3luZiARRTrIRtcWqlAdwRJq2F0llIuHUqc7lOwpWWR5u\\/rT6LxS5auUoTt1g0yi7QtXFuAtPboKSTPn\\/Wr+w0ZNxcIfFys8ZHExCCEnFMKiZitD07Q3tSdbs1XIe4S5UuIKQqKbsNJLt46RdhSXYVtsT3Ig0NN0RABDz\\/lggoX0VtXyzRilSy6\\/wBp2XPNS9J0YwFuXEgkDkXXhNPYtX3UOvqQgpyGBy3hIiacOjOoW048+UKlCgWVwQRStH+H2ENZuXSQpsKAxdVsRFDTPhxJCRcXqjIMlDgmTTej6DdKS3L5XjIzQ4CIHY+u1M6ZoIuEpS8+lxLsCQ4Bkkx1O1JGnF1DSnbhK1LCQktHv3npFX2l2bKkFxT6y50CEzSbTTiTAuQO6iBH5zXyzTsQouuCQD0\\/tVtojDpUptxYKYBkVc3mo8Zzwz1sEJcGGcQpECQd5ma0\\/UL0XijdLtwxguMSJyz27nbGhfXyOOV3NkBxPp5K2ivH3Yjmsidv4zFeOusDz2eXLHOYPrXjrkHZyzIn8ZoXrpZd+tahyOQ5Epn3oahqogK+XnbqHFCje6gCYdsCDESpQjYSKcvLk3LPCetAxB4kqJV\\/Sl32oBS8F2BGSsZcUNu1IvtRKF5OWAXBxhZIGxj9Ypm\\/v+KgPGyCJGRS4TTt6wE\\/TeaK\\/dVeNX\\/OtP8Aca8YroH7aPXKmL62CUhx9qe+J2rUG9K8YS\\/d3CHOL5UJgTimtKRpgvnTb3b7jvCXIWNonrV5ZM3jaULWsAEnYDuI708wwxj9S45idkGP6mi5YShs3b2aZTMHLc+tCzQDIuH+oMZVCcTueo7VqNrbPMKU+tYQ2lSlYjtG9OuaS6UOi6dSoAAFBIKQJ\\/vSU6aoAp1O5PQ7OnemXdNTB+ZXO8cq1mRB\\/wDlNW+mqDduxqlyDMJSlw0hCUISnNRgASdyY9aubRl9YUtS+Wem1JYsEHIPLmSaLFgnbjvb9IJq3tm2SrFazl671dpuxdks6Tbuoz3cVAJEDea04XRu3ONprLDeCoWmJJnpsaeS9xmQ023w9y4T1MdhSheKHNZMkCOUkTNRcGFK09omTIlM1xLgLUnwIUJMELA2pCEFAKkAExI6xSfFm4dSu2a4AScFTuTNQ6BHgWz\\/AOQFFLkctk2II2KhuKIdGZFg2TG3OBJoeKS8T8qaJlQDgWkcoJirZTzhUH7RLQAEHMKk0W25PKKV40FeFsziCQnfcikC7yQFsNRIyI7frQbbnyir5Nt4w56utj6nkEgTinaZrTEsC9dKdUcfVw1y2Zgb9at2rRSnVt36xLk+Up6Encq69ahpUEaivZXaO9BLHNOoEgwfMnaIocGCfmKzHXcValstrxuVO7jcjpQu7QuLa43OjzAiIosIbbR\\/mz2MhKSIO5pHhxC\\/ma1GBvKdwCVViwhbTPzd7IjlGxkE0ybZDiVL1BS8AQMiAk5gH7Gm3mHZ4bqVR1iDFOJCiQFqG\\/UCobBnxSvzFfSH+pXFNpCYGSj7mrxRF2R8lL\\/P+85vwjfcVppm7cA0fw44avqwRO\\/SnkG3dZbYsEKbWZXCCe4H2ECguBJ0wzjvCadKE9dLKkwmISJk9o9qkf8ASzEegmsQ0y4tu2GWM4AQSQOlBzMPA6SQsoKyCkQtQ6CaSuUJQdFISVbpxED3pWA4UaLKe\\/KmU7A0FypEaMRHdSUiI6RE0sjPbRAqAMTA7DpVo7zpSNKWwVAZnEADqeopU5Hk708pxtYS3YhYgb0wp1ayHLENwPNMikzPkq7S8bs4ay0zC\\/3ZUJ6DaDVgl3xjpVqbbwwV9FJkpM9avbZ24ZwafwOQMgkSB22paHWEozvwJgSUEkkCiHCEA6i2FgncDr26Uhi6CgVXgIB3GESKjlPMOopqzuUl4rvVKzEJ68vv96Va3aUFpWrBKljkOHNIgyJNBi976ig\\/+oUGbxYya1ZtSSskHhg9ztM0m1vgVE6gFSenDphi6bUS9eB0RsMMYq5ZW4CEXBbM+YUWXira8jYCIrFw7i5T+VNJUOroV71fL0\\/xyg7pzzy891pWSJgdprTPAC9cDFk42vhLlZUSICoitvSrxSAG5aKt+uWMUs2XG3093LLc+81t6Vtidu4rb0q\\/cYzQh+wdeRE5pGQTMikfLi2h1vTXSFgHynpP\\/GsNLkxpb8\\/9s1bqbLKMGloSBASoQQE7Vt6U4lCyQpMiaeU204Eps1L2EEe9MKadcUDZrbIH8VICEwEpgVcMa6blRYumUNZiEqUCYge1WbOr+KcL77S2cFYoSoEgz9hQttWbcVndtjNzkClgzuTAotarIh1gb0GNUMgutdiIoMat\\/MZ94n+9NNXyUL46kdRBSYEe8mi1rGZKH7YtlSsZmeu3Q1wNc3HEtpj3\\/vXhtcUTk+ykbboG\\/X3J7U5b63lkh5gCOh6dTRtdcGYS+yQoqIkbpnoBFW7GocynnUKmICNgI60pp\\/I\\/f1FOs6gXFlF0hKeyZTTDN+FJzukLG8gFO5oNPz\\/yFX7+km7d8Qh4r4qQqMSJgbbCa0d\\/SfHveEbe43CXJWdimac4LjqHVtStAISZ6TTiLJtxLXhlGQnfPoByihc6UEBQQ6mCY5oM0GbdSi4A5C+bZZAM0stuWy2FtkoUnA828RRtLEsts8A4IXmkZnZW5mnlaNbvLQ4w8FpCeYLWZoXOkMBLiUvRkkzkvbcwTP2oahpAJ3cBiIPE77envVu7ZXCOI0FqTl1KlDf+tIRboUCloggyOc0q53PJ39auXNPbcUldqtSlcxxP4pq2esnHAEW7iVIA8xiMaFzv5P1q4TrXHVwGGS3mIKgnyx96sk6wbhfimGUs4KxxiZmuG7+EfpTzN6XmyhKcB12TWOsY\\/uWMt\\/tQbegSgAx7Vw3MTyjqPSnG7jhr4aU54nGYiajWiFDgWyTiYIVO8UlOsFQC2LYo3CoNY60FE8C2KSEwMogxvTQ1cuJDrFuEdylW4rhu\\/hH6UptzI8o6+1Pt6hn9EN4wOse80y3qGZ4waKYMFNBtyfKP0r\\/\\/xAAmEQACAAUEAgMAAwAAAAAAAAAAAQIDEhRRERMhMUFhBGKRQoKh\\/9oACAECAQE\\/ALmZp4F8qY8F1MWPwupv1LmZ6Lmb6LqZ9S6md8F3N+psx6dGxMwbMzBsTcGxMwbMzBsTMGxMwbEzH+ly9NdC79IunhC+W8IuXguXgu3hF08F28I4p6XRol4RxhH9Sn2xLRZOMHGELTBqqe10VJrtFSyhRQ5RVDlFUOUOKHKKllCayil09+Dba8jgb05Nt5FDouxwN\\/yKHkpenYoGVRU9+BRR+xxR+yqZ7\\/CqPLKeOEJxJcJ\\/hVHp5FFH7\\/D\\/xAAoEQABAgUDBAMAAwAAAAAAAAAAAQIDBBIUU1KRoRETUWExRFRBcYH\\/2gAIAQMBAT8AqUrUrUrd6KlK3Fa+itStSh3gocUOO27wUOKHeDtuKHHbcdmYxp1\\/tC3msXKFvNL8QuULebxcodiZxpuh2JnGm6FvN4eUOxM4+ULebxcoXr\\/mkWefp5L5+nkv36OS\\/foTcWefp5L9+jkvn6eS\\/fo5LeNidsW8fE\\/Yto+J+xbTGF+xbx8TtlLaPidspbTGF+xbR8T9i2mMT9i6f1627hZ13xbPEnXp9Z5fP\\/M8Wbeq9bd4k49PrPL5\\/wCaIXjvzPL135ohSyr\\/AEVkP1uNZD9FELwm5TD8IIjCmH63KYfX+BWw\\/W5\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"9VRu+y9Mu8NMt6pgXIRx3FiP8Cg\\/T0mtF8a\\/FppoDM2GmaT\\/3Rfv0A==\",\"scanLengths\":[10071,62448,23732,33841],\"midQualityFileSha256\":\"LLT8Mjk1+TC5H0pyRXjEvgt6P1UHnVvY9MGdK4H4OTo=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5U3vqsT2V+r6e\\/ywUP8l+tEosjIcoxoigv97n1YbpJU=\"}},\"contextInfo\":{\"stanzaId\":\"A5500B860089E1285381A6965BF6EECC\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m269\\/AQN59d88hliD8TnETlmWuAq0S8JAbIZt_APDWMa-hcswtZ66VigFDZuGN4oADCJJ-l8i1rPrTYjJoXFINsgU82DbfjjV76UEpz2TSeDw3Q?ccb=9-4&oh=01_Q5Aa3wG-8p2C2D-6VULUKUtGFV17iq2zP8ezQGOD7hPVcNS54Q&oe=69BB2C7E&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"It9bD3hSyAmXT8eCOm2PQxnZizVPuqdNsOw0iaPOSIo=\",\"fileLength\":\"130092\",\"height\":887,\"width\":1080,\"mediaKey\":\"k9WqkmaajhCne+DtVJHxrH8ZtAUY5bAJdifUiUPE1J8=\",\"fileEncSha256\":\"rej1wJFmL5+fYpA8antihNTjbp8FJTHQDGqLmLzBbJ0=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m269\\/AQN59d88hliD8TnETlmWuAq0S8JAbIZt_APDWMa-hcswtZ66VigFDZuGN4oADCJJ-l8i1rPrTYjJoXFINsgU82DbfjjV76UEpz2TSeDw3Q?ccb=9-4&oh=01_Q5Aa3wG-8p2C2D-6VULUKUtGFV17iq2zP8ezQGOD7hPVcNS54Q&oe=69BB2C7E&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771283627\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEAAkJCQkKCQoLCwoODw0PDhUTERETFR8WGBYYFh8wHiMeHiMeMCozKScpMypMOzU1O0xXSUVJV2pfX2qFf4WuruoBCQkJCQoJCgsLCg4PDQ8OFRMRERMVHxYYFhgWHzAeIx4eIx4wKjMpJykzKkw7NTU7TFdJRUlXal9faoV\\/ha6u6v\\/CABEIAG8AhwMBIgACEQEDEQH\\/xAAyAAACAwEBAQAAAAAAAAAAAAADBAIFBgABBwEBAQEBAQEAAAAAAAAAAAAAAAECBAMF\\/9oADAMBAAIQAxAAAADM6G7Jy8+cnt6zLOL69oyUN75Jg19RDVoO0D5k470eZhY64tvzjvqXJVzYnNJNlPFdKw4GrcKSVcmwaq0rHgbDJ8yj9eapLrnoAf58b069sxll83Yzwzya5Grro1JsD2m48w4zfWePFlrPcNGvo\\/YjlUPSn82iVo3MrAtZE0aKvkN+0RJbhapasuXKkkeTU8q86t6KA4mN8\\/szhwj76cLXXFcLdI1AhM5C1TLC0+IM9DjNtHPfoPJhYxuuu1+Go8jKFSy7eay6B0O8JvNqfSS1GeN0uYKyXfRYVtor5+lbZBfs9UdFLRFZ93gLYpY002GWdVJDe7y\\/w+l\\/\\/8QAOxAAAQMDAgQEBAMGBQUAAAAAAQIDEQAEEgUhEyIxQRQyUWEGFSNxUpGhFjNCU4HRJCVEkuJVc4KD4f\\/aAAgBAQABPwBz4WvUOKSu7skqyiC7BpvQmVurQ1ZWalJAlHHziCJnbvEVdaC0y0Cuyt0bhIPFJ7zGyd6GhBW4srIydzxOnWIEe9HQgVBPgLIQkjHjGcoEbxSPhlfilui2tiypEJb40wYAmca\\/ZtU5HTrYwuY4pAI9IAp74YKwsIsGEyoFJDx5QDMeXehoScih2wss8ZKQ6UwJmelMfDiRxzwLZ1DiiW\\/rbpB7TFfs8CUHwdoIPMA7I6D2p\\/4ZU6w4lqxt0KURCg6eWIkeWmfhpTbDKDYWynEgZrLhOVK0HhSHLCyB6CXj6RJkV8mZyldpYEegex7nuB7078NOrbUhqytUnAgEukkKIACvLTfwZq4WDnb\\/AO81eizN0ta9NU8tDgkhZndI5gK0tdmb1wM6c4yoNL5zMETT7DFwjB1vJPpJFPlhu7DQ08LBRuoT6Hp+VOKs0glVkuJCZwMntTdtaEIcFsEkwoSCCDUjE7dxUj8NPuW1xmLjTH1dtkqNf4FtGbelPEwEwUKBiYomxICvlVwZAG7atgas32TLbdm8yN1c6CkVI9KfZYdUeI0lUSN6uEstHlsc5SZKQfypjByQu0KCmPMZ9tjTSG0bIQAKuRqJfUGr9psFwFCSQSRAlJEVYjUxcuG4vGXG8FQhBEgzSBeeKuYvkESIRnJTMRt2pIvwpJU6yUzzdRWOplaYuGcIG\\/c0pF7Ji7SD2TtERTXGDcOLSVTuRVwm+zzZuG0oCdwvce5ojV4Khc20QSNjBpbWqKUhSLxpIBMpxkKFJTq6Dz3luZiARRTrIRtcWqlAdwRJq2F0llIuHUqc7lOwpWWR5u\\/rT6LxS5auUoTt1g0yi7QtXFuAtPboKSTPn\\/Wr+w0ZNxcIfFys8ZHExCCEnFMKiZitD07Q3tSdbs1XIe4S5UuIKQqKbsNJLt46RdhSXYVtsT3Ig0NN0RABDz\\/lggoX0VtXyzRilSy6\\/wBp2XPNS9J0YwFuXEgkDkXXhNPYtX3UOvqQgpyGBy3hIiacOjOoW048+UKlCgWVwQRStH+H2ENZuXSQpsKAxdVsRFDTPhxJCRcXqjIMlDgmTTej6DdKS3L5XjIzQ4CIHY+u1M6ZoIuEpS8+lxLsCQ4Bkkx1O1JGnF1DSnbhK1LCQktHv3npFX2l2bKkFxT6y50CEzSbTTiTAuQO6iBH5zXyzTsQouuCQD0\\/tVtojDpUptxYKYBkVc3mo8Zzwz1sEJcGGcQpECQd5ma0\\/UL0XijdLtwxguMSJyz27nbGhfXyOOV3NkBxPp5K2ivH3Yjmsidv4zFeOusDz2eXLHOYPrXjrkHZyzIn8ZoXrpZd+tahyOQ5Epn3oahqogK+XnbqHFCje6gCYdsCDESpQjYSKcvLk3LPCetAxB4kqJV\\/Sl32oBS8F2BGSsZcUNu1IvtRKF5OWAXBxhZIGxj9Ypm\\/v+KgPGyCJGRS4TTt6wE\\/TeaK\\/dVeNX\\/OtP8Aca8YroH7aPXKmL62CUhx9qe+J2rUG9K8YS\\/d3CHOL5UJgTimtKRpgvnTb3b7jvCXIWNonrV5ZM3jaULWsAEnYDuI708wwxj9S45idkGP6mi5YShs3b2aZTMHLc+tCzQDIuH+oMZVCcTueo7VqNrbPMKU+tYQ2lSlYjtG9OuaS6UOi6dSoAAFBIKQJ\\/vSU6aoAp1O5PQ7OnemXdNTB+ZXO8cq1mRB\\/wDlNW+mqDduxqlyDMJSlw0hCUISnNRgASdyY9aubRl9YUtS+Wem1JYsEHIPLmSaLFgnbjvb9IJq3tm2SrFazl671dpuxdks6Tbuoz3cVAJEDea04XRu3ONprLDeCoWmJJnpsaeS9xmQ023w9y4T1MdhSheKHNZMkCOUkTNRcGFK09omTIlM1xLgLUnwIUJMELA2pCEFAKkAExI6xSfFm4dSu2a4AScFTuTNQ6BHgWz\\/AOQFFLkctk2II2KhuKIdGZFg2TG3OBJoeKS8T8qaJlQDgWkcoJirZTzhUH7RLQAEHMKk0W25PKKV40FeFsziCQnfcikC7yQFsNRIyI7frQbbnyir5Nt4w56utj6nkEgTinaZrTEsC9dKdUcfVw1y2Zgb9at2rRSnVt36xLk+Up6Encq69ahpUEaivZXaO9BLHNOoEgwfMnaIocGCfmKzHXcValstrxuVO7jcjpQu7QuLa43OjzAiIosIbbR\\/mz2MhKSIO5pHhxC\\/ma1GBvKdwCVViwhbTPzd7IjlGxkE0ybZDiVL1BS8AQMiAk5gH7Gm3mHZ4bqVR1iDFOJCiQFqG\\/UCobBnxSvzFfSH+pXFNpCYGSj7mrxRF2R8lL\\/P+85vwjfcVppm7cA0fw44avqwRO\\/SnkG3dZbYsEKbWZXCCe4H2ECguBJ0wzjvCadKE9dLKkwmISJk9o9qkf8ASzEegmsQ0y4tu2GWM4AQSQOlBzMPA6SQsoKyCkQtQ6CaSuUJQdFISVbpxED3pWA4UaLKe\\/KmU7A0FypEaMRHdSUiI6RE0sjPbRAqAMTA7DpVo7zpSNKWwVAZnEADqeopU5Hk708pxtYS3YhYgb0wp1ayHLENwPNMikzPkq7S8bs4ay0zC\\/3ZUJ6DaDVgl3xjpVqbbwwV9FJkpM9avbZ24ZwafwOQMgkSB22paHWEozvwJgSUEkkCiHCEA6i2FgncDr26Uhi6CgVXgIB3GESKjlPMOopqzuUl4rvVKzEJ68vv96Va3aUFpWrBKljkOHNIgyJNBi976ig\\/+oUGbxYya1ZtSSskHhg9ztM0m1vgVE6gFSenDphi6bUS9eB0RsMMYq5ZW4CEXBbM+YUWXira8jYCIrFw7i5T+VNJUOroV71fL0\\/xyg7pzzy891pWSJgdprTPAC9cDFk42vhLlZUSICoitvSrxSAG5aKt+uWMUs2XG3093LLc+81t6Vtidu4rb0q\\/cYzQh+wdeRE5pGQTMikfLi2h1vTXSFgHynpP\\/GsNLkxpb8\\/9s1bqbLKMGloSBASoQQE7Vt6U4lCyQpMiaeU204Eps1L2EEe9MKadcUDZrbIH8VICEwEpgVcMa6blRYumUNZiEqUCYge1WbOr+KcL77S2cFYoSoEgz9hQttWbcVndtjNzkClgzuTAotarIh1gb0GNUMgutdiIoMat\\/MZ94n+9NNXyUL46kdRBSYEe8mi1rGZKH7YtlSsZmeu3Q1wNc3HEtpj3\\/vXhtcUTk+ykbboG\\/X3J7U5b63lkh5gCOh6dTRtdcGYS+yQoqIkbpnoBFW7GocynnUKmICNgI60pp\\/I\\/f1FOs6gXFlF0hKeyZTTDN+FJzukLG8gFO5oNPz\\/yFX7+km7d8Qh4r4qQqMSJgbbCa0d\\/SfHveEbe43CXJWdimac4LjqHVtStAISZ6TTiLJtxLXhlGQnfPoByihc6UEBQQ6mCY5oM0GbdSi4A5C+bZZAM0stuWy2FtkoUnA828RRtLEsts8A4IXmkZnZW5mnlaNbvLQ4w8FpCeYLWZoXOkMBLiUvRkkzkvbcwTP2oahpAJ3cBiIPE77envVu7ZXCOI0FqTl1KlDf+tIRboUCloggyOc0q53PJ39auXNPbcUldqtSlcxxP4pq2esnHAEW7iVIA8xiMaFzv5P1q4TrXHVwGGS3mIKgnyx96sk6wbhfimGUs4KxxiZmuG7+EfpTzN6XmyhKcB12TWOsY\\/uWMt\\/tQbegSgAx7Vw3MTyjqPSnG7jhr4aU54nGYiajWiFDgWyTiYIVO8UlOsFQC2LYo3CoNY60FE8C2KSEwMogxvTQ1cuJDrFuEdylW4rhu\\/hH6UptzI8o6+1Pt6hn9EN4wOse80y3qGZ4waKYMFNBtyfKP0r\\/\\/xAAmEQACAAUEAgMAAwAAAAAAAAAAAQIDEhRRERMhMUFhBGKRQoKh\\/9oACAECAQE\\/ALmZp4F8qY8F1MWPwupv1LmZ6Lmb6LqZ9S6md8F3N+psx6dGxMwbMzBsTcGxMwbMzBsTMGxMwbEzH+ly9NdC79IunhC+W8IuXguXgu3hF08F28I4p6XRol4RxhH9Sn2xLRZOMHGELTBqqe10VJrtFSyhRQ5RVDlFUOUOKHKKllCayil09+Dba8jgb05Nt5FDouxwN\\/yKHkpenYoGVRU9+BRR+xxR+yqZ7\\/CqPLKeOEJxJcJ\\/hVHp5FFH7\\/D\\/xAAoEQABAgUDBAMAAwAAAAAAAAAAAQIDBBIUU1KRoRETUWExRFRBcYH\\/2gAIAQMBAT8AqUrUrUrd6KlK3Fa+itStSh3gocUOO27wUOKHeDtuKHHbcdmYxp1\\/tC3msXKFvNL8QuULebxcodiZxpuh2JnGm6FvN4eUOxM4+ULebxcoXr\\/mkWefp5L5+nkv36OS\\/foTcWefp5L9+jkvn6eS\\/fo5LeNidsW8fE\\/Yto+J+xbTGF+xbx8TtlLaPidspbTGF+xbR8T9i2mMT9i6f1627hZ13xbPEnXp9Z5fP\\/M8Wbeq9bd4k49PrPL5\\/wCaIXjvzPL135ohSyr\\/AEVkP1uNZD9FELwm5TD8IIjCmH63KYfX+BWw\\/W5\\/\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"9VRu+y9Mu8NMt6pgXIRx3FiP8Cg\\/T0mtF8a\\/FppoDM2GmaT\\/3Rfv0A==\",\"scanLengths\":[10071,62448,23732,33841],\"midQualityFileSha256\":\"LLT8Mjk1+TC5H0pyRXjEvgt6P1UHnVvY9MGdK4H4OTo=\"}},\"remoteJid\":\"status@broadcast\",\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771358481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:21.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:22'),
(22920, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:21.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:22'),
(22921, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:21.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:23'),
(22922, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:21.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:23'),
(22923, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:21.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:23'),
(22924, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:26.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:26'),
(22925, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"presences\":{\"35562429903034@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:29.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:30'),
(22926, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:32.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:32'),
(22927, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACC6B8F392CF2C4D923B53B2A0F076BE\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Querendo renovar\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2UjbD+RkF0nqfKao4j1S+4s0w28LXhy1ILSa\\/Mj2wFg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"entryPointConversionSource\":\"status\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":10,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771358492,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:32.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:32'),
(22928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:32.772Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:33'),
(22929, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:33.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:34'),
(22930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"35562429903034@lid\",\"fromMe\":false,\"id\":\"3AC5B8CD5DF01F76A395\"},\"pushName\":\"Fabricio \",\"message\":{\"conversation\":\"Tranquilo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771342290\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XlWZkIrraxz6nV56OV91SeXQqheCr5GgxvuuyrIFDMo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771358492,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:32.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:01:34'),
(22931, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:32.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:34'),
(22932, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:32.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:34'),
(22933, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"pushName\":\"Fabricio \",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:01:33.187Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:01:35'),
(22934, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5A979C4BBF93D5A728082935C7C5339\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358523930,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:03.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:04'),
(22935, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:05.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:02:05'),
(22936, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A5A979C4BBF93D5A728082935C7C5339\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boatarde\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771358525,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:05.565Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:06'),
(22937, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:05.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:02:06'),
(22938, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:21.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:02:21'),
(22939, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A585C8519D26E7503D59ED04463AF947\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wHOrBn8MxGth-Rq97xv-S9YSE2LhBHSyYUZjvHJ4LLYkw&oe=69BC1EE2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"+4KUaSUQ4yJ7H17PATkZxYtrGB8FDNlcL6UMocexGtc=\",\"fileEncSha256\":\"6IATO75ipogGvZIzPhD5WanaMn232gHTFCPsFfqQzkY=\",\"directPath\":\"\\/v\\/t62.7118-24\\/635278708_2323239151530891_534780338362825264_n.enc?ccb=11-4&oh=01_Q5Aa3wHOrBn8MxGth-Rq97xv-S9YSE2LhBHSyYUZjvHJ4LLYkw&oe=69BC1EE2&_nc_sid=5e03e0&_nc_hot=1771358540\",\"mediaKeyTimestamp\":\"1771103100\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771358541,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:21.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:21'),
(22940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:21.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:02:22'),
(22941, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A585C8519D26E7503D59ED04463AF947\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358541603,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:21.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:22'),
(22942, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB087D93C223DE04939FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358541440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:21.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:23'),
(22943, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:22.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:02:23'),
(22944, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A56B0E71C400EC1A6844403BB8221E2B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358543045,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:23.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:23'),
(22945, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A56B0E71C400EC1A6844403BB8221E2B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UEXWSYZ44E\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771358542,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:22.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:23'),
(22946, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A56B0E71C400EC1A6844403BB8221E2B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358543939,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:23.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:24'),
(22947, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5A979C4BBF93D5A728082935C7C5339\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358543945,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:23.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:24'),
(22948, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wGLv2O6MtgDVkE4cDhgrKNMZ2L5uZneIe_pRMFVBoTDkw&oe=69A1C4BD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:23.253Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:02:25'),
(22949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A585C8519D26E7503D59ED04463AF947\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358543942,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:02:23.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:02:26'),
(22950, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"presences\":{\"35562429903034@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:20.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:05:20'),
(22951, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"presences\":{\"35562429903034@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:30.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:05:30'),
(22952, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"presences\":{\"35562429903034@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:32.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:05:32'),
(22953, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:32.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:05:33'),
(22954, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"35562429903034@lid\",\"fromMe\":false,\"id\":\"3A9325D8C4B75A575312\"},\"pushName\":\"Fabricio \",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/32125977_2093723381168893_5298650127335929391_n.enc?ccb=11-4&oh=01_Q5Aa3wGigqAnULziUnDJWBI_bP3Ftt1uOqk_qzQai7WlMN_akA&oe=69BC56D7&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"+mgdOMr04EknPWEvLbHKKblr4GoMGbmtPIrwvDmE+g4=\",\"fileLength\":\"26864\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"T7R+VCT0IlKFChTMv8XjUQshH8YDNk5PYMc63D0rzjI=\",\"fileEncSha256\":\"MhckTEUP8GzJlcBkLZG+lT5RphSQnZuI9aj\\/Rfr8FQ4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/32125977_2093723381168893_5298650127335929391_n.enc?ccb=11-4&oh=01_Q5Aa3wGigqAnULziUnDJWBI_bP3Ftt1uOqk_qzQai7WlMN_akA&oe=69BC56D7&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771358719\",\"streamingSidecar\":\"KjKYNU5KP1nTog==\",\"waveform\":\"LFVDZGRHSmRkZFBAZFpCZEZkZGRZQ0JkRUUtNDM4TDEzRj4uWEIkFAsKBAICB0w2P1ssTFFKODtkRkQxLx8ZDQ==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771342290\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"k7yjeQnVng79WP+4Hg74T67wBIHtiUUYg+Komtg\\/SFA=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771358732,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:32.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:05:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(22955, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"pushName\":\"Fabricio \",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:33.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:05:33'),
(22956, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:32.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:05:33'),
(22957, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB087D93C223DE04939FB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358738903,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:38.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:05:39'),
(22958, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB087D93C223DE04939FB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358741660,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:05:41.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:05:41'),
(22959, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB097688A077D72BFD8A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771358791836,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:06:31.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:06:32'),
(22960, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:07:08.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:07:09'),
(22961, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"35562429903034@lid\",\"fromMe\":true,\"id\":\"A5B481D7961C1B4A884AF4623019EFFA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/24326118_1243350400464720_1727378647406917190_n.enc?ccb=11-4&oh=01_Q5Aa3wEXUaY51ddo_PsR543dYsJY1UWId3FrT0N2-7lVl2nzkQ&oe=69BC2808&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"fRTHpaa+9MOFXJI0ymb9E9kiqlVpedGyb1HL0CJ3t2Q=\",\"fileLength\":\"27961\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"mbRdqfoQFjYBrS5K4NfQoMSDSKRCncBWmIV9r1pMGLs=\",\"fileEncSha256\":\"8QohVY1Z+U0utzKVujVxkKdziXepWwbk8tAxmLwc3Qg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/24326118_1243350400464720_1727378647406917190_n.enc?ccb=11-4&oh=01_Q5Aa3wEXUaY51ddo_PsR543dYsJY1UWId3FrT0N2-7lVl2nzkQ&oe=69BC2808&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771358817\",\"waveform\":\"AF4xRGFbYFBgSkNXRVZDVWBSV0YrYQgFDFlaYjxMYTNKTgAAAB82Wy5aU0JRX01SPkRVU1hbRU85X1VXVVtSVw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771358828,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:07:08.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:07:09'),
(22962, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"pushName\":\"Fabricio \",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:07:08.992Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:07:09'),
(22963, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB04C0302CF99EA2193B3\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895433,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.434Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:17'),
(22964, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"A5F637F8E29E5D131F618E5C48619C21\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895447,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:18'),
(22965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB03660436BEC2ADF7F74\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:19'),
(22966, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB005ABD79101389A7266\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895484,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:19'),
(22967, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0A637FE179295E0D246\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895525,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.525Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:19'),
(22968, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB030967A945B5652A718\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:19'),
(22969, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0DC6CA6AF7D1C34DA97\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:20'),
(22970, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0F2475D0B13A2A292B9\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895529,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.530Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:20'),
(22971, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"A5BDD5440CBDA783741CA68F5B9A31EC\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895440,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.440Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:20'),
(22972, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0C54361321EE3FA9C82\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:21'),
(22973, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0491D2749C796D0C363\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895553,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:21'),
(22974, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB053CB70A31DC877BDC7\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895520,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:22'),
(22975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0029429244A64E49BF7\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895543,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:22'),
(22976, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB03700FFD423EB10A325\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895511,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:22'),
(22977, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB01B969BA80ACAA9FBA9\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895564,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:22'),
(22978, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0FF8E239D2128873373\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895495,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:23'),
(22979, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0EABAEA9FFE622950FB\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895454,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:24'),
(22980, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB07EA58B00A927E54AFF\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:24'),
(22981, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"A583AD4230F9057A0B4AA2664E090B4B\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895504,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:25'),
(22982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"A59DF6B6CB09EB4906D1030DA525906A\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895605,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:25'),
(22983, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB01A272123F6FB4C7EE6\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895537,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:25'),
(22984, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0AC49E5A7C717CF3356\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895558,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:26'),
(22985, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB098D90D722BDB1BA1A9\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895461,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:26'),
(22986, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"A51CCB0EBA94823CBCAAB0CAAEE34C85\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:27'),
(22987, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB016C5C08314EA0ECD6F\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895650,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.651Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:27'),
(22988, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0B7F0FAB0C31239159D\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:27'),
(22989, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB093BA48C1C7BBE51C16\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895595,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:27'),
(22990, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0F9CD99372016528BBC\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:27'),
(22991, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0640A0B09B24B0390F7\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895516,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:28'),
(22992, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0A16E440560B30DD5B2\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895611,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.612Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:28'),
(22993, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB09D3DB60822A1843344\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895572,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:28'),
(22994, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"A5145EC7FFF35A93217154F05925482E\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895628,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.629Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:29'),
(22995, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0533B344E11093B8CC9\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895591,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:29'),
(22996, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0DBD731BB7D407F1CAD\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:29'),
(22997, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3EB0D254FE385B2D5C4ADF\",\"fromMe\":true,\"participant\":\"554791592447@s.whatsapp.net\",\"status\":\"READ\",\"datetime\":1771358895577,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:08:15.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:08:29'),
(22998, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB097688A077D72BFD8A3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771358940436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:09:00.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:09:00'),
(22999, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CFA067EED6F2EDB4C9\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771359238,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:13:58.653Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:13:59'),
(23000, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0011E1F64BA2514CD0A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771359247,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:14:08.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:14:08'),
(23001, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB0011E1F64BA2514CD0A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771359250109,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:14:10.110Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:14:10'),
(23002, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FFB741FE55A49BDE75\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771359375,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:16:15.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:16:15'),
(23003, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D0A91A8FD02E8EF647\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771359385,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:16:25.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:16:25'),
(23004, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB0D0A91A8FD02E8EF647\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771359387560,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:16:27.560Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:16:27'),
(23005, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A53D7ECD8CED3D938C7EE852273AE213\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771359424787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:17:04.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:17:06'),
(23006, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"fromMe\":true,\"id\":\"3EB0D0A91A8FD02E8EF647\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:17:06.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:17:06'),
(23007, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"fromMe\":true,\"id\":\"3EB0011E1F64BA2514CD0A\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:17:06.366Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:17:06'),
(23008, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"3EB0CFA067EED6F2EDB4C9\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:17:10.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:17:11'),
(23009, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"3EB0FFB741FE55A49BDE75\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:17:11.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:17:11'),
(23010, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"3EB0320CEC5A34A167F844\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771359810988,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:23:30.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:23:31'),
(23011, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"35562429903034@lid\",\"id\":\"A5B481D7961C1B4A884AF4623019EFFA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771359920881,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:20.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:25:21'),
(23012, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"35562429903034@lid\",\"id\":\"A5B481D7961C1B4A884AF4623019EFFA\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771359922744,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:22.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:25:22'),
(23013, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"35562429903034@lid\",\"id\":\"A5B481D7961C1B4A884AF4623019EFFA\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771359924033,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:24.033Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:25:24'),
(23014, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"presences\":{\"35562429903034@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:38.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:25:39'),
(23015, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:39.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:25:40'),
(23016, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"35562429903034@lid\",\"fromMe\":false,\"id\":\"3ACD2DA089D706212F5C\"},\"pushName\":\"Fabricio \",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771342290\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"f9kZQuRSJLODsk52Xfe9Zz1kXfcJoSje145dogogf\\/I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771359939,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:39.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:25:40'),
(23017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"35562429903034@lid\",\"pushName\":\"Fabricio \",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:40.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:25:41'),
(23018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"35562429903034@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/555816801_1128345519485209_1664140416349901557_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHuxx-ImIp9b-d9vw0gDpVonBIXp7YBXmSTZYRdo2pyw&oe=69A1D201&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:25:40.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:25:41'),
(23019, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:06.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:06'),
(23020, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:07.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:07'),
(23021, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A2580B4AD476C472ADF\"},\"pushName\":\"Charlla Segato\",\"message\":{\"conversation\":\"Oii\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lDgDs1nVKH6vhk2QQBmfzSbSpwjjLCLvvvufcs17HfE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771359966,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:07.014Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:26:07'),
(23022, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:07.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:08'),
(23023, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:07.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:26:08'),
(23025, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:17.421Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:17'),
(23026, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:26.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:27'),
(23027, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A1066B0EA3EE84D5EE2\"},\"pushName\":\"Charlla Segato\",\"message\":{\"conversation\":\"Esqueci de pagar esse negócio da licença\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AcgrKtkv7tNmQ3B6\\/C6ShbQX8Krj+NKCWxXs9BbE4jE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771359986,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:26.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:26:27'),
(23028, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:27.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:28'),
(23029, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:27.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:28'),
(23030, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:27.461Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:28'),
(23031, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A8E32C84107448D2925\"},\"pushName\":\"Charlla Segato\",\"message\":{\"conversation\":\"Como faço\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Sa6RFY3FFd1ZNryPxF2TwbDX9CQXCCiaLqgm0jduXmU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771359991,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:31.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:26:31'),
(23032, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:31.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:31'),
(23033, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:31.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:32'),
(23034, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:26:31.774Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:26:32'),
(23035, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:28:51.820Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:28:52'),
(23036, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ED6C340413B1E7B8CD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, Erick Souza!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ {valor}\\r\\n📅 *Vencimento:* {data_vencimento}\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* {pix_tipo}\\r\\n📌 *Chave:* {pix_chave}\\r\\n👤 *Beneficiário:* {pix_beneficiario}\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771360132,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:28:53.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:28:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23037, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB0ED6C340413B1E7B8CD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771360134596,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:28:54.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:28:54'),
(23038, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB0ED6C340413B1E7B8CD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771360175935,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:35.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:29:36'),
(23039, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"presences\":{\"32465758515228@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:40.558Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:40'),
(23040, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRo1_Hcgg2mlyyMdAB5isCQ31yViAzBKXnx0DiTXMySw&oe=69A1EC25&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:41.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:42'),
(23041, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRo1_Hcgg2mlyyMdAB5isCQ31yViAzBKXnx0DiTXMySw&oe=69A1EC25&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:42.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:42'),
(23042, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:42.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:43'),
(23043, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":false,\"id\":\"A56DDACF50137D447CAF8BAF47140962\"},\"pushName\":\"Erick\",\"message\":{\"extendedTextMessage\":{\"text\":\"Pago\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gze8+Vun29kkJA==\",\"senderTimestamp\":\"1770554183\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fX\\/lYuxKL2w6QrSFuS3NcSoIuzhR1ZUHNrseeD6gW8M=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771360182,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:42.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:29:43'),
(23044, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRo1_Hcgg2mlyyMdAB5isCQ31yViAzBKXnx0DiTXMySw&oe=69A1EC25&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:43.336Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:44'),
(23045, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"pushName\":\"Erick\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRo1_Hcgg2mlyyMdAB5isCQ31yViAzBKXnx0DiTXMySw&oe=69A1EC25&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:43.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:44'),
(23046, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB076FC007A0B397D8B89\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 32465758515228\\nMensagem: \\\"Pago\\\"\\n\\nUse: \\/aprovar 32465758515228  (automático)\\nUse: \\/pago 32465758515228  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771360183,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:44.042Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:44'),
(23047, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02831E6B9F7889A2B7F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 32465758515228\\nMensagem: \\\"Pago\\\"\\n\\nUse: \\/aprovar 32465758515228  (automático)\\nUse: \\/pago 32465758515228  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771360184,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:29:44.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:29:45'),
(23048, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A518D69AC80DB9ACC09AB08E1DB51F11\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771360281665,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:21.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:31:22'),
(23049, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"32465758515228@lid\",\"fromMe\":true,\"id\":\"A518D69AC80DB9ACC09AB08E1DB51F11\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594025783_3495995060553590_950834026800302791_n.enc?ccb=11-4&oh=01_Q5Aa3wHh97CjCVW5jLYs0TERPE5f3dbEB9YA5NyqAaPZ209pVg&oe=69BC325F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"NE90a+YpIE2+4y9c57DtkQU6g\\/o9ympDGVn+\\/RO9BC4=\",\"fileLength\":\"19992\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"3zd1eIaqZOkr+QUxR\\/8B72SLksgByXVaf1FtOoeGtgQ=\",\"fileEncSha256\":\"su05veLxi+Mf3cdAg3\\/9day7OBxRT5cLxlGtnc4KAik=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594025783_3495995060553590_950834026800302791_n.enc?ccb=11-4&oh=01_Q5Aa3wHh97CjCVW5jLYs0TERPE5f3dbEB9YA5NyqAaPZ209pVg&oe=69BC325F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771360272\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAYHDDcAVDteWldUUklOPUtKVFFSWyhBHSg7UVw7NiJUSytJKVM0TVBSUENRJVdDWFFLJihFOjo1RE9LAA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1712324348\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771360282,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:22.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:31:22'),
(23050, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"32465758515228@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:22.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:31:22'),
(23051, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"32465758515228@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534422665_679997814761403_4584603144206302257_n.jpg?ccb=11-4&oh=01_Q5Aa3wHRo1_Hcgg2mlyyMdAB5isCQ31yViAzBKXnx0DiTXMySw&oe=69A1EC25&_nc_sid=5e03e0&_nc_cat=110\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:22.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:31:23'),
(23052, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:40.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:31:40'),
(23053, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A5354D97F65CE017A801503F388AEA63\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/29984606_890121063839596_1636342647462181730_n.enc?ccb=11-4&oh=01_Q5Aa3wEfS3intiD8jLJ5uJ9WJm4jp-lfixLXD4neAImDAXfgiQ&oe=69BC52D5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"4A0p44QUBnZ1jDUZNcynX6r8Q3VVYeNaS3V+wlTcbpo=\",\"fileLength\":\"8642\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"pY0eNasghcrxuKM8UlQtk5WWiROCnjUOniLjWdFjxrQ=\",\"fileEncSha256\":\"GRUH0mEpmtBw\\/BYjIclgRaKkBJPf8\\/SHI7k3Ky7eERs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/29984606_890121063839596_1636342647462181730_n.enc?ccb=11-4&oh=01_Q5Aa3wEfS3intiD8jLJ5uJ9WJm4jp-lfixLXD4neAImDAXfgiQ&oe=69BC52D5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771360298\",\"waveform\":\"AAkKACFHRiFDWVdUPBcqO0Q5S0xMS00lUVJINS8mO0MwKUE0PU0yUFhFKzdYPkBEVE82PkRRPyJJUUtSUSkFAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771360300,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:40.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:31:40'),
(23054, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:40.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:31:41'),
(23055, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5354D97F65CE017A801503F388AEA63\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771360301457,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:41.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:31:41'),
(23056, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:54.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:31:54'),
(23057, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A537A740984308C6F15EB0DAD85103E0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637972236_2129326824485720_4001414744467728795_n.enc?ccb=11-4&oh=01_Q5Aa3wFhlOkPYq4cfQcSW24URANDVGLUsk5ARwMni4sT7vvxMQ&oe=69BC4F79&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"hHVNuek8WPm5h7qcSYmDMPywM0vDjSTxcGA3Ezyye00=\",\"fileLength\":\"15025\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"D6BRSsBV7fncs8+3FsNjW9eTIVdJbnMTvlIMEHJfzLY=\",\"fileEncSha256\":\"9uCacDfjLfdeL+5AKNSm832Wq6GqaRP8gLg9gQbU6pM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637972236_2129326824485720_4001414744467728795_n.enc?ccb=11-4&oh=01_Q5Aa3wFhlOkPYq4cfQcSW24URANDVGLUsk5ARwMni4sT7vvxMQ&oe=69BC4F79&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771360308\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAAVWFRPT1pNIE4eTUFQUUNbVxA0Lj8pVCtZUT9HVU9GREdMUk0hSDVLRTJHNURBLEAWAAEAAAEAACU8Gk8kTg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771360314,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:54.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:31:54'),
(23058, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:54.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:31:55'),
(23059, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A537A740984308C6F15EB0DAD85103E0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771360314923,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:31:54.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:31:55'),
(23060, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB063AA2AEBA0673D13FF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771360778,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:39:38.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:39:38'),
(23061, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05398D27E700E7777A6\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771360791,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:39:52.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:39:52'),
(23062, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB05398D27E700E7777A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771360798818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:39:58.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:39:59'),
(23063, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB05398D27E700E7777A6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771360850410,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:40:50.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:40:50'),
(23064, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"3EB063AA2AEBA0673D13FF\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:41:06.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:41:06'),
(23065, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"62333061746885@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:44:52.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:44:53'),
(23066, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"62333061746885@lid\",\"fromMe\":true,\"id\":\"A549418914318D9553DE4EF46CD0267C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/527040763_1816374085741721_7522751347134685282_n.enc?ccb=11-4&oh=01_Q5Aa3wER_oTmpMEbemXL2JCr511cekrYhOEG7wPv5jSLBB7Wuw&oe=69BC5940&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Fur1rCgUw+lan+2xTqvM1VFwIeHYbDLVMdMMCWI7fbM=\",\"fileLength\":\"16301\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"+zZfZdFi236ZDv47pwdExcUJ5aLC\\/aX81zOz4cALcAs=\",\"fileEncSha256\":\"ro6yXwElG6qSN+GXQIzKH\\/hSpmXCxkigyCrAONmiScs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/527040763_1816374085741721_7522751347134685282_n.enc?ccb=11-4&oh=01_Q5Aa3wER_oTmpMEbemXL2JCr511cekrYhOEG7wPv5jSLBB7Wuw&oe=69BC5940&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771361086\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":3447},\"waveform\":\"AAkHSktFRkRIJzRGGUUpRRsaRkVANzQ0NRwAADc0LENJPDg+SEE0RQU0MTM+NAYAAAAEAgAxOzwuSEUmLzIvOA==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":3447},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771361092,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:44:52.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:44:53'),
(23067, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:44:52.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:44:53'),
(23068, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:45:38.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:45:39'),
(23069, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:45:47.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:45:47'),
(23070, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:45:46.870Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:45:47'),
(23071, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:45:47.846Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:45:48'),
(23072, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A518D69AC80DB9ACC09AB08E1DB51F11\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771361174780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:14.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:46:15'),
(23073, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"A518D69AC80DB9ACC09AB08E1DB51F11\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771361175447,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:15.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:46:15'),
(23074, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:19.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:46:19'),
(23075, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:30.998Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:46:31'),
(23076, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:41.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:46:41'),
(23077, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:53.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:46:53'),
(23078, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:46:58.741Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:46:58'),
(23079, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:09.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:10'),
(23080, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:10.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:10'),
(23081, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:10.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:11'),
(23082, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":false,\"id\":\"A5DEBBEED3102C5951D83A1CDEF3258B\"},\"pushName\":\"churrasqueiras Ribeirópolis\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa tarde man deixa eu perguntar o xciptv que baixa no Playstore serve o nosso login?\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":318},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770407555\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YPN5uLkKlTtXMRzpME\\/fzD9bEapU\\/KQJIqXCNHuH75U=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"biz_profile\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":318},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771361230,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:10.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:47:11'),
(23083, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:10.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:47:11'),
(23084, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:12.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:12'),
(23085, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:22.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:22'),
(23086, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:33.305Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:33'),
(23087, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:34.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:34'),
(23088, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":false,\"id\":\"A564F3495DEFA6532F1898662B76FA0B\"},\"pushName\":\"churrasqueiras Ribeirópolis\",\"message\":{\"conversation\":\"O ibo não tá funcionando aqui desde sábado fica dando expirado\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770407555\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FHdlaJ5sPjGJIsZVd3d39S+mdCvUKAkQQxeid2k2OSk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771361265,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:45.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:47:45'),
(23089, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:45.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:46'),
(23090, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:46.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:46'),
(23091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:47:45.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:47:46'),
(23092, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A549418914318D9553DE4EF46CD0267C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771361368549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:49:28.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:49:29'),
(23093, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB05398D27E700E7777A6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771361374968,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:49:34.968Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:49:35'),
(23094, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A549418914318D9553DE4EF46CD0267C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771361374976,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:49:34.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:49:35'),
(23095, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A549418914318D9553DE4EF46CD0267C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771361377220,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:49:37.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:49:37'),
(23096, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"presences\":{\"62333061746885@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:21.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:50:22'),
(23097, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:31.368Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:50:31'),
(23098, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"presences\":{\"62333061746885@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:31.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:50:31'),
(23099, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8ACD9DADE99E23E829\"},\"pushName\":\"Kevinho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/598713148_1265963185393263_1567783635046460727_n.enc?ccb=11-4&oh=01_Q5Aa3wE_s3bnmNwgE6FS5hhBAcCMrnWlUyXXV33WLWlIx9UUjQ&oe=69BC4723&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"bglDP5y1JrR\\/7q5KeN\\/BUTEYBMH4qilxQpnMWnDx\\/bQ=\",\"fileLength\":\"21125\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"\\/unDbEkVmBn+jEjVM3z\\/IhlP\\/S7gGSZW\\/4Zs1HmHjlw=\",\"fileEncSha256\":\"Srmbw5xdlYT1Z3PGfAWVjAVObKIkHrrZ7+r3+yaLEDs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/598713148_1265963185393263_1567783635046460727_n.enc?ccb=11-4&oh=01_Q5Aa3wE_s3bnmNwgE6FS5hhBAcCMrnWlUyXXV33WLWlIx9UUjQ&oe=69BC4723&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771361421\",\"streamingSidecar\":\"8jnnrSwujw4IzQ==\",\"waveform\":\"AAcIX1RiYj9QYUo8XFZgSi0ZQV5KV11gRSMRCw4MFioySmRkYF9kWlRbPBoNIF1kWzkyYVdfQjVkY1YqEwoGBA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771360850\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"NjsH7S4mXZ4wCindbgXy8ghw4jMdgVuCmYkLyEg2qKQ=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771361432,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:32.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:50:32'),
(23100, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996605722@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:32.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:50:32'),
(23101, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996605722@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:32.344Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:50:33'),
(23102, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996605722@s.whatsapp.net\",\"pushName\":\"Kevinho 5722 $35 Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:50:32.534Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:50:34'),
(23103, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5354D97F65CE017A801503F388AEA63\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771361493286,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:33.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:51:33'),
(23104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5354D97F65CE017A801503F388AEA63\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771361496735,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:36.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:51:36'),
(23105, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:40.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:51:40'),
(23106, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:40.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:51:41'),
(23107, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A290C15C845665BA6F3\"},\"pushName\":\"Charlla Segato\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uT4jXqlsJsTvqekXDZupyvRkzKNwvHugTiash1Z5Qz4=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771361500,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:40.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 17:51:41');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23108, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:41.294Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:51:42'),
(23109, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T17:51:41.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 17:51:42'),
(23110, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F3B2B705BF18876288\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, Kev \\/ IOS VIVO!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ 35,00\\r\\n📅 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* Email\\r\\n📌 *Chave:* contato@voidplay.com.br\\r\\n👤 *Beneficiário:* VoidPlay Principal\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771362135,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:02:15.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:02:15'),
(23111, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB0F3B2B705BF18876288\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362136422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:02:16.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:02:16'),
(23112, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B856CD50F3FB58DD2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📅 *Olá, Gabriel \\/ Vivo ios!*\\r\\n\\r\\nPassando para dar um lembrete amigável 😊\\r\\n\\r\\nSua mensalidade vence em *3 dias*, no dia *20\\/02\\/2026*.\\r\\n\\r\\n💰 *Valor:* R$ 35,00\\r\\n\\r\\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\\r\\n\\r\\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771362139,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:02:19.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:02:19'),
(23113, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"id\":\"3EB00B856CD50F3FB58DD2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362142573,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:02:22.573Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:02:22'),
(23114, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F3B2B705BF18876288\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:05:39.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:05:40'),
(23115, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB036D68FF103AF9BB5E8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362341105,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:05:41.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:05:41'),
(23116, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A515B4AAE9A25383D2B9F31423E47238\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362416249,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:06:56.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:06:57'),
(23117, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"62333061746885@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:06:57.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:06:57'),
(23118, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"62333061746885@lid\",\"fromMe\":true,\"id\":\"A515B4AAE9A25383D2B9F31423E47238\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637985098_1419114192997891_3803052617206112033_n.enc?ccb=11-4&oh=01_Q5Aa3wGWKsDVAXDP7EblvTgyRYKwQWPfv6e_vYvAvK4Nz4aq6A&oe=69BC3EC3&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"RpApiWwxqWuopvUkYb4wpVppjNOomFie6zGRkuKR0HE=\",\"fileLength\":\"27951\",\"seconds\":12,\"ptt\":true,\"mediaKey\":\"r64JpfFOeYdNjgB07ytV7\\/2mNs5pRRsd5KqxUYAiVow=\",\"fileEncSha256\":\"hTPouocCveSzMcf3F1zciw74gqM2KFPMZTbkD40euf0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637985098_1419114192997891_3803052617206112033_n.enc?ccb=11-4&oh=01_Q5Aa3wGWKsDVAXDP7EblvTgyRYKwQWPfv6e_vYvAvK4Nz4aq6A&oe=69BC3EC3&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362403\",\"waveform\":\"ABAXYUAqJCRUWCs1JFFHViU3RktKKTIaV1JWEAQDQk5VUUpEM0taTDBRRFEDEkxbRkk2RUBNNwcHAAYAQUlMVg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771362417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:06:57.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:06:58'),
(23119, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:06:58.067Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:06:58'),
(23120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:30.168Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:07:30'),
(23121, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":true,\"id\":\"A555D5F4E80280C0181CA055877D154B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/598070688_893666766855171_6323031585036779984_n.enc?ccb=11-4&oh=01_Q5Aa3wFfUL3V1pgjiaPB_Mu69pcDdlVLYNi_uLvItXRD3laOGQ&oe=69BC3E0A&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"l3E1XxK+eEAhNrYT2Uc7HQA22piNmhzI+y8+bF3KUS8=\",\"fileLength\":\"6749\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"NnQKKRnGDDMdgZUqEpnma1dQDH\\/by0R+G\\/kyvwFqbSM=\",\"fileEncSha256\":\"kWR9iJJVF8BYlopNtLSk+BkXzgkGm7BEwl49HOQoSN0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/598070688_893666766855171_6323031585036779984_n.enc?ccb=11-4&oh=01_Q5Aa3wFfUL3V1pgjiaPB_Mu69pcDdlVLYNi_uLvItXRD3laOGQ&oe=69BC3E0A&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362448\",\"waveform\":\"AAABAAAAAAEJAQMKKEZPUFxcV1VSUE5BIFFWUkhCQjcsQUdIMC5RRhtNXFxJPkxST05KRklJMQlPUk87PEtPSQ==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771362450,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:30.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:07:30'),
(23122, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:30.546Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:07:31'),
(23123, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A555D5F4E80280C0181CA055877D154B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362451606,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:31.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:07:31'),
(23124, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:33.984Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:07:34'),
(23125, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A5B65500BD6618F211AC615FF59F1E2D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UEYERSLVE6\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]}}},\"contextInfo\":null,\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771362453,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:33.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:07:34'),
(23126, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:34.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:07:34'),
(23127, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5B65500BD6618F211AC615FF59F1E2D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362455071,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:35.071Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:07:35'),
(23128, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:39.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:07:39'),
(23129, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A56A1F119B90DD3749C0164D18842E38\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"$35\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771362459,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:39.656Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:07:39'),
(23130, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:40.028Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:07:40'),
(23131, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A56A1F119B90DD3749C0164D18842E38\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362460621,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:07:40.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:07:40'),
(23132, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A515B4AAE9A25383D2B9F31423E47238\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771362493577,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:13.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:08:14'),
(23133, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A515B4AAE9A25383D2B9F31423E47238\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771362495783,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:15.783Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:08:15'),
(23134, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"presences\":{\"62333061746885@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:32.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:33'),
(23135, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A555D5F4E80280C0181CA055877D154B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771362519020,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:39.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:08:39'),
(23136, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A555D5F4E80280C0181CA055877D154B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771362519628,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:39.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:08:39'),
(23137, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"presences\":{\"62333061746885@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:42.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:42'),
(23138, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"presences\":{\"62333061746885@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:43.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:43'),
(23139, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996605722@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:45.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:45'),
(23140, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A31156857E7F4DEC6BD\"},\"pushName\":\"Kevinho\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/592921026_1499252161397507_3599269967848107647_n.enc?ccb=11-4&oh=01_Q5Aa3wEfWJ9i8Yyml5VFM24JKkt5SFPByuUZAJSwOtFhpFd1uQ&oe=69BC5B57&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"MlB18SVLMfsBdNVXNbHOFt6Ea13+iIqqyDtl4buVcPg=\",\"fileLength\":\"22396\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"tdtb5aaWtJJa2tXLqnf2K0XvnCTa2aOvIXvIlhLEB78=\",\"fileEncSha256\":\"XvLwgNBDcrb5SySPiXOfUoqgvpCmfRAkuk0XEOWA4dI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/592921026_1499252161397507_3599269967848107647_n.enc?ccb=11-4&oh=01_Q5Aa3wEfWJ9i8Yyml5VFM24JKkt5SFPByuUZAJSwOtFhpFd1uQ&oe=69BC5B57&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362512\",\"streamingSidecar\":\"LnKSUYAnhIiajw==\",\"waveform\":\"AQMCAmRkZGRkZCgtQCUYO01WNSY4OBQKBgQEAwQDAyBBTjUvLGBkZGRkZFosFRxkZGRZQmRkZE5TMRwRChIJBg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771360850\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"U4\\/X0F+E7ybL+8fCKGXduDOJCrIi05L39fFc2Pn3Dmg=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771362524,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:45.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:08:45'),
(23141, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996605722@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:45.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:46'),
(23142, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:46.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:46'),
(23143, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996605722@s.whatsapp.net\",\"pushName\":\"Kevinho 5722 $35 Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:45.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:46'),
(23144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:52.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:53'),
(23145, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:58.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:58'),
(23146, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":false,\"id\":\"A5C2A097B44AC3C9339E90F81854AF4D\"},\"pushName\":\"churrasqueiras Ribeirópolis\",\"message\":{\"conversation\":\"Ibo p2p\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770407555\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"cGywlgftSCQ3RsuW7EGZfng3AJ25k79zHOc2cH4+b0A=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771362538,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:58.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:08:58'),
(23147, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:58.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:59'),
(23148, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:08:58.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:08:59'),
(23149, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"id\":\"3EB012120922E574C4D6D3\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771362582497,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:09:42.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:09:42'),
(23150, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:02.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:02'),
(23151, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":true,\"id\":\"A56124EF1747EB6B1BF6A9A1305EE3D5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588469363_774160055278059_5794411553707657582_n.enc?ccb=11-4&oh=01_Q5Aa3wFvsPzFzdd3Vn6qIpFJeBQhN41ZTs9_Z4eBl8mkijrDKg&oe=69BC6590&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"mETTrTgeZGOp+I0MKyZGBCh1Fup\\/6EU3ftYlfcGAgck=\",\"fileLength\":\"140059\",\"height\":738,\"width\":1600,\"mediaKey\":\"g2xfEKD0JhXJ654zyPbcPo3K5qtIoDb+vmhH7weHKg4=\",\"fileEncSha256\":\"ZS1SlaqP0C4n9MvF2jaxQH50mYRYbyJElwiqoEsK3i4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588469363_774160055278059_5794411553707657582_n.enc?ccb=11-4&oh=01_Q5Aa3wFvsPzFzdd3Vn6qIpFJeBQhN41ZTs9_Z4eBl8mkijrDKg&oe=69BC6590&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362841\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACAASAMBIgACEQEDEQH\\/xAAtAAADAQEBAAAAAAAAAAAAAAAAAgMBBAUBAQEBAAAAAAAAAAAAAAAAAAEAAv\\/aAAwDAQACEAMQAAAA8N9pvJQoKZsidUpWDgxZa6MrKiJx9XISOrzQUr\\/\\/xAAhEAACAgEEAgMAAAAAAAAAAAAAAQIRAxITITEEUSIzQf\\/aAAgBAQABPwDFiUo2bCIY0jaQovq7Kxpcto24eyWHH2rFiilz0YfrIibQ5kabbZJaWraHkk00qIT+Cs0yPHlWM5s1M1L0ZZponJNdkcmk35MWWdHjyW2Wq7LRcWZGqZJKXC7NqXAoOP4NPuj\\/xAAYEQACAwAAAAAAAAAAAAAAAAACEBEwUf\\/aAAgBAgEBPwCiCxf\\/xAAYEQADAQEAAAAAAAAAAAAAAAABEBEAIP\\/aAAgBAwEBPwDBzihf\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"yDHLDDCgiCZr+bZmlYDPgwQoQUgkbEZBLa7uQDH9+Wrvl6wE0fOqkA==\",\"scanLengths\":[12264,59111,27683,41001],\"midQualityFileSha256\":\"qWyOCSV8gcS8Iu4a8T5Nh6shAP+g0NKcnLPwdM0nbgE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771362842,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:02.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:02'),
(23152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:02.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:03'),
(23153, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A56124EF1747EB6B1BF6A9A1305EE3D5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362847034,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:07.035Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:07'),
(23154, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:07.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:07'),
(23155, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:07.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:08'),
(23156, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A58722930DC7070781EBF195553FE188\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362847644,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:07.644Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:08'),
(23157, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":true,\"id\":\"A58722930DC7070781EBF195553FE188\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590224962_1577088326907256_5909391152863716273_n.enc?ccb=11-4&oh=01_Q5Aa3wH-bm-yRSrgB_i2B8rEWn2BjM3sP06T4yoo-k2ngISHkg&oe=69BC5A52&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"kCyT81YPX4nORmUtehQH5XaoXgv8Q4+PgAiqw30wU4Y=\",\"fileLength\":\"7562\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"3R0T03eAWdu+9sQacBoyHDmlu0suhK\\/HYPeG70G5Ucc=\",\"fileEncSha256\":\"V0mscegCNDXpA54nla1BRFmPo9eeG+M1QXAGd3+U0YQ=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590224962_1577088326907256_5909391152863716273_n.enc?ccb=11-4&oh=01_Q5Aa3wH-bm-yRSrgB_i2B8rEWn2BjM3sP06T4yoo-k2ngISHkg&oe=69BC5A52&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362844\",\"waveform\":\"AAkAAAA0UlJFMTYQTkdKPj9VVRw+TlM\\/RkpFRD5HSktKTEIRAAAAAAAAAAAAAAAAAAAGBAAAAgsAAAtHRkZCQg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771362847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:07.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:08'),
(23158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"62333061746885@lid\",\"fromMe\":true,\"id\":\"A553E034485AD4A4779E0B3AE7B7D0B6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595425260_1809222993099587_4072466691510482040_n.enc?ccb=11-4&oh=01_Q5Aa3wGg8dKiXo5uYawY4sQ62KDj03ZuzznxqfKidujoFICPeA&oe=69BC3893&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"DS1QLFEGoqscBVbj71u\\/ioTopMu2R4opdQPrhlcWBo8=\",\"fileLength\":\"4496\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"dm0FO0XqKbzrMYYD4Z5NC5p+huU3iFCtgz3HwKIH+4Y=\",\"fileEncSha256\":\"C4DysxwhZOK8rCf\\/ijDLBL9O7CFQEywszbuJ66jPWJs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595425260_1809222993099587_4072466691510482040_n.enc?ccb=11-4&oh=01_Q5Aa3wGg8dKiXo5uYawY4sQ62KDj03ZuzznxqfKidujoFICPeA&oe=69BC3893&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362856\",\"waveform\":\"AAUIBggODxEoOUE3JCElQVBNTU1IRUlMTkAtHBw\\/RTc8Q0ZHRD42O0BEREBFTU9QTEpMSERHSkpLS0lHPioKAg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771362856,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:16.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:17'),
(23159, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"62333061746885@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:16.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:17'),
(23160, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"62333061746885@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:17.244Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:18'),
(23161, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A553E034485AD4A4779E0B3AE7B7D0B6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771362858935,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:18.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:19'),
(23162, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A58722930DC7070781EBF195553FE188\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771362862485,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:22.485Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:22'),
(23163, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A56124EF1747EB6B1BF6A9A1305EE3D5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771362862489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:22.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:22'),
(23164, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A58722930DC7070781EBF195553FE188\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771362863250,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:23.250Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:23'),
(23165, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:29.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:29'),
(23166, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"presences\":{\"3289978540053@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:39.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:39'),
(23167, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:40.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:40'),
(23168, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":false,\"id\":\"A511DAECC2736AADFEDE7575F91C5AC0\"},\"pushName\":\"churrasqueiras Ribeirópolis\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594020311_787224067772845_3363236168861173533_n.enc?ccb=11-4&oh=01_Q5Aa3wGSiFulA1y85drriEmeXp7XdixuTs10pj636sWR__eKIA&oe=69BC3D69&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"jBYzZ3UvkRcipK+8c0xpf0PhOQJNegPba4Eq1sFKnjc=\",\"fileLength\":\"23430\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"ZZfh81+1xuLPFomrhJb8fhcazzLTb+YCZ9li3tQvLl8=\",\"fileEncSha256\":\"lksacX5+luEoGFOpnopQTEuP+GuS0OyAW2i6nwvPhH8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594020311_787224067772845_3363236168861173533_n.enc?ccb=11-4&oh=01_Q5Aa3wGSiFulA1y85drriEmeXp7XdixuTs10pj636sWR__eKIA&oe=69BC3D69&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362871\",\"waveform\":\"AAAABClKRxxRQ0RKNEVDPU8+NTAfUSBCREIcCwcOMFMzOzkiBQgHQD0xRDQ2QEVOQB0QCipFR0M9Ry80MjIqAg==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770407555\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AG6uJgGcTzpBC7hdh4y2s2tOgVMGSct6cQcSxfYmCoY=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771362880,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:40.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:14:40'),
(23169, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:40.615Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:41'),
(23170, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:14:40.427Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:14:41'),
(23171, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:15:32.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:15:32'),
(23172, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":false,\"id\":\"A5A03FA7CF6BDD0BF41D52A62EB81BC1\"},\"pushName\":\"churrasqueiras Ribeirópolis\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/596300599_1240337774324417_7199298086680215254_n.enc?ccb=11-4&oh=01_Q5Aa3wGLq5I7zwNg-Llw3ckAo__dvRAAFUR3-UvqiaG5GiQFpg&oe=69BC35BB&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"aWMZMAp0l2SCFeezVk67xS3FbQ+jILky6oX2mYvK\\/Lg=\",\"fileLength\":\"44066\",\"height\":625,\"width\":1600,\"mediaKey\":\"rctESdjorrHnW2wzBCySINcOCPZR4VRfmDt8P+QZzz8=\",\"fileEncSha256\":\"y9mpTRjCb0dhnjztAglE+4x5Zy3SYjO\\/S9v6QyaCpW4=\",\"directPath\":\"\\/v\\/t62.7118-24\\/596300599_1240337774324417_7199298086680215254_n.enc?ccb=11-4&oh=01_Q5Aa3wGLq5I7zwNg-Llw3ckAo__dvRAAFUR3-UvqiaG5GiQFpg&oe=69BC35BB&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771362932\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIABoAQgMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAAAQIDBAUGAQEBAQAAAAAAAAAAAAAAAAAAAgH\\/2gAMAwEAAhADEAAAAPNOLJLZXc53uoKIyjFIAADX0uForO7zM1ZFInQA\\/8QAJhAAAgECBQIHAAAAAAAAAAAAAQIDAAQQERIgIQUUMTIzQlFTcv\\/aAAgBAQABPwAYaDkDlWk1pNaT8URtb0ofzhK8LKgRMiPHB\\/MdpkQxxDPkCoulzSIj6hzT9IPserq3a0cI5puTRG0XVwAAJWru7n7WqSR5WBdiTs\\/\\/xAAaEQACAgMAAAAAAAAAAAAAAAAAAQISECAh\\/9oACAECAQE\\/ABR4V0syzz\\/\\/xAAZEQACAwEAAAAAAAAAAAAAAAAAARAREgL\\/2gAIAQMBAT8AH0N0y5yjKn\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"DWoJyllipQlZRxEWtJp15std\\/7zTwm9xFTCkS1yEgXk6G2dkBIJw\\/g==\",\"scanLengths\":[5405,20517,6794,11350],\"midQualityFileSha256\":\"vCL2nFvnBEPhUU6FNiAH1bUfXq\\/xI3gr1jWJl5IwYkY=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1770407555\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fn3Ysne4Xdm6Pe2g5CRJHC+Gac29br+2s79E0UbRAQk=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771362932,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:15:32.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:15:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:15:33.139Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:15:33'),
(23174, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:15:32.944Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:15:34'),
(23175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"3289978540053@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:17:30.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:17:30'),
(23176, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"3289978540053@lid\",\"fromMe\":true,\"id\":\"A57F9E76D7BCEED520BCADCD225DCC9A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597022891_1925084444797401_1093689924517949084_n.enc?ccb=11-4&oh=01_Q5Aa3wElCWjbwpB3IXevepIGu6nl4XTDPIut0rSSduQNFSGebg&oe=69BC5E27&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"cGlIgT3kjOl\\/IF0kPG08qy1BvChfMgtULnO9h\\/1EY2A=\",\"fileLength\":\"4612\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"CYgeGRo4gcBdnn5onsyiogej+TSWqR3xAqwHZUhwwJo=\",\"fileEncSha256\":\"jR1t2kyBt1KTITIC4RyJhG+C0o5llDGeG2cyEvQWEN0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597022891_1925084444797401_1093689924517949084_n.enc?ccb=11-4&oh=01_Q5Aa3wElCWjbwpB3IXevepIGu6nl4XTDPIut0rSSduQNFSGebg&oe=69BC5E27&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771363049\",\"waveform\":\"ADZeXFdSUE9QUE5QU1VTPjM2My5CUlJUWUAiMkBMTUhSXFpOMzdKSkpMSUFBRFFbW1dPLxI3T09JQEdOTk1KSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771363050,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:17:30.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:17:30'),
(23177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"3289978540053@lid\",\"pushName\":\"churrasqueiras Ribeirópolis\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/605157175_1394618322446978_5565710371223621023_n.jpg?ccb=11-4&oh=01_Q5Aa3wGubwwbrdJd6bS-nd8cUEcU1zQ-xhmX9ATosJRK1t-hHg&oe=69A1F7BA&_nc_sid=5e03e0&_nc_cat=106\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:17:30.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:17:31'),
(23178, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A57F9E76D7BCEED520BCADCD225DCC9A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363050876,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:17:30.876Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:17:31'),
(23179, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A57F9E76D7BCEED520BCADCD225DCC9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771363178570,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:19:38.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:19:39'),
(23180, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"3289978540053@lid\",\"id\":\"A57F9E76D7BCEED520BCADCD225DCC9A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771363179227,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:19:39.228Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:19:39'),
(23181, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00349517F24FCFA0A57\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363187,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:19:47.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:19:48'),
(23182, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5511972421904@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0247EAD633AB3198F3A\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363200,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:20:00.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:20:01'),
(23183, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"132860619034854@lid\",\"id\":\"3EB0247EAD633AB3198F3A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363208040,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:20:08.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:20:08'),
(23184, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E5CF409EC9316E6A79\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363227,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:20:27.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:20:27'),
(23185, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0589555C22B52073A16\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363243,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:20:43.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:20:43'),
(23186, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997872089@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FFE91DD2D45BF9B28D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363258,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:20:58.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:20:59'),
(23187, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"id\":\"3EB0589555C22B52073A16\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363259083,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:20:59.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:20:59'),
(23188, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"3EB0FFE91DD2D45BF9B28D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363262853,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:02.853Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:03'),
(23189, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"3EB0FFE91DD2D45BF9B28D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771363269825,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:09.826Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:10'),
(23190, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00BD3E680973E4C3D43\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363273,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:13.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:13'),
(23191, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"3EB00BD3E680973E4C3D43\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363280496,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:20.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:20'),
(23192, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"presences\":{\"215049113178302@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:24.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:25'),
(23193, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BD7C707B69053E51D2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363285,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:25.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:25'),
(23194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:26.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:26'),
(23195, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"215049113178302@lid\",\"fromMe\":false,\"id\":\"3A4F578F01523BC6E9F4\"},\"pushName\":\".\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oia\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771363169\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"zD9uN5HEWAvRkteA73CcTIm1xBau1aAN3V8Qtuks5rM=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771363286,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:26.405Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:26'),
(23196, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:26.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:27'),
(23197, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:26.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:27'),
(23198, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:26.599Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:27'),
(23199, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB067F660C83A4E84217C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363300,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:40.596Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:41'),
(23200, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"id\":\"3EB067F660C83A4E84217C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363302498,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:42.498Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:42'),
(23201, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"3EB0BD7C707B69053E51D2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363308264,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:48.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:48'),
(23202, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"174178221211880@lid\",\"presences\":{\"174178221211880@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:50.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:50'),
(23203, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FFCCBBDD8095D4AF84\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363311,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:51.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:21:51'),
(23204, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"id\":\"3EB0FFCCBBDD8095D4AF84\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363312697,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:21:52.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:21:52'),
(23205, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"42155120816316@lid\",\"presences\":{\"42155120816316@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:00.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:01'),
(23206, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01E4ECFC95CE90AA197\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363321,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:02.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:02'),
(23207, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"id\":\"3EB01E4ECFC95CE90AA197\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363323567,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:03.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:22:03'),
(23208, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"143954569855063@lid\",\"presences\":{\"143954569855063@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:15.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:15'),
(23209, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EBCE4580C5D6316585\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363336,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:16.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:17'),
(23210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"id\":\"3EB0EBCE4580C5D6316585\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363338204,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:18.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:22:18'),
(23211, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"3EB00BD3E680973E4C3D43\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771363345936,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:25.936Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:22:26'),
(23212, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"251904210772212@lid\",\"presences\":{\"251904210772212@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:28.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:28'),
(23213, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0698E44C819DD4D2C85\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363349,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:29.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:29'),
(23214, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"id\":\"3EB0698E44C819DD4D2C85\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363352803,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:32.803Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:22:33'),
(23215, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB076D4BBBA9FE45D0E00\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363360,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:40.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:41'),
(23216, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"3EB076D4BBBA9FE45D0E00\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363363518,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:43.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:22:43'),
(23217, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:48.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:49'),
(23218, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CA4E03B89B58D9F0E8\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363369,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:50.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:50'),
(23219, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"id\":\"3EB0CA4E03B89B58D9F0E8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363371579,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:51.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:22:51'),
(23220, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996010925@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB032762F491065BA5D3C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363378,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:58.238Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:22:58'),
(23221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"id\":\"3EB032762F491065BA5D3C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363379929,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:22:59.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:00'),
(23222, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"presences\":{\"111141506297958@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:05.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:23:06'),
(23223, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0753148FCBD8861E0F2\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363386,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:07.126Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:23:07'),
(23224, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":true,\"id\":\"3EB0753148FCBD8861E0F2\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:17.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:17'),
(23225, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"fromMe\":true,\"id\":\"3EB032762F491065BA5D3C\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:20.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:20'),
(23226, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"200592353919231@lid\",\"id\":\"A58A8734967E326047CB83BBD7DFC5A2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363401627,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:21.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:21'),
(23227, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554797180643@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03F1B91EAF9702259DC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771363403,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:24.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:23:24'),
(23228, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554797180643@s.whatsapp.net\",\"id\":\"3EB03F1B91EAF9702259DC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363405722,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:25.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:25'),
(23229, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A56A8083B2C1BF56636BA57FBFF4CE37\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363414989,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:34.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:35'),
(23230, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"3EB076D4BBBA9FE45D0E00\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:35.276Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:35'),
(23231, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"fromMe\":true,\"id\":\"3EB0EBCE4580C5D6316585\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:36.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:36'),
(23232, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"143954569855063@lid\",\"id\":\"A57BA8C356B705A72791AE25D4081552\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363417452,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:37.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:37'),
(23233, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"fromMe\":true,\"id\":\"3EB01E4ECFC95CE90AA197\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:42.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:43'),
(23234, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A515E86B6C3E0E73E0A426FAD028E95D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363423325,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:43.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:43'),
(23235, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"fromMe\":true,\"id\":\"3EB03F1B91EAF9702259DC\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:51.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:51'),
(23236, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"148468597284964@lid\",\"id\":\"A5354A0D7BFE59C710F6FD71A780D7BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363431925,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:23:51.925Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:23:52'),
(23237, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A537A740984308C6F15EB0DAD85103E0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771363580932,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:20.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:26:21'),
(23238, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A537A740984308C6F15EB0DAD85103E0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771363581424,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:21.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:26:21'),
(23239, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:26.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:26'),
(23240, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:27.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:28'),
(23241, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC4B00820CEC45F480E7AE6036E8F5A4\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vou mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eVUdnnnJJfosQIJjDCHeIWf6kitVBmFfPMlRnLzFHO4=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771363587,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:27.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:26:28'),
(23242, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:28.262Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:28'),
(23243, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:28.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:29'),
(23244, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:33.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:33'),
(23245, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:34.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:34'),
(23246, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:34.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:34'),
(23247, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC2192138A347E1FAA21C1CB3CF73141\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ipa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+iCiCgN+qSKR\\/hFhUNh6J4a3soJvz6YdwZYpOCZWsFs=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771363594,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:34.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:26:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23248, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:34.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:34'),
(23249, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:36.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:36'),
(23250, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC76F381820109ECD632F6F81257CF16\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ainda dá tempo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"o7O1QkrACyIXCHslJmu6lgJuv4rQiubpja6kNdKV5Mc=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771363599,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:39.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:26:40'),
(23251, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:39.788Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:40'),
(23252, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:39.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:40'),
(23253, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:26:40.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:26:40'),
(23254, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB0E5CF409EC9316E6A79\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771363856682,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:30:56.682Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:30:57'),
(23255, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"322323882047@lid\",\"id\":\"3EB0589555C22B52073A16\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771364158327,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:35:58.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:35:58'),
(23256, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"322323882047@lid\",\"id\":\"3EB00B856CD50F3FB58DD2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771364158337,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:35:58.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:35:58'),
(23257, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB0E5CF409EC9316E6A79\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364455426,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:40:55.426Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:40:55'),
(23258, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"3EB0E5CF409EC9316E6A79\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771364464820,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:41:04.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:41:05'),
(23259, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A553E034485AD4A4779E0B3AE7B7D0B6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771364464815,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:41:04.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:41:05'),
(23260, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A513DD978A963D856588C1BCDD5701C1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tao\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771364611,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:31.266Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:43:31'),
(23261, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:31.265Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:43:31'),
(23262, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:31.648Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:43:32'),
(23263, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A513DD978A963D856588C1BCDD5701C1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364611948,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:31.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:43:32'),
(23264, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:34.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:43:34'),
(23265, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A50A25FA7D0D9DD783AFE8D962BC36CB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771364614,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:34.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:43:34'),
(23266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:34.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:43:35'),
(23267, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A50A25FA7D0D9DD783AFE8D962BC36CB\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364614770,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:43:34.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:43:35'),
(23268, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"fromMe\":true,\"id\":\"3EB0FFCCBBDD8095D4AF84\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:15.948Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:16'),
(23269, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"fromMe\":true,\"id\":\"3EB0FFE91DD2D45BF9B28D\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:24.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:24'),
(23270, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A56B8063E32787E4DBF36F1013908D55\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364665582,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:25.584Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:25'),
(23271, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:29.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:44:29'),
(23272, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"215049113178302@lid\",\"fromMe\":true,\"id\":\"A5A1FE779F236FF3ED907C1A548847B2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590922187_919268560653218_8891511886393171789_n.enc?ccb=11-4&oh=01_Q5Aa3wHkjQA0OABBGLsk42dJ_P0GB5c7aLfVMjYJ5v_9SYJMwA&oe=69BC3E2E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"H3kLfHF1N7k0sStj8sVa3VPkFJtIeRx8UoQjGsyowls=\",\"fileLength\":\"5879\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"QjgWR6mm6+jjL2nl\\/1LK16hmcsIXPELgEdw+i5GCe38=\",\"fileEncSha256\":\"TIeRGXcxutR6hhaH4TZBoNmsBuvhaXTWWniSVGHWg9E=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590922187_919268560653218_8891511886393171789_n.enc?ccb=11-4&oh=01_Q5Aa3wHkjQA0OABBGLsk42dJ_P0GB5c7aLfVMjYJ5v_9SYJMwA&oe=69BC3E2E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771364667\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6422,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AA8aIilTVkpHVFtbU0RCRktKPzY6SE1MSkRLVFY7ODcjQUtGNyo0RElFQjccJi8sFC8\\/RUJAQkVHQUZMTD82MQ==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":6422,\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771364669,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:29.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:29'),
(23273, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:29.511Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:44:30'),
(23274, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5A1FE779F236FF3ED907C1A548847B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364670326,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:30.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:30'),
(23275, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"fromMe\":true,\"id\":\"3EB00349517F24FCFA0A57\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:38.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:38'),
(23276, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"132860619034854@lid\",\"fromMe\":true,\"id\":\"3EB0247EAD633AB3198F3A\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:41.765Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:41'),
(23277, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"132860619034854@lid\",\"id\":\"A5272C03FBD32D60C0ABCA7C15175D64\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364684328,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:44.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:44'),
(23278, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"fromMe\":true,\"id\":\"3EB0E5CF409EC9316E6A79\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:45.458Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:45'),
(23279, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"3EB00BD3E680973E4C3D43\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:52.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:52'),
(23280, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A56ACE6D0842E25DD28FD61DCFDBC1CE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364693799,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:53.799Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:54'),
(23281, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"fromMe\":true,\"id\":\"3EB0BD7C707B69053E51D2\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:56.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:56'),
(23282, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"208404849111077@lid\",\"id\":\"A5F3F07CC204D9088BA3CB2009057DF7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364697239,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:44:57.239Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:44:57'),
(23283, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5F55CD2846C658A44F3FAB6D8C4DF45\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597022274_1166797938683707_5764387567599212387_n.enc?ccb=11-4&oh=01_Q5Aa3wFZGsPPeXZSRxt_zt2tVLlDShXLMzRVcNtcUy_lNmMj_Q&oe=69BC6336&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"1o5f4pK6mUuk8qdeZa6W+o4S0sh\\/nI8YA6VVmbV3gNg=\",\"fileLength\":\"5994\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"Uz8DOf\\/Odk8LylTy8BvQP6GScP9Imu5iL\\/E0Lz3tpp0=\",\"fileEncSha256\":\"SyAakIbsYqqcOLoA9\\/EDpsg8tg247XhHjH\\/jLpTUB4I=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597022274_1166797938683707_5764387567599212387_n.enc?ccb=11-4&oh=01_Q5Aa3wFZGsPPeXZSRxt_zt2tVLlDShXLMzRVcNtcUy_lNmMj_Q&oe=69BC6336&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771364705\",\"waveform\":\"AAEAAAAAAAAAAAU9YmFYVlRTVVRLT11dV1BNUlJTVE46GhswSktRVFFCU1hIL0xOT0cwMjcwK1JVNBklQ0lKTA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771364706,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:45:06.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:45:07'),
(23284, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:45:06.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:45:07'),
(23285, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:45:07.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:45:08'),
(23286, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F55CD2846C658A44F3FAB6D8C4DF45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364707299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:45:07.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:45:08'),
(23287, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"174178221211880@lid\",\"id\":\"A5E87563A7E2DBD8E2B5177DB90B872F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771364842354,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:47:22.354Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:47:22'),
(23288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"42155120816316@lid\",\"id\":\"A54B63112E284257097A9AF4604092F6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771364850453,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:47:30.454Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:47:30'),
(23289, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A56A1F119B90DD3749C0164D18842E38\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365105357,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:51:45.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:51:45'),
(23290, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5B65500BD6618F211AC615FF59F1E2D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365105350,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:51:45.350Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:51:45'),
(23291, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"presences\":{\"21981793632295@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:41.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:41'),
(23292, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:42.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:42'),
(23293, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:42.423Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:42'),
(23294, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"4A351128BB075C42D363\"},\"pushName\":\"Charlla Segato\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m232\\/AQOxl6bd20mmzvrPzNEWrd1B6v1VpSZ6qfKmNAzEpjVExvUvsZuWVMbKlyYkyJuQpBUOugqpDw-eTqi_GfY2JhvYbDdRXYSRxXt1_0WUgA?ccb=9-4&oh=01_Q5Aa3wEJuiW0kFEO5xFJ7zL64ioYju7Nw_zxgU8Ewq2kEWGpYQ&oe=69BC6E76&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"7KgpnhlzW3tXvunoLTHQoVGtb0o4jv0SsaeEt9\\/eMS4=\",\"fileLength\":\"40403\",\"height\":1280,\"width\":417,\"mediaKey\":\"deyyomWn7kWV6m8S0DLuw5dm7PjVDA3LTf5M1fJrZGM=\",\"fileEncSha256\":\"tXEhasi6LNQcaNmDHX78aVGYuSiVT2yE6ofAiY9PYW0=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m232\\/AQOxl6bd20mmzvrPzNEWrd1B6v1VpSZ6qfKmNAzEpjVExvUvsZuWVMbKlyYkyJuQpBUOugqpDw-eTqi_GfY2JhvYbDdRXYSRxXt1_0WUgA?ccb=9-4&oh=01_Q5Aa3wEJuiW0kFEO5xFJ7zL64ioYju7Nw_zxgU8Ewq2kEWGpYQ&oe=69BC6E76&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771365160\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABcDASIAAhEBAxEB\\/8QAGQABAQEAAwAAAAAAAAAAAAAAAAIBAwQG\\/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP\\/aAAwDAQACEAMQAAAA9BW0SoZs0YBs0GCd61nMgToaD\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQIBAT8AL\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACIQAQACAQMFAAMAAAAAAAAAAAEAEQISITETIjJBUQNCcf\\/aAAgBAQABPwA\\/JpUrJnV28WY56mtKQa5FhxN7mLFfkMleJgbrHeFXtMQ5IwCYXb8iXAphnieydTH7DIuxmnK\\/EgV+kP5U7vU7oX7n\\/\\/4AAwD\\/2Q==\",\"scansSidecar\":\"x2Oo5iBnZchg\\/\\/d9rMNmgF52GCwP7wvnAwfYKRuhdDTSRTJWGAMqlw==\",\"scanLengths\":[2967,16757,8296,12381],\"midQualityFileSha256\":\"wQmViTwFlSsTQL3NtQ3zspbjwEwy0AYIK9Pi+VN+vHc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HzJqFjuERG+2JLuQrbGS0Sk5DPUp\\/cO\\/F7exjCYr8Xg=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771365162,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:42.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:52:42'),
(23295, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09A2B466CF1728A2A58\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *carol*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 10,00*\\r\\n• Próximo vencimento: *17\\/03\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771365162,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:42.578Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:43'),
(23296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:42.613Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:43'),
(23297, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"id\":\"3EB09A2B466CF1728A2A58\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365164288,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:44.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:52:44'),
(23298, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:44.878Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:45'),
(23299, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:52:55.127Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:52:55'),
(23300, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:05.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:53:05'),
(23301, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:15.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:53:15'),
(23302, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:25.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:53:25'),
(23303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3AFA406D755FB03C23A7\"},\"pushName\":\"Charlla Segato\",\"message\":{\"conversation\":\"Aproveitando, durante o uso quando estamos assistindo, fica travando, tenho que ficar saindo e entrando denovo para funcionar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"u3UH+GKw9mZUnZwqjkpX7O+mbGRtDHEJs4pOxj4sxik=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771365205,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:25.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:53:25'),
(23304, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:25.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:53:26'),
(23305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:26.018Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:53:26'),
(23306, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:53:25.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:53:26'),
(23307, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A50A25FA7D0D9DD783AFE8D962BC36CB\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365275483,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:54:35.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:54:35'),
(23308, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A513DD978A963D856588C1BCDD5701C1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365275494,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:54:35.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:54:35'),
(23309, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:57:29.764Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:57:30'),
(23310, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05F0E7C8D3D152AEB94\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"teste desconciderar\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771365450,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:57:30.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:57:31'),
(23311, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB05F0E7C8D3D152AEB94\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365452547,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:57:32.547Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:57:32'),
(23312, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:28.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:28'),
(23313, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:31.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:32'),
(23314, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACD601DE9EDF422A045100A958BEDD8B\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Vou mandar aqui o Pix\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MuFMp6nJJ5HH8zNkA\\/IO023oPKq\\/\\/hTVKe8WAwkJEK8=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365511,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:31.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:32'),
(23315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:32.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:32'),
(23316, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:31.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:32'),
(23317, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D109CC6A5867F298CF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 113718268571660\\nMensagem: \\\"Vou mandar aqui o Pix\\\"\\n\\nUse: \\/aprovar 113718268571660  (automático)\\nUse: \\/pago 113718268571660  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771365512,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:32.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:33'),
(23318, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D71A6235CD33469D37\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 113718268571660\\nMensagem: \\\"Vou mandar aqui o Pix\\\"\\n\\nUse: \\/aprovar 113718268571660  (automático)\\nUse: \\/pago 113718268571660  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771365513,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:33.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:34'),
(23319, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:34.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:34');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23320, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5C25094818DD01C684D3277D02FACA7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365515493,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:35.493Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:35'),
(23321, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.056Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:36'),
(23322, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A5C25094818DD01C684D3277D02FACA7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/19433220_897234256234851_6835574322676019052_n.enc?ccb=11-4&oh=01_Q5Aa3wHI9ftMVwPwNz8ujWvZ4lWuj1cCKJhsI5yMimqF1Q_6tg&oe=69BC5348&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HcbWeEpKGxXnwVDR5qpkTd0jcK\\/RV8f0RoDUn\\/HfJ3A=\",\"fileLength\":\"19508\",\"seconds\":8,\"ptt\":true,\"mediaKey\":\"TjQtW3w5sYPrsSUNsScTm8X4jAk25PXw8UarLGthKao=\",\"fileEncSha256\":\"keAr1he4It7AdnwATmNjWvOOHVU5GE\\/b1rr4VQBM6xk=\",\"directPath\":\"\\/v\\/t62.7117-24\\/19433220_897234256234851_6835574322676019052_n.enc?ccb=11-4&oh=01_Q5Aa3wHI9ftMVwPwNz8ujWvZ4lWuj1cCKJhsI5yMimqF1Q_6tg&oe=69BC5348&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365506\",\"waveform\":\"ABMjYBljWklFSVJDRxdgRTljRloVVzpETVE9S1hZTlxST0pVN05ZUlguSFVZBQkACEpISVdfTDFWLlsJPFE+AA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365515,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:36'),
(23323, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.538Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:37'),
(23324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:37'),
(23325, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:37'),
(23326, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:37'),
(23327, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:38'),
(23328, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A500825A49912F7D659E08CBD8A9BB7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365517814,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:37.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:38'),
(23329, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC8879DE5186DC1A4EC9995F2A1760BC\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Da certo ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3zWaNxOZZtJNOmP7oU0FLvIdd30eau1dZkJ8huzPmWA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365516,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.349Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:38'),
(23330, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A500825A49912F7D659E08CBD8A9BB7F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637977577_1184648943468784_8883606721255362156_n.enc?ccb=11-4&oh=01_Q5Aa3wE_FEYRuRkRe604RiVFN36tHFAds2KN_Tc0GRsaj-0jag&oe=69BC60E6&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"pkWDS9hRhzlsdPTlX8QVPshJP18kIm7G3LQ3VDfzps8=\",\"fileLength\":\"4655\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"OymptRDTLYkxAO5GAPHZ6Rkn0VGIMwEJxd2m8oKPOOc=\",\"fileEncSha256\":\"FqDHXiAr6gCflrY54xv3NiLI9BxV8ALVnOWdNha7xQ0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637977577_1184648943468784_8883606721255362156_n.enc?ccb=11-4&oh=01_Q5Aa3wE_FEYRuRkRe604RiVFN36tHFAds2KN_Tc0GRsaj-0jag&oe=69BC60E6&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365516\",\"waveform\":\"AAgSHycrFh5OXWJgTCdDX1xNNklZX19cOCxHUFRYW19dWmBjY15VQUddX1AgMVtYTztEVFRTTz4zSVJSVFZWVw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365516,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:36.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:40'),
(23331, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:37.274Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:40'),
(23332, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:40.712Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:40'),
(23333, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A55A51DF05CECC92353B027605408FB6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365520950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:40.950Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:41'),
(23334, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:41.083Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:58:41'),
(23335, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A55A51DF05CECC92353B027605408FB6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365520,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:58:40.713Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:58:41'),
(23336, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A55A51DF05CECC92353B027605408FB6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365550178,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:10.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:10'),
(23337, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:11.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:12'),
(23338, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC020A0F434126D01ADBD78A7B938C54\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/594014508_931525406061296_1323965216583013898_n.enc?ccb=11-4&oh=01_Q5Aa3wGT7MtCUI6vK-05FI_cN4xu0UmMTBMswLCXZqIiVpfavw&oe=69BC6969&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/pdf\",\"fileSha256\":\"eMS5FSwMzEqwbOLzIBWZhn\\/t04EmDTwwQ8SgIeba1L0=\",\"fileLength\":\"85147\",\"pageCount\":1,\"mediaKey\":\"5A147CB+Zpn\\/4bUAGj2sXyLG5WfHLS5ra0t9EcqqPY4=\",\"fileName\":\"comprovante_picpay_PIX_17022026185904.pdf\",\"fileEncSha256\":\"qwR695WZK50znCNuhJv7hXjBEwlmljHqT+8WxhlnJzc=\",\"directPath\":\"\\/v\\/t62.7119-24\\/594014508_931525406061296_1323965216583013898_n.enc?ccb=11-4&oh=01_Q5Aa3wGT7MtCUI6vK-05FI_cN4xu0UmMTBMswLCXZqIiVpfavw&oe=69BC6969&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365551\",\"thumbnailDirectPath\":\"\\/v\\/t62.36145-24\\/637968238_1852977362082541_8760415222080144377_n.enc?ccb=11-4&oh=01_Q5Aa3wEiYdbmTgORCuekAULx009mnqJ_hUzP00z7RYEeUjg5bg&oe=69BC6C02&_nc_sid=5e03e0\",\"thumbnailSha256\":\"EWqZZRjGTom1P0jBld\\/8z2dJqArYHJpypcIDLKG\\/oMU=\",\"thumbnailEncSha256\":\"zxbVfoqbHMgnc3xKZy19EL3SFiVgRqRop4QCEqnGWg4=\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABERERESERMVFRMaHBkcGiYjICAjJjoqLSotKjpYN0A3N0A3WE5fTUhNX06MbmJiboyiiIGIosWwsMX46\\/j\\/\\/\\/8BERERERIRExUVExocGRwaJiMgICMmOiotKi0qOlg3QDc3QDdYTl9NSE1fToxuYmJujKKIgYiixbCwxfjr+P\\/\\/\\/\\/\\/CABEIAGAARAMBIgACEQEDEQH\\/xAAtAAEBAAMBAQAAAAAAAAAAAAAAAQIDBAUGAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA+6XnTpa9igAAROE9Bw9wAAAxvmHpZc3SAAATDZCpQAACKJQAAAxtiCrq2aMDqTIA\\/8QAMRAAAgECAgcGBQUAAAAAAAAAAQIDABEEEhMgISIxU5EQFDBxkuEjQUJhoTJAQ1Ji\\/9oACAEBAAE\\/AHcqLhSfsKXE3YAxsL8NngSq2XdJB+1ZcQb3kk9IqOLESXvPIvmBrziUx\\/C\\/VUZxisqmNMuY3a+23gYsOkN0F2uKXFY5VtYWHDZ70uJx9yAlx8gAKhMhjUyCzHiNaUKQAxA2jjXcv9j0ihFkI2\\/jXxiO0VkNmvWhxPOb8iosJjkYPp08jfXly5d5bio544huxmg62G8KzL\\/YUCDwOq6BxY1oouWvStHGPoXpWhi5adBSqqiygDVkTOtq7ieYvpqPDohubE+Vv2E0ujUEC4uBQaP5yDrWaPmDrQKngwPkaMqKxUk0GjP8g60Gi5i9aBU8GvbsZcwtejABbeNGAD6jQAFSRSF2sp6e9aKUNfKenvUSSM28FCjjdasOz\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQIBAT8Ad\\/\\/EABcRAQADAAAAAAAAAAAAAAAAABEBMUD\\/2gAIAQMBAT8AJb3f\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"thumbnailHeight\":480,\"thumbnailWidth\":339},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"alh\\/CFwlif\\/U7MCRg74yiRR9VRhOucClBSLVDmpnVCk=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"documentMessage\",\"messageTimestamp\":1771365551,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:11.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:12'),
(23339, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:12.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:13'),
(23340, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:12.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:13'),
(23341, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:13.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:13'),
(23342, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5C25094818DD01C684D3277D02FACA7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365554067,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:14.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:14'),
(23343, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A500825A49912F7D659E08CBD8A9BB7F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365554073,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:14.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:14'),
(23344, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC555A13C9B1E06CB9685EDF34C130AF\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"AE mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HUmPmYTM\\/D33WZQ8W8XjtJdfNgRrhA2M1vuGmDJL7F0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365554,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:14.473Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:15'),
(23345, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:14.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:15'),
(23346, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:14.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:16'),
(23347, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:14.472Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:16'),
(23348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A5C25094818DD01C684D3277D02FACA7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365570171,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:30.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:30'),
(23349, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A500825A49912F7D659E08CBD8A9BB7F\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365579299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:39.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:39'),
(23350, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"presences\":{\"51724425375774@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:44.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:45'),
(23351, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:45.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:45'),
(23352, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A961AD079EB3E9AD112\"},\"pushName\":\"Charlla Segato\",\"message\":{\"conversation\":\"Vamos\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Zq6mOULwXM\\/PZEL6S7zZ9+fF59HF5dbqt4meLK1DqRw=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771365585,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:45.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 18:59:45'),
(23353, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:46.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:46'),
(23354, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T18:59:45.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 18:59:46'),
(23355, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:43.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:43'),
(23356, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:43.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:44'),
(23357, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:46.363Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:46'),
(23358, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:48.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:48'),
(23359, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:49.059Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:49'),
(23360, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:49.860Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:50'),
(23361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACBA20C128A7659D2BF84A7DC7CED455\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Obaa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"be27tc7Pbuu\\/g7BFdmjxvM4YGn02D+aGKHygwcOc9H8=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365649,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:49.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:00:50'),
(23362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:50.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:51'),
(23363, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:50.243Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:51'),
(23364, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:50.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:51'),
(23365, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:51.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:52'),
(23366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:51.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:52'),
(23367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:50.246Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:00:53'),
(23368, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC43A8C55CB4D9F7FDC48850186B1A8D\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0GsJLXcAQW2n57a3BmA3SDd\\/I+ABWgB7n2kWdXGRJ1k=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365650,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:00:50.830Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:00:53'),
(23369, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055429EDFB94F57B17F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra você!\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771365680,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:01:20.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:01:21'),
(23370, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB055429EDFB94F57B17F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365682347,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:01:22.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:01:22'),
(23371, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"3EB0821707694D55B90F5A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365731549,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:11.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:12'),
(23372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:12.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:12'),
(23373, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:12.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:13'),
(23374, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"3EB0821707694D55B90F5A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"guenta ae\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365732,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:12.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:13'),
(23375, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F55CD2846C658A44F3FAB6D8C4DF45\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365732674,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:12.675Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:14'),
(23376, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"3EB0CA4E03B89B58D9F0E8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365732678,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:12.678Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:14'),
(23377, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5F55CD2846C658A44F3FAB6D8C4DF45\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365733489,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:13.490Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:14'),
(23378, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5497D94DA7CBB2F6B5C225EF23AFAA1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365739523,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:19.523Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:19'),
(23379, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"3EB031FFB5D870E080F57B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"no controe\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365739,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:19.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:19'),
(23380, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:20.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:20'),
(23381, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:19.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:20'),
(23382, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:21.169Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:21'),
(23383, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"3EB0539A911D9D1FBEAC65\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vai em configuraçoes\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365741,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:21.170Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:21'),
(23384, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"3EB0821707694D55B90F5A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365742277,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:22.277Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:22'),
(23385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:21.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:22'),
(23386, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB031FFB5D870E080F57B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365741339,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:21.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:22'),
(23387, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0539A911D9D1FBEAC65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365742964,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:22.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:23'),
(23388, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:25.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:25'),
(23389, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"3EB08ABAF9A616D8E932C6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"se vc tiver por wifi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365745,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:25.554Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:25');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23390, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:25.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:26'),
(23391, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB08ABAF9A616D8E932C6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365746545,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:26.545Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:26'),
(23392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:25.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:27'),
(23393, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:27.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:27'),
(23394, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC759519C8AF0C786FACE7E0CF179E2C\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Guenta lá kkkkk\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mpVZiklzoaMZkznZaskI89AySHkW7Yvmrpm+VQwEfiw=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365747,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:27.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:27'),
(23395, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:27.621Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:28'),
(23396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:27.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:28'),
(23397, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:28.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:28'),
(23398, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:29.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:29'),
(23399, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0056DCD43350E97F8B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365749668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:29.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:29'),
(23400, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"3EB0056DCD43350E97F8B0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"vai em wifi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365748,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:28.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:30'),
(23401, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:31.457Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:31'),
(23402, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:34.111Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:34'),
(23403, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:34.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:34'),
(23404, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:34.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:35'),
(23405, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC78773BDF48E99AE8EAD99EEEE334F1\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vai ter que pagar?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"RkcYX8JJJfPzR4iadQ0okze+E0UtzLKi65DXu7Q7G0U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771365754,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:34.990Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:35'),
(23406, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:35.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:36'),
(23407, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:36.662Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:37'),
(23408, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0F17B61B10572FEA330\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365755766,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:35.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:37'),
(23409, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"3EB0F17B61B10572FEA330\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"depois configuraçoes avançadas do wifi\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365754,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:34.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:37'),
(23410, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:34.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:37'),
(23411, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:35.195Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:37'),
(23412, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:38.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:38'),
(23413, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"3EB0C6CB7C09ACC82E84E9\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"e me envia foto\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365758,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:38.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:38'),
(23414, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:35.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:39'),
(23415, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:39.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:39'),
(23416, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0C6CB7C09ACC82E84E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365759693,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:39.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:39'),
(23417, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:41.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:41'),
(23418, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC7D3530860E77E37D8ABE6D25FFFC9A\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Se for ter q pagar não quero\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UY3Bh5vtRGWLpIj66zXfYvQhfKPo0uiwsWVVIjRBVfI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771365761,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:41.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:02:41'),
(23419, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:41.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:42'),
(23420, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:02:42.049Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:02:42'),
(23421, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5C4C3AB5A21F34EA4CEA4E3F667DFC0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365821306,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:41.306Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:41'),
(23422, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:43.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:03:43'),
(23423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A5C4C3AB5A21F34EA4CEA4E3F667DFC0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/590419542_2321831371661234_1033289147145217077_n.enc?ccb=11-4&oh=01_Q5Aa3wHAq-cXaeu-DbbI1aIdhomvs8x7OGhtIWk83y3uhaQn6Q&oe=69BC418E&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"zmdotAHPzfP0VfKS\\/UUIL3DsEvluiVyJdz\\/2TISNPWA=\",\"fileEncSha256\":\"e1GIELwMX4CPUOYw8msUEaRkkogfJEpaow4AdlvWFzQ=\",\"mediaKey\":\"tev0JtPxVyw7siMXRMm56EIakIzKoVOinQdD651pOiE=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/590419542_2321831371661234_1033289147145217077_n.enc?ccb=11-4&oh=01_Q5Aa3wHAq-cXaeu-DbbI1aIdhomvs8x7OGhtIWk83y3uhaQn6Q&oe=69BC418E&_nc_sid=5e03e0\",\"fileLength\":\"52328\",\"mediaKeyTimestamp\":\"1757173234822\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771365819651\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771365822,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:43.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:43'),
(23424, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:43.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:03:44'),
(23425, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5C4C3AB5A21F34EA4CEA4E3F667DFC0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824455,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:44'),
(23426, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0C6CB7C09ACC82E84E9\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824725,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.726Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:45'),
(23427, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB08ABAF9A616D8E932C6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824703,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:45'),
(23428, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0056DCD43350E97F8B0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824709,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.709Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:46'),
(23429, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB031FFB5D870E080F57B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824692,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.693Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:46'),
(23430, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0539A911D9D1FBEAC65\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824697,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:46'),
(23431, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:46.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:03:47'),
(23432, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5DC7EC0AB6CBD05D3D25F7A488D003A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365827100,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:47.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:47'),
(23433, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:47.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:03:47'),
(23434, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5DC7EC0AB6CBD05D3D25F7A488D003A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365827950,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:47.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:48'),
(23435, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A5DC7EC0AB6CBD05D3D25F7A488D003A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/587355531_930414932744766_8812684160250057851_n.enc?ccb=11-4&oh=01_Q5Aa3wE-w9AhGGqArZ4G94FZbPAra8deSpn1ku0fOCmH7Pn43g&oe=69BC4E71&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Myavkm\\/GJ3ANe\\/yY7Hdp2KdllF\\/8m9L9uXhrQapTBO8=\",\"fileLength\":\"11842\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"QjI\\/D7AixIoqpzXIMal0l1+yC\\/7fiTFl3uN9iMPWNfk=\",\"fileEncSha256\":\"Z6DXuk\\/SuBVy9tQGjFuzMbfhsLmy9pVjum6tBv+jgTM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/587355531_930414932744766_8812684160250057851_n.enc?ccb=11-4&oh=01_Q5Aa3wE-w9AhGGqArZ4G94FZbPAra8deSpn1ku0fOCmH7Pn43g&oe=69BC4E71&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365822\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAdRXkdcYGFOHQAAABQ1VkdeVFRbNyg2UE5BSUwpCCAxYzRDRyoxKiMjHQtIW1ljWlFFPVRWYF1FSjkqRCktOw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365826,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:46.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:48'),
(23436, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"3EB0F17B61B10572FEA330\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365824716,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:03:44.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:03:48'),
(23437, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:19.057Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:19'),
(23438, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:19.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:20'),
(23439, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACD077007FF4D010890B7249E69E2A48\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ei mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HvpVEiBpHpTlAB+pDXrqv2C8KM6WnXYfbfcIB2VpgTA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365859,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:19.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:20'),
(23440, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:20.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:20'),
(23441, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:20.156Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:21'),
(23442, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:20.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:21'),
(23443, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"3EB03E729757841E540B43\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"se voce for renovar eu ate pago kara so quero resolver o b.o\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771365863,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:23.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:23'),
(23444, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:23.442Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:23'),
(23445, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:23.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:24'),
(23446, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"3EB03E729757841E540B43\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365863638,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:23.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:24'),
(23447, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC98E0CA5F84AD1A0DA09F9F11553DDB\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tava querendo botar em outro celular aqui\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"YWGb9hm1ZTJlYPS9u8nemwMKpx5EycO\\/VEkw1R3kEZw=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365866,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:26.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:26'),
(23448, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:26.589Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:26'),
(23449, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:26.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:27'),
(23450, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:27.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:27'),
(23451, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:27.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:27'),
(23452, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:29.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:29'),
(23453, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:30.639Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:30'),
(23454, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:33.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:33'),
(23455, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC7BB4B01F3E97451912F888A8766712\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Né no meu não\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"wqVFiXNAM8RU\\/DJSKCEYHaRxtEE8aY0SRMKNQk3WhC0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365872,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:33.013Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:33'),
(23456, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:33.475Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:33'),
(23457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:33.255Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:33'),
(23458, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:33.650Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:33'),
(23459, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:36.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:36'),
(23460, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"3EB00113D5414205ADCEA8\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"hmm\",\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"CHAT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365877,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:38.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:38'),
(23461, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:38.021Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:38'),
(23462, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:38.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:39'),
(23463, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:38.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:39'),
(23464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"3EB00113D5414205ADCEA8\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365878295,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:38.296Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:40'),
(23465, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:40.519Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:40');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23466, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:38.282Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:40'),
(23467, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"3EB03E729757841E540B43\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365884092,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:44.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:44'),
(23468, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACB25261BCED83A967541B045173F807\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Queria o link do app\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"C9royWoW4Uk3NHZGk3tdnSXONOmrt\\/6UrJ3a8jcx2tM=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365884,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:44.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:44'),
(23469, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:44.378Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:45'),
(23470, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:44.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:45'),
(23471, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:44.604Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:45'),
(23472, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:44.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:47'),
(23473, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:47.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:48'),
(23474, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACA0CE0D56825C56C7DA7406E62BDDF7\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Pra eu baixar aqui\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mm6ktGTPVYl\\/WvAMt45+iILACwqJfhce1XQaQdmssYs=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771365887,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:47.794Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:04:48'),
(23475, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:48.016Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:48'),
(23476, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:48.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:04:48'),
(23477, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:04:59.889Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:00'),
(23478, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:01.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:01'),
(23479, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A9319DF3E8CEDC019AC\"},\"pushName\":\"Charlla Segato\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/587361168_4279954272222899_6197861297669246080_n.enc?ccb=11-4&oh=01_Q5Aa3wHmjAsqyhP58zBQnXKcx9EIY65c9BDGhFqnjcQoREnlHg&oe=69BC6F41&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"jEFU2bfz6MQqLASmmHOgXZLtEdYcOXuvyivWj8XjN9g=\",\"fileLength\":\"113418\",\"height\":900,\"width\":1600,\"mediaKey\":\"pO\\/znQ0ZIheX1\\/mOe\\/UjiFnLSCe6Sb4YlC90HzxOtD4=\",\"fileEncSha256\":\"h6PR8wGDS4YLpb\\/8jOgdQB2naLvOpoM8WT5ca6bic\\/o=\",\"directPath\":\"\\/v\\/t62.7118-24\\/587361168_4279954272222899_6197861297669246080_n.enc?ccb=11-4&oh=01_Q5Aa3wHmjAsqyhP58zBQnXKcx9EIY65c9BDGhFqnjcQoREnlHg&oe=69BC6F41&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365899\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAIDBAUBBv\\/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAAx54CpRZbEd5ivy2xRLpFol6QRXIbMve85fl1OYjLsmMRqOndZ7FJGYdqlbXkKKSEQWymF3lR6H3YowuMtKMRWAzQCgAOAAEf\\/8QAFhEBAQEAAAAAAAAAAAAAAAAAASAw\\/9oACAECAQE\\/ALZdf\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQMBAT8AT\\/\\/EADAQAAEDAgMECAcBAAAAAAAAAAEAAhEDBBIhURMVMUEFEBRSYXGRoSAiIzI0QoEz\\/9oACAEBAAE\\/AAMTgNULGo7NhBbrKdZ1mn7ZGoQt6o\\/Q5IMPNpQpNPFq7PTP6o2lM6hGyYeBKLXd0+ixVBzcELisGhuMwE28rZfOm3VSSTBnwTbk82NK2wJBLAtsyT9MZpz2kCGwsLe6PRbJh4sb6Ls9En\\/MK5tqLaDnBgBAVm1jq7G1D8pOa7B0eRlUA\\/qPRlmRlV91umgftre63OzlWC2fOclsyPJBhlXgi3ePBUzDgUwVInC0g+Kc8tcRJ9VtiBk50+aFw8cajh\\/VnMyhHHEgTORV5+NUPgm5kBChXyh0o0H5kublxzWJF3WFefiv8kOIRpXDGYg8RGqLiTJKJRK3ncahbzuNQt53GoVS\\/r1WFhiCtm\\/uO9F9aODo8uo\\/Db1G067HuEtaZIW\\/bKMqHsq3Tls+m5jaABIiYRiSUY1WWoW0dqsbtVjdqsR1WI6rEdViOqk6qV\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"i5wD03QXGMkxeg==\",\"firstScanLength\":8650,\"scansSidecar\":\"i5wD03QXGMkxejD7PksfChkc6PZBdwo9KtHXXXnrm1uLiUNmn0A5cg==\",\"scanLengths\":[8650,25942,12541,66283],\"midQualityFileSha256\":\"hP6NuS+ROiyAzh1hJI3of18gX70o5rq3uxEKwtSLh9Y=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"e1KzjB9BrEgwRP7JBpA\\/WbvJ0HfWfTSE+WpY\\/VbvRik=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771365901,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:01.721Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:01'),
(23480, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:01.912Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:02'),
(23481, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:02.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:02'),
(23482, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:07.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:07'),
(23483, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC16D8E14FBE60D9DE5A6FA8C7C62F8E\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Se for bom app ctz vou renovar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"y7KTmereDMUdtaG5VGReUhOjAybdQwl8SfWdjtoWjBE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771365907,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:07.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:07'),
(23484, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:07.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:08'),
(23485, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:07.716Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:08'),
(23486, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:12.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:13'),
(23487, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3AA9EE182BA0C3484584\"},\"pushName\":\"Charlla Segato\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/11697809_928374809667653_1558873837465408729_n.enc?ccb=11-4&oh=01_Q5Aa3wF7XEirhLmHDkW7Zur6rLm8qikRYGU5RxtOZu4_zItqgA&oe=69BC5869&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"IHnW5iDY+jPiBPFss1ypEN7noR9gQU1OGITZyc0slK4=\",\"fileLength\":\"104310\",\"height\":900,\"width\":1600,\"mediaKey\":\"KNNmIySc3km1w79dOWhv5s8wU2yv5vcHK4K\\/4tt4Cv8=\",\"fileEncSha256\":\"qONoUDEYIfHkuI1laLP7Eu0Yvg4mfLGumw9Tk\\/w89tE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/11697809_928374809667653_1558873837465408729_n.enc?ccb=11-4&oh=01_Q5Aa3wF7XEirhLmHDkW7Zur6rLm8qikRYGU5RxtOZu4_zItqgA&oe=69BC5869&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365910\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAEDBAUCBv\\/EABUBAQEAAAAAAAAAAAAAAAAAAAAB\\/9oADAMBAAIQAxAAAADM5mFrqwrIXYLIXMjkkIvqfopVNHGPQrIgXeeAGoZwmy6bqbE0c0tRdVzpcokIgHXJbu55YN7JrhOVyycgI5AlGAgAAAA\\/\\/8QAGBEBAAMBAAAAAAAAAAAAAAAAEQAQIAH\\/2gAIAQIBAT8Ay0Qxy2mMdf\\/EABQRAQAAAAAAAAAAAAAAAAAAAED\\/2gAIAQMBAT8AT\\/\\/EADIQAAEDAgMFBQcFAAAAAAAAAAEAAgMEERIhUQUTFDFhFUFSkaEQIjBCU3GBMjM0Q2L\\/2gAIAQEAAT8AMAIuGJ1Pbmwj8IwnwHyW6\\/yfJCInLCfJCE+EoQHwFCEXzatyzwhNmewWaUauW1iQfwuMltzHkm1UoOVszfkhVyjuF\\/shUy3Jyz6ITS2AvyQuTdZrdx+ALcRH5AqqCNtO5wYAVsx8bKkGVmNtuS4vZ4FzTei4\\/Zv0PRcfs76HohtHZ4\\/p9FtCrpp4gIWYSDmbIMZYZoMbi5quAFM+yiOF4N7dVJIzD7shJ0W8dqsZ1WJNcN27PNAdFZV38R\\/2UZAeC4XHenS0\\/wAsakla4WbGG9Qrq6B91y7Tp+q7Tg6qp2hDLA5jb3KjcGPDiLgdymnZJHYRhpvzV1dXV\\/bTbs1DBL+i+aw7EHeto9mcOeF\\/curq\\/t3jtVvHarG7VYzqsZ1WN2qxu1WN2qxu1+F\\/\\/\\/4AAwD\\/2Q==\",\"contextInfo\":[],\"firstScanSidecar\":\"ZnCbiWYNrK1x8A==\",\"firstScanLength\":8043,\"scansSidecar\":\"ZnCbiWYNrK1x8JROZx+gHONf+ngAwxMgxi3rvp7yccEN4OLtejNJpQ==\",\"scanLengths\":[8043,23559,10774,61932],\"midQualityFileSha256\":\"G6BN9ue2WSGcnvkQoMJdpmEKTdEH5d9A0POvM5\\/uvtc=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"q2pugeySK0aPN0G3\\/7lbtSF2Jjw7q63hEx5QiT+RwVw=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771365912,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:12.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:13'),
(23488, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"pushName\":\"Charlla Segato\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:13.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:14'),
(23489, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:13.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:14'),
(23490, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A9319DF3E8CEDC019AC\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:18.958Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:19'),
(23491, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:19.144Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:19'),
(23492, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:27.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:28'),
(23493, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A510AFC9630E998D22A3C40C0EF8E1EC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"documentMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7119-24\\/596809891_3796088620694695_8228429684080665126_n.enc?ccb=11-4&oh=01_Q5Aa3wHmf5L5VB4AXdCVZB6qHBrUl86I2IMh-WLjXXl-p9nDLw&oe=69BC545F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"application\\/vnd.android.package-archive\",\"fileSha256\":\"lv4+IDY0\\/Gwj75I7Gfvzp3rAbaAdVkMPxAnptGZyRd8=\",\"fileLength\":\"27075826\",\"pageCount\":0,\"mediaKey\":\"DYIdm+zQvJE9FpicW5eTULzBpiVTxxn+82EPVV1LWcw=\",\"fileName\":\"VOID IBO PRO 7_3.8.apk\",\"fileEncSha256\":\"togL3G2ZLOZKZgAdERBAgNfMrpQ5VEnF2\\/PrUKS4qug=\",\"directPath\":\"\\/v\\/t62.7119-24\\/596809891_3796088620694695_8228429684080665126_n.enc?ccb=11-4&oh=01_Q5Aa3wHmf5L5VB4AXdCVZB6qHBrUl86I2IMh-WLjXXl-p9nDLw&oe=69BC545F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365916\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"documentMessage\",\"messageTimestamp\":1771365927,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:27.762Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:28'),
(23494, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:28.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:28'),
(23495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A570EDA3D22B81A37B41F877013AE32B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596098922_1550554472913829_5555947047178328811_n.enc?ccb=11-4&oh=01_Q5Aa3wFcrnGOtHNyzyeYkgH8AKmLAsB1Ye4v4SZlbsUdopmCcA&oe=69BC71BA&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"aS214VePWgZPIPfnCaKiEK2AvUmDtU3XPPXrcA0Zn3o=\",\"fileLength\":\"7163\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"NaabUHHF8qC7G0upP0oL+P\\/vfGUGvPGaQM7IN5LDqIo=\",\"fileEncSha256\":\"M4qIq2\\/Rw\\/hc6JooOmCb\\/SAq4HYFpbCIHPuwLvegrQ8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596098922_1550554472913829_5555947047178328811_n.enc?ccb=11-4&oh=01_Q5Aa3wFcrnGOtHNyzyeYkgH8AKmLAsB1Ye4v4SZlbsUdopmCcA&oe=69BC71BA&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365919\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AABPYV5YV1lIMD4+QS1aXEQrLj1EQTo0TldKYGFAO0FHTlBFO1dXVigjRVlcU0U7PkNKSVNSQkZQVU86LEVRTw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365927,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:28.043Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:29'),
(23496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:28.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:29'),
(23497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:28.360Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:05:30'),
(23498, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A570EDA3D22B81A37B41F877013AE32B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365928447,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:28.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:30'),
(23499, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A510AFC9630E998D22A3C40C0EF8E1EC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365928375,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:28.375Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:31'),
(23500, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A570EDA3D22B81A37B41F877013AE32B\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365936199,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:05:36.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:05:36'),
(23501, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A518BA30BE1FE80E425B7F3F4E7D7B3C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637988836_25998441363130097_1290887528940149826_n.enc?ccb=11-4&oh=01_Q5Aa3wEJESiaHI3byPm7hpTD25dLdJuHwoHO57uz1uYAMoqyEQ&oe=69BC64FF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"b2nDheGpFXSf49h1dy48yQWB0KfJkwNcMVH85M9\\/YEI=\",\"fileLength\":\"24658\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"59J1GX+Zy52RdoplEc5qUy2C0UtHcKEA5PXhi3ySouE=\",\"fileEncSha256\":\"Xc4kY7Pz4tTKU6AeNuUGK419pQbndqGns5TvbKZN8d8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637988836_25998441363130097_1290887528940149826_n.enc?ccb=11-4&oh=01_Q5Aa3wEJESiaHI3byPm7hpTD25dLdJuHwoHO57uz1uYAMoqyEQ&oe=69BC64FF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365956\",\"waveform\":\"AAAAEABJYFJgK2JCTlFPMyFNOSYWXzMvJjgyUAkMAThdR1laX0RJFyssFFBLUVI5TR04UVVQBwwMJDxOVVpSSg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365965,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:05.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:05'),
(23502, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:05.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:06'),
(23503, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A518BA30BE1FE80E425B7F3F4E7D7B3C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365965851,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:05.852Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:06'),
(23504, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:05.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:06'),
(23505, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A518BA30BE1FE80E425B7F3F4E7D7B3C\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365968651,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:08.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:08'),
(23506, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:09.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:09'),
(23507, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5FB210B8830AD838BC0EE479843D35A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637953528_897349582942256_8563068441768072741_n.enc?ccb=11-4&oh=01_Q5Aa3wF81c0yk2oLYtg0FZImbJ7BICrGnyXIGbp3sxWHMb-D-g&oe=69BC5A2B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"WcLtLezLNqhllTgxqPgwHf134lO1CumlMqW+Uz1kf1I=\",\"fileLength\":\"6240\",\"seconds\":2,\"ptt\":true,\"mediaKey\":\"WtfnB\\/FLqrtQYPSPj1N+xzClUKvV+Wq\\/vS9RPHY+qpk=\",\"fileEncSha256\":\"3Lq0ZMsZ0jZwS5QPkkSwRooyHKhVQeGSnFiMRopYyIs=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637953528_897349582942256_8563068441768072741_n.enc?ccb=11-4&oh=01_Q5Aa3wF81c0yk2oLYtg0FZImbJ7BICrGnyXIGbp3sxWHMb-D-g&oe=69BC5A2B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365967\",\"waveform\":\"AAoKCg8aFTlUSh5NX2FcTFJVVVNQQ0lSUkwzO01SUk1KRUBVW1tKJzxIR0RLS0M8O0RINRgMN0ZIPztZWVU4FA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365969,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:09.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:09'),
(23508, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:09.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:10'),
(23509, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FB210B8830AD838BC0EE479843D35A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365969616,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:09.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:10'),
(23510, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5FB210B8830AD838BC0EE479843D35A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365980060,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:20.060Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:20'),
(23511, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:23.369Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:23'),
(23512, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A586EEE9CB1180C7FD3512AE52311D45\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/588578386_26537086082576676_8757731504384890296_n.enc?ccb=11-4&oh=01_Q5Aa3wExBai0RxQvcEz3qW7P7tZC6M_jiGhx7Sb16zFcRC7FBg&oe=69BC6057&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"mQNhLf76yX+jsrdOWYYgA+XdwicQLhDfXqWRUgdQFGU=\",\"fileLength\":\"13816\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"AHuxuBoiGUtu27Y3MC821mzPazXd7pAOyTJp3699QCU=\",\"fileEncSha256\":\"N+5IfB\\/MYZnbWPfMuQuMxo0K1vKvpibuf40fBZ833ME=\",\"directPath\":\"\\/v\\/t62.7117-24\\/588578386_26537086082576676_8757731504384890296_n.enc?ccb=11-4&oh=01_Q5Aa3wExBai0RxQvcEz3qW7P7tZC6M_jiGhx7Sb16zFcRC7FBg&oe=69BC6057&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771365978\",\"waveform\":\"AA0uXV5dWzJYVlYoWUgmRj9CV0tTK1VUR0o\\/TjxLVTg6Q05XU0UsBQ8JAhkvXh1WKy9JWl5RYDYaSkoxJDZeGg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771365983,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:23.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:23'),
(23513, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:23.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:24'),
(23514, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A586EEE9CB1180C7FD3512AE52311D45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771365984317,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:24.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:24'),
(23515, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A586EEE9CB1180C7FD3512AE52311D45\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771365986877,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:26.877Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:27'),
(23516, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:27.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:27'),
(23517, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A586EEE9CB1180C7FD3512AE52311D45\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771365988790,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:28.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:28'),
(23518, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:29.871Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:30'),
(23519, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4752DC1384196D20824FEEE03079F2\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Vou baixar\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ErRsXCaWsnWsE1maeGXh049hARbfSWg\\/TMZqdtf+lkQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771365989,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:29.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:06:30'),
(23520, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:30.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:30'),
(23521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:06:30.251Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:06:31'),
(23522, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:33.006Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:33'),
(23523, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:33.204Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:33'),
(23524, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":false,\"id\":\"3A9375F3FB5A39F550B7\"},\"pushName\":\"Charlla Segato\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/596755908_886913937447902_5264000622779311260_n.enc?ccb=11-4&oh=01_Q5Aa3wH7bTxa3Ags_QMc88g1S5D7cx1QCzI-Uf9PRCynBesk1g&oe=69BC4A44&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+PlCRrpTTzXcsk6Bl2Ng2M7xiobHzPV\\/BZvKlMdgvS8=\",\"fileLength\":\"115653\",\"height\":900,\"width\":1600,\"mediaKey\":\"kcCaBdlN7\\/8crP6oi5tQXcUOYCxSfuiQiovUxEZn7LU=\",\"fileEncSha256\":\"ISt+\\/2urBFzn9ve+8DgK9j0oo5T+EdSIUVdi7+WjXBk=\",\"directPath\":\"\\/v\\/t62.7118-24\\/596755908_886913937447902_5264000622779311260_n.enc?ccb=11-4&oh=01_Q5Aa3wH7bTxa3Ags_QMc88g1S5D7cx1QCzI-Uf9PRCynBesk1g&oe=69BC4A44&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366049\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIAEgDASIAAhEBAxEB\\/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAECAwUEBv\\/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/aAAwDAQACEAMQAAAA88dsJeR9Ds5Tv5ikvdUHSJetVy49W9jkp9FpxyvdUl4dRFySw9zCqKdajjKyQg03kka+XXqLmrYzCmUXYxBzgZoANADAAD\\/\\/xAAYEQEBAQEBAAAAAAAAAAAAAAARABAgMP\\/aAAgBAgEBPwDSI5PRnP\\/EABYRAAMAAAAAAAAAAAAAAAAAABEgQP\\/aAAgBAwEBPwBTJ\\/\\/EACwQAAIBAwIFAgUFAAAAAAAAAAABAgMEERJRBRATIVIVUxYkMUFxIjIzYZH\\/2gAIAQEAAT8A0S8WaJbGmWw4v7I0vY0vY0vY0vY6cthjGinT6ktOUvyOzklnXHstzHcwJCQ6NTwY6FXwY6FXwZKMoSw00ylY3VaCnTpycX9xcJvPZZ6Ree0xcIvPaYuEXntPlkRfPNzIs+J3NG3UKajiPbuT47dw+ug+ILraJ8QXW0T1+62iRdPD\\/S\\/6Mxx+0k4tLCL5\\/MzKcW03r0kobzQ0k+zyIQk0dyKLxfMz\\/JCmpRzrw9ia0yxnPJGRcSpeLPU6Xiz1Wj4sr1OrVlPdixj64GlvyXLPLJa21nOhGVSaUn9e47Ph+P5V\\/peQp067jSeY78smTqyOrI6sjqyOrI6sjqyOq9jqvY\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"firstScanSidecar\":\"DKJUsdN1aqyglw==\",\"firstScanLength\":8082,\"scansSidecar\":\"DKJUsdN1aqygl\\/uwq3c2Js0VqN+Sevl\\/XARYOUPrjqNi4oGQ7nWE0w==\",\"scanLengths\":[8082,22747,16189,68633],\"midQualityFileSha256\":\"icvL6ESWmbGKGO3YOAv2Zg+hGcqjejk6yMgfIoXb6NI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"nDIuNKXf2vFxHQ==\",\"senderTimestamp\":\"1770990485\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"94tUZO8ZO\\/s5rse7U22W0ctMrbkb46uRW+Q+P\\/l955A=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771366052,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:33.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:07:34'),
(23525, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:33.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:34'),
(23526, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:41.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:42'),
(23527, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:42.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:42'),
(23528, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACBF4904FD9CC327BF1E22056CA21AF2\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Biaxei\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"XEq\\/ZWPRGevtOhwPqtExo6wu2dZ6pekU1uJ5hT+oR+c=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771366062,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:42.529Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:07:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23529, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:42.717Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:43'),
(23530, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:42.905Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:43'),
(23531, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:43.888Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:44'),
(23532, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC1C73271F2CF723438BE14AD916FCF7\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Baixei*\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bnfwRW+5NvS6San0TWy397sNt7qlP\\/IMRkM0OquD8E8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771366065,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:45.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:07:45'),
(23533, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:45.527Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:45'),
(23534, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:45.901Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:46'),
(23535, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:07:45.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:07:46'),
(23536, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:05.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:05'),
(23537, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC6E6EEDBB790B1B770C3961164B3C0F\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/34693981_1646026683306793_6380623535359365006_n.enc?ccb=11-4&oh=01_Q5Aa3wEaFdUDf4h5THnBVc2K6092hPNeWPdiltZ6useU4kvoXw&oe=69BC5BDE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"xDcouVzr708\\/kHyTpQpBlDYBbRNE7J7TWuzpOuJUbVg=\",\"fileLength\":\"95922\",\"height\":1600,\"width\":900,\"mediaKey\":\"qqsFQUB9V9MKogNq6pityLGVo8KHRzZzUJbUZ8\\/\\/d6Q=\",\"fileEncSha256\":\"wvF1PZl3G4tXo6nLWGCd37KDK6C0zrMhWrM9CcnCMhQ=\",\"directPath\":\"\\/v\\/t62.7118-24\\/34693981_1646026683306793_6380623535359365006_n.enc?ccb=11-4&oh=01_Q5Aa3wEaFdUDf4h5THnBVc2K6092hPNeWPdiltZ6useU4kvoXw&oe=69BC5BDE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366084\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABAIDBQEGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAKpJ8lell8NIzgrmtcLsJ+psxT0JGBNzluexdwqLgJrk0zCqQHQ\\/\\/8QAKRAAAgECAwcEAwAAAAAAAAAAAQIAAxEEEjETFCEyQVFSBRBhkRVCY\\/\\/aAAgBAQABPwDYLe\\/WCmVPNMg7QiWm\\/wD84ceeiQ4+p4ib9VPQTfavYRaqquVRrGY0zZwOIj5P1mEQMxuLx7KxGWUgC3HQStkK8Cbj2wFOiuERmUXMGEzjMMsTAVpuVd+efjsT0AgOPoIEFrCDF+oqLCWXtLBoaK+RgoL1ZvubGn8\\/c119vkw1VHzNq3jNsoNhxMzudABLE8zQADQS8\\/\\/EABkRAQEAAwEAAAAAAAAAAAAAABEAECAhYf\\/aAAgBAgEBPwAiJ7l82\\/\\/EABgRAQADAQAAAAAAAAAAAAAAABEAECAh\\/9oACAEDAQE\\/AOU4IQx\\/\\/9k=\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"scansSidecar\":\"D0F7vupL7edJ1kLzI30BbpW1KJ+ZAFeqw4L5EsxOkyJU2g6mF6Fgsw==\",\"scanLengths\":[11453,34322,15624,34523],\"midQualityFileSha256\":\"4bw35UY9YF9+VVKqMk8454ZLOgmD12IYYWsij8QL4KM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FhwZbFJWIZvzkiX02rMocBVZPvRTJD8\\/78zpnqZeJu0=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771366085,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:05.619Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:08:06'),
(23538, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:06.000Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:06'),
(23539, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:07.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:07'),
(23540, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC74D06D3452B31D5C16DD0337DA53BD\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"AE mano\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"UmzL4CX90lwnSF\\/nGHu6Jw961\\/K2\\/Pjxbzp2pghkDfw=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366087,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:07.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:08:07'),
(23541, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:06.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:07'),
(23542, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:07.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:08'),
(23543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:07.338Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:08'),
(23544, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:05.812Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:08'),
(23545, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:37.640Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:37'),
(23546, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACFF77CF4318EF5C587D0CA4524FE618\"},\"pushName\":\"✓\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588876893_884123711079515_7100559439693536383_n.enc?ccb=11-4&oh=01_Q5Aa3wFQt3xuoR8l4w9K73nLqiYaku5MEMsGHscTSefScNNrsQ&oe=69BC4CDD&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"1Xd9NTyuDeCuOK2iayjkpzAZ0I0735wkBTK6vXOUu6E=\",\"fileLength\":\"120572\",\"height\":1335,\"width\":1028,\"mediaKey\":\"qtSZDrIrUGxlFCeYGLuipHbsELIEUeBP1S0ES9GPCvM=\",\"fileEncSha256\":\"j+8i1M99w4fDMP24x0F3E+4Q\\/PNLKWZQe9hPkmpTVBI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588876893_884123711079515_7100559439693536383_n.enc?ccb=11-4&oh=01_Q5Aa3wFQt3xuoR8l4w9K73nLqiYaku5MEMsGHscTSefScNNrsQ&oe=69BC4CDD&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366116\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgANwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAQQCAwUBAAMBAQAAAAAAAAAAAAAAAAABAgME\\/9oADAMBAAIQAxAAAACJouBCBBkGZE++Hz2jSpKUqonQGDKqVp9ALsbrnz77leUaOOrpbdJxFqo81ejzCQoIKgGkACwCMAD\\/AP\\/EACgQAAICAQIEBQUAAAAAAAAAAAABAhEDEkEEFDFRECAhIzIiMDNCUv\\/aAAgBAQABPwDxsssv7Opdxvy5fSDIQujlJVbRysmviyXDOOzJY5LdibujN8GY27ZLXV62LNmSpZGOfEb5GZMmSS+p3QvWRnXtswJSTGoKhqK\\/UlNdj201qpqhfklRNa8bIPPDoh58+8DmM38Dnl7Dyz3Ri6tsjFR6eFFIaQ4Rew4rzMZ\\/\\/8QAIREAAgIBAwUBAAAAAAAAAAAAAAECEQMTQUIEICEyUmL\\/2gAIAQIBAT8Aoooox43O\\/Jo\\/tGjLahqnR0\\/Iq9iVQSdE\\/ZkXKO5qT+mPJkfJ93\\/\\/xAAfEQADAAEDBQAAAAAAAAAAAAAAARESAhAgITFBUWH\\/2gAIAQMBAT8ApSlG4ZfGZraVojNSvkXZFMjp65f\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"zA9M8y7V+\\/W3FvFu3xZOtE6GmSYgTh9HNgUPom4fSr5s7g+bo+MeYQ==\",\"scanLengths\":[11743,51510,17155,40164],\"midQualityFileSha256\":\"dhFCZQgkrvFg68wnRfzE2cDXu528qpesMtrGgAGrVhg=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jdMNMgw9Nr\\/gs5pRCbfyyFimPdG4\\/QO2PLHZWvUtA2E=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771366117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:37.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:08:37'),
(23547, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:38.026Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:38'),
(23548, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:37.835Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:38'),
(23549, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:46.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:46'),
(23550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:46.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:46'),
(23551, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:47.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:47'),
(23552, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:46.943Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:08:47'),
(23553, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC3187F3DDC7AECEA3FE052538B54471\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"??\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rg1ebVjEkibO4H8eC7id1aMXBGDjaWqrlEM\\/7TT8mHo=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366126,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:08:46.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:08:47'),
(23554, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:09:00.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:09:01'),
(23555, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC12D626C9F07E1F2B5FD8474059A405\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Abrir site é ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5doQyvZBedhwG1eflPGuKi3G3zc9WhBhbeSDLjANf\\/s=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:09:06.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:09:06'),
(23556, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:09:06.496Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:09:06'),
(23557, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:09:06.689Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:09:07'),
(23558, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:09:06.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:09:08'),
(23559, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A5CDB5C5123F3C0A22CB932876D835F0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637818653_1411944043753155_6513756549571762340_n.enc?ccb=11-4&oh=01_Q5Aa3wG1_kNP9NCnL_3MZnGUkTZYTUivDaLEOUa_QQOQQzgSVg&oe=69BC7408&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"e7j2VzLOBL1nNY4swRIvzhSf9fLvCal81WsqkEvBfeE=\",\"fileLength\":\"4316\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"VCSGAlwS+mzRVAbR02cGeIwvYZTuEOcFYbYsuA9mdkE=\",\"fileEncSha256\":\"EwSg7yIvsoSW6mwzWhJlcwZlO0goR0GKmf0PicHj+\\/A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637818653_1411944043753155_6513756549571762340_n.enc?ccb=11-4&oh=01_Q5Aa3wG1_kNP9NCnL_3MZnGUkTZYTUivDaLEOUa_QQOQQzgSVg&oe=69BC7408&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366253\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAAABAUBAAAAAAMGChMhLjs\\/RU9WWVpZVE9RU1RUVEtBSVBQTkg5JjhNTktBMyEvR0RCPkBKTk5KRkZHSktLSw==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771366254,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:10:54.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:10:55'),
(23560, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:10:54.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:10:55'),
(23561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5CDB5C5123F3C0A22CB932876D835F0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366254917,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:10:54.917Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:10:55'),
(23562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5CDB5C5123F3C0A22CB932876D835F0\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366255953,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:10:55.953Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:10:56'),
(23563, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:10:55.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:10:56'),
(23564, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5CDB5C5123F3C0A22CB932876D835F0\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771366256780,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:10:56.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:10:56'),
(23565, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:11:01.003Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:11:01'),
(23566, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"ACA8EA24FBE6FB6A1D17509A8522EA65\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Blz\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HaY3xUJFQzCjvYngTBuXK2jUHkCj+X4KNIekWnFOOHM=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366261,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:11:01.983Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:11:02'),
(23567, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:11:02.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:11:03'),
(23568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:11:02.194Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:11:03'),
(23569, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:11:01.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:11:04'),
(23570, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"241274267389962@lid\",\"presences\":{\"241274267389962@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:12:00.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:12:01'),
(23571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"21981793632295@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:13:24.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:13:25'),
(23572, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"21981793632295@lid\",\"fromMe\":true,\"id\":\"A5C3F3C7D0D866A6CB7B9C0F0AA5BEDE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"http:\\/\\/dnsassist.online\\/get.php?username=737888428&password=073464587&type=m3u_plus&output=mpegts\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771366404,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:13:24.824Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:13:25'),
(23573, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"21981793632295@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/619212067_1461007825558893_7835483105916494792_n.jpg?ccb=11-4&oh=01_Q5Aa3wELH-8P-0oKmG0ERqlL4Pm9h-W9bw9Uc308n-JtOU_GZQ&oe=69A1F732&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:13:25.203Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:13:25'),
(23574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"21981793632295@lid\",\"id\":\"A5C3F3C7D0D866A6CB7B9C0F0AA5BEDE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366405571,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:13:25.571Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:13:26'),
(23575, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"51724425375774@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:01.873Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:02'),
(23576, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"51724425375774@lid\",\"fromMe\":true,\"id\":\"A56882728DDED2803CC27DD278034672\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/590948982_918721033893137_1861050632574380655_n.enc?ccb=11-4&oh=01_Q5Aa3wEF2Ihvbfp0JJ-vXMJfmJO1SGlfKmyR4P2FvK4uJ5aOkg&oe=69BC6A3E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"5FjQch8zLr4jDr\\/5qKPqWFfWfcwF3pTNP51QpHXQT9U=\",\"fileLength\":\"48442\",\"seconds\":21,\"ptt\":true,\"mediaKey\":\"EC6iLXZkb1aoIfpP1gTbxEkqMxeS1vnzygtsdX0OsnA=\",\"fileEncSha256\":\"vREtRY+er\\/w3xsfHfxXw2E\\/DoqKohL58D0born\\/q6uw=\",\"directPath\":\"\\/v\\/t62.7117-24\\/590948982_918721033893137_1861050632574380655_n.enc?ccb=11-4&oh=01_Q5Aa3wEF2Ihvbfp0JJ-vXMJfmJO1SGlfKmyR4P2FvK4uJ5aOkg&oe=69BC6A3E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366421\",\"waveform\":\"AEFaV09BWylCSmJeVFRaUlpIKU4\\/TD9YMwUIPURORCJOTA8JVFVbKFQ8HF9cJD9aSgUUWR1RU0k+DAAAAl5ZTg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771366441,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:01.874Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:02'),
(23577, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A56882728DDED2803CC27DD278034672\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366442965,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:02.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:03'),
(23578, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"51724425375774@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:02.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:03'),
(23579, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A56882728DDED2803CC27DD278034672\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366452413,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:12.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:12'),
(23580, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774@lid\",\"id\":\"A56882728DDED2803CC27DD278034672\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771366454068,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:14.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:14'),
(23581, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:23.218Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:23'),
(23582, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A5022ACC3EA74A63B0092EC2B7DE8A53\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Reinicia\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366463,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:23.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:23'),
(23583, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:23.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:24'),
(23584, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5022ACC3EA74A63B0092EC2B7DE8A53\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366463422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:23.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:24'),
(23585, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5022ACC3EA74A63B0092EC2B7DE8A53\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366467553,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:27.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:27'),
(23586, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:32.914Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:33'),
(23587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.309Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:33'),
(23588, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:34'),
(23589, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A56D8E13CEE026BAE0C656B86B9DC773\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366473531,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:34'),
(23590, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A56D8E13CEE026BAE0C656B86B9DC773\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"izaplay\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771366473,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:34'),
(23591, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:35.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:35'),
(23592, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACEEEDA2D2CE50CA1188EBEE33EBF48D\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"??\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uyYuplpZjKg62upM4aVlXr7SixpUBd1JgR8ZN0doQKs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771366473,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:35'),
(23593, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:35'),
(23594, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.587Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:36'),
(23595, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5A1FE779F236FF3ED907C1A548847B2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366476631,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:36.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:36');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23596, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC573F402E80B0657DFCDDE3A45A3FCB\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Como assim\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oUv8jWVPGf8LmV+w0Bz9wLcnPCT4d2pTQTxlWZfF6Rg=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366477,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:37.469Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:37'),
(23597, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:37.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:37'),
(23598, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:37.659Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:38'),
(23599, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5A1FE779F236FF3ED907C1A548847B2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771366477670,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:37.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:38'),
(23600, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:37.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:38'),
(23601, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:33.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:39'),
(23602, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"presences\":{\"215049113178302@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:42.455Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:42'),
(23603, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"presences\":{\"215049113178302@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:50.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:50'),
(23604, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:51'),
(23605, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"215049113178302@lid\",\"fromMe\":false,\"id\":\"3A1D52BBF586FE6ED26C\"},\"pushName\":\".\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637757356_1455895009442768_6105617064031063160_n.enc?ccb=11-4&oh=01_Q5Aa3wFkXoiEDXT0PmVwcFricCOf3xAMqnMB-fi3Ay5z1TkPaA&oe=69BC49A4&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"2Lcek9ESBixOuGKtHVngSsuHAtkdUayf8rC8mKvv5kQ=\",\"fileLength\":\"17709\",\"seconds\":7,\"ptt\":true,\"mediaKey\":\"uaN2f3fkkL+Np4eQ9We8xSnsc+Ggon2\\/+ajk3LTp2vM=\",\"fileEncSha256\":\"0ZsI041IN\\/dlEmB8d6l0Bg\\/yoWrNqBPoRCWIe98ZYZg=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637757356_1455895009442768_6105617064031063160_n.enc?ccb=11-4&oh=01_Q5Aa3wFkXoiEDXT0PmVwcFricCOf3xAMqnMB-fi3Ay5z1TkPaA&oe=69BC49A4&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366481\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"streamingSidecar\":\"SKURLVkkfai5Ig==\",\"waveform\":\"AAoRL2RkZGRgU2BkZGRkZGRkZGRkZGNcPUZkZGRkYl9jU05VX1JaVzkiFxEZPFtbWWRkXF1fUmBkZGRkZFE0IA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771363169\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"w4NOL5v5QJVobvZUJ4UIpKTiCYYOGJWXa4y205P21E8=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771366490,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:51'),
(23606, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A57647A4827EDF638ABE261F058BA79B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"*Usuário:* 3emc7cwe\\n*Senha:* q3bnqyqr\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771366491,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:14:52'),
(23608, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:52'),
(23609, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:53'),
(23610, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:53'),
(23611, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:14:51.872Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:14:54'),
(23612, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:03.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:03'),
(23613, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A5514C1171C1579767C6734ACFA3A9A7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637908356_1490902699323541_1774346598597205727_n.enc?ccb=11-4&oh=01_Q5Aa3wGJA4Bwugk5F_Xf0TqTVBqj0BlqSa9qb6qJgOQZ2yfagQ&oe=69BC4980&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"TDTZNOkAmvc7H\\/X7cy\\/yxAYAZMafBU4rdoo1eIMa8Ag=\",\"fileLength\":\"10742\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"47LTWjgli0OL7FBIXMrJXd8fZ3XrNDbRnBMsoRAmt1o=\",\"fileEncSha256\":\"L2N1oHILBMUJx\\/anP5Ok9DHdmcM0Xivq5NlJDookhOI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637908356_1490902699323541_1774346598597205727_n.enc?ccb=11-4&oh=01_Q5Aa3wGJA4Bwugk5F_Xf0TqTVBqj0BlqSa9qb6qJgOQZ2yfagQ&oe=69BC4980&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366500\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAkSIU9jW14mPUZbWTNLS11iT0s9QE1OMQcAAD5HSBJKQT1LTDUMQChTT1IrRiQ2U00kAlJVHV5UNEtITVFBSg==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771366503,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:03.393Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:03'),
(23614, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5514C1171C1579767C6734ACFA3A9A7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366503668,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:03.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:04'),
(23615, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:03.773Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:04'),
(23616, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A5514C1171C1579767C6734ACFA3A9A7\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771366505279,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:05.280Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:05'),
(23617, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"215049113178302@lid\",\"fromMe\":true,\"id\":\"A5B6A311CA220532D6CE3E3636D35704\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595564100_1574479191372988_602597402601092823_n.enc?ccb=11-4&oh=01_Q5Aa3wFjxRsMNDpE6IU79HSSgm6xqPrj2NLf-hlT2hz_dSNT4g&oe=69BC6FE9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"8kTdKVHSURx4u5InIDch3B+7Nx2+nhMGag8Bg5lbvYs=\",\"fileLength\":\"14106\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"hI4r\\/ipONMrmD3C50NDg8pXTYQLum327xbIks0HOwCU=\",\"fileEncSha256\":\"RVrn+Ko1nLI3mr\\/XwYSGVamIvK+FnSW2ncgfuGxbC3Q=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595564100_1574479191372988_602597402601092823_n.enc?ccb=11-4&oh=01_Q5Aa3wFjxRsMNDpE6IU79HSSgm6xqPrj2NLf-hlT2hz_dSNT4g&oe=69BC6FE9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366512\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"waveform\":\"AAdIYV9jXl9gYFANCAAAQCJZU1RTRi0uV1RWQERVXjhRTihNNiJNU10ZKlI3Nxo9TDY8JFdPHEoGQTAEAAcOBg==\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1771358301\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771366517,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:17.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:17'),
(23618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"215049113178302@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:17.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:17'),
(23619, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"215049113178302@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473413247_477181598776186_1641600091605029732_n.jpg?ccb=11-4&oh=01_Q5Aa3wHYeJfGqDD8rqR9qYrpSrKTvfi8bG4ChzU9Mg9qLSZZJA&oe=69A1E9A8&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:17.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:18'),
(23620, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5B6A311CA220532D6CE3E3636D35704\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366517757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:17.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:18'),
(23621, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5B6A311CA220532D6CE3E3636D35704\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366517750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:17.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:19'),
(23622, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:21.225Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:21'),
(23623, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC2D95D836044E397CC7206B8B000C47\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Ok\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eoeFtiGIWhIUhgMMdmV+gOkqrmprcI2EA5KxwzKFrXs=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366521,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:21.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:21'),
(23624, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:22.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:22'),
(23625, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:21.885Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:22'),
(23626, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:21.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:22'),
(23627, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:36.993Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:37'),
(23628, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC3F5120D15C5B3F222A36614FF4BD5A\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/596743772_888974260685849_5671795095932480340_n.enc?ccb=11-4&oh=01_Q5Aa3wFuwwBTMQAJiqsQDPhwN6jRVIm0nR82IGw-60yaWRiEYw&oe=69BC6F5E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"fdGw6NUlK88soTJBLNG9Ov9HFpOgaHvqqCXrILJkS2Y=\",\"fileLength\":\"109302\",\"height\":1600,\"width\":900,\"mediaKey\":\"ypehHEGGjXpoIqgdcLnk0J+EhsHsM7DXQJEj1qaTybM=\",\"fileEncSha256\":\"Jmi\\/Q24mGtiy2ezU9Cca24Yy4kwVBzcOqxOk4txWKFA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/596743772_888974260685849_5671795095932480340_n.enc?ccb=11-4&oh=01_Q5Aa3wFuwwBTMQAJiqsQDPhwN6jRVIm0nR82IGw-60yaWRiEYw&oe=69BC6F5E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366535\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAD8AIwMBIgACEQEDEQH\\/xAAvAAADAQEBAAAAAAAAAAAAAAAAAgMEAQUBAQEBAQEAAAAAAAAAAAAAAAACAQQD\\/9oADAMBAAIQAxAAAADH1eMjm242wGDbRtXTEl0DwznskdPhkeyeViMQcbZotF17PhQmH\\/\\/EACQQAAICAQMEAgMAAAAAAAAAAAECABEDBBIhEzFRYRAUM1Nx\\/9oACAEBAAE\\/AB8OSzehGBPxYm4RvAj2LE2zHgLKrs3DTooGAsmdDHDjxdwoM3j9YmnBbEvgGPjq29cTStg7ZQbgXGMtqKQiLpcTKDxNMyJgssLDdpqdSGACmbMoxBy1+hAxcV1CD4MOXInHWETC3I2L\\/TPr5K2kijBpmUflMGkQ8sTPppA0uXLlwGAy5cuf\\/8QAHREAAQQCAwAAAAAAAAAAAAAAAAIREiEBEBMgUf\\/aAAgBAgEBPwDaUJi7WV4SSctMTyTz0\\/\\/EAB0RAAICAQUAAAAAAAAAAAAAAAABAhEQEhMgIVH\\/2gAIAQMBAT8AFibdMTkn3IplG2vDTw\\/\\/2Q==\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"scansSidecar\":\"ku\\/afaerpYJ7LmJNr8qkA8QadevjybbfvPlCEe2WHt1JoqnCGlBlYA==\",\"scanLengths\":[13451,41759,16594,37498],\"midQualityFileSha256\":\"zn6EfePjvW0+VImUtFekw55PeH35pFLYoyaNDZZDAWM=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ezJpoiBEtg9T9TOewC+srA38BnGsOdX7NEaj1G3DvJA=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771366536,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:36.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:37'),
(23629, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:37.188Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:38'),
(23630, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:37.379Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:15:38'),
(23631, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB055429EDFB94F57B17F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366557937,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:57.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:58'),
(23632, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB05F0E7C8D3D152AEB94\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771366557945,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:15:57.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:15:58'),
(23633, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:16:13.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:16:13'),
(23634, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:16:14.424Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:16:14'),
(23635, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:16:14.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:16:14'),
(23636, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:16:14.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:16:15'),
(23637, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC353586D26AB9B649546112A8AADEA2\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Iai ?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9KAX3d1mj8v49RMbJ4Q1+Pvig+gIi9UmZ+T23nTNv+4=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366574,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:16:14.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:16:15'),
(23638, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:03.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:03'),
(23639, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A53BB240C31489C6F944F286DDBCB8B1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/23720165_1616663782676074_64296535990845232_n.enc?ccb=11-4&oh=01_Q5Aa3wEv6ia-9vLpPWTP_PcBLruGN5efNpKONp_hVDBxDeOjkw&oe=69BC533F&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"HQWhTIILGtG4kyGb45MSNt0iUfp6ZRxEy1PZXmJGYbA=\",\"fileLength\":\"3750\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"XBjiCHMRiqZgdwwFF\\/lw3rDRMk1OGCYSKt2IXJHd6P0=\",\"fileEncSha256\":\"\\/G9+Xf9OKJzfDSfdpyGl6tDF1Z3rFGWPuYPD+Dsjw4A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/23720165_1616663782676074_64296535990845232_n.enc?ccb=11-4&oh=01_Q5Aa3wEv6ia-9vLpPWTP_PcBLruGN5efNpKONp_hVDBxDeOjkw&oe=69BC533F&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771366622\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"waveform\":\"AAAAAAAbOkxaWlZTUUtCNicsR1VSRzAlN0ZLTkdANSw9TlBSV1xcW1JIPDA0QkhKRDcpGRo2SkxPVltZUy0KWA==\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771366622,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:03.081Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:17:03'),
(23641, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:03.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:04'),
(23642, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A53BB240C31489C6F944F286DDBCB8B1\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771366625654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:05.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:17:05'),
(23643, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"presences\":{\"113718268571660@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:49.743Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:50'),
(23644, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:51.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:51'),
(23645, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC8DC38DCA42C2D434AF6DC650AB9605\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"extendedTextMessage\":{\"text\":\"Deu bomm\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"PIrw3166\\/Yz1KFANiIw2ECh5aTYHm9YPDVQyQKBu0Cc=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771366671,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:51.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:17:51'),
(23646, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:51.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:52'),
(23647, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:51.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:52'),
(23648, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":false,\"id\":\"AC8F723E8AF0C1D9BBEC36B7F33F9210\"},\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/637899874_1561803245079121_5132505664405625135_n.enc?ccb=11-4&oh=01_Q5Aa3wFPJecgznLay3cv53hfqJXDRfM6TyNRx9Xb-0Un2hwFRg&oe=69BC6FFE&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"6dOemEOSLilAs\\/y61LA+io6xuNxZAT3LBGPLUnRI030=\",\"fileEncSha256\":\"kd1fI3ZBEO2G+VLEae1wuAcgaGIl0SLrjOIh0YmXVoI=\",\"mediaKey\":\"345aaoAwTPtUusnW3ZIDPpOFrdZdReLnXaVa4cCsys8=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/637899874_1561803245079121_5132505664405625135_n.enc?ccb=11-4&oh=01_Q5Aa3wFPJecgznLay3cv53hfqJXDRfM6TyNRx9Xb-0Un2hwFRg&oe=69BC6FFE&_nc_sid=5e03e0\",\"fileLength\":\"21272\",\"mediaKeyTimestamp\":\"1771366676\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771366676137\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"9fMLMXoPo+PjCIUOMqT2BqDxVpKpptGBkeSZWFv1tJs=\"}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643887\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771366676,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:56.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:17:57'),
(23649, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:56.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:57'),
(23650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:57.113Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:57'),
(23651, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:17:57.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:17:58'),
(23652, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03C018EBDB60EED8F9C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"INTERNET E IPTV\\n\\n🔗 Link da imagem: https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/uploads\\/campanhas\\/campanhas\\/6994e9b550eba_20260217.mp4\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771366843,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:20:43.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:20:44'),
(23653, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A59E9C76F87A257304C8DEFB5E782EA1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366845611,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:20:45.611Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:20:45'),
(23654, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB03C018EBDB60EED8F9C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366844969,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:20:44.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:20:45'),
(23655, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"113718268571660@lid\",\"fromMe\":true,\"id\":\"A59E9C76F87A257304C8DEFB5E782EA1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/588632194_1621306085690477_3955412830988233931_n.enc?ccb=11-4&oh=01_Q5Aa3wHvQaglwWYQOPSZB7tVwlAq-dskQOQb2UOibCKkWQ0Q4A&oe=69BC5008&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"\\/dHA3GDDVLyPcj7NLAph3H3aqwjftBbIW7sOra5Cyxs=\",\"fileEncSha256\":\"nTzhYK1Rpy+6ir+aFMy6sTGYPBKikbwa2KKHeYVl5VI=\",\"mediaKey\":\"E07LENHd\\/\\/4JGK58E65sGp3S2H\\/OT5tWbAq+Ry6PSEI=\",\"mimetype\":\"image\\/webp\",\"height\":64,\"width\":64,\"directPath\":\"\\/v\\/t62.15575-24\\/588632194_1621306085690477_3955412830988233931_n.enc?ccb=11-4&oh=01_Q5Aa3wHvQaglwWYQOPSZB7tVwlAq-dskQOQb2UOibCKkWQ0Q4A&oe=69BC5008&_nc_sid=5e03e0\",\"fileLength\":\"12446\",\"mediaKeyTimestamp\":\"1771243847\",\"isAnimated\":false,\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"stickerSentTs\":\"1771366844293\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":{\"expiration\":0,\"ephemeralSettingTimestamp\":\"1737643886\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"UNKNOWN\",\"initiatedByMe\":false}},\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771366847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:20:47.341Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:20:47'),
(23656, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"113718268571660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:20:47.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:20:47'),
(23657, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"113718268571660@lid\",\"pushName\":\"亗ɠµเℓɦε૨ɱεツ\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/472252371_958080259622781_1112250392457718109_n.jpg?ccb=11-4&oh=01_Q5Aa3wEMqCks0Dq8P4fGnRZoCKAweKzyMZ1VLj1iCMLqtHYq3w&oe=69A1FCFD&_nc_sid=5e03e0&_nc_cat=100\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:20:47.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:20:48');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23658, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"id\":\"3EB0753148FCBD8861E0F2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366940736,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:22:20.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:22:21'),
(23659, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"111141506297958@lid\",\"id\":\"A543E07E0F1ABD3903A7577AEA9D2ACF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771366940814,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:22:20.815Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:22:21'),
(23660, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"presences\":{\"111141506297958@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:35.899Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:36'),
(23661, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01D59BFDE753FB49E99\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"INTERNET E IPTV\\n\\n🔗 Link da imagem: https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/uploads\\/campanhas\\/campanhas\\/6994ea65f30bd_20260217.png\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771367016,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:37.141Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:37'),
(23662, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhTq6UwmpGkq4Mnr09x214CxwZa5bvreJmKg9xzOve2g&oe=69A218AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:37.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:37'),
(23663, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhTq6UwmpGkq4Mnr09x214CxwZa5bvreJmKg9xzOve2g&oe=69A218AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:38.184Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:38'),
(23664, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:38.447Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:38'),
(23665, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhTq6UwmpGkq4Mnr09x214CxwZa5bvreJmKg9xzOve2g&oe=69A218AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:38.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:39'),
(23666, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"111141506297958@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567477298_1130532905529801_4216364014642537430_n.jpg?ccb=11-4&oh=01_Q5Aa3wHhTq6UwmpGkq4Mnr09x214CxwZa5bvreJmKg9xzOve2g&oe=69A218AA&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:39.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:23:39'),
(23667, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"111141506297958@lid\",\"fromMe\":false,\"id\":\"AC3F7EC2AD863F93E3AECE3180541D0F\"},\"pushName\":\"Paulo Fontoura\",\"message\":{\"conversation\":\"Diga\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kUu1OPXzu7c9lf7WqxoI2Hsc6ZuDK+Nkq0\\/eQ70841U=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367018,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:38.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:23:39'),
(23668, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB01D59BFDE753FB49E99\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367018602,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:23:38.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:23:40'),
(23669, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"251904210772212@lid\",\"id\":\"3EB0698E44C819DD4D2C85\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771367269189,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:49.190Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:49'),
(23670, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB0CFA067EED6F2EDB4C9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367270157,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:50.157Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:50'),
(23671, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5FA2CD5CA115443A5246663C6A609F9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367270746,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:50.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:51'),
(23672, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A5181CF4A9BC3F856F8FAB3E7157FA8B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367270182,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:50.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:51'),
(23673, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB0FFB741FE55A49BDE75\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367270164,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:50.165Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:51'),
(23674, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB063AA2AEBA0673D13FF\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367270732,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:50.732Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:52'),
(23675, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"3EB00349517F24FCFA0A57\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367272172,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:52.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:52'),
(23676, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A51BA9A6062DCDA698F5FC0A2B2BFC43\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367270175,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:50.176Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:52'),
(23677, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113043723792419@lid\",\"id\":\"A57EF6F16562F55B90DE32E0C527594B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367272600,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:27:52.601Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:27:53'),
(23678, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:28:58.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:28:59'),
(23679, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:02.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:02'),
(23680, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC0C77B199539CEDBB2116800B9B13D1\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Tá rodando esse\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WsXJGu4T7QRnVLvAFEA3AeeIXCKb5\\/mDQc+GIGdzLaQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367341,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:02.097Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:29:02'),
(23681, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:02.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:02'),
(23682, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:02.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:02'),
(23683, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:03.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:04'),
(23684, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:05.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:05'),
(23685, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC4AB3F6E716E736DCA33CBAF6795812\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Filme\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"HbAmxxQqpYQfijNDouvEQLTgHpU5rKF6qD7Lhf\\/tHKo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367344,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:05.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:29:05'),
(23686, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:05.382Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:06'),
(23687, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:05.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:29:06'),
(23688, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":503},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:49.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:29:49'),
(23689, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:49.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:29:49'),
(23690, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:29:50.657Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:29:50'),
(23691, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:31:52.833Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:31:53'),
(23692, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:31:58.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:31:58'),
(23693, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:01.329Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:01'),
(23694, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:02.499Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:02'),
(23695, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A64830B06B1789B42F9\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Fala mano blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"C7NDZofaanvBW8YQMGCee3WG0dega3DVWHm98a7cPHs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367522,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:02.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:32:02'),
(23696, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1PWRP7IDS8hNN3_f2rCJ-0WgX61pQemYgQ_N47SOK0g&oe=69A2199C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:02.884Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:03'),
(23697, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1PWRP7IDS8hNN3_f2rCJ-0WgX61pQemYgQ_N47SOK0g&oe=69A2199C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:02.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:03'),
(23698, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:09.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:09'),
(23699, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A68E5D1869C2693C095\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Então troquei la o login\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"JAn6c9I3uzYejDXtDLELh74L+ilfzkAdLRPgsLyiSfQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367529,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:09.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:32:09'),
(23700, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:09.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:10'),
(23701, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:10.151Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:10'),
(23702, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:12.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:12'),
(23703, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"113718268571660@lid\",\"id\":\"A59E9C76F87A257304C8DEFB5E782EA1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771367535654,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:15.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:32:15'),
(23704, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:18.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:18'),
(23705, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACFFDA0AEE4B8D5562B\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"So que os canais fica so carregando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dU9jw2Ibll\\/DrCZC\\/aBh9fKxnnbNGWA1Ba1nchv5RcY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367546,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:26.991Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:32:27'),
(23706, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:26.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:27'),
(23707, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:27.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:27'),
(23708, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:27.181Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:27'),
(23709, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:28.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:29'),
(23710, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:30.769Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:30'),
(23711, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A8CBF43E1AA35334E20\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"E não entra\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nczZLo82JCq0I79ZUDe1dXhoS+dZodseXDCAkhSyBUc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367550,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:30.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:32:30'),
(23712, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:30.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:31'),
(23713, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:31.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:31'),
(23714, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:32:33.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:32:33'),
(23715, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59A5B0F7D1BEB935829880C69238E8D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367602862,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:22.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:23'),
(23716, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:24.789Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:25'),
(23717, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A59A5B0F7D1BEB935829880C69238E8D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/596548207_908594094984488_5015156129374851496_n.enc?ccb=11-4&oh=01_Q5Aa3wGL2rtPVzDG-ntulbCo7NDX852wDc6ok6qnBQZXsMtd2g&oe=69BC4174&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"eu8WwniCxVm5iRfDu8GT9NoOg4OhWK1AOjapWBkdXWU=\",\"fileLength\":\"7131\",\"seconds\":3,\"ptt\":true,\"mediaKey\":\"ogxhghHfAdEln0HKTXYGB0zqPgfGCnJ2gUoEDYtp+tc=\",\"fileEncSha256\":\"KLtjLrHO3U9Dmkkht5WHMQDG0LSBqQMkMKUu\\/lVgSmY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/596548207_908594094984488_5015156129374851496_n.enc?ccb=11-4&oh=01_Q5Aa3wGL2rtPVzDG-ntulbCo7NDX852wDc6ok6qnBQZXsMtd2g&oe=69BC4174&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771367599\",\"waveform\":\"AFZhWktQYWFiXDpARlZhX1A7VE5XWllaXVU9XlpaXFpSPSMXGB0NGBsWFhshHB8TExk1TlNTSVJQUVZYWFdLJA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771367604,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:24.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:25'),
(23718, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:25.162Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:25'),
(23719, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59A5B0F7D1BEB935829880C69238E8D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771367606436,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:26.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:26'),
(23720, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A59A5B0F7D1BEB935829880C69238E8D\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771367606916,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:26.916Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:27'),
(23721, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:36.608Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:37'),
(23722, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:38.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:38'),
(23723, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A54AB27B7713809777418B235BAD6262\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/69658577_757822010380922_3483829006773111527_n.enc?ccb=11-4&oh=01_Q5Aa3wHnmpyvFQTfIeNDbPe-9qxQGmsrWPFRqi3kDF5tcY6Pdw&oe=69BC5668&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"lHbmfYTAgOGANuKqYXMlH5+g2yQdjqpYU+nGWRorufM=\",\"fileLength\":\"10478\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"2CHPzsdWR2TVzcO8dP32ifIWo0AKmuqAhvrvC6oSFSU=\",\"fileEncSha256\":\"tIcG39108VYtsPVcjDenWuA2EahlUGYFfe0OdtiSUiI=\",\"directPath\":\"\\/v\\/t62.7117-24\\/69658577_757822010380922_3483829006773111527_n.enc?ccb=11-4&oh=01_Q5Aa3wHnmpyvFQTfIeNDbPe-9qxQGmsrWPFRqi3kDF5tcY6Pdw&oe=69BC5668&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771367614\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9634},\"waveform\":\"AAAAAAA0Y1tdVl1ZT09IVV4\\/HAAAAAAAAB0iAAQYFgYEAgUARVxgXE5RXFROLVVSXV08BAhGXlBWOFZAVVZaUg==\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":9634},\"messageType\":\"audioMessage\",\"messageTimestamp\":1771367617,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:38.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:38'),
(23724, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54AB27B7713809777418B235BAD6262\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367618938,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:38.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:39'),
(23725, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:38.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:39'),
(23726, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:39.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:40'),
(23727, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:39.980Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:40'),
(23728, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"ACE4AF7EFB7EAB7238C6E6139F2AD911\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Por enquanto tá bom\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"MhzlnfV55M9o6P8mTv8I8Uaqz\\/EHSCCv7tar3og\\/aDc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367619,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:39.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:40'),
(23729, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:40.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:41'),
(23730, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:42.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:42'),
(23731, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:46.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:46'),
(23732, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":false,\"id\":\"AC42F3C1DFEB1F7CCA264B7D80883ADA\"},\"pushName\":\"✓\",\"message\":{\"conversation\":\"Tô testando tudo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"GP7qGOSAfNpz3wyCar05CBHvBH3BvvBbwggzRIwN1Jo=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771367625,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:46.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:33:46'),
(23733, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:46.212Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:47'),
(23734, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:33:46.399Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:33:47'),
(23735, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"53678601945340@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:34:53.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:34:53'),
(23736, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"53678601945340@lid\",\"fromMe\":true,\"id\":\"A5CEC262147C9026B0A53048CF4AD020\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/594018851_1474168774054602_4252873256172382555_n.enc?ccb=11-4&oh=01_Q5Aa3wGpG56mkPGHkpk0uQRQOlDEG6S6a2gKpfGn7lP5EwytTw&oe=69BC5F33&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"TSLTMpzctG8rPa\\/YJTrGV7jtkRgghSBPUlNygLXoWZ4=\",\"fileEncSha256\":\"XqWl+M1K1ajbcTODh7THYoMFotk7QFQr5690aSQxk6A=\",\"mediaKey\":\"hsUTuFGYICocp6RCxg9rsBNkrtO5TGKN5CePDUli7mk=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/594018851_1474168774054602_4252873256172382555_n.enc?ccb=11-4&oh=01_Q5Aa3wGpG56mkPGHkpk0uQRQOlDEG6S6a2gKpfGn7lP5EwytTw&oe=69BC5F33&_nc_sid=5e03e0\",\"fileLength\":\"476338\",\"mediaKeyTimestamp\":\"1771367692\",\"firstFrameLength\":475930,\"firstFrameSidecar\":\"BeH3Svv0SWTuUQ==\",\"isAnimated\":true,\"stickerSentTs\":\"1771367692327\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771367693,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:34:53.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:34:53');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23737, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:34:53.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:34:54'),
(23738, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEC262147C9026B0A53048CF4AD020\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771367693572,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:34:53.572Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:34:54'),
(23739, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"53678601945340@lid\",\"id\":\"A5CEC262147C9026B0A53048CF4AD020\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771367752683,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:35:52.683Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:35:52'),
(23740, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:35:58.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:35:58'),
(23741, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:36:00.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:36:01'),
(23742, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:36:00.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:36:01'),
(23743, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"53678601945340@lid\",\"presences\":{\"53678601945340@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:36:01.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:36:01'),
(23744, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"32465758515228@lid\",\"id\":\"3EB067F660C83A4E84217C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771367977699,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:39:37.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:39:38'),
(23745, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5B6A311CA220532D6CE3E3636D35704\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368011622,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:40:11.622Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:40:12'),
(23746, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"215049113178302@lid\",\"id\":\"A5B6A311CA220532D6CE3E3636D35704\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771368013400,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:40:13.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:40:13'),
(23747, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"211677630967839@lid\",\"presences\":{\"211677630967839@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:42:15.926Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:42:16'),
(23748, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554185045498@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BDC198D2015C0FE8A0\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *Nando5498*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 40,00*\\r\\n• Próximo vencimento: *19\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771368136,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:42:17.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:42:17'),
(23749, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554185045498@s.whatsapp.net\",\"id\":\"3EB0BDC198D2015C0FE8A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368139004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:42:19.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:42:19'),
(23750, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"211677630967839@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:42:19.816Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:42:20'),
(23751, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"close\",\"statusReason\":503},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:43:06.445Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:43:06'),
(23752, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"connecting\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:43:06.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:43:06'),
(23753, 'connection.update', 'JTVPLAY', '{\"event\":\"connection.update\",\"instance\":\"JTVPLAY\",\"data\":{\"instance\":\"JTVPLAY\",\"state\":\"open\",\"statusReason\":200},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:43:07.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:43:08'),
(23754, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"62333061746885@lid\",\"id\":\"A5EA008B5C4D0556C37F5727EE6E1EE0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368259135,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:44:19.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:44:19'),
(23755, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54AB27B7713809777418B235BAD6262\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771368408088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:46:48.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:46:48'),
(23756, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54AB27B7713809777418B235BAD6262\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771368409269,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:46:49.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:46:49'),
(23757, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB01D59BFDE753FB49E99\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771368413801,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:46:53.801Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:46:54'),
(23758, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB03C018EBDB60EED8F9C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771368413804,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:46:53.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:46:54'),
(23759, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A851F882C6827460113\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Iphone 14\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"7Dd5GrXvchk3q9VDphsbxFQHiH5lluV6FH5nTLp64qU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771368421,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:01.235Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:01'),
(23760, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:01.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:01'),
(23761, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:02.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:02'),
(23762, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:01.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:02'),
(23763, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5D0784E8EFA0E4A76B593D6FC15A8DC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368436771,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:16.771Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:16'),
(23764, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:17.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:17'),
(23765, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5D0784E8EFA0E4A76B593D6FC15A8DC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Iptv smarte lite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771368437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:17.591Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:18'),
(23766, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A55908CCE0DC7DEF39C645A99AF47341\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368437999,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:17.999Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:18'),
(23767, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A55908CCE0DC7DEF39C645A99AF47341\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tens ainda?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771368437,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:18.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:18'),
(23768, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:18.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:19'),
(23769, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:18.178Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:19'),
(23770, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:18.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:47:20'),
(23771, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5D0784E8EFA0E4A76B593D6FC15A8DC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368459023,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:39.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:39'),
(23772, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5D0784E8EFA0E4A76B593D6FC15A8DC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771368459002,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:39.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:39'),
(23773, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A55908CCE0DC7DEF39C645A99AF47341\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368459018,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:39.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:40'),
(23774, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A55908CCE0DC7DEF39C645A99AF47341\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771368459009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:47:39.009Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:47:40'),
(23775, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:48:48.430Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:48:48'),
(23776, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4AA23DEEFBC714EF3943\"},\"pushName\":\"Pablo\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m234\\/AQNGABGIEAwF_KmOFFehihx7BP2uy8WvtRO6IL34PvJ4RAjJ4Eg4GguOPbefVQczngGG2TbOPjwrAzvVbYk70X_uTisCRq2Q_FndKfCQgA?ccb=9-4&oh=01_Q5Aa3wGa796_NGmmpskk1q5SyNssjjGUS3r3anvKRJmhQp_EvA&oe=69BC505A&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Bi\\/AMGcT1837JeERN62KHHcWC54G2TJvrDZi8lPN0xs=\",\"fileLength\":\"89847\",\"height\":1280,\"width\":591,\"mediaKey\":\"Ysqh6ofvNSRyVFANAE9yNE2IPslhg6yVVQYR43h4v6Y=\",\"fileEncSha256\":\"Qke+qlhFlEIe\\/Ut4BnKfaxOhgGXTZguHcUfcZvdq97U=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m234\\/AQNGABGIEAwF_KmOFFehihx7BP2uy8WvtRO6IL34PvJ4RAjJ4Eg4GguOPbefVQczngGG2TbOPjwrAzvVbYk70X_uTisCRq2Q_FndKfCQgA?ccb=9-4&oh=01_Q5Aa3wGa796_NGmmpskk1q5SyNssjjGUS3r3anvKRJmhQp_EvA&oe=69BC505A&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771368527\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACEDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAMEAgEF\\/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAA8bIrQ2jz+ZGiBldsb7umbck9yATnfJYqxPmrWSICZc3eL1ZxKMznOEk4BnVgjAAf\\/8QAHBEAAgMAAwEAAAAAAAAAAAAAAQIAEBESITET\\/9oACAECAQE\\/AGGeVs5Lk5d0ULeCfJhTIeipjhtFG\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAERAAIQEiAhQf\\/aAAgBAwEBPwCPFV7L669YSETxYICAcf\\/EACcQAAIBBAAFBAMBAAAAAAAAAAECAwAEERIQITFBUQUTFCJCUmGB\\/9oACAEBAAE\\/APlJrgr\\/ALRuFIwelRXCRNsop\\/VC6aYGMYr3F80ZYzAFCfbzW3hRTZOOQFBSOo4QxKxG3Q0lmhHShYx9xV5GkJKgduEUyIFJ54oeooPxND1VB+Bq8uhcSbAYGODwWwtA4b71iPHejp2zQHnhbWQliDNJqT0FfHxKyO2AO9SQIrLh8ipLeNYyQ+T44WwjKDdmB\\/lKqByVyceadUZ16CtLdkbY6nsaPU1AlotuGL\\/fFR3wjLDCsD5q4uVlIwoXHimcEY4Zj9kDB2z1raL9TW8P6mspqeXPtw\\/\\/\\/gADAP\\/Z\",\"scansSidecar\":\"E2PX7WZwBSrmUXu9zlc9KokDr\\/zuRjVCKSWYFMG39lHbam9iQZzR3w==\",\"scanLengths\":[7002,39793,16086,26964],\"midQualityFileSha256\":\"pSLAFeDNNO9wuUzuPCQI5wBubi8iFmqbyBWTZ+8wBKw=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"nXx7rlB2\\/0fSE+uRuRC\\/KET4Ysn\\/1E4siEmvKyh9kGU=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771368528,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:48:48.431Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:48:48'),
(23777, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:48:48.724Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:48:49'),
(23778, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:48:49.015Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:48:49'),
(23779, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:48:57.301Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:48:57'),
(23780, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:00.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:00'),
(23781, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A022E1AC9B9ABBCF3C4\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Esse aqui ?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Urkwf4DqBtgIqopqPJdVQ5NkVvLePEY+6OfSh47pq20=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771368540,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:00.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:49:00'),
(23782, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:00.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:01'),
(23783, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:01.098Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:01'),
(23784, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:03.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:03'),
(23785, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"4A2CCD8FB4334204B33B\"},\"pushName\":\"Pablo\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m231\\/AQMdSyoR7aEmB7O_5M_P3f9xJeHVFtyY56fUqM6Fol2DG9IRMZKnb1DLKfPbpnNpavuvQJlt2dcHne4mpuHVjSdtnNhBg5OWFJ9NWalOuQ?ccb=9-4&oh=01_Q5Aa3wEpJ3wqP6HSLwzaQ_Bv21DDZgHRhr1m2tlr9z6rjAOw_w&oe=69BC6032&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"6z1Kpr88fIEJVfTHqNEBlRMqk\\/jXUMLOSSSszOg4sKg=\",\"fileLength\":\"41439\",\"height\":591,\"width\":1280,\"mediaKey\":\"We114jXDxOCZOAVehAW50B0hmJN47DvyTJ0JALcW05k=\",\"fileEncSha256\":\"kSOsRohMBc8C7PqjfGc+QW+sZVt5rcB5ywR1sLfUi5E=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m231\\/AQMdSyoR7aEmB7O_5M_P3f9xJeHVFtyY56fUqM6Fol2DG9IRMZKnb1DLKfPbpnNpavuvQJlt2dcHne4mpuHVjSdtnNhBg5OWFJ9NWalOuQ?ccb=9-4&oh=01_Q5Aa3wEpJ3wqP6HSLwzaQ_Bv21DDZgHRhr1m2tlr9z6rjAOw_w&oe=69BC6032&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771368592\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCAAhAEgDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAECAwQF\\/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAECBP\\/aAAwDAQACEAMQAAAA8Onpjp4H2yvNVm+ZXnsBJc8956TWYmU5aU5o0As4wJXQFUBVAlAV\\/8QAGREBAAIDAAAAAAAAAAAAAAAAAQAREhMw\\/9oACAECAQE\\/AMybCDfX\\/8QAHBEAAgICAwAAAAAAAAAAAAAAAAECEQMEEBQw\\/9oACAEDAQE\\/AFrZGjqZCUXF0xK+LLfj\\/8QAJhAAAgEDAwQBBQAAAAAAAAAAAAECAxESBCExEBMyUSIUQXGRwf\\/aAAgBAQABPwDRalaVylKGWS2KurVWg6aoRTv5IUX6YhJiERmkmvZkpcENPTnTi5T39H0tOFsaq3HQiuKgtNTv5FWKjUaTuWj27336U+x2\\/knkQ+4ntw\\/yTlxaDX9G3floTd+S7RkXFYgK+Plt6J5fG9RPb9Eud3cXIxISYkyHVCEIQhH\\/\\/gADAP\\/Z\",\"scansSidecar\":\"ri1VuqQqKSTuZikZAHADxx6BM2vRQ6mahKjTMOak3wE7hzWzXMlv7Q==\",\"scanLengths\":[4311,20003,6842,10281],\"midQualityFileSha256\":\"TIUe57Pc8LYzh0iJCa1HBVZyvFnX6ZB+LZ8nwquyTBI=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"tAoyameik4lj4IFalusMbrEjyH21Kw0ZeGyntBEp+5w=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771368593,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:53.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:49:54'),
(23786, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:53.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:54'),
(23787, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:54.191Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:54'),
(23788, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:49:54.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:49:55'),
(23789, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:50:12.795Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:50:13'),
(23790, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:50:15.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:50:16'),
(23791, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AAAF1069CD255B0AE40\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Fica so assim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"qaI+jxwdUgjdDw652tSWK9wtFGRWWiNNIoRKk9g4hZs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771368615,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:50:15.839Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:50:16'),
(23792, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:50:16.137Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:50:16'),
(23793, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:50:16.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:50:17'),
(23794, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:50:18.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:50:18'),
(23795, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025E0D493CB458B6C32\"},\"pushName\":\"\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m237\\/AQNjI5sww4FUAYsNw5qHrXp2PE177IRgVrRXdrhsw1UYdN-_tIUAoVBKnyggoFFrZAaEgQZxLXMZNHe3uEYkmlN4XyZXQTnQ9dqf3QbzDg?ccb=9-4&oh=01_Q5Aa3wFi3P_V76fZ-IgdJ6Q7x51dMStBlXkudpgRJKV2dnkQCA&oe=69BC4FDD&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/png\",\"caption\":\"Volta pra Casa JTV Play 🎬\",\"fileSha256\":\"1FUHMiM2U7DVlVDIirpDl3AOTKToKmPIGpvM2x6U0P4=\",\"fileLength\":\"468952\",\"height\":752,\"width\":722,\"mediaKey\":\"viSnYuyCgZM2K2FdThJkBARxuMIG0sL+pBfHO0\\/Kz+s=\",\"fileEncSha256\":\"RL4G0EfwodyCWgnnQi5CanhrpFjA3W93nYGEpDZbO9I=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m237\\/AQNjI5sww4FUAYsNw5qHrXp2PE177IRgVrRXdrhsw1UYdN-_tIUAoVBKnyggoFFrZAaEgQZxLXMZNHe3uEYkmlN4XyZXQTnQ9dqf3QbzDg?ccb=9-4&oh=01_Q5Aa3wFi3P_V76fZ-IgdJ6Q7x51dMStBlXkudpgRJKV2dnkQCA&oe=69BC4FDD&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771368895\",\"jpegThumbnail\":\"\\/9j\\/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P\\/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P\\/wAARCAAhACADASIAAhEBAxEB\\/8QAGgABAAMAAwAAAAAAAAAAAAAAAAEDBAIFB\\/\\/EACgQAAEDAwIGAQUAAAAAAAAAAAIBAxEABBIFIRMUIjFBYVEVQoGRof\\/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv\\/EABoRAAMBAQEBAAAAAAAAAAAAAAABEQISAyH\\/2gAMAwEAAhEDEQA\\/APP6V2+m6E7eng4aMkUcOYXL587VludOcadIGl4iD3XtvMVnpWGlltVGOF+KYrEwsVvtbFxLwLd9tQJRnElip1G3W1cwVETIJVEWfNXr7By5S3S71lhxDMiEgRFFco3rn9St2EcQOIRLELsqLG+\\/5rBbBZlnzDrgQHRiMyXwvqrL4NOFGuTddJVDryTsX8271rXmtZrItvDULnr072+5hG8FJIVBPfbusrVV\\/kRbJAiMJJIu0+KnUQ00OFyDzpSEnl4L9J7qGA09QPjvvTh0Qn3e\\/VMY6cRNairMFKUqAUpSgP\\/Z\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":{\"low\":1771368896,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:54:56.563Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:54:57'),
(23796, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB025E0D493CB458B6C32\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771368898167,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:54:58.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:54:58'),
(23797, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:59:39.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:59:39'),
(23798, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08BF09D3F46D8BD2CE7\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🎉 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOlá, *johnny*! 👋\\r\\n\\r\\nÉ um prazer ter você conosco!\\r\\n\\r\\n📋 *Informações da sua conta:*\\r\\n• Plano: *mensal*\\r\\n• Valor mensal: *R$ 1,00*\\r\\n• Próximo vencimento: *17\\/02\\/2026*\\r\\n\\r\\nQualquer dúvida, estamos à disposição!\\r\\n\\r\\nAproveite! 🚀✨\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771369180,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:59:40.436Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 19:59:40'),
(23799, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB08BF09D3F46D8BD2CE7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369181874,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T19:59:41.875Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 19:59:42'),
(23800, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A882E2FEEF23514B6C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, johnny!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ {valor}\\r\\n📅 *Vencimento:* {data_vencimento}\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* {pix_tipo}\\r\\n📌 *Chave:* {pix_chave}\\r\\n👤 *Beneficiário:* {pix_beneficiario}\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771369231,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:00:32.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:00:32'),
(23801, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0A882E2FEEF23514B6C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369234045,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:00:34.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:00:34'),
(23802, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5BE6CDD0B1C530370BB1DE88D86E842\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369302570,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:01:42.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:01:43'),
(23803, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5BE6CDD0B1C530370BB1DE88D86E842\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Testei aqui e tá funcionando normal\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771369302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:01:43.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:01:43'),
(23804, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:01:43.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:01:43'),
(23805, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1PWRP7IDS8hNN3_f2rCJ-0WgX61pQemYgQ_N47SOK0g&oe=69A2199C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:01:43.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:01:44'),
(23806, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A52E74BA08B83A3E9F99C97C0D173D05\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Pode ser o app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771369333,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:13.340Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:02:13'),
(23807, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:13.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:02:13'),
(23808, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:13.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:02:14'),
(23809, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A52E74BA08B83A3E9F99C97C0D173D05\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369334410,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:14.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:02:14'),
(23810, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:33.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:02:33');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23811, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5085F820A14922455601473F48ABE59\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Podemos colocar a sua lista nesse aqui pra ver se roda\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"4AA23DEEFBC714EF3943\",\"participant\":\"267864242171967@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m234\\/AQNGABGIEAwF_KmOFFehihx7BP2uy8WvtRO6IL34PvJ4RAjJ4Eg4GguOPbefVQczngGG2TbOPjwrAzvVbYk70X_uTisCRq2Q_FndKfCQgA?ccb=9-4&oh=01_Q5Aa3wGa796_NGmmpskk1q5SyNssjjGUS3r3anvKRJmhQp_EvA&oe=69BC505A&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Bi\\/AMGcT1837JeERN62KHHcWC54G2TJvrDZi8lPN0xs=\",\"fileLength\":\"89847\",\"height\":1280,\"width\":591,\"mediaKey\":\"Ysqh6ofvNSRyVFANAE9yNE2IPslhg6yVVQYR43h4v6Y=\",\"fileEncSha256\":\"Qke+qlhFlEIe\\/Ut4BnKfaxOhgGXTZguHcUfcZvdq97U=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m234\\/AQNGABGIEAwF_KmOFFehihx7BP2uy8WvtRO6IL34PvJ4RAjJ4Eg4GguOPbefVQczngGG2TbOPjwrAzvVbYk70X_uTisCRq2Q_FndKfCQgA?ccb=9-4&oh=01_Q5Aa3wGa796_NGmmpskk1q5SyNssjjGUS3r3anvKRJmhQp_EvA&oe=69BC505A&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771368527\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACEDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAMEAgEF\\/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAA8bIrQ2jz+ZGiBldsb7umbck9yATnfJYqxPmrWSICZc3eL1ZxKMznOEk4BnVgjAAf\\/8QAHBEAAgMAAwEAAAAAAAAAAAAAAQIAEBESITET\\/9oACAECAQE\\/AGGeVs5Lk5d0ULeCfJhTIeipjhtFG\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAERAAIQEiAhQf\\/aAAgBAwEBPwCPFV7L669YSETxYICAcf\\/EACcQAAIBBAAFBAMBAAAAAAAAAAECAwAEERIQITFBUQUTFCJCUmGB\\/9oACAEBAAE\\/APlJrgr\\/ALRuFIwelRXCRNsop\\/VC6aYGMYr3F80ZYzAFCfbzW3hRTZOOQFBSOo4QxKxG3Q0lmhHShYx9xV5GkJKgduEUyIFJ54oeooPxND1VB+Bq8uhcSbAYGODwWwtA4b71iPHejp2zQHnhbWQliDNJqT0FfHxKyO2AO9SQIrLh8ipLeNYyQ+T44WwjKDdmB\\/lKqByVyceadUZ16CtLdkbY6nsaPU1AlotuGL\\/fFR3wjLDCsD5q4uVlIwoXHimcEY4Zj9kDB2z1raL9TW8P6mspqeXPtw\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"E2PX7WZwBSrmUXu9zlc9KokDr\\/zuRjVCKSWYFMG39lHbam9iQZzR3w==\",\"scanLengths\":[7002,39793,16086,26964],\"midQualityFileSha256\":\"pSLAFeDNNO9wuUzuPCQI5wBubi8iFmqbyBWTZ+8wBKw=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"4AA23DEEFBC714EF3943\",\"participant\":\"267864242171967@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m234\\/AQNGABGIEAwF_KmOFFehihx7BP2uy8WvtRO6IL34PvJ4RAjJ4Eg4GguOPbefVQczngGG2TbOPjwrAzvVbYk70X_uTisCRq2Q_FndKfCQgA?ccb=9-4&oh=01_Q5Aa3wGa796_NGmmpskk1q5SyNssjjGUS3r3anvKRJmhQp_EvA&oe=69BC505A&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"Bi\\/AMGcT1837JeERN62KHHcWC54G2TJvrDZi8lPN0xs=\",\"fileLength\":\"89847\",\"height\":1280,\"width\":591,\"mediaKey\":\"Ysqh6ofvNSRyVFANAE9yNE2IPslhg6yVVQYR43h4v6Y=\",\"fileEncSha256\":\"Qke+qlhFlEIe\\/Ut4BnKfaxOhgGXTZguHcUfcZvdq97U=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m234\\/AQNGABGIEAwF_KmOFFehihx7BP2uy8WvtRO6IL34PvJ4RAjJ4Eg4GguOPbefVQczngGG2TbOPjwrAzvVbYk70X_uTisCRq2Q_FndKfCQgA?ccb=9-4&oh=01_Q5Aa3wGa796_NGmmpskk1q5SyNssjjGUS3r3anvKRJmhQp_EvA&oe=69BC505A&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771368527\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIACEDASIAAhEBAxEB\\/8QAGQAAAwEBAQAAAAAAAAAAAAAAAAMEAgEF\\/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAEDAv\\/aAAwDAQACEAMQAAAA8bIrQ2jz+ZGiBldsb7umbck9yATnfJYqxPmrWSICZc3eL1ZxKMznOEk4BnVgjAAf\\/8QAHBEAAgMAAwEAAAAAAAAAAAAAAQIAEBESITET\\/9oACAECAQE\\/AGGeVs5Lk5d0ULeCfJhTIeipjhtFG\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAERAAIQEiAhQf\\/aAAgBAwEBPwCPFV7L669YSETxYICAcf\\/EACcQAAIBBAAFBAMBAAAAAAAAAAECAwAEERIQITFBUQUTFCJCUmGB\\/9oACAEBAAE\\/APlJrgr\\/ALRuFIwelRXCRNsop\\/VC6aYGMYr3F80ZYzAFCfbzW3hRTZOOQFBSOo4QxKxG3Q0lmhHShYx9xV5GkJKgduEUyIFJ54oeooPxND1VB+Bq8uhcSbAYGODwWwtA4b71iPHejp2zQHnhbWQliDNJqT0FfHxKyO2AO9SQIrLh8ipLeNYyQ+T44WwjKDdmB\\/lKqByVyceadUZ16CtLdkbY6nsaPU1AlotuGL\\/fFR3wjLDCsD5q4uVlIwoXHimcEY4Zj9kDB2z1raL9TW8P6mspqeXPtw\\/\\/\\/gADAP\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"E2PX7WZwBSrmUXu9zlc9KokDr\\/zuRjVCKSWYFMG39lHbam9iQZzR3w==\",\"scanLengths\":[7002,39793,16086,26964],\"midQualityFileSha256\":\"pSLAFeDNNO9wuUzuPCQI5wBubi8iFmqbyBWTZ+8wBKw=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771369353,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:33.692Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:02:33'),
(23812, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:34.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:02:34'),
(23813, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5085F820A14922455601473F48ABE59\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369354530,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:34.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:02:34'),
(23814, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A50C364AB552CC771D9C53E57D3F59D7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Seu celular é Ios?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771369360,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:40.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:02:40'),
(23815, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:40.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:02:41'),
(23816, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:41.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:02:41'),
(23817, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A50C364AB552CC771D9C53E57D3F59D7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369361564,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:02:41.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:02:41'),
(23818, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A54C13C8FA14F070E9BF5CC42EA210D8\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771369624202,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:07:04.202Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:07:04'),
(23819, 'messages.delete', 'JTVPLAY', '{\"event\":\"messages.delete\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A50C364AB552CC771D9C53E57D3F59D7\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:07:04.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:07:05'),
(23820, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5085F820A14922455601473F48ABE59\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771370273840,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:17:53.841Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:17:54'),
(23821, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A52E74BA08B83A3E9F99C97C0D173D05\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771370273831,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:17:53.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:17:54'),
(23822, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5BE6CDD0B1C530370BB1DE88D86E842\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771370273818,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:17:53.818Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:17:55'),
(23823, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:14.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:14'),
(23824, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:20.669Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:21'),
(23825, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3A4854AEE9A47CE6E492\"},\"pushName\":\"Pablo\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual dos 2 ?\",\"contextInfo\":{\"stanzaId\":\"A5085F820A14922455601473F48ABE59\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Podemos colocar a sua lista nesse aqui pra ver se roda\"}}},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"uJ7MkV+QydNxbRa13fFSnQnhOs+r7hikfVUrG3YZu2k=\"}},\"contextInfo\":{\"stanzaId\":\"A5085F820A14922455601473F48ABE59\",\"participant\":\"554791592447@s.whatsapp.net\",\"quotedMessage\":{\"conversation\":\"Podemos colocar a sua lista nesse aqui pra ver se roda\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771370300,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:20.670Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:18:21'),
(23826, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1PWRP7IDS8hNN3_f2rCJ-0WgX61pQemYgQ_N47SOK0g&oe=69A2199C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:20.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:21'),
(23827, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A501D5B6EDF055CBEDCF2D718B33D192\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771370302541,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:22.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:18:22'),
(23828, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A501D5B6EDF055CBEDCF2D718B33D192\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771370302551,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:22.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:18:22'),
(23829, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:23.108Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:23'),
(23830, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:22.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:23'),
(23831, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:21.261Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:23'),
(23832, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:21.837Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:18:24'),
(23833, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A501D5B6EDF055CBEDCF2D718B33D192\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771370301,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:18:21.838Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:18:25'),
(23834, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A501D5B6EDF055CBEDCF2D718B33D192\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771370585309,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:05.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:23:05'),
(23835, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:57.072Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:23:57'),
(23836, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":false,\"id\":\"4AA4C38370288A1A6945\"},\"pushName\":\"Clovis Faria\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOBcG5z29hKzHPumlHrUNc5bhH9RpTcX1KMLyqYfbUqmq6E6aMdKq41JQsNlBCeHaoU8fmVvnhafxvCGHqmdhulO2D96IA2Tw3Sug8B3A?ccb=9-4&oh=01_Q5Aa3wFM2me8K_C4oiEzw2Va5yVbcy9qTMQ6PRaXU5vyBLuD9A&oe=69BC7473&_nc_sid=e6ed6c&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"caption\":\"\",\"fileSha256\":\"Y+UPSCPbK8DZy6qdVoedib+f+7BAc3Pk0VsOeBHjN1M=\",\"fileLength\":\"36361\",\"height\":1280,\"width\":388,\"mediaKey\":\"W543zzLPMqlAXYCO33Vbu6DgNA59g5oeuvGn2M2oCuo=\",\"fileEncSha256\":\"YqLrQ2SpUjk+zFVfs+3DQXBOkIMU1e2nL8OohgPa+7A=\",\"directPath\":\"\\/o1\\/v\\/t24\\/f2\\/m233\\/AQOBcG5z29hKzHPumlHrUNc5bhH9RpTcX1KMLyqYfbUqmq6E6aMdKq41JQsNlBCeHaoU8fmVvnhafxvCGHqmdhulO2D96IA2Tw3Sug8B3A?ccb=9-4&oh=01_Q5Aa3wFM2me8K_C4oiEzw2Va5yVbcy9qTMQ6PRaXU5vyBLuD9A&oe=69BC7473&_nc_sid=e6ed6c\",\"mediaKeyTimestamp\":\"1771370623\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T\\/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT\\/wgARCABIABYDASIAAhEBAxEB\\/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIDAQb\\/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf\\/aAAwDAQACEAMQAAAA9DWQ1ZjtY0asx3s0UkRfOhQx4SWLf\\/\\/EABYRAAMAAAAAAAAAAAAAAAAAAAEQMP\\/aAAgBAgEBPwCBX\\/\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8AL\\/\\/EACIQAAICAgICAgMAAAAAAAAAAAABAhESUQMhMUETIiMyUv\\/aAAgBAQABPwB1Zktiafgud9pWffSPyL0jrJ2ZJbE7G52+hSnXhGXJpD\\/ZixfoSS8C5IqT7M47PkjscI3VIXGvaR8cdFpyfZ1\\/Ra2PjldkUm6vswZ\\/\\/\\/4AAwD\\/2Q==\",\"firstScanSidecar\":\"iDkOMJNJLdI+jA==\",\"firstScanLength\":2949,\"scansSidecar\":\"iDkOMJNJLdI+jN+ZKomzvlBYZI\\/KDUyvtPzuMe7xWmY+w2frPz42VA==\",\"scanLengths\":[2949,15306,7326,10778],\"midQualityFileSha256\":\"lrNUat3dDjYDrckEh8GCBl4Mzk1pf22BprXMQorCnDo=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"senderTimestamp\":\"1771286448\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1770154458\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"OllKBeT28iLwz8BoWi2gREvJb9XLjw5zZ55V0NTQyVo=\"}},\"contextInfo\":null,\"messageType\":\"imageMessage\",\"messageTimestamp\":1771370636,\"owner\":\"JTVPLAY\",\"source\":\"unknown\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:57.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:23:57'),
(23837, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEA59frikJVsBpGK3a0r0023w5s50gmGTou4DEEypgv0Q&oe=69A21DFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:57.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:23:58'),
(23838, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEA59frikJVsBpGK3a0r0023w5s50gmGTou4DEEypgv0Q&oe=69A21DFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:57.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:23:58'),
(23839, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"104917578559621@lid\",\"fromMe\":true,\"id\":\"A5B602974E15A41CD9000AAB07E3FD90\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771370639,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:59.704Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:23:59'),
(23840, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"104917578559621@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:23:59.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:23:59'),
(23841, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/400441294_738125524828894_517501295228524935_n.jpg?ccb=11-4&oh=01_Q5Aa3wEA59frikJVsBpGK3a0r0023w5s50gmGTou4DEEypgv0Q&oe=69A21DFC&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:24:00.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:24:00'),
(23842, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5B602974E15A41CD9000AAB07E3FD90\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771370640422,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:24:00.422Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:24:00'),
(23843, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5B602974E15A41CD9000AAB07E3FD90\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771370640429,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:24:00.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:24:01'),
(23844, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"104917578559621@lid\",\"presences\":{\"104917578559621@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:28:17.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:28:17'),
(23845, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04762828FFF186D6986\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Renovação Concluída com Sucesso!*\\n\\nOlá, *Clovis \\/ Ios Vivo*!\\nSua assinatura foi renovada e está ativa até:\\n\\n📅 *Data de expiração:*\\n19\\/03\\/2026\\n\\nAgradecemos sua confiança em nossos serviços!\\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\\n\\nAproveite o entretenimento sem limites! 🎁🎬🍿\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771370898,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:28:18.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:28:18'),
(23846, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A5B602974E15A41CD9000AAB07E3FD90\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771370900088,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:28:20.088Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:28:20'),
(23847, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"3EB04762828FFF186D6986\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771370903077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:28:23.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:28:23'),
(23848, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A596136C876719C4BA949EBE9D4E4493\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771370935044,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:28:55.044Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:28:55'),
(23849, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"unavailable\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:34:43.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:34:43'),
(23850, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04F3DAFE8D2244EC1DD\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, johnny!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ {valor}\\r\\n📅 *Vencimento:* {data_vencimento}\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* {pix_tipo}\\r\\n📌 *Chave:* {pix_chave}\\r\\n👤 *Beneficiário:* {pix_beneficiario}\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771371284,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:34:44.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:34:44'),
(23851, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB04F3DAFE8D2244EC1DD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771371286219,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:34:46.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:34:46'),
(23852, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:24.045Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:24'),
(23853, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:28.401Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:28'),
(23854, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC2DB9A38AA05D518673F60F06273B23\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Eu precisei sair\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"jkSWMCsy0t5+v6Ykvx+IO\\/7xkdgkxYCgAIlEE7kbtVk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771371688,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:28.411Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:41:28'),
(23855, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:28.409Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:28'),
(23856, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:28.989Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:29'),
(23857, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:28.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:29'),
(23858, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC4114FC1D64818156C16CFF602EDFCE\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Fiz o teste agora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+ayLLOkuReB30doLIKKcfivn1ewGfvL5o3n5JrHMy\\/0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771371690,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:30.731Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:41:30'),
(23859, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:30.730Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:30'),
(23860, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:30.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:31'),
(23861, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5102953C739986E9C5672D065A22FFE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771371690737,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:30.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:41:31'),
(23862, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:31.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:32'),
(23863, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:31.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:32'),
(23864, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:32.663Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:32'),
(23865, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:32.951Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:33'),
(23866, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:33.236Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:33'),
(23867, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5102953C739986E9C5672D065A22FFE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771371692,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:32.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:41:33'),
(23868, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:32.817Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:34'),
(23869, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACB864D69EFB5D60D5D6B7305D0914ED\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Consegue verificar por favor\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ZbkpsZtZowFUo5droMB2Zijksd8aP3apK+m2zT1jMFA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771371695,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:36.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:41:36'),
(23870, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:36.091Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:36'),
(23871, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:36.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:37'),
(23872, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:41:36.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:41:37'),
(23873, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:32.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:32'),
(23874, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:42.617Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:42'),
(23875, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:52.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:53'),
(23876, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:54.120Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:54');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23877, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3ACB51D5C525242F6583\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Mano reiniciei o cel aqui pra ver e volto a funcionar o app\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"N0Zwd1JnXYTcHt+Jl1rtdgDAqwqSNq7XJHSFrt6s9bc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771372254,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:54.216Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:50:54'),
(23878, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:54.800Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:55'),
(23879, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:54.215Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:55'),
(23880, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/473405078_968768441930686_3456563377599943473_n.jpg?ccb=11-4&oh=01_Q5Aa3wH1PWRP7IDS8hNN3_f2rCJ-0WgX61pQemYgQ_N47SOK0g&oe=69A2199C&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:54.513Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:56'),
(23881, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:50:56.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:50:56'),
(23882, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:51:12.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:51:12'),
(23883, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:51:16.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:51:16'),
(23884, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3AC317F006922A6D07BA\"},\"pushName\":\"Pablo\",\"message\":{\"conversation\":\"Ta td certo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"DENqbjMgMd8mPQ==\",\"senderTimestamp\":\"1766057159\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"6383WK0yASwV3WFgAwKAvJnqS9cF+\\/xgx\\/58OzcmRB0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771372276,\"owner\":\"JTVPLAY\",\"source\":\"ios\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:51:16.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:51:17'),
(23885, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5515996448994@s.whatsapp.net\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:51:16.929Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:51:17'),
(23886, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5515996448994@s.whatsapp.net\",\"pushName\":\"Pablo 8994 $60 Void Vivo Ios\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:51:17.211Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:51:17'),
(23887, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"presences\":{\"267864242171967@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:51:19.074Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:51:19'),
(23888, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB08BF09D3F46D8BD2CE7\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771372653010,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:33.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:33'),
(23889, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB025E0D493CB458B6C32\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771372653016,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:33.017Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:33'),
(23890, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0A882E2FEEF23514B6C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771372653004,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:33.004Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:33'),
(23891, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB04F3DAFE8D2244EC1DD\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771372652994,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:32.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:34'),
(23892, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:44.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:44'),
(23893, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:44.903Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:45'),
(23894, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"presences\":{\"8383826497580@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:45.252Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:45'),
(23895, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:47.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:47'),
(23896, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:48.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:48'),
(23897, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:48.777Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:48'),
(23898, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":false,\"id\":\"AC4724D359D523C8DC08F71492B107A6\"},\"pushName\":\"~Johnny\",\"message\":{\"conversation\":\"\\/pago\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"xBWL8f9KtaKJCg==\",\"senderTimestamp\":\"1770939439\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"aqZ2O8q\\/ZSELf4DxCw+QhF2UzeuP2MewZP6EOL95rh0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771372668,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:48.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:49'),
(23899, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:49.070Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:49'),
(23900, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:49.552Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:49'),
(23901, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5FD7DF73EDA07EA1FD12C61D24AE23B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771372669,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:50.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:50'),
(23902, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:50.163Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:50'),
(23903, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5FD7DF73EDA07EA1FD12C61D24AE23B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771372670414,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:50.414Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:57:50'),
(23904, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:57:50.742Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:57:50'),
(23905, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"267864242171967@lid\",\"fromMe\":true,\"id\":\"A5597198CC06FEE93DA6B696EDC3DD4E\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Show\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771372698,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:19.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:19'),
(23906, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"267864242171967@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:19.152Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:58:19'),
(23907, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"267864242171967@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:19.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:58:20'),
(23908, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5597198CC06FEE93DA6B696EDC3DD4E\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771372700155,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:20.155Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:20'),
(23909, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A5193C82DAFA3E8534319FBA40422226\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boanoite\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":2},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":2},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771372730,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:50.781Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:51'),
(23910, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:50.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:58:51'),
(23911, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRmuSCVTGzyL9xuuzRFOUFxtbuU0vyx94FibzhiGbnA&oe=69A20127&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:51.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:51'),
(23912, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A5193C82DAFA3E8534319FBA40422226\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771372731850,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:51.850Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:52'),
(23913, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A5D4E7D6257CAA819F228D40CD21508D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Negao provedor do assist mais mudou?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771372737,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:57.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:57'),
(23914, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:57.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:58:58'),
(23915, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A5D4E7D6257CAA819F228D40CD21508D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771372738205,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:58.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 20:58:58'),
(23916, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wHfRmuSCVTGzyL9xuuzRFOUFxtbuU0vyx94FibzhiGbnA&oe=69A20127&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T20:58:58.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 20:58:59'),
(23917, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:33.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:02:34'),
(23918, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5AD624B08FAF1E29988D2464DF12830\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637759947_878446948356357_6609309295210632061_n.enc?ccb=11-4&oh=01_Q5Aa3wECXBsUfsW6YepSxpwk1S9F5LJztUZpST8aZjT5lxIOCw&oe=69BC66A5&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Ip\\/7X1fsBG4AR\\/R9JvaUVuSv9USoria0Mr4hzOGPWsk=\",\"fileLength\":\"56714\",\"seconds\":24,\"ptt\":true,\"mediaKey\":\"3MvL\\/ijdCc4yF8WI4fb9kE439HtnU7ZAPph5lbDv6oQ=\",\"fileEncSha256\":\"xhU2cVkULg14aVPMCwre+\\/Xqz3E4fUQBBklEEYkaabM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637759947_878446948356357_6609309295210632061_n.enc?ccb=11-4&oh=01_Q5Aa3wECXBsUfsW6YepSxpwk1S9F5LJztUZpST8aZjT5lxIOCw&oe=69BC66A5&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771372930\",\"waveform\":\"AFUmVlFUT1JGFwVXSlspV1w3AAFWDk1UUCYFTSFaPVpLADpBUDoRGiI0Vi5SWkk5QU9KLwAAACZOUD5LAggwAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771372953,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:33.976Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:02:34'),
(23919, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:34.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:02:35'),
(23920, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5AD624B08FAF1E29988D2464DF12830\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771372954766,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:34.767Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:02:35'),
(23921, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5AAAFE12DFFED71D4B88E4BD5C52C19\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594978378_1454136632761328_7986872834878328461_n.enc?ccb=11-4&oh=01_Q5Aa3wEYDZ-Y_tIi_XZkj7fIM373IGouTBmkacOf2AbuBxffcA&oe=69BC8B63&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"sVUrml\\/JW+x+O91k43FZ5EWXAGqlYss1RiGXmg6Vb0A=\",\"fileLength\":\"28217\",\"seconds\":13,\"ptt\":true,\"mediaKey\":\"aIpN+jofbSPTO4dQTP+1pK0\\/hKtsGH6cb9P94wtueFg=\",\"fileEncSha256\":\"HYOil+QPgk00oJ3ulc4FKwwhSA4zTAXMqBlWusp0wyM=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594978378_1454136632761328_7986872834878328461_n.enc?ccb=11-4&oh=01_Q5Aa3wEYDZ-Y_tIi_XZkj7fIM373IGouTBmkacOf2AbuBxffcA&oe=69BC8B63&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771372956\",\"waveform\":\"ADZdRlhYTR5NSj8bRksuL0RSE0tZV0VDTAAAAAAZHwtCKUcgUkwbNQo2AAAAAAAKQSwZTk1IMU5FSVIkPEo+GA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771372968,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:48.355Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:02:48'),
(23922, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:48.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:02:48'),
(23923, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:48.907Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:02:49'),
(23924, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5AAAFE12DFFED71D4B88E4BD5C52C19\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771372968630,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:02:48.630Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:02:49'),
(23925, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:15.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:16'),
(23926, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:17.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:17'),
(23927, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:17.559Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:18'),
(23928, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:17.836Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:18'),
(23929, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:17.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:18'),
(23930, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC8BB1D8628E24B70A69AEC1375FB1CE\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"D9u6JCtrDOWqkqn6SCFcP6QVqP0yot1mfmQjzEgmeYk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771373117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:18.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:05:19'),
(23931, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:18.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:19'),
(23932, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:18.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:19'),
(23933, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC8BB1D8628E24B70A69AEC1375FB1CE\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Oi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"D9u6JCtrDOWqkqn6SCFcP6QVqP0yot1mfmQjzEgmeYk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771373117,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:18.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:05:19'),
(23934, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:18.970Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:20'),
(23935, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5DDEBFD98B8CBD4011902830ACC1F74\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771373119,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.328Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:05:21'),
(23936, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.257Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:21'),
(23937, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.327Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:21'),
(23938, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC935628D64BAC03D5D0E8FAA76B67F0\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Quais planos vc tem lá tv?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+xXI4QqpCfIp4mQd4U9Ck2n+kdfxocP3vYHINmzHsTs=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771373122,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:22.335Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:05:22'),
(23939, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:22.334Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:22'),
(23940, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.443Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:22'),
(23941, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.886Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:23'),
(23942, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:22.624Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:24'),
(23943, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:22.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:24'),
(23944, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:24'),
(23945, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5DDEBFD98B8CBD4011902830ACC1F74\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373119575,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:05:24'),
(23946, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:05:19.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:05:25'),
(23947, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055C165BD9E07D3DB92\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, johnny!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ 1,00\\r\\n📅 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* TELEFONE\\r\\n📌 *Chave:* 47996105435\\r\\n👤 *Beneficiário:* Johnny Schmitt ou JtvPlay Eletronicos\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771373207,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:06:47.533Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:06:48'),
(23948, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB055C165BD9E07D3DB92\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771373208945,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:06:48.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:06:49'),
(23949, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB055C165BD9E07D3DB92\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373214241,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:06:54.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:06:54'),
(23950, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55A77F9C7E3CD0539AA8DAE8271CBE2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771373257297,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:07:37.297Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:07:37'),
(23951, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:07:39.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:07:39'),
(23952, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A55A77F9C7E3CD0539AA8DAE8271CBE2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/597967221_1385642189556155_5495713347998765933_n.enc?ccb=11-4&oh=01_Q5Aa3wGXppkw1fSA-x6k4dPWzUBiltF56Ps4lVgFoKduWM7TGQ&oe=69BC65FF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"P2uh9+kWGf2VNXeyHVgBm5mU\\/NWZGHe\\/9yufd4Hn7dc=\",\"fileLength\":\"11807\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"cb0233smIb7TtwUDcAQD7kydAoMKKADziC8ZtsWwrB4=\",\"fileEncSha256\":\"MxHIkMiEYo4P78CF7oPIiByefTNXtknpdBbNYzuDB+0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/597967221_1385642189556155_5495713347998765933_n.enc?ccb=11-4&oh=01_Q5Aa3wGXppkw1fSA-x6k4dPWzUBiltF56Ps4lVgFoKduWM7TGQ&oe=69BC65FF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771373252\",\"waveform\":\"ACgUI09MJF5SPUJLQVhRRFpMVEosGx1ITk1WUFhKOkxSPxRVNkRTV1lVSDJDPUk7QCdSTDdLQUhSPygmUEdGFw==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771373259,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:07:39.429Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:07:39');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(23953, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:07:40.177Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:07:40'),
(23954, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0874DDA97F6FAB5481B\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔔 *Olá, johnny!*\\r\\n\\r\\nHoje é o dia do vencimento da sua mensalidade! 📆\\r\\n\\r\\n💰 *Valor:* R$ 1,00\\r\\n📅 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n📋 *Dados para pagamento PIX:*\\r\\n──────────────────\\r\\n🔑 *Tipo:* EMAIL\\r\\n📌 *Chave:* pix@voidplay.com.br\\r\\n👤 *Beneficiário:* João Silva MEI\\r\\n──────────────────\\r\\n\\r\\nApós realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! ✅\\r\\n\\r\\nObrigado pela confiança! 🙏\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771373308,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:08:28.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:08:29'),
(23955, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"id\":\"3EB0874DDA97F6FAB5481B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771373310218,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:08:30.219Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:08:30'),
(23956, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55A77F9C7E3CD0539AA8DAE8271CBE2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373401854,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:01.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:10:02'),
(23957, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55A77F9C7E3CD0539AA8DAE8271CBE2\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771373403909,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:03.909Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:10:04'),
(23958, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:10.804Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:10:11'),
(23959, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:11.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:10:11'),
(23960, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:11.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:10:11'),
(23961, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:15.412Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:10:15'),
(23962, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACBA580FFEC2A7CD7BFF9A0FDC6DDD38\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Sim indicação no grupo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Vop2LiUqjAUINus4n8sSB9LwpxknieWwEFvwUqMmwm8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771373415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:15.413Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:10:15'),
(23963, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:15.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:10:16'),
(23964, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:10:15.975Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:10:16'),
(23965, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A548F01BC780FB86832CBA94EEA31FC4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771373520807,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:00.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:12:01'),
(23966, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:02.960Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:12:03'),
(23967, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A548F01BC780FB86832CBA94EEA31FC4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Show\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771373522,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:02.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:12:03'),
(23968, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:03.735Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:12:05'),
(23969, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:06.581Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:12:06'),
(23970, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A52803B9145EA3D3282CE8D34FCF266A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Voce tem tv smart?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771373526,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:06.582Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:12:06'),
(23971, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:07.149Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:12:07'),
(23972, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A52803B9145EA3D3282CE8D34FCF266A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771373527705,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:07.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:12:07'),
(23973, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"3EB0874DDA97F6FAB5481B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373534858,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:12:14.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:12:15'),
(23974, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A548F01BC780FB86832CBA94EEA31FC4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373582750,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:02.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:13:03'),
(23975, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A52803B9145EA3D3282CE8D34FCF266A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373582743,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:02.744Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:13:03'),
(23976, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:04.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:13:04'),
(23977, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC952AF98AEEBCC34D680B289DE2D526\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Sim\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"A9s0+n2qRQQQRb1pOs\\/s5D6zLCHuTlfoMmVClEWto+I=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771373584,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:04.685Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:13:04'),
(23978, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:05.125Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:13:05'),
(23979, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:05.248Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:13:05'),
(23980, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:13:04.684Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:13:05'),
(23981, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"104917578559621@lid\",\"id\":\"A596136C876719C4BA949EBE9D4E4493\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373962283,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:19:22.284Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:19:22'),
(23982, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A56B8C2F2D27D2573CADD572F96514A5\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373998371,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:19:58.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:19:58'),
(23983, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"31585407639718@lid\",\"id\":\"A5F508DEC47E80D5DDACC244D2435804\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771373998376,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:19:58.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:19:58'),
(23984, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:31:33.964Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:31:34'),
(23985, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A515150026C0C053509C8B579B0D872D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Me manda uma foto domenu de app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771374693,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:31:33.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:31:34'),
(23986, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:31:34.541Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:31:34'),
(23987, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A515150026C0C053509C8B579B0D872D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771374695094,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:31:35.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:31:35'),
(23988, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A515150026C0C053509C8B579B0D872D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771374734657,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:14.658Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:32:14'),
(23989, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:16.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:16'),
(23990, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:19.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:19'),
(23991, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:19.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:19'),
(23992, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC25060C1DD91A79A384304BCFDE5BD0\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Amanha te mando entao\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+UCwBsXCDFN7IITNT\\/eMq8lEYWb6jBkCTgWX2LYpSXQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771374739,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:19.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:32:20'),
(23993, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:19.920Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:20'),
(23994, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:20.210Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:20'),
(23995, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACFD0E5280EAD6EF1664A3221CDE14B8\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Agora nao to em casa\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"eGAeM62lmRiosZAcCGyVBvqapK1U47+tNO9kXQufA70=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771374743,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:23.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:32:23'),
(23996, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:23.419Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:23'),
(23997, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:24.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:24'),
(23998, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:32:23.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:32:24'),
(23999, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:34.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:34'),
(24000, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5EEC5698A0B76D6CFB083684189E8A2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Que horas podemos agendar seu atendimento ?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771375114,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:34.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:38:34'),
(24001, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5EEC5698A0B76D6CFB083684189E8A2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771375114749,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:34.750Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:38:35'),
(24002, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:34.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:35'),
(24003, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5EEC5698A0B76D6CFB083684189E8A2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771375117956,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:37.956Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:38:38'),
(24004, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:41.973Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:42'),
(24005, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC50472979B7F1B8BAAD83AC7D7236A6\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Após as 8 qualquer hora\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"BzgTGG19jXwUgeT9RugMdfPv3CwqIOJTQQfXGrG2AZ0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771375127,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:47.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:38:48'),
(24006, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:47.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:48'),
(24007, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:47.963Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:48'),
(24008, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:48.441Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:49'),
(24009, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:50.358Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:50'),
(24010, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:54.466Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:54'),
(24011, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACB0FF1A78E013F0A8DD24E578EC73E1\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Como funciona seus planos?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"AiT7I+D4cod\\/nwquPJF0OC9\\/mFiphRJYanutO20byFA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771375134,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:54.467Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:38:54'),
(24012, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:55.031Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:55'),
(24013, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:55.161Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:55'),
(24014, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:54.755Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:55'),
(24015, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC01232A11AABA85A7E7340F1FC1EA42\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Valores\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"yC8rV2SpSFYTlsYalJWvSBRSaJyJfdOsgUM3Mr+UXIk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771375136,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:56.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:38:56'),
(24016, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:56.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:56'),
(24017, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:56.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:57'),
(24018, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:38:56.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:38:57'),
(24019, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:19.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:19'),
(24020, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A55E83B6F89B5EB17C82996D52955DDC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/23119338_3760274664107688_2289741666075557902_n.enc?ccb=11-4&oh=01_Q5Aa3wE1TgFNeyuh65enzn1TzNnoFWZQXSJsqYcF4BSghTUiUg&oe=69BC8227&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"SyfMrO+vST3hjMT\\/3Qfz7i6Cy4mtJ\\/Q\\/7JhaBK7bd+Q=\",\"fileLength\":\"165844\",\"height\":1080,\"width\":1080,\"mediaKey\":\"\\/AVXEkAQF20sUlCgtboqO5\\/EgtHjiEPWd4Mb+JGQOpU=\",\"fileEncSha256\":\"TUl5sqi8QNKKJArnrfdIKpTDRwwRy258in1eeWbuqW8=\",\"directPath\":\"\\/v\\/t62.7118-24\\/23119338_3760274664107688_2289741666075557902_n.enc?ccb=11-4&oh=01_Q5Aa3wE1TgFNeyuh65enzn1TzNnoFWZQXSJsqYcF4BSghTUiUg&oe=69BC8227&_nc_sid=5e03e0&_nc_hot=1771375159\",\"mediaKeyTimestamp\":\"1771375158\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb\\/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj\\/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj\\/wAARCABkAGQDASIAAhEBAxEB\\/8QAHAAAAQUBAQEAAAAAAAAAAAAABgADBAUHAggB\\/8QAOhAAAgEDBAECBAQFAwEJAAAAAQIDBAURAAYSITEHExQiQVEjMmFxCBUWQoEkUpGhM0NicnSCkrHR\\/8QAGAEAAwEBAAAAAAAAAAAAAAAAAAIDAQT\\/xAArEQACAgEDAgMIAwAAAAAAAAAAAQIRAxIhMRRRBFKREzJBQoGhsfBhceH\\/2gAMAwEAAhEDEQA\\/APMVttz1lwpqWWaGiSZwvxFVyWKMH+5iATj9gdH0vo7ehuP+SUt3sNXWrTmpl9iok4xD5OCsWjHzOZFCgZyT9NC63elb2SVkDIvEnH6at6H1G3TRXauuVvustNV1XspNNDGFZ1jGFXIHQx5H1wNKm3yjWkTrf6Pbgr9s0F7iqrYkFYyBIZJJFkXlN7I5fJx\\/N9AxOPppreHpNe9q2+5VddW2yaOgWJplgaYN+I7IuA8a57U\\/pp5\\/Uy\\/BozHUUkcnuD8ZaOJZApm90qH48gvMk8c408nqPcESrPsWVhW8TVIbZT+3OVYspdeGCwJJycnvWt0jPjQK37Zd2se1rLf64QiiuoJiVHJkj88fcGPl5AFl7ORoph9F7\\/U1dNS0dyslVPI0KzpFUOWpPdXlGZQUBAPQyobsjVVuHft\\/3DaJbZc64z2rmjRUhRRHB7YKr7YA+TokdYzk6n0nqbuI11NispYVjZGZkpI4\\/eMa8U90gAyYHQ5Z1moo8TS1FdW+m11pd4ybZFbbpbktI9WoVpVWTihf215oDzIU4BAB++nj6Vbj+GusoFIzWyhhrqmISNzUSJ7giAK9yBAWK\\/QA96k3OvenusO4KdaOmuNEY2hNDTJTpG4yykqgCkg+cj7DUqg9UNy0cc9RBdZYpK2okrKvAULUSsuDyBHzLgABfA0ryrsLGGrgol9Orou562y1NbbaY0VFHcKqsllYQQwukbKSePIn8VFwFPZ+3eiCk9D9y1UFVNHW2cRxNiNjNJxqFMSyh0YIVClWHble8g4xrVqPaG66uCmuF13TsukqqqijSSGeni5yQtGnCKbKfiLxVMBsj5Rjxp6r2buz4unkX1B23TzxuKpAH4RlWjEY4rxClOCgADoY09mUZCPRPcBWyk3GzqbqiyRKXmBRTEZckmPBPEYwhY5PjQVvDbFbta+y2qteGeZFVw8HIqysMjpgGB\\/QgHXo\\/wDoK\\/1UFBVU28NkuYoo4hNJSRe5JH7XBUkJTkw4D8rf7R9uoF59KLtfJ4J7jvHa7yxqKSP2G4RRhPEYCqFXHfX762W3G4Rpvc8zNFIpwyMP3Gloh3lRz2bclfaqtR8RQzPTSFTlWZGIJH6HGlrE2DSIVMk0cSIIlJ8qx\\/X9\\/wBtXVDZ6qKkqJahAWk\\/F9tWHPH3xriK03BYo8B8kdq0R61f\\/FV8lO3+gIqwnt8iSEbP1HWfp41y5czdLH+TkzZJKtFPuRLftLcO4bMauz2erraJXAMqIMDBGR507dNkbgt8Jnr7HVQwiJpizxeEUAlsfYAjUKgulw29QXChkpVMdxaAsS55L7cof5fHk9a0O7+r7VtSaiu22HjamemlHvNgo6qD+U9flHedWjjVbHY5Qi6g7RkUFpnjsjXl6Go+A+KNL8U0f4Qkxy4fvjvT1NRw1U9PJIsKIwZ2ULx+QEDPjHnI\\/fR1L6mVE23p9uUu2aKGwMGAUF3lWX3TJ7nInsjOPHj66Cqi5NWzxx08VRiOJozxI+dS3I+fHf8A9aaVvZCu0rRq+0Ny2mz2KtsG8qf37XdQK0GmjDji4clgwwSMiM4z5BGsvo7fTXG41fw0C09MJGkAdM8EJOF7\\/TT11q6megjhU1MUdNFxhRVwqAdkefBJJP76cor57JDtHPIjKFJCgf58\\/vqGmcIOuTc+mONvF7\\/2\\/aNDh9R92xR22lpZ7NUxO0VJFLWUEYZSuUTmzDoDLDkcYyfvogkm9TRUGKS37SccFqpF\\/wBLxjT5QpzywoPIY8A5PnJ1i9deBXIKalgn9lDlmbHIn6fXxonoPVG9WaumrTRUrzT0kNBIhZlzHHxC4KuGB+UZOdPilPTU\\/wBRDBGejVk5Cmu3pve1V9DSVFmsUlVcQop1hooHSTEjRjGCQPm5jP66tLfuD1Rnr66ley7biqrdMscjzQ00Q91xyUIT+ZiDn5fvqts26d03mGhudu2xZpp6HJpqp\\/cd4SzM485BOWJGc6+Lubftom+MuNtsnvSJHF7zQvCXMYPHPt8QQFIHH8uFHXnQ8uNcSN6jGt5Mxjd9Xcq\\/cVbWXYKa6olaWYgeXZiSf+c6Wrm6WO83GtlqppKBZJGLEJlVBJJ6GOvOlo6jF5herw+YsbJfmrbhRxVkcdNTzSojycvyqSAW\\/wADJ\\/xr0yu3tqMBx9RLSQBjo0f11gm1r1a6uspaBrXT1D1kqRI8rceBYgD8veNbk\\/ozVl8pQbfVT5X3JcfTx8ufv\\/zrmjjpe592cyhH4Yq+pZWyk27tyKrlsu+bO1wrHiV5XqaVAkag9BfGTkfTUqi3VUB6jlubbxJqYmzNcKYAxhvnVOOeuOASe85x33qjovSGKztU1dysdqvDSsqQUvFpBEAGZmyeP2A\\/zqTDtCxD4lhsK1ErULEeNLJ+GjK2Sfq2OIJwB+YAZ86rHZLlFY6Uls4\\/wWzbqqDbZIotx2X4r38rKa6kzx9sjj9uPuYPjlwz3nGr7be6Lek9aLzuKxsjP+APjaf7tnjxI+THDHLLZzn6aFKfam38VYn2DQIEiaSICnk\\/EfCFf8MWbryOBz51Msmy9u1d4hgqdkW6ODDYmFO65HeHHLwDgDie+8+NUi1a3ZSLinywF\\/iQudmu992clrrLZWgSSrU+1Kr4RmiwGK5+z9H9dazuXadLGtF\\/T+37MyKxMwakjOVyuAMj7Z+o8edYv\\/Ehs+yWq\\/bJpbNRRW+O4zyQ1S0\\/y+4nOEDr7jm3f66Ptx+luzbHHRR02366qSVuLcbjUD21BUZOGP3\\/AOmqzqtys9o7k2k2vWilLR7ftyyB5S\\/uUFOCyjGAB98s3HvGE7Jzkv1m3ZXgj+D2nazVIh5e7QwBHfzljnr5SPH92R40CJsfZgjM39KVTuRJyZLrUkAqyDiTyxn58dE9g+O8WCenGw6mklao25VRSZTjFLc6kEZfiefzdFemOM9EagmuLIKUeFJhNAdg0Qkg3BDbKW5I7LLFwEbAZPHkqfKDxxkDTklT6VSriR7Y6\\/ZuZGqTaOxrFLI9Pb5bxYqcxCT4VasN7Z6GG9xCe\\/I7OR9vGieT04tkj833Nei+Sc\\/EQ\\/Xz\\/wB3+mkSk+IoklN8RTKwt6R\\/UWj\\/AIbS18rPRvbVXO0095ubyMACxmh7wMD+z7aWs05PKhdOXyRPKNBFYaqupaei9l6qSRUhVMhi5OFA\\/XONbTRbN3mYi1Y+7knYnIjq2KgfTzJ+\\/wD015fttTPb6ulrKQlKiB1ljfr5WU5Bx+41qbfxD+ovuEfzOmA\\/9LH\\/APmqLw9fO\\/Ut0rXzv1Nct2ybmprKjdVz3lSUAKJT+zcmjkdyCzZBLdAKf+dWEG0tvukvLcG\\/QqzLDlr1hgCSvLHRxkH79d\\/fGN2z1x9TL1c6W30txonqZ5AkYkpYgMnryR19dXrbq9X6apKSi1Qu+JmY0cOOQSNhnC\\/mxKoGO8ggeDp4wklSZWMJwVRl6mm2Pae3qqaMQ7k33guqM093\\/LyxxJHnByPp158d6dpts2CqrvZTcG+Q8cgRgbrgAFlUH9e2HXkayeLe\\/qnNaamskmtAp4IppZVNFFlVWRom6C+SyMP8d4Gu\\/wCvPVlKalqxPaAkyxVEZFLCD+LIsYbx0eTKD+\\/1GcMoz7mqM+5O\\/iL2JBt\\/cWzkoLzd56q5TtEk9dN77QFHjwVPRHcmcfprUb5tfc9jgpI631RvZeduKulBEx6x9C2T5HjJ1599Sa31Hu01ju+7Hp5Woav26NYwgCyko3YX6H8Ps\\/TGtHb1O9SrkgzaNq1hVOaq8bElSQOuTeSwA4+SQOvGmkrWw8rrYJ6envkEcj1XqVuAqqs7ZoYPlUAkHp\\/JH0HYPRwdShQ3mrMiRept9geOF52Jt8TdIMsBhjk4+3R+hOs\\/XfW9IoSf6e2bJEG7xSvIR7ihj5P+1l6+3Q8YD8m+d+xPwXbuzVbuHKwlfyEMyefA6OPBz1nSpT7k0sndF\\/RbHnut+Ie+Q3arqvlaouNOwPuAMcH23xyxG3gkYH66tq70SuVUqBK20U3HPcMco5fvknWTH143XaL18K1h21S1NKxpy8VEwaNeXYHzA47Jx150RL65+pslbW09PYLfU\\/CSNHI8VNJx6+vb\\/UYI\\/fXO8OJJvISXgoytyW7Cs+g92Hi80X\\/wfS1lt1\\/iV34lUUENupWUcWj+GOQcnOctnS03SYuxnQ4exhyO2AeiP1OviySGRyAA3Q8aaUEAd4zqUaKqWm+KenqBTMQomKEIT31yxj6a6bOzYbMs6MrrIysDkFeiNFe2JaGQwyXu9VtPiRlkRJHDFQF9sghT0Dzz\\/jGrP01qrsbRdKS2261VMJljDGsdlclwflXBGcrG36jsgjJ0X00O6qq1Gb+n7BBArO6M7MrKy\\/Eo3XLJ7eU9j+5P00UzLAqtl24LZWpQ3m6rUqjrCpkfhIxlYnIx0Cir19378afvDbRjajS33m51EQrwk0bSPhaUYKspIHzDs4x0fHXZI6y6bjoEus1RY7CntrFI7AyFm93ioweXzf8AYAEHr5T9zqetHu6C43m4TW2wiSoKySRGRlVRGYwChBGCTIgH1ydBoIxNsyotsAqLzd4XIUzU3NmUHkhYA9g\\/KGAP+4L1gZMpRsaRYxNuW+Ov5mwWJZgUxkHoZAYfXHR78asaun3PtitvVye02dmaWCapiXMnFi7IoQ\\/mGS3eDnx3502tFumguFciWy0e\\/cKlEqqT5nLhFx5PaqVqYyWDZ8HOeWtMK+EbPjcrT7kusJJ6ZjIwGGwpICjPy\\/YjGMd\\/Sn3pX2uKnjk25d7hIzykmOR3HBAxKjsfQccdn6+NFs1HuWfcVL8Tt60U1fSSRV6ysX9vEYiHzdkYw0eR+5671zd7Xuq5263rW2S0LHQRLUxvgqCnPnzKflI+coVA7+x49YBj0lTNLKZZJGaUnJY+SfvnXo7bm5KGhioZFgMUFVFFNWyJD7jvL7KqRgnBXkAf+cg6zD1SF8aS3w7hobbREyScDRrjDDiHDEZye1P189fbV5BJYYtpwW+HddJ\\/OfabMro\\/sKMjiueOQeJP\\/GuDx0HJRUTt8HOEW\\/adgA9QUrBu+4y14kD1Envxl8ZMT\\/Mh66\\/KR40tV93udZVTxR1FQk60sYponRcAxqTjHQJHZ896Wu6Caikzkk03aK4McedexN77Ce8+iWzttrWikraOgStEHAEzycFUrkkBfnlAyfvoU\\/h42LQ7n9GdytHQW6rvVTXfDRyzxoXp4+MeSGIJXpnIx5xrv+Jbc8lHvKla07n+HemgakkggQEhOaOex+vEf+z9DqWSdNLuLGE8jqP+L+zE1sdHt2+XK07rqJ4KuGFGi+DckCRkDLnrsgMOuv7u9XE0+yuE8kF53EtSSfakYeAwkxyx\\/tJj5Y8gNjz0PVW5KpdyNuT+YGtu8jsXeVSvIshUnrBBweiMEHBByNHNhvm8LtY1lt9LZZqVyXNNJC7F\\/b95u85BLM0vXLkS\\/wBm1WLtD5MbxunX0d\\/gHK5tnm5MYbneloHpnVuWWZ5QQI1bIHQHInGegAO9Wdwn2DwqPYuF\\/nUhvbUyOCXynEnK4xjl+vQ1b7ktG+L7ao7dcf5KKSoqfd9yKRgA2ZfmJBIweDd4\\/uXxnTtPX7zmp6l0WwR01HWSLKje4qgxwJlgmclQnAAgcv8AGdMIDUVRsypT\\/U1V8jQjHAzO4DAZ7+T8ufH1z5GO9VcE+24YaJnmukj\\/AATidI3ZSJiwA+mOPDJ6znGj2iot6wTSpSXGyKjlnaNZ51QtEODMPGCRGc4wCAfocF6qm37TSRSzJaIpXUB5EaRhJ8sbRqwUnr8Rsf2HMmetAAoZtkx1saw3PcApROMGF2yE5jl0VHfH\\/OeXX5ctQybJVYw10vrYlDjJZeJCDJbCnovzIIycFRjydG8dR6hJCxg\\/kUzxERtCjOpdpuT5C5Cs2fLr38x7xy1Vbhvu9tvWd62qFjEayiJvYiYyZB6cn\\/zIrZJySF840AZzu+SyNNQiwVFdPCsA9wVZyyPk9DoAdYOBkfrodXGpN3uEt0uM1ZOkSSSYysScUGAAAB9Bgah6AOm86WudLQBOt13uVsWVbbcKyjEo4yCnmaPmPscEZ1Dd2dizsWJ+pOdLS0Ac67WWRVCq7gA5AB+v30tLQB9E0oxiRxj\\/AMR18MshJJkc5OT2fOlpaAOvfmwB7smBnHzHrPnXwTSjxK46x+Y+PtpaWgBe\\/L1+LJ14+Y9a+NLIycWdyv2J60tLQBxpaWloAWlpaWgD\\/9k=\",\"contextInfo\":[]}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771375159,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:19.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:19'),
(24021, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:20.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:20'),
(24022, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55E83B6F89B5EB17C82996D52955DDC\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771375159787,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:19.787Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:20'),
(24023, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55E83B6F89B5EB17C82996D52955DDC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771375163824,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:23.825Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:24');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24024, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5D557D883A44C7F25F9345439431013\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"7 anos no mercado!\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771375164,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:24.518Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:24'),
(24025, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:24.517Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:24'),
(24026, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:25.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:25'),
(24027, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5D557D883A44C7F25F9345439431013\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771375164757,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:24.758Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:25'),
(24028, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5D557D883A44C7F25F9345439431013\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771375182068,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:42.068Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:42'),
(24029, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:43.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:43'),
(24030, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:43.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:43'),
(24031, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A528F74292D89D60F5CF70240AB952BA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"👀\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771375183,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:43.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:44'),
(24032, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:44.249Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:44'),
(24033, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A528F74292D89D60F5CF70240AB952BA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771375184845,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:44.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:45'),
(24034, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:46.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:46'),
(24035, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:47.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:47'),
(24036, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC94F3E8D90D39B5CBE367967F7E79FF\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Pega record globo SBT?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Cmvc78nFUzdwvKC7+mBSXzNuXPGK2KipDpkDZwZ4R\\/8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771375195,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:55.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:39:56'),
(24037, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:55.937Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:56'),
(24038, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:56.522Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:57'),
(24039, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:39:56.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:39:57'),
(24040, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:22.055Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:22'),
(24041, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:24.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:24'),
(24042, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:24.754Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:24'),
(24043, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:34.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:34'),
(24044, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC428B6FD9E7B165B379522759867D07\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Minha filha tava assistindo no meu Cel\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lQZiXcUus8cmssyKb+4Z7PZzSLv0sC1ATixhjVgW1oM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376014,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:34.172Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:53:34'),
(24045, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:34.370Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:34'),
(24046, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:34.641Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:34'),
(24047, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:34.736Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:35'),
(24048, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:38.136Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:38'),
(24049, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:38.381Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:38'),
(24050, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACEC4A91380BB912948AD243D539FB6C\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Não falou que tinha mensagem\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"IVCaihahVOeGtCRMcR1GMBYYLBZFuTxQlqf52WJlEgM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376021,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:42.041Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:53:42'),
(24051, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:42.040Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:42'),
(24052, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:42.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:42'),
(24053, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:42.323Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:42'),
(24054, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:42.798Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:43'),
(24055, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:53.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:53'),
(24056, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC77B7671F339515667EA6B56E731ED8\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"O meu está dando conta inválida\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"N6WzUEPRKvyQ9JK9NBsBSa9LanE4WlRPkFehtITy+gM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376033,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:53.200Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:53:53'),
(24057, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:53.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:54'),
(24058, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:53.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:54'),
(24059, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:53:53.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:53:54'),
(24060, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:03.847Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:04'),
(24061, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:05.508Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:05'),
(24062, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACE3FE413F65F3D70FBFA38E796DF016\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Eu escrevi Playsim e não aparece nada com esse nome\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"sC6C730Gu2td4UqLNOLVg4h1wpGWhNIt3sVGvfCr\\/GA=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376045,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:05.510Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:54:05'),
(24063, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:05.807Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:06'),
(24064, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:06.117Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:06'),
(24065, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:57.961Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:58'),
(24066, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:58.384Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:58'),
(24067, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:54:59.164Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:54:59'),
(24068, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:05.241Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:05'),
(24069, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"ACC2D642C7B2614AFAF8AAF151F0E58B\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Me passa esse de 7 dias grátis então\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"kJCVGGdqOOiOKBNpzd4jq6jfRyBuVeNSawDdBe3CVT0=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376105,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:05.242Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:55:05'),
(24070, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:05.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:06'),
(24071, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:05.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:06'),
(24072, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:05.819Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:06'),
(24073, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:14.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:14'),
(24074, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC932D0E7D76E21FA7A7D206B93370B3\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Aí vejo se normaliza até lá\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0Uz0beM1pK21RGLMMyEr6IEMwYJl6rVHBUAthpCLgQY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376114,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:14.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:55:14'),
(24075, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:14.829Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:15'),
(24076, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:55:14.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:55:16'),
(24077, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:57:59.220Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:57:59'),
(24078, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A52DA5019661058DCD196EC76F5B46A0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bob player\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376279,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:57:59.221Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:57:59'),
(24079, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:57:59.790Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:00'),
(24080, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A52DA5019661058DCD196EC76F5B46A0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376279882,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:57:59.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:00'),
(24081, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A534D83EBCA0255F10D4CEA887C195D0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Procura\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:01.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:01'),
(24082, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:01.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:01'),
(24083, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A534D83EBCA0255F10D4CEA887C195D0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376281433,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:01.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:02'),
(24084, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:01.859Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:02'),
(24085, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:20.307Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:20'),
(24086, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:22.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:22'),
(24087, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC58E009097142D3AC1B8BA1974C53FB\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Vou ver aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WfPKbyw25FQQzuMKeYPCPtlXPjeh\\/PUem1VxMDYA22Q=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:22.506Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:22'),
(24088, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5C6192C9218A3DD99CA90E36E64A825\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sim\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376302,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:22.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:23'),
(24089, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:23.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:23'),
(24090, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5C6192C9218A3DD99CA90E36E64A825\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376303313,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:23.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:24'),
(24091, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:23.521Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:24'),
(24092, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:22.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:25'),
(24093, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:22.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:25'),
(24094, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5C6192C9218A3DD99CA90E36E64A825\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771376306574,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:26.575Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:26'),
(24095, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:32.491Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:32'),
(24096, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55DF3EB2465E7EA689CF6789C0D2B2D\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771376312723,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:32.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:32'),
(24097, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:33.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:33'),
(24098, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A55DF3EB2465E7EA689CF6789C0D2B2D\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Sao mais de 1500 canais\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376312,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:32.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:33'),
(24099, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:44.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:45'),
(24100, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A55B30553FB30E0433618BE9E0D59B64\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fora filmes e séries novelas canais 25hrs ...\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376324,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:44.893Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:45'),
(24101, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A55B30553FB30E0433618BE9E0D59B64\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771376325207,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:45.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:45'),
(24102, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:45.442Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:46'),
(24103, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:56.945Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:57');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24104, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5E497DC671988E67A77E19AF3311D32\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376337142,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:57.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:57'),
(24105, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5E497DC671988E67A77E19AF3311D32\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Todos os streamings em um so app\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376336,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:56.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:58:58'),
(24106, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:58:57.671Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:58:58'),
(24107, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5E497DC671988E67A77E19AF3311D32\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771376350254,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:10.254Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:59:10'),
(24108, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:11.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:11'),
(24109, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:12.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:13'),
(24110, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC788B237DDBE4C62F4303CFA7E51C7F\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Ótimo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ymsOWBK0XhHHkiqOJaRu8XYopcv9nxz2mxlfJhU74UM=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376352,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:12.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:59:13'),
(24111, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:13.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:13'),
(24112, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:13.374Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:14'),
(24113, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A51A86C54185978D5D1A80DA8207BB6F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Chamar amanhã 20 horas\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376372,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:32.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:59:32'),
(24114, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:32.312Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:32'),
(24115, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:33.133Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:33'),
(24116, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A51A86C54185978D5D1A80DA8207BB6F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376373403,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:33.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:59:33'),
(24117, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"8383826497580@lid\",\"id\":\"A5836E9F3BE479389B906588D612F0D7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376373982,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:33.982Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:59:34'),
(24118, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"8383826497580@lid\",\"fromMe\":true,\"id\":\"A5836E9F3BE479389B906588D612F0D7\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"+55 47 9952-7158\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376373,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:33.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 21:59:34'),
(24119, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"8383826497580@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534417097_1652446239442328_4828454760261306514_n.jpg?ccb=11-4&oh=01_Q5Aa3wGTv5c8HPLM1lhUfPh0HYBCg5_a_8OObK23ahYB4XaNLQ&oe=69A22BC7&_nc_sid=5e03e0&_nc_cat=104\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:34.347Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:35'),
(24120, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"8383826497580@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T21:59:33.770Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 21:59:35'),
(24121, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5365E93397C6C172EC326235CDAB15B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Qualquer coisa pode chamar tbm blz\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771376415,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:15.697Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:00:16'),
(24122, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:15.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:16'),
(24123, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5365E93397C6C172EC326235CDAB15B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771376415932,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:15.932Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:00:16'),
(24124, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:16.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:16'),
(24125, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5365E93397C6C172EC326235CDAB15B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771376418698,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:18.698Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:00:18'),
(24126, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:20.065Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:20'),
(24127, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:21.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:21'),
(24128, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACB9ACF87922CDA98838ADA29DFDC5F0\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Blz\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"c6lkcrXbFh4CJwHgSqDLGGkx1FfmzwsgmNNrTulQ3iQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376421,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:21.676Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:00:21'),
(24129, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:21.966Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:22'),
(24130, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:22.029Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:22'),
(24131, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:22.233Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:22'),
(24132, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACE90C1DBA7522ADC4935CA73BE2DAAB\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"E vc vem em casa instalar ou faz pelo celular nesmo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"d0MOms6VgFhh6Ujrt\\/dVE2uLI3MJx1ip5ShA2CHgKtI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376431,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:31.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:00:31'),
(24133, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:31.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:31'),
(24134, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:31.832Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:32'),
(24135, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:32.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:32'),
(24136, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:32.283Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:32'),
(24137, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACAB79C9CF393E2DE4EEE3C22DF83679\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Vou querer esse mensal dai\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VD\\/d1xWvzFP9YBw95fzkg42a+c3GXZRz9i3VUTj9C+Y=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376436,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:36.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:00:36'),
(24138, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:36.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:36'),
(24139, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:36.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:37'),
(24140, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:36.607Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:37'),
(24141, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:47.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:47'),
(24142, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:00:51.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:00:52'),
(24143, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:01:53.234Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:01:53'),
(24144, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:01:53.376Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:01:53'),
(24145, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:07.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:08'),
(24146, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:18.321Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:18'),
(24147, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:30.821Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:31'),
(24148, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:33.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:33'),
(24149, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"presences\":{\"118507056427159@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:38.002Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:38'),
(24150, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:38.371Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:38'),
(24151, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":false,\"id\":\"AC5355A8D165B40CB9BADA6591B36993\"},\"pushName\":\"Marii Soares\",\"message\":{\"conversation\":\"Ele tá demorando muito pra instalar, amanhã cedo eu entro pra acessar, aí te envio uma mensagem tá bom, obrigado boa noite\",\"messageContextInfo\":{\"deviceListMetadata\":{\"senderKeyHash\":\"gdeDRJzPOXG39w==\",\"senderTimestamp\":\"1770217894\",\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"DNvehodyxKN3O\\/g6jJkWlUrY15sDHE6n2oSsgPADhSU=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771376618,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:38.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:03:38'),
(24152, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:38.923Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:39'),
(24153, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wGHOppR3xl3jYzAntwjZGTFI0tgSlMqU5nvwMPWlgyD7w&oe=69A216BA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:03:38.655Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:03:40'),
(24154, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"3EB08F68D06A5F1E067944\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771377302802,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:02.823Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:03'),
(24155, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"3EB08F68D06A5F1E067944\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"agente atende remoto o brasil e extior\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771377302,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:03.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:03'),
(24156, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:03.271Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:03'),
(24157, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:03.981Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:04'),
(24158, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"3EB05F71505E167D474E82\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"bem pratico\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771377303,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:03.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:04'),
(24159, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:03.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:05'),
(24160, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"3EB05F71505E167D474E82\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771377304379,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:04.380Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:05'),
(24161, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:04.660Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:05'),
(24162, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:08.985Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:09'),
(24163, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"3EB010713DCD7452F08A7A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"pra instalar te ajudo\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771377308,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:08.986Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:09'),
(24164, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"3EB010713DCD7452F08A7A\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771377309317,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:09.317Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:09'),
(24165, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:09.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:10'),
(24166, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"3EB010713DCD7452F08A7A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771377312268,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:12.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:12'),
(24167, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"3EB05F71505E167D474E82\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771377312292,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:12.292Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:12'),
(24168, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"3EB08F68D06A5F1E067944\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771377312299,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:12.300Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:13'),
(24169, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:15.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:16'),
(24170, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC805889F3EB61EA73D6396A593E5543\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3bomWUUMejn5146J3dlq\\/wpAxy1d+6hZKhNLi+9IkuE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771377316,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:16.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:15:16'),
(24171, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:16.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:17'),
(24172, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:16.898Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:17'),
(24173, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:15:17.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:15:17'),
(24174, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EEDA0D74C7A8390E6B0FCB516D1C22\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387460},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387460},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378222,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:22.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:30:23'),
(24175, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:22.896Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:23'),
(24176, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E5CC35885815F0F856\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771378224,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:24.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:24'),
(24177, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:23.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:25'),
(24178, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:44.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:45'),
(24179, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A58DD9F7562E730B92BD0138FBA84F83\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387478},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387478},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378242,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:44.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:30:45'),
(24180, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB041EB0A5336E8DFB764\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771378245,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:45.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:46'),
(24181, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:46.930Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:47'),
(24182, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:51.449Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:51'),
(24183, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A548505B2C6B02A58506BD2E2E6060DA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Teste\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387486},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387486},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378251,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:51.450Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:30:51'),
(24184, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:30:52.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:30:52');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24185, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EBFE8E7EFD77EA271E6532174AAA88\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago 47991063914\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387524},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387524},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378286,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:26.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:31:27'),
(24186, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:26.567Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:27'),
(24187, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:27.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:27'),
(24188, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EADFFC7EBB39C37650\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"✅ *Nenhuma pendência encontrada*\\n\\nCliente: johnny\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771378287,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:27.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:28'),
(24189, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A508065E434A832836A7CDC4B9175F64\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387534},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387534},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378298,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:38.569Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:31:39'),
(24190, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:38.568Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:39'),
(24191, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:39.333Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:39'),
(24192, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A291DFD8E3A5851972\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771378299,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:39.734Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:40'),
(24193, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A57724F4E5B880FA21BF5ADF076009BC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pendentes\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387545},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387545},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378309,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:49.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:31:50'),
(24194, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:49.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:50'),
(24195, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:50.564Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:50'),
(24196, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E0DA20C2D269DA7348\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📋 *CLIENTES PENDENTES*\\n\\n─────────────────────\\n👤 *Solan \\/ IOS VIVO*\\n📱 3399921854\\n📅 Venceu há 7 dias\\n💰 R$ 30,00\\n─────────────────────\\n\\n📊 Total: 1 cliente(s) pendente(s)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771378310,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:31:50.733Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:31:51'),
(24197, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:32:17.576Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:32:17'),
(24198, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5E8B21425AAADCC4E2DDCF901365A91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/buscar 47992012997\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387573},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":387573},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378337,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:32:17.577Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:32:18'),
(24199, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wF9JPPzF4PUXynImujp1C-BxqpcdDy-GLq7zuj0aKqxKg&oe=69A215D4&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:32:18.348Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:32:18'),
(24200, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB093B4475A7A23A555BC\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"🔍 *INFORMAÇÕES DO CLIENTE*\\n\\n─────────────────────\\n👤 *Nome:* carol\\n📱 *Telefone:* 47992012997\\n💰 *Valor:* R$ 10,00\\n📅 *Vencimento:* 17\\/02\\/2026\\n⏰ *Dias restantes:* 0\\n📊 *Plano:* Mensal\\n🆔 *ID:* 59\\n✅ *Status:* 🟡 Em_dia\\n─────────────────────\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771378338,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:32:18.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:32:18'),
(24201, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:33.452Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:37:33'),
(24202, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:35.592Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:37:35'),
(24203, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC9BAB59A4A86157FA734018158A5B71\"},\"pushName\":\"Ana\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dm4NSkKS6V88lcZ1925p4ZsFm4aVHRImoq6x3cL8pUg=\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":4},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771378655,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:35.593Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:37:36'),
(24204, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:35.880Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:37:36'),
(24205, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:36.183Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:37:36'),
(24206, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5B49055845529132042F95FAA8E2428\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771378657179,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:37.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:37:37'),
(24207, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:39.153Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:37:39'),
(24208, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A5B49055845529132042F95FAA8E2428\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771378658,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:39.154Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:37:39'),
(24209, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:37:39.711Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:37:40'),
(24210, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5B49055845529132042F95FAA8E2428\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771378691037,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:38:11.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:38:11'),
(24211, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:38:11.719Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:38:11'),
(24212, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC875FD7751B1156C0707E7577816722\"},\"pushName\":\"Ana\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/594023953_2036902773834538_8067212194627093372_n.enc?ccb=11-4&oh=01_Q5Aa3wFBEx1ETKVgCpgS917vfA6ISaCtL4Ywrt_mk0u9SLzfmw&oe=69BC7DD2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"zCu8ryOveJOOLycUNCzd4aatwqmeNfMu6nhyYLveFSA=\",\"fileLength\":\"41232\",\"height\":720,\"width\":1280,\"mediaKey\":\"926dUqO56PoJH3n+eeKRlI+qAY8P6ilsvYT7DWBG5QI=\",\"fileEncSha256\":\"K++VD0CxVKSfJvK4JiSwIBWgFPIFceBKjwSKncC4RXE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/594023953_2036902773834538_8067212194627093372_n.enc?ccb=11-4&oh=01_Q5Aa3wFBEx1ETKVgCpgS917vfA6ISaCtL4Ywrt_mk0u9SLzfmw&oe=69BC7DD2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771378689\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACgASAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAIe8wysosaCMdRYVrvRMiQuwtI7tzDVYd5NYeTqSSAW1CWlACgWAAAH\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgARAwQQEiEiMRMgI0FDUXKR\\/9oACAEBAAE\\/ANLq+BmTXgrU1D8iYQfwZRMow43AsiVsHImB+T9foIxyZe6hMaNRDrc9LibGMf2ZFVmvkqxlAr5OXWZK5mt9Me8\\/qZp8aPfNiI+LSJ5dog7+p7LgyaAfbM1JxOAcahY3ncGBiPBMJJ8kwy5e4UmDBkIvjCpGx8ey5\\/\\/EABoRAAAHAAAAAAAAAAAAAAAAAAABERIgMGL\\/2gAIAQIBAT8Ak7JBaP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8Af\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"ohpMiyrOkFCdRYJ4o5oH+jaOsnJyXYjPSyxKTbTefdZMxVDwZQYsFg==\",\"scanLengths\":[6142,16668,5791,12631],\"midQualityFileSha256\":\"uWWTpnU18cc\\/tKVQJiA2iukXa3\\/Xnd9muXdR89U6qwU=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"+rWvOzf6V+8azfEUFHoq8ocRwTxQeBbe\\/WoJhfsGzH4=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771378691,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:38:11.720Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:38:12'),
(24213, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:38:12.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:38:12'),
(24214, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:38:12.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:38:12'),
(24215, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:39.680Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:45:40'),
(24216, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A59E9D501D24B3DB9415D315F09BE404\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379139,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:39.681Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:45:40'),
(24217, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:40.240Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:45:40'),
(24218, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59E9D501D24B3DB9415D315F09BE404\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379140406,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:40.407Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:45:42'),
(24219, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:45.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:45:45'),
(24220, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A5DCA76BACDAE72CBA9EBB24BD6F8020\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"?\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"AC875FD7751B1156C0707E7577816722\",\"participant\":\"23313602625574@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/594023953_2036902773834538_8067212194627093372_n.enc?ccb=11-4&oh=01_Q5Aa3wFBEx1ETKVgCpgS917vfA6ISaCtL4Ywrt_mk0u9SLzfmw&oe=69BC7DD2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"zCu8ryOveJOOLycUNCzd4aatwqmeNfMu6nhyYLveFSA=\",\"fileLength\":\"41232\",\"height\":720,\"width\":1280,\"mediaKey\":\"926dUqO56PoJH3n+eeKRlI+qAY8P6ilsvYT7DWBG5QI=\",\"fileEncSha256\":\"K++VD0CxVKSfJvK4JiSwIBWgFPIFceBKjwSKncC4RXE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/594023953_2036902773834538_8067212194627093372_n.enc?ccb=11-4&oh=01_Q5Aa3wFBEx1ETKVgCpgS917vfA6ISaCtL4Ywrt_mk0u9SLzfmw&oe=69BC7DD2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771378689\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACgASAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAIe8wysosaCMdRYVrvRMiQuwtI7tzDVYd5NYeTqSSAW1CWlACgWAAAH\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgARAwQQEiEiMRMgI0FDUXKR\\/9oACAEBAAE\\/ANLq+BmTXgrU1D8iYQfwZRMow43AsiVsHImB+T9foIxyZe6hMaNRDrc9LibGMf2ZFVmvkqxlAr5OXWZK5mt9Me8\\/qZp8aPfNiI+LSJ5dog7+p7LgyaAfbM1JxOAcahY3ncGBiPBMJJ8kwy5e4UmDBkIvjCpGx8ey5\\/\\/EABoRAAAHAAAAAAAAAAAAAAAAAAABERIgMGL\\/2gAIAQIBAT8Ak7JBaP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8Af\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"ohpMiyrOkFCdRYJ4o5oH+jaOsnJyXYjPSyxKTbTefdZMxVDwZQYsFg==\",\"scanLengths\":[6142,16668,5791,12631],\"midQualityFileSha256\":\"uWWTpnU18cc\\/tKVQJiA2iukXa3\\/Xnd9muXdR89U6qwU=\"}}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"stanzaId\":\"AC875FD7751B1156C0707E7577816722\",\"participant\":\"23313602625574@lid\",\"quotedMessage\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/594023953_2036902773834538_8067212194627093372_n.enc?ccb=11-4&oh=01_Q5Aa3wFBEx1ETKVgCpgS917vfA6ISaCtL4Ywrt_mk0u9SLzfmw&oe=69BC7DD2&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"zCu8ryOveJOOLycUNCzd4aatwqmeNfMu6nhyYLveFSA=\",\"fileLength\":\"41232\",\"height\":720,\"width\":1280,\"mediaKey\":\"926dUqO56PoJH3n+eeKRlI+qAY8P6ilsvYT7DWBG5QI=\",\"fileEncSha256\":\"K++VD0CxVKSfJvK4JiSwIBWgFPIFceBKjwSKncC4RXE=\",\"directPath\":\"\\/v\\/t62.7118-24\\/594023953_2036902773834538_8067212194627093372_n.enc?ccb=11-4&oh=01_Q5Aa3wFBEx1ETKVgCpgS917vfA6ISaCtL4Ywrt_mk0u9SLzfmw&oe=69BC7DD2&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771378689\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACgASAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAAABAECAwUGAQEBAQAAAAAAAAAAAAAAAAAAAQL\\/2gAMAwEAAhADEAAAAIe8wysosaCMdRYVrvRMiQuwtI7tzDVYd5NYeTqSSAW1CWlACgWAAAH\\/xAAmEAACAgEDAwMFAAAAAAAAAAABAgARAwQQEiEiMRMgI0FDUXKR\\/9oACAEBAAE\\/ANLq+BmTXgrU1D8iYQfwZRMow43AsiVsHImB+T9foIxyZe6hMaNRDrc9LibGMf2ZFVmvkqxlAr5OXWZK5mt9Me8\\/qZp8aPfNiI+LSJ5dog7+p7LgyaAfbM1JxOAcahY3ncGBiPBMJJ8kwy5e4UmDBkIvjCpGx8ey5\\/\\/EABoRAAAHAAAAAAAAAAAAAAAAAAABERIgMGL\\/2gAIAQIBAT8Ak7JBaP\\/EABQRAQAAAAAAAAAAAAAAAAAAADD\\/2gAIAQMBAT8Af\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"ohpMiyrOkFCdRYJ4o5oH+jaOsnJyXYjPSyxKTbTefdZMxVDwZQYsFg==\",\"scanLengths\":[6142,16668,5791,12631],\"midQualityFileSha256\":\"uWWTpnU18cc\\/tKVQJiA2iukXa3\\/Xnd9muXdR89U6qwU=\"}}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771379145,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:45.636Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:45:45'),
(24221, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5DCA76BACDAE72CBA9EBB24BD6F8020\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379146175,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:46.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:45:46'),
(24222, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:46.214Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:45:46'),
(24223, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A59E9D501D24B3DB9415D315F09BE404\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771379155360,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:55.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:45:55'),
(24224, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5DCA76BACDAE72CBA9EBB24BD6F8020\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771379155353,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:55.353Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:45:55'),
(24225, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:45:56.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:45:56'),
(24226, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:07.268Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:07'),
(24227, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:10.023Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:10'),
(24228, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACC2FAE723597AFCAE56D6E7E7CF3331\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Não esta dando para assistir série\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"TpPNANUW\\/kBm92q2nBt6r1MLGRfs25DenSwD2zyM+68=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771379169,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:10.024Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:46:10'),
(24229, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:10.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:11'),
(24230, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:11.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:11'),
(24231, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:10.103Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:12'),
(24232, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:10.316Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:12'),
(24233, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:10.597Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:12'),
(24234, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:18.845Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:19'),
(24235, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:19.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:20'),
(24236, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACFE2925359C14CBB581BDDC6F29E4F7\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Quando entro para assistir aparece isso\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3dhQrsLRINFmBZSOOPKfCRyFaqG6xkbBy+1bOyh+uXY=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771379188,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:28.729Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:46:28'),
(24237, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:28.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:28'),
(24238, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:29.011Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:29'),
(24239, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:29.289Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:29'),
(24240, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:57.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:58'),
(24241, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A553B6BA4754BEE8803BF2878885DF88\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Agr ja to deitado\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379217,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:57.891Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:46:58'),
(24242, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A553B6BA4754BEE8803BF2878885DF88\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379218325,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:58.325Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:46:58'),
(24243, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:46:58.459Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:46:59'),
(24244, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:18.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:19'),
(24245, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A5D541F97291F3D85BC687830FFBEDF4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Mais chama amanhã q agente resolv\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379238,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:18.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:19'),
(24246, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5D541F97291F3D85BC687830FFBEDF4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379239236,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:19.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:19'),
(24247, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:19.687Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:20'),
(24248, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A50F33880E8F37B5CC8497E7482AFD20\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"E so 1 serie?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379243,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:23.703Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:23');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24249, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:23.702Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:23'),
(24250, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A50F33880E8F37B5CC8497E7482AFD20\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379244009,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:24.010Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:24'),
(24251, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:24.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:24'),
(24252, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5D541F97291F3D85BC687830FFBEDF4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771379246531,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:26.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:26'),
(24253, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A50F33880E8F37B5CC8497E7482AFD20\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771379246528,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:26.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:26'),
(24254, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A553B6BA4754BEE8803BF2878885DF88\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771379246535,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:26.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:27'),
(24255, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:29.827Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:30'),
(24256, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:32.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:32'),
(24257, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC00B28ADF260A0661BC46C09AB03DA5\"},\"pushName\":\"Ana\",\"message\":{\"extendedTextMessage\":{\"text\":\"Não\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A50F33880E8F37B5CC8497E7482AFD20\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"E so 1 serie?\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bghLcYVaDqyX6V\\/ysz1NgUGYuegN8AGCJ0FL98V8Dzc=\"}},\"contextInfo\":{\"stanzaId\":\"A50F33880E8F37B5CC8497E7482AFD20\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"E so 1 serie?\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771379263,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:43.439Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:47:43'),
(24258, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:43.438Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:43'),
(24259, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:43.723Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:44'),
(24260, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:47:44.012Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:47:44'),
(24261, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:24.171Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:24'),
(24262, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:29.005Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:29'),
(24263, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:32.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:32'),
(24264, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC445A9EF9C22581BB9D6828DB5F243E\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Filme tbm não está indo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"FVFh6hTWKp0WPqTD5MULTetvHUgwRJrqJf79KZRwZfc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771379500,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:40.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:51:40'),
(24265, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:40.633Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:41'),
(24266, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:40.931Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:41'),
(24267, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:41.614Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:41'),
(24268, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:51:57.142Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:51:57'),
(24269, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:52:00.053Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:52:00'),
(24270, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC80E75FD49D5331BC9B936EA8567B3D\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Só ao vivo\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"A7CMitIqNdl24l57FFg0jKhQsZ494wG\\/t3MBnrk4eho=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771379519,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:52:00.054Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:52:00'),
(24271, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:52:00.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:52:01'),
(24272, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wH2AOOfqwDTKa-3Ill2q4851fUp04dd5D7NZy2FdI9FFg&oe=69A2124B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:52:00.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:52:01'),
(24273, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:56:23.718Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:56:24'),
(24274, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACCFB962E1B784D47A7F20A63D713C2D\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"E não são todos do ao vivo que esta funcionando\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"oT8OfRMTQ5Z3rWx6meTyqrl\\/BgjwRzUXIjer4eOR\\/rc=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771379793,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:56:33.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:56:34'),
(24275, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:56:33.939Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:56:34'),
(24276, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:56:34.223Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:56:35'),
(24277, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:56:34.542Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:56:35'),
(24278, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:15.226Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:15'),
(24279, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A5DA48ABB476C1A44606FF9C12F44B0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vou ver\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379835,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:15.227Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:57:15'),
(24281, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:15.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:16'),
(24282, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:49.555Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:49'),
(24283, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A58EF12DA1E894F75D2F55676411E7F3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Mano\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379869,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:49.556Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:57:49'),
(24284, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A58EF12DA1E894F75D2F55676411E7F3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379869797,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:49.797Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:57:50'),
(24285, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:50.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:50'),
(24286, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A5FF59ADD8902C510487B4618098E4AA\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Vods off\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379874,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:55.075Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:57:55'),
(24287, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:55.073Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:55'),
(24288, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A5FF59ADD8902C510487B4618098E4AA\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379875320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:55.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:57:56'),
(24289, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:55.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:57'),
(24290, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:59.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:57:59'),
(24291, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A5BC7050CA9BDAC9839C5DE70212712B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Canais maioria off\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379879,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:59.372Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:57:59'),
(24292, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:57:59.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:00'),
(24293, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A5BC7050CA9BDAC9839C5DE70212712B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379880534,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:00.535Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:00'),
(24294, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A57614125B902B40360D28DB8F1CCA32\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"stickerMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.15575-24\\/595472764_868321846200934_996380370688818462_n.enc?ccb=11-4&oh=01_Q5Aa3wGYAHPNWRPOhdmCx4U-ejgTNPgbWgrmFntQmPmcDLw-yA&oe=69BC786D&_nc_sid=5e03e0&mms3=true\",\"fileSha256\":\"ZJOt5grzL65ugqLmOUc52n58UvTXwCc9yCHdSJSNzQc=\",\"fileEncSha256\":\"4hKrIm2R3Zoudby+KdVu2XLk5kCUgm94GoeODKTpFnU=\",\"mediaKey\":\"k6QtNtnCBpgHN7K8EPCACVZvh7P0KPEy0YyxLVdPg9M=\",\"mimetype\":\"image\\/webp\",\"directPath\":\"\\/v\\/t62.15575-24\\/595472764_868321846200934_996380370688818462_n.enc?ccb=11-4&oh=01_Q5Aa3wGYAHPNWRPOhdmCx4U-ejgTNPgbWgrmFntQmPmcDLw-yA&oe=69BC786D&_nc_sid=5e03e0\",\"fileLength\":\"98986\",\"mediaKeyTimestamp\":\"1771379885\",\"isAnimated\":false,\"stickerSentTs\":\"1771379884975\",\"isAvatar\":false,\"isAiSticker\":false,\"isLottie\":false}},\"contextInfo\":null,\"messageType\":\"stickerMessage\",\"messageTimestamp\":1771379886,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:06.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:06'),
(24295, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:06.326Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:06'),
(24296, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:06.892Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:07'),
(24297, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A57614125B902B40360D28DB8F1CCA32\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379886617,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:06.618Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:07'),
(24298, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5DA48ABB476C1A44606FF9C12F44B0B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771379905022,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:25.022Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:25'),
(24299, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:25.357Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:25'),
(24300, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:25.649Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:26'),
(24301, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:25.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:26'),
(24302, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC5B8B9F013C80FFCBDC2F48EB105B32\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Ta bom\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"fx2AWexGxXzFIq3um+l4m52nE8u0+8e8bYe5Hf4LuDI=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771379905,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:25.359Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:26'),
(24303, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A543EFC4163D4D22F52F149A3CB813F0\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Consegue ver\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771379924,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:44.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:44'),
(24304, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:44.705Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:45'),
(24305, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:45.279Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 22:58:45'),
(24306, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A543EFC4163D4D22F52F149A3CB813F0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771379925806,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T22:58:45.806Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 22:58:46'),
(24307, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:12.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:12'),
(24308, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:14.416Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:14'),
(24309, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"AC392A5B6CC3AAE61F65B695026894A0\"},\"pushName\":\"Katiane🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Boa Noite\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Rz2PVBss5XP9GRRdFinQFzNb8nUjTfC39\\/Nnb7wofPE=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"UNKNOWN\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380374,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:14.417Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:06:14'),
(24310, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"pushName\":\"Katiane🥰\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:14.699Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:06:14'),
(24312, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:14.707Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:15'),
(24313, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A56E3078B73366A491767AC3A17B2F0F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380376,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:16.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:06:16'),
(24314, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:16.634Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:16'),
(24315, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:17.217Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:17'),
(24316, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A56E3078B73366A491767AC3A17B2F0F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771380376782,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:16.782Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:06:17'),
(24317, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:23.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:23'),
(24318, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:33.906Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:34'),
(24319, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:40.201Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:40'),
(24320, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:44.539Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:44'),
(24321, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"AC83C45355A9E76AEDEA30F87716EEED\"},\"pushName\":\"Katiane🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Quando vence meu boleto\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"2jqKj66bkc\\/p7LjXKAIj\\/3l8jQI1TJ0\\/GOdMWr3SwdY=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380404,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:44.540Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:06:44'),
(24322, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:44.842Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:45'),
(24323, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:06:45.121Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:06:45'),
(24324, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:07:43.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:07:43'),
(24325, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:26.489Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:26');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24326, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:31.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:32'),
(24327, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:33.946Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:34'),
(24328, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:35.128Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:35'),
(24329, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:35.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:35'),
(24330, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:39.205Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:39'),
(24331, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"AC5A95A6C22182323414E454A13410DB\"},\"pushName\":\"Katiane🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Pagar em pix\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"1XI1KYLiKOcqOvyr0DclV2OXVhWtzbqah8wY7j210wQ=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380579,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:39.209Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:09:39'),
(24332, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:39.802Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:40'),
(24333, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:39.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:40'),
(24334, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0630DEFDA77144B3498\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 123463683596475\\nMensagem: \\\"Pagar em pix\\\"\\n\\nUse: \\/aprovar 123463683596475  (automático)\\nUse: \\/pago 123463683596475  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771380580,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:40.749Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:40'),
(24335, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07FB43C9574ABC4D23F\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 123463683596475\\nMensagem: \\\"Pagar em pix\\\"\\n\\nUse: \\/aprovar 123463683596475  (automático)\\nUse: \\/pago 123463683596475  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771380581,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:09:41.528Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:09:41'),
(24336, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A581C52A56C746E9B945887661F9AA4B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Verifica\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771380697,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:11:37.433Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:11:37'),
(24337, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:11:37.432Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:11:37'),
(24338, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:11:38.019Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:11:38'),
(24339, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A581C52A56C746E9B945887661F9AA4B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771380697765,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:11:37.766Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:11:38'),
(24340, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:01.637Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:01'),
(24341, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A5657DD78792942A2E994156A8A055A5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Oii\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380721,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:01.638Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:01'),
(24343, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:02.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:02'),
(24344, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:06.100Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:06'),
(24345, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:08.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:08'),
(24346, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:09.400Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:09'),
(24347, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:10.706Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:10'),
(24348, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A58D63770A33F6E2F4E7BE4CFD5D5D02\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771380731085,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:11.086Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:11'),
(24349, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:10.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:11'),
(24350, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A58D63770A33F6E2F4E7BE4CFD5D5D02\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tem como desativar\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380730,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:10.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:11'),
(24351, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:11.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:12'),
(24352, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:11.448Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:13'),
(24353, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:14.387Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:14'),
(24354, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:14.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:14'),
(24355, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"AC22EAD806307097831CE1170F7397EA\"},\"pushName\":\"Katiane🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tô sem tv\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Ex5MmUoZBEhW4HpTNtZ0v4FDqh3PfKOsblancUHokmQ=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380736,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:17.039Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:17'),
(24356, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:17.038Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:17'),
(24357, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:17.609Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:18'),
(24358, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:17.879Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:18'),
(24359, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:18.933Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:19'),
(24360, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:17.322Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:19'),
(24361, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A5FAEE763B02256902BE2C97056A655C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Na nossa conversa\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380738,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:18.346Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:19'),
(24362, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:18.345Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:21'),
(24363, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A5FAEE763B02256902BE2C97056A655C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771380738515,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:18.516Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:21'),
(24364, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:21.286Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:21'),
(24365, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"ACC6DEFAFD36ECD73C4B57C08E176674\"},\"pushName\":\"Katiane🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Quero paga\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"a+3fjv+h9UlsUrY7Ki1NA3S6s8leEQXMIbo8fBzCjBQ=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380741,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:21.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:21'),
(24366, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:21.586Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:22'),
(24367, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:21.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:23'),
(24368, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:26.694Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:26'),
(24369, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A53FA679F3C2608C1BB9DD0656C1310A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Essa função de apagar?\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380746,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:26.695Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:26'),
(24370, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:27.281Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:12:27'),
(24371, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A53FA679F3C2608C1BB9DD0656C1310A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771380746857,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:12:26.858Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:12:28'),
(24372, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:14:07.934Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:14:08'),
(24373, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A56E29D66471F0794D0C8CAABDCB8494\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"interactiveMessage\":{\"nativeFlowMessage\":{\"buttons\":[{\"name\":\"payment_info\",\"buttonParamsJson\":\"{\\\"currency\\\":\\\"BRL\\\",\\\"total_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"reference_id\\\":\\\"4UF0R9SU13O\\\",\\\"type\\\":\\\"physical-goods\\\",\\\"order\\\":{\\\"status\\\":\\\"pending\\\",\\\"subtotal\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"order_type\\\":\\\"ORDER\\\",\\\"items\\\":[{\\\"name\\\":\\\"\\\",\\\"amount\\\":{\\\"value\\\":0,\\\"offset\\\":100},\\\"quantity\\\":0,\\\"sale_amount\\\":{\\\"value\\\":0,\\\"offset\\\":100}}]},\\\"payment_settings\\\":[{\\\"type\\\":\\\"pix_static_code\\\",\\\"pix_static_code\\\":{\\\"merchant_name\\\":\\\"JOHNNY OU JTVPLAY\\\",\\\"key\\\":\\\"+5547996105435\\\",\\\"key_type\\\":\\\"PHONE\\\"}}],\\\"share_payment_status\\\":false,\\\"referral\\\":\\\"quick_reply\\\"}\"}]},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}}}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"interactiveMessage\",\"messageTimestamp\":1771380847,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:14:07.935Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:14:08'),
(24374, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:14:08.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:14:09'),
(24375, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A56E29D66471F0794D0C8CAABDCB8494\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771380848409,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:14:08.410Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:14:09'),
(24376, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A56E29D66471F0794D0C8CAABDCB8494\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771380850107,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:14:10.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:14:10'),
(24377, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"AC23E3507031452555BB0E5E128556F4\"},\"pushName\":\"Katiane🥰\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/599459707_877286888549096_1730070765575176620_n.enc?ccb=11-4&oh=01_Q5Aa3wGdSsmYcLC5LnM-qmenH0QQlxoln8OVOIOyclhvnrMekg&oe=69BC868C&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"7igceju2Axl2sJk15ZgimTw\\/8\\/7tNILN97r7BMrPbfg=\",\"fileLength\":\"39997\",\"height\":1298,\"width\":360,\"mediaKey\":\"h4\\/jvcqfmSkkns13JoNbv6Hvbz6a1vfFTXTZTSIkM70=\",\"fileEncSha256\":\"brbtS2TTGNFnkbkgqlS8f1QRS9zrjRgjOLhBtzLwThc=\",\"directPath\":\"\\/v\\/t62.7118-24\\/599459707_877286888549096_1730070765575176620_n.enc?ccb=11-4&oh=01_Q5Aa3wGdSsmYcLC5LnM-qmenH0QQlxoln8OVOIOyclhvnrMekg&oe=69BC868C&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771380911\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAEwMBIgACEQEDEQH\\/xAArAAEBAQEBAQAAAAAAAAAAAAAAAQIDBAYBAQAAAAAAAAAAAAAAAAAAAAD\\/2gAMAwEAAhADEAAAAPot42VAURRmylZHLfl6nZkcqGwf\\/8QAIBABAAIBBAIDAAAAAAAAAAAAAQIRAAMQEiEgMTJBcf\\/aAAgBAQABPwCCjYYK+zaGtxkktu8G768tPja\\/eNenbSFkuce7vC8NaBJC7yUywwlWJq87ErFncaP3aTKKpG8JTT44XWf\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAECAQE\\/AC\\/\\/xAAUEQEAAAAAAAAAAAAAAAAAAAAw\\/9oACAEDAQE\\/AC\\/\\/2Q==\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"scansSidecar\":\"ZAx0qkUxJ9d7uJl\\/eVPPLZvpbi0FeFE+6T6gtRW+ldM2+AakfhPhLA==\",\"scanLengths\":[2814,18150,9131,9902],\"midQualityFileSha256\":\"PTKJ27WxuffVFjPExNO3MaC+5bGMmXkZUMTH43WprAA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"h86rqfwWL2bRjZ0gVVKQERaL81cLR2ZrsmyizHnB08E=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"imageMessage\",\"messageTimestamp\":1771380912,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:13.135Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:15:13'),
(24378, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:13.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:13'),
(24379, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:13.428Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:14'),
(24380, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"presences\":{\"123463683596475@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:14.173Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:14'),
(24381, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:13.737Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:14'),
(24382, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":false,\"id\":\"AC0EA0062EE6355D462059E17C6B7832\"},\"pushName\":\"Katiane🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Muito obg\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"ErU4TbAObcHJMKCNdPxs0hg+TSDoGn+UwudXQfXsrg8=\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"INITIATED_BY_ME\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":true}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771380917,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:17.207Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:15:17'),
(24383, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:17.206Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:17'),
(24384, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:17.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:18'),
(24385, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:15:17.778Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:15:18'),
(24386, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"presences\":{\"193320806527062@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:49.940Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:21:50'),
(24387, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"presences\":{\"193320806527062@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:54.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:21:55'),
(24388, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:55.965Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:21:56'),
(24389, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":false,\"id\":\"A579E6E447D9AC667A2137540EF23848\"},\"pushName\":\"Fcm\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637829592_1236944664481373_6845875272338502716_n.enc?ccb=11-4&oh=01_Q5Aa3wEEno3Dl1AfRzDCZnWM1wX5XWV4Q7nXC2rxioVLhgiqQQ&oe=69BCA509&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"UII7Cb4F0rSP6\\/pd7RVIfjeEnNUKAKd+kqKvW9oPHuQ=\",\"fileLength\":\"11810\",\"seconds\":5,\"ptt\":true,\"mediaKey\":\"zBAwLxXKKEtccy\\/I8UYu9\\/xb175XxYiyQWIP6L+C1qA=\",\"fileEncSha256\":\"djU1sgucWLsXnpUdh1\\/kUYb6f1s0qAZJMsGDnUW6Cz0=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637829592_1236944664481373_6845875272338502716_n.enc?ccb=11-4&oh=01_Q5Aa3wEEno3Dl1AfRzDCZnWM1wX5XWV4Q7nXC2rxioVLhgiqQQ&oe=69BCA509&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771381311\",\"waveform\":\"EBxEX1pMX1lKVlpJXl9dWUtVWis2VUNUS1NaVFpNXkxQXVNdWlc7WFVUUlVFFxUSDBEUVlhNWVtTPhQMEhUXUA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"\\/F0ysdzzXUfaTx4JBdFKE8RHxMqULYDSlPalTMeE9go=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771381315,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:55.967Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:21:56'),
(24390, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"pushName\":\"Fcm\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:56.272Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:21:56'),
(24391, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:56.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:21:56'),
(24392, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:21:56.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:21:56'),
(24393, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"193320806527062@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:22:00.046Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:22:00');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24394, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"193320806527062@lid\",\"fromMe\":true,\"id\":\"A5262ACDDAD279265577A50A775B8B93\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771381319,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:22:00.048Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:22:00'),
(24395, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"193320806527062@lid\",\"id\":\"A5262ACDDAD279265577A50A775B8B93\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771381320500,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:22:00.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:22:01'),
(24396, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"193320806527062@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/209584704_182113997702395_2696412411235281638_n.jpg?ccb=11-4&oh=01_Q5Aa3wFGkpFfAPi-LPoqZ3flICz-guJjBzsdx60LJG3IvSnKfw&oe=69A23967&_nc_sid=5e03e0&_nc_cat=103\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:22:00.635Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:22:01'),
(24397, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A581C52A56C746E9B945887661F9AA4B\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771381453117,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:24:13.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:24:13'),
(24398, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:24:54.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:24:54'),
(24399, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:24:54.834Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:24:55'),
(24400, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:35.425Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:35'),
(24401, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"presences\":{\"23313602625574@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:37.739Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:37'),
(24402, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:38.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:38'),
(24403, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"ACCBB0B05A5C6560F505CE67D6E2407C\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Agora foi\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"4YBx7\\/6fH2Z4LSaTAAOk+gJzchrnwITvzzfTumvI6uk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771381597,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:38.080Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:26:38'),
(24404, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:38.373Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:39'),
(24405, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:38.664Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:39'),
(24406, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":false,\"id\":\"AC5D31D4306ECB684D01B8C1F55A97CF\"},\"pushName\":\"Ana\",\"message\":{\"conversation\":\"Obrigado, e desculpa pelo horário\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"WK6r12pykEkG4CaYFtJiSMlnKs3MpnC0NJIH8AIEXCk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771381604,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:45.096Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:26:45'),
(24407, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:45.095Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:45'),
(24408, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:45.562Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:46'),
(24409, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:26:45.668Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:26:46'),
(24410, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"23313602625574@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:27:43.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:27:43'),
(24411, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"23313602625574@lid\",\"fromMe\":true,\"id\":\"A5C70BB4DC8663F572CCFA0C7698A741\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Boanoite\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771381663,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:27:43.310Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:27:43'),
(24412, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"23313602625574@lid\",\"pushName\":\"Ana\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534421578_1224587543106446_247302090683367621_n.jpg?ccb=11-4&oh=01_Q5Aa3wFtd5mWA_PyDeL3g8hBxQATFHNCZWjAkkjFLxb9G4byAA&oe=69A24A8B&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:27:43.883Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:27:44'),
(24413, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"23313602625574@lid\",\"id\":\"A5C70BB4DC8663F572CCFA0C7698A741\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771381666526,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:27:46.526Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:27:46'),
(24414, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5625F795D593266CC086D88610896A3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Ta bom\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771381703,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:23.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:28:24'),
(24415, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:23.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:28:24'),
(24416, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5625F795D593266CC086D88610896A3\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771381705779,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:25.780Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:28:25'),
(24417, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wExMRhId9HJcAsieXVLQJ5CLvfNRkTQ9r_sOhUf7Kv1rw&oe=69A24EFA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:24.512Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:28:26'),
(24418, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:30.921Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:28:31'),
(24419, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A55963F66EA94A4FA768EA7770D2E854\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tenta por o código e senha novamente\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771381710,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:30.922Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:28:31'),
(24420, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A55963F66EA94A4FA768EA7770D2E854\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771381711290,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:31.291Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:28:31'),
(24421, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wExMRhId9HJcAsieXVLQJ5CLvfNRkTQ9r_sOhUf7Kv1rw&oe=69A24EFA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:31.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:28:32'),
(24422, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:36.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:28:36'),
(24423, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A5622AF91EEF8D05316D55485203906F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Codigo: 2519\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771381716,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:36.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:28:36'),
(24424, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A5622AF91EEF8D05316D55485203906F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771381716606,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:36.606Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:28:38'),
(24425, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wExMRhId9HJcAsieXVLQJ5CLvfNRkTQ9r_sOhUf7Kv1rw&oe=69A24EFA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:28:36.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:28:38'),
(24426, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"118507056427159@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:11.101Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:11'),
(24427, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"118507056427159@lid\",\"fromMe\":true,\"id\":\"A59E0F07D2C271819D7F40995CE2CFF5\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"U*suário:* 712406584\\n✅ *Senha:* 965923399\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771381750,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:11.102Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:29:11'),
(24428, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"118507056427159@lid\",\"pushName\":\"Marii Soares\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/583088521_928777236353923_319783336945842483_n.jpg?ccb=11-4&oh=01_Q5Aa3wExMRhId9HJcAsieXVLQJ5CLvfNRkTQ9r_sOhUf7Kv1rw&oe=69A24EFA&_nc_sid=5e03e0&_nc_cat=105\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:11.691Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:12'),
(24429, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"118507056427159@lid\",\"id\":\"A59E0F07D2C271819D7F40995CE2CFF5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771381752482,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:12.483Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:29:12'),
(24430, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:35.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:36'),
(24431, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5EAB9B2A52FC58A581A05125150F439\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/pago\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391013},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391013},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771381775,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:35.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:29:36'),
(24432, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP3phqYq1ehCAWTLli2a0hDTGvvxaYBITClVP2gv14Q&oe=69A24E14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:36.574Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:36'),
(24433, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03BDE7B2C6E50519BDE\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"⚠️ *Uso correto:* \\/pago TELEFONE\\n\\nExemplo: \\/pago 4799999999\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771381776,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:37.180Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:37'),
(24434, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5F8889CC8B8887661036758830777BB\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/cadastro\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391022},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391022},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771381786,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:46.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:29:47'),
(24435, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:46.861Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:47'),
(24436, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP3phqYq1ehCAWTLli2a0hDTGvvxaYBITClVP2gv14Q&oe=69A24E14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:47.623Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:48'),
(24437, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0168A7E8E21568EF682\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"📝 *Novo Cadastro Iniciado*\\n\\nDigite o *nome* do cliente:\\n\\n_(Para cancelar, digite \\/cancelar)_\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771381787,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:48.036Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:48'),
(24438, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A59F6542BA85A438B8B12F11152790C3\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Teste22\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391030},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391030},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771381795,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:55.398Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:29:55'),
(24439, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:55.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:55'),
(24440, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP3phqYq1ehCAWTLli2a0hDTGvvxaYBITClVP2gv14Q&oe=69A24E14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:29:56.175Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:29:56'),
(24441, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:30:02.104Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:30:02'),
(24442, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"180749806342387@lid\",\"fromMe\":true,\"id\":\"A5553A27DC1204E3418B06A424A1946B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"\\/ajuda\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391040},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":391040},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771381801,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:30:02.105Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:30:02'),
(24443, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"180749806342387@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/528783998_786240840656494_8417287839259810670_n.jpg?ccb=11-4&oh=01_Q5Aa3wGzP3phqYq1ehCAWTLli2a0hDTGvvxaYBITClVP2gv14Q&oe=69A24E14&_nc_sid=5e03e0&_nc_cat=109\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:30:02.855Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:30:03'),
(24444, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB034F9009EC381413475\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"👨‍💼 *COMANDOS ADMIN* — v5.2.0\\n\\n─────────────────────\\n📝 *\\/cadastro* - Novo cliente\\n💰 *\\/pago TELEFONE* - Confirmar PIX\\n✅ *\\/aprovar TELEFONE* - Aprovar auto\\n⏸️ *\\/pausar TELEFONE* - Pausar serviço\\n▶️ *\\/reativar TELEFONE* - Reativar\\n🔍 *\\/buscar TELEFONE* - Info cliente\\n📋 *\\/pendentes* - Listar pendentes\\n📊 *\\/status* - Status sistema\\n❓ *\\/ajuda* - Este menu\\n🔄 *\\/corrigir ANTIGO NOVO* - Corrigir telefone\\n📤 *\\/reenviar TELEFONE* - Reenviar boas-vindas\\n─────────────────────\\n📱 *Cliente pode usar:* \\/vencimento\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771381803,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:30:03.308Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:30:03'),
(24445, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A5D60802702A3FE4084859F599AD7A30\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771382416272,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:40:16.273Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:40:17'),
(24446, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"123463683596475@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:40:17.910Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:40:18'),
(24447, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"123463683596475@lid\",\"fromMe\":true,\"id\":\"A5D60802702A3FE4084859F599AD7A30\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Qual seu aplicativo\",\"previewType\":\"NONE\",\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"expiration\":86400,\"ephemeralSettingTimestamp\":\"1754082452\",\"disappearingMode\":{\"initiator\":\"CHANGED_IN_CHAT\",\"trigger\":\"ACCOUNT_SETTING\",\"initiatedByMe\":false}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771382417,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:40:17.911Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:40:18'),
(24448, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"123463683596475@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/549882941_3298106407018895_6662380656619317412_n.jpg?ccb=11-4&oh=01_Q5Aa3wHzxoyYXy7KVQo3Kwj5_jYhZ6tabAojuXc9mUjYvCjG9A&oe=69A23BB6&_nc_sid=5e03e0&_nc_cat=101\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:40:18.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-17 23:40:18'),
(24449, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"123463683596475@lid\",\"id\":\"A5D60802702A3FE4084859F599AD7A30\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771382743995,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-17T23:45:43.995Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-17 23:45:44'),
(24450, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T00:39:47.196Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 00:39:47'),
(24451, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T01:51:53.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 01:51:54'),
(24452, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T02:13:23.471Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 02:13:23'),
(24453, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"180749806342387@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T05:00:06.588Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 05:00:07'),
(24454, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC2F424BE60B2648DAC743D3AC7CFA7B\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/598217869_1115988183930596_9197193156441041495_n.enc?ccb=11-4&oh=01_Q5Aa3wGkKTD5jiWWu0vFVrOQNjsJY_IbxPTIJt8xjqrVZPpSrg&oe=69BD183B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"DKc7xMUZMN1M+um9SAK4wLEVGVz8QwIAgjxaMNloTAE=\",\"fileLength\":\"177373\",\"height\":995,\"width\":1600,\"mediaKey\":\"iJBuTywQ+ZHYsUDayUuf6DQHD4nV8++kvqbB7oir6rU=\",\"fileEncSha256\":\"I7z6RrRFzJn8wfQopWwVoQDETQw3egGr+xiO5x5zqDs=\",\"directPath\":\"\\/v\\/t62.7118-24\\/598217869_1115988183930596_9197193156441041495_n.enc?ccb=11-4&oh=01_Q5Aa3wGkKTD5jiWWu0vFVrOQNjsJY_IbxPTIJt8xjqrVZPpSrg&oe=69BD183B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771408426\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIACwARwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAADBQACBAEGAQEBAQEAAAAAAAAAAAAAAAACAQAD\\/9oADAMBAAIQAxAAAADMPeQ1HA8UPzKfYPHJplkJIyt1rWhMPWJbLs00OtTRxc8MzQdo1R3scgWVsa9VX29FkUUpkywv\\/8QAKhAAAgICAQIFAwUBAAAAAAAAAQIAAwQRIRJRBRMUIjEQFVIzQUNTYXH\\/2gAIAQEAAT8AajJyqwdqBDh2VV8xcp6x0gT11nYT11nYT1tnYRiXYnv9MZgFaC01qoEtbdZ\\/5CLAeFPz2jPYdbX4\\/wAjEu2zKqlLDZ5lWLaG6iF1HxFLdXEesU2Ad4rG6xPLPBaPiZQTYdTDRnFwuocPNLFCvMXwzMcnSSjw7KQ9RqjU5TKR0ytcth7l9kvrdbh1jXE6kVq0X2ncPn21kJfwPky\\/GyUasreSWgpzxYdWylPEfeFuENniNbrWbhzExfFCgcXLoz03iKrrzlmbZeLilrbZY3uuXvKfPqBArPMLZI1qrcrGbWWIr+YlmeGbpT9+Zccy3k1RM2xKVreluBLM3pU7R5l3C697BGsZn6\\/gwZF39hj5F4\\/kaLk37\\/UaLmZCE6sn3DK\\/OfcMr84+ZfapVn4+n\\/\\/EABwRAAICAgMAAAAAAAAAAAAAAAARAhABISIxQf\\/aAAgBAgEBPwAVat6OzMYpCRr0cTiPFf\\/EAB8RAAICAgEFAAAAAAAAAAAAAAABITEREgIQIkFCYf\\/aAAgBAwEBPwCutCcHk9vg7ge8UJwYeYMcjuNWKj\\/\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"fwFy0aaI176gLJvzW3CvcOD55pS5xvTXkxgs+9OKw2IcE8NFFXC07g==\",\"scanLengths\":[17204,65821,32967,61381],\"midQualityFileSha256\":\"SmwmWMWfiHF3y5\\/d9Qg+GN3gOs5pTdNWA+JXOGIkszA=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"5HENLZdDZzGydl31X9chsJIaW86t7MR6x3oepE8OxlI=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771408427,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:53:47.747Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 06:53:48'),
(24455, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:53:48.037Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 06:53:48'),
(24456, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:53:47.746Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 06:53:48'),
(24457, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:53:48.330Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 06:53:48'),
(24458, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:54:41.957Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 06:54:42'),
(24459, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACDEEDD7268A97DC3FAAFF932F596D40\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/590823175_1698231448255982_4234508756820901124_n.enc?ccb=11-4&oh=01_Q5Aa3wG8a18m9ewyu_AnmgkFYe0bE0TJcbDUQeOdZTPqyj2lyQ&oe=69BD0D44&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"nCImPSOMB05JntLixAoonzibUDp6c4xAU0nTnUfErJI=\",\"fileLength\":\"153098\",\"height\":1049,\"width\":1600,\"mediaKey\":\"\\/4DGFdSuTdhFRUUr84bW+wZfRB6JROGW+gtDKOv3pEc=\",\"fileEncSha256\":\"xm3vSPoqIR0w15ibM2FgfN3kkes31mHtQpP8ttG1xhI=\",\"directPath\":\"\\/v\\/t62.7118-24\\/590823175_1698231448255982_4234508756820901124_n.enc?ccb=11-4&oh=01_Q5Aa3wG8a18m9ewyu_AnmgkFYe0bE0TJcbDUQeOdZTPqyj2lyQ&oe=69BD0D44&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771408480\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAC8ARwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAEBQACAwEGAQADAQAAAAAAAAAAAAAAAAAAAQMC\\/9oADAMBAAIQAxAAAABaC3UhztYHbZ2ZbMuzYM2gjjV\\/oSaWj8A2h66tmwWhutZoJaBo588dJMNvObUy9EEvkLg8c0symLf\\/xAArEAACAgIBAgQEBwAAAAAAAAABAgADBBESEyEFFBVRMTRBkRAjMjNSU1T\\/2gAIAQEAAT8AbH5UBuRJhRwN6g5p8Nic7T9WnOz3M61vvGssIIM4kfhaPyyo+MZbAdENOL+zQM69u4nIxRuIpLBVX7y1GTsyiPxIGl0Zz6ly8G+Jl\\/h95HJH2YMXOTuUJj9bbBqDuPTYW\\/bPeIjodshnmAyKvRO\\/eOgZVc1tLlqQNqINXpwX69hOpmf5p18tR8rLcjKNxbyrRrrOSM1DjUty1YaNDRc5ETRx2ieKUaAatpn3V3ZDso0soJDqR+oHtBkeJf0LF8UvGwceVZ993dMaW35jso8vLrMo63imNmWFTyxjEv4r8q\\/2mQ3O1zrWzA5SwEHupnq+SPos85btj7yjxK6gEKonrN\\/MMUE9cu\\/gJ62CNGmeuDWujHbkxPuZ\\/8QAHREAAwACAgMAAAAAAAAAAAAAAAEREBICAxMhMf\\/aAAgBAgEBPwBYhqaM4yYrvwb1H2MUH456ZYPnj\\/\\/EAB4RAAICAgMBAQAAAAAAAAAAAAABAhESIQMQQRMx\\/9oACAEDAQE\\/AO66nneiCusnQ48a\\/Jkea1tIeyV+Cz9Q1Z8IXexH\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"XyWPNnEevZBEwL90F7RnBv+UiIGKz9u2FNw342EbdPdR+Fsawo88pA==\",\"scanLengths\":[16133,65046,25300,46619],\"midQualityFileSha256\":\"LDAATXLCJHs39eBEtF2tiyx4AjBZE\\/wuOHCBkW+6W\\/Y=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"60nZsUis9mFLMcXwm5qzwhzxRfyty5qOq+OdCJvUgTE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771408481,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:54:41.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 06:54:42'),
(24460, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:54:42.264Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 06:54:42'),
(24461, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T06:54:42.900Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 06:54:43');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24462, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"267864242171967@lid\",\"id\":\"A5597198CC06FEE93DA6B696EDC3DD4E\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771409464189,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:04.189Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:04'),
(24463, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A5354D97F65CE017A801503F388AEA63\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409489584,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:29.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:30'),
(24464, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A5B65500BD6618F211AC615FF59F1E2D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492106,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:32'),
(24465, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A500825A49912F7D659E08CBD8A9BB7F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492122,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.122Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:32'),
(24466, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A56A1F119B90DD3749C0164D18842E38\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492109,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.109Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:33'),
(24467, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A5C25094818DD01C684D3277D02FACA7\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492115,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:33'),
(24468, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A586EEE9CB1180C7FD3512AE52311D45\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492128,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.129Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:33'),
(24469, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"3EB0C6CB7C09ACC82E84E9\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492179,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:34'),
(24470, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"3EB0F17B61B10572FEA330\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492174,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.174Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:34'),
(24471, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"3EB0539A911D9D1FBEAC65\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492150,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.150Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:34'),
(24472, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"3EB08ABAF9A616D8E932C6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492159,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.160Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:35'),
(24473, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"A56882728DDED2803CC27DD278034672\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492134,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.134Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:35'),
(24474, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"3EB0056DCD43350E97F8B0\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492167,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.167Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:35'),
(24475, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"51724425375774:34@lid\",\"id\":\"3EB031FFB5D870E080F57B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771409492144,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:11:32.145Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:11:35'),
(24476, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:20.531Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:35:21'),
(24477, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5825F7D923C579101ACE802D88ED05C\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Bomdia\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771410920,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:20.532Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:35:21'),
(24478, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:21.132Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:35:21'),
(24479, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5825F7D923C579101ACE802D88ED05C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771410925079,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:25.079Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:35:25'),
(24480, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:27.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:35:27'),
(24481, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A598FFBE9E4F6CEEBBD3A1D08A2DFA62\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Essa e android\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771410927,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:27.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:35:28'),
(24482, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A598FFBE9E4F6CEEBBD3A1D08A2DFA62\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771410928025,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:28.025Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:35:28'),
(24483, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:28.237Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:35:29'),
(24484, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5184EBF4BDF6321FC116ECD09232394\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Fácil instalação\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771410931,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:31.728Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:35:31'),
(24485, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:31.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:35:31'),
(24486, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5184EBF4BDF6321FC116ECD09232394\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771410932124,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:32.124Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:35:32'),
(24487, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:35:32.288Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:35:32'),
(24488, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5825F7D923C579101ACE802D88ED05C\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771411184343,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:44.343Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:39:44'),
(24489, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5184EBF4BDF6321FC116ECD09232394\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771411184331,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:44.332Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:39:44'),
(24490, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:44.727Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:39:45'),
(24491, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A598FFBE9E4F6CEEBBD3A1D08A2DFA62\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771411184339,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:44.339Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:39:45'),
(24492, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:55.051Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:39:55'),
(24493, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:55.303Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:39:55'),
(24494, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:56.492Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:39:56'),
(24495, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC8771AB303D54BC101F8EE6EA84E4B9\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637839197_913814611399902_6948182863511660745_n.enc?ccb=11-4&oh=01_Q5Aa3wH4k_LXeWfjDaM8R7_BftiCr8XgPCjBEP7UxvK3Lv6k2g&oe=69BD04CE&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"GC68m7GdUIYsmo\\/b6xm58HfCcmiBWnf+gOuLVFLgRZg=\",\"fileLength\":\"22218\",\"seconds\":10,\"ptt\":true,\"mediaKey\":\"SluhA52AlYXOjvVNs0wSgHNGE3za3YNIi8GIBjgDNQI=\",\"fileEncSha256\":\"0uze6ICHjSWUDjJgw84j6kZkzjxTC\\/BU3FeJd\\/SjHFc=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637839197_913814611399902_6948182863511660745_n.enc?ccb=11-4&oh=01_Q5Aa3wH4k_LXeWfjDaM8R7_BftiCr8XgPCjBEP7UxvK3Lv6k2g&oe=69BD04CE&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771411186\",\"waveform\":\"AAAAAAAAAB1CRzQiO0QlPDgwNyYnHgAAABZDNSwtIhUmBAAAAAAAADs0KTk7OioCBAEAFhg9PDEiIycLKBQWAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"VTLGBPt4LZ8Ljo5uInX2PjbAEB\\/Nb6gCFraWhkNabOE=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771411196,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:56.494Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:39:56'),
(24496, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:57.058Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:39:57'),
(24497, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":null,\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:39:56.792Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:39:57'),
(24498, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A59EFAACB2E4F9A75AFB686358186283\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"O sistema e pré pago\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771412118,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:18.628Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:19'),
(24499, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:18.627Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:19'),
(24500, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A59EFAACB2E4F9A75AFB686358186283\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412118949,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:18.949Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:19'),
(24501, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:19.199Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:19'),
(24502, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A59EFAACB2E4F9A75AFB686358186283\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771412131959,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:31.959Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:32'),
(24503, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:34.543Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:34'),
(24504, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:37.383Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:37'),
(24505, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5D2FE588C3B77AEA0EF178BB1692799\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/589562160_917805437422749_7616026905734712144_n.enc?ccb=11-4&oh=01_Q5Aa3wH6Y21W2_74Kfw7QirzAm9fOXbrPBxNznmR6qhS81XjOg&oe=69BD0FD9&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"xaiDNIeRwVgphui0KeNrmV0xmCH4jiHkcdfhd0nZ84A=\",\"fileLength\":\"25598\",\"seconds\":11,\"ptt\":true,\"mediaKey\":\"OoawJK9cszng+z0Sb8nYFjvzg36itNDXfQ5107F9SN0=\",\"fileEncSha256\":\"4ZSoJKb2zKyr7PTjVsnlZnZR8YJ29Vyc0U1iUlz6PU8=\",\"directPath\":\"\\/v\\/t62.7117-24\\/589562160_917805437422749_7616026905734712144_n.enc?ccb=11-4&oh=01_Q5Aa3wH6Y21W2_74Kfw7QirzAm9fOXbrPBxNznmR6qhS81XjOg&oe=69BD0FD9&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771412126\",\"waveform\":\"ACs1Sjc5Qj8oO0c0HSxMIiVGO0k+ADg+LDNCOxc9PyE0RyBGLCc\\/QwAAAABBLjpAPkAeRgE3NkgURUs5GgAAAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771412137,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:37.385Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:37'),
(24506, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5D2FE588C3B77AEA0EF178BB1692799\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771412137585,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:37.585Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:38'),
(24507, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:37.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:38'),
(24508, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACC71E93F00DE33D58380DB71BD623BD\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Ta ok\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"r8xZwRe\\/MiLVbh6DbuVKlWylnHKyu7qptA0HilfcRzg=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771412138,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:38.497Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:38'),
(24509, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:39.066Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:39'),
(24510, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:38.791Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:39'),
(24511, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:38.495Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:39'),
(24512, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5D2FE588C3B77AEA0EF178BB1692799\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771412142027,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:42.027Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:42'),
(24513, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:46.594Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:46'),
(24514, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5C5E126861FFD7C20302282478E24DC\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/34724327_2355313278272482_2686545743348795308_n.enc?ccb=11-4&oh=01_Q5Aa3wGdzIh8GlMW6URlzOvFFGr5hOB-RFoE9UwSEJT7SYHhcg&oe=69BCF8C8&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Q2ZaHZ3MWc42pQJtYy5GyBVGV1m\\/fqle5q56Mplp7gI=\",\"fileLength\":\"4167\",\"seconds\":1,\"ptt\":true,\"mediaKey\":\"oHcHc+Dhx5MZ78WD2IChvHoDMpb3VTgWpfJgoVOipWg=\",\"fileEncSha256\":\"9H58rHWOCzsJSbmHgafGf\\/8NoWdQt8BXwgMyYIMlY14=\",\"directPath\":\"\\/v\\/t62.7117-24\\/34724327_2355313278272482_2686545743348795308_n.enc?ccb=11-4&oh=01_Q5Aa3wGdzIh8GlMW6URlzOvFFGr5hOB-RFoE9UwSEJT7SYHhcg&oe=69BCF8C8&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771412145\",\"waveform\":\"AAAAAAAAAwwNAwQMExgnOElaW1pVUExMTk5KOyc1TUtHMB84TE9QSkhIRT81KDNER0hHRUJBREVFRUdHRkZGRg==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771412146,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:46.595Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:46'),
(24515, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5C5E126861FFD7C20302282478E24DC\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771412146895,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:46.895Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:47'),
(24516, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:47.166Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:47'),
(24517, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5C5E126861FFD7C20302282478E24DC\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771412152099,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:52.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:52'),
(24518, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:56.404Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:56'),
(24519, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:58.631Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:58'),
(24520, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC5F32CDCF856CEE43A1B008E4B226CA\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Pode ser\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"Gr3cDHb7mV6FJrIc25CYzceQmWIIZNXdcE0pkNv8srk=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771412158,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:58.632Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:55:58'),
(24521, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:59.099Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:59'),
(24522, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:58.887Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:55:59'),
(24523, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:55:59.208Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:00'),
(24524, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:05.598Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:05'),
(24525, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACD9265E2DEA7BECE3D17C011C72B81C\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Vou arrumar os 40 aqui\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"11w3INwLZ2ajawv5R6nRnVVR+Z6CW1AZBt30U6O8st8=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771412165,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:05.600Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:56:05'),
(24526, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:05.882Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:06'),
(24527, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:06.182Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:06'),
(24528, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A51A0B03CDADB9AF26A15CB9808534B2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Entra na playstore\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771412173,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:13.776Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:56:13'),
(24529, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:13.775Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:14'),
(24530, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A51A0B03CDADB9AF26A15CB9808534B2\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412174030,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:14.030Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:56:14'),
(24531, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:14.352Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:14'),
(24532, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A51A0B03CDADB9AF26A15CB9808534B2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771412179645,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:19.645Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:56:19'),
(24533, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:22.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:23'),
(24534, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5F0ECC1F9F58AD6987495B9C7AB6678\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"E procura o app downloader\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771412182,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:22.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:56:23'),
(24535, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5F0ECC1F9F58AD6987495B9C7AB6678\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771412183077,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:23.078Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:56:23'),
(24536, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:56:23.626Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:56:24'),
(24537, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:41.941Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:42');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24538, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC95DEA48911815FE2887BC126222D2C\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/588578336_926142479777007_4278619683872469197_n.enc?ccb=11-4&oh=01_Q5Aa3wHNYlht6Ah7itue9_WEmEtLiGCvzysmj2_av53nGEMEuw&oe=69BCF93D&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"H0i9UB1WjHdfBBjxb\\/awgubzqseShG1J4Iz8izH2HGY=\",\"fileLength\":\"147634\",\"height\":641,\"width\":1600,\"mediaKey\":\"peJk4YPJ4bnalvsBXxAWz8v7KOW2vUj4aLfaHH+XbDU=\",\"fileEncSha256\":\"lKWcybApGPFWba\\/OzSczUnRg0yTXPCp9D3NBVJP+8TA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/588578336_926142479777007_4278619683872469197_n.enc?ccb=11-4&oh=01_Q5Aa3wHNYlht6Ah7itue9_WEmEtLiGCvzysmj2_av53nGEMEuw&oe=69BCF93D&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771412260\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIABkAQAMBIgACEQEDEQH\\/xAAuAAACAwEBAAAAAAAAAAAAAAADBAECBQAGAQEBAQAAAAAAAAAAAAAAAAABAgD\\/2gAMAwEAAhADEAAAAFpJMpV\\/SZVGayheKvcRakDfcVq4eyimLMhyY4rG\\/8QAIxAAAgICAgICAwEAAAAAAAAAAQIAAwQREiETMgVBMVFxQv\\/aAAgBAQABPwC6zMrAdjpTEWzLHFm3K8GxOlJEyMYow59zHw0vfhrUyPjUoqL8pjsz6+tTIBLLMu2uypVE+O6snW\\/zM8IWHJ9TyNWx4PPPY\\/TOSJTYgcCWMrleP7iq3DbCYreNw0bJQd7mbabHhMDyoKd\\/uAqmv7P8WfyL6JKlXivQmYB5j0PSPPuU+yx\\/Yz\\/\\/xAAYEQADAQEAAAAAAAAAAAAAAAAAAREQMf\\/aAAgBAgEBPwDHaLpI8tF0\\/8QAGhEAAwADAQAAAAAAAAAAAAAAAAERAhAxMv\\/aAAgBAwEBPwCKc3lwTqIQy8n\\/2Q==\",\"contextInfo\":[],\"scansSidecar\":\"5uRuDTazKs2pgwuAMbawe1j09Nat1w8XDs6Cu8iOyTs\\/NnRZ0wWZgw==\",\"scanLengths\":[11955,49173,30884,55622],\"midQualityFileSha256\":\"jlQAgvGvdjYbloKSrfL3i9WRQaQSDS+oXtgQ5nRjW6M=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"0IAD45tkV5i8vMkt61ZdEKYo27PEMmyXG3ExDGyRXuc=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771412261,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:41.942Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:57:42'),
(24539, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:42.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:43'),
(24540, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:42.673Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:43'),
(24541, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:42.579Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:44'),
(24542, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC9C861F8288F0C5CD7893B9488D846C\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Esse?\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"dpKJIYY0GNPSxJWb3aMdPmU8gXK7yxgnadT0u9EpEzQ=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771412263,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:44.008Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 07:57:44'),
(24543, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:44.570Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:45'),
(24544, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:44.007Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:45'),
(24545, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T07:57:44.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 07:57:45'),
(24546, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5521965692055@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"},{\"id\":\"554791592447@s.whatsapp.net\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:19.085Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:04:19'),
(24547, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5521965692055@s.whatsapp.net\",\"fromMe\":false,\"id\":\"3EB017BB63828A668B731E\"},\"pushName\":\"Cloud Win\",\"message\":{\"extendedTextMessage\":{\"text\":\"Olá johnny ! Informamos que a fatura N° 274583, com vencimento em 28\\/02\\/2026, tem o valor total de R$ 34,00, já encontra-se disponível em sua área do cliente para pagamento. Evite transtornos e efetue o pagamento até a data de vencimento.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771412658,\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:19.087Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:19'),
(24548, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"5521965692055@s.whatsapp.net\",\"pushName\":\"Cloud Win\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567612874_813576277983530_4925169455105407447_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmR4N69ItL7bVEcJEDSQ19oiOjP41aXapZY7zx8TWbeg&oe=69A2A8BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:19.391Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:19'),
(24549, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"5521965692055@s.whatsapp.net\",\"pushName\":\"Cloud Win\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567612874_813576277983530_4925169455105407447_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmR4N69ItL7bVEcJEDSQ19oiOjP41aXapZY7zx8TWbeg&oe=69A2A8BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:19.377Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:04:19'),
(24550, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"239728632807660@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:21.114Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:04:21'),
(24551, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"239728632807660@lid\",\"fromMe\":true,\"id\":\"A5DC63ABEEE9F2390038245EF9748CDE\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"⚠️ *Olá, estamos fora do horário de atendimento.*\\nNosso horário é de:\\n*Segunda a Seguda* de *09:00h* as *20:00h*\\nAos *Sabados e Domingo* Atendimento *Moderado*\\n\\n*POR FAVOR RESPEITE NOSSOS HORARIOS!!!*\\n\\n⛔ *DEIXE SUA MENSAGEM QUE IREMOS RESPONDER ASSIM QUE POSSIVEL.*\\n\\n*_Se preferir pode continuar com o atendimento automático_*\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771412660,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:21.115Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:21'),
(24552, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239728632807660:41@lid\",\"id\":\"A5DC63ABEEE9F2390038245EF9748CDE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412661361,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:21.361Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:21'),
(24553, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"5521965692055@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB019EDD7BA2A4929703D\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Pagamento detectado!*\\n\\nRecebemos sua mensagem sobre pagamento.\\n\\n⏳ Estamos verificando e em breve você receberá a confirmação!\\n\\n📞 Dúvidas? Entre em contato com o suporte.\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771412660,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:21.962Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:04:22'),
(24554, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239728632807660:42@lid\",\"id\":\"A5DC63ABEEE9F2390038245EF9748CDE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412661257,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:21.258Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:22'),
(24555, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5521965692055:42@s.whatsapp.net\",\"id\":\"3EB019EDD7BA2A4929703D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412662390,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:22.390Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:22'),
(24556, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"5521965692055:41@s.whatsapp.net\",\"id\":\"3EB019EDD7BA2A4929703D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412662536,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:22.537Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:23'),
(24557, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"239728632807660@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/567612874_813576277983530_4925169455105407447_n.jpg?ccb=11-4&oh=01_Q5Aa3wEmR4N69ItL7bVEcJEDSQ19oiOjP41aXapZY7zx8TWbeg&oe=69A2A8BA&_nc_sid=5e03e0&_nc_cat=108\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:21.420Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:23'),
(24558, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0594F63E41B0678156C\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 5521965692055\\nMensagem: \\\"Olá johnny ! Informamos que a fatura N° 274583, com vencimento em 28\\/02\\/2026, tem o valor total de R$ 34,00, já encontra-se disponível em sua área do cliente para pagamento. Evite transtornos e efetue o pagamento até a data de vencimento.\\\"\\n\\nUse: \\/aprovar 5521965692055  (automático)\\nUse: \\/pago 5521965692055  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771412663,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:23.548Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:04:24'),
(24559, 'send.message', 'JTVPLAY', '{\"event\":\"send.message\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB018FBFCDF17488873AF\"},\"pushName\":\"\",\"message\":{\"extendedTextMessage\":{\"text\":\"💰 *Possível Pagamento*\\n\\nCliente: 5521965692055\\nMensagem: \\\"Olá johnny ! Informamos que a fatura N° 274583, com vencimento em 28\\/02\\/2026, tem o valor total de R$ 34,00, já encontra-se disponível em sua área do cliente para pagamento. Evite transtornos e efetue o pagamento até a data de vencimento.\\\"\\n\\nUse: \\/aprovar 5521965692055  (automático)\\nUse: \\/pago 5521965692055  (PIX Manual)\"}},\"contextInfo\":null,\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":{\"low\":1771412662,\"high\":0,\"unsigned\":true},\"owner\":\"JTVPLAY\",\"source\":\"web\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:22.757Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:04:24'),
(24560, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239728632807660@lid\",\"id\":\"A5DC63ABEEE9F2390038245EF9748CDE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412666069,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:26.069Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:26'),
(24561, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"239728632807660@lid\",\"id\":\"3EB019EDD7BA2A4929703D\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771412666140,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:04:26.140Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:04:26'),
(24562, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5B86FC939EEA1851F0178632DA48AC6\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413159047,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:39.047Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:12:39'),
(24563, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:40.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:12:41'),
(24564, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5B86FC939EEA1851F0178632DA48AC6\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Isso\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771413160,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:40.994Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:12:41'),
(24565, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:41.566Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:12:41'),
(24566, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:44.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:12:44'),
(24567, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A57B5D06C9CE1A2DDF707E62B2F71DA1\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Tava tomando café rs\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771413164,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:44.269Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:12:44'),
(24568, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:44.831Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:12:45'),
(24569, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A57B5D06C9CE1A2DDF707E62B2F71DA1\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413164479,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:44.479Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:12:45'),
(24570, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5ECA36B15F9874DAFBD779F6D78288F\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Baixou ja?\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771413173,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:54.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:12:54'),
(24571, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:54.032Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:12:54'),
(24572, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:54.814Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:12:55'),
(24573, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5ECA36B15F9874DAFBD779F6D78288F\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413174861,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:12:54.862Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:12:55'),
(24574, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5ECA36B15F9874DAFBD779F6D78288F\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413195392,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:15.392Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:15'),
(24575, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5B86FC939EEA1851F0178632DA48AC6\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413195402,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:15.403Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:15'),
(24576, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A57B5D06C9CE1A2DDF707E62B2F71DA1\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413195397,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:15.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:16'),
(24577, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:16.672Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:16'),
(24578, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:18.987Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:19'),
(24579, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC96B18C29F0717F6F76E28C51630F3F\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sim\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A5ECA36B15F9874DAFBD779F6D78288F\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Baixou ja?\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"mH+zY5xae12yCEghV5YIl8Z9zA3VYxhDJ1FCMPZrpSM=\"}},\"contextInfo\":{\"stanzaId\":\"A5ECA36B15F9874DAFBD779F6D78288F\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Baixou ja?\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771413198,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:18.988Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:19'),
(24580, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:19.287Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:20'),
(24581, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:19.553Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:20'),
(24582, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:21.500Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:21'),
(24583, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:24.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:24'),
(24584, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACC7CBE848CC5A6C41B45029FBDB6F63\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"extendedTextMessage\":{\"text\":\"Tudo bem rsrs\",\"previewType\":\"NONE\",\"contextInfo\":{\"stanzaId\":\"A57B5D06C9CE1A2DDF707E62B2F71DA1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Tava tomando café rs\"}},\"inviteLinkGroupTypeV2\":\"DEFAULT\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"knwOpKezhwwSbpy7t9cGCtJ2PDI4BwQfrPYog31E+Qs=\"}},\"contextInfo\":{\"stanzaId\":\"A57B5D06C9CE1A2DDF707E62B2F71DA1\",\"participant\":\"180749806342387@lid\",\"quotedMessage\":{\"conversation\":\"Tava tomando café rs\"}},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771413204,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:24.696Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:24'),
(24585, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:24.971Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:25'),
(24586, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:25.501Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:25'),
(24587, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83678881423399@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:36.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:36'),
(24588, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83678881423399@lid\",\"fromMe\":true,\"id\":\"A549CB1119D89D8B7451706FC0FF7248\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Eai negao\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":18},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":18},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771413216,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:36.179Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:36'),
(24589, 'contacts.upsert', 'JTVPLAY', '{\"event\":\"contacts.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83678881423399@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550790791_824698633302311_4021388805261613737_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkCU5Tx7kTIAZLioxIxbdkzXCNv5gRhmP3m93AiTfTLQ&oe=69A2B800&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:36.477Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:36'),
(24590, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"83678881423399@lid\",\"fromMe\":true,\"id\":\"A5CFCE7EA4A4EC50F675B09EE64ACF0B\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"extendedTextMessage\":{\"text\":\"Sumiu\",\"previewType\":\"NONE\",\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":20},\"inviteLinkGroupTypeV2\":\"DEFAULT\"}},\"contextInfo\":{\"entryPointConversionSource\":\"global_search_new_chat\",\"entryPointConversionApp\":\"whatsapp\",\"entryPointConversionDelaySeconds\":20},\"messageType\":\"extendedTextMessage\",\"messageTimestamp\":1771413218,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:38.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:38'),
(24591, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"83678881423399@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:38.505Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:38'),
(24592, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"83678881423399@lid\",\"pushName\":\"J T V P L A Y\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/550790791_824698633302311_4021388805261613737_n.jpg?ccb=11-4&oh=01_Q5Aa3wEkCU5Tx7kTIAZLioxIxbdkzXCNv5gRhmP3m93AiTfTLQ&oe=69A2B800&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:39.092Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:13:39'),
(24593, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83678881423399@lid\",\"id\":\"A549CB1119D89D8B7451706FC0FF7248\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413223524,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:43.524Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:43'),
(24594, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"83678881423399@lid\",\"id\":\"A5CFCE7EA4A4EC50F675B09EE64ACF0B\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413223551,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:13:43.551Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:13:43'),
(24595, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:07.759Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:07'),
(24596, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5033C2D155A85CDD63FA7BE154EF7D4\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Store.jtvplay.com.br\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771413247,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:07.760Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:08'),
(24597, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:08.342Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:08'),
(24598, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5033C2D155A85CDD63FA7BE154EF7D4\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413248721,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:08.722Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:08'),
(24599, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5033C2D155A85CDD63FA7BE154EF7D4\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413258714,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:18.715Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:19'),
(24600, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A57E76887C7419B1DA2EF39DC62FEC91\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413259363,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:19.364Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:20'),
(24601, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A57E76887C7419B1DA2EF39DC62FEC91\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594511529_25626511570384992_3862250810361345527_n.enc?ccb=11-4&oh=01_Q5Aa3wGL-_Mu3WD6B3Nl1DFOQd48M3dAM4O9OVXF5DNDG7YKEQ&oe=69BD0A91&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"u5x+o5wNu1Thhkob76KTSRGXlCOezR8fMXMHZ4oOrsg=\",\"fileLength\":\"22866\",\"seconds\":9,\"ptt\":true,\"mediaKey\":\"C5U7maMjgp7queFMBM4cXjnw+h8Aa+Uah3uSNn1wC6w=\",\"fileEncSha256\":\"ati9etgd8LH2u8p4oPeq\\/3jcBnh47MbRQBEAxIj2jbY=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594511529_25626511570384992_3862250810361345527_n.enc?ccb=11-4&oh=01_Q5Aa3wGL-_Mu3WD6B3Nl1DFOQd48M3dAM4O9OVXF5DNDG7YKEQ&oe=69BD0A91&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413250\",\"waveform\":\"ABgARUhJJE0QSzsvQy9BSjNFGjNBMSc+RCM0RzU4MUQSJEBAOjNDOyYnQAAAAAA\\/QjtHSTNBQ0xKSCQ1NkFIAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771413258,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:19.107Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:20'),
(24602, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:19.106Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:20'),
(24603, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:19.700Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:20'),
(24604, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A57E76887C7419B1DA2EF39DC62FEC91\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771413268863,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:28.863Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:29');
INSERT INTO `evolution_webhook_logs` (`id`, `evento`, `instance_name`, `payload`, `processado`, `criado_em`) VALUES
(24605, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A57150490840D8F409818000640FFD9A\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594016104_4390068381222546_4349066155459877488_n.enc?ccb=11-4&oh=01_Q5Aa3wGFgqMbEVUJtkGCwAs73N1cor1V6xdW9po9l3CGJm0d9g&oe=69BD0021&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"IvHbbPD\\/LL1MNpPbaxRd7hfTC+QQ+WaE6f8rscDHdXg=\",\"fileLength\":\"44396\",\"seconds\":18,\"ptt\":true,\"mediaKey\":\"XQVueXDROp7oJY1SqRO7IV5r48Yv3geEow8GYfDc+Fk=\",\"fileEncSha256\":\"kgRHJzFUCU+tmQRNbkNhkm0bPcEZX9HHDHo\\/4RrmvjA=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594016104_4390068381222546_4349066155459877488_n.enc?ccb=11-4&oh=01_Q5Aa3wGFgqMbEVUJtkGCwAs73N1cor1V6xdW9po9l3CGJm0d9g&oe=69BD0021&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413261\",\"waveform\":\"AAA9RSIeSUk+SkNIUSsrS0xEAA4AJ0k3DVIsPDooUSpKOUpMLjZGOkFDQjE3TksAAAY\\/LkdNRz8AQ0YxM09JDA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771413278,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:39.063Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:39'),
(24606, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:39.062Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:39'),
(24607, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:39.805Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:40'),
(24608, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A57150490840D8F409818000640FFD9A\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413279260,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:39.260Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:40'),
(24609, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:41.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:41'),
(24610, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5F4F02A7998617D68AE5D3559CD13C2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"conversation\":\"Void ibo7\"},\"messageType\":\"conversation\",\"messageTimestamp\":1771413281,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:41.666Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:41'),
(24611, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5F4F02A7998617D68AE5D3559CD13C2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413281880,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:41.881Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:42'),
(24612, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:42.437Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:42'),
(24613, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A57150490840D8F409818000640FFD9A\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771413283866,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:43.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:44'),
(24614, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A5F19D8210155429824AF5035FC071F2\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/637192435_3647685618707833_7470974241896373172_n.enc?ccb=11-4&oh=01_Q5Aa3wEKf1iYlL2Vlt6jlotuBiYk-yM02amfMKeXS6jSU-LLlQ&oe=69BD0590&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"8oSRDfD8tnBs4AnoTkLVLkcC6C0Hf\\/JxJpPGkqc9cn4=\",\"fileLength\":\"92685\",\"height\":1600,\"width\":738,\"mediaKey\":\"ruS88kbaw2TuG803Hhs6QLa9jNCOhyIGtaltWFUxuto=\",\"fileEncSha256\":\"+3wvbPL1MBwdzZZUqkP+d75\\/9RoSHudCUsJgvJhxrtA=\",\"directPath\":\"\\/v\\/t62.7118-24\\/637192435_3647685618707833_7470974241896373172_n.enc?ccb=11-4&oh=01_Q5Aa3wEKf1iYlL2Vlt6jlotuBiYk-yM02amfMKeXS6jSU-LLlQ&oe=69BD0590&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413297\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIAEgAIQMBIgACEQEDEQH\\/xAAwAAADAQEBAQEAAAAAAAAAAAAAAgMEBgEFBwEBAQEBAAAAAAAAAAAAAAAAAAIBA\\/\\/aAAwDAQACEAMQAAAA+x5xCndnC+H6AcgGQ3WrMCfXyomBPRJzXZuSNbyhEZ2q3S4LsCBMg6BtUYMQAP\\/EACcQAAICAQMCBgMBAAAAAAAAAAECAAMRBBIxEBQTITNBUlMiQmFR\\/9oACAEBAAE\\/AG1VH2rO9p+xINZR9qTutMT6qzuKPsWXeoYvBgG4hQIvlYB\\/elle5ycxdOWPMXTsjMZ4Oxx+Wela1HO+BNLnkwvphkZli04ynPSx9uAP8gsaMzA4PMFrbgMTK\\/CWMRZxmbmznEZ3JyYrFrF8pvb+TwXdjtEXTWj9BDprfhPAdCCw6VrY4ZlOJi\\/5QValv2j0ajbluBMmJYUUqPczc2eYLXHvO4fBGeen\\/8QAGxEAAgMBAQEAAAAAAAAAAAAAARAAERJhITH\\/2gAIAQIBAT8AeeiZQqeIVXww56rf\\/8QAHhEAAQMEAwAAAAAAAAAAAAAAAQAQEQISICFBUaH\\/2gAIAQMBAT8AeVSSTJbht9eqVtW4f\\/\\/Z\",\"contextInfo\":[],\"scansSidecar\":\"20f0XwGpiQNEeNfaIhNAc3emp2MRDCLSRL3EM9hZzi\\/7pMiSTRub4g==\",\"scanLengths\":[9862,43941,16690,22192],\"midQualityFileSha256\":\"3VQhqDCRUxhcA0UZWXjdrwG7ATY8t1jJk6loDAPSBTE=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771413298,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:58.314Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:58'),
(24615, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:58.313Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:58'),
(24616, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A5F19D8210155429824AF5035FC071F2\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413298548,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:58.549Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:14:59'),
(24617, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:14:58.902Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:14:59'),
(24618, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:15:23.751Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:15:24'),
(24619, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":true,\"id\":\"A52335F6A0607733385F26C977B1D316\"},\"pushName\":\"J T V P L A Y\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/637986483_1830182914307392_1328187305294236921_n.enc?ccb=11-4&oh=01_Q5Aa3wEx6H6XYZeeAeegyrxQG6rZzd1oE3juLnNXEBBtzX4k0w&oe=69BD002B&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"Lu0mdShvTuIcNnmsF7dMFHbju+yoLrJ\\/yspsmimaK0Y=\",\"fileLength\":\"42735\",\"seconds\":18,\"ptt\":true,\"mediaKey\":\"cOowGtwmVBtS+wH6QAUasXKVGXJH3VJ8pcFhFscLjuQ=\",\"fileEncSha256\":\"qWY7FYpY+y\\/oAF9ZemWwDJLHgL0NFT1VEpedS6B9jn4=\",\"directPath\":\"\\/v\\/t62.7117-24\\/637986483_1830182914307392_1328187305294236921_n.enc?ccb=11-4&oh=01_Q5Aa3wEx6H6XYZeeAeegyrxQG6rZzd1oE3juLnNXEBBtzX4k0w&oe=69BD002B&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413305\",\"waveform\":\"AAAUSDw6O1EAAEA0PwAAI1Q9NUFCADsjT05QTDwrRSJHAAABAE0ZADtMNU1FSD8nMi80FjRJJEQoKCk0FUtDAA==\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771413323,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:15:23.752Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:15:24'),
(24620, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A52335F6A0607733385F26C977B1D316\",\"fromMe\":true,\"status\":\"READ\",\"datetime\":1771413323996,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:15:23.997Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:15:25'),
(24621, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:15:24.480Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:15:26'),
(24622, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"278494319792223@lid\",\"id\":\"A52335F6A0607733385F26C977B1D316\",\"fromMe\":true,\"status\":\"PLAYED\",\"datetime\":1771413340320,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:15:40.320Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:15:40'),
(24623, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:10.094Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:10'),
(24624, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:10.298Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:11'),
(24625, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC7D0024CE66CA3DA26A67B1B6E69044\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"imageMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7118-24\\/590359220_2065149341007062_8880097286936055920_n.enc?ccb=11-4&oh=01_Q5Aa3wFTky3-l1tmfVsCfayw520L-N45hDwxazvMqIWGYQuRcw&oe=69BD2AFF&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"image\\/jpeg\",\"fileSha256\":\"+2uDpZL2w\\/8gPJ0J+BPLAtAtq5k0M9mxLTuW5xdP6J8=\",\"fileLength\":\"180647\",\"height\":1121,\"width\":1600,\"mediaKey\":\"i4G1U+xO5dsuB5ODtqh0uCvBZvTL65FENzwGeuzfS4s=\",\"fileEncSha256\":\"ms8bnwoxWuGcRSTmN3DPucwOXjbtZqFe+OHzNM81MSg=\",\"directPath\":\"\\/v\\/t62.7118-24\\/590359220_2065149341007062_8880097286936055920_n.enc?ccb=11-4&oh=01_Q5Aa3wFTky3-l1tmfVsCfayw520L-N45hDwxazvMqIWGYQuRcw&oe=69BD2AFF&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413369\",\"jpegThumbnail\":\"\\/9j\\/4AAQSkZJRgABAQAAAQABAAD\\/2wCEABsbGxscGx4hIR4qLSgtKj04MzM4PV1CR0JHQl2NWGdYWGdYjX2Xe3N7l33gsJycsOD\\/2c7Z\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/8BGxsbGxwbHiEhHiotKC0qPTgzMzg9XUJHQkdCXY1YZ1hYZ1iNfZd7c3uXfeCwnJyw4P\\/Zztn\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/CABEIADIARwMBIgACEQEDEQH\\/xAAvAAACAwEBAAAAAAAAAAAAAAAABQECAwQGAQEBAQEAAAAAAAAAAAAAAAACAAMB\\/9oADAMBAAIQAxAAAABfDxgEh5vRK2FeWuK5lJatDEL9SyVNMlktbL9c0NWcMpobrqoUBp6Rj5\\/vyRwdWGgVZ3poaxMcQAe9LwD3q5Arz1wqoEqgV\\/\\/EACoQAAEEAgECBQMFAAAAAAAAAAEAAgMRBBIxBSEQIzIzUhMiQVFUYXGR\\/9oACAEBAAE\\/AMl7nu8pppRtlq3AoyTajVifNk8VS+rk\\/JOdMbt60pV\\/KhfpIDawImPiFhOhYG8IxMu9Vlt0dbQn2e6KJWp1tUXVXK6afJUnpVrM\\/pOv9FT3CgE5j\\/if8R2A1NhMaLC6ZYgCkP2K2gXqVPmxN5iBRz4P24Q6nC3jGCd1c\\/iFiyMl2Q8Pc0BbltFYB8ulL7Z7p+Q\\/07LJB1tFHxPChnfCS0AJs8kraoJzH32ap2S6G2igtr4R2XdG1RKhJMncqDgILL9l6byUePAenw\\/\\/xAAbEQEBAQACAwAAAAAAAAAAAAABABESMRAgYf\\/aAAgBAgEBPwDfkFhYSGx2x35e7i8tjBuRaS+3\\/8QAGREBAQADAQAAAAAAAAAAAAAAAQAQETEC\\/9oACAEDAQE\\/AOTbtsLqeE8z55KaweW0wOTP\\/9k=\",\"contextInfo\":[],\"scansSidecar\":\"9mQQUX0Cq77xMDSQ73BBX7Vvltwdf7WstCgBGg\\/vtm\\/\\/JLTcJZLy2Q==\",\"scanLengths\":[15722,52993,38253,73679],\"midQualityFileSha256\":\"dBD7FiIFm69W4PdBYOIqEY2hxLqA1V5a5bqep892IFE=\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"bd\\/aDeqTe3yVY25Z\\/yZuz+zLdZQ3BCw4GLf\\/r0ebYBQ=\"}},\"contextInfo\":[],\"messageType\":\"imageMessage\",\"messageTimestamp\":1771413370,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:10.299Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:16:11'),
(24626, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:10.603Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:11'),
(24627, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:10.866Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:11'),
(24628, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:11.315Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:12'),
(24629, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:16.397Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:16'),
(24630, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:17.146Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:17'),
(24631, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"ACC94634E1080EF072E704A7A4FBD85B\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/595518654_1656272302453085_6025599520162380049_n.enc?ccb=11-4&oh=01_Q5Aa3wG8kbBPpM6iF0GEMj-xOJVQkg31Bv3rQ5y0OHUS462HTQ&oe=69BD2921&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"K3zMrjO04VikrRy1wL4UEApiEQ2LCu57n6KDwrMcSRg=\",\"fileLength\":\"13754\",\"seconds\":6,\"ptt\":true,\"mediaKey\":\"AXMkAgkttx7hMb3Bt+LYp1Et0aOxlIB\\/6h5o+Jr1V7I=\",\"fileEncSha256\":\"GjPs0O73vhgo\\/ryTH07SSH4gBcULzfqWb\\/3aKRz5BBE=\",\"directPath\":\"\\/v\\/t62.7117-24\\/595518654_1656272302453085_6025599520162380049_n.enc?ccb=11-4&oh=01_Q5Aa3wG8kbBPpM6iF0GEMj-xOJVQkg31Bv3rQ5y0OHUS462HTQ&oe=69BD2921&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413371\",\"waveform\":\"AAIEAAAAAAAANEc\\/O0c9PS0+SEU9OjY2NTUHAAAAAAAAG09GPBxCNAAAAAAAAAAAACwoNTg6HhUGKzIxNiQOAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"lZlemnBjBezmffIB3M5aJDO3iv8aVDBv2ipYJLcmto8=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771413376,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:17.147Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:16:17'),
(24632, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:17.460Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:18'),
(24633, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:16:17.738Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:16:18'),
(24634, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"recording\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:18:52.602Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:18:53'),
(24635, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"available\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:18:56.854Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:18:57'),
(24636, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:18:57.665Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:18:57'),
(24637, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC1F586E6BAE45BF1EBEDCB97505D02A\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"audioMessage\":{\"url\":\"https:\\/\\/mmg.whatsapp.net\\/v\\/t62.7117-24\\/594031710_916238924664564_6629803007490717939_n.enc?ccb=11-4&oh=01_Q5Aa3wHeWCxGVXEubrVFNzoYn7qA0eUSAl9ppSg8Gj_ruAqiwQ&oe=69BCF62E&_nc_sid=5e03e0&mms3=true\",\"mimetype\":\"audio\\/ogg; codecs=opus\",\"fileSha256\":\"O49jb19sclVxd8qg\\/w4cFjpuPVi\\/p6uTd8wPju5jjZA=\",\"fileLength\":\"8965\",\"seconds\":4,\"ptt\":true,\"mediaKey\":\"4m6ffyDNqz676rNM7TKKezHudeGciWW1AqtW3xRyP2Y=\",\"fileEncSha256\":\"WNu5H76PpoxCHBVqey7EuJjvJJ8UVpNKg7dv7TfUd6A=\",\"directPath\":\"\\/v\\/t62.7117-24\\/594031710_916238924664564_6629803007490717939_n.enc?ccb=11-4&oh=01_Q5Aa3wHeWCxGVXEubrVFNzoYn7qA0eUSAl9ppSg8Gj_ruAqiwQ&oe=69BCF62E&_nc_sid=5e03e0\",\"mediaKeyTimestamp\":\"1771413534\",\"waveform\":\"AAAAAAAAAAAAAAAAAAY8Ryk8SEQxQ0M\\/RUdGLSg8PC83LiE9HAgTJDgjEQACLiMiKBYzOxsCARsGAAAAAAAAAA==\"},\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"99BJ7MoXyWHK2LKzSuksxfn6KNEj4Omvt60ATST9rWw=\"}},\"contextInfo\":null,\"messageType\":\"audioMessage\",\"messageTimestamp\":1771413537,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:18:57.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:18:58'),
(24638, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:18:57.969Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:18:58'),
(24639, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:18:58.451Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:18:58'),
(24640, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973:44@lid\",\"id\":\"A5000219F292AE4260A5ABE4212AC314\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413658661,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:20:58.661Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:20:59'),
(24641, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973:44@lid\",\"id\":\"A5F43FB3627BE09648F7D341F874810C\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413658651,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:20:58.652Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:21:01'),
(24642, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973:44@lid\",\"id\":\"A59BB4776B632EBF1766599E0315ABD5\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413658667,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:20:58.667Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:21:01'),
(24643, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973:44@lid\",\"id\":\"A5549CA8A20E4519A17B809016E9BDEE\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413658685,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:20:58.686Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:21:01'),
(24644, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973:44@lid\",\"id\":\"A5810CD9CF6E61B93A31C2B7F80D0531\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413658701,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:20:58.701Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:21:02'),
(24645, 'messages.update', 'JTVPLAY', '{\"event\":\"messages.update\",\"instance\":\"JTVPLAY\",\"data\":{\"remoteJid\":\"78769717030973:44@lid\",\"id\":\"A53D4F46258B1DA836C980680B0EBADD\",\"fromMe\":true,\"status\":\"DELIVERY_ACK\",\"datetime\":1771413658673,\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:20:58.674Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:21:02'),
(24646, 'presence.update', 'JTVPLAY', '{\"event\":\"presence.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"presences\":{\"278494319792223@lid\":{\"lastKnownPresence\":\"composing\"}}},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:21:40.488Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:21:40'),
(24647, 'chats.update', 'JTVPLAY', '{\"event\":\"chats.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"owner\":\"554791592447@s.whatsapp.net\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:21:45.116Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:21:45'),
(24648, 'messages.upsert', 'JTVPLAY', '{\"event\":\"messages.upsert\",\"instance\":\"JTVPLAY\",\"data\":{\"key\":{\"remoteJid\":\"278494319792223@lid\",\"fromMe\":false,\"id\":\"AC49E2B08D2573C8351D9E3F16D2048E\"},\"pushName\":\"Tayh 🥰\",\"message\":{\"conversation\":\"Ficou tudo escuro a tela\",\"messageContextInfo\":{\"deviceListMetadata\":{\"recipientKeyHash\":\"TK7IKHFJUNk\\/KQ==\",\"recipientTimestamp\":\"1771021001\"},\"deviceListMetadataVersion\":2,\"messageSecret\":\"3VkkpbqTfkutChU30+gmFg4QcjJdo\\/PRL1p5BME2QdE=\"}},\"messageType\":\"conversation\",\"messageTimestamp\":1771413704,\"owner\":\"JTVPLAY\",\"source\":\"android\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:21:45.118Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 1, '2026-02-18 08:21:45'),
(24649, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":[{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"}],\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:21:45.616Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:21:46'),
(24650, 'contacts.update', 'JTVPLAY', '{\"event\":\"contacts.update\",\"instance\":\"JTVPLAY\",\"data\":{\"id\":\"278494319792223@lid\",\"profilePictureUrl\":\"https:\\/\\/pps.whatsapp.net\\/v\\/t61.24694-24\\/534420332_2062571121231862_2935828226952546134_n.jpg?ccb=11-4&oh=01_Q5Aa3wGq0BEJPFfILO5MqN7kdYtRT_PhzqJkTPYVjwkjoHcTHA&oe=69A2A1E1&_nc_sid=5e03e0&_nc_cat=107\",\"owner\":\"JTVPLAY\"},\"destination\":\"https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/api\\/webhook_evolution.php\",\"date_time\":\"2026-02-18T08:21:45.865Z\",\"sender\":\"554791592447@s.whatsapp.net\",\"server_url\":\"http:\\/\\/38.210.210.31:8080\",\"apikey\":\"MeuToken123Secret\"}', 0, '2026-02-18 08:21:47');

-- --------------------------------------------------------

--
-- Estrutura para tabela `faturas`
--

CREATE TABLE `faturas` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `valor` decimal(10,2) NOT NULL,
  `descricao` text DEFAULT NULL,
  `periodo_referencia` varchar(50) DEFAULT NULL,
  `data_vencimento` date NOT NULL,
  `data_pagamento` date DEFAULT NULL,
  `status` enum('pendente','pago','vencido','cancelado') DEFAULT 'pendente',
  `dias_atraso` int(11) DEFAULT 0,
  `juros_atraso` decimal(10,2) DEFAULT 0.00,
  `multa_atraso` decimal(10,2) DEFAULT 0.00,
  `metodo_pagamento` varchar(50) DEFAULT NULL,
  `transacao_id` varchar(255) DEFAULT NULL COMMENT 'ID da transação do Mercado Pago',
  `payment_data` longtext DEFAULT NULL COMMENT 'Dados completos do pagamento em JSON',
  `pix_chave_id` int(11) DEFAULT NULL,
  `comprovante_url` varchar(500) DEFAULT NULL,
  `link_pagamento` varchar(500) DEFAULT NULL,
  `notificacoes_enviadas` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `faturas`
--

INSERT INTO `faturas` (`id`, `cliente_id`, `valor`, `descricao`, `periodo_referencia`, `data_vencimento`, `data_pagamento`, `status`, `dias_atraso`, `juros_atraso`, `multa_atraso`, `metodo_pagamento`, `transacao_id`, `payment_data`, `pix_chave_id`, `comprovante_url`, `link_pagamento`, `notificacoes_enviadas`, `criado_em`, `atualizado_em`) VALUES
(1, 37, 40.00, 'PIX Manual Teste16', NULL, '2026-02-13', '2026-02-14', '', 0, 0.00, 0.00, 'pix_manual', '146524369622', '{\"accounts_info\":null,\"acquirer_reconciliation\":[],\"additional_info\":{\"tracking_id\":\"platform:v1-whitelabel,so:ALL,type:N\\/A,security:none\"},\"authorization_code\":null,\"binary_mode\":false,\"brand_id\":null,\"build_version\":\"3.143.0-rc-4\",\"call_for_authorize_id\":null,\"callback_url\":null,\"captured\":true,\"card\":[],\"charges_details\":[{\"accounts\":{\"from\":\"collector\",\"to\":\"mp\"},\"amounts\":{\"original\":0.4,\"refunded\":0},\"client_id\":0,\"date_created\":\"2026-02-16T13:49:05.716-04:00\",\"external_charge_id\":\"01KHKS3Y8X6E88VKSMDVP56EER\",\"id\":\"146524369622-001\",\"last_updated\":\"2026-02-16T13:49:05.716-04:00\",\"metadata\":{\"reason\":\"\",\"source\":\"proc-svc-charges\",\"source_detail\":\"processing_fee_charge\"},\"name\":\"mercadopago_fee\",\"refund_charges\":[],\"reserve_id\":null,\"type\":\"fee\",\"update_charges\":[]}],\"charges_execution_info\":{\"internal_execution\":{\"date\":\"2026-02-16T13:49:05.702-04:00\",\"execution_id\":\"01KHKS3Y881YMM9J43A0JMYMMN\"}},\"collector_id\":162954231,\"corporation_id\":null,\"counter_currency\":null,\"coupon_amount\":0,\"currency_id\":\"BRL\",\"date_approved\":null,\"date_created\":\"2026-02-16T13:49:05.713-04:00\",\"date_last_updated\":\"2026-02-16T13:49:05.713-04:00\",\"date_of_expiration\":\"2026-02-17T13:49:05.553-04:00\",\"deduction_schema\":null,\"description\":\"PIX Manual Teste16\",\"differential_pricing_id\":null,\"external_reference\":\"1\",\"fee_details\":[],\"financing_group\":null,\"id\":146524369622,\"installments\":1,\"integrator_id\":null,\"issuer_id\":\"12501\",\"live_mode\":true,\"marketplace_owner\":null,\"merchant_account_id\":null,\"merchant_number\":null,\"metadata\":[],\"money_release_date\":null,\"money_release_schema\":null,\"money_release_status\":\"released\",\"notification_url\":null,\"operation_type\":\"regular_payment\",\"order\":[],\"payer\":{\"email\":null,\"entity_type\":null,\"first_name\":null,\"id\":\"1604052243\",\"identification\":{\"number\":null,\"type\":null},\"last_name\":null,\"operator_id\":null,\"phone\":{\"area_code\":null,\"extension\":null,\"number\":null},\"type\":null},\"payment_method\":{\"id\":\"pix\",\"issuer_id\":\"12501\",\"type\":\"bank_transfer\"},\"payment_method_id\":\"pix\",\"payment_type_id\":\"bank_transfer\",\"platform_id\":null,\"point_of_interaction\":{\"application_data\":{\"name\":null,\"operating_system\":null,\"version\":null},\"business_info\":{\"branch\":\"Merchant Services\",\"sub_unit\":\"default\",\"unit\":\"online_payments\"},\"location\":{\"source\":null,\"state_id\":null},\"transaction_data\":{\"bank_info\":{\"collector\":{\"account_alias\":null,\"account_holder_name\":\"Johnny Schmitt de Souza\",\"account_id\":null,\"long_name\":null,\"transfer_account_id\":null},\"is_same_bank_account_owner\":null,\"origin_bank_id\":null,\"origin_wallet_id\":null,\"payer\":{\"account_id\":null,\"branch\":null,\"external_account_id\":null,\"id\":null,\"identification\":[],\"long_name\":null}},\"bank_transfer_id\":null,\"e2e_id\":null,\"financial_institution\":null,\"is_end_consumer\":null,\"merchant_category_code\":null,\"qr_code\":\"00020126440014br.gov.bcb.pix0122dreesup.0102@gmail.com520400005303986540540.005802BR5911SOJO62933736005Itaja62250521mpqrinter1465243696226304EAB7\",\"qr_code_base64\":\"iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQMAAACUKAyrAAAABlBMVEX\\/\\/\\/8AAABVwtN+AAAIqklEQVR42uzdQXLaShAGYFEsOAZH0dV9FB1DCwq9ei4rM90zApLYcaR8\\/4YAwXwsu6anexAREREREREREREREREREREREREREREREREREdlnzkuTaRiW5fbx\\/uX9pfd\\/Xuv35\\/eX3h+v\\/79\\/KZ9\\/+\\/jo+PG56u\\/k91PujIyMjIyMjIyMjIyMhzNOvefV69diLN9V2abadHk3rF+6Pk+v3z\\/+fzSNjIyMjIyMjIyMjIyMxzSWvxnNa\\/23Wta6MNiuqf7LxiX9trE2dl5nZGRkZGRkZGRkZGRk\\/AuM+RwxWtvH9TctH8a5PW8s75+KiZGRkZGRkZGRkZGR8d8zhrpuSj2WoZczJtSBb+n96tzwM+pCRkZGRkZGRkZGRkbGvRi3zVv1X79HszVXr3eNv95HysjIyMjIyMjIyMjIyPhJxq15KZUhm7rPw929h8\\/X88Lfn+nCyMjIyMjIyMjIyMj4VxsfJNx3q2ZU5p7LMC8l9mqGOrDcmzuVHs7fDCMjIyMjIyMjIyMj499uvPbO0M5pH8Cc9gI869GsZlZ2ZlV+5JT2BNwZGRkZGRkZGRkZGRkZ\\/7Qx7ipY98SFGvVa16Tzdg3bvbs31z2YSzItZX7KkzNNRkZGRkZGRkZGRkbGvRrfE22lR3NIr8\\/p+ZLu1eW6MJ4fpnPE3KvJyMjIyMjIyMjIyMh4MGO\\/F7OcxeUZlXM5m8szSar7b+UeXOjNXP\\/OvRgr28jIyMjIyMjIyMjIyHhA41DPHun3Pbb\\/P569ZVN4P5y9VTvY3oa8b4CRkZGRkZGRkZGRkZHxO4zXdO63ZZrSfJS1Jp3SOWBlzueL7f24PE+FkZGRkZGRkZGRkZHxYMahN1OkUx+G39TfxfZw9sj4o3fz\\/itWRkZGRkZGRkZGRkbGXRun3lnbkHoyt+rCORjzPbq2V\\/M9P9mjycjIyMjIyMjIyMjIyPj5xjijMs+qDLVo5zsD520YunsB3pp5KdW+uHCXb2BkZGRkZGRkZGRkZDyssZpN2TVO23sBuvXkkOrF7g62V84LGRkZGRkZGRkZGRkZ920stiXVh0uaVdnZhx16O3NPZq4rt2yXp\\/viGBkZGRkZGRkZGRkZGb\\/CuNaY1X64dVZlt2fzEuamhDt8eZ9cux+uf75YfhMjIyMjIyMjIyMjI+PBjOc0ezLWg3n+f\\/jotbcHoMrYfq7YKtP4Wo8mIyMjIyMjIyMjIyPj\\/ozVZx\\/OItl63tnhPaYf2PZgVjNI8hkdIyMjIyMjIyMjIyMj4581rjsKzuX\\/VvNS2p0FW3f2qvknb+l5W9Pet+\\/yMTIyMjIyMjIyMjIyHslY9WQudY9m3gs3pHtwc7Fd0364ZeO3jPWMy0uZVfmkf5SRkZGRkZGRkZGRkXG\\/xnP3jK39juqs7boxYyTsA6hMY3PWdmrP6hgZGRkZGRkZGRkZGRm\\/zTileSlDPQ9l2ZiPMqSZltG0dZ6Ya99fmaPJyMjIyMjIyMjIyMi4H+MQPtvOS5nLueH6N6f2sd0Ld0k7u6vHcE74yr44RkZGRkZGRkZGRkbGHRvXndzdmZOXticz\\/7aqLnzYk1n+zim9fn9aFzIyMjIyMjIyMjIyMu7VWPVBhkzbv6k89vsfQ13Z7gc4tV\\/2+v04RkZGRkZGRkZGRkZGxs80ntNMylt3R3c5H+zvCUjngf0d3UtzT+4U3n+6046RkZGRkZGRkZGRkXGHxqU+Lzy39Vq3\\/qtMU\\/qOcE5YnSt2ejd\\/Zl4KIyMjIyMjIyMjIyPj\\/oxD+lu31LMZLXk2SXsmN6e\\/GOu97XrwlR5NRkZGRkZGRkZGRkZGxi8xhn1x57APoMxLWTbODy\\/b+wPGR3f\\/qrkpAyMjIyMjIyMjIyMj41GNnb0Aa104JMO1N+8\\/3ocrPZrz9jlhe154enxuyMjIyMjIyMjIyMjIuFdjrA\\/zGVu3nuvWgUuxdWdTZsOlHUfCyMjIyMjIyMjIyMjI+D3GsLPglmrSS9rNne\\/sbfV6Lr35KPmO3\\/2VXXaMjIyMjIyMjIyMjIz7NVbzUvL+t6Gt40L9mM8Rx7ZeDDMry5yVuB\\/uqZWRkZGRkZGRkZGRkXHfxmwtvZtLqgvjmV25N5d3rsXH7bO2fD+OkZGRkZGRkZGRkZGR8c8ahzCTstujee3NT8mPS5pR2alZ271wp\\/Y8kZGRkZGRkZGRkZGR8UjGqi7szk1ZNmZWzts9mTljqhvX+SjLj3PC1XpnZGRkZGRkZGRkZGQ8nHGqezWXZK7O3PIZWue+XJ5Z2f7GB7vYnszRZGRkZGRkZGRkZGRkZPwiY8it7I+b2po03cFburMmc62bdxi0e+Fe6iNlZGRkZGRkZGRkZGTcqzFYp43zv1z\\/TRuzKENPZrj\\/1jlHDLkzMjIyMjIyMjIyMjIey5h3cudd3P09AKH+u\\/buvcXHdjfbXN+Lq2ZVMjIyMjIyMjIyMjIyHszY7YO8hT7H9uyts9962eh3bGeRnMJ\\/DvfkGBkZGRkZGRkZGRkZGb\\/HGJN3dYf7b+GcsJppmffFbdWuYQ\\/Ai3vEGRkZGRkZGRkZGRkZd2k8t0VdZwdb7tUM+wDW\\/zcuS3dmSan\\/hnYm5SXNJmFkZGRkZGRkZGRkZDyYcWqfb5vjWVvo3ax2qrX36qrdbLkuLPfq7oyMjIyMjIyMjIyMjIzfYyzfHfcBtPNRci2bezTncm44NjVr\\/C1hTsrz3QWMjIyMjIyMjIyMjIyHMobezP4clXzvLc+qDO\\/n2ZVhTgojIyMjIyMjIyMjI+O\\/ZLyVHswwo7JTBw5tj2apD8MZXP78\\/Wd2dDMyMjIyMjIyMjIyMjJ+nbE138p3de7u5R7NfGevayqGzozKJzu6GRkZGRkZGRkZGRkZ92rszEsp9kt6fQj1Yrc3c6h7MedizmnnpjAyMjIyMjIyMjIyMh7MKCIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIi\\/3j+CwAA\\/\\/+CPUJSQadRtQAAAABJRU5ErkJggg==\",\"ticket_url\":\"https:\\/\\/www.mercadopago.com.br\\/payments\\/146524369622\\/ticket?caller_id=1604052243&hash=edefedc3-6bb9-4eb5-8d29-dd65d0e3ef2a\",\"transaction_id\":null},\"type\":\"OPENPLATFORM\"},\"pos_id\":null,\"processing_mode\":\"aggregator\",\"refunds\":[],\"release_info\":null,\"shipping_amount\":0,\"sponsor_id\":null,\"statement_descriptor\":null,\"status\":\"pending\",\"status_detail\":\"pending_waiting_transfer\",\"store_id\":null,\"tags\":null,\"taxes_amount\":0,\"transaction_amount\":40,\"transaction_amount_refunded\":0,\"transaction_details\":{\"acquirer_reference\":null,\"bank_transfer_id\":null,\"external_resource_url\":null,\"financial_institution\":null,\"installment_amount\":0,\"net_received_amount\":0,\"overpaid_amount\":0,\"payable_deferral_period\":null,\"payment_method_reference_id\":null,\"total_paid_amount\":40,\"transaction_id\":null}}', NULL, NULL, NULL, 0, '2026-02-14 16:31:58', '2026-02-16 17:49:06'),
(8, 3, 100.00, 'Mensalidade - carol', NULL, '2026-02-16', NULL, 'pendente', 0, 0.00, 0.00, NULL, '145844412445', '{\"accounts_info\":null,\"acquirer_reconciliation\":[],\"additional_info\":{\"tracking_id\":\"platform:v1-whitelabel,so:ALL,type:N\\/A,security:none\"},\"authorization_code\":null,\"binary_mode\":false,\"brand_id\":null,\"build_version\":\"3.143.0-rc-4\",\"call_for_authorize_id\":null,\"callback_url\":null,\"captured\":true,\"card\":[],\"charges_details\":[{\"accounts\":{\"from\":\"collector\",\"to\":\"mp\"},\"amounts\":{\"original\":0.99,\"refunded\":0},\"client_id\":0,\"date_created\":\"2026-02-16T16:00:49.708-04:00\",\"external_charge_id\":\"01KHM0N50GN7GE5P8JX1RE5KDA\",\"id\":\"145844412445-001\",\"last_updated\":\"2026-02-16T16:00:49.708-04:00\",\"metadata\":{\"reason\":\"\",\"source\":\"proc-svc-charges\",\"source_detail\":\"processing_fee_charge\"},\"name\":\"mercadopago_fee\",\"refund_charges\":[],\"reserve_id\":null,\"type\":\"fee\",\"update_charges\":[]}],\"charges_execution_info\":{\"internal_execution\":{\"date\":\"2026-02-16T16:00:49.693-04:00\",\"execution_id\":\"01KHM0N4ZS7E50XSNBBZMKE7YJ\"}},\"collector_id\":162954231,\"corporation_id\":null,\"counter_currency\":null,\"coupon_amount\":0,\"currency_id\":\"BRL\",\"date_approved\":null,\"date_created\":\"2026-02-16T16:00:49.705-04:00\",\"date_last_updated\":\"2026-02-16T16:00:49.705-04:00\",\"date_of_expiration\":\"2026-02-17T16:00:49.527-04:00\",\"deduction_schema\":null,\"description\":\"Mensalidade - carol\",\"differential_pricing_id\":null,\"external_reference\":\"8\",\"fee_details\":[],\"financing_group\":null,\"id\":145844412445,\"installments\":1,\"integrator_id\":null,\"issuer_id\":\"12501\",\"live_mode\":true,\"marketplace_owner\":null,\"merchant_account_id\":null,\"merchant_number\":null,\"metadata\":[],\"money_release_date\":null,\"money_release_schema\":null,\"money_release_status\":\"released\",\"notification_url\":null,\"operation_type\":\"regular_payment\",\"order\":[],\"payer\":{\"email\":null,\"entity_type\":null,\"first_name\":null,\"id\":\"1575288848\",\"identification\":{\"number\":null,\"type\":null},\"last_name\":null,\"operator_id\":null,\"phone\":{\"area_code\":null,\"extension\":null,\"number\":null},\"type\":null},\"payment_method\":{\"id\":\"pix\",\"issuer_id\":\"12501\",\"type\":\"bank_transfer\"},\"payment_method_id\":\"pix\",\"payment_type_id\":\"bank_transfer\",\"platform_id\":null,\"point_of_interaction\":{\"application_data\":{\"name\":null,\"operating_system\":null,\"version\":null},\"business_info\":{\"branch\":\"Merchant Services\",\"sub_unit\":\"default\",\"unit\":\"online_payments\"},\"location\":{\"source\":null,\"state_id\":null},\"transaction_data\":{\"bank_info\":{\"collector\":{\"account_alias\":null,\"account_holder_name\":\"Johnny Schmitt de Souza\",\"account_id\":null,\"long_name\":null,\"transfer_account_id\":null},\"is_same_bank_account_owner\":null,\"origin_bank_id\":null,\"origin_wallet_id\":null,\"payer\":{\"account_id\":null,\"branch\":null,\"external_account_id\":null,\"id\":null,\"identification\":[],\"long_name\":null}},\"bank_transfer_id\":null,\"e2e_id\":null,\"financial_institution\":null,\"is_end_consumer\":null,\"merchant_category_code\":null,\"qr_code\":\"00020126440014br.gov.bcb.pix0122dreesup.0102@gmail.com5204000053039865406100.005802BR5911SOJO62933736005Itaja62250521mpqrinter1458444124456304C1D1\",\"qr_code_base64\":\"iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQMAAACUKAyrAAAABlBMVEX\\/\\/\\/8AAABVwtN+AAAIvklEQVR42uzdQW7izhIHYCMWPgZH4eocxcdggdJPQrG6q7pNyPtPZsae77dBDkz4MrtSVXdNIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIi+8y5dFmmqZTH891S7tN0qT+vmT8\\/t75\\/D7\\/1+Xwt5fm52+fz8+fl+fzMtfvmD0ZGRkZGRkZGRkZGxsMZl\\/65WpvvXi2Xz+8u7fP6nY1lfb+xfv67j8\\/PR9OVkZGRkZGRkZGRkZHxmMb1N9bnR6gHQ31YqrFaS\\/98q\\/Vhtd+r5fk6t38LIyMjIyMjIyMjIyMj419mDP2\\/qa9lw+ugX5j7iJ817KmaGBkZGRkZGRkZGRkZ\\/0VjU+ctacbyq7rw1lrXn0+pbzgxMjIyMjIyMjIyMjL+M8bh8yXNXC5p9vJS\\/4ZqaF6bc3D59VfMkTIyMjIyMjIyMjIyMjL+IuPWfSmXVLt+9ZzvR9l+PtV+4n+804WRkZGRkZGRkZGRkfGvNo5T76gsyTSuF3M92Nu+mt38fhgZGRkZGRkZGRkZGXdhfH7nWgee60xlMI9nNHNWa+25zaMZzcG5uC\\/qQkZGRkZGRkZGRkZGRsYfNpY0m5lnMtf353S2b1DLDs72pRnOj\\/C3MDIyMjIyMjIyMjIyHtZ4Tt9V+rpw2CccnJdr6sDQJ7zW58\\/PnappfmM2k5GRkZGRkZGRkZGRccfGpZ3JfATr1g62fk\\/A1g62xn4bfb6Z1fzyHk1GRkZGRkZGRkZGRsa9GaN16\\/7HXB\\/Wucgy6rWVYAn3P97bOvHNupCRkZGRkZGRkZGRkZHx54xxL8BWDTvsHw6fB+fgcs272m7frVkZGRkZGRkZGRkZGRn3Zpz6WctmV3d9\\/57qxHn7nNy1ndGcRzvY8k7u0+sd3YyMjIyMjIyMjIyMjHs1rrvYHn1dmHttU2sanI8rox5dUxfWXtzYxsjIyMjIyMjIyMjIyPhnjEvb9zsP76Yc3mGZ767M+wLy\\/Sk18b6U2xu1KyMjIyMjIyMjIyMj4y6NW+fd1t1sc+gb1s\\/NyTiFOrGf2Qz3pZxC\\/3D93O1FQ5ORkZGRkZGRkZGRkXGXxjyLWeqdlZdRD268k217JnNOs5mlrQNLNd9f\\/CcyMjIyMjIyMjIyMjIy\\/qixjO5FOQ9nMUPtmq2hPxjP6gV76axvzpEyMjIyMjIyMjIyMjLu0Li8Uyfegy33CXO\\/b2geznBO01v3pTAyMjIyMjIyMjIyMu7VmOvC9Xzc1i7u3IO7bOxey\\/sBwh6AF3sCGBkZGRkZGRkZGRkZGX+jcWyur3NvvfRn9nrLvPHvS7KFM34fjIyMjIyMjIyMjIyMhzMO7kvJP+\\/3AOS9cVN6P+8FCH3EUzo3N7g\\/hZGRkZGRkZGRkZGR8SDGKZ1Xe+aRLI21ee1nMMOdI1M21pnMMtof8MHIyMjIyMjIyMjIyMj4u43j+1JCPzD0B+eN18Es5tTdjzKF\\/XChT8jIyMjIyMjIyMjIyHhEY+4XnutegPz+Vj9wvU\\/lmvbCXVvg+v5U9wFcW9t3dtoxMjIyMjIyMjIyMjLuyDi0NFnS3SKDHW2hB1e6u0fK1jm5jTsrGRkZGRkZGRkZGRkZD2I813nHS5p\\/zHsASjond+mnJnvT1O65fjH\\/+M6+OEZGRkZGRkZGRkZGRsZfb1xr1cdG3zD2BYcznFPbH7xvnIub25r21NveObvHyMjIyMjIyMjIyMi4N2OzB2AZ9Qnv\\/R2V+ZzcsC5sXqfu3Nx6Lu5U76y8v\\/gfZGRkZGRkZGRkZGRk3Ksxz2auPblHv9c6mPLe69iDy+fgsjXYrt84u8fIyMjIyMjIyMjIyMj4I8a6B6DU+1IuqSbNZ\\/ZKf49KvwdgeGbvFPqLU2tlZGRkZGRkZGRkZGQ8kvEcTH19ON7FFvqESz+jmWc3092VcSazPzfHyMjIyMjIyMjIyMh4HGOYsWxmNZf2c3M6HzeHGc7wXdfRHZWhJ9fMZpbW+sHIyMjIyMjIyMjIyMj4B4xL6hte0kzlJc1kDvfH5dpzbndyT+v9KKkvGPuEjIyMjIyMjIyMjIyMhzM2d1Lm\\/XD5DsppVCdOdZbzNvp8Pu8Wzs292S9kZGRkZGRkZGRkZGTcq7G5o7L0ewH6uvDFzu68o7u0d1uWWh+Wri5kZGRkZGRkZGRkZGRk\\/JPGZZrybGY4k5drzmHtOw1r1aq+b+wu+E5Pk5GRkZGRkZGRkZGRcW\\/GXB+O099BmfcDlP5vuPZ75Dbupixf3qPJyMjIyMjIyMjIyMi4V2Oe0SztLratmc2ysZNtLl1u6ef1jpLx+ThGRkZGRkZGRkZGRkbG32g8p7spH1\\/0A2Mt289s5rspB\\/el1Hx\\/jpSRkZGRkZGRkZGRkXGvxua+lGC5tD+PfcLQP7xtzHL2e+QaWzgnx8jIyMjIyMjIyMjIeDBjsw9gYA+W0JOb00xn2MGdd3KXtD+gORc37M0xMjIyMjIyMjIyMjIex7ialmlwH+Qc7oHsz8Xl3NN8ZBnZT\\/185DthZGRkZGRkZGRkZGRk\\/DljnsF8pF3cLwxLO5M5rmVD7XpN5+gYGRkZGRkZGRkZGRkPazz3pd3Sm3IdmPuHaQYznpMrZbwX4NkfHOzsZmRkZGRkZGRkZGRkPJJxefU8hRnN\\/tzbnOrCwd8y7N2Fv\\/3NfXGMjIyMjIyMjIyMjIyMP2Wsv\\/Pc7wHI96UsqV84MNXZzFLP+F03\\/tGXZ\\/cYGRkZGRkZGRkZGRmPZRz2\\/Za0D6CkevHWzmYObNkSXl\\/NajIyMjIyMjIyMjIyMh7LGGY1Bz24fnda\\/o5oDndaVlsJ5+T+z9qVkZGRkZGRkZGRkZGR8b8be\\/MjnNkL33FJ1kv3XU2\\/MP5NYUbzy93cjIyMjIyMjIyMjIyMBzAO7kvpZzOnYOr7ic3zrX0dGGr9t+6LO\\/0\\/d7owMjIyMjIyMjIyMjL+\\/UYREREREREREREREREREREREREREREREREREfnH878AAAD\\/\\/8RW+6VMY02sAAAAAElFTkSuQmCC\",\"ticket_url\":\"https:\\/\\/www.mercadopago.com.br\\/payments\\/145844412445\\/ticket?caller_id=1575288848&hash=a536f048-ef7f-46ae-89dc-b495b2bba829\",\"transaction_id\":null},\"type\":\"OPENPLATFORM\"},\"pos_id\":null,\"processing_mode\":\"aggregator\",\"refunds\":[],\"release_info\":null,\"shipping_amount\":0,\"sponsor_id\":null,\"statement_descriptor\":null,\"status\":\"pending\",\"status_detail\":\"pending_waiting_transfer\",\"store_id\":null,\"tags\":null,\"taxes_amount\":0,\"transaction_amount\":100,\"transaction_amount_refunded\":0,\"transaction_details\":{\"acquirer_reference\":null,\"bank_transfer_id\":null,\"external_resource_url\":null,\"financial_institution\":null,\"installment_amount\":0,\"net_received_amount\":0,\"overpaid_amount\":0,\"payable_deferral_period\":null,\"payment_method_reference_id\":null,\"total_paid_amount\":100,\"transaction_id\":null}}', 1, NULL, NULL, 0, '2026-02-16 20:00:49', '2026-02-16 20:35:12'),
(10, 3, 100.00, 'Mensalidade - carol', NULL, '2026-02-17', NULL, 'pendente', 0, 0.00, 0.00, NULL, NULL, NULL, 1, NULL, NULL, 0, '2026-02-17 12:00:14', '2026-02-17 12:00:14'),
(11, 47, 40.00, 'Mensalidade - livia', NULL, '2026-02-17', NULL, 'pendente', 0, 0.00, 0.00, NULL, NULL, NULL, 1, NULL, NULL, 0, '2026-02-17 12:00:19', '2026-02-17 12:00:19'),
(12, 53, 35.00, 'Mensalidade - Kev / IOS VIVO', NULL, '2026-02-17', NULL, 'pendente', 0, 0.00, 0.00, NULL, NULL, NULL, 1, NULL, NULL, 0, '2026-02-17 21:02:12', '2026-02-17 21:02:12');

-- --------------------------------------------------------

--
-- Estrutura para tabela `fila_envio_whatsapp`
--

CREATE TABLE `fila_envio_whatsapp` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `cliente_id` int(10) UNSIGNED NOT NULL,
  `instancia_id` int(10) UNSIGNED NOT NULL,
  `destinatario` varchar(20) NOT NULL,
  `mensagem` text NOT NULL,
  `midia_url` varchar(500) DEFAULT NULL,
  `midia_tipo` varchar(50) DEFAULT NULL,
  `status` enum('pendente','processando','concluido','erro','cancelado') DEFAULT 'pendente',
  `prioridade` int(11) DEFAULT 0,
  `agendado_para` timestamp NULL DEFAULT NULL,
  `erro` text DEFAULT NULL,
  `tentativas` int(11) DEFAULT 0,
  `processado_em` timestamp NULL DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `grupos_contatos`
--

CREATE TABLE `grupos_contatos` (
  `id` int(11) NOT NULL,
  `usuario_id` int(11) NOT NULL,
  `nome` varchar(100) NOT NULL,
  `descricao` text DEFAULT NULL,
  `total_contatos` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `grupos_whatsapp`
--

CREATE TABLE `grupos_whatsapp` (
  `id` int(11) NOT NULL,
  `nome` varchar(255) NOT NULL,
  `descricao` text DEFAULT NULL,
  `total_contatos` int(11) DEFAULT 0,
  `jid` varchar(255) DEFAULT NULL,
  `metadata` text DEFAULT NULL,
  `sincronizado` tinyint(4) DEFAULT 0,
  `ultima_sincronizacao` datetime DEFAULT NULL,
  `criado_por` int(11) DEFAULT NULL,
  `criado_em` datetime DEFAULT NULL,
  `atualizado_em` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `grupo_contato_membros`
--

CREATE TABLE `grupo_contato_membros` (
  `id` int(11) NOT NULL,
  `grupo_id` int(11) NOT NULL,
  `numero` varchar(20) NOT NULL,
  `nome` varchar(100) DEFAULT NULL,
  `adicionado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `instancias_whatsapp`
--

CREATE TABLE `instancias_whatsapp` (
  `id` int(11) NOT NULL,
  `nome_instancia` varchar(100) NOT NULL,
  `status` varchar(50) DEFAULT 'disconnected',
  `numero_conectado` varchar(50) DEFAULT NULL,
  `nome_perfil` varchar(255) DEFAULT NULL,
  `qrcode` text DEFAULT NULL,
  `data_criacao` datetime DEFAULT current_timestamp(),
  `data_atualizacao` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `instancias_whatsapp`
--

INSERT INTO `instancias_whatsapp` (`id`, `nome_instancia`, `status`, `numero_conectado`, `nome_perfil`, `qrcode`, `data_criacao`, `data_atualizacao`) VALUES
(1, 'JTVPLAY', 'open', '554791592447@s.whatsapp.net', 'J T V P L A Y', NULL, '2026-02-10 11:17:54', '2026-02-10 12:12:07'),
(2, 'JTVPLAY_NOVA', 'open', '554791063914@s.whatsapp.net', '~Johnny', NULL, '2026-02-10 11:17:54', '2026-02-10 12:12:07');

-- --------------------------------------------------------

--
-- Estrutura para tabela `lid_mapping`
--

CREATE TABLE `lid_mapping` (
  `id` int(10) UNSIGNED NOT NULL,
  `lid` varchar(50) NOT NULL,
  `telefone_real` varchar(20) NOT NULL,
  `cliente_id` int(10) UNSIGNED DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `logs_comandos`
--

CREATE TABLE `logs_comandos` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) DEFAULT NULL,
  `whatsapp` varchar(20) DEFAULT NULL,
  `comando` varchar(100) DEFAULT NULL,
  `resposta` text DEFAULT NULL,
  `executado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `logs_mensagens`
--

CREATE TABLE `logs_mensagens` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) DEFAULT NULL,
  `destinatario` varchar(20) DEFAULT NULL,
  `tipo_mensagem` varchar(50) DEFAULT NULL,
  `mensagem` text DEFAULT NULL,
  `status` varchar(20) DEFAULT 'pendente',
  `resposta_api` text DEFAULT NULL,
  `enviado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `logs_mensagens`
--

INSERT INTO `logs_mensagens` (`id`, `cliente_id`, `destinatario`, `tipo_mensagem`, `mensagem`, `status`, `resposta_api`, `enviado_em`) VALUES
(1, 3, NULL, 'cobranca_manual', NULL, 'erro', 'Nenhuma instância ativa configurada', '2026-01-26 15:21:57'),
(2, 3, NULL, 'cobranca_manual', NULL, 'erro', 'HTTP 500: {\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Cannot read properties of undefined (reading \'match\')\"}', '2026-01-26 15:28:32'),
(3, 3, '5547992012997', 'cobranca_manual', 'Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'enviado', '{\"key\":{\"remoteJid\":\"5547992012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F597211F40DD0F47C2\"},\"message\":{\"conversation\":\"Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.\"},\"messageTimestamp\":{\"low\":1769448979,\"high\":0,\"unsigned\":true},\"status\":\"SENT\"}', '2026-01-26 15:36:24'),
(4, 3, '5547992012997', 'cobranca_manual', 'Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', '{\"status\":400,\"error\":\"Bad Request\",\"message\":\"Instância não está conectada\"}', '2026-01-26 19:32:10'),
(5, 2, '47991063914', 'cobranca_manual', 'Olá jou, sua fatura de R$ R$ 40,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', '{\"status\":400,\"error\":\"Bad Request\",\"message\":\"Instância não está conectada\"}', '2026-01-26 19:35:42'),
(6, 3, '5547992012997', 'cobranca_manual', 'Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', 'Array', '2026-02-09 21:25:12'),
(7, 2, '47991063914', 'cobranca_manual', 'Olá jou, sua fatura de R$ R$ 40,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', 'Array', '2026-02-09 21:25:15'),
(8, 1, '12345678900', 'cobranca_manual', 'Olá Empresa Teste, sua fatura de R$ R$ 0,00 vence hoje (18/02/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', 'Array', '2026-02-09 21:25:18'),
(9, 3, '5547992012997', 'cobranca_manual', 'Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', 'Array', '2026-02-09 21:36:06'),
(10, 3, '5547992012997', 'cobranca_manual', 'Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'erro', 'Array', '2026-02-09 21:51:16'),
(11, 3, '5547992012997', 'cobranca_manual', 'Olá carol, sua fatura de R$ R$ 100,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB033BA760B1FD337A30C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Ol\\u00e1 carol, sua fatura de R$ R$ 100,00 vence hoje (26\\/01\\/2026). Por favor, realize o pagamento para manter seu servi\\u00e7o ativo.\"}},\"messageTimestamp\":\"1770735192\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-10 11:53:13'),
(12, 2, '47991063914', 'cobranca_manual', 'Olá jou, sua fatura de R$ R$ 40,00 vence hoje (26/01/2026). Por favor, realize o pagamento para manter seu serviço ativo.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06A6388E711702A52D9\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Ol\\u00e1 jou, sua fatura de R$ R$ 40,00 vence hoje (26\\/01\\/2026). Por favor, realize o pagamento para manter seu servi\\u00e7o ativo.\"}},\"messageTimestamp\":\"1770735223\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-10 11:53:44'),
(13, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 19:36:47'),
(14, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 19:36:49'),
(15, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 19:43:32'),
(16, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 19:43:33'),
(17, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01FFFAFC6EEF8EB35A5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938235\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:17:15'),
(18, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4DEE56B3EAA034106\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938238\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:17:19'),
(19, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AFDC08CE43CC729096\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938244\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:17:24'),
(20, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06AFE17712FA420C2AD\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938246\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:17:27'),
(21, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0928165432ECEB6B566\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938894\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:28:14'),
(22, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F0B48E0C0E0A6FCCAF\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938896\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:28:16'),
(23, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F6F6D7DD4582CE51ED\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939029\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:30:30'),
(24, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0371ED3117711A7DB00\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939032\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:30:32'),
(25, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB075825472FBC6351D84\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939273\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:34:33'),
(26, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0002BC144DC464C114D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939275\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:34:36'),
(27, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05AD09897996FC65C38\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939280\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:34:40'),
(28, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D8D23A1CD95B837DB8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939282\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:34:43'),
(29, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A04820B16864EC6100\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939813\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:43:34'),
(30, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C76AD3A759C3AD0A5E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939816\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:43:36'),
(31, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B68E567B319BC9E004\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770940483\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:54:43'),
(32, NULL, '554791592447', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025CAE68C9D09C0BBE1\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770940486\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 20:54:46'),
(33, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:00:48'),
(34, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:00:49'),
(35, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:07:32'),
(36, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:07:33'),
(37, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:07:34'),
(38, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:07:35'),
(39, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:07:36'),
(40, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:07:37'),
(41, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:42:15'),
(42, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:42:16'),
(43, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:42:23'),
(44, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:42:25'),
(45, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:42:27'),
(46, NULL, '21981793632295', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5521981793632295@s.whatsapp.net\",\"number\":\"5521981793632295\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 21:42:29'),
(47, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:25:36'),
(48, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:25:36'),
(49, NULL, '4792012997', 'resposta_comando', '🤖 *Comandos Disponíveis*\\n\\nOlá, *carol*!\\n\\nAqui estão os comandos que você pode usar:\\n\\n┌─────────────────────\\n│ 📅 */vencimento*\\n│    Consultar próximo vencimento\\n│\\n│ ✅ */pago*\\n│    Confirmar pagamento realizado\\n│    _(Envie o comprovante primeiro)_\\n│\\n│ ⏸️ */parar*\\n│    Pausar serviço temporariamente\\n│\\n│ ▶️ */renovar*\\n│    Reativar serviço pausado\\n│\\n│ 📊 */plano*\\n│    Ver detalhes do seu plano\\n│\\n│ 💰 */saldo*\\n│    Consultar saldo de créditos\\n│\\n│ 📈 */status*\\n│    Ver status geral da conta\\n│\\n│ ❓ */ajuda*\\n│    Ver esta lista de comandos\\n└─────────────────────\\n\\n💡 *Dica:* Todos os comandos começam com /\\n\\n📞 *Precisa de ajuda?*\\nEntre em contato com nosso suporte!', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D71985A96267F1650A\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83e\\udd16 *Comandos Dispon\\u00edveis*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nAqui est\\u00e3o os comandos que voc\\u00ea pode usar:\\\\n\\\\n\\u250c\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\u2502 \\ud83d\\udcc5 *\\/vencimento*\\\\n\\u2502    Consultar pr\\u00f3ximo vencimento\\\\n\\u2502\\\\n\\u2502 \\u2705 *\\/pago*\\\\n\\u2502    Confirmar pagamento realizado\\\\n\\u2502    _(Envie o comprovante primeiro)_\\\\n\\u2502\\\\n\\u2502 \\u23f8\\ufe0f *\\/parar*\\\\n\\u2502    Pausar servi\\u00e7o temporariamente\\\\n\\u2502\\\\n\\u2502 \\u25b6\\ufe0f *\\/renovar*\\\\n\\u2502    Reativar servi\\u00e7o pausado\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcca *\\/plano*\\\\n\\u2502    Ver detalhes do seu plano\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcb0 *\\/saldo*\\\\n\\u2502    Consultar saldo de cr\\u00e9ditos\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcc8 *\\/status*\\\\n\\u2502    Ver status geral da conta\\\\n\\u2502\\\\n\\u2502 \\u2753 *\\/ajuda*\\\\n\\u2502    Ver esta lista de comandos\\\\n\\u2514\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\udca1 *Dica:* Todos os comandos come\\u00e7am com \\/\\\\n\\\\n\\ud83d\\udcde *Precisa de ajuda?*\\\\nEntre em contato com nosso suporte!\"}},\"messageTimestamp\":\"1770949537\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:25:37'),
(50, NULL, '4792012997', 'resposta_comando', '🤖 *Comandos Disponíveis*\\n\\nOlá, *carol*!\\n\\nAqui estão os comandos que você pode usar:\\n\\n┌─────────────────────\\n│ 📅 */vencimento*\\n│    Consultar próximo vencimento\\n│\\n│ ✅ */pago*\\n│    Confirmar pagamento realizado\\n│    _(Envie o comprovante primeiro)_\\n│\\n│ ⏸️ */parar*\\n│    Pausar serviço temporariamente\\n│\\n│ ▶️ */renovar*\\n│    Reativar serviço pausado\\n│\\n│ 📊 */plano*\\n│    Ver detalhes do seu plano\\n│\\n│ 💰 */saldo*\\n│    Consultar saldo de créditos\\n│\\n│ 📈 */status*\\n│    Ver status geral da conta\\n│\\n│ ❓ */ajuda*\\n│    Ver esta lista de comandos\\n└─────────────────────\\n\\n💡 *Dica:* Todos os comandos começam com /\\n\\n📞 *Precisa de ajuda?*\\nEntre em contato com nosso suporte!', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B2ECBE8FE7AD059DE\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83e\\udd16 *Comandos Dispon\\u00edveis*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nAqui est\\u00e3o os comandos que voc\\u00ea pode usar:\\\\n\\\\n\\u250c\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\u2502 \\ud83d\\udcc5 *\\/vencimento*\\\\n\\u2502    Consultar pr\\u00f3ximo vencimento\\\\n\\u2502\\\\n\\u2502 \\u2705 *\\/pago*\\\\n\\u2502    Confirmar pagamento realizado\\\\n\\u2502    _(Envie o comprovante primeiro)_\\\\n\\u2502\\\\n\\u2502 \\u23f8\\ufe0f *\\/parar*\\\\n\\u2502    Pausar servi\\u00e7o temporariamente\\\\n\\u2502\\\\n\\u2502 \\u25b6\\ufe0f *\\/renovar*\\\\n\\u2502    Reativar servi\\u00e7o pausado\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcca *\\/plano*\\\\n\\u2502    Ver detalhes do seu plano\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcb0 *\\/saldo*\\\\n\\u2502    Consultar saldo de cr\\u00e9ditos\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcc8 *\\/status*\\\\n\\u2502    Ver status geral da conta\\\\n\\u2502\\\\n\\u2502 \\u2753 *\\/ajuda*\\\\n\\u2502    Ver esta lista de comandos\\\\n\\u2514\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\udca1 *Dica:* Todos os comandos come\\u00e7am com \\/\\\\n\\\\n\\ud83d\\udcde *Precisa de ajuda?*\\\\nEntre em contato com nosso suporte!\"}},\"messageTimestamp\":\"1770949541\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:25:41'),
(51, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:25:41'),
(52, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:25:42'),
(53, NULL, '4792012997', 'resposta_comando', '▶️ *Serviço Reativado*\\n\\nOlá, *carol*!\\n\\nSeu serviço foi reativado com sucesso.\\n\\nQualquer dúvida, estamos à disposição!', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07C71969BA2076366E8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u25b6\\ufe0f *Servi\\u00e7o Reativado*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nSeu servi\\u00e7o foi reativado com sucesso.\\\\n\\\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\"}},\"messageTimestamp\":\"1770949599\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:26:39'),
(54, NULL, '4792012997', 'resposta_comando', '▶️ *Serviço Reativado*\\n\\nOlá, *carol*!\\n\\nSeu serviço foi reativado com sucesso.\\n\\nQualquer dúvida, estamos à disposição!', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E7A49E9EF40C443D70\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u25b6\\ufe0f *Servi\\u00e7o Reativado*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nSeu servi\\u00e7o foi reativado com sucesso.\\\\n\\\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\"}},\"messageTimestamp\":\"1770949601\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:26:41'),
(55, NULL, '4792012997', 'resposta_comando', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 20/05/2026\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *20/05/2026*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0508AC4D50B935AED86\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 20\\/05\\/2026\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *20\\/05\\/2026*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949629\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:27:10'),
(56, NULL, '4792012997', 'resposta_comando', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 18/08/2026\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *18/08/2026*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CA96D1895036274F60\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 18\\/08\\/2026\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *18\\/08\\/2026*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949632\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:27:12'),
(57, NULL, '4792012997', 'resposta_comando', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 16/11/2026\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *16/11/2026*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08DFBCA4C25B9FDFA2C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 16\\/11\\/2026\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *16\\/11\\/2026*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949675\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:27:55'),
(58, NULL, '4792012997', 'resposta_comando', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 14/02/2027\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *14/02/2027*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC2259A16A637BF96E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 14\\/02\\/2027\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *14\\/02\\/2027*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949677\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:27:57'),
(59, NULL, '4792012997', 'resposta_comando', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 367 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!\\n\\n💡 *Comandos úteis:*\\n• */pago* - Confirmar pagamento\\n• */plano* - Ver detalhes do plano\\n• */ajuda* - Ver todos os comandos', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0263A29131E97C08755\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 367 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\\\\n\\\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\\\n\\u2022 *\\/pago* - Confirmar pagamento\\\\n\\u2022 *\\/plano* - Ver detalhes do plano\\\\n\\u2022 *\\/ajuda* - Ver todos os comandos\"}},\"messageTimestamp\":\"1770949711\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:28:31'),
(60, NULL, '4792012997', 'resposta_comando', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 367 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!\\n\\n💡 *Comandos úteis:*\\n• */pago* - Confirmar pagamento\\n• */plano* - Ver detalhes do plano\\n• */ajuda* - Ver todos os comandos', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0444783BD6EEEDD41E7\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 367 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\\\\n\\\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\\\n\\u2022 *\\/pago* - Confirmar pagamento\\\\n\\u2022 *\\/plano* - Ver detalhes do plano\\\\n\\u2022 *\\/ajuda* - Ver todos os comandos\"}},\"messageTimestamp\":\"1770949713\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-12 23:28:33'),
(61, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:30:09'),
(62, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:30:10'),
(63, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:30:16'),
(64, NULL, '8383826497580', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-12 23:30:18'),
(65, NULL, '32465758515228', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5532465758515228@s.whatsapp.net\",\"number\":\"5532465758515228\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:42:31'),
(66, NULL, '32465758515228', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"5532465758515228@s.whatsapp.net\",\"number\":\"5532465758515228\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:42:32'),
(67, NULL, '8383826497580', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:44:42'),
(68, NULL, '8383826497580', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:44:43'),
(69, NULL, '8383826497580', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:49:41'),
(70, NULL, '8383826497580', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"558383826497580@s.whatsapp.net\",\"number\":\"558383826497580\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:49:42'),
(71, NULL, '180749806342387', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:53:00'),
(72, NULL, '180749806342387', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:53:01'),
(73, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07759DD16E4945FA865\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990810\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:53:30'),
(74, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01D95ECAD0109FFD8E4\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990812\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:53:33'),
(75, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0872A9D19FDFC6F837D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990838\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:53:58'),
(76, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07157B8EFA1CDAE541E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990840\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:54:01'),
(77, NULL, '4792012997', 'resposta_comando', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 366 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CB21A1573E7295B88C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 366 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\"}},\"messageTimestamp\":\"1770990848\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:54:08'),
(78, NULL, '4792012997', 'resposta_comando', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 366 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB035EDA9F4FA15904DA8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 366 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\"}},\"messageTimestamp\":\"1770990850\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:54:10'),
(79, NULL, '180749806342387', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:55:17');
INSERT INTO `logs_mensagens` (`id`, `cliente_id`, `destinatario`, `tipo_mensagem`, `mensagem`, `status`, `resposta_api`, `enviado_em`) VALUES
(80, NULL, '180749806342387', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:55:18'),
(81, NULL, '180749806342387', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:55:24'),
(82, NULL, '180749806342387', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:55:25'),
(83, NULL, '180749806342387', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:55:30'),
(84, NULL, '180749806342387', 'resposta_comando', '❌ *Cliente não encontrado*\\n\\nSeu número não está cadastrado no sistema.\\n\\nEntre em contato com o suporte.', 'enviado', '{\"success\":false,\"status\":400,\"data\":{\"status\":400,\"error\":\"Bad Request\",\"response\":{\"message\":[{\"exists\":false,\"jid\":\"55180749806342387@s.whatsapp.net\",\"number\":\"55180749806342387\"}]}},\"error\":\"HTTP 400\"}', '2026-02-13 10:55:31'),
(85, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB012051B370F1EC16B0D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990949\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:55:49'),
(86, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B9B9F49FF72977165B\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990951\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:55:51'),
(87, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB008F9263F71BED76A75\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991083\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:58:03'),
(88, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02FB51B3F87014FDCD5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991085\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 10:58:05'),
(89, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E7603092A4845997E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991366\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 11:02:47'),
(90, NULL, '4792012997', 'resposta_comando', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BBE6482B087EBFF2CF\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991368\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-13 11:02:49'),
(91, 47, '554792083580', 'ATRASO_3', '⚠️ *ATENÇÃO - PAGAMENTO ATRASADO*\n\nOlá livia,\nSeu pagamento está atrasado há 3 dias.\n\nApós 1 dias, seu acesso será suspenso.', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB069382E4C4CC7F31570\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u26a0\\ufe0f *ATEN\\u00c7\\u00c3O - PAGAMENTO ATRASADO*\\n\\nOl\\u00e1 livia,\\nSeu pagamento est\\u00e1 atrasado h\\u00e1 3 dias.\\n\\nAp\\u00f3s 1 dias, seu acesso ser\\u00e1 suspenso.\"}},\"messageTimestamp\":\"1771271077\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-16 16:44:37'),
(96, 3, '4792012997', 'VENCIMENTO_HOJE', '🔔 *Olá, carol!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 100,00\r\n📅 *Vencimento:* 16/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB066B366A891B2838BC3\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, carol!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771275699\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-16 18:01:39'),
(97, 3, '4792012997', 'VENCIMENTO_HOJE', '🔔 *Olá, carol!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 100,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05015E4E2F3F72D0AE0\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, carol!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771329617\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-17 09:00:17'),
(98, 47, '554792083580', 'VENCIMENTO_HOJE', '🔔 *Olá, livia!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 40,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E3B0F22A47AC49C0F1\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, livia!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 40,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771329624\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-17 09:00:24'),
(99, 53, '15996605722', 'VENCIMENTO_HOJE', '🔔 *Olá, Kev / IOS VIVO!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 35,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F3B2B705BF18876288\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, Kev \\/ IOS VIVO!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 35,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771362135\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-17 18:02:15'),
(100, 51, '35997328685', 'LEMBRETE', '📅 *Olá, Gabriel / Vivo ios!*\r\n\r\nPassando para dar um lembrete amigável 😊\r\n\r\nSua mensalidade vence em *3 dias*, no dia *20/02/2026*.\r\n\r\n💰 *Valor:* R$ 35,00\r\n\r\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\r\n\r\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬', 'enviado', '{\"success\":true,\"status\":201,\"data\":{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B856CD50F3FB58DD2\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Ol\\u00e1, Gabriel \\/ Vivo ios!*\\r\\n\\r\\nPassando para dar um lembrete amig\\u00e1vel \\ud83d\\ude0a\\r\\n\\r\\nSua mensalidade vence em *3 dias*, no dia *20\\/02\\/2026*.\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 35,00\\r\\n\\r\\nGaranta sua renova\\u00e7\\u00e3o antes do prazo e continue aproveitando o servi\\u00e7o sem interrup\\u00e7\\u00f5es! \\ud83d\\ude80\\r\\n\\r\\nQualquer d\\u00favida, \\u00e9 s\\u00f3 chamar aqui. Estamos \\u00e0 disposi\\u00e7\\u00e3o! \\ud83d\\udcac\"}},\"messageTimestamp\":\"1771362139\",\"status\":\"PENDING\"},\"error\":null}', '2026-02-17 18:02:19');

-- --------------------------------------------------------

--
-- Estrutura para tabela `logs_sistema`
--

CREATE TABLE `logs_sistema` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `usuario_id` int(10) UNSIGNED DEFAULT NULL,
  `tipo` varchar(50) NOT NULL,
  `mensagem` text NOT NULL,
  `ip` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `detalhes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`detalhes`)),
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `logs_sistema`
--

INSERT INTO `logs_sistema` (`id`, `usuario_id`, `tipo`, `mensagem`, `ip`, `user_agent`, `detalhes`, `criado_em`) VALUES
(1, 3, 'login', 'Login realizado com sucesso', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-20 20:36:54'),
(2, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-20 21:16:00'),
(3, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-20 21:16:10'),
(4, 3, 'login', 'Login realizado com sucesso', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-20 22:44:18'),
(5, 3, 'login', 'Login realizado com sucesso', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-20 22:44:46'),
(6, 8, 'login', 'Login realizado com sucesso', '193.19.205.188', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-21 00:06:43'),
(7, 8, 'login', 'Login realizado com sucesso', '193.19.205.188', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-21 00:07:15'),
(8, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-21 00:10:19'),
(9, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-21 00:26:56'),
(10, 3, 'login', 'Login realizado com sucesso', '34.44.208.214', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', NULL, '2026-01-21 01:06:49'),
(11, 3, 'login', 'Login realizado com sucesso', '34.44.208.214', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', NULL, '2026-01-21 01:07:06'),
(12, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-21 01:11:09'),
(13, 3, 'login', 'Login realizado com sucesso', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-21 15:23:31'),
(14, 3, 'login', 'Login realizado com sucesso', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-21 15:30:40'),
(15, 3, 'login', 'Login realizado com sucesso', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-21 19:36:07'),
(16, 3, 'login', 'Login realizado com sucesso', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-21 21:25:16'),
(17, 3, 'login', 'Login realizado com sucesso', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-22 00:24:05'),
(18, 3, 'login', 'Login realizado com sucesso', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', NULL, '2026-01-22 02:09:36'),
(19, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:b49:3945:8dda:660b', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-22 03:40:54'),
(20, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-22 12:43:07'),
(21, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:4b20:df7c:e4a2:db8', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-22 14:05:21'),
(22, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-22 14:09:59'),
(23, 3, 'login', 'Login realizado com sucesso', '2804:1b2:6041:d60c:21c3:41bb:878a:d11a', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', NULL, '2026-01-23 14:06:31'),
(24, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-26 14:50:21'),
(25, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-26 14:50:46'),
(26, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-26 15:33:18'),
(27, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-26 15:58:03'),
(28, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-26 20:25:03'),
(29, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:73df:8618:6076:9cf9', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-01-26 21:36:32'),
(30, 3, 'login', 'Login realizado com sucesso', '136.115.239.53', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', NULL, '2026-01-26 21:37:37'),
(31, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-26 21:43:38'),
(32, 3, 'login', 'Login realizado com sucesso', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-27 23:22:17'),
(33, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-30 00:40:38'),
(34, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-30 00:40:42'),
(35, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-30 14:12:30'),
(36, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-30 22:47:27'),
(37, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-30 22:47:31'),
(38, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-01-30 23:38:29'),
(39, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-03 21:10:42'),
(40, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-03 23:21:58'),
(41, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 19:37:26'),
(42, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 19:37:29'),
(43, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 21:12:56'),
(44, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 21:13:04'),
(45, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 22:06:49'),
(46, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 22:52:36'),
(47, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-09 22:53:04'),
(48, 3, 'login', 'Login realizado com sucesso', '34.31.97.194', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36', NULL, '2026-02-09 22:53:49'),
(49, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 00:08:23'),
(50, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 00:08:25'),
(51, 3, 'login', 'Login realizado com sucesso', '34.29.148.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36', NULL, '2026-02-10 13:06:10'),
(52, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 13:17:05'),
(53, 8, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:8528:75bc:6339:50d8', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-10 15:19:07'),
(54, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:8528:75bc:6339:50d8', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-10 15:19:49'),
(55, 8, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 23:14:01'),
(56, 8, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 23:14:12'),
(57, 8, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 23:33:05'),
(58, 8, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-10 23:33:23'),
(59, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 00:38:49'),
(60, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 00:39:05'),
(61, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 02:15:10'),
(62, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 02:42:41'),
(63, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 02:42:44'),
(64, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:6aee:8040:43c0:4722', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-11 03:02:06'),
(65, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 03:32:00'),
(66, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 12:02:55'),
(67, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 16:50:55'),
(68, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 17:36:41'),
(69, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 23:12:18'),
(70, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-11 23:26:00'),
(71, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 11:29:51'),
(72, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 12:00:58'),
(73, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 13:39:47'),
(74, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 13:39:49'),
(75, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:33f1:6c2b:f0f3:491b', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-12 14:08:35'),
(76, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 15:29:48'),
(77, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 16:45:04'),
(78, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 18:34:15'),
(79, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 21:37:16'),
(80, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-12 23:24:11'),
(81, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-13 02:22:42'),
(82, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:535a:6b67:6e63:c2eb', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-13 02:56:59'),
(83, 3, 'login', 'Login realizado com sucesso', '35.226.182.28', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', NULL, '2026-02-13 12:57:43'),
(84, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-13 13:15:25'),
(85, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:7136:41b6:9cc8:7f2b', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-13 15:18:43'),
(86, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-13 17:03:59'),
(87, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:b7b7:cc12:457b:77c5', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-13 17:18:22'),
(88, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-13 17:41:37'),
(89, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:b7b7:cc12:457b:77c5', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-13 18:06:37'),
(90, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-13 19:04:22'),
(91, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:b7b7:cc12:457b:77c5', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', NULL, '2026-02-13 19:06:48'),
(92, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-13 21:10:11'),
(93, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:7d03:8b33:f92:92d4', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', NULL, '2026-02-14 01:11:42'),
(94, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-14 12:58:29'),
(95, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-14 13:46:37'),
(96, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-14 14:29:17'),
(97, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-14 15:43:45'),
(98, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-14 17:45:13'),
(99, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-14 21:53:27'),
(100, 3, 'login', 'Login realizado com sucesso', '2804:18:1916:21:84e:8d5b:52e2:a5dc', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', NULL, '2026-02-15 14:54:10'),
(101, 3, 'login', 'Login realizado com sucesso', '2804:d57:4e5d:1600:f4bc:f1d5:68c1:3e8d', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', NULL, '2026-02-16 01:05:57'),
(102, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 15:53:46'),
(103, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 17:55:43'),
(104, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 17:55:45'),
(105, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 19:32:56'),
(106, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 20:14:20'),
(107, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 21:02:58'),
(108, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 23:07:55'),
(109, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-16 23:07:57'),
(110, 3, 'login', 'Login realizado com sucesso', '2804:18:925:5130:8085:e866:3f10:717c', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', NULL, '2026-02-17 03:08:54'),
(111, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 12:42:18'),
(112, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 14:01:34'),
(113, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 16:03:04'),
(114, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 19:16:12'),
(115, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 21:19:05'),
(116, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 21:19:07'),
(117, 3, 'login', 'Login realizado com sucesso', '2804:18:922:161c:8115:9655:2449:b7c5', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', NULL, '2026-02-17 21:22:41'),
(118, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', NULL, '2026-02-17 22:29:14'),
(119, 3, 'logout', 'Logout do sistema', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 23:26:30'),
(120, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-17 23:26:32'),
(121, 3, 'login', 'Login realizado com sucesso', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', NULL, '2026-02-18 02:26:22');

-- --------------------------------------------------------

--
-- Estrutura para tabela `log_cron`
--

CREATE TABLE `log_cron` (
  `id` int(11) NOT NULL,
  `script` varchar(100) DEFAULT NULL,
  `executado_em` datetime DEFAULT current_timestamp(),
  `status` varchar(20) DEFAULT 'sucesso'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `log_cron`
--

INSERT INTO `log_cron` (`id`, `script`, `executado_em`, `status`) VALUES
(1, 'sync_instances', '2026-02-10 12:12:07', 'sucesso');

-- --------------------------------------------------------

--
-- Estrutura para tabela `log_envios`
--

CREATE TABLE `log_envios` (
  `id` int(11) NOT NULL,
  `id_cliente` int(11) DEFAULT NULL,
  `tipo_mensagem` varchar(50) DEFAULT NULL,
  `mensagem_enviada` text DEFAULT NULL,
  `status_envio` varchar(20) DEFAULT 'enviado',
  `data_envio` datetime DEFAULT current_timestamp(),
  `resposta_api` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `log_envios`
--

INSERT INTO `log_envios` (`id`, `id_cliente`, `tipo_mensagem`, `mensagem_enviada`, `status_envio`, `data_envio`, `resposta_api`) VALUES
(1, 0, 'cobranca', '🔔 *Lembrete de Pagamento*\n\nOlá carol!\n\nSeu pagamento de *R$ 100,00* vence em *26/01/2026*.\n\n📱 Para confirmar o pagamento, envie */pago*\n\n_Obrigado pela preferência!_', 'enviado', '2026-02-12 12:30:21', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB039158518CBDC1044A5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Lembrete de Pagamento*\\n\\nOl\\u00e1 carol!\\n\\nSeu pagamento de *R$ 100,00* vence em *26\\/01\\/2026*.\\n\\n\\ud83d\\udcf1 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela prefer\\u00eancia!_\"}},\"messageTimestamp\":\"1770910221\",\"status\":\"PENDING\"}'),
(2, 0, 'cobranca', '🔔 *Lembrete de Pagamento*\n\nOlá jou!\n\nSeu pagamento de *R$ 40,00* vence em *26/01/2026*.\n\n📱 Para confirmar o pagamento, envie */pago*\n\n_Obrigado pela preferência!_', 'enviado', '2026-02-12 12:40:34', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D62E46A958E5CC6777\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Lembrete de Pagamento*\\n\\nOl\\u00e1 jou!\\n\\nSeu pagamento de *R$ 40,00* vence em *26\\/01\\/2026*.\\n\\n\\ud83d\\udcf1 Para confirmar o pagamento, envie *\\/pago*\\n\\n_Obrigado pela prefer\\u00eancia!_\"}},\"messageTimestamp\":\"1770910834\",\"status\":\"PENDING\"}'),
(3, 0, 'cobranca', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *17*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', 'enviado', '2026-02-12 18:21:29', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068F91CACFEB96F26DD\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd12 *Servi\\u00e7o Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu servi\\u00e7o foi temporariamente bloqueado devido \\u00e0 falta de pagamento.\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es:*\\n\\ud83d\\udcc5 Vencimento: *26\\/01\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\u23f1\\ufe0f Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1\\ufe0f\\u20e3 Realize o pagamento\\n2\\ufe0f\\u20e3 Envie o comprovante\\n3\\ufe0f\\u20e3 Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! \\ud83d\\udd13\"}},\"messageTimestamp\":\"1770931289\",\"status\":\"PENDING\"}'),
(4, 0, 'cobranca', '⏰ *Lembrete: Seu pagamento vence em breve!*\n\nOlá, *teste*! 👋\n\nSeu pagamento vence em *3 dias*:\n📅 Vencimento: *15/02/2026*\n💰 Valor: *R$ 100,00*\n\nAntecipe e evite a suspensão do serviço!\n\nApós pagar, confirme enviando */pago* 📱\n\n_Estamos à disposição!_ 😊', 'enviado', '2026-02-12 18:21:33', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB085B6C0567F715D2A56\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u23f0 *Lembrete: Seu pagamento vence em breve!*\\n\\nOl\\u00e1, *teste*! \\ud83d\\udc4b\\n\\nSeu pagamento vence em *3 dias*:\\n\\ud83d\\udcc5 Vencimento: *15\\/02\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspens\\u00e3o do servi\\u00e7o!\\n\\nAp\\u00f3s pagar, confirme enviando *\\/pago* \\ud83d\\udcf1\\n\\n_Estamos \\u00e0 disposi\\u00e7\\u00e3o!_ \\ud83d\\ude0a\"}},\"messageTimestamp\":\"1770931293\",\"status\":\"PENDING\"}'),
(5, 0, 'cobranca', '📢 *Lembrete de Renovação*\n\nOlá, *carol*!\n\nSeu plano vence em *7 dias*:\n📅 Data: *19/02/2026*\n💵 Valor: *R$ 100,00*\n\nRenove com antecedência e mantenha seu acesso sem interrupções!\n\n✅ Após pagar, envie */pago*\n\nDúvidas? Estamos aqui para ajudar! 🤝', 'enviado', '2026-02-12 18:21:38', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06552FB3EC31111D4FB\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udce2 *Lembrete de Renova\\u00e7\\u00e3o*\\n\\nOl\\u00e1, *carol*!\\n\\nSeu plano vence em *7 dias*:\\n\\ud83d\\udcc5 Data: *19\\/02\\/2026*\\n\\ud83d\\udcb5 Valor: *R$ 100,00*\\n\\nRenove com anteced\\u00eancia e mantenha seu acesso sem interrup\\u00e7\\u00f5es!\\n\\n\\u2705 Ap\\u00f3s pagar, envie *\\/pago*\\n\\nD\\u00favidas? Estamos aqui para ajudar! \\ud83e\\udd1d\"}},\"messageTimestamp\":\"1770931297\",\"status\":\"PENDING\"}'),
(6, 0, 'cobranca', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *17*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', 'enviado', '2026-02-12 18:58:12', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FB49FB5078F86D698C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd12 *Servi\\u00e7o Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu servi\\u00e7o foi temporariamente bloqueado devido \\u00e0 falta de pagamento.\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es:*\\n\\ud83d\\udcc5 Vencimento: *26\\/01\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\u23f1\\ufe0f Dias em atraso: *17*\\n\\nPara reativar seu acesso:\\n1\\ufe0f\\u20e3 Realize o pagamento\\n2\\ufe0f\\u20e3 Envie o comprovante\\n3\\ufe0f\\u20e3 Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! \\ud83d\\udd13\"}},\"messageTimestamp\":\"1770933492\",\"status\":\"PENDING\"}'),
(7, 0, 'cobranca', '⏰ *Lembrete: Seu pagamento vence em breve!*\n\nOlá, *teste*! 👋\n\nSeu pagamento vence em *3 dias*:\n📅 Vencimento: *15/02/2026*\n💰 Valor: *R$ 100,00*\n\nAntecipe e evite a suspensão do serviço!\n\nApós pagar, confirme enviando */pago* 📱\n\n_Estamos à disposição!_ 😊', 'enviado', '2026-02-12 18:58:16', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB077B7898C1A513140C7\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u23f0 *Lembrete: Seu pagamento vence em breve!*\\n\\nOl\\u00e1, *teste*! \\ud83d\\udc4b\\n\\nSeu pagamento vence em *3 dias*:\\n\\ud83d\\udcc5 Vencimento: *15\\/02\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 100,00*\\n\\nAntecipe e evite a suspens\\u00e3o do servi\\u00e7o!\\n\\nAp\\u00f3s pagar, confirme enviando *\\/pago* \\ud83d\\udcf1\\n\\n_Estamos \\u00e0 disposi\\u00e7\\u00e3o!_ \\ud83d\\ude0a\"}},\"messageTimestamp\":\"1770933496\",\"status\":\"PENDING\"}'),
(8, 0, 'cobranca', '📢 *Lembrete de Renovação*\n\nOlá, *carol*!\n\nSeu plano vence em *7 dias*:\n📅 Data: *19/02/2026*\n💵 Valor: *R$ 100,00*\n\nRenove com antecedência e mantenha seu acesso sem interrupções!\n\n✅ Após pagar, envie */pago*\n\nDúvidas? Estamos aqui para ajudar! 🤝', 'enviado', '2026-02-12 18:58:20', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EE05561E1E1430215F\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udce2 *Lembrete de Renova\\u00e7\\u00e3o*\\n\\nOl\\u00e1, *carol*!\\n\\nSeu plano vence em *7 dias*:\\n\\ud83d\\udcc5 Data: *19\\/02\\/2026*\\n\\ud83d\\udcb5 Valor: *R$ 100,00*\\n\\nRenove com anteced\\u00eancia e mantenha seu acesso sem interrup\\u00e7\\u00f5es!\\n\\n\\u2705 Ap\\u00f3s pagar, envie *\\/pago*\\n\\nD\\u00favidas? Estamos aqui para ajudar! \\ud83e\\udd1d\"}},\"messageTimestamp\":\"1770933500\",\"status\":\"PENDING\"}'),
(9, 0, 'cobranca', NULL, 'falha', '2026-02-12 19:36:47', 'HTTP 400'),
(10, 0, 'cobranca', NULL, 'falha', '2026-02-12 19:36:49', 'HTTP 400'),
(11, 0, 'cobranca', NULL, 'falha', '2026-02-12 19:43:32', 'HTTP 400'),
(12, 0, 'cobranca', NULL, 'falha', '2026-02-12 19:43:33', 'HTTP 400'),
(13, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:17:15', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01FFFAFC6EEF8EB35A5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938235\",\"status\":\"PENDING\"}'),
(14, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:17:19', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C4DEE56B3EAA034106\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938238\",\"status\":\"PENDING\"}'),
(15, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:17:24', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AFDC08CE43CC729096\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938244\",\"status\":\"PENDING\"}'),
(16, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:17:27', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB06AFE17712FA420C2AD\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938246\",\"status\":\"PENDING\"}'),
(17, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:28:14', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0928165432ECEB6B566\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938894\",\"status\":\"PENDING\"}'),
(18, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:28:16', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F0B48E0C0E0A6FCCAF\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770938896\",\"status\":\"PENDING\"}'),
(19, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:30:30', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F6F6D7DD4582CE51ED\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939029\",\"status\":\"PENDING\"}'),
(20, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:30:32', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0371ED3117711A7DB00\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939032\",\"status\":\"PENDING\"}'),
(21, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:34:33', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB075825472FBC6351D84\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939273\",\"status\":\"PENDING\"}'),
(22, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:34:36', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0002BC144DC464C114D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939275\",\"status\":\"PENDING\"}'),
(23, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:34:40', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05AD09897996FC65C38\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939280\",\"status\":\"PENDING\"}'),
(24, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:34:43', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D8D23A1CD95B837DB8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939282\",\"status\":\"PENDING\"}'),
(25, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:43:34', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A04820B16864EC6100\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939813\",\"status\":\"PENDING\"}'),
(26, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:43:36', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C76AD3A759C3AD0A5E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770939816\",\"status\":\"PENDING\"}'),
(27, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:54:43', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B68E567B319BC9E004\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770940483\",\"status\":\"PENDING\"}'),
(28, 0, 'cobranca', '❌ *Cliente não encontrado*\n\nSeu número não está cadastrado no sistema.\n\nEntre em contato com o suporte para cadastro.', 'enviado', '2026-02-12 20:54:46', '{\"key\":{\"remoteJid\":\"554791592447@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB025CAE68C9D09C0BBE1\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u274c *Cliente n\\u00e3o encontrado*\\n\\nSeu n\\u00famero n\\u00e3o est\\u00e1 cadastrado no sistema.\\n\\nEntre em contato com o suporte para cadastro.\"}},\"messageTimestamp\":\"1770940486\",\"status\":\"PENDING\"}'),
(29, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:00:48', 'HTTP 400'),
(30, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:00:49', 'HTTP 400'),
(31, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:07:32', 'HTTP 400'),
(32, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:07:33', 'HTTP 400'),
(33, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:07:34', 'HTTP 400'),
(34, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:07:35', 'HTTP 400'),
(35, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:07:36', 'HTTP 400'),
(36, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:07:37', 'HTTP 400'),
(37, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:42:15', 'HTTP 400'),
(38, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:42:16', 'HTTP 400'),
(39, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:42:23', 'HTTP 400'),
(40, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:42:25', 'HTTP 400'),
(41, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:42:27', 'HTTP 400'),
(42, 0, 'cobranca', NULL, 'falha', '2026-02-12 21:42:29', 'HTTP 400'),
(43, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:25:36', 'HTTP 400'),
(44, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:25:36', 'HTTP 400'),
(45, 0, 'cobranca', '🤖 *Comandos Disponíveis*\\n\\nOlá, *carol*!\\n\\nAqui estão os comandos que você pode usar:\\n\\n┌─────────────────────\\n│ 📅 */vencimento*\\n│    Consultar próximo vencimento\\n│\\n│ ✅ */pago*\\n│    Confirmar pagamento realizado\\n│    _(Envie o comprovante primeiro)_\\n│\\n│ ⏸️ */parar*\\n│    Pausar serviço temporariamente\\n│\\n│ ▶️ */renovar*\\n│    Reativar serviço pausado\\n│\\n│ 📊 */plano*\\n│    Ver detalhes do seu plano\\n│\\n│ 💰 */saldo*\\n│    Consultar saldo de créditos\\n│\\n│ 📈 */status*\\n│    Ver status geral da conta\\n│\\n│ ❓ */ajuda*\\n│    Ver esta lista de comandos\\n└─────────────────────\\n\\n💡 *Dica:* Todos os comandos começam com /\\n\\n📞 *Precisa de ajuda?*\\nEntre em contato com nosso suporte!', 'enviado', '2026-02-12 23:25:37', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D71985A96267F1650A\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83e\\udd16 *Comandos Dispon\\u00edveis*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nAqui est\\u00e3o os comandos que voc\\u00ea pode usar:\\\\n\\\\n\\u250c\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\u2502 \\ud83d\\udcc5 *\\/vencimento*\\\\n\\u2502    Consultar pr\\u00f3ximo vencimento\\\\n\\u2502\\\\n\\u2502 \\u2705 *\\/pago*\\\\n\\u2502    Confirmar pagamento realizado\\\\n\\u2502    _(Envie o comprovante primeiro)_\\\\n\\u2502\\\\n\\u2502 \\u23f8\\ufe0f *\\/parar*\\\\n\\u2502    Pausar servi\\u00e7o temporariamente\\\\n\\u2502\\\\n\\u2502 \\u25b6\\ufe0f *\\/renovar*\\\\n\\u2502    Reativar servi\\u00e7o pausado\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcca *\\/plano*\\\\n\\u2502    Ver detalhes do seu plano\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcb0 *\\/saldo*\\\\n\\u2502    Consultar saldo de cr\\u00e9ditos\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcc8 *\\/status*\\\\n\\u2502    Ver s'),
(46, 0, 'cobranca', '🤖 *Comandos Disponíveis*\\n\\nOlá, *carol*!\\n\\nAqui estão os comandos que você pode usar:\\n\\n┌─────────────────────\\n│ 📅 */vencimento*\\n│    Consultar próximo vencimento\\n│\\n│ ✅ */pago*\\n│    Confirmar pagamento realizado\\n│    _(Envie o comprovante primeiro)_\\n│\\n│ ⏸️ */parar*\\n│    Pausar serviço temporariamente\\n│\\n│ ▶️ */renovar*\\n│    Reativar serviço pausado\\n│\\n│ 📊 */plano*\\n│    Ver detalhes do seu plano\\n│\\n│ 💰 */saldo*\\n│    Consultar saldo de créditos\\n│\\n│ 📈 */status*\\n│    Ver status geral da conta\\n│\\n│ ❓ */ajuda*\\n│    Ver esta lista de comandos\\n└─────────────────────\\n\\n💡 *Dica:* Todos os comandos começam com /\\n\\n📞 *Precisa de ajuda?*\\nEntre em contato com nosso suporte!', 'enviado', '2026-02-12 23:25:41', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B2ECBE8FE7AD059DE\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83e\\udd16 *Comandos Dispon\\u00edveis*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nAqui est\\u00e3o os comandos que voc\\u00ea pode usar:\\\\n\\\\n\\u250c\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\u2502 \\ud83d\\udcc5 *\\/vencimento*\\\\n\\u2502    Consultar pr\\u00f3ximo vencimento\\\\n\\u2502\\\\n\\u2502 \\u2705 *\\/pago*\\\\n\\u2502    Confirmar pagamento realizado\\\\n\\u2502    _(Envie o comprovante primeiro)_\\\\n\\u2502\\\\n\\u2502 \\u23f8\\ufe0f *\\/parar*\\\\n\\u2502    Pausar servi\\u00e7o temporariamente\\\\n\\u2502\\\\n\\u2502 \\u25b6\\ufe0f *\\/renovar*\\\\n\\u2502    Reativar servi\\u00e7o pausado\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcca *\\/plano*\\\\n\\u2502    Ver detalhes do seu plano\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcb0 *\\/saldo*\\\\n\\u2502    Consultar saldo de cr\\u00e9ditos\\\\n\\u2502\\\\n\\u2502 \\ud83d\\udcc8 *\\/status*\\\\n\\u2502    Ver s'),
(47, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:25:41', 'HTTP 400'),
(48, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:25:42', 'HTTP 400'),
(49, 0, 'cobranca', '▶️ *Serviço Reativado*\\n\\nOlá, *carol*!\\n\\nSeu serviço foi reativado com sucesso.\\n\\nQualquer dúvida, estamos à disposição!', 'enviado', '2026-02-12 23:26:39', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07C71969BA2076366E8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u25b6\\ufe0f *Servi\\u00e7o Reativado*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nSeu servi\\u00e7o foi reativado com sucesso.\\\\n\\\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\"}},\"messageTimestamp\":\"1770949599\",\"status\":\"PENDING\"}'),
(50, 0, 'cobranca', '▶️ *Serviço Reativado*\\n\\nOlá, *carol*!\\n\\nSeu serviço foi reativado com sucesso.\\n\\nQualquer dúvida, estamos à disposição!', 'enviado', '2026-02-12 23:26:41', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E7A49E9EF40C443D70\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u25b6\\ufe0f *Servi\\u00e7o Reativado*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\nSeu servi\\u00e7o foi reativado com sucesso.\\\\n\\\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\"}},\"messageTimestamp\":\"1770949601\",\"status\":\"PENDING\"}'),
(51, 0, 'cobranca', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 20/05/2026\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *20/05/2026*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '2026-02-12 23:27:10', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0508AC4D50B935AED86\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 20\\/05\\/2026\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *20\\/05\\/2026*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949629\",\"status\":\"PENDING\"}'),
(52, 0, 'cobranca', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 18/08/2026\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *18/08/2026*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '2026-02-12 23:27:12', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CA96D1895036274F60\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 18\\/08\\/2026\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *18\\/08\\/2026*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949632\",\"status\":\"PENDING\"}'),
(53, 0, 'cobranca', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 16/11/2026\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *16/11/2026*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '2026-02-12 23:27:55', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08DFBCA4C25B9FDFA2C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 16\\/11\\/2026\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *16\\/11\\/2026*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949675\",\"status\":\"PENDING\"}'),
(54, 0, 'cobranca', '✅ *Pagamento Confirmado!*\\n\\n🌙 Boa noite, *carol*!\\n\\n🎉 *Recebemos a confirmação do seu pagamento!*\\n\\n─────────────────────\\n📅 *Novo Vencimento:* 14/02/2027\\n💰 *Valor Pago:* R$ 100,00\\n⏱️ *Dias Adicionados:* +90 dias\\n📊 *Status:* Em dia ✅\\n─────────────────────\\n\\n😊 *Obrigado pela confiança!*\\nSeu acesso está garantido até *14/02/2027*.\\n\\n💡 *Dica:* Digite */vencimento* a qualquer momento para consultar.', 'enviado', '2026-02-12 23:27:57', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0AC2259A16A637BF96E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\\\n\\\\n\\ud83c\\udf19 Boa noite, *carol*!\\\\n\\\\n\\ud83c\\udf89 *Recebemos a confirma\\u00e7\\u00e3o do seu pagamento!*\\\\n\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\ud83d\\udcc5 *Novo Vencimento:* 14\\/02\\/2027\\\\n\\ud83d\\udcb0 *Valor Pago:* R$ 100,00\\\\n\\u23f1\\ufe0f *Dias Adicionados:* +90 dias\\\\n\\ud83d\\udcca *Status:* Em dia \\u2705\\\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\\\n\\\\n\\ud83d\\ude0a *Obrigado pela confian\\u00e7a!*\\\\nSeu acesso est\\u00e1 garantido at\\u00e9 *14\\/02\\/2027*.\\\\n\\\\n\\ud83d\\udca1 *Dica:* Digite *\\/vencimento* a qualquer momento para consultar.\"}},\"messageTimestamp\":\"1770949677\",\"status\":\"PENDING\"}'),
(55, 0, 'cobranca', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 367 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!\\n\\n💡 *Comandos úteis:*\\n• */pago* - Confirmar pagamento\\n• */plano* - Ver detalhes do plano\\n• */ajuda* - Ver todos os comandos', 'enviado', '2026-02-12 23:28:31', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0263A29131E97C08755\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 367 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\\\\n\\\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\\\n\\u2022 *\\/pago* - Confirmar pagamento\\\\n\\u2022 *\\/plano* - Ver detalhes do plano\\\\n\\u2022 *\\/ajuda* - Ver todos os comandos\"}},\"messageTimestamp\":\"1770949711\",\"status\":\"PENDING\"}'),
(56, 0, 'cobranca', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 367 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!\\n\\n💡 *Comandos úteis:*\\n• */pago* - Confirmar pagamento\\n• */plano* - Ver detalhes do plano\\n• */ajuda* - Ver todos os comandos', 'enviado', '2026-02-12 23:28:33', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0444783BD6EEEDD41E7\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 367 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\\\\n\\\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\\\n\\u2022 *\\/pago* - Confirmar pagamento\\\\n\\u2022 *\\/plano* - Ver detalhes do plano\\\\n\\u2022 *\\/ajuda* - Ver todos os comandos\"}},\"messageTimestamp\":\"1770949713\",\"status\":\"PENDING\"}'),
(57, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:30:09', 'HTTP 400'),
(58, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:30:10', 'HTTP 400'),
(59, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:30:16', 'HTTP 400'),
(60, 0, 'cobranca', NULL, 'falha', '2026-02-12 23:30:18', 'HTTP 400'),
(61, 0, 'cobranca', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *18*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', 'enviado', '2026-02-13 09:00:09', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB098A81A0EB7377B4864\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd12 *Servi\\u00e7o Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu servi\\u00e7o foi temporariamente bloqueado devido \\u00e0 falta de pagamento.\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es:*\\n\\ud83d\\udcc5 Vencimento: *26\\/01\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\u23f1\\ufe0f Dias em atraso: *18*\\n\\nPara reativar seu acesso:\\n1\\ufe0f\\u20e3 Realize o pagamento\\n2\\ufe0f\\u20e3 Envie o comprovante\\n3\\ufe0f\\u20e3 Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! \\ud83d\\udd13\"}},\"messageTimestamp\":\"1770984009\",\"status\":\"PENDING\"}'),
(62, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:42:31', 'HTTP 400'),
(63, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:42:32', 'HTTP 400'),
(64, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:44:42', 'HTTP 400'),
(65, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:44:43', 'HTTP 400'),
(66, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:49:41', 'HTTP 400'),
(67, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:49:42', 'HTTP 400'),
(68, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:53:00', 'HTTP 400'),
(69, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:53:01', 'HTTP 400'),
(70, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:53:30', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07759DD16E4945FA865\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990810\",\"status\":\"PENDING\"}'),
(71, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:53:33', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01D95ECAD0109FFD8E4\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990812\",\"status\":\"PENDING\"}'),
(72, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:53:58', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0872A9D19FDFC6F837D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990838\",\"status\":\"PENDING\"}'),
(73, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:54:01', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07157B8EFA1CDAE541E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990840\",\"status\":\"PENDING\"}'),
(74, 0, 'cobranca', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 366 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!', 'enviado', '2026-02-13 10:54:08', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CB21A1573E7295B88C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 366 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\"}},\"messageTimestamp\":\"1770990848\",\"status\":\"PENDING\"}'),
(75, 0, 'cobranca', '📅 *Consulta de Vencimento*\\n\\nOlá, *carol*!\\n\\n✅ *Status:* 🟢 Em dia\\n📆 *Próximo Vencimento:* 14/02/2027\\n⏰ *Faltam:* 366 dias\\n💰 *Valor:* R$ 100,00\\n\\n😊 Você está em dia! Continue assim!', 'enviado', '2026-02-13 10:54:10', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB035EDA9F4FA15904DA8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Consulta de Vencimento*\\\\n\\\\nOl\\u00e1, *carol*!\\\\n\\\\n\\u2705 *Status:* \\ud83d\\udfe2 Em dia\\\\n\\ud83d\\udcc6 *Pr\\u00f3ximo Vencimento:* 14\\/02\\/2027\\\\n\\u23f0 *Faltam:* 366 dias\\\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\\\n\\\\n\\ud83d\\ude0a Voc\\u00ea est\\u00e1 em dia! Continue assim!\"}},\"messageTimestamp\":\"1770990850\",\"status\":\"PENDING\"}'),
(76, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:55:17', 'HTTP 400'),
(77, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:55:18', 'HTTP 400'),
(78, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:55:24', 'HTTP 400'),
(79, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:55:25', 'HTTP 400'),
(80, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:55:30', 'HTTP 400'),
(81, 0, 'cobranca', NULL, 'falha', '2026-02-13 10:55:31', 'HTTP 400'),
(82, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:55:49', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB012051B370F1EC16B0D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990949\",\"status\":\"PENDING\"}'),
(83, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:55:51', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B9B9F49FF72977165B\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770990951\",\"status\":\"PENDING\"}'),
(84, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:58:03', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB008F9263F71BED76A75\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991083\",\"status\":\"PENDING\"}'),
(85, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 10:58:05', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB02FB51B3F87014FDCD5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991085\",\"status\":\"PENDING\"}'),
(86, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 11:02:47', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04E7603092A4845997E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991366\",\"status\":\"PENDING\"}'),
(87, 0, 'cobranca', 'ℹ️ *Comando disponível*\\n\\nUse */vencimento* para consultar quando seu plano vence.\\n\\nDúvidas? Entre em contato com o suporte.', 'enviado', '2026-02-13 11:02:49', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BBE6482B087EBFF2CF\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2139\\ufe0f *Comando dispon\\u00edvel*\\\\n\\\\nUse *\\/vencimento* para consultar quando seu plano vence.\\\\n\\\\nD\\u00favidas? Entre em contato com o suporte.\"}},\"messageTimestamp\":\"1770991368\",\"status\":\"PENDING\"}'),
(88, 0, 'cobranca', '✅ *Pagamento Confirmado!*\n\nOlá, *Erick Souza*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 40,00*\n📅 Novo vencimento: *13/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *13/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', 'enviado', '2026-02-13 16:16:45', '{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C96A693A6580D987AA\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\n\\nOl\\u00e1, *Erick Souza*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n\\ud83d\\udccb *Detalhes:*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\ud83d\\udcc5 Novo vencimento: *13\\/03\\/2026*\\n\\u2705 Status: *Em dia*\\n\\nObrigado pela prefer\\u00eancia! \\ud83d\\ude4f\\n\\nSeu acesso est\\u00e1 garantido at\\u00e9 *13\\/03\\/2026*.\\n\\n_Continue aproveitando nossos servi\\u00e7os!_ \\ud83c\\udfac\\ud83c\\udf7f\"}},\"messageTimestamp\":\"1771010204\",\"status\":\"PENDING\"}'),
(89, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\n\nOlá, *Erick Souza*! 👋\n\nÉ um prazer ter você conosco!\n\n📋 *Informações da sua conta:*\n• Plano: *mensal*\n• Valor mensal: *R$ 40,00*\n• Próximo vencimento: *13/03/2026*\n\n💡 *Comandos úteis:*\n• */pago* - Confirmar pagamento\n• */vencimento* - Ver próximo vencimento\n• */status* - Verificar situação\n• */ajuda* - Lista completa de comandos\n\nQualquer dúvida, estamos à disposição!\n\nAproveite! 🚀✨', 'enviado', '2026-02-13 16:17:31', '{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EC2E7D6FC853A20537\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\n\\nOl\\u00e1, *Erick Souza*! \\ud83d\\udc4b\\n\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\n\\u2022 Plano: *mensal*\\n\\u2022 Valor mensal: *R$ 40,00*\\n\\u2022 Pr\\u00f3ximo vencimento: *13\\/03\\/2026*\\n\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\n\\u2022 *\\/pago* - Confirmar pagamento\\n\\u2022 *\\/vencimento* - Ver pr\\u00f3ximo vencimento\\n\\u2022 *\\/status* - Verificar situa\\u00e7\\u00e3o\\n\\u2022 *\\/ajuda* - Lista completa de comandos\\n\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\n\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771010251\",\"status\":\"PENDING\"}'),
(90, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\n\nOlá, *vivi tia gaspar*! 👋\n\nÉ um prazer ter você conosco!\n\n📋 *Informações da sua conta:*\n• Plano: *mensal*\n• Valor mensal: *R$ 30,00*\n• Próximo vencimento: *13/03/2026*\n\n💡 *Comandos úteis:*\n• */pago* - Confirmar pagamento\n• */vencimento* - Ver próximo vencimento\n• */status* - Verificar situação\n• */ajuda* - Lista completa de comandos\n\nQualquer dúvida, estamos à disposição!\n\nAproveite! 🚀✨', 'enviado', '2026-02-13 22:12:24', '{\"key\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D9C50F904F83783135\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\n\\nOl\\u00e1, *vivi tia gaspar*! \\ud83d\\udc4b\\n\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\n\\u2022 Plano: *mensal*\\n\\u2022 Valor mensal: *R$ 30,00*\\n\\u2022 Pr\\u00f3ximo vencimento: *13\\/03\\/2026*\\n\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\n\\u2022 *\\/pago* - Confirmar pagamento\\n\\u2022 *\\/vencimento* - Ver pr\\u00f3ximo vencimento\\n\\u2022 *\\/status* - Verificar situa\\u00e7\\u00e3o\\n\\u2022 *\\/ajuda* - Lista completa de comandos\\n\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\n\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771031544\",\"status\":\"PENDING\"}'),
(91, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\n\nOlá, *Cida*! 👋\n\nÉ um prazer ter você conosco!\n\n📋 *Informações da sua conta:*\n• Plano: *mensal*\n• Valor mensal: *R$ 40,00*\n• Próximo vencimento: *15/03/2026*\n\n💡 *Comandos úteis:*\n• */pago* - Confirmar pagamento\n• */vencimento* - Ver próximo vencimento\n• */status* - Verificar situação\n• */ajuda* - Lista completa de comandos\n\nQualquer dúvida, estamos à disposição!\n\nAproveite! 🚀✨', 'enviado', '2026-02-13 22:19:32', '{\"key\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A4B7A7F5F8DDB80BFC\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\n\\nOl\\u00e1, *Cida*! \\ud83d\\udc4b\\n\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\n\\u2022 Plano: *mensal*\\n\\u2022 Valor mensal: *R$ 40,00*\\n\\u2022 Pr\\u00f3ximo vencimento: *15\\/03\\/2026*\\n\\n\\ud83d\\udca1 *Comandos \\u00fateis:*\\n\\u2022 *\\/pago* - Confirmar pagamento\\n\\u2022 *\\/vencimento* - Ver pr\\u00f3ximo vencimento\\n\\u2022 *\\/status* - Verificar situa\\u00e7\\u00e3o\\n\\u2022 *\\/ajuda* - Lista completa de comandos\\n\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\n\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771031972\",\"status\":\"PENDING\"}'),
(92, 0, 'cobranca', '✅ *Pagamento Confirmado!*\n\nOlá, *Elviz*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 60,00*\n📅 Novo vencimento: *13/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *13/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', 'enviado', '2026-02-13 22:32:03', '{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0366157C5FE16DEF1E7\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\n\\nOl\\u00e1, *Elviz*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n\\ud83d\\udccb *Detalhes:*\\n\\ud83d\\udcb0 Valor: *R$ 60,00*\\n\\ud83d\\udcc5 Novo vencimento: *13\\/03\\/2026*\\n\\u2705 Status: *Em dia*\\n\\nObrigado pela prefer\\u00eancia! \\ud83d\\ude4f\\n\\nSeu acesso est\\u00e1 garantido at\\u00e9 *13\\/03\\/2026*.\\n\\n_Continue aproveitando nossos servi\\u00e7os!_ \\ud83c\\udfac\\ud83c\\udf7f\"}},\"messageTimestamp\":\"1771032722\",\"status\":\"PENDING\"}'),
(93, 0, 'cobranca', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *19*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', 'enviado', '2026-02-14 09:00:09', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BA3D029B7845108666\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd12 *Servi\\u00e7o Bloqueado por Falta de Pagamento*\\n\\n*jou*,\\n\\nInformamos que seu servi\\u00e7o foi temporariamente bloqueado devido \\u00e0 falta de pagamento.\\n\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es:*\\n\\ud83d\\udcc5 Vencimento: *26\\/01\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\u23f1\\ufe0f Dias em atraso: *19*\\n\\nPara reativar seu acesso:\\n1\\ufe0f\\u20e3 Realize o pagamento\\n2\\ufe0f\\u20e3 Envie o comprovante\\n3\\ufe0f\\u20e3 Confirme com *\\/pago*\\n\\nRegularize hoje e volte a aproveitar! \\ud83d\\udd13\"}},\"messageTimestamp\":\"1771070409\",\"status\":\"PENDING\"}'),
(94, 0, 'cobranca', '⚠️ *Pagamento em Atraso*\n\nOlá, *Teste16*.\n\nIdentificamos que seu pagamento está *em atraso*:\n📅 Vencimento: *13/02/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *1*\n\n🚨 Regularize agora para evitar suspensão do serviço!\n\nApós pagar, confirme com */pago*\n\n_Contamos com sua compreensão._ 🙏', 'enviado', '2026-02-14 09:00:13', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07435E3D3964DDB0FB5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u26a0\\ufe0f *Pagamento em Atraso*\\n\\nOl\\u00e1, *Teste16*.\\n\\nIdentificamos que seu pagamento est\\u00e1 *em atraso*:\\n\\ud83d\\udcc5 Vencimento: *13\\/02\\/2026*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\u23f1\\ufe0f Dias em atraso: *1*\\n\\n\\ud83d\\udea8 Regularize agora para evitar suspens\\u00e3o do servi\\u00e7o!\\n\\nAp\\u00f3s pagar, confirme com *\\/pago*\\n\\n_Contamos com sua compreens\\u00e3o._ \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771070413\",\"status\":\"PENDING\"}');
INSERT INTO `log_envios` (`id`, `id_cliente`, `tipo_mensagem`, `mensagem_enviada`, `status_envio`, `data_envio`, `resposta_api`) VALUES
(95, 0, 'cobranca', '✅ *Renovação Concluída com Sucesso!*\n\nOlá, *jou*!\nSua assinatura foi renovada e está ativa até:\n\n📅 *Data de expiração:*\n26/01/2026\n\nAgradecemos sua confiança em nossos serviços!\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\n\nAproveite o entretenimento sem limites! 🎁🎬🍿', 'enviado', '2026-02-14 11:29:32', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04342F247EF256E1173\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Renova\\u00e7\\u00e3o Conclu\\u00edda com Sucesso!*\\n\\nOl\\u00e1, *jou*!\\nSua assinatura foi renovada e est\\u00e1 ativa at\\u00e9:\\n\\n\\ud83d\\udcc5 *Data de expira\\u00e7\\u00e3o:*\\n26\\/01\\/2026\\n\\nAgradecemos sua confian\\u00e7a em nossos servi\\u00e7os!\\nPara continuar usando o sistema ap\\u00f3s essa data, entre em contato para realizar uma nova renova\\u00e7\\u00e3o.\\n\\nAproveite o entretenimento sem limites! \\ud83c\\udf81\\ud83c\\udfac\\ud83c\\udf7f\"}},\"messageTimestamp\":\"1771079372\",\"status\":\"PENDING\"}'),
(96, 0, 'cobranca', '💰 *COBRANÇA*\n\nElvis, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 60,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-14 14:46:03', '{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07DEF82C1B37D817836\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\nElvis, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 60,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771091163\",\"status\":\"PENDING\"}'),
(97, 0, 'cobranca', '💰 *COBRANÇA*\n\nTeste16, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 40,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-14 14:46:34', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04CC142790EC6E49145\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\nTeste16, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 40,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771091193\",\"status\":\"PENDING\"}'),
(98, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Teste16*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *16/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-14 19:01:29', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D26D3B3266CA3D01D0\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Teste16*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 40,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *16\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771106489\",\"status\":\"PENDING\"}'),
(99, 0, 'cobranca', '✅ *Pagamento Confirmado!*\n\nOlá, *Iago*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 40,00*\n📅 Novo vencimento: *16/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *16/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', 'enviado', '2026-02-14 19:30:57', '{\"key\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0662EBF6205B82C2F0A\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\n\\nOl\\u00e1, *Iago*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n\\ud83d\\udccb *Detalhes:*\\n\\ud83d\\udcb0 Valor: *R$ 40,00*\\n\\ud83d\\udcc5 Novo vencimento: *16\\/03\\/2026*\\n\\u2705 Status: *Em dia*\\n\\nObrigado pela prefer\\u00eancia! \\ud83d\\ude4f\\n\\nSeu acesso est\\u00e1 garantido at\\u00e9 *16\\/03\\/2026*.\\n\\n_Continue aproveitando nossos servi\\u00e7os!_ \\ud83c\\udfac\\ud83c\\udf7f\"}},\"messageTimestamp\":\"1771108257\",\"status\":\"PENDING\"}'),
(100, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Iago*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *16/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-14 19:31:11', '{\"key\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB095D8766B3139E14C76\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Iago*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 40,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *16\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771108271\",\"status\":\"PENDING\"}'),
(101, 0, 'cobranca', '💰 *COBRANÇA*\n\nErick Souza, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 40,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-15 12:02:01', '{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D7983696D3BF7E9785\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\nErick Souza, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 40,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771167720\",\"status\":\"PENDING\"}'),
(102, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Paulo Itj vizinho*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 25,00*\r\n• Próximo vencimento: *17/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-15 22:06:49', '{\"key\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A3F5BE7C17809F6A8F\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Paulo Itj vizinho*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 25,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *17\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771204009\",\"status\":\"PENDING\"}'),
(103, 0, 'cobranca', '✅ *Pagamento Confirmado!*\n\nOlá, *Paulo Itj vizinho*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 25,00*\n📅 Novo vencimento: *17/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *17/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', 'enviado', '2026-02-15 22:07:12', '{\"key\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB051A43AB6337C8A2789\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Pagamento Confirmado!*\\n\\nOl\\u00e1, *Paulo Itj vizinho*!\\n\\nRecebemos seu pagamento com sucesso!\\n\\n\\ud83d\\udccb *Detalhes:*\\n\\ud83d\\udcb0 Valor: *R$ 25,00*\\n\\ud83d\\udcc5 Novo vencimento: *17\\/03\\/2026*\\n\\u2705 Status: *Em dia*\\n\\nObrigado pela prefer\\u00eancia! \\ud83d\\ude4f\\n\\nSeu acesso est\\u00e1 garantido at\\u00e9 *17\\/03\\/2026*.\\n\\n_Continue aproveitando nossos servi\\u00e7os!_ \\ud83c\\udfac\\ud83c\\udf7f\"}},\"messageTimestamp\":\"1771204032\",\"status\":\"PENDING\"}'),
(104, 0, 'cobranca', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-16 13:14:27', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ED937EEFE53455F48E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\ncarol, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 100,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771258466\",\"status\":\"PENDING\"}'),
(105, 0, 'cobranca', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-16 14:01:43', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04C3C171E9146D5057B\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\ncarol, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 100,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771261302\",\"status\":\"PENDING\"}'),
(106, 0, 'cobranca', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-16 14:20:18', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0C000C0A16C52B4E149\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\ncarol, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 100,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771262417\",\"status\":\"PENDING\"}'),
(107, 0, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *livia*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 0,01*\r\n• Próximo vencimento: *13/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-16 14:58:23', '{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FC9FB9C8919E6A0D1E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *livia*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 0,01*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *13\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771264702\",\"status\":\"PENDING\"}'),
(108, 0, 'cobranca', '💰 *COBRANÇA*\n\nlivia, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 0,01\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-16 14:59:52', '{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09270DA342A5BF621F8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\nlivia, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 0,01\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771264791\",\"status\":\"PENDING\"}'),
(109, 0, 'cobranca', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-16 15:01:33', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB07C6F24BAF30362695E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\ncarol, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 100,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771264893\",\"status\":\"PENDING\"}'),
(110, 0, 'cobranca', '💰 *COBRANÇA*\n\nlivia, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 1,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', 'enviado', '2026-02-16 16:34:54', '{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0637C9C62D89617F935\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A*\\n\\nlivia, vence hoje!\\n\\n\\ud83d\\udccb PIX:\\n\\ud83d\\udd11 {pix_tipo}: `{pix_chave}`\\n\\ud83d\\udc64 {pix_beneficiario}\\n\\ud83d\\udcb0 R$ 1,00\\n\\n\\ud83c\\udd94 #{fatura_id}\\n\\n{instrucao_pago}\"}},\"messageTimestamp\":\"1771270493\",\"status\":\"PENDING\"}'),
(111, 0, 'cobranca', '⚠️ *ATENÇÃO - PAGAMENTO ATRASADO*\n\nOlá livia,\nSeu pagamento está atrasado há 3 dias.\n\nApós 1 dias, seu acesso será suspenso.', 'enviado', '2026-02-16 16:41:39', '{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DB7ACBE093BBA5E2B5\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u26a0\\ufe0f *ATEN\\u00c7\\u00c3O - PAGAMENTO ATRASADO*\\n\\nOl\\u00e1 livia,\\nSeu pagamento est\\u00e1 atrasado h\\u00e1 3 dias.\\n\\nAp\\u00f3s 1 dias, seu acesso ser\\u00e1 suspenso.\"}},\"messageTimestamp\":\"1771270898\",\"status\":\"PENDING\"}'),
(112, 0, 'cobranca', '⚠️ *ATENÇÃO - PAGAMENTO ATRASADO*\n\nOlá livia,\nSeu pagamento está atrasado há 3 dias.\n\nApós 1 dias, seu acesso será suspenso.', 'enviado', '2026-02-16 16:44:37', '{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB069382E4C4CC7F31570\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u26a0\\ufe0f *ATEN\\u00c7\\u00c3O - PAGAMENTO ATRASADO*\\n\\nOl\\u00e1 livia,\\nSeu pagamento est\\u00e1 atrasado h\\u00e1 3 dias.\\n\\nAp\\u00f3s 1 dias, seu acesso ser\\u00e1 suspenso.\"}},\"messageTimestamp\":\"1771271077\",\"status\":\"PENDING\"}'),
(113, 0, 'cobranca', '💰 *COBRANÇA - PIX MANUAL*\n\nOlá carol,\nSua mensalidade vence hoje!\n\n📋 *Dados para PIX:*\n🔑 *Tipo:* \n🔑 *Chave:* ``\n👤 *Beneficiário:* \n💰 *Valor:* R$ 100,00\n\n📌 Após pagar, aguarde a confirmação.\n\n🆔 Fatura #8', 'enviado', '2026-02-16 17:00:52', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB068A6CDB4867F7C98D8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A - PIX MANUAL*\\n\\nOl\\u00e1 carol,\\nSua mensalidade vence hoje!\\n\\n\\ud83d\\udccb *Dados para PIX:*\\n\\ud83d\\udd11 *Tipo:* \\n\\ud83d\\udd11 *Chave:* ``\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* \\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\n\\n\\ud83d\\udccc Ap\\u00f3s pagar, aguarde a confirma\\u00e7\\u00e3o.\\n\\n\\ud83c\\udd94 Fatura #8\"}},\"messageTimestamp\":\"1771272051\",\"status\":\"PENDING\"}'),
(114, 0, 'cobranca', '💰 *COBRANÇA - PIX*\n\nOlá *carol*,\nSua mensalidade vence hoje!\n\n💰 *Valor:* R$ {valor}\n📅 *Vencimento:* {data_vencimento}\n\n🔑 *Chave PIX:* \n👤 *Beneficiário:* \n\n📲 *Ou acesse o link para pagar com QR Code:*\nhttps://gestorx.voidplay.com.br/gestorwhatsapp/pagar/index.php?id=9\n\n📌 Após pagar, a confirmação é automática!', 'enviado', '2026-02-16 17:08:36', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0DA3E77D8DC2B7D3D6E\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcb0 *COBRAN\\u00c7A - PIX*\\n\\nOl\\u00e1 *carol*,\\nSua mensalidade vence hoje!\\n\\n\\ud83d\\udcb0 *Valor:* R$ {valor}\\n\\ud83d\\udcc5 *Vencimento:* {data_vencimento}\\n\\n\\ud83d\\udd11 *Chave PIX:* \\n\\ud83d\\udc64 *Benefici\\u00e1rio:* \\n\\n\\ud83d\\udcf2 *Ou acesse o link para pagar com QR Code:*\\nhttps:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/pagar\\/index.php?id=9\\n\\n\\ud83d\\udccc Ap\\u00f3s pagar, a confirma\\u00e7\\u00e3o \\u00e9 autom\\u00e1tica!\"}},\"messageTimestamp\":\"1771272515\",\"status\":\"PENDING\"}'),
(115, 0, 'cobranca', '🔔 *Olá carol!*\r\n\r\nSua mensalidade vence *hoje*!\r\n\r\n💰 *Valor:* R$ 100,00\r\n📅 *Vencimento:* 16/02/2026\r\n\r\n👇 *Clique abaixo para pagar via PIX:*\r\nhttps://gestorx.voidplay.com.br/gestorwhatsapp/pagar/index.php?id=8\r\n\r\n✅ Após o pagamento, a confirmação é automática!', 'enviado', '2026-02-16 17:33:19', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03944A0D77BC88838BC\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1 carol!*\\r\\n\\r\\nSua mensalidade vence *hoje*!\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udc47 *Clique abaixo para pagar via PIX:*\\r\\nhttps:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/pagar\\/index.php?id=8\\r\\n\\r\\n\\u2705 Ap\\u00f3s o pagamento, a confirma\\u00e7\\u00e3o \\u00e9 autom\\u00e1tica!\"}},\"messageTimestamp\":\"1771273998\",\"status\":\"PENDING\"}'),
(116, 0, 'cobranca', '🔔 *Olá carol!*\r\n\r\nSua mensalidade vence *hoje*!\r\n\r\n💰 *Valor:* R$ 100,00\r\n📅 *Vencimento:* 16/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\n📌 Após pagar, envie *\"pago\"* aqui no WhatsApp!', 'enviado', '2026-02-16 17:35:14', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E680B9895171E16031\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1 carol!*\\r\\n\\r\\nSua mensalidade vence *hoje*!\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\n\\ud83d\\udccc Ap\\u00f3s pagar, envie *\\\"pago\\\"* aqui no WhatsApp!\"}},\"messageTimestamp\":\"1771274114\",\"status\":\"PENDING\"}'),
(117, 0, 'cobranca', '🔔 *Olá, carol!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 100,00\r\n📅 *Vencimento:* 16/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-16 18:01:39', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB066B366A891B2838BC3\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, carol!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 16\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771275699\",\"status\":\"PENDING\"}'),
(118, NULL, 'cobranca', NULL, 'falha', '2026-02-16 22:14:34', 'HTTP 400'),
(119, NULL, 'cobranca', '🔔 *Olá, carol!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-16 22:43:16', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BEEFC978FDA1256A65\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, carol!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ {valor}\\r\\n\\ud83d\\udcc5 *Vencimento:* {data_vencimento}\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* {pix_tipo}\\r\\n\\ud83d\\udccc *Chave:* {pix_chave}\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* {pix_beneficiario}\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771292596\",\"status\":\"PENDING\"}'),
(120, NULL, 'cobranca', '🔔 *Olá, carol!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 100,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 09:00:17', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05015E4E2F3F72D0AE0\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, carol!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 100,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771329617\",\"status\":\"PENDING\"}'),
(121, NULL, 'cobranca', '🔔 *Olá, livia!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 40,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 09:00:24', '{\"key\":{\"remoteJid\":\"554792083580@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E3B0F22A47AC49C0F1\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, livia!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 40,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771329624\",\"status\":\"PENDING\"}'),
(122, NULL, 'cobranca', '📅 *Olá, carol!*\r\n\r\nPassando para dar um lembrete amigável 😊\r\n\r\nSua mensalidade vence em *3 dias*, no dia *{data_vencimento}*.\r\n\r\n💰 *Valor:* R$ {valor}\r\n\r\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\r\n\r\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬', 'enviado', '2026-02-17 12:01:48', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00D0E376BC68BF13D3D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Ol\\u00e1, carol!*\\r\\n\\r\\nPassando para dar um lembrete amig\\u00e1vel \\ud83d\\ude0a\\r\\n\\r\\nSua mensalidade vence em *3 dias*, no dia *{data_vencimento}*.\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ {valor}\\r\\n\\r\\nGaranta sua renova\\u00e7\\u00e3o antes do prazo e continue aproveitando o servi\\u00e7o sem interrup\\u00e7\\u00f5es! \\ud83d\\ude80\\r\\n\\r\\nQualquer d\\u00favida, \\u00e9 s\\u00f3 chamar aqui. Estamos \\u00e0 disposi\\u00e7\\u00e3o! \\ud83d\\udcac\"}},\"messageTimestamp\":\"1771340508\",\"status\":\"PENDING\"}'),
(123, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Dry / Ios VIvo*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *18/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:34:15', '{\"key\":{\"remoteJid\":\"5511972421904@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04441E64D2DE834ED19\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Dry \\/ Ios VIvo*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *18\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771356854\",\"status\":\"PENDING\"}'),
(124, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Clovis / Ios Vivo*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *07/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:35:25', '{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0B2ACDFB442F1556928\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Clovis \\/ Ios Vivo*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *07\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771356925\",\"status\":\"PENDING\"}'),
(125, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Gabriel / Vivo ios*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *20/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:42:37', '{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F7F3B4EC7EB9F3E373\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Gabriel \\/ Vivo ios*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *20\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771357357\",\"status\":\"PENDING\"}'),
(126, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Rodrigo*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *18/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:46:33', '{\"key\":{\"remoteJid\":\"554797180643@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB099DD7A27A935F5B75A\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Rodrigo*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 40,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *18\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771357592\",\"status\":\"PENDING\"}'),
(127, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Kev / IOS VIVO*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *17/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:48:18', '{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB097688A077D72BFD8A3\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Kev \\/ IOS VIVO*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *17\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771357697\",\"status\":\"PENDING\"}'),
(128, NULL, 'cobranca', NULL, 'falha', '2026-02-17 16:50:27', 'HTTP 400'),
(129, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Leandro / VIVO IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *08/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:51:51', '{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A8B8F1EA6F512D87BF\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Leandro \\/ VIVO IOS*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *08\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771357910\",\"status\":\"PENDING\"}'),
(130, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Pablo / Combo Tv + ios*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 60,00*\r\n• Próximo vencimento: *16/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:55:18', '{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F6F9F3C350FEA8C778\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Pablo \\/ Combo Tv + ios*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 60,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *16\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771358117\",\"status\":\"PENDING\"}'),
(131, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Diego Paiakan / ViVo IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *17/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:56:55', '{\"key\":{\"remoteJid\":\"5515996010925@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB012120922E574C4D6D3\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Diego Paiakan \\/ ViVo IOS*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *17\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771358214\",\"status\":\"PENDING\"}'),
(132, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Josue / VIVO IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *21/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 16:58:20', '{\"key\":{\"remoteJid\":\"5515997872089@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0320CEC5A34A167F844\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Josue \\/ VIVO IOS*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 35,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *21\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771358299\",\"status\":\"PENDING\"}'),
(133, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Solan / IOS VIVO*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 30,00*\r\n• Próximo vencimento: *10/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 17:01:07', '{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB087D93C223DE04939FB\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Solan \\/ IOS VIVO*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 30,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *10\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771358467\",\"status\":\"PENDING\"}'),
(134, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 17:13:58', '{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CFA067EED6F2EDB4C9\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771359238\",\"status\":\"PENDING\"}'),
(135, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 17:14:08', '{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0011E1F64BA2514CD0A\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771359247\",\"status\":\"PENDING\"}'),
(136, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 17:16:15', '{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FFB741FE55A49BDE75\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771359375\",\"status\":\"PENDING\"}'),
(137, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 17:16:25', '{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0D0A91A8FD02E8EF647\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771359385\",\"status\":\"PENDING\"}'),
(138, NULL, 'cobranca', '🔔 *Olá, Erick Souza!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 17:28:53', '{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0ED6C340413B1E7B8CD\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, Erick Souza!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ {valor}\\r\\n\\ud83d\\udcc5 *Vencimento:* {data_vencimento}\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* {pix_tipo}\\r\\n\\ud83d\\udccc *Chave:* {pix_chave}\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* {pix_beneficiario}\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771360132\",\"status\":\"PENDING\"}'),
(139, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 17:39:38', '{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB063AA2AEBA0673D13FF\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771360778\",\"status\":\"PENDING\"}'),
(140, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 17:39:52', '{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05398D27E700E7777A6\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771360791\",\"status\":\"PENDING\"}'),
(141, NULL, 'cobranca', '🔔 *Olá, Kev / IOS VIVO!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 35,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* Email\r\n📌 *Chave:* contato@voidplay.com.br\r\n👤 *Beneficiário:* VoidPlay Principal\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 18:02:15', '{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0F3B2B705BF18876288\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, Kev \\/ IOS VIVO!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 35,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* Email\\r\\n\\ud83d\\udccc *Chave:* contato@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* VoidPlay Principal\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771362135\",\"status\":\"PENDING\"}'),
(142, NULL, 'cobranca', '📅 *Olá, Gabriel / Vivo ios!*\r\n\r\nPassando para dar um lembrete amigável 😊\r\n\r\nSua mensalidade vence em *3 dias*, no dia *20/02/2026*.\r\n\r\n💰 *Valor:* R$ 35,00\r\n\r\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\r\n\r\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬', 'enviado', '2026-02-17 18:02:19', '{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00B856CD50F3FB58DD2\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udcc5 *Ol\\u00e1, Gabriel \\/ Vivo ios!*\\r\\n\\r\\nPassando para dar um lembrete amig\\u00e1vel \\ud83d\\ude0a\\r\\n\\r\\nSua mensalidade vence em *3 dias*, no dia *20\\/02\\/2026*.\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 35,00\\r\\n\\r\\nGaranta sua renova\\u00e7\\u00e3o antes do prazo e continue aproveitando o servi\\u00e7o sem interrup\\u00e7\\u00f5es! \\ud83d\\ude80\\r\\n\\r\\nQualquer d\\u00favida, \\u00e9 s\\u00f3 chamar aqui. Estamos \\u00e0 disposi\\u00e7\\u00e3o! \\ud83d\\udcac\"}},\"messageTimestamp\":\"1771362139\",\"status\":\"PENDING\"}'),
(143, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:19:47', '{\"key\":{\"remoteJid\":\"553399921854@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00349517F24FCFA0A57\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363187\",\"status\":\"PENDING\"}'),
(144, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:20:00', '{\"key\":{\"remoteJid\":\"5511972421904@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0247EAD633AB3198F3A\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363200\",\"status\":\"PENDING\"}'),
(145, NULL, 'cobranca', NULL, 'falha', '2026-02-17 18:20:10', 'HTTP 400'),
(146, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:20:27', '{\"key\":{\"remoteJid\":\"5515996605722@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0E5CF409EC9316E6A79\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363227\",\"status\":\"PENDING\"}'),
(147, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:20:43', '{\"key\":{\"remoteJid\":\"553597328685@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0589555C22B52073A16\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363243\",\"status\":\"PENDING\"}'),
(148, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:20:58', '{\"key\":{\"remoteJid\":\"5515997872089@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FFE91DD2D45BF9B28D\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363258\",\"status\":\"PENDING\"}'),
(149, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:21:13', '{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB00BD3E680973E4C3D43\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363273\",\"status\":\"PENDING\"}'),
(150, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:21:25', '{\"key\":{\"remoteJid\":\"5515996618993@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BD7C707B69053E51D2\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363285\",\"status\":\"PENDING\"}'),
(151, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:21:40', '{\"key\":{\"remoteJid\":\"554792602871@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB067F660C83A4E84217C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363300\",\"status\":\"PENDING\"}'),
(152, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:21:51', '{\"key\":{\"remoteJid\":\"5515996880285@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0FFCCBBDD8095D4AF84\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363311\",\"status\":\"PENDING\"}'),
(153, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:22:02', '{\"key\":{\"remoteJid\":\"554791741091@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01E4ECFC95CE90AA197\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363321\",\"status\":\"PENDING\"}'),
(154, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:22:16', '{\"key\":{\"remoteJid\":\"554189045018@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0EBCE4580C5D6316585\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363336\",\"status\":\"PENDING\"}'),
(155, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:22:29', '{\"key\":{\"remoteJid\":\"5524998762401@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0698E44C819DD4D2C85\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363349\",\"status\":\"PENDING\"}'),
(156, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:22:40', '{\"key\":{\"remoteJid\":\"5515996448994@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB076D4BBBA9FE45D0E00\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363360\",\"status\":\"PENDING\"}'),
(157, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:22:50', '{\"key\":{\"remoteJid\":\"5519983457931@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0CA4E03B89B58D9F0E8\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363369\",\"status\":\"PENDING\"}'),
(158, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:22:58', '{\"key\":{\"remoteJid\":\"5515996010925@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB032762F491065BA5D3C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363378\",\"status\":\"PENDING\"}'),
(159, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:23:07', '{\"key\":{\"remoteJid\":\"554788117041@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0753148FCBD8861E0F2\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363386\",\"status\":\"PENDING\"}'),
(160, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 18:23:24', '{\"key\":{\"remoteJid\":\"554797180643@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03F1B91EAF9702259DC\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771363403\",\"status\":\"PENDING\"}');
INSERT INTO `log_envios` (`id`, `id_cliente`, `tipo_mensagem`, `mensagem_enviada`, `status_envio`, `data_envio`, `resposta_api`) VALUES
(161, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *carol*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 10,00*\r\n• Próximo vencimento: *17/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 18:52:42', '{\"key\":{\"remoteJid\":\"554792012997@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB09A2B466CF1728A2A58\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *carol*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 10,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *17\\/03\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771365162\",\"status\":\"PENDING\"}'),
(162, NULL, 'cobranca', 'teste desconciderar', 'enviado', '2026-02-17 18:57:31', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB05F0E7C8D3D152AEB94\"},\"message\":{\"extendedTextMessage\":{\"text\":\"teste desconciderar\"}},\"messageTimestamp\":\"1771365450\",\"status\":\"PENDING\"}'),
(163, NULL, 'cobranca', 'Oferta especial pra você!', 'enviado', '2026-02-17 19:01:20', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055429EDFB94F57B17F\"},\"message\":{\"extendedTextMessage\":{\"text\":\"Oferta especial pra voc\\u00ea!\"}},\"messageTimestamp\":\"1771365680\",\"status\":\"PENDING\"}'),
(164, NULL, 'cobranca', 'INTERNET E IPTV\n\n🔗 Link da imagem: https://gestorx.voidplay.com.br/gestorwhatsapp/uploads/campanhas/campanhas/6994e9b550eba_20260217.mp4', 'enviado', '2026-02-17 19:20:43', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB03C018EBDB60EED8F9C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"INTERNET E IPTV\\n\\n\\ud83d\\udd17 Link da imagem: https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/uploads\\/campanhas\\/campanhas\\/6994e9b550eba_20260217.mp4\"}},\"messageTimestamp\":\"1771366843\",\"status\":\"PENDING\"}'),
(165, NULL, 'cobranca', 'INTERNET E IPTV\n\n🔗 Link da imagem: https://gestorx.voidplay.com.br/gestorwhatsapp/uploads/campanhas/campanhas/6994ea65f30bd_20260217.png', 'enviado', '2026-02-17 19:23:37', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB01D59BFDE753FB49E99\"},\"message\":{\"extendedTextMessage\":{\"text\":\"INTERNET E IPTV\\n\\n\\ud83d\\udd17 Link da imagem: https:\\/\\/gestorx.voidplay.com.br\\/gestorwhatsapp\\/uploads\\/campanhas\\/campanhas\\/6994ea65f30bd_20260217.png\"}},\"messageTimestamp\":\"1771367016\",\"status\":\"PENDING\"}'),
(166, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Nando5498*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *19/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 19:42:17', '{\"key\":{\"remoteJid\":\"554185045498@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0BDC198D2015C0FE8A0\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *Nando5498*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 40,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *19\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771368136\",\"status\":\"PENDING\"}'),
(167, NULL, 'cobranca', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *johnny*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 1,00*\r\n• Próximo vencimento: *17/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', 'enviado', '2026-02-17 19:59:40', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB08BF09D3F46D8BD2CE7\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83c\\udf89 *Bem-vindo(a) ao nosso sistema!*\\r\\n\\r\\nOl\\u00e1, *johnny*! \\ud83d\\udc4b\\r\\n\\r\\n\\u00c9 um prazer ter voc\\u00ea conosco!\\r\\n\\r\\n\\ud83d\\udccb *Informa\\u00e7\\u00f5es da sua conta:*\\r\\n\\u2022 Plano: *mensal*\\r\\n\\u2022 Valor mensal: *R$ 1,00*\\r\\n\\u2022 Pr\\u00f3ximo vencimento: *17\\/02\\/2026*\\r\\n\\r\\nQualquer d\\u00favida, estamos \\u00e0 disposi\\u00e7\\u00e3o!\\r\\n\\r\\nAproveite! \\ud83d\\ude80\\u2728\"}},\"messageTimestamp\":\"1771369180\",\"status\":\"PENDING\"}'),
(168, NULL, 'cobranca', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 20:00:32', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0A882E2FEEF23514B6C\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, johnny!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ {valor}\\r\\n\\ud83d\\udcc5 *Vencimento:* {data_vencimento}\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* {pix_tipo}\\r\\n\\ud83d\\udccc *Chave:* {pix_chave}\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* {pix_beneficiario}\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771369231\",\"status\":\"PENDING\"}'),
(169, NULL, 'cobranca', '✅ *Renovação Concluída com Sucesso!*\n\nOlá, *Clovis / Ios Vivo*!\nSua assinatura foi renovada e está ativa até:\n\n📅 *Data de expiração:*\n19/03/2026\n\nAgradecemos sua confiança em nossos serviços!\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\n\nAproveite o entretenimento sem limites! 🎁🎬🍿', 'enviado', '2026-02-17 20:28:18', '{\"key\":{\"remoteJid\":\"5515997393627@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04762828FFF186D6986\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\u2705 *Renova\\u00e7\\u00e3o Conclu\\u00edda com Sucesso!*\\n\\nOl\\u00e1, *Clovis \\/ Ios Vivo*!\\nSua assinatura foi renovada e est\\u00e1 ativa at\\u00e9:\\n\\n\\ud83d\\udcc5 *Data de expira\\u00e7\\u00e3o:*\\n19\\/03\\/2026\\n\\nAgradecemos sua confian\\u00e7a em nossos servi\\u00e7os!\\nPara continuar usando o sistema ap\\u00f3s essa data, entre em contato para realizar uma nova renova\\u00e7\\u00e3o.\\n\\nAproveite o entretenimento sem limites! \\ud83c\\udf81\\ud83c\\udfac\\ud83c\\udf7f\"}},\"messageTimestamp\":\"1771370898\",\"status\":\"PENDING\"}'),
(170, NULL, 'cobranca', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 20:34:44', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB04F3DAFE8D2244EC1DD\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, johnny!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ {valor}\\r\\n\\ud83d\\udcc5 *Vencimento:* {data_vencimento}\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* {pix_tipo}\\r\\n\\ud83d\\udccc *Chave:* {pix_chave}\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* {pix_beneficiario}\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771371284\",\"status\":\"PENDING\"}'),
(171, NULL, 'cobranca', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 1,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* TELEFONE\r\n📌 *Chave:* 47996105435\r\n👤 *Beneficiário:* Johnny Schmitt ou JtvPlay Eletronicos\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 21:06:47', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB055C165BD9E07D3DB92\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, johnny!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 1,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* TELEFONE\\r\\n\\ud83d\\udccc *Chave:* 47996105435\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* Johnny Schmitt ou JtvPlay Eletronicos\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771373207\",\"status\":\"PENDING\"}'),
(172, NULL, 'cobranca', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 1,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* EMAIL\r\n📌 *Chave:* pix@voidplay.com.br\r\n👤 *Beneficiário:* João Silva MEI\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', 'enviado', '2026-02-17 21:08:29', '{\"key\":{\"remoteJid\":\"554791063914@s.whatsapp.net\",\"fromMe\":true,\"id\":\"3EB0874DDA97F6FAB5481B\"},\"message\":{\"extendedTextMessage\":{\"text\":\"\\ud83d\\udd14 *Ol\\u00e1, johnny!*\\r\\n\\r\\nHoje \\u00e9 o dia do vencimento da sua mensalidade! \\ud83d\\udcc6\\r\\n\\r\\n\\ud83d\\udcb0 *Valor:* R$ 1,00\\r\\n\\ud83d\\udcc5 *Vencimento:* 17\\/02\\/2026\\r\\n\\r\\n\\ud83d\\udccb *Dados para pagamento PIX:*\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\ud83d\\udd11 *Tipo:* EMAIL\\r\\n\\ud83d\\udccc *Chave:* pix@voidplay.com.br\\r\\n\\ud83d\\udc64 *Benefici\\u00e1rio:* Jo\\u00e3o Silva MEI\\r\\n\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\u2500\\r\\n\\r\\nAp\\u00f3s realizar o pagamento, responda aqui com *\\\"pago\\\"* para confirmarmos! \\u2705\\r\\n\\r\\nObrigado pela confian\\u00e7a! \\ud83d\\ude4f\"}},\"messageTimestamp\":\"1771373308\",\"status\":\"PENDING\"}');

-- --------------------------------------------------------

--
-- Estrutura para tabela `log_pagamentos`
--

CREATE TABLE `log_pagamentos` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `valor` decimal(10,2) DEFAULT 0.00,
  `tipo_pagamento` varchar(50) DEFAULT 'pix_manual',
  `status` varchar(20) DEFAULT 'aprovado',
  `data_pagamento` datetime DEFAULT current_timestamp(),
  `observacao` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `mensagens`
--

CREATE TABLE `mensagens` (
  `id` int(11) NOT NULL,
  `instancia_id` int(11) DEFAULT NULL COMMENT 'Instância WhatsApp usada',
  `usuario_id` int(11) NOT NULL COMMENT 'Usuário que enviou',
  `tipo_envio` enum('individual','massa','agendado','campanha') NOT NULL DEFAULT 'individual',
  `tipo_mensagem` enum('texto','imagem','documento','audio','video','localizacao','contato') NOT NULL DEFAULT 'texto',
  `destinatario` varchar(20) DEFAULT NULL COMMENT 'Número único (individual)',
  `destinatarios` longtext DEFAULT NULL COMMENT 'JSON com múltiplos números',
  `mensagem` text NOT NULL,
  `midia_url` varchar(500) DEFAULT NULL,
  `midia_tipo` varchar(50) DEFAULT NULL,
  `midia_nome` varchar(255) DEFAULT NULL,
  `template_id` int(11) DEFAULT NULL,
  `status` enum('pendente','processando','enviado','parcial','falhou','cancelado') NOT NULL DEFAULT 'pendente',
  `agendado_para` datetime DEFAULT NULL,
  `enviado_em` datetime DEFAULT NULL,
  `finalizado_em` datetime DEFAULT NULL,
  `erro_mensagem` text DEFAULT NULL,
  `total_destinatarios` int(11) DEFAULT 0,
  `total_enviados` int(11) DEFAULT 0,
  `total_entregues` int(11) DEFAULT 0,
  `total_lidos` int(11) DEFAULT 0,
  `total_falhas` int(11) DEFAULT 0,
  `prioridade` enum('baixa','normal','alta') DEFAULT 'normal',
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `mensagens`
--

INSERT INTO `mensagens` (`id`, `instancia_id`, `usuario_id`, `tipo_envio`, `tipo_mensagem`, `destinatario`, `destinatarios`, `mensagem`, `midia_url`, `midia_tipo`, `midia_nome`, `template_id`, `status`, `agendado_para`, `enviado_em`, `finalizado_em`, `erro_mensagem`, `total_destinatarios`, `total_enviados`, `total_entregues`, `total_lidos`, `total_falhas`, `prioridade`, `criado_em`, `atualizado_em`) VALUES
(1, 20, 3, 'individual', 'texto', '5547992012997', NULL, 'Ola esse é um teste da Api Jtvplay!', NULL, NULL, NULL, NULL, 'enviado', NULL, '2026-01-26 19:08:42', '2026-01-26 19:08:42', NULL, 1, 1, 0, 0, 0, 'normal', '2026-01-26 22:08:37', '2026-01-26 21:08:42'),
(2, 20, 3, 'individual', 'texto', '5547991063614', NULL, 'teste api jtvplay!', NULL, NULL, NULL, NULL, 'enviado', NULL, '2026-01-26 19:25:13', '2026-01-26 19:25:13', NULL, 1, 1, 0, 0, 0, 'normal', '2026-01-26 22:25:08', '2026-01-26 21:25:13'),
(3, 20, 3, 'individual', 'texto', '5547991063914', NULL, 'Esse é um teste da api oficial JTVPLAY!', NULL, NULL, NULL, NULL, 'enviado', NULL, '2026-01-26 19:26:53', '2026-01-26 19:26:53', NULL, 1, 1, 0, 0, 0, 'normal', '2026-01-26 22:26:47', '2026-01-26 21:26:53'),
(4, 20, 3, 'massa', 'texto', NULL, '[\"5547991063914\",\"5547992012997\",\"5547992602871\"]', 'ESSA È UMA MENSAGEM DO GESTOR JTV PLAY! SE VOCE ESTA RECEBENDO ESSA MSG O SISTEMA ESTA FUNCIONAL !!', NULL, NULL, NULL, NULL, 'enviado', NULL, '2026-01-26 18:49:11', '2026-01-26 18:49:11', NULL, 3, 3, 0, 0, 0, 'normal', '2026-01-26 21:49:02', '2026-01-26 21:49:11'),
(5, 20, 3, 'individual', 'texto', '5547991063914', NULL, 'TESTE API!', NULL, NULL, NULL, NULL, 'enviado', NULL, '2026-01-26 18:58:38', '2026-01-26 18:58:38', NULL, 1, 1, 0, 0, 0, 'normal', '2026-01-26 21:58:38', '2026-01-26 21:58:38'),
(6, 21, 3, 'individual', 'texto', '5547992012997', NULL, '🚨 Atenção! Seu sinal JTVPlay expira hoje!  \r\nNão fique sem o melhor do entretenimento — séries, filmes e canais que você ama estão a um clique de distância.\r\nRenove agora e continue conectado com tudo que importa.\r\n\r\n📲 Fale conosco para renovar: [47991592447]\r\nJTVPlay — sua diversão não pode parar!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-01-29 21:41:47', '2026-01-29 21:41:47', NULL, 1, 0, 0, 0, 1, 'normal', '2026-01-30 00:41:46', '2026-01-30 00:41:47'),
(7, 21, 3, 'individual', 'texto', '5547992012997', NULL, '🚨 Atenção! Seu sinal JTVPlay expira hoje!  \r\nNão fique sem o melhor do entretenimento — séries, filmes e canais que você ama estão a um clique de distância.\r\nRenove agora e continue conectado com tudo que importa.\r\n\r\n📲 Fale conosco para renovar: [seu contato ou link]\r\nJTVPlay — sua diversão não pode parar!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-01-29 21:43:02', '2026-01-29 21:43:02', NULL, 1, 0, 0, 0, 1, 'normal', '2026-01-30 00:43:01', '2026-01-30 00:43:02'),
(8, 22, 3, 'individual', 'texto', '5547992012997', NULL, '🚨 Atenção! Seu sinal JTVPlay expira hoje!  \r\n\r\nNão fique sem o melhor do entretenimento — séries, filmes e canais que você ama estão a um clique de distância.\r\n\r\nRenove agora e continue conectado com tudo que importa.\r\n\r\n\r\n\r\n📲 Fale conosco para renovar: [47991592447]\r\n\r\nJTVPlay — sua diversão não pode parar!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 19:07:37', '2026-02-09 19:07:37', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 22:07:37', '2026-02-09 22:07:37'),
(9, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'TESTEEEEEEEEEE', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 19:42:22', '2026-02-09 19:42:22', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 22:42:21', '2026-02-09 22:42:22'),
(10, 22, 3, 'individual', 'texto', '5547991063914', NULL, 'Oieeeee', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 19:52:06', '2026-02-09 19:52:06', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 22:52:06', '2026-02-09 22:52:06'),
(11, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'Teste de integração Manus - Evolution API v2', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 19:55:01', '2026-02-09 19:55:01', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 22:55:00', '2026-02-09 22:55:01'),
(12, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'Teste final Manus - Evolution API v2 - Sucesso!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 19:59:04', '2026-02-09 19:59:04', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 22:59:04', '2026-02-09 22:59:04'),
(13, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'Teste Manus v2.3.0 - Payload v2.1+ e Logs ativos.', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:01:00', '2026-02-09 20:01:00', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:00:59', '2026-02-09 23:01:00'),
(14, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'Teste Final Manus v2.5.0 - Sistema Estabilizado e Integrado!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:05:25', '2026-02-09 20:05:25', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:05:24', '2026-02-09 23:05:25'),
(15, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'Teste Final Manus v2.6.0 - Sistema Estabilizado e Payload Corrigido!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:06:30', '2026-02-09 20:06:30', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:06:29', '2026-02-09 23:06:30'),
(16, 22, 3, 'individual', 'texto', '5547992012997', NULL, 'Teste Final Manus v2.7.0 - Sistema Estabilizado e Compatibilidade Total!', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:07:31', '2026-02-09 20:07:31', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:07:30', '2026-02-09 23:07:31'),
(17, 23, 3, 'individual', 'texto', '5547991063914', NULL, 'testando api', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:30:36', '2026-02-09 20:30:36', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:30:35', '2026-02-09 23:30:36'),
(18, 23, 3, 'individual', 'texto', '5547991063914', NULL, 'TESTEEEE', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:36:49', '2026-02-09 20:36:49', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:36:49', '2026-02-09 23:36:49'),
(19, 23, 3, 'individual', 'texto', '5547991063914', NULL, 'TESTEEE', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:44:52', '2026-02-09 20:44:52', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:44:51', '2026-02-09 23:44:52'),
(20, 23, 3, 'individual', 'texto', '5547991063914', NULL, 'TESTEEEE', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:46:35', '2026-02-09 20:46:35', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:46:34', '2026-02-09 23:46:35'),
(21, 23, 3, 'individual', 'texto', '47991063914', NULL, 'SDSDASDSA', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:47:35', '2026-02-09 20:47:35', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:47:35', '2026-02-09 23:47:35'),
(22, 23, 3, 'individual', 'texto', '47991063914', NULL, 'FSDAFDSF', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 20:47:47', '2026-02-09 20:47:47', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-09 23:47:47', '2026-02-09 23:47:47'),
(23, 23, 3, 'individual', 'texto', '5547992012997', NULL, 'DSZDSADSA', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 21:08:52', '2026-02-09 21:08:52', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-10 00:08:51', '2026-02-10 00:08:52'),
(24, 23, 3, 'individual', 'texto', '554792012997', NULL, 'TESTE APII', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 21:12:05', '2026-02-09 21:12:05', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-10 00:12:04', '2026-02-10 00:12:05'),
(25, 23, 3, 'individual', 'texto', '554792012997', NULL, 'TESTE API', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 21:13:07', '2026-02-09 21:13:07', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-10 00:13:06', '2026-02-10 00:13:07'),
(26, 23, 3, 'individual', 'texto', '554792012997', NULL, 'TESTE', NULL, NULL, NULL, NULL, 'falhou', NULL, '2026-02-09 21:14:53', '2026-02-09 21:14:53', NULL, 1, 0, 0, 0, 1, 'normal', '2026-02-10 00:14:53', '2026-02-10 00:14:53');

-- --------------------------------------------------------

--
-- Estrutura para tabela `mensagens_enviadas`
--

CREATE TABLE `mensagens_enviadas` (
  `id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `numero_destino` varchar(20) NOT NULL,
  `mensagem` text NOT NULL,
  `status` enum('sent','delivered','read','failed') DEFAULT 'sent',
  `message_id` varchar(100) DEFAULT NULL,
  `erro` text DEFAULT NULL,
  `data_envio` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `mensagens_log`
--

CREATE TABLE `mensagens_log` (
  `id` int(11) NOT NULL,
  `mensagem_id` int(11) NOT NULL,
  `numero` varchar(20) NOT NULL,
  `nome_contato` varchar(100) DEFAULT NULL,
  `status` enum('pendente','enviado','entregue','lido','falhou') NOT NULL DEFAULT 'pendente',
  `mensagem_id_whatsapp` varchar(100) DEFAULT NULL,
  `erro` text DEFAULT NULL,
  `tentativas` int(11) DEFAULT 0,
  `enviado_em` datetime DEFAULT NULL,
  `entregue_em` datetime DEFAULT NULL,
  `lido_em` datetime DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `mensagens_log`
--

INSERT INTO `mensagens_log` (`id`, `mensagem_id`, `numero`, `nome_contato`, `status`, `mensagem_id_whatsapp`, `erro`, `tentativas`, `enviado_em`, `entregue_em`, `lido_em`, `criado_em`) VALUES
(1, 1, '5547992012997', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 19:08:42', NULL, NULL, '2026-01-26 22:08:37'),
(2, 2, '5547991063614', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 19:25:13', NULL, NULL, '2026-01-26 22:25:08'),
(3, 3, '5547991063914', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 19:26:53', NULL, NULL, '2026-01-26 22:26:47'),
(4, 4, '5547991063914', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 18:49:03', NULL, NULL, '2026-01-26 21:49:02'),
(5, 4, '5547992012997', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 18:49:05', NULL, NULL, '2026-01-26 21:49:04'),
(6, 4, '5547992602871', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 18:49:09', NULL, NULL, '2026-01-26 21:49:06'),
(7, 5, '5547991063914', NULL, 'enviado', NULL, NULL, 1, '2026-01-26 18:58:38', NULL, NULL, '2026-01-26 21:58:38'),
(8, 6, '5547992012997', NULL, 'falhou', NULL, 'HTTP 0 ou falha na requisição', 1, '2026-01-29 21:41:47', NULL, NULL, '2026-01-30 00:41:46'),
(9, 7, '5547992012997', NULL, 'falhou', NULL, 'HTTP 0 ou falha na requisição', 1, '2026-01-29 21:43:02', NULL, NULL, '2026-01-30 00:43:01'),
(10, 8, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 19:07:37', NULL, NULL, '2026-02-09 22:07:37'),
(11, 9, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 19:42:22', NULL, NULL, '2026-02-09 22:42:21'),
(12, 10, '5547991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 19:52:06', NULL, NULL, '2026-02-09 22:52:06'),
(13, 11, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 19:55:01', NULL, NULL, '2026-02-09 22:55:00'),
(14, 12, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 19:59:04', NULL, NULL, '2026-02-09 22:59:04'),
(15, 13, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:01:00', NULL, NULL, '2026-02-09 23:00:59'),
(16, 14, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:05:25', NULL, NULL, '2026-02-09 23:05:24'),
(17, 15, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:06:30', NULL, NULL, '2026-02-09 23:06:29'),
(18, 16, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:07:31', NULL, NULL, '2026-02-09 23:07:30'),
(19, 17, '5547991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:30:36', NULL, NULL, '2026-02-09 23:30:35'),
(20, 18, '5547991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:36:49', NULL, NULL, '2026-02-09 23:36:49'),
(21, 19, '5547991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:44:52', NULL, NULL, '2026-02-09 23:44:51'),
(22, 20, '5547991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:46:35', NULL, NULL, '2026-02-09 23:46:34'),
(23, 21, '47991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:47:35', NULL, NULL, '2026-02-09 23:47:35'),
(24, 22, '47991063914', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 20:47:47', NULL, NULL, '2026-02-09 23:47:47'),
(25, 23, '5547992012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 21:08:52', NULL, NULL, '2026-02-10 00:08:51'),
(26, 24, '554792012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 21:12:05', NULL, NULL, '2026-02-10 00:12:04'),
(27, 25, '554792012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 21:13:07', NULL, NULL, '2026-02-10 00:13:06'),
(28, 26, '554792012997', NULL, 'falhou', NULL, 'HTTP 400 ou falha na requisição', 1, '2026-02-09 21:14:53', NULL, NULL, '2026-02-10 00:14:53');

-- --------------------------------------------------------

--
-- Estrutura para tabela `mensagens_midias`
--

CREATE TABLE `mensagens_midias` (
  `id` int(11) NOT NULL,
  `usuario_id` int(11) NOT NULL,
  `nome_arquivo` varchar(255) NOT NULL,
  `nome_original` varchar(255) NOT NULL,
  `tipo` enum('imagem','documento','audio','video') NOT NULL,
  `mime_type` varchar(100) DEFAULT NULL,
  `tamanho` bigint(20) DEFAULT NULL,
  `url` varchar(500) NOT NULL,
  `uso_count` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `mensagens_recebidas`
--

CREATE TABLE `mensagens_recebidas` (
  `id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `numero_remetente` varchar(20) NOT NULL,
  `mensagem` text NOT NULL,
  `message_id` varchar(100) DEFAULT NULL,
  `tipo` enum('text','image','video','audio','document') DEFAULT 'text',
  `midia_url` text DEFAULT NULL,
  `lida` tinyint(1) DEFAULT 0,
  `data_recebimento` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `notificacoes_admin`
--

CREATE TABLE `notificacoes_admin` (
  `id` int(11) NOT NULL,
  `tipo` varchar(50) DEFAULT NULL,
  `cliente_id` int(11) DEFAULT NULL,
  `mensagem` text DEFAULT NULL,
  `lido` tinyint(4) DEFAULT 0,
  `criado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `notificacoes_pix`
--

CREATE TABLE `notificacoes_pix` (
  `id` int(11) NOT NULL,
  `chave_id` int(11) NOT NULL,
  `tipo` enum('aviso_80','aviso_95','limite_atingido','chave_alterada') NOT NULL,
  `mensagem` text NOT NULL,
  `valor_atual` decimal(10,2) NOT NULL,
  `limite` decimal(10,2) NOT NULL,
  `percentual` decimal(5,2) NOT NULL,
  `lida` tinyint(1) DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `pagamentos_historico`
--

CREATE TABLE `pagamentos_historico` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `valor` decimal(10,2) NOT NULL,
  `data_pagamento` date NOT NULL,
  `observacao` text DEFAULT NULL,
  `data_registro` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `payment_logs`
--

CREATE TABLE `payment_logs` (
  `id` int(11) NOT NULL,
  `event_type` varchar(50) DEFAULT NULL,
  `payment_id` varchar(100) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `ip` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `data_criacao` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `periodos_renovacao`
--

CREATE TABLE `periodos_renovacao` (
  `id` int(11) NOT NULL,
  `valor_min` decimal(10,2) NOT NULL,
  `valor_max` decimal(10,2) NOT NULL,
  `dias_renovacao` int(11) NOT NULL,
  `descricao` varchar(100) DEFAULT NULL,
  `criado_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `periodos_renovacao`
--

INSERT INTO `periodos_renovacao` (`id`, `valor_min`, `valor_max`, `dias_renovacao`, `descricao`, `criado_em`) VALUES
(1, 0.00, 39.99, 30, 'Plano Mensal Básico', '2026-02-10 22:54:16'),
(2, 40.00, 99.99, 30, 'Plano Mensal', '2026-02-10 22:54:16'),
(3, 100.00, 149.99, 90, 'Plano Trimestral - 3 meses', '2026-02-10 22:54:16'),
(4, 150.00, 199.99, 180, 'Plano Semestral - 6 meses', '2026-02-10 22:54:16'),
(5, 200.00, 319.99, 180, 'Plano Semestral Premium', '2026-02-10 22:54:16'),
(6, 320.00, 399.99, 365, 'Plano Anual', '2026-02-10 22:54:16'),
(7, 400.00, 999999.99, 365, 'Plano Anual Premium', '2026-02-10 22:54:16');

-- --------------------------------------------------------

--
-- Estrutura para tabela `pix_chaves`
--

CREATE TABLE `pix_chaves` (
  `id` int(11) NOT NULL,
  `tipo_chave` enum('email','cpf','telefone','aleatoria') NOT NULL,
  `chave` varchar(255) NOT NULL,
  `beneficiario` varchar(255) NOT NULL,
  `limite_mensal` decimal(10,2) DEFAULT NULL COMMENT 'NULL = sem limite',
  `ativa` tinyint(1) DEFAULT 1,
  `observacao` text DEFAULT NULL,
  `criado_em` datetime DEFAULT current_timestamp(),
  `atualizado_em` datetime DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `pix_chaves`
--

INSERT INTO `pix_chaves` (`id`, `tipo_chave`, `chave`, `beneficiario`, `limite_mensal`, `ativa`, `observacao`, `criado_em`, `atualizado_em`) VALUES
(1, 'telefone', '47996105435', 'Johnny Schmitt ou JtvPlay Eletronicos', 5000.00, 1, 'Chave principal MEI', '2026-02-14 14:44:16', '2026-02-17 21:08:49'),
(2, 'email', 'pix@voidplay.com.br', 'João Silva MEI', NULL, 0, 'Sem limite - Backup', '2026-02-14 14:44:16', '2026-02-17 21:08:54'),
(3, 'cpf', '123.456.789-00', 'Maria Oliveira', 2000.00, 0, 'Chave secundária', '2026-02-14 14:44:16', '2026-02-17 17:28:18');

-- --------------------------------------------------------

--
-- Estrutura para tabela `planos`
--

CREATE TABLE `planos` (
  `id` int(10) UNSIGNED NOT NULL,
  `nome` varchar(100) NOT NULL,
  `descricao` text DEFAULT NULL,
  `limite_instancias` int(11) DEFAULT 1,
  `limite_mensagens_mes` int(11) DEFAULT 1000,
  `valor_mensal` decimal(10,2) NOT NULL,
  `valor_anual` decimal(10,2) DEFAULT NULL,
  `status` enum('ativo','inativo') DEFAULT 'ativo',
  `recursos` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`recursos`)),
  `ordem` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `planos`
--

INSERT INTO `planos` (`id`, `nome`, `descricao`, `limite_instancias`, `limite_mensagens_mes`, `valor_mensal`, `valor_anual`, `status`, `recursos`, `ordem`, `criado_em`, `atualizado_em`) VALUES
(1, 'Básico', 'Ideal para pequenos negócios', 1, 1000, 49.90, 499.00, 'ativo', NULL, 1, '2026-01-19 22:07:54', '2026-01-19 22:07:54'),
(2, 'Profissional', 'Para empresas em crescimento', 3, 5000, 99.90, 999.00, 'ativo', NULL, 2, '2026-01-19 22:07:54', '2026-01-19 22:07:54'),
(3, 'Enterprise', 'Solução completa para grandes empresas', 10, 25000, 199.90, 1999.00, 'ativo', NULL, 3, '2026-01-19 22:07:54', '2026-01-19 22:07:54'),
(4, 'Revendedor', 'Plano especial para revendedores', 0, 0, 0.00, 0.00, 'ativo', NULL, 4, '2026-01-19 22:07:54', '2026-01-19 22:07:54');

-- --------------------------------------------------------

--
-- Estrutura para tabela `revendedores`
--

CREATE TABLE `revendedores` (
  `id` int(10) UNSIGNED NOT NULL,
  `usuario_id` int(10) UNSIGNED NOT NULL,
  `comissao_percentual` decimal(5,2) DEFAULT 20.00,
  `limite_clientes` int(11) DEFAULT 0,
  `saldo_creditos` decimal(10,2) DEFAULT 0.00,
  `total_vendas` decimal(10,2) DEFAULT 0.00,
  `clientes_ativos` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `revendedores`
--

INSERT INTO `revendedores` (`id`, `usuario_id`, `comissao_percentual`, `limite_clientes`, `saldo_creditos`, `total_vendas`, `clientes_ativos`, `criado_em`, `atualizado_em`) VALUES
(1, 4, 10.00, 0, 1000.00, 0.00, 0, '2026-01-20 19:57:57', '2026-01-20 19:57:57'),
(2, 8, 0.00, 0, 100.00, 0.00, 0, '2026-01-20 21:39:50', '2026-01-20 21:39:50');

-- --------------------------------------------------------

--
-- Estrutura para tabela `saldos_clientes`
--

CREATE TABLE `saldos_clientes` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `saldo_atual` decimal(10,2) DEFAULT 0.00,
  `total_creditos` decimal(10,2) DEFAULT 0.00,
  `total_debitos` decimal(10,2) DEFAULT 0.00,
  `ultima_recarga` datetime DEFAULT NULL,
  `ultimo_pagamento` datetime DEFAULT NULL,
  `criado_em` datetime DEFAULT NULL,
  `atualizado_em` datetime DEFAULT NULL,
  `total_pago` decimal(10,2) NOT NULL DEFAULT 0.00,
  `total_cobrado` decimal(10,2) NOT NULL DEFAULT 0.00,
  `ultima_transacao` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='Armazena o saldo consolidado de cada cliente';

--
-- Despejando dados para a tabela `saldos_clientes`
--

INSERT INTO `saldos_clientes` (`id`, `cliente_id`, `saldo_atual`, `total_creditos`, `total_debitos`, `ultima_recarga`, `ultimo_pagamento`, `criado_em`, `atualizado_em`, `total_pago`, `total_cobrado`, `ultima_transacao`) VALUES
(1, 3, 0.00, 100.00, 100.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 100.00, 100.00, '2026-02-16 23:52:03'),
(2, 16, 0.00, 40.00, 40.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 40.00, 40.00, '2026-02-16 23:52:03'),
(3, 37, 0.00, 40.00, 40.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 40.00, 40.00, '2026-02-16 23:52:03'),
(4, 39, 0.00, 40.00, 40.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 40.00, 40.00, '2026-02-16 23:52:03'),
(5, 40, 0.00, 30.00, 30.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 30.00, 30.00, '2026-02-16 23:52:03'),
(6, 41, 0.00, 40.00, 40.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 40.00, 40.00, '2026-02-16 23:52:03'),
(7, 42, 0.00, 60.00, 60.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:52:03', 60.00, 60.00, '2026-02-16 23:52:03'),
(8, 43, 0.00, 0.00, 100.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:49:13', 0.00, 100.00, '2026-02-14 15:14:04'),
(9, 44, 0.00, 0.00, 100.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:49:13', 0.00, 100.00, '2026-02-14 17:55:35'),
(10, 46, 0.00, 0.00, 25.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:49:13', 0.00, 25.00, '2026-02-15 22:06:46'),
(11, 47, 0.00, 0.00, 40.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:31:05', 0.00, 40.00, '2026-02-16 14:58:21'),
(12, 48, 0.00, 0.00, 35.00, NULL, NULL, '2026-02-16 23:31:05', '2026-02-16 23:31:05', 0.00, 35.00, '2026-02-16 22:14:33'),
(30, 49, -35.00, 0.00, 35.00, NULL, NULL, '2026-02-17 16:34:12', '2026-02-17 16:34:12', 0.00, 35.00, '2026-02-17 16:34:12'),
(31, 50, -70.00, 0.00, 70.00, NULL, NULL, '2026-02-17 16:35:23', '2026-02-17 20:28:16', 0.00, 70.00, '2026-02-17 20:28:16'),
(32, 51, -35.00, 0.00, 35.00, NULL, NULL, '2026-02-17 16:42:35', '2026-02-17 16:42:35', 0.00, 35.00, '2026-02-17 16:42:35'),
(33, 52, -40.00, 0.00, 40.00, NULL, NULL, '2026-02-17 16:46:30', '2026-02-17 16:46:30', 0.00, 40.00, '2026-02-17 16:46:30'),
(34, 53, -35.00, 0.00, 35.00, NULL, NULL, '2026-02-17 16:48:15', '2026-02-17 16:48:15', 0.00, 35.00, '2026-02-17 16:48:15'),
(35, 54, -35.00, 0.00, 35.00, NULL, NULL, '2026-02-17 16:50:26', '2026-02-17 16:50:26', 0.00, 35.00, '2026-02-17 16:50:26'),
(36, 55, -60.00, 0.00, 60.00, NULL, NULL, '2026-02-17 16:55:15', '2026-02-17 16:55:15', 0.00, 60.00, '2026-02-17 16:55:15'),
(37, 56, -35.00, 0.00, 35.00, NULL, NULL, '2026-02-17 16:56:53', '2026-02-17 16:56:53', 0.00, 35.00, '2026-02-17 16:56:53'),
(38, 57, -35.00, 0.00, 35.00, NULL, NULL, '2026-02-17 16:58:17', '2026-02-17 16:58:17', 0.00, 35.00, '2026-02-17 16:58:17'),
(39, 58, -30.00, 0.00, 30.00, NULL, NULL, '2026-02-17 17:01:05', '2026-02-17 17:01:05', 0.00, 30.00, '2026-02-17 17:01:05'),
(40, 59, -10.00, 0.00, 10.00, NULL, NULL, '2026-02-17 18:52:40', '2026-02-17 18:52:40', 0.00, 10.00, '2026-02-17 18:52:40'),
(41, 60, -40.00, 0.00, 40.00, NULL, NULL, '2026-02-17 19:42:15', '2026-02-17 19:42:15', 0.00, 40.00, '2026-02-17 19:42:15'),
(42, 61, -1.00, 0.00, 1.00, NULL, NULL, '2026-02-17 19:59:38', '2026-02-17 19:59:38', 0.00, 1.00, '2026-02-17 19:59:38');

-- --------------------------------------------------------

--
-- Estrutura para tabela `sessoes`
--

CREATE TABLE `sessoes` (
  `id` int(10) UNSIGNED NOT NULL,
  `usuario_id` int(10) UNSIGNED NOT NULL,
  `token` varchar(255) NOT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `expira_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `sessoes`
--

INSERT INTO `sessoes` (`id`, `usuario_id`, `token`, `ip_address`, `user_agent`, `expira_em`, `criado_em`) VALUES
(1, 3, 'b0251107c1f26b73733e227d23718a56f620ee236ace44dd73d0fde3e1770003', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-20 23:26:04', '2026-01-20 20:26:04'),
(2, 3, '3ecfb626ead4e435854eee589a3432edb4ea91b818f1e8075f827c5be54b3af2', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-20 23:36:54', '2026-01-20 20:36:54'),
(3, 3, 'bf3f4c3fbf60fe0f774e87f3da981a1918cd5a788bc30c9f78195e21f2d40363', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-21 00:16:00', '2026-01-20 21:16:00'),
(4, 3, '15c01cd96de9dff8fbc879b8ebae928ad52496287b5ca3529ab1e1c71286f547', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-21 00:16:10', '2026-01-20 21:16:10'),
(5, 3, '78828724af6d88e9f6f4ee08cd292b4e5df8835d36318b1491bb421c2a0dd2ab', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 01:44:18', '2026-01-20 22:44:18'),
(6, 3, '6606bb06f84bd2dac0d39f6f28b46378352dfcf8d77c89815e005e21f007c86d', '185.153.176.70', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 01:44:46', '2026-01-20 22:44:46'),
(7, 8, 'aba19088534f4ca733272b48b5b84ef4d1b215d57c52211df457e983f34d5eb0', '193.19.205.188', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 03:06:43', '2026-01-21 00:06:43'),
(8, 8, 'aa6e08a01e1065318a393c735f989e0780d90a520067c80030b6190f68e81639', '193.19.205.188', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 03:07:15', '2026-01-21 00:07:15'),
(9, 3, 'a2192c9e73bc8976eab9d2473ec48851fc6b62d9f8e09c3075670ce14f359bba', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-21 03:10:19', '2026-01-21 00:10:19'),
(10, 3, '3510b1345914cfa12db2a2c11cb8b07aea939f1d7ff8390f47443daa10a0d6f1', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-21 03:26:56', '2026-01-21 00:26:56'),
(11, 3, '2b7c4ef469d334d933915199318ddbaf9a04d7725cf71f8443568323c504d436', '34.44.208.214', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', '2026-01-21 04:06:49', '2026-01-21 01:06:49'),
(12, 3, '3e48acea838afe81760fb2a16742002163d9a30d65d68c4b588f5af5f05bfa1b', '34.44.208.214', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', '2026-01-21 04:07:06', '2026-01-21 01:07:06'),
(13, 3, 'f370cac5a4f0df26827076a724dccf382a5db00ae790482aa1dc0bc36f83b58d', '2804:d57:4e5d:1600:4a3b:fb0:8011:2d54', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-21 04:11:09', '2026-01-21 01:11:09'),
(14, 3, '58b58e4f8ee04f236161b1630cbf7d3f64daa82180b18efdc273b2b168727b7c', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 18:23:31', '2026-01-21 15:23:31'),
(15, 3, '4566caa0628dcee0ad47bf818ee2a802031215c34ad951f26fae76352671e512', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 18:30:40', '2026-01-21 15:30:40'),
(16, 3, 'c57edc4c0fde1c77245ae8ad7e6a1f01371f2f150bd71403bfba13796d86f6da', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-21 22:36:07', '2026-01-21 19:36:07'),
(17, 3, '8abb11c8c60cd55f5cae17df27537fd57f004bdb5ca5519afebd4323c890645b', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-22 02:31:38', '2026-01-21 21:25:16'),
(18, 3, '7ad3d2479aad972bc28caef95016de9887c86787dbd19fbb4f5cd6a4f8bb003c', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-22 03:24:05', '2026-01-22 00:24:05'),
(19, 3, '48f5afe3a9a117f03aaa7a46b5a94bc28215bb7a511a6026294140e3b6a4109f', '177.54.151.190', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', '2026-01-22 05:09:36', '2026-01-22 02:09:36'),
(20, 3, '81a54e76ab4db4abd46d7b0206254b8e3fd3ce50a72a895079eba0bfc6cc7a10', '2804:d57:4e5d:1600:b49:3945:8dda:660b', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-22 06:40:54', '2026-01-22 03:40:54'),
(21, 3, '35ee7f69e03a5eaec77f2dfe78fed1cc1a4b7dd1c87516841a348c484103ad74', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-22 15:43:07', '2026-01-22 12:43:07'),
(22, 3, '6aaced15e2d9624b21fb23f353495a439db864a6d394d6a5caddeb0de4d3148d', '2804:d57:4e5d:1600:4b20:df7c:e4a2:db8', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-22 17:05:21', '2026-01-22 14:05:21'),
(23, 3, 'ccd4efefbfa19dac30206a14160fb8710f0b1fb25ccd1296f139322dfcb43095', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-22 17:09:59', '2026-01-22 14:09:59'),
(24, 3, '18cd532a4f546af022fbbca59763c7198810906ee72753e2d0955c162af06b5d', '2804:1b2:6041:d60c:21c3:41bb:878a:d11a', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36', '2026-01-23 17:06:31', '2026-01-23 14:06:31'),
(25, 3, '0ab25f0a5cbcfc91682589e60141edf473f026efa13120a2a2a2b34de24e585a', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-26 17:50:21', '2026-01-26 14:50:21'),
(26, 3, 'df5bc89a558997c34716e1ff1f0d44db0214f19563c8ce1123e86b63149b7f30', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-26 17:50:46', '2026-01-26 14:50:46'),
(27, 3, 'f5a8578fb1018c2c8e9b49a8fd6afc3d3b08ce3bc1b5c5b14114fe8f01a7c23c', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-26 20:28:28', '2026-01-26 15:33:18'),
(28, 3, 'f97385007f395a8ea7a6afdac4d3386f9fdaaa007cf0bb9c9d364c75b0d057d8', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-26 18:58:03', '2026-01-26 15:58:03'),
(29, 3, 'aeea55a0c065c862cbece9e17b7ad972ab8e1f2a1616992106292272538f806e', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-26 23:25:03', '2026-01-26 20:25:03'),
(30, 3, '2305fcbe3768ec18f8d133a9ae1c53a302159ee9c3f0db86efac72404103436a', '2804:d57:4e5d:1600:73df:8618:6076:9cf9', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-01-27 00:36:32', '2026-01-26 21:36:32'),
(31, 3, '38c74ed9f15a857901c7fe18c18d0bfb20d318db087722f231df539b1749786d', '136.115.239.53', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', '2026-01-27 00:37:37', '2026-01-26 21:37:37'),
(32, 3, '864d93bcd2a2e8e4823003151f282a97f6a8d5c5356b4ff25cf36a2f0e72661c', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-26 23:43:38', '2026-01-26 21:43:38'),
(33, 3, '51e56d45c8cd884ae40542fcb247ec63fd114e1fbc53133f63869e54a07b318a', '189.1.168.183', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-28 01:22:17', '2026-01-27 23:22:17'),
(34, 3, 'd9b530cc8e1cc7eab6901a697f0928905904dbb1994edeaa23747611b4550bfd', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-30 02:40:38', '2026-01-30 00:40:38'),
(35, 3, '348b1fe714e56e0a69fa43dc09e521ae60c74d74d2e040606637e13e2b61b7f3', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-30 02:40:42', '2026-01-30 00:40:42'),
(36, 3, 'eef6c708f4511904972f7b328b09f18ed3d6862169ff2d09a1e1675f673113de', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-30 16:12:30', '2026-01-30 14:12:30'),
(37, 3, 'c969ede4df4a2f2a33ed214fdde54b794d30c58e773b5f8470d8a35b31acbbb9', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-31 00:47:27', '2026-01-30 22:47:27'),
(38, 3, '8e155193ef9aa6cbe9ea5ff2a14019fb3dcb249126898d899f90ab7a5f4f7a0e', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-31 00:47:31', '2026-01-30 22:47:31'),
(39, 3, '1470ad17a4dcac2ae5ff81dcba3456e316506dfd83d2aa620934017f3b471faa', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-01-31 01:38:29', '2026-01-30 23:38:29'),
(40, 3, 'b615a8d5527b2633743f077c0041ed7fe318363aaa0b54fd078d5e82e7e6c9df', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-03 23:10:42', '2026-02-03 21:10:42'),
(41, 3, '1dddec3829f626ce99789810aa095c721a9b9c62f0c89b26c54bec2a449e33ca', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-04 01:21:58', '2026-02-03 23:21:58'),
(42, 3, '355c808c93e16fff54f01be447d328ce2c22cefb537271910373246d8d222c76', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-09 21:37:26', '2026-02-09 19:37:26'),
(43, 3, 'c5b465fdcf52cbb848c03adbfb521e3d25f950cdbaa79a8123f1217582cbc567', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-09 21:37:29', '2026-02-09 19:37:29'),
(44, 3, '3520398932aca740b08bf893a5930edcbd9ae89d1bea1b2b47fd339ca2d9b072', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-09 23:12:56', '2026-02-09 21:12:56'),
(45, 3, '4a924ba0020cc0bd762c8f56ba5c74d5f07136ec132e7ac8335c8d33564dc932', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-09 23:13:04', '2026-02-09 21:13:04'),
(47, 3, '377f84093c8db0ef26a105691aa88e0589a58f780bbac658659359f905f7f9c4', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-10 00:52:36', '2026-02-09 22:52:36'),
(48, 3, '6e0c4bd4c8aeae8eb318f96690c538533805d1f1ab80766439bd784fc1cefde8', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-10 00:53:04', '2026-02-09 22:53:04'),
(49, 3, 'a41186b038421b31a50e5102e54fe90e1de350a249fdff9622f7b36759371a18', '34.31.97.194', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36', '2026-02-10 00:53:49', '2026-02-09 22:53:49'),
(50, 3, '28976a08e6cfaaafe77518b233781dcab896beb5254516d8a594278ff9d3aea5', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-10 02:08:25', '2026-02-10 00:08:25'),
(51, 3, 'c041508d6b6fb7213cd44a0e6d24c1e4d298660f47f671a3bba6a43f3c95f799', '34.29.148.2', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36', '2026-02-10 15:06:10', '2026-02-10 13:06:10'),
(52, 3, '02f7f871b020805ca23d35aeb8dc1281e1374d2117c7cfdcd8b328ae77ad7616', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-10 15:17:05', '2026-02-10 13:17:05'),
(53, 8, '85944d4bf4f207ec60f74195f7c1b787ba70ce1037e09911c47dc72ac8ea3128', '2804:d57:4e5d:1600:8528:75bc:6339:50d8', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-10 17:19:07', '2026-02-10 15:19:07'),
(54, 3, '407be91dcac204c1bc32df33ff552d9f351b68fe04b227dafa2f7ddf5e8fc762', '2804:d57:4e5d:1600:8528:75bc:6339:50d8', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-10 17:19:49', '2026-02-10 15:19:49'),
(55, 8, '4a933e5620d3aa19c0e403d07bdf3b997e210d86806c218ce7714d27e228098e', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 01:14:01', '2026-02-10 23:14:01'),
(56, 8, '5d80bff5fe04fb35673ecfd68196fd13344e3050f0402d8bcac3414cd879b07f', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 01:14:12', '2026-02-10 23:14:12'),
(57, 8, '298116d86c5373daacf33a92bdc38051974b16b5eef115ff2982a1295760d456', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 01:33:05', '2026-02-10 23:33:05'),
(58, 8, '6e53c7c252262ad8f06eb0f9a6cb06a49fc89872d68075532552f8f35b79c11e', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 01:33:23', '2026-02-10 23:33:23'),
(59, 3, '42d0f3fff3419aac5d8cd74c81a2535dc7e9a3eff4439dcdab9c4468dfe4fa2b', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 02:38:49', '2026-02-11 00:38:49'),
(61, 3, 'a70b7ce03ee04a99181db3da968468a124db6793dfe4cd51797c2e8161048c66', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 04:15:10', '2026-02-11 02:15:10'),
(62, 3, 'f232b38bfb39629316e69e735a79bdbd1abd8206af7f2507b6a32226ecef9109', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 04:42:44', '2026-02-11 02:42:44'),
(63, 3, '735a028b8e99b05b42d67975eb1ed629e5a3b18da301d5085d2098c6132509f8', '2804:d57:4e5d:1600:6aee:8040:43c0:4722', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-11 05:02:06', '2026-02-11 03:02:06'),
(64, 3, 'fec0d4abdb1a4c3ff97680554bbf848ea66a75270877c6729ca5831464f059c1', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 05:32:00', '2026-02-11 03:32:00'),
(65, 3, '6289e6c29b1168eb60a7e61ea8c7a087e7bbcc466820cd4c9b148ec76a3f8e9d', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 16:01:51', '2026-02-11 12:02:55'),
(66, 3, 'b73f87aa121c568ab79187905cd8cedefb359acbfbe57d1d1e3ce37b0d44566f', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 18:50:55', '2026-02-11 16:50:55'),
(67, 3, '0ce7644b86ff546428a1097bc670167a32626d5d3f02fe086d7dc514c730036c', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-11 19:36:41', '2026-02-11 17:36:41'),
(68, 3, 'b5a1bb1e35b91e677462e5d11975e657d4b5b919195f24fd936c72c9024a0106', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 01:12:18', '2026-02-11 23:12:18'),
(69, 3, '1813cfd597479191db72af7e9f5f47465130a34fad7dba6eab5804d8d1eb05b4', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 01:26:00', '2026-02-11 23:26:00'),
(71, 3, '5707a669054cf27657583b3460f0d8eacf56fbbe0cfe4beb0c7e285ce580d813', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 14:00:58', '2026-02-12 12:00:58'),
(72, 3, '80945c03594c3092acb209e27b1e77f6be7b61b9e2429a175a1578c35ec7e228', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 15:39:49', '2026-02-12 13:39:49'),
(73, 3, 'ed01d6be425eb91cd3a843bf0548e4480f328c30b5290503c0dbbc354fcd7ecc', '2804:d57:4e5d:1600:33f1:6c2b:f0f3:491b', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-12 16:08:35', '2026-02-12 14:08:35'),
(74, 3, 'fe502a1ec68b596758419d9b44bfa65c11f0445238858c4fbb00f3522ce6c057', '177.2.10.49', 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36 Edg/144.0.0.0', '2026-02-12 17:29:48', '2026-02-12 15:29:48'),
(75, 3, '5cb6ee171d80c637771982a6feba0b93d70e920e0a87c7c8a5dacf98d99fa1f3', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 18:45:04', '2026-02-12 16:45:04'),
(76, 3, '9c683a94c32583fb939c8d441773878db6c810b9a25414d275a7f0954086c218', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 20:34:15', '2026-02-12 18:34:15'),
(77, 3, 'e7cb7ce21132d9d6bfa161ddebd86605b46a4a0d8f16d73c3ddceb3c15bce2b1', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-12 23:37:16', '2026-02-12 21:37:16'),
(78, 3, '77cf1dff586a0628e07034ef0874cda885e834c9a903d7747939114b9e56cf5c', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-13 01:24:11', '2026-02-12 23:24:11'),
(79, 3, '4b68e0f00931d6f7a49e70f173b9976dd9611ca8bbfe861eedab6b86bdda328f', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-13 04:22:42', '2026-02-13 02:22:42'),
(80, 3, '53b25fb808d76ce7a59fa1ea4392c6c73d409863f66c2512df4fcc634dcad93c', '2804:d57:4e5d:1600:535a:6b67:6e63:c2eb', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-13 04:56:59', '2026-02-13 02:56:59'),
(81, 3, 'ec6fa2b27c58edee23e240e71df1acbc43168533368de72fe69da67a9ca12b94', '35.226.182.28', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36; Manus-User/1.0', '2026-02-13 14:57:43', '2026-02-13 12:57:43'),
(82, 3, 'f4edf41b2e9d0b751848794b44702818f46b7244770d618191726aad23504ce4', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-13 15:15:25', '2026-02-13 13:15:25'),
(83, 3, 'befb596026a84bcea61c37e2fe1d5f944feee2fb4f5dad0be3595e4a2ad9b64e', '2804:d57:4e5d:1600:7136:41b6:9cc8:7f2b', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-13 17:18:43', '2026-02-13 15:18:43'),
(84, 3, '86b86fd96e8ee92ab9a93c49704895d3704304a933f0923f1223abc501c73efa', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-13 19:03:59', '2026-02-13 17:03:59'),
(85, 3, 'f106cca636a1fac198dd497170ee465c53e9878cdd78bf5a85eb428a72d3714d', '2804:d57:4e5d:1600:b7b7:cc12:457b:77c5', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-13 19:18:22', '2026-02-13 17:18:22'),
(86, 3, '5afe4d4fdc2dc1a7c1f93daa3b95ddd19e40795c4d0bcf014d7d892cb9aeb7be', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-13 19:41:37', '2026-02-13 17:41:37'),
(87, 3, '1600eefee23484df7b3fa61a023b123df8a5c665b387a35a5b1c826707f66df5', '2804:d57:4e5d:1600:b7b7:cc12:457b:77c5', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-13 20:06:37', '2026-02-13 18:06:37'),
(88, 3, '78f155b2e6d605006e4e948311bc72b41605aa3bace237cd9ccd5db2a239a48e', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-13 21:04:22', '2026-02-13 19:04:22'),
(89, 3, '2a6a0e93452c2d17051f49bb45bce1efe9c70136e9d0993cca0c38e1541d2ab6', '2804:d57:4e5d:1600:b7b7:cc12:457b:77c5', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', '2026-02-13 21:06:48', '2026-02-13 19:06:48'),
(90, 3, '3e86e4575c14f14c030744fce838420fcca907e54adf786f48b2fda907bbdf37', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 01:08:58', '2026-02-13 21:10:11'),
(91, 3, 'b5e7ff7b46cf14f88c2b62bcb1161900f9fea132f26442f0ddb7b471843f6763', '2804:d57:4e5d:1600:7d03:8b33:f92:92d4', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', '2026-02-14 03:11:42', '2026-02-14 01:11:42'),
(92, 3, 'e3b74b3be6e68cb87ecb897808ffe9dfd125c2a5aba8c0422db64d6e9dcf227f', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 14:58:29', '2026-02-14 12:58:29'),
(93, 3, 'cb0e68eef8f4af819496a8fd29b68ccb2a338507773ed22ec3f334543c42dfb9', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 15:46:37', '2026-02-14 13:46:37'),
(94, 3, 'a422df76f1efcc4242bb8eb9c1c2883a151c32ff9d290e40c0e5bb2038d0baf4', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 16:29:17', '2026-02-14 14:29:17'),
(95, 3, '41aa645de656027bbb3f42689a2e973518aeb27b1e9d4c1342aa37d907e7f552', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 17:43:45', '2026-02-14 15:43:45'),
(96, 3, '82658e0ea6e8f006a5104d9a53026c3a3b31184db37325e4c2be526f4c744c40', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 19:45:13', '2026-02-14 17:45:13'),
(97, 3, '3dfdbc44bebbe8443310639b4bd31943f6c13f43723635c1d47ab95e8d3cca91', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-14 23:53:27', '2026-02-14 21:53:27'),
(98, 3, '344b59e081add6116983505337c973d41a4f335d85d5b775e24f0f37b6b5be4a', '2804:18:1916:21:84e:8d5b:52e2:a5dc', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', '2026-02-15 16:54:10', '2026-02-15 14:54:10'),
(99, 3, 'c4afaa31c0352dd89227ec2fae0002eb2c3f069c4ada04ad58513be7ead458c1', '2804:d57:4e5d:1600:f4bc:f1d5:68c1:3e8d', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36', '2026-02-16 03:05:57', '2026-02-16 01:05:57'),
(101, 3, 'e46d300c53e79f7c1881a9a8f716a14e42bbff931ca979acc2fbade0eee66b7f', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-16 19:55:45', '2026-02-16 17:55:45'),
(102, 3, '69305c9b7bb1c5fa87d9bbd71aabe9766eb2b9d3a04f9de2a2ee331148893e69', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-16 21:32:56', '2026-02-16 19:32:56'),
(103, 3, '7e3ac462837de3c9da90524eb0f457e6d6dbe7b3caa5498fb4777a717c4f2a89', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-16 22:14:20', '2026-02-16 20:14:20'),
(105, 3, '28d88e47de4c1bd18c657c794d4f6a0c6b57c045ed38d68c47b584aa88f8e40c', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-17 04:58:07', '2026-02-16 23:07:57'),
(106, 3, '7ed7a8c9b1b5775b9995d369977ded787d227c25cc167edbc74e403e10600dfc', '2804:18:925:5130:8085:e866:3f10:717c', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', '2026-02-17 05:08:54', '2026-02-17 03:08:54'),
(107, 3, 'e0e944cc47f5088bcbe3309dbe5f3fe7b77a11df58448273481a2352753ce194', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-17 14:42:18', '2026-02-17 12:42:18'),
(108, 3, 'a240e48f7f5d70c8fc0f0789d51be2440d3d6f35e516434477c9337e3dc2f241', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-17 16:01:34', '2026-02-17 14:01:34'),
(109, 3, '0a703b1de041bdcf6bab00bd42f7c9dea660e52218a5bb884a8b5ec3c2d1a496', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-17 18:03:03', '2026-02-17 16:03:04'),
(112, 3, 'c7144809bc00d6913f41869e925b1df6524278046a43d61ad40049efb548ebcb', '2804:18:922:161c:8115:9655:2449:b7c5', 'Mozilla/5.0 (Linux; Android 16; SM-S916B Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/144.0.7559.132 Mobile Safari/537.36', '2026-02-17 23:22:41', '2026-02-17 21:22:41'),
(113, 3, '8b2099b7acecc51411a5854c2072382c16dbd4702208df7b2115002f58ece90d', '177.2.10.49', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', '2026-02-18 00:29:14', '2026-02-17 22:29:14'),
(114, 3, '546260feceb370d7a65d1ee46812d44fa746a07901fbae4ecfcd79bec521df2d', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-18 01:26:32', '2026-02-17 23:26:32'),
(115, 3, 'd260ac047c321886f33aeb46caf02320397deefb1512bc3ecb6c3375d0714c62', '177.2.10.49', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0', '2026-02-18 04:26:22', '2026-02-18 02:26:22');

-- --------------------------------------------------------

--
-- Estrutura para tabela `solicitacoes_cadastro`
--

CREATE TABLE `solicitacoes_cadastro` (
  `id` int(11) NOT NULL,
  `nome` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `whatsapp` varchar(20) NOT NULL,
  `senha_gerada` varchar(255) NOT NULL,
  `status` enum('pendente','aprovado','recusado') DEFAULT 'pendente',
  `aprovado_por` int(11) DEFAULT NULL,
  `criado_em` datetime NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` datetime DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `solicitacoes_cadastro`
--

INSERT INTO `solicitacoes_cadastro` (`id`, `nome`, `email`, `whatsapp`, `senha_gerada`, `status`, `aprovado_por`, `criado_em`, `atualizado_em`) VALUES
(1, 'teste22', 'teste22@gmaio.com', '47992012997', '$2y$10$eRErj0lrNhZQm4dkwz.jBOa5sFHMperP/R.RCdy9ohWZcgb24gNbu', 'aprovado', 3, '2026-02-11 20:11:12', '2026-02-12 11:01:43'),
(2, 'Teste222', 'jsjw@gmail.com', '47991063914', '$2y$10$3qpNCSJh2W3CNhsgaFcQsOSJIaVEKiC4xcSR6EMsBXQL/KSm//sf.', 'aprovado', 3, '2026-02-13 14:13:19', '2026-02-13 14:20:04');

-- --------------------------------------------------------

--
-- Estrutura para tabela `templates_mensagem`
--

CREATE TABLE `templates_mensagem` (
  `id` int(11) NOT NULL,
  `usuario_id` int(11) DEFAULT NULL,
  `nome` varchar(100) NOT NULL,
  `descricao` text DEFAULT NULL,
  `mensagem` text NOT NULL,
  `variaveis` text DEFAULT NULL COMMENT 'JSON: ["nome","telefone","vencimento"]',
  `categoria` enum('cobranca','boas_vindas','lembrete','promocao','atendimento','outro') DEFAULT 'outro',
  `tipo_mensagem` enum('texto','imagem','documento') DEFAULT 'texto',
  `midia_url` varchar(500) DEFAULT NULL,
  `ativo` tinyint(1) DEFAULT 1,
  `uso_count` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `templates_mensagem`
--

INSERT INTO `templates_mensagem` (`id`, `usuario_id`, `nome`, `descricao`, `mensagem`, `variaveis`, `categoria`, `tipo_mensagem`, `midia_url`, `ativo`, `uso_count`, `criado_em`, `atualizado_em`) VALUES
(1, NULL, 'Cobrança Padrão', 'Mensagem de cobrança simples', 'Olá {nome}! 👋\n\nLembramos que sua fatura no valor de *R$ {valor}* vence em {vencimento}.\n\nPague agora: {link}\n\nQualquer dúvida, estamos à disposição!', '[\"nome\",\"valor\",\"vencimento\",\"link\"]', 'cobranca', 'texto', NULL, 1, 0, '2026-01-22 13:37:27', '2026-01-22 13:37:27'),
(2, NULL, 'Boas-vindas', 'Mensagem de boas-vindas para novos clientes', 'Seja bem-vindo(a), {nome}! 🎉\n\nÉ um prazer tê-lo(a) conosco!\n\nEstamos à disposição pelo WhatsApp para qualquer dúvida.\n\nAtenciosamente,\nEquipe', '[\"nome\"]', 'boas_vindas', 'texto', NULL, 1, 0, '2026-01-22 13:37:27', '2026-01-22 13:37:27'),
(3, NULL, 'Lembrete Vencimento', 'Aviso de vencimento próximo', 'Oi {nome}! 📅\n\nSua fatura vence em {dias} dias ({vencimento}).\n\nValor: R$ {valor}\n\nEvite multas, pague em dia! 😊', '[\"nome\",\"dias\",\"vencimento\",\"valor\"]', 'lembrete', 'texto', NULL, 1, 0, '2026-01-22 13:37:27', '2026-01-22 13:37:27'),
(4, NULL, 'Confirmação Pagamento', 'Confirmar recebimento de pagamento', 'Olá {nome}! ✅\n\nPagamento confirmado!\n\nValor: R$ {valor}\nData: {data}\n\nObrigado pela preferência! 🙏', '[\"nome\",\"valor\",\"data\"]', 'atendimento', 'texto', NULL, 1, 0, '2026-01-22 13:37:27', '2026-01-22 13:37:27');

-- --------------------------------------------------------

--
-- Estrutura para tabela `templates_mensagens`
--

CREATE TABLE `templates_mensagens` (
  `id` int(11) NOT NULL,
  `nome` varchar(100) NOT NULL,
  `conteudo` text NOT NULL,
  `gatilho` varchar(50) DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `templates_mensagens`
--

INSERT INTO `templates_mensagens` (`id`, `nome`, `conteudo`, `gatilho`, `criado_em`) VALUES
(1, 'Cobrança Vencimento', 'Olá {nome}, sua fatura de R$ {valor} vence hoje ({vencimento}). Por favor, realize o pagamento para manter seu serviço ativo.', 'D0', '2026-01-26 16:57:11');

-- --------------------------------------------------------

--
-- Estrutura para tabela `transacoes`
--

CREATE TABLE `transacoes` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `tipo` varchar(50) NOT NULL,
  `valor` decimal(10,2) NOT NULL,
  `saldo_anterior` decimal(10,2) DEFAULT NULL,
  `saldo_atual` decimal(10,2) DEFAULT NULL,
  `descricao` text DEFAULT NULL,
  `referencia` varchar(100) DEFAULT NULL,
  `status` varchar(50) DEFAULT 'concluida',
  `criado_por` int(11) DEFAULT NULL,
  `criado_em` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='Registra todas as movimentações financeiras dos clientes';

--
-- Despejando dados para a tabela `transacoes`
--

INSERT INTO `transacoes` (`id`, `cliente_id`, `tipo`, `valor`, `saldo_anterior`, `saldo_atual`, `descricao`, `referencia`, `status`, `criado_por`, `criado_em`) VALUES
(3, 3, 'cobranca_inicial', 100.00, NULL, NULL, 'Cobrança inicial - carol', NULL, 'concluida', NULL, '2026-01-26 13:54:19'),
(4, 16, 'cobranca_inicial', 40.00, NULL, NULL, 'Cobrança inicial - Rodrigo', NULL, 'concluida', NULL, '2026-02-12 20:27:14'),
(5, 37, 'cobranca_inicial', 40.00, NULL, NULL, 'Cobrança inicial - Iago', NULL, 'concluida', NULL, '2026-02-13 14:40:51'),
(6, 39, 'cobranca_inicial', 40.00, NULL, NULL, 'Cobrança inicial - Erick Souza', NULL, 'concluida', NULL, '2026-02-13 14:58:48'),
(7, 40, 'cobranca_inicial', 30.00, NULL, NULL, 'Cobrança inicial - vivi tia gaspar', NULL, 'concluida', NULL, '2026-02-13 22:10:14'),
(8, 41, 'cobranca_inicial', 40.00, NULL, NULL, 'Cobrança inicial - Cida', NULL, 'concluida', NULL, '2026-02-13 22:19:05'),
(9, 42, 'cobranca_inicial', 60.00, NULL, NULL, 'Cobrança inicial - Elvis', NULL, 'concluida', NULL, '2026-02-13 22:31:34'),
(10, 43, 'cobranca_inicial', 100.00, NULL, NULL, 'Cobrança inicial - maisa', NULL, 'concluida', NULL, '2026-02-14 15:14:04'),
(11, 44, 'cobranca_inicial', 100.00, NULL, NULL, 'Cobrança inicial - alaide lali', NULL, 'concluida', NULL, '2026-02-14 17:55:35'),
(12, 46, 'cobranca_inicial', 25.00, NULL, NULL, 'Cobrança inicial - Paulo Itj vizinho', NULL, 'concluida', NULL, '2026-02-15 22:06:46'),
(13, 47, 'cobranca_inicial', 40.00, NULL, NULL, 'Cobrança inicial - livia', NULL, 'concluida', NULL, '2026-02-16 14:58:21'),
(14, 48, 'cobranca_inicial', 35.00, NULL, NULL, 'Cobrança inicial - teste lucros reais', NULL, 'concluida', NULL, '2026-02-16 22:14:33'),
(15, 3, 'pagamento', 100.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(16, 16, 'pagamento', 40.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(17, 37, 'pagamento', 40.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(18, 39, 'pagamento', 40.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(19, 40, 'pagamento', 30.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(20, 41, 'pagamento', 40.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(21, 42, 'pagamento', 60.00, NULL, NULL, 'Pagamento referente à mensalidade', NULL, 'concluida', NULL, '2026-02-16 23:52:03'),
(22, 49, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Dry / Ios VIvo - Vencimento: 18/02/2026', NULL, 'concluida', 3, '2026-02-17 16:34:12'),
(23, 50, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Clovis / Ios Vivo - Vencimento: 07/03/2026', NULL, 'concluida', 3, '2026-02-17 16:35:23'),
(24, 51, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Gabriel / Vivo ios - Vencimento: 20/02/2026', NULL, 'concluida', 3, '2026-02-17 16:42:35'),
(25, 52, 'cobranca_inicial', 40.00, 0.00, -40.00, 'Cobrança inicial - Rodrigo - Vencimento: 18/03/2026', NULL, 'concluida', 3, '2026-02-17 16:46:30'),
(26, 53, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Kev / IOS VIVO - Vencimento: 17/02/2026', NULL, 'concluida', 3, '2026-02-17 16:48:15'),
(27, 54, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Leandro / VIVO IOS - Vencimento: 08/03/2026', NULL, 'concluida', 3, '2026-02-17 16:50:26'),
(28, 55, 'cobranca_inicial', 60.00, 0.00, -60.00, 'Cobrança inicial - Pablo / Combo Tv + ios - Vencimento: 16/03/2026', NULL, 'concluida', 3, '2026-02-17 16:55:15'),
(29, 56, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Diego Paiakan / ViVo IOS - Vencimento: 17/03/2026', NULL, 'concluida', 3, '2026-02-17 16:56:53'),
(30, 57, 'cobranca_inicial', 35.00, 0.00, -35.00, 'Cobrança inicial - Josue / VIVO IOS - Vencimento: 21/02/2026', NULL, 'concluida', 3, '2026-02-17 16:58:17'),
(31, 58, 'cobranca_inicial', 30.00, 0.00, -30.00, 'Cobrança inicial - Solan / IOS VIVO - Vencimento: 10/02/2026', NULL, 'concluida', 3, '2026-02-17 17:01:05'),
(32, 59, 'cobranca_inicial', 10.00, 0.00, -10.00, 'Cobrança inicial - carol - Vencimento: 17/03/2026', NULL, 'concluida', 3, '2026-02-17 18:52:40'),
(33, 60, 'cobranca_inicial', 40.00, 0.00, -40.00, 'Cobrança inicial - Nando5498 - Vencimento: 19/02/2026', NULL, 'concluida', 3, '2026-02-17 19:42:15'),
(34, 61, 'cobranca_inicial', 1.00, 0.00, -1.00, 'Cobrança inicial - johnny - Vencimento: 17/02/2026', NULL, 'concluida', 3, '2026-02-17 19:59:38'),
(35, 50, 'cobranca', 35.00, -35.00, -70.00, 'Renovação de assinatura - Clovis / Ios Vivo - Novo vencimento: 19/03/2026', NULL, 'concluida', 3, '2026-02-17 20:28:16');

--
-- Acionadores `transacoes`
--
DELIMITER $$
CREATE TRIGGER `trg_after_delete_transacao` AFTER DELETE ON `transacoes` FOR EACH ROW BEGIN
    CALL sp_recalcular_saldo_cliente(OLD.cliente_id);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_after_insert_transacao` AFTER INSERT ON `transacoes` FOR EACH ROW BEGIN
    CALL sp_recalcular_saldo_cliente(NEW.cliente_id);
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `trg_after_update_transacao` AFTER UPDATE ON `transacoes` FOR EACH ROW BEGIN
    CALL sp_recalcular_saldo_cliente(NEW.cliente_id);
END
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Estrutura para tabela `transacoes_creditos`
--

CREATE TABLE `transacoes_creditos` (
  `id` int(10) UNSIGNED NOT NULL,
  `usuario_id` int(10) UNSIGNED NOT NULL,
  `tipo` enum('compra','venda','transferencia','bonus','consumo') NOT NULL,
  `quantidade` decimal(10,2) NOT NULL,
  `valor_unitario` decimal(10,2) DEFAULT NULL,
  `valor_total` decimal(10,2) DEFAULT NULL,
  `saldo_anterior` decimal(10,2) NOT NULL,
  `saldo_atual` decimal(10,2) NOT NULL,
  `descricao` varchar(255) DEFAULT NULL,
  `referencia` varchar(100) DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `transacoes_pix`
--

CREATE TABLE `transacoes_pix` (
  `id` int(11) NOT NULL,
  `chave_pix_id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `valor` decimal(10,2) NOT NULL,
  `descricao` varchar(255) DEFAULT NULL,
  `data_transacao` datetime NOT NULL,
  `mes_referencia` varchar(7) NOT NULL,
  `criada_em` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `usuarios`
--

CREATE TABLE `usuarios` (
  `id` int(10) UNSIGNED NOT NULL,
  `nome` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `senha` varchar(255) NOT NULL,
  `tipo` enum('admin','cliente','revendedor') DEFAULT 'cliente',
  `status` enum('ativo','inativo','bloqueado') DEFAULT 'ativo',
  `telefone` varchar(20) DEFAULT NULL,
  `avatar` varchar(255) DEFAULT NULL,
  `ultimo_login` timestamp NULL DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `usuarios`
--

INSERT INTO `usuarios` (`id`, `nome`, `email`, `senha`, `tipo`, `status`, `telefone`, `avatar`, `ultimo_login`, `criado_em`, `atualizado_em`) VALUES
(1, 'Administrador', 'admin@eugestor.com', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'admin', 'ativo', NULL, NULL, NULL, '2026-01-19 22:07:54', '2026-01-19 22:07:54'),
(2, 'Cliente Teste', 'cliente@teste.com', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'cliente', 'ativo', NULL, NULL, NULL, '2026-01-19 22:07:54', '2026-01-19 22:07:54'),
(3, 'Administrador do Sistema', 'admin@sistema.com', '$2y$10$KBZroRb4chFsLdbO6ttH2OFd9A4VYtUstbK7geNk.KAP/sDI5.l4C', 'admin', 'ativo', NULL, NULL, '2026-02-18 02:26:22', '2026-01-20 19:57:57', '2026-02-18 02:26:22'),
(4, 'Revendedor Teste', 'revenda@sistema.com', '$2y$10$FtwyLZdAVFfRLjXiZcmfOOLS9bqjNVDJBkPYLakwP9.TPg5R8GcZa', 'revendedor', 'ativo', NULL, NULL, NULL, '2026-01-20 19:57:57', '2026-01-20 19:57:57'),
(5, 'Cliente Teste', 'cliente@sistema.com', '$2y$10$d3MTXHLC0cZugKesVK5OEeJGtOJaDsZKXH2w3GZ2fHEiygpexSERu', 'cliente', 'ativo', NULL, NULL, NULL, '2026-01-20 19:57:57', '2026-01-20 19:57:57'),
(8, 'kek souza', 'kek@gestor.com', '$2y$10$CmPniFpN49aFrEjn6/VWu.TB19AT8AgkCybRMxAHZfvXrBSuawFVG', 'revendedor', 'ativo', '4792602871', NULL, '2026-02-10 23:33:23', '2026-01-20 21:39:50', '2026-02-10 23:33:23'),
(27, 'teste22', 'teste22@gmaio.com', '$2y$10$eRErj0lrNhZQm4dkwz.jBOa5sFHMperP/R.RCdy9ohWZcgb24gNbu', 'cliente', 'ativo', NULL, NULL, NULL, '2026-02-12 14:01:43', '2026-02-12 14:01:43'),
(28, 'Teste222', 'jsjw@gmail.com', '$2y$10$3qpNCSJh2W3CNhsgaFcQsOSJIaVEKiC4xcSR6EMsBXQL/KSm//sf.', 'cliente', 'ativo', NULL, NULL, NULL, '2026-02-13 17:20:04', '2026-02-13 17:20:04');

-- --------------------------------------------------------

--
-- Estrutura stand-in para view `vw_dashboard_admin`
-- (Veja abaixo para a visão atual)
--
CREATE TABLE `vw_dashboard_admin` (
`total_clientes` bigint(21)
,`clientes_atrasados` bigint(21)
,`clientes_vencendo` bigint(21)
,`clientes_bloqueados` bigint(21)
,`receita_mensal_prevista` decimal(32,2)
,`saldo_total` decimal(32,2)
,`recebido_hoje` decimal(32,2)
,`recebido_semana` decimal(32,2)
,`recebido_mes` decimal(32,2)
,`recebido_ano` decimal(32,2)
,`total_pago_historico` decimal(32,2)
,`total_cobrado_historico` decimal(32,2)
);

-- --------------------------------------------------------

--
-- Estrutura stand-in para view `vw_devedores`
-- (Veja abaixo para a visão atual)
--
CREATE TABLE `vw_devedores` (
`id` int(10) unsigned
,`empresa` varchar(100)
,`valor_assinatura` decimal(10,2)
,`saldo_atual` decimal(10,2)
,`total_cobrado` decimal(10,2)
,`total_pago` decimal(10,2)
,`dias_atraso` int(8)
,`situacao` varchar(17)
);

-- --------------------------------------------------------

--
-- Estrutura stand-in para view `vw_relatorio_financeiro`
-- (Veja abaixo para a visão atual)
--
CREATE TABLE `vw_relatorio_financeiro` (
`cliente_id` int(10) unsigned
,`empresa` varchar(100)
,`whatsapp` varchar(20)
,`valor_assinatura` decimal(10,2)
,`data_vencimento` date
,`tipo_plano` varchar(50)
,`dias_periodo` int(11)
,`status_pagamento` enum('em_dia','pendente','atrasado')
,`data_bloqueio` date
,`dias_ate_vencimento` int(8)
,`status_visual` varchar(9)
,`saldo_atual` decimal(10,2)
,`total_creditos` decimal(10,2)
,`total_debitos` decimal(10,2)
,`total_pago` decimal(10,2)
,`total_cobrado` decimal(10,2)
);

-- --------------------------------------------------------

--
-- Estrutura para tabela `webhook_logs`
--

CREATE TABLE `webhook_logs` (
  `id` int(11) NOT NULL,
  `instancia_id` int(11) DEFAULT NULL,
  `evento` varchar(50) NOT NULL,
  `payload` text NOT NULL,
  `processado` tinyint(1) DEFAULT 0,
  `data_recebimento` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_agendamentos`
--

CREATE TABLE `whatsapp_agendamentos` (
  `id` int(11) NOT NULL,
  `template_id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `destinatarios` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`destinatarios`)),
  `data_hora_envio` datetime NOT NULL,
  `status` enum('pendente','enviando','concluido','cancelado','erro') DEFAULT 'pendente',
  `total_destinatarios` int(11) DEFAULT 0,
  `enviados` int(11) DEFAULT 0,
  `erros` int(11) DEFAULT 0,
  `criado_por` int(11) DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `processado_em` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_bot_comandos`
--

CREATE TABLE `whatsapp_bot_comandos` (
  `id` int(11) NOT NULL,
  `comando` varchar(50) NOT NULL,
  `descricao` text DEFAULT NULL,
  `tipo_resposta` enum('dinamico','estatico','template') DEFAULT 'dinamico',
  `resposta_template` text DEFAULT NULL,
  `requer_autenticacao` tinyint(1) DEFAULT 1,
  `ativo` tinyint(1) DEFAULT 1,
  `total_usos` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `whatsapp_bot_comandos`
--

INSERT INTO `whatsapp_bot_comandos` (`id`, `comando`, `descricao`, `tipo_resposta`, `resposta_template`, `requer_autenticacao`, `ativo`, `total_usos`, `criado_em`) VALUES
(1, 'vencimento', 'Consultar data de vencimento', 'dinamico', NULL, 1, 1, 0, '2026-01-22 02:46:54'),
(2, 'saldo', 'Consultar saldo de créditos', 'dinamico', NULL, 1, 1, 0, '2026-01-22 02:46:54'),
(3, 'fatura', 'Consultar última fatura', 'dinamico', NULL, 1, 1, 0, '2026-01-22 02:46:54'),
(4, 'plano', 'Consultar plano atual', 'dinamico', NULL, 1, 1, 0, '2026-01-22 02:46:54'),
(5, 'suporte', 'Abrir ticket de suporte', 'dinamico', NULL, 0, 1, 0, '2026-01-22 02:46:54'),
(6, 'ajuda', 'Listar comandos disponíveis', 'estatico', NULL, 0, 1, 0, '2026-01-22 02:46:54'),
(7, 'pago', 'Confirmar pagamento', 'dinamico', NULL, 1, 1, 0, '2026-01-22 02:46:54'),
(8, 'status', 'Status da conta', 'dinamico', NULL, 1, 1, 0, '2026-01-22 02:46:54'),
(9, 'vencimento', 'Consultar data de vencimento', 'dinamico', NULL, 1, 1, 0, '2026-01-22 03:06:35'),
(10, 'saldo', 'Consultar saldo de créditos', 'dinamico', NULL, 1, 1, 0, '2026-01-22 03:06:35'),
(11, 'fatura', 'Consultar última fatura', 'dinamico', NULL, 1, 1, 0, '2026-01-22 03:06:35'),
(12, 'plano', 'Consultar plano atual', 'dinamico', NULL, 1, 1, 0, '2026-01-22 03:06:35'),
(13, 'suporte', 'Abrir ticket de suporte', 'dinamico', NULL, 0, 1, 0, '2026-01-22 03:06:35'),
(14, 'ajuda', 'Listar comandos disponíveis', 'estatico', NULL, 0, 1, 0, '2026-01-22 03:06:35'),
(15, 'pago', 'Confirmar pagamento', 'dinamico', NULL, 1, 1, 0, '2026-01-22 03:06:35'),
(16, 'status', 'Status da conta', 'dinamico', NULL, 1, 1, 0, '2026-01-22 03:06:35');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_bot_logs`
--

CREATE TABLE `whatsapp_bot_logs` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) DEFAULT NULL,
  `numero_whatsapp` varchar(20) NOT NULL,
  `comando` varchar(50) NOT NULL,
  `parametros` varchar(200) DEFAULT NULL,
  `resposta_enviada` text DEFAULT NULL,
  `sucesso` tinyint(1) DEFAULT 1,
  `erro_mensagem` text DEFAULT NULL,
  `executado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `whatsapp_bot_logs`
--

INSERT INTO `whatsapp_bot_logs` (`id`, `cliente_id`, `numero_whatsapp`, `comando`, `parametros`, `resposta_enviada`, `sucesso`, `erro_mensagem`, `executado_em`) VALUES
(1, NULL, '120363419983251565@g', 'mandou', '', '❌ Comando *\'mandou\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:50:19'),
(2, NULL, '120363419983251565@g', 'kkkkkkkkkkkkk', '', '❌ Comando *\'kkkkkkkkkkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:50:20'),
(3, NULL, '120363170942886188@n', 'eles', '', '❌ Comando *\'eles\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:51:14'),
(4, NULL, '120363344115636189@n', '✈️', '', '❌ Comando *\'✈️\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:57:12'),
(5, NULL, '120363344115636189@n', '✈️', '', '❌ Comando *\'✈️\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:57:45'),
(6, NULL, '120363344115636189@n', '✈️', '', '❌ Comando *\'✈️\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:58:04'),
(7, NULL, '120363344115636189@n', '✈️', '', '❌ Comando *\'✈️\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 20:58:29'),
(8, NULL, '120363422300985052@n', 'olha', '', '❌ Comando *\'olha\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:05:03'),
(9, NULL, '120363422300985052@n', 'sua', '', '❌ Comando *\'sua\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:05:19'),
(10, NULL, '120363160196658452@n', 'we', '', '❌ Comando *\'we\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:18:27'),
(11, NULL, '120363160196658452@n', 'we', '', '❌ Comando *\'we\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:33:59'),
(12, NULL, '120363170942886188@n', 'eles', '', '❌ Comando *\'eles\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:33:59'),
(13, NULL, '120363197724822747@g', 'usa', '', '❌ Comando *\'usa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:41:03'),
(14, NULL, '120363197724822747@g', 'http://aftv.news/2662327', '', '❌ Comando *\'http://aftv.news/2662327\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:41:03'),
(15, NULL, '168126578716679@lid', 'boa', '', '❌ Comando *\'boa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:45:55'),
(16, NULL, '120363422300985052@n', 'sua', '', '❌ Comando *\'sua\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:46:10'),
(17, NULL, '120363170942886188@n', 'eles', '', '❌ Comando *\'eles\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:46:10'),
(18, NULL, '120363160196658452@n', 'we', '', '❌ Comando *\'we\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:46:16'),
(19, NULL, '120363379710688232@n', 'the', '', '❌ Comando *\'the\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 21:58:09'),
(20, NULL, '168126578716679@lid', 'deu', '', '❌ Comando *\'deu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:08:08'),
(21, NULL, '120363162561068565@n', '🚨', '', '❌ Comando *\'🚨\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:29:06'),
(22, NULL, '120363418677168706@g', 'alguem', '', '❌ Comando *\'alguem\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:29:57'),
(23, NULL, '120363419983251565@g', 'tem', '', '❌ Comando *\'tem\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:35:09'),
(24, NULL, '120363170942886188@n', 'eles', '', '❌ Comando *\'eles\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:36:14'),
(25, NULL, '120363419983251565@g', 'https://vt.tiktok.com/zsa55bfgk/', '', '❌ Comando *\'https://vt.tiktok.com/zsa55bfgk/\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:38:51'),
(26, NULL, '120363419983251565@g', 'a', '', '❌ Comando *\'a\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:39:08'),
(27, NULL, 'status@broadcast', 'vá', '', '❌ Comando *\'vá\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:43:10'),
(28, NULL, '120363419983251565@g', 'rapaz', '', '❌ Comando *\'rapaz\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:49:11'),
(29, NULL, '120363419983251565@g', 'cadê', '', '❌ Comando *\'cadê\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:49:28'),
(30, NULL, '120363419983251565@g', 'stream', '', '❌ Comando *\'stream\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:49:40'),
(31, NULL, '120363419983251565@g', 'stream', '', '❌ Comando *\'stream\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:49:45'),
(32, NULL, '120363419983251565@g', 'cheio', '', '❌ Comando *\'cheio\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:49:53'),
(33, NULL, '120363419983251565@g', 'só', '', '❌ Comando *\'só\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:50:05'),
(34, NULL, '120363419983251565@g', 'sei', '', '❌ Comando *\'sei\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:50:12'),
(35, NULL, '120363419983251565@g', 'tipo', '', '❌ Comando *\'tipo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:50:19'),
(36, NULL, '120363419983251565@g', 'kkkkkk', '', '❌ Comando *\'kkkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:53:30'),
(37, NULL, '120363419983251565@g', 'oi?', '', '❌ Comando *\'oi?\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:53:53'),
(38, NULL, '120363419983251565@g', 'ei', '', '❌ Comando *\'ei\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:54:09'),
(39, NULL, '120363419983251565@g', 'quem', '', '❌ Comando *\'quem\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:54:34'),
(40, NULL, '120363419983251565@g', 'ouviu', '', '❌ Comando *\'ouviu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:54:42'),
(41, NULL, '120363419983251565@g', 'derrubou', '', '❌ Comando *\'derrubou\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:54:46'),
(42, NULL, '120363419983251565@g', 'sendo', '', '❌ Comando *\'sendo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:54:52'),
(43, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:55:00'),
(44, NULL, '120363419983251565@g', 'foi', '', '❌ Comando *\'foi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:55:10'),
(45, NULL, '120363419983251565@g', 'fala', '', '❌ Comando *\'fala\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:55:26'),
(46, NULL, '120363419983251565@g', 'que', '', '❌ Comando *\'que\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:55:33'),
(47, NULL, '120363419983251565@g', 'hj', '', '❌ Comando *\'hj\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:55:38'),
(48, NULL, '120363419983251565@g', 'dizendo', '', '❌ Comando *\'dizendo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:56:02'),
(49, NULL, '120363419983251565@g', 'marcelo', '', '❌ Comando *\'marcelo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:56:03'),
(50, NULL, '120363419983251565@g', 'tá', '', '❌ Comando *\'tá\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:56:21'),
(51, NULL, '120363419983251565@g', 'a', '', '❌ Comando *\'a\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:56:39'),
(52, NULL, '120363419983251565@g', '@56281603825886', '', '❌ Comando *\'@56281603825886\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:56:45'),
(53, NULL, '120363419983251565@g', 'velho,', '', '❌ Comando *\'velho,\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:00'),
(54, NULL, '120363419983251565@g', 'ele', '', '❌ Comando *\'ele\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:04'),
(55, NULL, '120363419983251565@g', 'e', '', '❌ Comando *\'e\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:11'),
(56, NULL, '120363419983251565@g', 'é', '', '❌ Comando *\'é\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:18'),
(57, NULL, '120363419983251565@g', '@239272745533472', '', '❌ Comando *\'@239272745533472\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:34'),
(58, NULL, '120363419983251565@g', 'se', '', '❌ Comando *\'se\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:42'),
(59, NULL, 'status@broadcast', 'salmos', '', '❌ Comando *\'salmos\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:52'),
(60, NULL, '120363419983251565@g', 'coloca', '', '❌ Comando *\'coloca\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:56'),
(61, NULL, '120363419983251565@g', 'kkkkk', '', '❌ Comando *\'kkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:57:58'),
(62, NULL, '120363419983251565@g', 'liguei', '', '❌ Comando *\'liguei\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:58:02'),
(63, NULL, '120363419983251565@g', 'ele', '', '❌ Comando *\'ele\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:58:35'),
(64, NULL, '120363419983251565@g', 'se', '', '❌ Comando *\'se\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:26'),
(65, NULL, '120363419983251565@g', 'matheus', '', '❌ Comando *\'matheus\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:28'),
(66, NULL, '120363419983251565@g', 'da', '', '❌ Comando *\'da\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:33'),
(67, NULL, '120363419983251565@g', 'ladrão', '', '❌ Comando *\'ladrão\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:37'),
(68, NULL, '120363419983251565@g', 'ainda', '', '❌ Comando *\'ainda\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:40'),
(69, NULL, '120363419983251565@g', 'devolve', '', '❌ Comando *\'devolve\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:43'),
(70, NULL, '120363419983251565@g', 'disgraça', '', '❌ Comando *\'disgraça\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:46'),
(71, NULL, '120363419983251565@g', 'zeus', '', '❌ Comando *\'zeus\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:56'),
(72, NULL, '120363419983251565@g', 'senao', '', '❌ Comando *\'senao\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 22:59:59'),
(73, NULL, '120363419983251565@g', 'e', '', '❌ Comando *\'e\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:00:05'),
(74, NULL, '120363419983251565@g', 'tá', '', '❌ Comando *\'tá\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:00:19'),
(75, NULL, '120363419983251565@g', 'parece', '', '❌ Comando *\'parece\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:00:20'),
(76, NULL, '120363419983251565@g', 'rebuzzi', '', '❌ Comando *\'rebuzzi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:00:24'),
(77, NULL, '120363419983251565@g', 'ten', '', '❌ Comando *\'ten\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:00:51'),
(78, NULL, '120363419983251565@g', '20', '', '❌ Comando *\'20\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:00:52'),
(79, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:02'),
(80, NULL, '120363419983251565@g', 'pq', '', '❌ Comando *\'pq\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:05'),
(81, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:15'),
(82, NULL, '120363419983251565@g', 'que', '', '❌ Comando *\'que\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:19'),
(83, NULL, '120363419983251565@g', 'kkkkkkkk', '', '❌ Comando *\'kkkkkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:21'),
(84, NULL, '120363419983251565@g', 'vou', '', '❌ Comando *\'vou\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:24'),
(85, NULL, '120363419983251565@g', 'pro', '', '❌ Comando *\'pro\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:01:28'),
(86, NULL, '120363419983251565@g', 'invoca', '', '❌ Comando *\'invoca\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:02:27'),
(87, NULL, '120363419983251565@g', 'esse', '', '❌ Comando *\'esse\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:03:12'),
(88, NULL, '120363419983251565@g', 'seus', '', '❌ Comando *\'seus\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:23'),
(89, NULL, '120363419983251565@g', 'qual', '', '❌ Comando *\'qual\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:24'),
(90, NULL, '120363419983251565@g', '@56281603825886', '', '❌ Comando *\'@56281603825886\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:29'),
(91, NULL, '120363419983251565@g', 'kkkkkkkkkkk', '', '❌ Comando *\'kkkkkkkkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:31'),
(92, NULL, '120363419983251565@g', '6', '', '❌ Comando *\'6\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:34'),
(93, NULL, '120363419983251565@g', '6', '', '❌ Comando *\'6\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:36'),
(94, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:47'),
(95, NULL, '120363419983251565@g', 'passou', '', '❌ Comando *\'passou\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:04:50'),
(96, NULL, '120363419983251565@g', 'cara', '', '❌ Comando *\'cara\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:07:49'),
(97, NULL, '120363419983251565@g', 'mi', '', '❌ Comando *\'mi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:08:36'),
(98, NULL, '120363419983251565@g', 'meus', '', '❌ Comando *\'meus\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:08:38'),
(99, NULL, '120363419983251565@g', 'ladrãozim', '', '❌ Comando *\'ladrãozim\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:08:42'),
(100, NULL, '120363170942886188@n', 'eles', '', '❌ Comando *\'eles\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:10:52'),
(101, NULL, '120363170942886188@n', '🗣️👀', '', '❌ Comando *\'🗣️👀\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:11:42'),
(102, NULL, '120363197724822747@g', 'na', '', '❌ Comando *\'na\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:15:56'),
(103, NULL, '120363197724822747@g', 'mensagem', '', '❌ Comando *\'mensagem\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:17:35'),
(104, NULL, '120363197724822747@g', 'ibo', '', '❌ Comando *\'ibo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:20:38'),
(105, NULL, '120363419983251565@g', 'rei', '', '❌ Comando *\'rei\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:21:16'),
(106, NULL, '120363419983251565@g', 'mi', '', '❌ Comando *\'mi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:22:30'),
(107, NULL, '120363170942886188@n', 'https://www.instagram.com/reel/dt0twojlxzu/?igsh=m', '', '❌ Comando *\'https://www.instagram.com/reel/dt0twojlxzu/?igsh=mwtkbzj3cxu5cmrhag==\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:23:38'),
(108, NULL, '120363197724822747@g', 'vários', '', '❌ Comando *\'vários\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:24:15'),
(109, NULL, '120363419983251565@g', 'magno', '', '❌ Comando *\'magno\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:24:17'),
(110, NULL, '120363170942886188@n', 'e', '', '❌ Comando *\'e\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:24:32'),
(111, NULL, '120363197724822747@g', 'adielson', '', '❌ Comando *\'adielson\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:24:35'),
(112, NULL, '120363419983251565@g', 'complicado', '', '❌ Comando *\'complicado\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:25:14'),
(113, NULL, '120363419983251565@g', 'a', '', '❌ Comando *\'a\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:25:21'),
(114, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:31:33'),
(115, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:33:52'),
(116, NULL, '120363419983251565@g', 'da', '', '❌ Comando *\'da\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:34:23'),
(117, NULL, '120363419983251565@g', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:34:24'),
(118, NULL, '120363419983251565@g', 'capaz', '', '❌ Comando *\'capaz\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:34:33'),
(119, NULL, '120363419983251565@g', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:34:51'),
(120, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:35:36'),
(121, NULL, '120363419983251565@g', 'kkkkk', '', '❌ Comando *\'kkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:35:38'),
(122, NULL, '120363162561068565@n', '✍️', '', '❌ Comando *\'✍️\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:36:07'),
(123, NULL, '120363419983251565@g', '😂🤣', '', '❌ Comando *\'😂🤣\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:36:17'),
(124, NULL, '120363419983251565@g', '@189266978160868', '', '❌ Comando *\'@189266978160868\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:36:29'),
(125, NULL, '120363419983251565@g', 'kkkk', '', '❌ Comando *\'kkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:36:30'),
(126, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:37:09'),
(127, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:37:33'),
(128, NULL, '120363419983251565@g', 'a', '', '❌ Comando *\'a\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:37:34'),
(129, NULL, '120363419983251565@g', 'kkkkk', '', '❌ Comando *\'kkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:37:36'),
(130, NULL, '120363419983251565@g', 'os', '', '❌ Comando *\'os\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:37:58'),
(131, NULL, '120363419983251565@g', 'bplay', '', '❌ Comando *\'bplay\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:37:59'),
(132, NULL, '120363419983251565@g', 'da', '', '❌ Comando *\'da\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:38:24'),
(133, NULL, '120363419983251565@g', 'era', '', '❌ Comando *\'era\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:38:32'),
(134, NULL, '120363419983251565@g', 'bplay', '', '❌ Comando *\'bplay\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:39:31'),
(135, NULL, '120363419983251565@g', 'mano', '', '❌ Comando *\'mano\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:40:12'),
(136, NULL, '120363419983251565@g', 'safado', '', '❌ Comando *\'safado\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:40:50'),
(137, NULL, '120363419983251565@g', 'ainda', '', '❌ Comando *\'ainda\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:41:10'),
(138, NULL, '120363419983251565@g', '@157020330184838', '', '❌ Comando *\'@157020330184838\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:41:38'),
(139, NULL, '120363419983251565@g', 'fala', '', '❌ Comando *\'fala\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:43:03'),
(140, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:43:41'),
(141, NULL, '120363419983251565@g', '🤣🤣🤣🤣', '', '❌ Comando *\'🤣🤣🤣🤣\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:43:57'),
(142, NULL, '120363419983251565@g', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:45:36'),
(143, NULL, '120363419983251565@g', 'mais', '', '❌ Comando *\'mais\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:45:48'),
(144, NULL, '120363026974827618@g', '🚀*servidor', '', '❌ Comando *\'🚀*servidor\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:47:27'),
(145, NULL, '120363197724822747@g', 'meu', '', '❌ Comando *\'meu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:48:22'),
(146, NULL, '57471007776958@lid', 'opa', '', '❌ Comando *\'opa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:49:02'),
(147, NULL, '57471007776958@lid', 'tudo', '', '❌ Comando *\'tudo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:49:04'),
(148, NULL, '57471007776958@lid', 'tu', '', '❌ Comando *\'tu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:49:23'),
(149, NULL, '90142941425761@lid', 'ola', '', '❌ Comando *\'ola\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:50:22'),
(150, NULL, '120363197724822747@g', 'http://aftv.news/2662327', '', '❌ Comando *\'http://aftv.news/2662327\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:52:24'),
(151, NULL, '120363419983251565@g', 'voz', '', '❌ Comando *\'voz\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:54:23'),
(152, NULL, '120363419983251565@g', 'olha', '', '❌ Comando *\'olha\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:54:28'),
(153, NULL, '75110505549835@lid', 'boa', '', '❌ Comando *\'boa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:56:12'),
(154, NULL, '120363419983251565@g', 'essa', '', '❌ Comando *\'essa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:56:35'),
(155, NULL, '75110505549835@lid', 'da', '', '❌ Comando *\'da\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:57:45'),
(156, NULL, '120363419983251565@g', 'kkkkkk', '', '❌ Comando *\'kkkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-26 23:59:37'),
(157, NULL, '120363170942886188@n', 'https://www.instagram.com/reel/dt0twojlxzu/?igsh=m', '', '❌ Comando *\'https://www.instagram.com/reel/dt0twojlxzu/?igsh=mwtkbzj3cxu5cmrhag==\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:00:57'),
(158, NULL, '120363170942886188@n', 'e', '', '❌ Comando *\'e\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:00:58'),
(159, NULL, '120363162561068565@n', '➡️', '', '❌ Comando *\'➡️\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:01:25'),
(160, NULL, '90142941425761@lid', 'vai', '', '❌ Comando *\'vai\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:02:47'),
(161, NULL, '120363419983251565@g', 'ei', '', '❌ Comando *\'ei\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:05:22'),
(162, NULL, '120363419983251565@g', '@157020330184838', '', '❌ Comando *\'@157020330184838\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:06:45'),
(163, NULL, '120363419983251565@g', 'bruno', '', '❌ Comando *\'bruno\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:12:10'),
(164, NULL, '120363419983251565@g', 'servidor', '', '❌ Comando *\'servidor\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:13:24'),
(165, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:14:32'),
(166, NULL, '120363419983251565@g', 'quando', '', '❌ Comando *\'quando\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:15:28'),
(167, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:15:37'),
(168, NULL, '120363419983251565@g', 'porém', '', '❌ Comando *\'porém\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:15:52'),
(169, NULL, '120363419983251565@g', 'deixar', '', '❌ Comando *\'deixar\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:15:57'),
(170, NULL, '120363419983251565@g', 'por', '', '❌ Comando *\'por\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:16:07'),
(171, NULL, '120363419983251565@g', '@189266978160868', '', '❌ Comando *\'@189266978160868\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:16:16'),
(172, NULL, '120363419983251565@g', 'nem', '', '❌ Comando *\'nem\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:16:45'),
(173, NULL, '120363419983251565@g', 'rica', '', '❌ Comando *\'rica\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:16:52'),
(174, NULL, '120363419983251565@g', 'detalhe', '', '❌ Comando *\'detalhe\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:17:26'),
(175, NULL, '120363419983251565@g', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:17:30'),
(176, NULL, '120363419983251565@g', 'foi', '', '❌ Comando *\'foi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:17:38'),
(177, NULL, '120363419983251565@g', 'tão', '', '❌ Comando *\'tão\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:18:07'),
(178, NULL, '120363419983251565@g', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:18:29'),
(179, NULL, '120363419983251565@g', 'pois', '', '❌ Comando *\'pois\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:18:33'),
(180, NULL, '120363419983251565@g', 'abrir', '', '❌ Comando *\'abrir\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:18:40'),
(181, NULL, '120363419983251565@g', 'pegam', '', '❌ Comando *\'pegam\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:19:07'),
(182, NULL, '120363419983251565@g', 'e', '', '❌ Comando *\'e\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:19:14'),
(183, NULL, '120363419983251565@g', 'kkkkkkk', '', '❌ Comando *\'kkkkkkk\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:21:01'),
(184, NULL, '120363419983251565@g', 'fez', '', '❌ Comando *\'fez\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:21:05'),
(185, NULL, '120363419983251565@g', 'biscate', '', '❌ Comando *\'biscate\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:21:28'),
(186, NULL, '120363419983251565@g', '@222183271960608', '', '❌ Comando *\'@222183271960608\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:21:29'),
(187, NULL, '120363419983251565@g', 'as', '', '❌ Comando *\'as\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:22:05'),
(188, NULL, '120363419983251565@g', 'sabrina', '', '❌ Comando *\'sabrina\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:22:09'),
(189, NULL, '120363419983251565@g', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:22:16'),
(190, NULL, '90142941425761@lid', 'faz', '', '❌ Comando *\'faz\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:24:49'),
(191, NULL, '90142941425761@lid', 'comprei', '', '❌ Comando *\'comprei\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:24:58'),
(192, NULL, '120363419983251565@g', 'depois', '', '❌ Comando *\'depois\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:26:34'),
(193, NULL, '90142941425761@lid', 'eu', '', '❌ Comando *\'eu\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:29:39'),
(194, NULL, '90142941425761@lid', 'da', '', '❌ Comando *\'da\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:29:50'),
(195, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:36:10'),
(196, NULL, '120363190708205168@n', '🩺', '', '❌ Comando *\'🩺\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:43:14'),
(197, NULL, '120363419983251565@g', 'mais', '', '❌ Comando *\'mais\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:44:43'),
(198, NULL, '120363419983251565@g', 'a', '', '❌ Comando *\'a\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:44:48'),
(199, NULL, '120363419983251565@g', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:44:58'),
(200, NULL, '120363419983251565@g', 'foi', '', '❌ Comando *\'foi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:45:02'),
(201, NULL, '120363419983251565@g', 'roda', '', '❌ Comando *\'roda\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:45:10'),
(202, NULL, '120363419983251565@g', 'que?', '', '❌ Comando *\'que?\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:45:34'),
(203, NULL, '120363419983251565@g', 'serio', '', '❌ Comando *\'serio\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:45:48'),
(204, NULL, '120363419983251565@g', 'agora', '', '❌ Comando *\'agora\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:45:55'),
(205, NULL, '120363419983251565@g', 'caraiii', '', '❌ Comando *\'caraiii\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:46:07'),
(206, NULL, '120363419983251565@g', 'qual', '', '❌ Comando *\'qual\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:47:11'),
(207, NULL, '120363419983251565@g', 'aquele', '', '❌ Comando *\'aquele\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:47:27'),
(208, NULL, '120363419983251565@g', 'odeio', '', '❌ Comando *\'odeio\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:47:36'),
(209, NULL, '120363419983251565@g', 'mais', '', '❌ Comando *\'mais\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:47:38'),
(210, NULL, '120363419983251565@g', 'a', '', '❌ Comando *\'a\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:47:48'),
(211, NULL, '120363419983251565@g', 'agora', '', '❌ Comando *\'agora\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:47:56'),
(212, NULL, '120363419983251565@g', 'só', '', '❌ Comando *\'só\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:08'),
(213, NULL, '120363419983251565@g', 'na', '', '❌ Comando *\'na\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:24'),
(214, NULL, '120363419983251565@g', 'bota', '', '❌ Comando *\'bota\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:28'),
(215, NULL, '120363419983251565@g', 'estou', '', '❌ Comando *\'estou\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:33'),
(216, NULL, '120363419983251565@g', 'aliás', '', '❌ Comando *\'aliás\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:39'),
(217, NULL, '120363419983251565@g', 'também', '', '❌ Comando *\'também\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:42'),
(218, NULL, '120363419983251565@g', 'evitar', '', '❌ Comando *\'evitar\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:48:44'),
(219, NULL, '162753641730218@lid', 'boa', '', '❌ Comando *\'boa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:50:00'),
(220, NULL, '162753641730218@lid', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:50:16'),
(221, NULL, '120363170942886188@n', 'https://www.instagram.com/reel/dt0twojlxzu/?igsh=m', '', '❌ Comando *\'https://www.instagram.com/reel/dt0twojlxzu/?igsh=mwtkbzj3cxu5cmrhag==\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:51:38'),
(222, NULL, '120363162561068565@n', 'messi', '', '❌ Comando *\'messi\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 00:57:17'),
(223, NULL, '277790012223709@lid', 'boa', '', '❌ Comando *\'boa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:03:30'),
(224, NULL, '277790012223709@lid', 'não', '', '❌ Comando *\'não\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:03:46'),
(225, NULL, '217226695151773@lid', 'amigo', '', '❌ Comando *\'amigo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:04:02'),
(226, NULL, '277790012223709@lid', 'consegue', '', '❌ Comando *\'consegue\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:04:05'),
(227, NULL, '217226695151773@lid', 'mas', '', '❌ Comando *\'mas\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:04:07'),
(228, NULL, '5511984738910', 'iae', '', '❌ Comando *\'iae\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:05:07'),
(229, NULL, '120363026974827618@g', 'atenÇÃo', '', '❌ Comando *\'atenÇÃo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:05:12'),
(230, NULL, '5511984738910', 'acho', '', '❌ Comando *\'acho\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:05:27'),
(231, NULL, '120363162561068565@n', '🤯', '', '❌ Comando *\'🤯\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:08:41'),
(232, NULL, '90142941425761@lid', 'pronto', '', '❌ Comando *\'pronto\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:08:44'),
(233, NULL, '32465758515228@lid', 'o', '', '❌ Comando *\'o\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:12:35'),
(234, NULL, '32465758515228@lid', 'ta', '', '❌ Comando *\'ta\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:12:37'),
(235, NULL, '120363081473051158@g', 'só', '', '❌ Comando *\'só\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:14:32'),
(236, NULL, '120363081473051158@g', 'ta', '', '❌ Comando *\'ta\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:15:01'),
(237, NULL, '32465758515228@lid', 'putz', '', '❌ Comando *\'putz\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:16:24'),
(238, NULL, '32465758515228@lid', 'precisa', '', '❌ Comando *\'precisa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:16:29'),
(239, NULL, '120363419983251565@g', 'mas', '', '❌ Comando *\'mas\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:17:59'),
(240, NULL, '5511984738910', 'blz', '', '❌ Comando *\'blz\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:19:39'),
(241, NULL, '5511984738910', 'tava', '', '❌ Comando *\'tava\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:19:43'),
(242, NULL, '5511984738910', 'ai', '', '❌ Comando *\'ai\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:20:16'),
(243, NULL, '5511984738910', 'tá', '', '❌ Comando *\'tá\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:23:45'),
(244, NULL, '5511984738910', 'entrou', '', '❌ Comando *\'entrou\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:23:48'),
(245, NULL, '5511984738910', 'desculpa', '', '❌ Comando *\'desculpa\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:23:52'),
(246, NULL, '90142941425761@lid', 'tá', '', '❌ Comando *\'tá\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:25:28'),
(247, NULL, '120363419983251565@g', 'p2mult', '', '❌ Comando *\'p2mult\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:27:24'),
(248, NULL, '120363419983251565@g', 'lorenzo', '', '❌ Comando *\'lorenzo\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:28:07'),
(249, NULL, '120363419983251565@g', 'zoua', '', '❌ Comando *\'zoua\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:28:17'),
(250, NULL, '120363419983251565@g', '@246389472805022', '', '❌ Comando *\'@246389472805022\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:29:02'),
(251, NULL, '120363419983251565@g', 'bora', '', '❌ Comando *\'bora\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:29:21'),
(252, NULL, '120363170942886188@n', 'https://www.instagram.com/reel/dt0twojlxzu/?igsh=m', '', '❌ Comando *\'https://www.instagram.com/reel/dt0twojlxzu/?igsh=mwtkbzj3cxu5cmrhag==\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:31:18'),
(253, NULL, '120363170942886188@n', 'e', '', '❌ Comando *\'e\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:34:32'),
(254, NULL, '120363419983251565@g', 'prof', '', '❌ Comando *\'prof\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:35:57'),
(255, NULL, '120363379710688232@n', 'the', '', '❌ Comando *\'the\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:38:22'),
(256, NULL, '120363419983251565@g', 'amor', '', '❌ Comando *\'amor\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:41:15'),
(257, NULL, '120363419983251565@g', 'manda', '', '❌ Comando *\'manda\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:41:15'),
(258, NULL, '120363419983251565@g', '🔥', '', '❌ Comando *\'🔥\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:41:15'),
(259, NULL, 'status@broadcast', 'tem', '', '❌ Comando *\'tem\'* não reconhecido.\n\nDigite *ajuda* para ver os comandos disponíveis.', 0, NULL, '2026-01-27 01:41:15');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_campanhas`
--

CREATE TABLE `whatsapp_campanhas` (
  `id` int(11) NOT NULL,
  `nome` varchar(200) NOT NULL,
  `descricao` text DEFAULT NULL,
  `media_url` varchar(500) DEFAULT NULL COMMENT 'URL da imagem/vídeo/documento',
  `tipo_midia` varchar(50) DEFAULT 'texto' COMMENT 'texto, image, video, document',
  `template_id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `filtros` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`filtros`)),
  `destinatarios` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`destinatarios`)),
  `total_destinatarios` int(11) DEFAULT 0,
  `enviados` int(11) DEFAULT 0,
  `entregues` int(11) DEFAULT 0,
  `lidos` int(11) DEFAULT 0,
  `erros` int(11) DEFAULT 0,
  `status` enum('rascunho','agendada','enviando','concluida','pausada','cancelada') DEFAULT 'rascunho',
  `data_agendamento` datetime DEFAULT NULL,
  `hora_agendamento` time DEFAULT NULL COMMENT 'Horário específico para envio da campanha',
  `recorrencia` varchar(50) DEFAULT 'unico' COMMENT 'Tipo de recorrência: unico, diaria, semanal, mensal',
  `dias_semana` varchar(50) DEFAULT NULL COMMENT 'Dias da semana para campanhas recorrentes: 1,2,3,4,5',
  `intervalo_min_segundos` int(11) DEFAULT 5 COMMENT 'Intervalo mínimo entre mensagens (anti-bloqueio)',
  `intervalo_max_segundos` int(11) DEFAULT 15 COMMENT 'Intervalo máximo entre mensagens',
  `horario_inicio` time DEFAULT '08:00:00' COMMENT 'Horário de início permitido para envios',
  `horario_fim` time DEFAULT '20:00:00' COMMENT 'Horário de término permitido para envios',
  `pausar_fim_de_semana` tinyint(1) DEFAULT 1 COMMENT 'Pausar envios aos sábados e domingos',
  `data_inicio_envio` datetime DEFAULT NULL,
  `data_conclusao` datetime DEFAULT NULL,
  `intervalo_segundos` int(11) DEFAULT 5,
  `criado_por` int(11) NOT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `whatsapp_campanhas`
--

INSERT INTO `whatsapp_campanhas` (`id`, `nome`, `descricao`, `media_url`, `tipo_midia`, `template_id`, `instancia_id`, `filtros`, `destinatarios`, `total_destinatarios`, `enviados`, `entregues`, `lidos`, `erros`, `status`, `data_agendamento`, `hora_agendamento`, `recorrencia`, `dias_semana`, `intervalo_min_segundos`, `intervalo_max_segundos`, `horario_inicio`, `horario_fim`, `pausar_fim_de_semana`, `data_inicio_envio`, `data_conclusao`, `intervalo_segundos`, `criado_por`, `criado_em`, `atualizado_em`) VALUES
(6, 'TV | FILMES | SERIES | +18', 'Oferta especial pra você!', NULL, 'texto', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"TV | FILMES | SERIES | +18\",\"assunto\":\"Oferta especial pra voc\\u00ea!\",\"instancia_id\":\"\",\"tipo_midia\":\"texto\",\"media_url\":\"\",\"mensagem\":\"TESTE !!!!\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"id\":\"58\",\"nome\":\"Solan \\/ IOS VIVO\",\"telefone\":\"3399921854\",\"valor_assinatura\":\"30.00\",\"data_vencimento\":\"2026-02-10\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 17:01:05\",\"dias_ate_vencimento\":\"-7\",\"dias_atraso\":\"7\",\"telefone_formatado\":\"5533999921854\"},{\"id\":\"49\",\"nome\":\"Dry \\/ Ios VIvo\",\"telefone\":\"11972421904\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-18\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:34:12\",\"dias_ate_vencimento\":\"1\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5511972421904\"},{\"id\":\"48\",\"nome\":\"teste lucros reais\",\"telefone\":\"4799999\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-18\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-16 22:14:33\",\"dias_ate_vencimento\":\"1\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"4799999\"},{\"id\":\"53\",\"nome\":\"Kev \\/ IOS VIVO\",\"telefone\":\"15996605722\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-20\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:48:15\",\"dias_ate_vencimento\":\"3\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996605722\"},{\"id\":\"51\",\"nome\":\"Gabriel \\/ Vivo ios\",\"telefone\":\"35997328685\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-20\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:42:35\",\"dias_ate_vencimento\":\"3\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5535997328685\"},{\"id\":\"57\",\"nome\":\"Josue \\/ VIVO IOS\",\"telefone\":\"15997872089\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-21\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:58:17\",\"dias_ate_vencimento\":\"4\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515997872089\"},{\"id\":\"50\",\"nome\":\"Clovis \\/ Ios Vivo\",\"telefone\":\"15997393627\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-03-07\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:35:23\",\"dias_ate_vencimento\":\"18\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515997393627\"},{\"id\":\"54\",\"nome\":\"Leandro \\/ VIVO IOS\",\"telefone\":\"15996618993\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-03-08\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:50:26\",\"dias_ate_vencimento\":\"19\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996618993\"},{\"id\":\"39\",\"nome\":\"Erick Souza\",\"telefone\":\"4792602871\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-13\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 14:58:48\",\"dias_ate_vencimento\":\"24\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5547992602871\"},{\"id\":\"42\",\"nome\":\"Elvis\",\"telefone\":\"1596880285\",\"valor_assinatura\":\"60.00\",\"data_vencimento\":\"2026-03-13\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 22:31:34\",\"dias_ate_vencimento\":\"24\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996880285\"},{\"id\":\"40\",\"nome\":\"vivi tia gaspar\",\"telefone\":\"4791741091\",\"valor_assinatura\":\"30.00\",\"data_vencimento\":\"2026-03-13\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 22:10:14\",\"dias_ate_vencimento\":\"24\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5547991741091\"},{\"id\":\"16\",\"nome\":\"Rodrigo\",\"telefone\":\"41989045018\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-14\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-12 20:27:14\",\"dias_ate_vencimento\":\"25\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5541989045018\"},{\"id\":\"41\",\"nome\":\"Cida\",\"telefone\":\"24998762401\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-15\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 22:19:05\",\"dias_ate_vencimento\":\"26\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5524998762401\"},{\"id\":\"55\",\"nome\":\"Pablo \\/ Combo Tv + ios\",\"telefone\":\"15996448994\",\"valor_assinatura\":\"60.00\",\"data_vencimento\":\"2026-03-16\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:55:15\",\"dias_ate_vencimento\":\"27\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996448994\"},{\"id\":\"37\",\"nome\":\"Iago\",\"telefone\":\"5519983457931\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-16\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 14:40:51\",\"dias_ate_vencimento\":\"27\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5519983457931\"},{\"id\":\"56\",\"nome\":\"Diego Paiakan \\/ ViVo IOS\",\"telefone\":\"15996010925\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-03-17\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:56:53\",\"dias_ate_vencimento\":\"28\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996010925\"},{\"id\":\"46\",\"nome\":\"Paulo Itj vizinho\",\"telefone\":\"554788117041\",\"valor_assinatura\":\"25.00\",\"data_vencimento\":\"2026-03-17\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-15 22:06:46\",\"dias_ate_vencimento\":\"28\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"554788117041\"},{\"id\":\"52\",\"nome\":\"Rodrigo\",\"telefone\":\"47997180643\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-18\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:46:30\",\"dias_ate_vencimento\":\"29\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5547997180643\"}]', 18, 17, 0, 0, 1, '', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, '2026-02-17 18:19:45', '2026-02-17 18:23:36', 5, 3, '2026-02-17 21:19:45', '2026-02-17 21:23:36'),
(7, 'TV | FILMES | SERIES | +18', 'Oferta especial pra você!', NULL, 'texto', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"TV | FILMES | SERIES | +18\",\"assunto\":\"Oferta especial pra voc\\u00ea!\",\"instancia_id\":\"\",\"tipo_midia\":\"texto\",\"media_url\":\"\",\"mensagem\":\"TESTE !!!!\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914 | Johnny\\r\\n47992012997 | CAROL\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"id\":\"58\",\"nome\":\"Solan \\/ IOS VIVO\",\"telefone\":\"3399921854\",\"valor_assinatura\":\"30.00\",\"data_vencimento\":\"2026-02-10\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 17:01:05\",\"dias_ate_vencimento\":\"-7\",\"dias_atraso\":\"7\",\"telefone_formatado\":\"5533999921854\"},{\"id\":\"49\",\"nome\":\"Dry \\/ Ios VIvo\",\"telefone\":\"11972421904\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-18\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:34:12\",\"dias_ate_vencimento\":\"1\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5511972421904\"},{\"id\":\"48\",\"nome\":\"teste lucros reais\",\"telefone\":\"4799999\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-18\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-16 22:14:33\",\"dias_ate_vencimento\":\"1\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"4799999\"},{\"id\":\"53\",\"nome\":\"Kev \\/ IOS VIVO\",\"telefone\":\"15996605722\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-20\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:48:15\",\"dias_ate_vencimento\":\"3\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996605722\"},{\"id\":\"51\",\"nome\":\"Gabriel \\/ Vivo ios\",\"telefone\":\"35997328685\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-20\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:42:35\",\"dias_ate_vencimento\":\"3\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5535997328685\"},{\"id\":\"57\",\"nome\":\"Josue \\/ VIVO IOS\",\"telefone\":\"15997872089\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-02-21\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:58:17\",\"dias_ate_vencimento\":\"4\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515997872089\"},{\"id\":\"50\",\"nome\":\"Clovis \\/ Ios Vivo\",\"telefone\":\"15997393627\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-03-07\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:35:23\",\"dias_ate_vencimento\":\"18\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515997393627\"},{\"id\":\"54\",\"nome\":\"Leandro \\/ VIVO IOS\",\"telefone\":\"15996618993\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-03-08\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:50:26\",\"dias_ate_vencimento\":\"19\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996618993\"},{\"id\":\"39\",\"nome\":\"Erick Souza\",\"telefone\":\"4792602871\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-13\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 14:58:48\",\"dias_ate_vencimento\":\"24\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5547992602871\"},{\"id\":\"42\",\"nome\":\"Elvis\",\"telefone\":\"1596880285\",\"valor_assinatura\":\"60.00\",\"data_vencimento\":\"2026-03-13\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 22:31:34\",\"dias_ate_vencimento\":\"24\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996880285\"},{\"id\":\"40\",\"nome\":\"vivi tia gaspar\",\"telefone\":\"4791741091\",\"valor_assinatura\":\"30.00\",\"data_vencimento\":\"2026-03-13\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 22:10:14\",\"dias_ate_vencimento\":\"24\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5547991741091\"},{\"id\":\"16\",\"nome\":\"Rodrigo\",\"telefone\":\"41989045018\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-14\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-12 20:27:14\",\"dias_ate_vencimento\":\"25\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5541989045018\"},{\"id\":\"41\",\"nome\":\"Cida\",\"telefone\":\"24998762401\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-15\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 22:19:05\",\"dias_ate_vencimento\":\"26\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5524998762401\"},{\"id\":\"55\",\"nome\":\"Pablo \\/ Combo Tv + ios\",\"telefone\":\"15996448994\",\"valor_assinatura\":\"60.00\",\"data_vencimento\":\"2026-03-16\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:55:15\",\"dias_ate_vencimento\":\"27\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996448994\"},{\"id\":\"37\",\"nome\":\"Iago\",\"telefone\":\"5519983457931\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-16\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-13 14:40:51\",\"dias_ate_vencimento\":\"27\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5519983457931\"},{\"id\":\"56\",\"nome\":\"Diego Paiakan \\/ ViVo IOS\",\"telefone\":\"15996010925\",\"valor_assinatura\":\"35.00\",\"data_vencimento\":\"2026-03-17\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:56:53\",\"dias_ate_vencimento\":\"28\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5515996010925\"},{\"id\":\"46\",\"nome\":\"Paulo Itj vizinho\",\"telefone\":\"554788117041\",\"valor_assinatura\":\"25.00\",\"data_vencimento\":\"2026-03-17\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-15 22:06:46\",\"dias_ate_vencimento\":\"28\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"554788117041\"},{\"id\":\"52\",\"nome\":\"Rodrigo\",\"telefone\":\"47997180643\",\"valor_assinatura\":\"40.00\",\"data_vencimento\":\"2026-03-18\",\"tipo_plano\":\"mensal\",\"status_pagamento\":\"em_dia\",\"cidade\":null,\"estado\":null,\"criado_em\":\"2026-02-17 16:46:30\",\"dias_ate_vencimento\":\"29\",\"dias_atraso\":\"0\",\"telefone_formatado\":\"5547997180643\"},{\"telefone\":\"47991063914\",\"nome\":\" Johnny\"},{\"telefone\":\"47992012997\",\"nome\":\" CAROL\"}]', 20, 0, 0, 0, 0, 'rascunho', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, NULL, NULL, 5, 3, '2026-02-17 21:23:36', '2026-02-17 21:23:36'),
(8, 'TV | FILMES | SERIES | +18', 'teste desconciderar', NULL, 'texto', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"TV | FILMES | SERIES | +18\",\"assunto\":\"teste desconciderar\",\"instancia_id\":\"\",\"tipo_midia\":\"image\",\"media_url\":\"\",\"mensagem\":\"teste\",\"tipo_destinatario\":\"avulsos\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914 | Johnny\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"telefone\":\"47991063914\",\"nome\":\"Johnny\"}]', 1, 0, 0, 0, 0, '', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, NULL, NULL, 5, 3, '2026-02-17 21:49:14', '2026-02-17 21:49:32'),
(9, 'TESTE', 'teste desconciderar', NULL, 'texto', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"TESTE\",\"assunto\":\"teste desconciderar\",\"instancia_id\":\"\",\"tipo_midia\":\"image\",\"media_url\":\"\",\"mensagem\":\"teste\",\"tipo_destinatario\":\"avulsos\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914 | Johnny\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"telefone\":\"47991063914\",\"nome\":\"Johnny\"}]', 1, 1, 0, 0, 0, 'concluida', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, '2026-02-17 18:57:28', '2026-02-17 18:57:37', 5, 3, '2026-02-17 21:57:28', '2026-02-17 21:57:37'),
(10, 'whatsapp_teste', 'Oferta especial pra você!', NULL, 'texto', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"whatsapp_teste\",\"assunto\":\"Oferta especial pra voc\\u00ea!\",\"instancia_id\":\"\",\"tipo_midia\":\"image\",\"media_url\":\"https:\\/\\/s3.iimg.su\\/s\\/26\\/gOUqrcCxYWAt5fwN11b4Vc4p3XocoXVoafMiUb9O.jpg\",\"mensagem\":\"TESTANDO ! @ #\",\"tipo_destinatario\":\"avulsos\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914 \",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"telefone\":\"47991063914\",\"nome\":\"Contato Avulso\"}]', 1, 1, 0, 0, 0, 'concluida', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, '2026-02-17 19:01:18', '2026-02-17 19:01:32', 5, 3, '2026-02-17 22:01:18', '2026-02-17 22:01:32'),
(11, 'CEPRION', 'INTERNET E IPTV', 'https://gestorx.voidplay.com.br/gestorwhatsapp/uploads/campanhas/campanhas/6994e9b550eba_20260217.mp4', 'image', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"CEPRION\",\"assunto\":\"INTERNET E IPTV\",\"instancia_id\":\"\",\"tipo_midia\":\"image\",\"media_url\":\"\",\"mensagem\":\"TESTANDO TEXTO DA MENSAGEM\",\"tipo_destinatario\":\"avulsos\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"telefone\":\"47991063914\",\"nome\":\"Contato Avulso\"}]', 1, 1, 0, 0, 0, 'concluida', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, '2026-02-17 19:20:38', '2026-02-17 19:20:56', 5, 3, '2026-02-17 22:20:38', '2026-02-17 22:20:56'),
(12, 'CEPRION 2', 'INTERNET E IPTV', 'https://gestorx.voidplay.com.br/gestorwhatsapp/uploads/campanhas/campanhas/6994ea65f30bd_20260217.png', 'image', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"CEPRION 2\",\"assunto\":\"INTERNET E IPTV\",\"instancia_id\":\"\",\"tipo_midia\":\"image\",\"media_url\":\"\",\"mensagem\":\"TESTE {nome} {data}\",\"tipo_destinatario\":\"avulsos\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914 | johnny\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"telefone\":\"47991063914\",\"nome\":\"johnny\"}]', 1, 1, 0, 0, 0, 'concluida', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, '2026-02-17 19:23:34', '2026-02-17 19:23:49', 5, 3, '2026-02-17 22:23:33', '2026-02-17 22:23:49'),
(13, 'Volta pra Casa JTV Play 🎬', 'Volta pra Casa JTV Play 🎬', 'https://gestorx.voidplay.com.br/gestorwhatsapp/uploads/campanhas/6994f1bd8bdae_20260217.png', 'image', 22, 23, '{\"csrf_token\":\"4e00f037453efb22a84a49dc13cf2a55d03d583469177aab8776bf53bd16376e\",\"form_action\":\"save\",\"nome\":\"Volta pra Casa JTV Play \\ud83c\\udfac\",\"assunto\":\"Volta pra Casa JTV Play \\ud83c\\udfac\",\"instancia_id\":\"\",\"tipo_midia\":\"image\",\"media_url\":\"\",\"mensagem\":\"Ol\\u00e1!\\r\\nSentimos sua falta na JTV Play \\ud83d\\udc99\\r\\nTem muitas novidades esperando por voc\\u00ea: filmes, s\\u00e9ries e conte\\u00fados exclusivos que voc\\u00ea n\\u00e3o pode perder.\\r\\n\\r\\n\\ud83d\\udc49 Volte agora e aproveite tudo o que preparamos especialmente para voc\\u00ea!\\r\\n\\r\\nClique aqui e retorne j\\u00e1\",\"tipo_destinatario\":\"avulsos\",\"filtro_status\":\"todos\",\"filtro_plano\":\"\",\"dias_atraso_min\":\"0\",\"dias_atraso_max\":\"30\",\"filtro_modo\":\"ativos\",\"filtro_tipo_inativo\":\"todos_inativos\",\"filtro_periodo_inativo\":\"ultimos_30_dias\",\"contatos_avulsos\":\"47991063914\",\"tipo_agendamento\":\"agora\",\"data_agendamento\":\"2026-02-18\",\"hora_agendamento\":\"09:00\",\"recorrencia\":\"diaria\",\"intervalo_min\":\"5\",\"intervalo_max\":\"15\",\"horario_inicio\":\"08:00\",\"horario_fim\":\"20:00\"}', '[{\"telefone\":\"47991063914\",\"nome\":\"Contato Avulso\"}]', 1, 1, 0, 0, 0, 'concluida', NULL, NULL, 'diaria', NULL, 5, 15, '08:00:00', '20:00:00', 0, '2026-02-17 19:54:53', '2026-02-17 19:55:09', 5, 3, '2026-02-17 22:54:53', '2026-02-17 22:55:09');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_campanhas_destinatarios`
--

CREATE TABLE `whatsapp_campanhas_destinatarios` (
  `id` int(11) NOT NULL,
  `campanha_id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `numero_whatsapp` varchar(20) NOT NULL,
  `status` enum('pendente','enviado','entregue','lido','erro') DEFAULT 'pendente',
  `message_id` varchar(100) DEFAULT NULL,
  `erro_mensagem` text DEFAULT NULL,
  `enviado_em` timestamp NULL DEFAULT NULL,
  `entregue_em` timestamp NULL DEFAULT NULL,
  `lido_em` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `whatsapp_campanhas_destinatarios`
--

INSERT INTO `whatsapp_campanhas_destinatarios` (`id`, `campanha_id`, `cliente_id`, `numero_whatsapp`, `status`, `message_id`, `erro_mensagem`, `enviado_em`, `entregue_em`, `lido_em`) VALUES
(7, 6, 58, '5533999921854', 'enviado', NULL, NULL, '2026-02-17 21:19:47', NULL, NULL),
(8, 6, 49, '5511972421904', 'enviado', NULL, NULL, '2026-02-17 21:20:00', NULL, NULL),
(9, 6, 48, '4799999', 'erro', NULL, '❌ HTTP 400', '2026-02-17 21:20:10', NULL, NULL),
(10, 6, 53, '5515996605722', 'enviado', NULL, NULL, '2026-02-17 21:20:27', NULL, NULL),
(11, 6, 51, '5535997328685', 'enviado', NULL, NULL, '2026-02-17 21:20:43', NULL, NULL),
(12, 6, 57, '5515997872089', 'enviado', NULL, NULL, '2026-02-17 21:20:58', NULL, NULL),
(13, 6, 50, '5515997393627', 'enviado', NULL, NULL, '2026-02-17 21:21:13', NULL, NULL),
(14, 6, 54, '5515996618993', 'enviado', NULL, NULL, '2026-02-17 21:21:25', NULL, NULL),
(15, 6, 39, '5547992602871', 'enviado', NULL, NULL, '2026-02-17 21:21:40', NULL, NULL),
(16, 6, 42, '5515996880285', 'enviado', NULL, NULL, '2026-02-17 21:21:51', NULL, NULL),
(17, 6, 40, '5547991741091', 'enviado', NULL, NULL, '2026-02-17 21:22:02', NULL, NULL),
(18, 6, 16, '5541989045018', 'enviado', NULL, NULL, '2026-02-17 21:22:16', NULL, NULL),
(19, 6, 41, '5524998762401', 'enviado', NULL, NULL, '2026-02-17 21:22:29', NULL, NULL),
(20, 6, 55, '5515996448994', 'enviado', NULL, NULL, '2026-02-17 21:22:40', NULL, NULL),
(21, 6, 37, '5519983457931', 'enviado', NULL, NULL, '2026-02-17 21:22:50', NULL, NULL),
(22, 6, 56, '5515996010925', 'enviado', NULL, NULL, '2026-02-17 21:22:58', NULL, NULL),
(23, 6, 46, '554788117041', 'enviado', NULL, NULL, '2026-02-17 21:23:07', NULL, NULL),
(24, 6, 52, '5547997180643', 'enviado', NULL, NULL, '2026-02-17 21:23:24', NULL, NULL),
(25, 7, 58, '5533999921854', 'pendente', NULL, NULL, NULL, NULL, NULL),
(26, 7, 49, '5511972421904', 'pendente', NULL, NULL, NULL, NULL, NULL),
(27, 7, 48, '4799999', 'pendente', NULL, NULL, NULL, NULL, NULL),
(28, 7, 53, '5515996605722', 'pendente', NULL, NULL, NULL, NULL, NULL),
(29, 7, 51, '5535997328685', 'pendente', NULL, NULL, NULL, NULL, NULL),
(30, 7, 57, '5515997872089', 'pendente', NULL, NULL, NULL, NULL, NULL),
(31, 7, 50, '5515997393627', 'pendente', NULL, NULL, NULL, NULL, NULL),
(32, 7, 54, '5515996618993', 'pendente', NULL, NULL, NULL, NULL, NULL),
(33, 7, 39, '5547992602871', 'pendente', NULL, NULL, NULL, NULL, NULL),
(34, 7, 42, '5515996880285', 'pendente', NULL, NULL, NULL, NULL, NULL),
(35, 7, 40, '5547991741091', 'pendente', NULL, NULL, NULL, NULL, NULL),
(36, 7, 16, '5541989045018', 'pendente', NULL, NULL, NULL, NULL, NULL),
(37, 7, 41, '5524998762401', 'pendente', NULL, NULL, NULL, NULL, NULL),
(38, 7, 55, '5515996448994', 'pendente', NULL, NULL, NULL, NULL, NULL),
(39, 7, 37, '5519983457931', 'pendente', NULL, NULL, NULL, NULL, NULL),
(40, 7, 56, '5515996010925', 'pendente', NULL, NULL, NULL, NULL, NULL),
(41, 7, 46, '554788117041', 'pendente', NULL, NULL, NULL, NULL, NULL),
(42, 7, 52, '5547997180643', 'pendente', NULL, NULL, NULL, NULL, NULL),
(43, 9, 0, '47991063914', 'enviado', NULL, NULL, '2026-02-17 21:57:31', NULL, NULL),
(44, 10, 0, '47991063914', 'enviado', NULL, NULL, '2026-02-17 22:01:20', NULL, NULL),
(45, 11, 0, '47991063914', 'enviado', NULL, NULL, '2026-02-17 22:20:43', NULL, NULL),
(46, 12, 0, '47991063914', 'enviado', NULL, NULL, '2026-02-17 22:23:37', NULL, NULL),
(47, 13, 0, '47991063914', 'enviado', NULL, NULL, '2026-02-17 22:54:56', NULL, NULL);

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_comandos`
--

CREATE TABLE `whatsapp_comandos` (
  `id` int(11) NOT NULL,
  `cliente_id` int(11) NOT NULL,
  `whatsapp` varchar(20) NOT NULL,
  `comando` varchar(50) NOT NULL,
  `resposta` text DEFAULT NULL,
  `processado` tinyint(1) DEFAULT 0,
  `data_comando` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `whatsapp_comandos`
--

INSERT INTO `whatsapp_comandos` (`id`, `cliente_id`, `whatsapp`, `comando`, `resposta`, `processado`, `data_comando`) VALUES
(1, 3, '4792012997', '/ajuda', 'Processado com sucesso', 1, '2026-02-12 23:25:37'),
(2, 3, '4792012997', '/ajuda', 'Processado com sucesso', 1, '2026-02-12 23:25:41'),
(3, 3, '4792012997', '/renovar', 'Processado com sucesso', 1, '2026-02-12 23:26:39'),
(4, 3, '4792012997', '/renovar', 'Processado com sucesso', 1, '2026-02-12 23:26:41'),
(5, 3, '4792012997', '/pago', 'Processado com sucesso', 1, '2026-02-12 23:27:10'),
(6, 3, '4792012997', '/pago', 'Processado com sucesso', 1, '2026-02-12 23:27:12'),
(7, 3, '4792012997', '/pago', 'Processado com sucesso', 1, '2026-02-12 23:27:55'),
(8, 3, '4792012997', '/pago', 'Processado com sucesso', 1, '2026-02-12 23:27:57'),
(9, 3, '4792012997', '/vencimento', 'Processado com sucesso', 1, '2026-02-12 23:28:31'),
(10, 3, '4792012997', '/vencimento', 'Processado com sucesso', 1, '2026-02-12 23:28:33');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_contatos`
--

CREATE TABLE `whatsapp_contatos` (
  `id` int(10) UNSIGNED NOT NULL,
  `instancia_id` int(10) UNSIGNED NOT NULL,
  `numero` varchar(20) NOT NULL,
  `nome` varchar(255) DEFAULT NULL,
  `foto` varchar(500) DEFAULT NULL,
  `is_group` tinyint(1) DEFAULT 0,
  `is_business` tinyint(1) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_gatilhos`
--

CREATE TABLE `whatsapp_gatilhos` (
  `id` int(11) NOT NULL,
  `nome` varchar(100) NOT NULL,
  `evento` enum('novo_usuario','pagamento_confirmado','fatura_vencida','fatura_gerada','plano_expirando','custom') NOT NULL,
  `template_id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `condicoes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`condicoes`)),
  `delay_minutos` int(11) DEFAULT 0,
  `status` enum('ativo','inativo') DEFAULT 'ativo',
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_instancias`
--

CREATE TABLE `whatsapp_instancias` (
  `id` int(10) UNSIGNED NOT NULL,
  `cliente_id` int(11) DEFAULT NULL,
  `nome_instancia` varchar(100) NOT NULL,
  `api_tipo` enum('evolution','wuzapi') DEFAULT 'evolution',
  `api_token` varchar(255) DEFAULT NULL,
  `api_url` varchar(255) DEFAULT NULL,
  `session_id` varchar(100) DEFAULT NULL,
  `status` enum('desconectado','conectando','conectado','desconectando','erro') DEFAULT 'desconectado',
  `qrcode_data` text DEFAULT NULL,
  `qrcode_expira_em` timestamp NULL DEFAULT NULL,
  `numero_whatsapp` varchar(20) DEFAULT NULL,
  `ultima_conexao` timestamp NULL DEFAULT NULL,
  `mensagens_enviadas` int(11) DEFAULT 0,
  `mensagens_recebidas` int(11) DEFAULT 0,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `whatsapp_instancias`
--

INSERT INTO `whatsapp_instancias` (`id`, `cliente_id`, `nome_instancia`, `api_tipo`, `api_token`, `api_url`, `session_id`, `status`, `qrcode_data`, `qrcode_expira_em`, `numero_whatsapp`, `ultima_conexao`, `mensagens_enviadas`, `mensagens_recebidas`, `criado_em`, `atualizado_em`) VALUES
(23, NULL, 'JTVPLAY', 'evolution', NULL, NULL, NULL, 'conectado', NULL, NULL, NULL, '2026-02-12 14:32:40', 0, 0, '2026-02-09 23:26:15', '2026-02-13 01:03:08');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_logs`
--

CREATE TABLE `whatsapp_logs` (
  `id` int(11) NOT NULL,
  `tipo` varchar(50) NOT NULL,
  `mensagem` text NOT NULL,
  `dados_extras` text DEFAULT NULL,
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_mensagens`
--

CREATE TABLE `whatsapp_mensagens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `instancia_id` int(10) UNSIGNED NOT NULL,
  `tipo` enum('enviada','recebida') NOT NULL,
  `remetente` varchar(20) NOT NULL,
  `destinatario` varchar(20) NOT NULL,
  `mensagem` text NOT NULL,
  `midia_url` varchar(500) DEFAULT NULL,
  `midia_tipo` varchar(50) DEFAULT NULL,
  `status` enum('pendente','enviando','enviada','entregue','lida','erro') DEFAULT 'pendente',
  `erro_mensagem` text DEFAULT NULL,
  `api_response` text DEFAULT NULL,
  `enviado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `atualizado_em` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `whatsapp_mensagens`
--

INSERT INTO `whatsapp_mensagens` (`id`, `instancia_id`, `tipo`, `remetente`, `destinatario`, `mensagem`, `midia_url`, `midia_tipo`, `status`, `erro_mensagem`, `api_response`, `enviado_em`, `atualizado_em`) VALUES
(3, 23, 'enviada', '', '5547992012997', '🔔 *Lembrete de Pagamento*\n\nOlá carol!\n\nSeu pagamento de *R$ 100,00* vence em *26/01/2026*.\n\n📱 Para confirmar o pagamento, envie */pago*\n\n_Obrigado pela preferência!_', NULL, NULL, '', NULL, NULL, '2026-02-12 15:30:21', '2026-02-12 15:30:21'),
(4, 23, 'enviada', '', '47991063914', '🔔 *Lembrete de Pagamento*\n\nOlá jou!\n\nSeu pagamento de *R$ 40,00* vence em *26/01/2026*.\n\n📱 Para confirmar o pagamento, envie */pago*\n\n_Obrigado pela preferência!_', NULL, NULL, '', NULL, NULL, '2026-02-12 15:40:34', '2026-02-12 15:40:34'),
(5, 23, 'enviada', '', '47991063914', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *17*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', NULL, NULL, '', NULL, NULL, '2026-02-12 21:21:29', '2026-02-12 21:21:29'),
(6, 23, 'enviada', '', '47991063914', '⏰ *Lembrete: Seu pagamento vence em breve!*\n\nOlá, *teste*! 👋\n\nSeu pagamento vence em *3 dias*:\n📅 Vencimento: *15/02/2026*\n💰 Valor: *R$ 100,00*\n\nAntecipe e evite a suspensão do serviço!\n\nApós pagar, confirme enviando */pago* 📱\n\n_Estamos à disposição!_ 😊', NULL, NULL, '', NULL, NULL, '2026-02-12 21:21:33', '2026-02-12 21:21:33'),
(7, 23, 'enviada', '', '5547992012997', '📢 *Lembrete de Renovação*\n\nOlá, *carol*!\n\nSeu plano vence em *7 dias*:\n📅 Data: *19/02/2026*\n💵 Valor: *R$ 100,00*\n\nRenove com antecedência e mantenha seu acesso sem interrupções!\n\n✅ Após pagar, envie */pago*\n\nDúvidas? Estamos aqui para ajudar! 🤝', NULL, NULL, '', NULL, NULL, '2026-02-12 21:21:38', '2026-02-12 21:21:38'),
(8, 23, 'enviada', '', '47991063914', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *17*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', NULL, NULL, '', NULL, NULL, '2026-02-12 21:58:12', '2026-02-12 21:58:12'),
(9, 23, 'enviada', '', '47991063914', '⏰ *Lembrete: Seu pagamento vence em breve!*\n\nOlá, *teste*! 👋\n\nSeu pagamento vence em *3 dias*:\n📅 Vencimento: *15/02/2026*\n💰 Valor: *R$ 100,00*\n\nAntecipe e evite a suspensão do serviço!\n\nApós pagar, confirme enviando */pago* 📱\n\n_Estamos à disposição!_ 😊', NULL, NULL, '', NULL, NULL, '2026-02-12 21:58:16', '2026-02-12 21:58:16'),
(10, 23, 'enviada', '', '5547992012997', '📢 *Lembrete de Renovação*\n\nOlá, *carol*!\n\nSeu plano vence em *7 dias*:\n📅 Data: *19/02/2026*\n💵 Valor: *R$ 100,00*\n\nRenove com antecedência e mantenha seu acesso sem interrupções!\n\n✅ Após pagar, envie */pago*\n\nDúvidas? Estamos aqui para ajudar! 🤝', NULL, NULL, '', NULL, NULL, '2026-02-12 21:58:20', '2026-02-12 21:58:20'),
(11, 23, 'enviada', '', '47991063914', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *18*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', NULL, NULL, '', NULL, NULL, '2026-02-13 12:00:09', '2026-02-13 12:00:09'),
(12, 23, 'enviada', '', '4792602871', '✅ *Pagamento Confirmado!*\n\nOlá, *Erick Souza*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 40,00*\n📅 Novo vencimento: *13/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *13/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', NULL, NULL, '', NULL, NULL, '2026-02-13 19:16:45', '2026-02-13 19:16:45'),
(13, 23, 'enviada', '', '4792602871', '🎉 *Bem-vindo(a) ao nosso sistema!*\n\nOlá, *Erick Souza*! 👋\n\nÉ um prazer ter você conosco!\n\n📋 *Informações da sua conta:*\n• Plano: *mensal*\n• Valor mensal: *R$ 40,00*\n• Próximo vencimento: *13/03/2026*\n\n💡 *Comandos úteis:*\n• */pago* - Confirmar pagamento\n• */vencimento* - Ver próximo vencimento\n• */status* - Verificar situação\n• */ajuda* - Lista completa de comandos\n\nQualquer dúvida, estamos à disposição!\n\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-13 19:17:31', '2026-02-13 19:17:31'),
(14, 23, 'enviada', '', '4791741091', '🎉 *Bem-vindo(a) ao nosso sistema!*\n\nOlá, *vivi tia gaspar*! 👋\n\nÉ um prazer ter você conosco!\n\n📋 *Informações da sua conta:*\n• Plano: *mensal*\n• Valor mensal: *R$ 30,00*\n• Próximo vencimento: *13/03/2026*\n\n💡 *Comandos úteis:*\n• */pago* - Confirmar pagamento\n• */vencimento* - Ver próximo vencimento\n• */status* - Verificar situação\n• */ajuda* - Lista completa de comandos\n\nQualquer dúvida, estamos à disposição!\n\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-14 01:12:24', '2026-02-14 01:12:24'),
(15, 23, 'enviada', '', '24998762401', '🎉 *Bem-vindo(a) ao nosso sistema!*\n\nOlá, *Cida*! 👋\n\nÉ um prazer ter você conosco!\n\n📋 *Informações da sua conta:*\n• Plano: *mensal*\n• Valor mensal: *R$ 40,00*\n• Próximo vencimento: *15/03/2026*\n\n💡 *Comandos úteis:*\n• */pago* - Confirmar pagamento\n• */vencimento* - Ver próximo vencimento\n• */status* - Verificar situação\n• */ajuda* - Lista completa de comandos\n\nQualquer dúvida, estamos à disposição!\n\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-14 01:19:32', '2026-02-14 01:19:32'),
(16, 23, 'enviada', '', '1596880285', '✅ *Pagamento Confirmado!*\n\nOlá, *Elviz*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 60,00*\n📅 Novo vencimento: *13/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *13/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', NULL, NULL, '', NULL, NULL, '2026-02-14 01:32:03', '2026-02-14 01:32:03'),
(17, 23, 'enviada', '', '47991063914', '🔒 *Serviço Bloqueado por Falta de Pagamento*\n\n*jou*,\n\nInformamos que seu serviço foi temporariamente bloqueado devido à falta de pagamento.\n\n📋 *Informações:*\n📅 Vencimento: *26/01/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *19*\n\nPara reativar seu acesso:\n1️⃣ Realize o pagamento\n2️⃣ Envie o comprovante\n3️⃣ Confirme com */pago*\n\nRegularize hoje e volte a aproveitar! 🔓', NULL, NULL, '', NULL, NULL, '2026-02-14 12:00:09', '2026-02-14 12:00:09'),
(18, 23, 'enviada', '', '4791063914', '⚠️ *Pagamento em Atraso*\n\nOlá, *Teste16*.\n\nIdentificamos que seu pagamento está *em atraso*:\n📅 Vencimento: *13/02/2026*\n💰 Valor: *R$ 40,00*\n⏱️ Dias em atraso: *1*\n\n🚨 Regularize agora para evitar suspensão do serviço!\n\nApós pagar, confirme com */pago*\n\n_Contamos com sua compreensão._ 🙏', NULL, NULL, '', NULL, NULL, '2026-02-14 12:00:13', '2026-02-14 12:00:13'),
(19, 23, 'enviada', '', '47991063914', '✅ *Renovação Concluída com Sucesso!*\n\nOlá, *jou*!\nSua assinatura foi renovada e está ativa até:\n\n📅 *Data de expiração:*\n26/01/2026\n\nAgradecemos sua confiança em nossos serviços!\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\n\nAproveite o entretenimento sem limites! 🎁🎬🍿', NULL, NULL, '', NULL, NULL, '2026-02-14 14:29:32', '2026-02-14 14:29:32'),
(20, 23, 'enviada', '', '1596880285', '💰 *COBRANÇA*\n\nElvis, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 60,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-14 17:46:03', '2026-02-14 17:46:03'),
(21, 23, 'enviada', '', '4791063914', '💰 *COBRANÇA*\n\nTeste16, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 40,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-14 17:46:34', '2026-02-14 17:46:34'),
(22, 23, 'enviada', '', '4791063914', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Teste16*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *16/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-14 22:01:29', '2026-02-14 22:01:29'),
(23, 23, 'enviada', '', '5519983457931', '✅ *Pagamento Confirmado!*\n\nOlá, *Iago*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 40,00*\n📅 Novo vencimento: *16/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *16/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', NULL, NULL, '', NULL, NULL, '2026-02-14 22:30:57', '2026-02-14 22:30:57'),
(24, 23, 'enviada', '', '5519983457931', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Iago*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *16/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-14 22:31:11', '2026-02-14 22:31:11'),
(25, 23, 'enviada', '', '4792602871', '💰 *COBRANÇA*\n\nErick Souza, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 40,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-15 15:02:01', '2026-02-15 15:02:01'),
(26, 23, 'enviada', '', '554788117041', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Paulo Itj vizinho*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 25,00*\r\n• Próximo vencimento: *17/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-16 01:06:49', '2026-02-16 01:06:49'),
(27, 23, 'enviada', '', '554788117041', '✅ *Pagamento Confirmado!*\n\nOlá, *Paulo Itj vizinho*!\n\nRecebemos seu pagamento com sucesso!\n\n📋 *Detalhes:*\n💰 Valor: *R$ 25,00*\n📅 Novo vencimento: *17/03/2026*\n✅ Status: *Em dia*\n\nObrigado pela preferência! 🙏\n\nSeu acesso está garantido até *17/03/2026*.\n\n_Continue aproveitando nossos serviços!_ 🎬🍿', NULL, NULL, '', NULL, NULL, '2026-02-16 01:07:12', '2026-02-16 01:07:12'),
(28, 23, 'enviada', '', '4792012997', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-16 16:14:27', '2026-02-16 16:14:27'),
(29, 23, 'enviada', '', '4792012997', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-16 17:01:43', '2026-02-16 17:01:43'),
(30, 23, 'enviada', '', '4792012997', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-16 17:20:18', '2026-02-16 17:20:18'),
(31, 23, 'enviada', '', '554792083580', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *livia*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 0,01*\r\n• Próximo vencimento: *13/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-16 17:58:23', '2026-02-16 17:58:23'),
(32, 23, 'enviada', '', '554792083580', '💰 *COBRANÇA*\n\nlivia, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 0,01\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-16 17:59:52', '2026-02-16 17:59:52'),
(33, 23, 'enviada', '', '4792012997', '💰 *COBRANÇA*\n\ncarol, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 100,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-16 18:01:33', '2026-02-16 18:01:33'),
(34, 23, 'enviada', '', '554792083580', '💰 *COBRANÇA*\n\nlivia, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ 1,00\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, '', NULL, NULL, '2026-02-16 19:34:54', '2026-02-16 19:34:54'),
(35, 23, 'enviada', '', '4799999', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *teste lucros reais*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *18/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, 'erro', NULL, NULL, '2026-02-17 01:14:34', '2026-02-17 01:14:34'),
(36, 23, 'enviada', '', '4792012997', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *carol*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *trimestral*\r\n• Valor mensal: *R$ 100,00*\r\n• Próximo vencimento: *17/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, 'erro', NULL, NULL, '2026-02-17 14:58:36', '2026-02-17 14:58:36'),
(37, 23, 'enviada', '', '4792012997', '🔒 *Olá, carol.*\r\n\r\nInfelizmente precisamos suspender temporariamente seu acesso devido ao atraso de *0 dias* no pagamento.\r\n\r\n💰 *Valor em aberto:* R$ {valor}\r\n\r\nMas não se preocupe — assim que o pagamento for confirmado, seu acesso é *reativado imediatamente*! ⚡\r\n\r\nRegularize agora e volte a aproveitar o serviço sem interrupções.\r\n\r\nQualquer dúvida, estamos aqui! 💬', NULL, NULL, 'erro', NULL, NULL, '2026-02-17 15:01:16', '2026-02-17 15:01:16'),
(38, 23, 'enviada', '', '4792012997', '📅 *Olá, carol!*\r\n\r\nPassando para dar um lembrete amigável 😊\r\n\r\nSua mensalidade vence em *3 dias*, no dia *{data_vencimento}*.\r\n\r\n💰 *Valor:* R$ {valor}\r\n\r\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\r\n\r\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬', NULL, NULL, '', NULL, NULL, '2026-02-17 15:01:48', '2026-02-17 15:01:48'),
(39, 23, 'enviada', '', '11972421904', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Dry / Ios VIvo*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *18/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:34:15', '2026-02-17 19:34:15'),
(40, 23, 'enviada', '', '15997393627', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Clovis / Ios Vivo*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *07/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:35:25', '2026-02-17 19:35:25'),
(41, 23, 'enviada', '', '35997328685', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Gabriel / Vivo ios*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *20/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:42:37', '2026-02-17 19:42:37'),
(42, 23, 'enviada', '', '47997180643', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Rodrigo*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *18/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:46:33', '2026-02-17 19:46:33'),
(43, 23, 'enviada', '', '15996605722', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Kev / IOS VIVO*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *17/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:48:18', '2026-02-17 19:48:18'),
(44, 23, 'enviada', '', '47996618993', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Leandro / VIVO IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *08/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, 'erro', NULL, NULL, '2026-02-17 19:50:27', '2026-02-17 19:50:27'),
(45, 23, 'enviada', '', '15996618993', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Leandro / VIVO IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *08/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:51:51', '2026-02-17 19:51:51'),
(46, 23, 'enviada', '', '15996448994', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Pablo / Combo Tv + ios*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 60,00*\r\n• Próximo vencimento: *16/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:55:18', '2026-02-17 19:55:18'),
(47, 23, 'enviada', '', '15996010925', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Diego Paiakan / ViVo IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *17/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:56:55', '2026-02-17 19:56:55'),
(48, 23, 'enviada', '', '15997872089', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Josue / VIVO IOS*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 35,00*\r\n• Próximo vencimento: *21/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 19:58:20', '2026-02-17 19:58:20'),
(49, 23, 'enviada', '', '3399921854', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Solan / IOS VIVO*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 30,00*\r\n• Próximo vencimento: *10/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 20:01:07', '2026-02-17 20:01:07'),
(50, 23, 'enviada', '', '4792602871', '🔔 *Olá, Erick Souza!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, '', NULL, NULL, '2026-02-17 20:28:53', '2026-02-17 20:28:53'),
(51, 23, 'enviada', '', '47992012997', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *carol*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 10,00*\r\n• Próximo vencimento: *17/03/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 21:52:42', '2026-02-17 21:52:42'),
(52, 23, 'enviada', '', '41985045498', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *Nando5498*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 40,00*\r\n• Próximo vencimento: *19/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 22:42:17', '2026-02-17 22:42:17'),
(53, 23, 'enviada', '', '47991063914', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *johnny*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *mensal*\r\n• Valor mensal: *R$ 1,00*\r\n• Próximo vencimento: *17/02/2026*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', NULL, NULL, '', NULL, NULL, '2026-02-17 22:59:40', '2026-02-17 22:59:40'),
(54, 23, 'enviada', '', '47991063914', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, '', NULL, NULL, '2026-02-17 23:00:32', '2026-02-17 23:00:32'),
(55, 23, 'enviada', '', '15997393627', '✅ *Renovação Concluída com Sucesso!*\n\nOlá, *Clovis / Ios Vivo*!\nSua assinatura foi renovada e está ativa até:\n\n📅 *Data de expiração:*\n19/03/2026\n\nAgradecemos sua confiança em nossos serviços!\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\n\nAproveite o entretenimento sem limites! 🎁🎬🍿', NULL, NULL, '', NULL, NULL, '2026-02-17 23:28:18', '2026-02-17 23:28:18'),
(56, 23, 'enviada', '', '47991063914', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, '', NULL, NULL, '2026-02-17 23:34:44', '2026-02-17 23:34:44'),
(57, 23, 'enviada', '', '47991063914', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 1,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* TELEFONE\r\n📌 *Chave:* 47996105435\r\n👤 *Beneficiário:* Johnny Schmitt ou JtvPlay Eletronicos\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, '', NULL, NULL, '2026-02-18 00:06:47', '2026-02-18 00:06:47'),
(58, 23, 'enviada', '', '47991063914', '🔔 *Olá, johnny!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ 1,00\r\n📅 *Vencimento:* 17/02/2026\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* EMAIL\r\n📌 *Chave:* pix@voidplay.com.br\r\n👤 *Beneficiário:* João Silva MEI\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, '', NULL, NULL, '2026-02-18 00:08:29', '2026-02-18 00:08:29');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_mensagens_log`
--

CREATE TABLE `whatsapp_mensagens_log` (
  `id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `template_id` int(11) DEFAULT NULL,
  `agendamento_id` int(11) DEFAULT NULL,
  `gatilho_id` int(11) DEFAULT NULL,
  `destinatario` varchar(20) NOT NULL,
  `tipo_mensagem` enum('texto','imagem','audio','video','documento') DEFAULT 'texto',
  `conteudo` text DEFAULT NULL,
  `media_url` varchar(500) DEFAULT NULL,
  `status` enum('enviado','entregue','lido','erro') DEFAULT 'enviado',
  `erro_mensagem` text DEFAULT NULL,
  `message_id` varchar(100) DEFAULT NULL,
  `enviado_em` timestamp NOT NULL DEFAULT current_timestamp(),
  `entregue_em` timestamp NULL DEFAULT NULL,
  `lido_em` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_palavras_chave`
--

CREATE TABLE `whatsapp_palavras_chave` (
  `id` int(11) NOT NULL,
  `palavra_chave` varchar(100) NOT NULL,
  `tipo_acao` enum('confirmar_pagamento','resposta_automatica','abrir_ticket','custom') NOT NULL,
  `template_resposta_id` int(11) DEFAULT NULL,
  `resposta_texto` text DEFAULT NULL,
  `acao_automatica` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`acao_automatica`)),
  `status` enum('ativo','inativo') DEFAULT 'ativo',
  `criado_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `whatsapp_palavras_chave`
--

INSERT INTO `whatsapp_palavras_chave` (`id`, `palavra_chave`, `tipo_acao`, `template_resposta_id`, `resposta_texto`, `acao_automatica`, `status`, `criado_em`) VALUES
(1, 'pago', 'confirmar_pagamento', NULL, 'Pagamento recebido! ✅ Estamos processando. Aguarde confirmação.', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 02:30:19'),
(2, 'pagamento', 'confirmar_pagamento', NULL, 'Pagamento recebido! ✅ Processando...', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 02:30:19'),
(3, 'paguei', 'confirmar_pagamento', NULL, 'Obrigado! ✅ Recebemos seu comprovante.', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 02:30:19'),
(4, 'comprovante', 'confirmar_pagamento', NULL, 'Comprovante recebido! ✅ Aguarde processamento.', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 02:30:19'),
(5, 'pago', 'confirmar_pagamento', NULL, 'Pagamento recebido! ✅ Estamos processando. Aguarde confirmação.', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 03:06:35'),
(6, 'pagamento', 'confirmar_pagamento', NULL, 'Pagamento recebido! ✅ Processando...', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 03:06:35'),
(7, 'paguei', 'confirmar_pagamento', NULL, 'Obrigado! ✅ Recebemos seu comprovante.', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 03:06:35'),
(8, 'comprovante', 'confirmar_pagamento', NULL, 'Comprovante recebido! ✅ Aguarde processamento.', '{\"baixar_fatura\": true, \"notificar_admin\": true}', 'ativo', '2026-01-22 03:06:35');

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_templates`
--

CREATE TABLE `whatsapp_templates` (
  `id` int(11) NOT NULL,
  `nome` varchar(255) NOT NULL,
  `descricao` text DEFAULT NULL,
  `tipo` enum('texto','imagem','audio','video','documento') DEFAULT 'texto',
  `gatilho` varchar(50) DEFAULT NULL COMMENT 'Ex: D0, D7, ATRASO_1, renovacao_sucesso',
  `conteudo` text NOT NULL,
  `media_url` varchar(500) DEFAULT NULL,
  `variaveis` text DEFAULT NULL,
  `status` enum('ativo','inativo') DEFAULT 'ativo',
  `criado_por` int(11) DEFAULT NULL,
  `criado_em` datetime DEFAULT current_timestamp(),
  `atualizado_em` datetime DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Despejando dados para a tabela `whatsapp_templates`
--

INSERT INTO `whatsapp_templates` (`id`, `nome`, `descricao`, `tipo`, `gatilho`, `conteudo`, `media_url`, `variaveis`, `status`, `criado_por`, `criado_em`, `atualizado_em`) VALUES
(1, 'Renovação Concluída', 'Mensagem enviada após confirmação de pagamento e renovação', 'texto', 'renovacao_sucesso', '✅ *Renovação Concluída com Sucesso!*\n\nOlá, *{nome}*!\nSua assinatura foi renovada e está ativa até:\n\n📅 *Data de expiração:*\n{vencimento}\n\nAgradecemos sua confiança em nossos serviços!\nPara continuar usando o sistema após essa data, entre em contato para realizar uma nova renovação.\n\nAproveite o entretenimento sem limites! 🎁🎬🍿', NULL, NULL, 'ativo', NULL, '2026-02-12 15:42:43', NULL),
(2, 'Cobrança D0 - Vencimento Hoje', 'Enviado no dia do vencimento', 'texto', 'D0', '🔔 *Lembrete de Pagamento*\n\nOlá, *{nome}*!\n\nSeu pagamento vence *HOJE* ({vencimento}).\n💰 Valor: *R$ {valor_fatura}*\n\n📱 Para confirmar o pagamento, envie */pago*\n\n_Obrigado pela preferência!_ 🙏', NULL, NULL, 'inativo', NULL, '2026-02-12 15:42:43', '2026-02-16 16:37:13'),
(3, 'Cobrança D3 - Vence em 3 dias', 'Lembrete 3 dias antes do vencimento', 'texto', 'D3', '⏰ *Lembrete: Seu pagamento vence em breve!*\n\nOlá, *{nome}*! 👋\n\nSeu pagamento vence em *3 dias*:\n📅 Vencimento: *{vencimento}*\n💰 Valor: *R$ {valor_fatura}*\n\nAntecipe e evite a suspensão do serviço!\n\nApós pagar, confirme enviando */pago* 📱\n\n_Estamos à disposição!_ 😊', NULL, NULL, 'inativo', NULL, '2026-02-12 15:42:43', '2026-02-16 16:37:13'),
(4, 'Cobrança D7 - Vence em 7 dias', 'Primeiro lembrete - 7 dias antes', 'texto', 'D7', '📢 *Lembrete de Renovação*\n\nOlá, *{nome}*!\n\nSeu plano vence em *7 dias*:\n📅 Data: *{vencimento}*\n💵 Valor: *R$ {valor_fatura}*\n\nRenove com antecedência e mantenha seu acesso sem interrupções!\n\n✅ Após pagar, envie */pago*\n\nDúvidas? Estamos aqui para ajudar! 🤝', NULL, NULL, 'inativo', NULL, '2026-02-12 15:42:43', '2026-02-16 16:37:13'),
(5, 'Cobrança D-1 - Atrasado 1 dia', 'Primeiro aviso de atraso', 'texto', 'ATRASO_1', '⚠️ *Pagamento em Atraso*\n\nOlá, *{nome}*.\n\nIdentificamos que seu pagamento está *em atraso*:\n📅 Vencimento: *{vencimento}*\n💰 Valor: *R$ {valor_fatura}*\n⏱️ Dias em atraso: *{dias_atraso}*\n\n🚨 Regularize agora para evitar suspensão do serviço!\n\nApós pagar, confirme com */pago*\n\n_Contamos com sua compreensão._ 🙏', NULL, NULL, 'inativo', NULL, '2026-02-12 15:42:43', '2026-02-16 16:37:13'),
(6, 'Cobrança D-3 - Atrasado 3 dias', 'Aviso de suspensão iminente', 'texto', 'ATRASO_3', '🔴 *URGENTE: Pagamento Atrasado*\n\nPrezado(a) *{nome}*,\n\nSeu pagamento está com *3 dias de atraso*:\n📅 Venceu em: *{vencimento}*\n💰 Valor: *R$ {valor_fatura}*\n⏱️ Atraso: *{dias_atraso} dias*\n\n⚠️ *ATENÇÃO:* Seu serviço pode ser suspenso a qualquer momento!\n\nRegularize URGENTEMENTE para evitar o bloqueio.\n\nApós pagar, envie */pago* ✅\n\n_Agradecemos sua atenção imediata._', NULL, NULL, 'inativo', NULL, '2026-02-12 15:42:43', '2026-02-16 16:37:13'),
(7, 'Cobrança D-7 - Atrasado 7 dias', 'Último aviso antes do bloqueio', 'texto', 'ATRASO_7', '⛔ *ÚLTIMO AVISO: Serviço Será Bloqueado*\n\n*{nome}*,\n\nSeu pagamento está com *7 dias de atraso*:\n📅 Vencimento: *{vencimento}*\n💰 Valor: *R$ {valor_fatura}*\n⏱️ Atraso: *{dias_atraso} dias*\n\n🚫 *Seu serviço será BLOQUEADO nas próximas 24 horas!*\n\nEsta é sua última chance de regularizar e manter o acesso.\n\nPague AGORA e confirme com */pago*\n\n_Não perca seu acesso!_ ⚠️', NULL, NULL, 'inativo', NULL, '2026-02-12 15:42:43', '2026-02-16 16:37:13'),
(8, 'Boas-vindas', 'Mensagem de boas-vindas para novos clientes', 'texto', 'novo_cliente', '🎉 *Bem-vindo(a) ao nosso sistema!*\r\n\r\nOlá, *{nome}*! 👋\r\n\r\nÉ um prazer ter você conosco!\r\n\r\n📋 *Informações da sua conta:*\r\n• Plano: *{plano}*\r\n• Valor mensal: *R$ {valor_fatura}*\r\n• Próximo vencimento: *{vencimento}*\r\n\r\nQualquer dúvida, estamos à disposição!\r\n\r\nAproveite! 🚀✨', '', NULL, 'ativo', NULL, '2026-02-12 15:42:43', '2026-02-13 22:21:31'),
(9, 'Confirmação de Pagamento', 'Mensagem de confirmação após pagamento manual', 'texto', 'pagamento_manual', '✅ *Pagamento Confirmado, {nome}!*\r\n\r\nQue ótima notícia! Recebemos seu pagamento e sua conta já está regularizada. 🎉\r\n\r\n💰 *Valor pago:* R$ {valor}\r\n📅 *Próximo vencimento:* {data_vencimento}\r\n\r\nContinue aproveitando o serviço à vontade! 🚀\r\n\r\nObrigado pela confiança e pela parceria! 🙏\r\n*Qualquer coisa, é só chamar!* 💬', NULL, NULL, 'ativo', NULL, '2026-02-12 15:42:43', '2026-02-16 17:55:34'),
(10, 'Serviço Bloqueado', 'Notificação de bloqueio por falta de pagamento', 'texto', 'bloqueio', '🔒 *Olá, {nome}.*\r\n\r\nInfelizmente precisamos suspender temporariamente seu acesso devido ao atraso de *{dias_atraso} dias* no pagamento.\r\n\r\n💰 *Valor em aberto:* R$ {valor}\r\n\r\nMas não se preocupe — assim que o pagamento for confirmado, seu acesso é *reativado imediatamente*! ⚡\r\n\r\nRegularize agora e volte a aproveitar o serviço sem interrupções.\r\n\r\nQualquer dúvida, estamos aqui! 💬', NULL, NULL, 'ativo', NULL, '2026-02-12 15:42:43', '2026-02-16 17:55:26'),
(11, 'Lembrete Antecedência', NULL, 'texto', 'LEMBRETE', '📅 *Olá, {nome}!*\r\n\r\nPassando para dar um lembrete amigável 😊\r\n\r\nSua mensalidade vence em *3 dias*, no dia *{data_vencimento}*.\r\n\r\n💰 *Valor:* R$ {valor}\r\n\r\nGaranta sua renovação antes do prazo e continue aproveitando o serviço sem interrupções! 🚀\r\n\r\nQualquer dúvida, é só chamar aqui. Estamos à disposição! 💬', NULL, NULL, 'ativo', NULL, '2026-02-14 14:23:58', '2026-02-16 17:52:55'),
(12, 'Vencimento Hoje - Mercado Pago', NULL, 'texto', 'VENCIMENTO_HOJE', '🔔 *Olá, {nome}!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n👇 *Pague agora com PIX — rápido e fácil:*\r\n{link_pagamento}\r\n\r\n✅ O pagamento é confirmado *automaticamente* assim que identificado!\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, 'ativo', NULL, '2026-02-14 14:23:58', '2026-02-16 17:53:05'),
(13, 'Vencimento Hoje - PIX Manual', NULL, 'texto', 'VENCIMENTO_HOJE', '🔔 *Olá, {nome}!*\r\n\r\nHoje é o dia do vencimento da sua mensalidade! 📆\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Vencimento:* {data_vencimento}\r\n\r\n📋 *Dados para pagamento PIX:*\r\n──────────────────\r\n🔑 *Tipo:* {pix_tipo}\r\n📌 *Chave:* {pix_chave}\r\n👤 *Beneficiário:* {pix_beneficiario}\r\n──────────────────\r\n\r\nApós realizar o pagamento, responda aqui com *\"pago\"* para confirmarmos! ✅\r\n\r\nObrigado pela confiança! 🙏', NULL, NULL, 'ativo', NULL, '2026-02-14 14:23:58', '2026-02-16 17:53:12'),
(14, 'Atraso 1 dia', NULL, 'texto', 'ATRASO_1', '⚠️ *PAGAMENTO EM ATRASO*\n\nOlá {nome},\nIdentificamos que sua mensalidade está em atraso.\n\n📅 Dias de atraso: {dias_atraso}\n\nRegularize para evitar suspensão.', NULL, NULL, 'inativo', NULL, '2026-02-14 14:23:58', '2026-02-16 16:37:13'),
(15, 'Atraso 3 dias', NULL, 'texto', 'ATRASO_3', '🚨 *Atenção, {nome}!*\r\n\r\nSeu pagamento está em atraso há *{dias_atraso} dias* e seu acesso pode ser suspenso em breve.\r\n\r\n💰 *Valor:* R$ {valor}\r\n📅 *Venceu em:* {data_vencimento}\r\n\r\nNão queremos que você fique sem o serviço! 😟\r\n\r\n*Regularize agora* e evite a suspensão. Assim que confirmado, tudo volta ao normal imediatamente! ✅\r\n\r\nPrecisa de ajuda? Fala com a gente! 💬', NULL, NULL, 'ativo', NULL, '2026-02-14 14:23:58', '2026-02-16 17:54:09'),
(16, 'Bloqueio', NULL, 'texto', 'BLOQUEIO', '🚫 *ACESSO BLOQUEADO*\n\nOlá {nome},\nSeu acesso foi bloqueado por falta de pagamento.\n\nEntre em contato para regularizar.', NULL, NULL, 'inativo', NULL, '2026-02-14 14:23:58', '2026-02-16 16:37:13'),
(17, 'Lembrete', NULL, 'texto', 'LEMBRETE', '📅 *LEMBRETE*\n\nOlá {nome}!\nSua mensalidade vence dia {vencimento}\n\n💰 R$ {valor_fatura}', NULL, NULL, 'inativo', NULL, '2026-02-14 14:44:16', '2026-02-16 17:52:46'),
(18, 'Vencimento Hoje', NULL, 'texto', 'VENCIMENTO_HOJE', '💰 *COBRANÇA*\n\n{nome}, vence hoje!\n\n📋 PIX:\n🔑 {pix_tipo}: `{pix_chave}`\n👤 {pix_beneficiario}\n💰 R$ {valor_fatura}\n\n🆔 #{fatura_id}\n\n{instrucao_pago}', NULL, NULL, 'inativo', NULL, '2026-02-14 14:44:16', '2026-02-16 16:37:03'),
(19, 'Atraso 1d', NULL, 'texto', 'ATRASO_1', '⚠️ *ATRASO 1 DIA*\n\n{nome}, seu pagamento está com 1 dia de atraso.\n\n💰 R$ {valor_fatura}\n📅 {vencimento}', NULL, NULL, 'inativo', NULL, '2026-02-14 14:44:16', '2026-02-16 16:37:13'),
(20, 'Atraso 3d', NULL, 'texto', 'ATRASO_3', '⚠️ *URGENTE - ATRASO*\n\n{nome}, 3 dias de atraso!\n\nApós 7 dias seu acesso será bloqueado.', NULL, NULL, 'inativo', NULL, '2026-02-14 14:44:16', '2026-02-16 16:37:13'),
(21, 'Bloqueio', NULL, 'texto', 'BLOQUEIO', '🚫 *ACESSO BLOQUEADO*\n\n{nome}, acesso suspenso por falta de pagamento.\n\nEntre em contato para regularizar.', NULL, NULL, 'inativo', NULL, '2026-02-14 14:44:16', '2026-02-16 16:37:13'),
(22, 'Template Padrão', NULL, 'texto', NULL, 'Mensagem padrão', NULL, NULL, 'ativo', NULL, '2026-02-17 13:08:21', NULL);

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_variaveis`
--

CREATE TABLE `whatsapp_variaveis` (
  `id` int(11) NOT NULL,
  `chave` varchar(50) NOT NULL,
  `descricao` varchar(200) DEFAULT NULL,
  `exemplo` varchar(200) DEFAULT NULL,
  `tabela_origem` varchar(50) DEFAULT NULL,
  `campo_origem` varchar(50) DEFAULT NULL,
  `ativo` tinyint(1) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Despejando dados para a tabela `whatsapp_variaveis`
--

INSERT INTO `whatsapp_variaveis` (`id`, `chave`, `descricao`, `exemplo`, `tabela_origem`, `campo_origem`, `ativo`) VALUES
(1, '{nome}', 'Nome do cliente', 'João Silva', 'usuarios', 'nome', 1),
(2, '{email}', 'E-mail do cliente', 'joao@email.com', 'usuarios', 'email', 1),
(3, '{telefone}', 'Telefone do cliente', '47991592447', 'usuarios', 'telefone', 1),
(4, '{plano_nome}', 'Nome do plano', 'Plano Premium', 'planos', 'nome', 1),
(5, '{plano_valor}', 'Valor do plano', 'R$ 99,90', 'planos', 'valor_mensal', 1),
(6, '{data_vencimento}', 'Data de vencimento', '25/02/2026', 'clientes', 'data_vencimento', 1),
(7, '{mensagens_consumidas}', 'Mensagens consumidas no mês', '150', 'clientes', 'mensagens_consumidas', 1),
(8, '{dias_restantes}', 'Dias até vencer', '5 dias', NULL, NULL, 1),
(9, '{data_atual}', 'Data atual', '21/01/2026', NULL, NULL, 1),
(10, '{hora_atual}', 'Hora atual', '23:20', NULL, NULL, 1),
(11, '{empresa_nome}', 'Nome da empresa', 'VOIDPLAY', 'configuracoes', 'valor', 1),
(12, '{suporte_whatsapp}', 'WhatsApp suporte', '47991234567', 'configuracoes', 'valor', 1);

-- --------------------------------------------------------

--
-- Estrutura para tabela `whatsapp_webhooks_recebidos`
--

CREATE TABLE `whatsapp_webhooks_recebidos` (
  `id` int(11) NOT NULL,
  `instancia_id` int(11) NOT NULL,
  `remetente` varchar(20) NOT NULL,
  `tipo_mensagem` enum('texto','imagem','audio','video','documento','sticker') NOT NULL,
  `conteudo` text DEFAULT NULL,
  `media_url` varchar(500) DEFAULT NULL,
  `message_id` varchar(100) DEFAULT NULL,
  `timestamp_whatsapp` bigint(20) DEFAULT NULL,
  `processado` tinyint(1) DEFAULT 0,
  `palavra_chave_detectada` varchar(100) DEFAULT NULL,
  `acao_executada` varchar(50) DEFAULT NULL,
  `recebido_em` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Índices para tabelas despejadas
--

--
-- Índices de tabela `adminwhatsapp`
--
ALTER TABLE `adminwhatsapp`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `telefone` (`telefone`);

--
-- Índices de tabela `admin_whatsapp`
--
ALTER TABLE `admin_whatsapp`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `telefone` (`telefone`),
  ADD KEY `idx_telefone` (`telefone`);

--
-- Índices de tabela `alertas_limite`
--
ALTER TABLE `alertas_limite`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_chave` (`chave_pix_id`),
  ADD KEY `idx_mes_notif` (`mes_referencia`,`notificado`);

--
-- Índices de tabela `assinaturas`
--
ALTER TABLE `assinaturas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cliente_id` (`cliente_id`),
  ADD KEY `plano_id` (`plano_id`);

--
-- Índices de tabela `bot_sessoes`
--
ALTER TABLE `bot_sessoes`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_telefone` (`telefone`),
  ADD KEY `idx_telefone` (`telefone`),
  ADD KEY `idx_estado` (`estado`);

--
-- Índices de tabela `cadastro_links`
--
ALTER TABLE `cadastro_links`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `token` (`token`),
  ADD KEY `idx_plano` (`plano_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_expiracao` (`data_expiracao`);

--
-- Índices de tabela `cadastro_sessoes`
--
ALTER TABLE `cadastro_sessoes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_admin` (`admin_telefone`),
  ADD KEY `idx_expira` (`expira_em`);

--
-- Índices de tabela `cadastro_tokens`
--
ALTER TABLE `cadastro_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `token` (`token`),
  ADD KEY `idx_token` (`token`),
  ADD KEY `idx_usado` (`usado`);

--
-- Índices de tabela `chaves_pix`
--
ALTER TABLE `chaves_pix`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_chave` (`chave`);

--
-- Índices de tabela `clientes`
--
ALTER TABLE `clientes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `usuario_id` (`usuario_id`),
  ADD KEY `plano_id` (`plano_id`),
  ADD KEY `idx_whatsapp` (`whatsapp_cadastrado`),
  ADD KEY `idx_whatsapp_cadastrado` (`whatsapp_cadastrado`),
  ADD KEY `idx_cadastro_token` (`cadastro_token`),
  ADD KEY `idx_vencimento` (`data_vencimento`),
  ADD KEY `idx_status_pagamento` (`status_pagamento`),
  ADD KEY `idx_valor_assinatura` (`valor_assinatura`);

--
-- Índices de tabela `comprovantes_pagamento`
--
ALTER TABLE `comprovantes_pagamento`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_fatura` (`fatura_id`),
  ADD KEY `idx_status` (`status_validacao`);

--
-- Índices de tabela `configuracoes`
--
ALTER TABLE `configuracoes`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uk_chave` (`chave`),
  ADD KEY `idx_categoria` (`categoria`);

--
-- Índices de tabela `contatos_grupo`
--
ALTER TABLE `contatos_grupo`
  ADD PRIMARY KEY (`id`),
  ADD KEY `grupo_id` (`grupo_id`),
  ADD KEY `numero` (`numero`);

--
-- Índices de tabela `evolution_envios`
--
ALTER TABLE `evolution_envios`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_numero` (`numero_destino`),
  ADD KEY `idx_instancia` (`instancia`),
  ADD KEY `idx_data` (`data_envio`);

--
-- Índices de tabela `evolution_mensagens_recebidas`
--
ALTER TABLE `evolution_mensagens_recebidas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_telefone` (`telefone_origem`),
  ADD KEY `idx_processado` (`processado`);

--
-- Índices de tabela `evolution_webhook_logs`
--
ALTER TABLE `evolution_webhook_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_processado` (`processado`),
  ADD KEY `idx_evento` (`evento`);

--
-- Índices de tabela `faturas`
--
ALTER TABLE `faturas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`cliente_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_vencimento` (`data_vencimento`),
  ADD KEY `pix_chave_id` (`pix_chave_id`);

--
-- Índices de tabela `fila_envio_whatsapp`
--
ALTER TABLE `fila_envio_whatsapp`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cliente_id` (`cliente_id`),
  ADD KEY `instancia_id` (`instancia_id`);

--
-- Índices de tabela `grupos_contatos`
--
ALTER TABLE `grupos_contatos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `usuario_id` (`usuario_id`);

--
-- Índices de tabela `grupos_whatsapp`
--
ALTER TABLE `grupos_whatsapp`
  ADD PRIMARY KEY (`id`),
  ADD KEY `criado_por` (`criado_por`),
  ADD KEY `jid` (`jid`);

--
-- Índices de tabela `grupo_contato_membros`
--
ALTER TABLE `grupo_contato_membros`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `grupo_numero` (`grupo_id`,`numero`),
  ADD KEY `grupo_id` (`grupo_id`);

--
-- Índices de tabela `instancias_whatsapp`
--
ALTER TABLE `instancias_whatsapp`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `nome_instancia` (`nome_instancia`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_nome` (`nome_instancia`);

--
-- Índices de tabela `lid_mapping`
--
ALTER TABLE `lid_mapping`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `lid` (`lid`),
  ADD KEY `idx_lid` (`lid`),
  ADD KEY `idx_telefone` (`telefone_real`),
  ADD KEY `idx_cliente` (`cliente_id`);

--
-- Índices de tabela `logs_comandos`
--
ALTER TABLE `logs_comandos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`cliente_id`),
  ADD KEY `idx_whatsapp` (`whatsapp`);

--
-- Índices de tabela `logs_mensagens`
--
ALTER TABLE `logs_mensagens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`cliente_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_data` (`enviado_em`);

--
-- Índices de tabela `logs_sistema`
--
ALTER TABLE `logs_sistema`
  ADD PRIMARY KEY (`id`);

--
-- Índices de tabela `log_cron`
--
ALTER TABLE `log_cron`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_script` (`script`),
  ADD KEY `idx_data` (`executado_em`);

--
-- Índices de tabela `log_envios`
--
ALTER TABLE `log_envios`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`id_cliente`),
  ADD KEY `idx_status` (`status_envio`),
  ADD KEY `idx_data` (`data_envio`);

--
-- Índices de tabela `log_pagamentos`
--
ALTER TABLE `log_pagamentos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`cliente_id`);

--
-- Índices de tabela `mensagens`
--
ALTER TABLE `mensagens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `instancia_id` (`instancia_id`),
  ADD KEY `usuario_id` (`usuario_id`),
  ADD KEY `status` (`status`),
  ADD KEY `tipo_envio` (`tipo_envio`),
  ADD KEY `agendado_para` (`agendado_para`);

--
-- Índices de tabela `mensagens_enviadas`
--
ALTER TABLE `mensagens_enviadas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_instancia` (`instancia_id`),
  ADD KEY `idx_numero` (`numero_destino`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_data` (`data_envio`);

--
-- Índices de tabela `mensagens_log`
--
ALTER TABLE `mensagens_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `mensagem_id` (`mensagem_id`),
  ADD KEY `numero` (`numero`),
  ADD KEY `status` (`status`);

--
-- Índices de tabela `mensagens_midias`
--
ALTER TABLE `mensagens_midias`
  ADD PRIMARY KEY (`id`),
  ADD KEY `usuario_id` (`usuario_id`);

--
-- Índices de tabela `mensagens_recebidas`
--
ALTER TABLE `mensagens_recebidas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_instancia` (`instancia_id`),
  ADD KEY `idx_numero` (`numero_remetente`),
  ADD KEY `idx_lida` (`lida`),
  ADD KEY `idx_data` (`data_recebimento`);

--
-- Índices de tabela `notificacoes_admin`
--
ALTER TABLE `notificacoes_admin`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_lido` (`lido`);

--
-- Índices de tabela `notificacoes_pix`
--
ALTER TABLE `notificacoes_pix`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_chave` (`chave_id`),
  ADD KEY `idx_lida` (`lida`);

--
-- Índices de tabela `pagamentos_historico`
--
ALTER TABLE `pagamentos_historico`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`cliente_id`),
  ADD KEY `idx_data_pagamento` (`data_pagamento`);

--
-- Índices de tabela `payment_logs`
--
ALTER TABLE `payment_logs`
  ADD PRIMARY KEY (`id`);

--
-- Índices de tabela `periodos_renovacao`
--
ALTER TABLE `periodos_renovacao`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_valor` (`valor_min`,`valor_max`);

--
-- Índices de tabela `pix_chaves`
--
ALTER TABLE `pix_chaves`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `chave` (`chave`),
  ADD KEY `idx_ativa` (`ativa`),
  ADD KEY `idx_beneficiario` (`beneficiario`);

--
-- Índices de tabela `planos`
--
ALTER TABLE `planos`
  ADD PRIMARY KEY (`id`);

--
-- Índices de tabela `revendedores`
--
ALTER TABLE `revendedores`
  ADD PRIMARY KEY (`id`),
  ADD KEY `usuario_id` (`usuario_id`);

--
-- Índices de tabela `saldos_clientes`
--
ALTER TABLE `saldos_clientes`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cliente_id` (`cliente_id`),
  ADD KEY `cliente_id_2` (`cliente_id`);

--
-- Índices de tabela `sessoes`
--
ALTER TABLE `sessoes`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `token` (`token`),
  ADD KEY `usuario_id` (`usuario_id`),
  ADD KEY `expira_em` (`expira_em`);

--
-- Índices de tabela `solicitacoes_cadastro`
--
ALTER TABLE `solicitacoes_cadastro`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_email` (`email`),
  ADD KEY `idx_whatsapp` (`whatsapp`);

--
-- Índices de tabela `templates_mensagem`
--
ALTER TABLE `templates_mensagem`
  ADD PRIMARY KEY (`id`),
  ADD KEY `usuario_id` (`usuario_id`),
  ADD KEY `categoria` (`categoria`);

--
-- Índices de tabela `templates_mensagens`
--
ALTER TABLE `templates_mensagens`
  ADD PRIMARY KEY (`id`);

--
-- Índices de tabela `transacoes`
--
ALTER TABLE `transacoes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cliente_id` (`cliente_id`),
  ADD KEY `tipo` (`tipo`),
  ADD KEY `criado_em` (`criado_em`),
  ADD KEY `idx_transacoes_cliente_tipo` (`cliente_id`,`tipo`),
  ADD KEY `idx_transacoes_data_tipo` (`criado_em`,`tipo`);

--
-- Índices de tabela `transacoes_creditos`
--
ALTER TABLE `transacoes_creditos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `usuario_id` (`usuario_id`);

--
-- Índices de tabela `transacoes_pix`
--
ALTER TABLE `transacoes_pix`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_chave` (`chave_pix_id`),
  ADD KEY `idx_cliente` (`cliente_id`),
  ADD KEY `idx_mes_chave` (`mes_referencia`,`chave_pix_id`);

--
-- Índices de tabela `usuarios`
--
ALTER TABLE `usuarios`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `email` (`email`);

--
-- Índices de tabela `webhook_logs`
--
ALTER TABLE `webhook_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_instancia` (`instancia_id`),
  ADD KEY `idx_evento` (`evento`),
  ADD KEY `idx_processado` (`processado`),
  ADD KEY `idx_data` (`data_recebimento`);

--
-- Índices de tabela `whatsapp_agendamentos`
--
ALTER TABLE `whatsapp_agendamentos`
  ADD PRIMARY KEY (`id`);

--
-- Índices de tabela `whatsapp_bot_comandos`
--
ALTER TABLE `whatsapp_bot_comandos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_comando` (`comando`);

--
-- Índices de tabela `whatsapp_bot_logs`
--
ALTER TABLE `whatsapp_bot_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_numero` (`numero_whatsapp`),
  ADD KEY `idx_comando` (`comando`);

--
-- Índices de tabela `whatsapp_campanhas`
--
ALTER TABLE `whatsapp_campanhas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_criado_por` (`criado_por`),
  ADD KEY `idx_hora_agendamento` (`hora_agendamento`),
  ADD KEY `idx_recorrencia` (`recorrencia`);

--
-- Índices de tabela `whatsapp_campanhas_destinatarios`
--
ALTER TABLE `whatsapp_campanhas_destinatarios`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_campanha` (`campanha_id`),
  ADD KEY `idx_status` (`status`);

--
-- Índices de tabela `whatsapp_comandos`
--
ALTER TABLE `whatsapp_comandos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cliente` (`cliente_id`),
  ADD KEY `idx_whatsapp` (`whatsapp`),
  ADD KEY `idx_comando` (`comando`),
  ADD KEY `idx_data` (`data_comando`),
  ADD KEY `idx_processado` (`processado`);

--
-- Índices de tabela `whatsapp_contatos`
--
ALTER TABLE `whatsapp_contatos`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_contato` (`instancia_id`,`numero`),
  ADD KEY `idx_instancia` (`instancia_id`),
  ADD KEY `idx_numero` (`numero`);

--
-- Índices de tabela `whatsapp_gatilhos`
--
ALTER TABLE `whatsapp_gatilhos`
  ADD PRIMARY KEY (`id`);

--
-- Índices de tabela `whatsapp_instancias`
--
ALTER TABLE `whatsapp_instancias`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cliente_id` (`cliente_id`);

--
-- Índices de tabela `whatsapp_logs`
--
ALTER TABLE `whatsapp_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_tipo` (`tipo`),
  ADD KEY `idx_criado_em` (`criado_em`);

--
-- Índices de tabela `whatsapp_mensagens`
--
ALTER TABLE `whatsapp_mensagens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `instancia_id` (`instancia_id`);

--
-- Índices de tabela `whatsapp_mensagens_log`
--
ALTER TABLE `whatsapp_mensagens_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_destinatario` (`destinatario`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_enviado_em` (`enviado_em`);

--
-- Índices de tabela `whatsapp_palavras_chave`
--
ALTER TABLE `whatsapp_palavras_chave`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_palavra` (`palavra_chave`);

--
-- Índices de tabela `whatsapp_templates`
--
ALTER TABLE `whatsapp_templates`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gatilho` (`gatilho`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_criado_por` (`criado_por`);

--
-- Índices de tabela `whatsapp_variaveis`
--
ALTER TABLE `whatsapp_variaveis`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `chave` (`chave`);

--
-- Índices de tabela `whatsapp_webhooks_recebidos`
--
ALTER TABLE `whatsapp_webhooks_recebidos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_remetente` (`remetente`),
  ADD KEY `idx_processado` (`processado`),
  ADD KEY `idx_palavra_chave` (`palavra_chave_detectada`);

--
-- AUTO_INCREMENT para tabelas despejadas
--

--
-- AUTO_INCREMENT de tabela `adminwhatsapp`
--
ALTER TABLE `adminwhatsapp`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT de tabela `admin_whatsapp`
--
ALTER TABLE `admin_whatsapp`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT de tabela `alertas_limite`
--
ALTER TABLE `alertas_limite`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `assinaturas`
--
ALTER TABLE `assinaturas`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `bot_sessoes`
--
ALTER TABLE `bot_sessoes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `cadastro_links`
--
ALTER TABLE `cadastro_links`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `cadastro_sessoes`
--
ALTER TABLE `cadastro_sessoes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=55;

--
-- AUTO_INCREMENT de tabela `cadastro_tokens`
--
ALTER TABLE `cadastro_tokens`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `chaves_pix`
--
ALTER TABLE `chaves_pix`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT de tabela `clientes`
--
ALTER TABLE `clientes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62;

--
-- AUTO_INCREMENT de tabela `comprovantes_pagamento`
--
ALTER TABLE `comprovantes_pagamento`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `configuracoes`
--
ALTER TABLE `configuracoes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75;

--
-- AUTO_INCREMENT de tabela `contatos_grupo`
--
ALTER TABLE `contatos_grupo`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `evolution_envios`
--
ALTER TABLE `evolution_envios`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `evolution_mensagens_recebidas`
--
ALTER TABLE `evolution_mensagens_recebidas`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9182;

--
-- AUTO_INCREMENT de tabela `evolution_webhook_logs`
--
ALTER TABLE `evolution_webhook_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24651;

--
-- AUTO_INCREMENT de tabela `faturas`
--
ALTER TABLE `faturas`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT de tabela `fila_envio_whatsapp`
--
ALTER TABLE `fila_envio_whatsapp`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT de tabela `grupos_contatos`
--
ALTER TABLE `grupos_contatos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `grupos_whatsapp`
--
ALTER TABLE `grupos_whatsapp`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `grupo_contato_membros`
--
ALTER TABLE `grupo_contato_membros`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `instancias_whatsapp`
--
ALTER TABLE `instancias_whatsapp`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT de tabela `lid_mapping`
--
ALTER TABLE `lid_mapping`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT de tabela `logs_comandos`
--
ALTER TABLE `logs_comandos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `logs_mensagens`
--
ALTER TABLE `logs_mensagens`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;

--
-- AUTO_INCREMENT de tabela `logs_sistema`
--
ALTER TABLE `logs_sistema`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=122;

--
-- AUTO_INCREMENT de tabela `log_cron`
--
ALTER TABLE `log_cron`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT de tabela `log_envios`
--
ALTER TABLE `log_envios`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=173;

--
-- AUTO_INCREMENT de tabela `log_pagamentos`
--
ALTER TABLE `log_pagamentos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `mensagens`
--
ALTER TABLE `mensagens`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;

--
-- AUTO_INCREMENT de tabela `mensagens_enviadas`
--
ALTER TABLE `mensagens_enviadas`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `mensagens_log`
--
ALTER TABLE `mensagens_log`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;

--
-- AUTO_INCREMENT de tabela `mensagens_midias`
--
ALTER TABLE `mensagens_midias`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `mensagens_recebidas`
--
ALTER TABLE `mensagens_recebidas`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `notificacoes_admin`
--
ALTER TABLE `notificacoes_admin`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `notificacoes_pix`
--
ALTER TABLE `notificacoes_pix`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `pagamentos_historico`
--
ALTER TABLE `pagamentos_historico`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `payment_logs`
--
ALTER TABLE `payment_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `periodos_renovacao`
--
ALTER TABLE `periodos_renovacao`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT de tabela `pix_chaves`
--
ALTER TABLE `pix_chaves`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT de tabela `planos`
--
ALTER TABLE `planos`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT de tabela `revendedores`
--
ALTER TABLE `revendedores`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT de tabela `saldos_clientes`
--
ALTER TABLE `saldos_clientes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT de tabela `sessoes`
--
ALTER TABLE `sessoes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=116;

--
-- AUTO_INCREMENT de tabela `solicitacoes_cadastro`
--
ALTER TABLE `solicitacoes_cadastro`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT de tabela `templates_mensagem`
--
ALTER TABLE `templates_mensagem`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT de tabela `templates_mensagens`
--
ALTER TABLE `templates_mensagens`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT de tabela `transacoes`
--
ALTER TABLE `transacoes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;

--
-- AUTO_INCREMENT de tabela `transacoes_creditos`
--
ALTER TABLE `transacoes_creditos`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `transacoes_pix`
--
ALTER TABLE `transacoes_pix`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `usuarios`
--
ALTER TABLE `usuarios`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;

--
-- AUTO_INCREMENT de tabela `webhook_logs`
--
ALTER TABLE `webhook_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `whatsapp_agendamentos`
--
ALTER TABLE `whatsapp_agendamentos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `whatsapp_bot_comandos`
--
ALTER TABLE `whatsapp_bot_comandos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT de tabela `whatsapp_bot_logs`
--
ALTER TABLE `whatsapp_bot_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=260;

--
-- AUTO_INCREMENT de tabela `whatsapp_campanhas`
--
ALTER TABLE `whatsapp_campanhas`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT de tabela `whatsapp_campanhas_destinatarios`
--
ALTER TABLE `whatsapp_campanhas_destinatarios`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;

--
-- AUTO_INCREMENT de tabela `whatsapp_comandos`
--
ALTER TABLE `whatsapp_comandos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT de tabela `whatsapp_contatos`
--
ALTER TABLE `whatsapp_contatos`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `whatsapp_gatilhos`
--
ALTER TABLE `whatsapp_gatilhos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `whatsapp_instancias`
--
ALTER TABLE `whatsapp_instancias`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;

--
-- AUTO_INCREMENT de tabela `whatsapp_logs`
--
ALTER TABLE `whatsapp_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `whatsapp_mensagens`
--
ALTER TABLE `whatsapp_mensagens`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=59;

--
-- AUTO_INCREMENT de tabela `whatsapp_mensagens_log`
--
ALTER TABLE `whatsapp_mensagens_log`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT de tabela `whatsapp_palavras_chave`
--
ALTER TABLE `whatsapp_palavras_chave`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT de tabela `whatsapp_templates`
--
ALTER TABLE `whatsapp_templates`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT de tabela `whatsapp_variaveis`
--
ALTER TABLE `whatsapp_variaveis`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT de tabela `whatsapp_webhooks_recebidos`
--
ALTER TABLE `whatsapp_webhooks_recebidos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

-- --------------------------------------------------------

--
-- Estrutura para view `vw_dashboard_admin`
--
DROP TABLE IF EXISTS `vw_dashboard_admin`;

CREATE ALGORITHM=UNDEFINED DEFINER=`voidplay`@`localhost` SQL SECURITY DEFINER VIEW `vw_dashboard_admin`  AS SELECT (select count(0) from `clientes`) AS `total_clientes`, (select count(0) from `clientes` where to_days(`clientes`.`data_vencimento`) - to_days(curdate()) < 0) AS `clientes_atrasados`, (select count(0) from `clientes` where to_days(`clientes`.`data_vencimento`) - to_days(curdate()) between 0 and 3) AS `clientes_vencendo`, (select count(0) from `clientes` where `clientes`.`data_bloqueio` is not null) AS `clientes_bloqueados`, (select coalesce(sum(`clientes`.`valor_assinatura`),0) from `clientes`) AS `receita_mensal_prevista`, (select coalesce(sum(`saldos_clientes`.`saldo_atual`),0) from `saldos_clientes`) AS `saldo_total`, (select coalesce(sum(`transacoes`.`valor`),0) from `transacoes` where `transacoes`.`tipo` = 'pagamento' and `transacoes`.`status` = 'concluida' and cast(`transacoes`.`criado_em` as date) = curdate()) AS `recebido_hoje`, (select coalesce(sum(`transacoes`.`valor`),0) from `transacoes` where `transacoes`.`tipo` = 'pagamento' and `transacoes`.`status` = 'concluida' and yearweek(`transacoes`.`criado_em`,0) = yearweek(curdate(),0)) AS `recebido_semana`, (select coalesce(sum(`transacoes`.`valor`),0) from `transacoes` where `transacoes`.`tipo` = 'pagamento' and `transacoes`.`status` = 'concluida' and month(`transacoes`.`criado_em`) = month(curdate()) and year(`transacoes`.`criado_em`) = year(curdate())) AS `recebido_mes`, (select coalesce(sum(`transacoes`.`valor`),0) from `transacoes` where `transacoes`.`tipo` = 'pagamento' and `transacoes`.`status` = 'concluida' and year(`transacoes`.`criado_em`) = year(curdate())) AS `recebido_ano`, (select coalesce(sum(`saldos_clientes`.`total_pago`),0) from `saldos_clientes`) AS `total_pago_historico`, (select coalesce(sum(`saldos_clientes`.`total_cobrado`),0) from `saldos_clientes`) AS `total_cobrado_historico` ;

-- --------------------------------------------------------

--
-- Estrutura para view `vw_devedores`
--
DROP TABLE IF EXISTS `vw_devedores`;

CREATE ALGORITHM=UNDEFINED DEFINER=`voidplay`@`localhost` SQL SECURITY DEFINER VIEW `vw_devedores`  AS SELECT `c`.`id` AS `id`, `c`.`empresa` AS `empresa`, `c`.`valor_assinatura` AS `valor_assinatura`, `sc`.`saldo_atual` AS `saldo_atual`, `sc`.`total_cobrado` AS `total_cobrado`, `sc`.`total_pago` AS `total_pago`, to_days(curdate()) - to_days(`c`.`data_vencimento`) AS `dias_atraso`, CASE WHEN `sc`.`saldo_atual` < 0 THEN 'DEVENDO' WHEN `sc`.`saldo_atual` = 0 AND `c`.`data_vencimento` < curdate() THEN 'VENCIDO SEM PAGAR' ELSE 'EM DIA' END AS `situacao` FROM (`clientes` `c` join `saldos_clientes` `sc` on(`sc`.`cliente_id` = `c`.`id`)) WHERE `sc`.`saldo_atual` < 0 OR `c`.`data_vencimento` < curdate() AND `sc`.`total_pago` < `sc`.`total_cobrado` ORDER BY `sc`.`saldo_atual` ASC, `c`.`data_vencimento` ASC ;

-- --------------------------------------------------------

--
-- Estrutura para view `vw_relatorio_financeiro`
--
DROP TABLE IF EXISTS `vw_relatorio_financeiro`;

CREATE ALGORITHM=UNDEFINED DEFINER=`voidplay`@`localhost` SQL SECURITY DEFINER VIEW `vw_relatorio_financeiro`  AS SELECT `c`.`id` AS `cliente_id`, `c`.`empresa` AS `empresa`, `c`.`cpf_cnpj` AS `whatsapp`, `c`.`valor_assinatura` AS `valor_assinatura`, `c`.`data_vencimento` AS `data_vencimento`, `c`.`tipo_plano` AS `tipo_plano`, `c`.`dias_periodo` AS `dias_periodo`, `c`.`status_pagamento` AS `status_pagamento`, `c`.`data_bloqueio` AS `data_bloqueio`, to_days(`c`.`data_vencimento`) - to_days(curdate()) AS `dias_ate_vencimento`, CASE WHEN `c`.`data_bloqueio` is not null THEN 'bloqueado' WHEN to_days(`c`.`data_vencimento`) - to_days(curdate()) < 0 THEN 'atrasado' WHEN to_days(`c`.`data_vencimento`) - to_days(curdate()) <= 3 THEN 'vencendo' ELSE 'em_dia' END AS `status_visual`, coalesce(`sc`.`saldo_atual`,0) AS `saldo_atual`, coalesce(`sc`.`total_creditos`,0) AS `total_creditos`, coalesce(`sc`.`total_debitos`,0) AS `total_debitos`, coalesce(`sc`.`total_pago`,0) AS `total_pago`, coalesce(`sc`.`total_cobrado`,0) AS `total_cobrado` FROM (`clientes` `c` left join `saldos_clientes` `sc` on(`sc`.`cliente_id` = `c`.`id`)) ;

--
-- Restrições para tabelas despejadas
--

--
-- Restrições para tabelas `assinaturas`
--
ALTER TABLE `assinaturas`
  ADD CONSTRAINT `assinaturas_ibfk_1` FOREIGN KEY (`cliente_id`) REFERENCES `clientes` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `assinaturas_ibfk_2` FOREIGN KEY (`plano_id`) REFERENCES `planos` (`id`) ON DELETE CASCADE;

--
-- Restrições para tabelas `clientes`
--
ALTER TABLE `clientes`
  ADD CONSTRAINT `clientes_ibfk_1` FOREIGN KEY (`usuario_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `clientes_ibfk_2` FOREIGN KEY (`plano_id`) REFERENCES `planos` (`id`) ON DELETE SET NULL;

--
-- Restrições para tabelas `contatos_grupo`
--
ALTER TABLE `contatos_grupo`
  ADD CONSTRAINT `contatos_grupo_ibfk_1` FOREIGN KEY (`grupo_id`) REFERENCES `grupos_whatsapp` (`id`) ON DELETE CASCADE;

--
-- Restrições para tabelas `faturas`
--
ALTER TABLE `faturas`
  ADD CONSTRAINT `faturas_ibfk_1` FOREIGN KEY (`pix_chave_id`) REFERENCES `pix_chaves` (`id`) ON DELETE SET NULL;

--
-- Restrições para tabelas `fila_envio_whatsapp`
--
ALTER TABLE `fila_envio_whatsapp`
  ADD CONSTRAINT `fila_envio_whatsapp_ibfk_1` FOREIGN KEY (`cliente_id`) REFERENCES `clientes` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fila_envio_whatsapp_ibfk_2` FOREIGN KEY (`instancia_id`) REFERENCES `whatsapp_instancias` (`id`) ON DELETE CASCADE;

--
-- Restrições para tabelas `lid_mapping`
--
ALTER TABLE `lid_mapping`
  ADD CONSTRAINT `fk_lid_cliente` FOREIGN KEY (`cliente_id`) REFERENCES `clientes` (`id`) ON DELETE CASCADE;

--
-- Restrições para tabelas `mensagens_enviadas`
--
ALTER TABLE `mensagens_enviadas`
  ADD CONSTRAINT `mensagens_enviadas_ibfk_1` FOREIGN KEY (`instancia_id`) REFERENCES `instancias_whatsapp` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Restrições para tabelas `mensagens_recebidas`
--
ALTER TABLE `mensagens_recebidas`
  ADD CONSTRAINT `mensagens_recebidas_ibfk_1` FOREIGN KEY (`instancia_id`) REFERENCES `instancias_whatsapp` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Restrições para tabelas `revendedores`
--
ALTER TABLE `revendedores`
  ADD CONSTRAINT `revendedores_ibfk_1` FOREIGN KEY (`usuario_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE;

--
-- Restrições para tabelas `transacoes_creditos`
--
ALTER TABLE `transacoes_creditos`
  ADD CONSTRAINT `transacoes_creditos_ibfk_1` FOREIGN KEY (`usuario_id`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE;

--
-- Restrições para tabelas `whatsapp_mensagens`
--
ALTER TABLE `whatsapp_mensagens`
  ADD CONSTRAINT `whatsapp_mensagens_ibfk_1` FOREIGN KEY (`instancia_id`) REFERENCES `whatsapp_instancias` (`id`) ON DELETE CASCADE;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
